Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for headTailIndex (0.25 sec)

  1. src/runtime/mspanset.go

    	return headTailIndex(h.u.Add(1 << 32))
    }
    
    // decHead atomically decrements the head of a headTailIndex.
    func (h *atomicHeadTailIndex) decHead() headTailIndex {
    	return headTailIndex(h.u.Add(-(1 << 32)))
    }
    
    // incTail atomically increments the tail of a headTailIndex.
    func (h *atomicHeadTailIndex) incTail() headTailIndex {
    	ht := headTailIndex(h.u.Add(1))
    	// Check for overflow.
    	if ht.tail() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top