Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for vwPreIter (0.07 sec)

  1. src/math/big/arith_arm64.s

    	MOVD	R0, c+72(FP)
    	RET
    
    #define vwOneOp(instr, op1)				\
    	MOVD.P	8(R1), R4;				\
    	instr	op1, R4;				\
    	MOVD.P	R4, 8(R3);
    
    // handle the first 1~4 elements before starting iteration in addVW/subVW
    #define vwPreIter(instr1, instr2, counter, target)	\
    	vwOneOp(instr1, R2);				\
    	SUB	$1, counter;				\
    	CBZ	counter, target;			\
    	vwOneOp(instr2, $0);				\
    	SUB	$1, counter;				\
    	CBZ	counter, target;			\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top