Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bitMasks (0.08 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	s.sb = s.entryNewValue0(ssa.OpSB, types.Types[types.TUINTPTR])
    
    	s.startBlock(s.f.Entry)
    	s.vars[memVar] = s.startmem
    	if s.hasOpenDefers {
    		// Create the deferBits variable and stack slot.  deferBits is a
    		// bitmask showing which of the open-coded defers in this function
    		// have been activated.
    		deferBitsTemp := typecheck.TempAt(src.NoXPos, s.curfn, types.Types[types.TUINT8])
    		deferBitsTemp.SetAddrtaken(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    }
    
    func (t http2FrameType) String() string {
    	if s, ok := http2frameName[t]; ok {
    		return s
    	}
    	return fmt.Sprintf("UNKNOWN_FRAME_TYPE_%d", uint8(t))
    }
    
    // Flags is a bitmask of HTTP/2 flags.
    // The meaning of flags varies depending on the frame type.
    type http2Flags uint8
    
    // Has reports whether f contains all (0 or more) flags in v.
    func (f http2Flags) Has(v http2Flags) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top