Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for V28 (0.02 sec)

  1. src/math/big/arith_s390x.s

    	VPDI $0x4, V13, V13, V13 // flip the doublewords to big-endian order
    	VPDI $0x4, V14, V14, V14 // flip the doublewords to big-endian order
    
    	VACCCQ V5, V13, V28, V29
    	VACQ   V5, V13, V28, V21
    	VACCCQ V6, V14, V29, V30
    	VACQ   V6, V14, V29, V22
    
    	VPDI $0x4, V7, V7, V7    // flip the doublewords to big-endian order
    	VPDI $0x4, V8, V8, V8    // flip the doublewords to big-endian order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	//TODO VFCMGT V26.D2, V15.D2, V23.D2       // f7e5fa6e
    	//TODO FCMGT $0, F14, F3                   // c3c9e05e
    	//TODO VFCMGT $0, V6.S2, V28.S2            // dcc8a00e
    	//TODO FCMLE $0, F26, F25                  // 59dba07e
    	//TODO VFCMLE $0, V28.S2, V20.S2           // 94dba02e
    	//TODO FCMLT $0, F17, F3                   // 23eae05e
    	//TODO VFCMLT $0, V8.S4, V7.S4             // 07e9a04e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/operand_test.go

    	{"V17", "V17"},
    	{"V18", "V18"},
    	{"V19", "V19"},
    	{"V20", "V20"},
    	{"V21", "V21"},
    	{"V22", "V22"},
    	{"V23", "V23"},
    	{"V24", "V24"},
    	{"V25", "V25"},
    	{"V26", "V26"},
    	{"V27", "V27"},
    	{"V28", "V28"},
    	{"V29", "V29"},
    	{"V30", "V30"},
    	{"V31", "V31"},
    	{"F14", "F14"},
    	{"F15", "F15"},
    	{"F16", "F16"},
    	{"F17", "F17"},
    	{"F18", "F18"},
    	{"F19", "F19"},
    	{"F20", "F20"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_ppc64x.s

    // counterCryptASM.
    
    // Load the initial GCM counter value
    // in V30 and set up the counter increment
    // in V31
    #define SETUP_COUNTER \
    	P8_LXVB16X(COUNTER, R0, V30); \
    	VSPLTISB $1, V28; \
    	VXOR V31, V31, V31; \
    	VSLDOI $1, V31, V28, V31
    
    // These macros set up the initial value
    // for a single encryption, or 4 or 8
    // stitched encryptions implemented
    // with interleaving vciphers.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. src/cmd/internal/notsha256/sha256block_ppc64x.s

    #define R_x0f0	R25
    #define R_x100	R26
    #define R_x110	R27
    
    
    // V0-V7 are A-H
    // V8-V23 are used for the message schedule
    #define KI	V24
    #define FUNC	V25
    #define S0	V26
    #define S1	V27
    #define s0	V28
    #define s1	V29
    #define LEMASK	V31 // Permutation control register for little endian
    
    // 4 copies of each Kt, to fill all 4 words of a vector register
    DATA  ·kcon+0x000(SB)/8, $0x428a2f98428a2f98
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. src/crypto/sha512/sha512block_ppc64x.s

    #define R_x0f0	R28
    #define R_x100	R29
    #define R_x110	R27
    
    
    // V0-V7 are A-H
    // V8-V23 are used for the message schedule
    #define KI	V24
    #define FUNC	V25
    #define S0	V26
    #define S1	V27
    #define s0	V28
    #define s1	V29
    #define LEMASK	V31	// Permutation control register for little endian
    
    // VPERM is needed on LE to switch the bytes
    
    #ifdef GOARCH_ppc64le
    #define VPERMLE(va,vb,vc,vt) VPERM va, vb, vc, vt
    #else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_ppc64le.s

    #define off48	R18
    #define off64	R19
    #define off80	R20
    #define off96	R21
    #define	off112	R22
    
    #define const1	V24
    #define const2	V25
    
    #define byteswap	V26
    #define mask_32bit	V27
    #define mask_64bit	V28
    #define zeroes		V29
    
    #define MAX_SIZE	32*1024
    #define REFLECT
    
    TEXT ·ppc64SlicingUpdateBy8(SB), NOSPLIT|NOFRAME, $0-44
    	MOVWZ	crc+0(FP), R3   // incoming crc
    	MOVD    table8+8(FP), R4   // *Table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/crypto/sha256/sha256block_ppc64x.s

    #define R_x0f0	R25
    #define R_x100	R26
    #define R_x110	R27
    
    
    // V0-V7 are A-H
    // V8-V23 are used for the message schedule
    #define KI	V24
    #define FUNC	V25
    #define S0	V26
    #define S1	V27
    #define s0	V28
    #define s1	V29
    #define LEMASK	V31 // Permutation control register for little endian
    
    // 4 copies of each Kt, to fill all 4 words of a vector register
    DATA  ·kcon+0x000(SB)/8, $0x428a2f98428a2f98
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	V3
    	V4
    	V5
    	V6
    	V7
    	V8
    	V9
    	V10
    	V11
    	V12
    	V13
    	V14
    	V15
    	V16
    	V17
    	V18
    	V19
    	V20
    	V21
    	V22
    	V23
    	V24
    	V25
    	V26
    	V27
    	V28
    	V29
    	V30
    	V31
    
    	WSP = WZR // These are different registers with the same encoding.
    	SP  = XZR // These are different registers with the same encoding.
    )
    
    func (Reg) isArg() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    #define H_1 V20
    #define H_2 V21
    #define H_3 V22
    #define H_4 V23
    
    // temporary registers (for short-lived values)
    #define T_0 V24
    #define T_1 V25
    #define T_2 V26
    #define T_3 V27
    #define T_4 V28
    
    GLOBL ·constants<>(SB), RODATA, $0x30
    // EX0
    DATA ·constants<>+0x00(SB)/8, $0x0006050403020100
    DATA ·constants<>+0x08(SB)/8, $0x1016151413121110
    // EX1
    DATA ·constants<>+0x10(SB)/8, $0x060c0b0a09080706
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top