Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for vmovrev (0.19 sec)

  1. src/crypto/sha256/sha256block_amd64.s

    #define sha256msg1(m,a) \	// final SHA256MSG1 for middle rounds that require it
    	SHA256MSG1		m, a
    
    #define vmov(a,b) \		// msg copy for all but rounds 12-15
    	VMOVDQA		a, b
    
    #define vmovrev(a,b) \		// reverse copy for rounds 12-15
    	VMOVDQA		b, a
    
    // sha rounds 0 to 11
    // identical with the exception of the final msg op
    // which is replaced with a nop for rounds where it is not needed
    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