Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AESE (0.02 sec)

  1. 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)
  2. src/cmd/internal/obj/arm64/anames.go

    package arm64
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "ADC",
    	"ADCS",
    	"ADCSW",
    	"ADCW",
    	"ADD",
    	"ADDS",
    	"ADDSW",
    	"ADDW",
    	"ADR",
    	"ADRP",
    	"AESD",
    	"AESE",
    	"AESIMC",
    	"AESMC",
    	"AND",
    	"ANDS",
    	"ANDSW",
    	"ANDW",
    	"ASR",
    	"ASRW",
    	"AT",
    	"BCC",
    	"BCS",
    	"BEQ",
    	"BFI",
    	"BFIW",
    	"BFM",
    	"BFMW",
    	"BFXIL",
    	"BFXILW",
    	"BGE",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. 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)
Back to top