Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for uvarint (0.46 sec)

  1. src/runtime/mheap.go

    // Non-preemptible because it is used by write barriers.
    //
    //go:nowritebarrier
    //go:nosplit
    func inheap(b uintptr) bool {
    	return spanOfHeap(b) != nil
    }
    
    // inHeapOrStack is a variant of inheap that returns true for pointers
    // into any allocated heap span.
    //
    //go:nowritebarrier
    //go:nosplit
    func inHeapOrStack(b uintptr) bool {
    	s := spanOf(b)
    	if s == nil || b < s.base() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    			//
    			// (We will filter out the extra tests explicitly in computePatternAll.)
    			wantTest = true
    
    		case ld.allPatternIsRoot && ld.allClosesOverTests && new.has(pkgInAll):
    			// This variant of the "all" pattern includes imports of tests of every
    			// package that is itself in "all", and pkg is in "all", so its test is
    			// also in "all" (as above).
    			wantTest = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    This will be checked at the end of configuring variant configurations, as they are locked against further mutation.
    
    If the set of attributes is shared across configurations, consider adding an additional attribute to one of the variants for the sole purpose of disambiguation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    		int64) (relocatedOffset int64, nExtReloc int, ok bool)
    	// Archrelocvariant is a second arch-specific hook used for
    	// relocation processing; it handles relocations where r.Type is
    	// insufficient to describe the relocation (r.Variant !=
    	// sym.RV_NONE). Here "rel" is the relocation being applied, "sym"
    	// is the symbol containing the chunk of data to which the
    	// relocation applies, and "off" is the contents of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

        => (SET(B|AE)  (BTQconst [int8(log32(c))] x))
    (SET(NE|EQ) (TESTQ (MOVQconst [c]) x)) && isUint64PowerOfTwo(c)
        => (SET(B|AE)  (BTQconst [int8(log64(c))] x))
    // SET..store variant
    (SET(NE|EQ)store [off] {sym} ptr (TESTL (SHLL (MOVLconst [1]) x) y) mem)
        => (SET(B|AE)store  [off] {sym} ptr (BTL x y) mem)
    (SET(NE|EQ)store [off] {sym} ptr (TESTQ (SHLQ (MOVQconst [1]) x) y) mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top