Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tmpl (0.05 sec)

  1. src/net/http/h2_bundle.go

    			if k.walkReadyInOrder(openParent, tmp, f) {
    				return true
    			}
    		}
    		return false
    	}
    
    	// Uncommon case: sort the child nodes. We remove the kids from the parent,
    	// then re-insert after sorting so we can reuse tmp for future sort calls.
    	*tmp = (*tmp)[:0]
    	for n.kids != nil {
    		*tmp = append(*tmp, n.kids)
    		n.kids.setParent(nil)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) temp(pos src.XPos, t *types.Type) (*ir.Name, *ssa.Value) {
    	tmp := typecheck.TempAt(pos, s.curfn, t)
    	if t.HasPointers() || (ssa.IsMergeCandidate(tmp) && t != deferstruct()) {
    		s.vars[memVar] = s.newValue1A(ssa.OpVarDef, types.TypeMem, tmp, s.mem())
    	}
    	addr := s.addr(tmp)
    	return tmp, addr
    }
    
    // variable returns the value of a variable at the current location.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top