Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for in1 (0.04 sec)

  1. src/crypto/aes/asm_ppc64x.s

    	VSPLTW	$3, IN0, KEY        // vspltw 3,1,3
    	VSLDOI	$12, ZERO, IN1, TMP // vsldoi 6,0,2,12
    	VSBOX	KEY, KEY            // vsbox 3,3
    
    	VXOR	IN1, TMP, IN1       // vxor 2,2,6
    	VSLDOI	$12, ZERO, TMP, TMP // vsldoi 6,0,6,12
    	VXOR	IN1, TMP, IN1       // vxor 2,2,6
    	VSLDOI	$12, ZERO, TMP, TMP // vsldoi 6,0,6,12
    	VXOR	IN1, TMP, IN1       // vxor 2,2,6
    
    	VXOR	IN1, KEY, IN1 // vxor 2,2,3
    	JMP	loop256       // b .Loop256
    
    done:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm.go

    // If zero is 0, sets res = in2. If sel is 0, sets res = in1.
    // If sign is not 0, sets res = in1 + -in2. Otherwise, sets res = in1 + in2
    //
    //go:noescape
    func p256PointAddAffineAsm(res, in1 *P256Point, in2 *p256AffinePoint, sign, sel, zero int)
    
    // Point addition. Sets res = in1 + in2. Returns one if the two input points
    // were equal and zero otherwise. If in1 or in2 are the point at infinity, res
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top