Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 84 of 84 for Loadint64 (0.19 sec)

  1. src/internal/bisect/bisect.go

    // overwriting whatever was there before.
    func (d *dedup) seenLossy(h uint64) bool {
    	cache := &d.recent[uint(h)%uint(len(d.recent))]
    	for i := 0; i < len(cache); i++ {
    		if atomic.LoadUint64(&cache[i]) == h {
    			return true
    		}
    	}
    
    	// Compute index in set to evict as hash of current set.
    	ch := offset64
    	for _, x := range cache {
    		ch = fnvUint64(ch, x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. cmd/bucket-replication-metrics_gen.go

    				return
    			}
    		case "p":
    			z.Peak, err = dc.ReadFloat64()
    			if err != nil {
    				err = msgp.WrapError(err, "Peak")
    				return
    			}
    		case "n":
    			z.N, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "N")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen.go

    	if err != nil {
    		err = msgp.WrapError(err, "XLV1")
    		return
    	}
    	z.ModTime, err = dc.ReadTime()
    	if err != nil {
    		err = msgp.WrapError(err, "ModTime")
    		return
    	}
    	z.Size, err = dc.ReadInt64()
    	if err != nil {
    		err = msgp.WrapError(err, "Size")
    		return
    	}
    	z.Mode, err = dc.ReadUint32()
    	if err != nil {
    		err = msgp.WrapError(err, "Mode")
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg sync/atomic, func CompareAndSwapUintptr(*uintptr, uintptr, uintptr) bool
    pkg sync/atomic, func LoadInt32(*int32) int32
    pkg sync/atomic, func LoadInt64(*int64) int64
    pkg sync/atomic, func LoadPointer(*unsafe.Pointer) unsafe.Pointer
    pkg sync/atomic, func LoadUint32(*uint32) uint32
    pkg sync/atomic, func LoadUint64(*uint64) uint64
    pkg sync/atomic, func LoadUintptr(*uintptr) uintptr
    pkg sync/atomic, func StoreInt32(*int32, int32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top