Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for AESE (0.06 sec)

  1. src/crypto/aes/gcm_arm64.s

    	AESMC	B7.B16, B7.B16
    
    #define aesrndlastx8(K) \
    	AESE	K.B16, B0.B16    \
    	AESE	K.B16, B1.B16    \
    	AESE	K.B16, B2.B16    \
    	AESE	K.B16, B3.B16    \
    	AESE	K.B16, B4.B16    \
    	AESE	K.B16, B5.B16    \
    	AESE	K.B16, B6.B16    \
    	AESE	K.B16, B7.B16
    
    	MOVD	productTable+0(FP), pTbl
    	MOVD	dst+8(FP), dstPtr
    	MOVD	src_base+32(FP), srcPtr
    	MOVD	src_len+40(FP), srcPtrLen
    	MOVD	ctr+56(FP), ctrPtr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. src/runtime/asm_arm64.s

    	AESE	V0.B16,	 V8.B16
    	AESMC	V8.B16,  V8.B16
    	AESE	V1.B16,	 V9.B16
    	AESMC	V9.B16,  V9.B16
    	AESE	V2.B16, V10.B16
    	AESMC	V10.B16,  V10.B16
    	AESE	V3.B16, V11.B16
    	AESMC	V11.B16,  V11.B16
    	AESE	V4.B16, V12.B16
    	AESMC	V12.B16,  V12.B16
    	AESE	V5.B16, V13.B16
    	AESMC	V13.B16,  V13.B16
    	AESE	V6.B16, V14.B16
    	AESMC	V14.B16,  V14.B16
    	AESE	V7.B16, V15.B16
    	AESMC	V15.B16,  V15.B16
    
    	AESE	V0.B16,	 V8.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. src/crypto/aes/asm_arm64.s

    	AESE	V5.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    	AESE	V6.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    	AESE	V7.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    	AESE	V8.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    	AESE	V9.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    	AESE	V10.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    	AESE	V11.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    	AESE	V12.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    	AESE	V13.B16, V0.B16
    	AESMC	V0.B16, V0.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. src/internal/buildcfg/cfg.go

    }
    
    type Goarm64Features struct {
    	Version string
    	// Large Systems Extension
    	LSE bool
    	// ARM v8.0 Cryptographic Extension. It includes the following features:
    	// * FEAT_AES, which includes the AESD and AESE instructions.
    	// * FEAT_PMULL, which includes the PMULL, PMULL2 instructions.
    	// * FEAT_SHA1, which includes the SHA1* instructions.
    	// * FEAT_SHA256, which includes the SHA256* instructions.
    	Crypto bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64error.s

    	DC	IVAC                                             // ERROR "missing register at operand 2"
    	AESD	V1.B8, V2.B8                                     // ERROR "invalid arrangement"
    	AESE	V1.D2, V2.D2                                     // ERROR "invalid arrangement"
    	AESIMC	V1.S4, V2.S4                                     // ERROR "invalid arrangement"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	VADDP V7.H8, V25.H8, V17.H8                                 // 31bf674e
    	VADDV V3.H8, V0                                             // 60b8714e
    	AESD V22.B16, V19.B16                                       // d35a284e
    	AESE V31.B16, V29.B16                                       // fd4b284e
    	AESIMC V12.B16, V27.B16                                     // 9b79284e
    	AESMC V14.B16, V28.B16                                      // dc69284e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
Back to top