Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SHA256RNDS2 (0.44 sec)

  1. src/crypto/sha256/sha256block_amd64.s

    #define rounds0to11(m,a,c,sha256Msg1)				\
    	VMOVDQU			c*16(dataPtr), msg		\
    	PSHUFB			shufMask, msg			\
    	VMOVDQA			msg, m				\
    	PADDD			(c*32)(sha256Constants), msg	\
    	SHA256RNDS2		msg, state0, state1		\
    	PSHUFD			$0x0e, msg, msg			\
    	SHA256RNDS2		msg, state1, state0		\
    	sha256Msg1		(m,a)
    
    // sha rounds 12 to 59
    // identical with the exception of the final msg op
    // and the reverse copy(m,msg) in round 12 which is required
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	// <XMM0>/Yxr0 tests.
    	SHA256RNDS2 X0, (BX), X2   // 0f38cb13
    	SHA256RNDS2 X0, (R11), X2  // 410f38cb13
    	SHA256RNDS2 X0, X2, X2     // 0f38cbd2
    	SHA256RNDS2 X0, X11, X2    // 410f38cbd3
    	SHA256RNDS2 X0, (BX), X11  // 440f38cb1b
    	SHA256RNDS2 X0, (R11), X11 // 450f38cb1b
    	SHA256RNDS2 X0, X2, X11    // 440f38cbda
    	SHA256RNDS2 X0, X11, X11   // 450f38cbdb
    	// Rest SHA instructions tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/anames.go

    	"SETNE",
    	"SETOC",
    	"SETOS",
    	"SETPC",
    	"SETPL",
    	"SETPS",
    	"SFENCE",
    	"SGDT",
    	"SHA1MSG1",
    	"SHA1MSG2",
    	"SHA1NEXTE",
    	"SHA1RNDS4",
    	"SHA256MSG1",
    	"SHA256MSG2",
    	"SHA256RNDS2",
    	"SHLB",
    	"SHLL",
    	"SHLQ",
    	"SHLW",
    	"SHLXL",
    	"SHLXQ",
    	"SHRB",
    	"SHRL",
    	"SHRQ",
    	"SHRW",
    	"SHRXL",
    	"SHRXQ",
    	"SHUFPD",
    	"SHUFPS",
    	"SIDT",
    	"SLDTL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
Back to top