Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for lens (0.33 sec)

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

    					state.varParts[n] = []SlotID{SlotID(len(state.slots) - 1)}
    					state.vars = append(state.vars, n)
    				}
    			}
    		}
    	}
    
    	// Fill in the var<->slot mappings.
    	if cap(state.varSlots) < len(state.vars) {
    		state.varSlots = make([][]SlotID, len(state.vars))
    	} else {
    		state.varSlots = state.varSlots[:len(state.vars)]
    		for i := range state.varSlots {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    		}
    	}
    	goasmh := pathf("%s/go_asm.h", workdir)
    
    	// Collect symabis from assembly code.
    	var symabis string
    	if len(sfiles) > 0 {
    		symabis = pathf("%s/symabis", workdir)
    		var wg sync.WaitGroup
    		asmabis := append(asmArgs[:len(asmArgs):len(asmArgs)], "-gensymabis", "-o", symabis)
    		asmabis = append(asmabis, sfiles...)
    		if err := os.WriteFile(goasmh, nil, 0666); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    	}
    
    	r.buildList = mg.BuildList()
    	r.buildListVersion = make(map[string]string, len(r.buildList))
    	for _, m := range r.buildList {
    		r.buildListVersion[m.Path] = m.Version
    	}
    	return true
    }
    
    func reqsFromGoMod(f *modfile.File) []module.Version {
    	reqs := make([]module.Version, len(f.Require), 2+len(f.Require))
    	for i, r := range f.Require {
    		reqs[i] = r.Mod
    	}
    	if f.Go != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    	return tparamList, typ
    }
    
    // "[" has already been consumed, and pos is its position.
    // If len != nil it is the already consumed array length.
    func (p *parser) arrayType(pos Pos, len Expr) Expr {
    	if trace {
    		defer p.trace("arrayType")()
    	}
    
    	if len == nil && !p.got(_DotDotDot) {
    		p.xnest++
    		len = p.expr()
    		p.xnest--
    	}
    	if p.tok == _Comma {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        return CollectCollectors.toImmutableSortedMap(
            comparator, keyFunction, valueFunction, mergeFunction);
      }
    
      /*
       * TODO(kevinb): Confirm that ImmutableSortedMap is faster to construct and
       * uses less memory than TreeMap; then say so in the class Javadoc.
       */
      private static final Comparator<?> NATURAL_ORDER = Ordering.natural();
    
      private static final ImmutableSortedMap<Comparable<?>, Object> NATURAL_EMPTY_MAP =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    }
    
    func ElfSymForReloc(ctxt *Link, s loader.Sym) int32 {
    	// If putelfsym created a local version of this symbol, use that in all
    	// relocations.
    	les := ctxt.loader.SymLocalElfSym(s)
    	if les != 0 {
    		return les
    	} else {
    		return ctxt.loader.SymElfSym(s)
    	}
    }
    
    func AddGotSym(target *Target, ldr *loader.Loader, syms *ArchSyms, s loader.Sym, elfRelocTyp uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    func opName(x syntax.Expr) string {
    	if e, _ := x.(*syntax.Operation); e != nil {
    		op := int(e.Op)
    		if e.Y == nil {
    			if op < len(op2str1) {
    				return op2str1[op]
    			}
    		} else {
    			if op < len(op2str2) {
    				return op2str2[op]
    			}
    		}
    	}
    	return ""
    }
    
    var op2str1 = [...]string{
    	syntax.Xor: "bitwise complement",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Neq(32|64|Ptr) x y) => (NotEqual ((CMPW|CMP|CMP) x y))
    (Neq(32|64)F x y) => (NotEqual (FCMPU x y))
    
    (Less(8|16) x y)  => (LessThan (CMPW (SignExt(8|16)to32 x) (SignExt(8|16)to32 y)))
    (Less(32|64) x y) => (LessThan ((CMPW|CMP) x y))
    (Less(32|64)F x y) => (FLessThan (FCMPU x y))
    
    (Less(8|16)U x y)  => (LessThan (CMPWU (ZeroExt(8|16)to32 x) (ZeroExt(8|16)to32 y)))
    (Less(32|64)U x y) => (LessThan ((CMPWU|CMPU) x y))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    	// memory state. It is lazily initialized.
    	var memPreds map[*Value]bool
    	for i := 0; len(args) > 0; i++ {
    		const limit = 100
    		if i >= limit {
    			// Give up if we have done a lot of iterations.
    			return false
    		}
    		v := args[len(args)-1]
    		args = args[:len(args)-1]
    		if target.Block.ID != v.Block.ID {
    			// Since target and load are in the same block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * any of the public methods of ListenableFuture.
       */
      interface Trusted<V extends @Nullable Object> extends ListenableFuture<V> {}
    
      /**
       * A less abstract subclass of AbstractFuture. This can be used to optimize setFuture by ensuring
       * that {@link #get} calls exactly the implementation of {@link AbstractFuture#get}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
Back to top