Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 0x070C2 (0.29 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    	AAMANDV:    0x070C5 << 15, // amand.d
    	AAMORW:     0x070C6 << 15, // amor.w
    	AAMORV:     0x070C7 << 15, // amor.d
    	AAMXORW:    0x070C8 << 15, // amxor.w
    	AAMXORV:    0x070C9 << 15, // amxor.d
    	AAMMAXW:    0x070CA << 15, // ammax.w
    	AAMMAXV:    0x070CB << 15, // ammax.d
    	AAMMINW:    0x070CC << 15, // ammin.w
    	AAMMINV:    0x070CD << 15, // ammin.d
    	AAMMAXWU:   0x070CE << 15, // ammax.wu
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	EPOLL_CLOEXEC            = 0x00001000
    	EPOLL_CTL_ADD            = 0
    	EPOLL_CTL_MOD            = 1
    	EPOLL_CTL_DEL            = 2
    	EPOLLRDNORM              = 0x0001
    	EPOLLRDBAND              = 0x0002
    	EPOLLIN                  = 0x0003
    	EPOLLOUT                 = 0x0004
    	EPOLLWRBAND              = 0x0008
    	EPOLLPRI                 = 0x0010
    	EPOLLERR                 = 0x0020
    	EPOLLHUP                 = 0x0040
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. src/crypto/internal/hpke/hpke.go

    var SupportedAEADs = map[uint16]struct {
    	keySize   int
    	nonceSize int
    	aead      func([]byte) (cipher.AEAD, error)
    }{
    	// RFC 9180, Section 7.3
    	0x0001: {keySize: 16, nonceSize: 12, aead: aesGCMNew},
    	0x0002: {keySize: 32, nonceSize: 12, aead: aesGCMNew},
    	0x0003: {keySize: chacha20poly1305.KeySize, nonceSize: chacha20poly1305.NonceSize, aead: chacha20poly1305.New},
    }
    
    var SupportedKDFs = map[uint16]func() *hkdfKDF{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    const (
    	http2cipher_TLS_NULL_WITH_NULL_NULL               uint16 = 0x0000
    	http2cipher_TLS_RSA_WITH_NULL_MD5                 uint16 = 0x0001
    	http2cipher_TLS_RSA_WITH_NULL_SHA                 uint16 = 0x0002
    	http2cipher_TLS_RSA_EXPORT_WITH_RC4_40_MD5        uint16 = 0x0003
    	http2cipher_TLS_RSA_WITH_RC4_128_MD5              uint16 = 0x0004
    	http2cipher_TLS_RSA_WITH_RC4_128_SHA              uint16 = 0x0005
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. src/runtime/os_windows.go

    		// https://github.com/golang/go/issues/8687#issuecomment-656259353
    		_CREATE_WAITABLE_TIMER_HIGH_RESOLUTION = 0x00000002
    
    		_SYNCHRONIZE        = 0x00100000
    		_TIMER_QUERY_STATE  = 0x0001
    		_TIMER_MODIFY_STATE = 0x0002
    	)
    	return stdcall4(_CreateWaitableTimerExW, 0, 0,
    		_CREATE_WAITABLE_TIMER_HIGH_RESOLUTION,
    		_SYNCHRONIZE|_TIMER_QUERY_STATE|_TIMER_MODIFY_STATE)
    }
    
    func initHighResTimer() {
    	h := createHighResTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    // DT_FLAGS values.
    type DynFlag int
    
    const (
    	DF_ORIGIN DynFlag = 0x0001 /* Indicates that the object being loaded may
    	   make reference to the
    	   $ORIGIN substitution string */
    	DF_SYMBOLIC DynFlag = 0x0002 /* Indicates "symbolic" linking. */
    	DF_TEXTREL  DynFlag = 0x0004 /* Indicates there may be relocations in non-writable segments. */
    	DF_BIND_NOW DynFlag = 0x0008 /* Indicates that the dynamic linker should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    	op_BASSM   uint32 = 0x0C00 // FORMAT_RR         BRANCH AND SAVE AND SET MODE
    	op_BC      uint32 = 0x4700 // FORMAT_RX2        BRANCH ON CONDITION
    	op_BCR     uint32 = 0x0700 // FORMAT_RR         BRANCH ON CONDITION
    	op_BCT     uint32 = 0x4600 // FORMAT_RX1        BRANCH ON COUNT (32)
    	op_BCTG    uint32 = 0xE346 // FORMAT_RXY1       BRANCH ON COUNT (64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top