Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for rtmap (0.09 sec)

  1. src/runtime/mem_linux.go

    	case madviseUnsupported:
    		// Since Linux 3.18, support for madvise is optional.
    		// Fall back on mmap if it's not supported.
    		// _MAP_ANON|_MAP_FIXED|_MAP_PRIVATE will unmap all the
    		// pages in the old mapping, and remap the memory region.
    		mmap(v, n, _PROT_READ|_PROT_WRITE, _MAP_ANON|_MAP_FIXED|_MAP_PRIVATE, -1, 0)
    	}
    
    	if debug.harddecommit > 0 {
    		p, err := mmap(v, n, _PROT_NONE, _MAP_ANON|_MAP_FIXED|_MAP_PRIVATE, -1, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/universe.go

    	okforlen[types.TCHAN] = true
    	okforlen[types.TMAP] = true
    	okforlen[types.TSLICE] = true
    	okforlen[types.TSTRING] = true
    
    	okforeq[types.TPTR] = true
    	okforeq[types.TUNSAFEPTR] = true
    	okforeq[types.TINTER] = true
    	okforeq[types.TCHAN] = true
    	okforeq[types.TSTRING] = true
    	okforeq[types.TBOOL] = true
    	okforeq[types.TMAP] = true    // nil only; refined in typecheck
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/UrlBackedArtifactMetadata.java

            if (componentIdentifier instanceof MavenUniqueSnapshotComponentIdentifier) {
                // This special case is for Maven snapshots with Gradle Module Metadata when we need to remap the file name, which
                // corresponds to the unique timestamp, to the SNAPSHOT version, for backwards compatibility
                return new DefaultModuleComponentArtifactIdentifier(
                    componentIdentifier,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    	}
    	defaultSampleType := sTypes[0]
    	reMap, needToModify := make([]int, len(sTypes)), false
    	for i, st := range sTypes {
    		if st == p.DefaultSampleType {
    			defaultSampleType = p.DefaultSampleType
    		}
    		idx := searchValueType(p.SampleType, st)
    		if idx < 0 {
    			return fmt.Errorf("%q sample type is not found in profile", st)
    		}
    		reMap[i] = idx
    		if idx != i {
    			needToModify = true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    func (t *Type) IsPtrShaped() bool {
    	return t.kind == TPTR || t.kind == TUNSAFEPTR ||
    		t.kind == TMAP || t.kind == TCHAN || t.kind == TFUNC
    }
    
    // HasNil reports whether the set of values determined by t includes nil.
    func (t *Type) HasNil() bool {
    	switch t.kind {
    	case TCHAN, TFUNC, TINTER, TMAP, TNIL, TPTR, TSLICE, TUNSAFEPTR:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// if *arg0 == arg1 {
    		//   *arg0 = arg2
    		//   return (true, memory)
    		// } else {
    		//   return (false, memory)
    		// }
    		// LDAXR	(Rarg0), Rtmp
    		// CMP		Rarg1, Rtmp
    		// BNE		3(PC)
    		// STLXR	Rarg2, (Rarg0), Rtmp
    		// CBNZ		Rtmp, -4(PC)
    		// CSET		EQ, Rout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. src/runtime/mpagealloc_64bit.go

    		return summaryRangeToSumAddrRange(level, sumIdxBase, sumIdxLimit)
    	}
    
    	// Find the first inUse index which is strictly greater than base.
    	//
    	// Because this function will never be asked remap the same memory
    	// twice, this index is effectively the index at which we would insert
    	// this new growth, and base will never overlap/be contained within
    	// any existing range.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    	case 75:
    		// If offset L fits in a 24 bit unsigned immediate:
    		//	add $lo, R, Rtmp
    		//	add $hi, Rtmp, Rtmp
    		//	ldr (Rtmp), R
    		// Otherwise, use constant pool:
    		//	mov $L, Rtmp (from constant pool)
    		//	add Rtmp, R, Rtmp
    		//	ldp (Rtmp), (R1, R2)
    		rf, rt1, rt2 := p.From.Reg, p.To.Reg, int16(p.To.Offset)
    		if rf == REGTMP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

          }
        }
        replicas.push_back(replica);
      }
    
      return success();
    }
    
    // Creates islands per replica from `tf_device.replicate` region and remap
    // replicate results with new island outputs. A single island is created to
    // forward control dependencies if there is a control dependency output from the
    // replicate island. Devices are remapped from aliased devices to explicit
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/universe.go

    	ResumeCheckSize()
    
    	Types[TUNSAFEPTR] = defBasic(TUNSAFEPTR, UnsafePkg, "Pointer")
    
    	Types[TBLANK] = newType(TBLANK)
    	Types[TNIL] = newType(TNIL)
    
    	// simple aliases
    	SimType[TMAP] = TPTR
    	SimType[TCHAN] = TPTR
    	SimType[TFUNC] = TPTR
    	SimType[TUNSAFEPTR] = TPTR
    
    	for et := TINT8; et <= TUINT64; et++ {
    		IsInt[et] = true
    	}
    	IsInt[TINT] = true
    	IsInt[TUINT] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top