Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PMULL (0.07 sec)

  1. src/internal/cpu/cpu_arm64.go

    // It doesn't cost much and is much more future-proof.
    const CacheLinePadSize = 128
    
    func doinit() {
    	options = []option{
    		{Name: "aes", Feature: &ARM64.HasAES},
    		{Name: "pmull", Feature: &ARM64.HasPMULL},
    		{Name: "sha1", Feature: &ARM64.HasSHA1},
    		{Name: "sha2", Feature: &ARM64.HasSHA2},
    		{Name: "sha512", Feature: &ARM64.HasSHA512},
    		{Name: "crc32", Feature: &ARM64.HasCRC32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 14:08:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu_arm.go

    	hwcap_EVTSTRM   = 1 << 21
    
    	hwcap2_AES   = 1 << 0
    	hwcap2_PMULL = 1 << 1
    	hwcap2_SHA1  = 1 << 2
    	hwcap2_SHA2  = 1 << 3
    	hwcap2_CRC32 = 1 << 4
    )
    
    func initOptions() {
    	options = []option{
    		{Name: "pmull", Feature: &ARM.HasPMULL},
    		{Name: "sha1", Feature: &ARM.HasSHA1},
    		{Name: "sha2", Feature: &ARM.HasSHA2},
    		{Name: "swp", Feature: &ARM.HasSWP},
    		{Name: "thumb", Feature: &ARM.HasTHUMB},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    		{Name: "aes", Feature: &ARM64.HasAES},
    		{Name: "fphp", Feature: &ARM64.HasFPHP},
    		{Name: "jscvt", Feature: &ARM64.HasJSCVT},
    		{Name: "lrcpc", Feature: &ARM64.HasLRCPC},
    		{Name: "pmull", Feature: &ARM64.HasPMULL},
    		{Name: "sha1", Feature: &ARM64.HasSHA1},
    		{Name: "sha2", Feature: &ARM64.HasSHA2},
    		{Name: "sha3", Feature: &ARM64.HasSHA3},
    		{Name: "sha512", Feature: &ARM64.HasSHA512},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/internal/buildcfg/cfg.go

    	// 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
    }
    
    func (g Goarm64Features) String() string {
    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/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	NEG:       "NEG",
    	NEGS:      "NEGS",
    	NGC:       "NGC",
    	NGCS:      "NGCS",
    	NOP:       "NOP",
    	NOT:       "NOT",
    	ORN:       "ORN",
    	ORR:       "ORR",
    	PMUL:      "PMUL",
    	PMULL:     "PMULL",
    	PMULL2:    "PMULL2",
    	PRFM:      "PRFM",
    	PRFUM:     "PRFUM",
    	RADDHN:    "RADDHN",
    	RADDHN2:   "RADDHN2",
    	RBIT:      "RBIT",
    	RET:       "RET",
    	REV:       "REV",
    	REV16:     "REV16",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"PMULL, PMULL2","Bits":"0|0|0|0|1|1|1|0|size:2|1|Rm:5|1|1|1|0|0|0|Rn:5|Rd:5","Arch":"Three registers, not all the same type variant","Syntax":"PMULL <Vd>.<Ta>, <Vn>.<Tb>, <Vm>.<Tb>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
Back to top