Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for makeHeadTailIndex (0.12 sec)

  1. src/runtime/mspanset.go

    }
    
    // headTailIndex represents a combined 32-bit head and 32-bit tail
    // of a queue into a single 64-bit value.
    type headTailIndex uint64
    
    // makeHeadTailIndex creates a headTailIndex value from a separate
    // head and tail.
    func makeHeadTailIndex(head, tail uint32) headTailIndex {
    	return headTailIndex(uint64(head)<<32 | uint64(tail))
    }
    
    // head returns the head of a headTailIndex value.
    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