Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OrUint64 (0.27 sec)

  1. src/sync/atomic/asm.s

    TEXT ·OrUint32(SB),NOSPLIT,$0
    	JMP	internal∕runtime∕atomic·Or32(SB)
    
    TEXT ·OrUintptr(SB),NOSPLIT,$0
    	JMP	internal∕runtime∕atomic·Oruintptr(SB)
    
    TEXT ·OrInt64(SB),NOSPLIT,$0
    	JMP	internal∕runtime∕atomic·Or64(SB)
    
    TEXT ·OrUint64(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. api/go1.23.txt

    pkg sync/atomic, func AndUintptr(*uintptr, uintptr) uintptr #61395
    pkg sync/atomic, func OrInt32(*int32, int32) int32 #61395
    pkg sync/atomic, func OrInt64(*int64, int64) int64 #61395
    pkg sync/atomic, func OrUint32(*uint32, uint32) uint32 #61395
    pkg sync/atomic, func OrUint64(*uint64, uint64) uint64 #61395
    pkg sync/atomic, func OrUintptr(*uintptr, uintptr) uintptr #61395
    pkg sync/atomic, method (*Int32) And(int32) int32 #61395
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/sync/atomic/type.go

    // Or atomically performs a bitwise OR operation on x using the bitmask
    // provided as mask and returns the old value.
    func (x *Uint64) Or(mask uint64) (new uint64) { return OrUint64(&x.v, mask) }
    
    // A Uintptr is an atomic uintptr. The zero value is zero.
    type Uintptr struct {
    	_ noCopy
    	v uintptr
    }
    
    // Load atomically loads and returns the value stored in x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/strconv/strconv_test.go

    	_, errBool := ParseBool("INVALID")
    	_, errFloat := ParseFloat("INVALID", 64)
    	_, errInt64 := ParseInt("INVALID", 10, 64)
    	_, errUint64 := ParseUint("INVALID", 10, 64)
    
    	vectors := []struct {
    		err  error  // Input error
    		want string // Function name wanted
    	}{
    		{errInt, "Atoi"},
    		{errBool, "ParseBool"},
    		{errFloat, "ParseFloat"},
    		{errInt64, "ParseInt"},
    		{errUint64, "ParseUint"},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 20:29:22 UTC 2022
    - 4.7K bytes
    - Viewed (0)
Back to top