Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	NEGV	R4, R5			// 05901100
    	SLL	R4, R5			// a5101700
    	SLL	R4, R5, R6		// a6101700
    	SRL	R4, R5			// a5901700
    	SRL	R4, R5, R6	 	// a6901700
    	SRA	R4, R5			// a5101800
    	SRA	R4, R5, R6	 	// a6101800
    	ROTR	R4, R5			// a5101b00
    	ROTR	R4, R5, R6		// a6101b00
    	SLLV	R4, R5			// a5901800
    	SLLV	R4, R5, R6		// a6901800
    	ROTRV	R4, R5			// a5901b00
    	ROTRV	R4, R5, R6		// a6901b00
    	CLOW	R4, R5			// 85100000
    	CLZW	R4, R5			// 85140000
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Sep 04 19:24:25 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  2. lib/fips140/v1.0.0.zip

    W[i] = SIGMA1(W[i-2]) + W[i-7] + SIGMA0(W[i-15]) + W[i-16]; for 16 <= i <= 63 // SIGMA0(x) = ROTR(7,x) XOR ROTR(18,x) XOR SHR(3,x) // SIGMA1(x) = ROTR(17,x) XOR ROTR(19,x) XOR SHR(10,x) #define LOAD1(index) \ MOVW (((index-2)&0xf)*4)(R3), REGTMP4; \ MOVW (((index-15)&0xf)*4)(R3), REGTMP1; \ MOVW (((index-7)&0xf)*4)(R3), REGTMP; \ MOVW REGTMP4, REGTMP2; \ MOVW REGTMP4, REGTMP3; \ ROTR $17, REGTMP4; \ ROTR $19, REGTMP2; \ SRL $10, REGTMP3; \ XOR REGTMP2, REGTMP4; \ XOR REGTMP3, REGTMP4; \ ROTR $7,...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top