Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SHA256T2 (0.08 sec)

  1. src/cmd/internal/notsha256/sha256block_386.s

    // Calculate T2 in BX - uses AX, BX, CX and DX registers.
    //   T2 = BIGSIGMA0(a) + Maj(a, b, c)
    //     BIGSIGMA0(x) = ROTR(2,x) XOR ROTR(13,x) XOR ROTR(22,x)
    //     Maj(x, y, z) = (x AND y) XOR (x AND z) XOR (y AND z)
    #define SHA256T2(a, b, c) \
    	MOVL	(a*4)(DI), AX; \
    	MOVL	(c*4)(DI), BX; \
    	RORL	$2, AX; \
    	MOVL	(a*4)(DI), DX; \
    	ANDL	(b*4)(DI), BX; \
    	RORL	$13, DX; \
    	MOVL	(a*4)(DI), CX; \
    	ANDL	(c*4)(DI), CX; \
    	XORL	DX, AX; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. src/crypto/sha256/sha256block_386.s

    // Calculate T2 in BX - uses AX, BX, CX and DX registers.
    //   T2 = BIGSIGMA0(a) + Maj(a, b, c)
    //     BIGSIGMA0(x) = ROTR(2,x) XOR ROTR(13,x) XOR ROTR(22,x)
    //     Maj(x, y, z) = (x AND y) XOR (x AND z) XOR (y AND z)
    #define SHA256T2(a, b, c) \
    	MOVL	(a*4)(DI), AX; \
    	MOVL	(c*4)(DI), BX; \
    	RORL	$2, AX; \
    	MOVL	(a*4)(DI), DX; \
    	ANDL	(b*4)(DI), BX; \
    	RORL	$13, DX; \
    	MOVL	(a*4)(DI), CX; \
    	ANDL	(c*4)(DI), CX; \
    	XORL	DX, AX; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/cmd/internal/notsha256/sha256block_amd64.s

    // Calculate T2 in BX - uses BX, CX, DX and DI registers.
    //   T2 = BIGSIGMA0(a) + Maj(a, b, c)
    //     BIGSIGMA0(x) = ROTR(2,x) XOR ROTR(13,x) XOR ROTR(22,x)
    //     Maj(x, y, z) = (x AND y) XOR (x AND z) XOR (y AND z)
    #define SHA256T2(a, b, c) \
    	MOVL	a, DI; \
    	MOVL	c, BX; \
    	RORL	$2, DI; \
    	MOVL	a, DX; \
    	ANDL	b, BX; \
    	RORL	$13, DX; \
    	MOVL	a, CX; \
    	ANDL	c, CX; \
    	XORL	DX, DI; \
    	XORL	CX, BX; \
    	MOVL	a, DX; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. src/crypto/sha256/sha256block_amd64.s

    // Calculate T2 in BX - uses BX, CX, DX and DI registers.
    //   T2 = BIGSIGMA0(a) + Maj(a, b, c)
    //     BIGSIGMA0(x) = ROTR(2,x) XOR ROTR(13,x) XOR ROTR(22,x)
    //     Maj(x, y, z) = (x AND y) XOR (x AND z) XOR (y AND z)
    #define SHA256T2(a, b, c) \
    	MOVL	a, DI; \
    	MOVL	c, BX; \
    	RORL	$2, DI; \
    	MOVL	a, DX; \
    	ANDL	b, BX; \
    	RORL	$13, DX; \
    	MOVL	a, CX; \
    	ANDL	c, CX; \
    	XORL	DX, DI; \
    	XORL	CX, BX; \
    	MOVL	a, DX; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top