Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for kmcQuery (0.14 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_s390x.s

    	WORD $0xb2b01000     // store facility list extended (STFLE)
    	RET
    
    // func kmQuery() queryResult
    TEXT ·kmQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KM-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    	WORD $0xB92E0024    // cipher message (KM)
    	RET
    
    // func kmcQuery() queryResult
    TEXT ·kmcQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KMC-Query)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_s390x.s

    	WORD $0xb2b01000     // store facility list extended (STFLE)
    	RET
    
    // func kmQuery() queryResult
    TEXT ·kmQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KM-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    	KM   R2, R4         // cipher message (KM)
    	RET
    
    // func kmcQuery() queryResult
    TEXT ·kmcQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KMC-Query)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go

    // The following feature detection functions are defined in cpu_s390x.s.
    // They are likely to be expensive to call so the results should be cached.
    func stfle() facilityList
    func kmQuery() queryResult
    func kmcQuery() queryResult
    func kmctrQuery() queryResult
    func kmaQuery() queryResult
    func kimdQuery() queryResult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 674 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go

    func stfle() facilityList     { panic("not implemented for gccgo") }
    func kmQuery() queryResult    { panic("not implemented for gccgo") }
    func kmcQuery() queryResult   { panic("not implemented for gccgo") }
    func kmctrQuery() queryResult { panic("not implemented for gccgo") }
    func kmaQuery() queryResult   { panic("not implemented for gccgo") }
    func kimdQuery() queryResult  { panic("not implemented for gccgo") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu_s390x.go

    // The following feature detection functions are defined in cpu_s390x.s.
    // They are likely to be expensive to call so the results should be cached.
    func stfle() facilityList
    func kmQuery() queryResult
    func kmcQuery() queryResult
    func kmctrQuery() queryResult
    func kmaQuery() queryResult
    func kimdQuery() queryResult
    func klmdQuery() queryResult
    func kdsaQuery() queryResult
    
    func doinit() {
    	options = []option{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:11:03 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_s390x.go

    		// cipher message
    		km, kmc := kmQuery(), kmcQuery()
    		S390X.HasAES = km.Has(aes...)
    		S390X.HasAESCBC = kmc.Has(aes...)
    		if S390X.HasSTFLE {
    			facilities := stfle()
    			if facilities.Has(msa4) {
    				kmctr := kmctrQuery()
    				S390X.HasAESCTR = kmctr.Has(aes...)
    			}
    			if facilities.Has(msa8) {
    				kma := kmaQuery()
    				S390X.HasAESGCM = kma.Has(aes...)
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.9K bytes
    - Viewed (0)
Back to top