Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for rtmap (0.13 sec)

  1. src/runtime/cgo/abi_ppc64x.h

    	STVX	V26, (rtmp)(R1)       \
    	MOVD	$(offset+16*7), rtmp  \
    	STVX	V27, (rtmp)(R1)       \
    	MOVD	$(offset+16*8), rtmp  \
    	STVX	V28, (rtmp)(R1)       \
    	MOVD	$(offset+16*9), rtmp  \
    	STVX	V29, (rtmp)(R1)       \
    	MOVD	$(offset+16*10), rtmp \
    	STVX	V30, (rtmp)(R1)       \
    	MOVD	$(offset+16*11), rtmp \
    	STVX	V31, (rtmp)(R1)
    
    #define RESTORE_VR(offset, rtmp)      \
    	MOVD	$(offset+16*0), rtmp  \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/runtime/vlop_arm.s

    DATA fast_udiv_tab<>+0x3c(SB)/4, $0x81828384
    GLOBL fast_udiv_tab<>(SB), RODATA, $64
    
    // The linker will pass numerator in R8
    #define Rn R8
    // The linker expects the result in RTMP
    #define RTMP R11
    
    TEXT runtimeĀ·_divu(SB), NOSPLIT, $16-0
    	// It's not strictly true that there are no local pointers.
    	// It could be that the saved registers Rq, Rr, Rs, and Rm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/kind_string.go

    	_ = x[TCOMPLEX128-13]
    	_ = x[TFLOAT32-14]
    	_ = x[TFLOAT64-15]
    	_ = x[TBOOL-16]
    	_ = x[TPTR-17]
    	_ = x[TFUNC-18]
    	_ = x[TSLICE-19]
    	_ = x[TARRAY-20]
    	_ = x[TSTRUCT-21]
    	_ = x[TCHAN-22]
    	_ = x[TMAP-23]
    	_ = x[TINTER-24]
    	_ = x[TFORW-25]
    	_ = x[TANY-26]
    	_ = x[TSTRING-27]
    	_ = x[TUNSAFEPTR-28]
    	_ = x[TIDEAL-29]
    	_ = x[TNIL-30]
    	_ = x[TBLANK-31]
    	_ = x[TFUNCARGS-32]
    	_ = x[TCHANARGS-33]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:38 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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/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)
  9. src/cmd/compile/internal/typebits/typebits.go

    		// are not considered pointers by garbage collection and stack copying.
    		return
    	}
    
    	switch t.Kind() {
    	case types.TPTR, types.TUNSAFEPTR, types.TFUNC, types.TCHAN, types.TMAP:
    		if off&int64(types.PtrSize-1) != 0 {
    			base.Fatalf("typebits.Set: invalid alignment, %v", t)
    		}
    		bv.Set(int32(off / int64(types.PtrSize))) // pointer
    
    	case types.TSTRING:
    		// struct { byte *str; intgo len; }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/identity.go

    			}
    		}
    		return true
    
    	case TARRAY:
    		if t1.NumElem() != t2.NumElem() {
    			return false
    		}
    
    	case TCHAN:
    		if t1.ChanDir() != t2.ChanDir() {
    			return false
    		}
    
    	case TMAP:
    		if !identical(t1.Key(), t2.Key(), flags, assumedEqual) {
    			return false
    		}
    	}
    
    	return identical(t1.Elem(), t2.Elem(), flags, assumedEqual)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:57:01 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top