Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Slots (0.86 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// HMULx[U] are intentionally not marked as commutative, even though they are.
    		// This is because they have asymmetric register requirements.
    		// There are rewrite rules to try to place arguments in preferable slots.
    		{name: "HMULQ", argLength: 2, reg: gp21hmul, asm: "IMULQ", clobberFlags: true},
    		{name: "HMULL", argLength: 2, reg: gp21hmul, asm: "IMULL", clobberFlags: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/cmd/go/internal/work/exec.go

    		return nil, nil, err
    	}
    	outGo = append(outGo, gofiles...)
    
    	// Use sequential object file names to keep them distinct
    	// and short enough to fit in the .a header file name slots.
    	// We no longer collect them all into _all.o, and we'd like
    	// tools to see both the .o suffix and unique names, so
    	// we need to make them short enough not to be truncated
    	// in the final archive.
    	oseq := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	// We have to make sure that the out slice lives at least until
    	// the runtime knows the return values are valid. Otherwise, the
    	// return values might not be scanned by anyone during a GC.
    	// (out would be dead, and the return slots not yet alive.)
    	runtime.KeepAlive(out)
    
    	// runtime.getArgInfo expects to be able to find ctxt on the
    	// stack when it finds our caller, makeFuncStub. Make sure it
    	// doesn't get garbage collected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

     *
     * @author Charles Fry
     * @author Bob Lee ({@code com.google.common.collect.MapMaker})
     * @author Doug Lea ({@code ConcurrentHashMap})
     */
    @SuppressWarnings({
      "GoodTime", // lots of violations (nanosecond math)
      "nullness", // too much trouble for the payoff
    })
    @GwtCompatible(emulated = true)
    // TODO(cpovirk): Annotate for nullness.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

     *
     * @author Charles Fry
     * @author Bob Lee ({@code com.google.common.collect.MapMaker})
     * @author Doug Lea ({@code ConcurrentHashMap})
     */
    @SuppressWarnings({
      "GoodTime", // lots of violations (nanosecond math)
      "nullness", // too much trouble for the payoff
    })
    @GwtCompatible(emulated = true)
    // TODO(cpovirk): Annotate for nullness.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // MOVDnop doesn't emit instruction, only for ensuring the type.
    (MOVDreg x) && x.Uses == 1 => (MOVDnop x)
    
    // TODO: we should be able to get rid of MOVDnop all together.
    // But for now, this is enough to get rid of lots of them.
    (MOVDnop (MOVDconst [c])) => (MOVDconst [c])
    
    // fold constant into arithmetic ops
    (ADD  x (MOVDconst <t> [c])) && !t.IsPtr() => (ADDconst [c] x)
    (SUB  x (MOVDconst [c])) => (SUBconst [c] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    		traceRelease(trace)
    	}
    
    	// Wakeup an additional proc in case we have excessive runnable goroutines
    	// in local queues or in the global queue. If we don't, the proc will park itself.
    	// If we have lots of excessive work, resetspinning will unpark additional procs as necessary.
    	wakep()
    
    	releasem(mp)
    
    	return now
    }
    
    // usesLibcall indicates whether this runtime performs system calls
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top