Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for index (0.06 sec)

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

    			}
    			a := s.expr(n.X)
    			i := s.expr(n.Index)
    			len := s.newValue1(ssa.OpStringLen, types.Types[types.TINT], a)
    			i = s.boundsCheck(i, len, ssa.BoundsIndex, n.Bounded())
    			ptrtyp := s.f.Config.Types.BytePtr
    			ptr := s.newValue1(ssa.OpStringPtr, ptrtyp, a)
    			if ir.IsConst(n.Index, constant.Int) {
    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/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Len  uint16
    	Type uint16
    }
    
    type IfInfomsg struct {
    	Family uint8
    	_      uint8
    	Type   uint16
    	Index  int32
    	Flags  uint32
    	Change uint32
    }
    
    type IfAddrmsg struct {
    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type IfaCacheinfo struct {
    	Prefered uint32
    	Valid    uint32
    	Cstamp   uint32
    	Tstamp   uint32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	scratchLen := cs.frameScratchBufferLen(maxFrameSize)
    	var buf []byte
    	index := http2bufPoolIndex(scratchLen)
    	if bp, ok := http2bufPools[index].Get().(*[]byte); ok && len(*bp) >= scratchLen {
    		defer http2bufPools[index].Put(bp)
    		buf = *bp
    	} else {
    		buf = make([]byte, scratchLen)
    		defer http2bufPools[index].Put(&buf)
    	}
    
    	var sawEOF bool
    	for !sawEOF {
    		n, err := body.Read(buf)
    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