Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 796 for oldR (0.04 sec)

  1. src/runtime/sys_netbsd_amd64.s

    	SYSCALL
    	JCC	2(PC)
    	MOVL	$0xf1, 0xf1		// crash
    	RET
    
    TEXT runtime·sysctl(SB),NOSPLIT,$0
    	MOVQ	mib+0(FP), DI		// arg 1 - name
    	MOVL	miblen+8(FP), SI		// arg 2 - namelen
    	MOVQ	out+16(FP), DX		// arg 3 - oldp
    	MOVQ	size+24(FP), R10		// arg 4 - oldlenp
    	MOVQ	dst+32(FP), R8		// arg 5 - newp
    	MOVQ	ndst+40(FP), R9		// arg 6 - newlen
    	MOVQ	$SYS___sysctl, AX
    	SYSCALL
    	JCC 4(PC)
    	NEGQ	AX
    	MOVL	AX, ret+48(FP)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/runtime/map_fast64.go

    		if c := h.oldbuckets; c != nil {
    			if !h.sameSizeGrow() {
    				// There used to be half as many buckets; mask down one more power of two.
    				m >>= 1
    			}
    			oldb := (*bmap)(add(c, (hash&m)*uintptr(t.BucketSize)))
    			if !evacuated(oldb) {
    				b = oldb
    			}
    		}
    	}
    	for ; b != nil; b = b.overflow(t) {
    		for i, k := uintptr(0), b.keys(); i < abi.MapBucketCount; i, k = i+1, add(k, 8) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/runtime/map_fast32.go

    		if c := h.oldbuckets; c != nil {
    			if !h.sameSizeGrow() {
    				// There used to be half as many buckets; mask down one more power of two.
    				m >>= 1
    			}
    			oldb := (*bmap)(add(c, (hash&m)*uintptr(t.BucketSize)))
    			if !evacuated(oldb) {
    				b = oldb
    			}
    		}
    	}
    	for ; b != nil; b = b.overflow(t) {
    		for i, k := uintptr(0), b.keys(); i < abi.MapBucketCount; i, k = i+1, add(k, 4) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/runtime/map_faststr.go

    	if c := h.oldbuckets; c != nil {
    		if !h.sameSizeGrow() {
    			// There used to be half as many buckets; mask down one more power of two.
    			m >>= 1
    		}
    		oldb := (*bmap)(add(c, (hash&m)*uintptr(t.BucketSize)))
    		if !evacuated(oldb) {
    			b = oldb
    		}
    	}
    	top := tophash(hash)
    	for ; b != nil; b = b.overflow(t) {
    		for i, kptr := uintptr(0), b.keys(); i < abi.MapBucketCount; i, kptr = i+1, add(kptr, 2*goarch.PtrSize) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/runtime/sys_netbsd_arm.s

    	MOVW new+0(FP), R0	// arg 1 - nss
    	MOVW old+4(FP), R1	// arg 2 - oss
    	SWI $SYS___sigaltstack14
    	MOVW.CS $0, R8	// crash on syscall failure
    	MOVW.CS R8, (R8)
    	RET
    
    TEXT runtime·sysctl(SB),NOSPLIT,$8
    	MOVW mib+0(FP), R0	// arg 1 - name
    	MOVW miblen+4(FP), R1	// arg 2 - namelen
    	MOVW out+8(FP), R2	// arg 3 - oldp
    	MOVW size+12(FP), R3	// arg 4 - oldlenp
    	MOVW dst+16(FP), R4	// arg 5 - newp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/runtime/sys_darwin_arm64.s

    	MOVW	8(R0), R1	// arg 2 miblen
    	MOVD	16(R0), R2	// arg 3 oldp
    	MOVD	24(R0), R3	// arg 4 oldlenp
    	MOVD	32(R0), R4	// arg 5 newp
    	MOVD	40(R0), R5	// arg 6 newlen
    	MOVD	0(R0), R0	// arg 1 mib
    	BL	libc_sysctl(SB)
    	RET
    
    TEXT runtime·sysctlbyname_trampoline(SB),NOSPLIT,$0
    	MOVD	8(R0), R1	// arg 2 oldp
    	MOVD	16(R0), R2	// arg 3 oldlenp
    	MOVD	24(R0), R3	// arg 4 newp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  7. src/sync/atomic/doc.go

    // AndInt64 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    // Consider using the more ergonomic and less error-prone [Int64.And] instead.
    func AndInt64(addr *int64, mask int64) (old int64)
    
    // AndUint64 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb.py

    			bp = buckets + bucket
    			if oldbuckets:
    				oldbucket = bucket & (2 ** (B - 1) - 1)
    				oldbp = oldbuckets + oldbucket
    				oldb = oldbp.dereference()
    				if (oldb['overflow'].cast(inttype) & 1) == 0:  # old bucket not evacuated yet
    					if bucket >= 2 ** (B - 1):
    						continue    # already did old bucket
    					bp = oldbp
    			while bp:
    				b = bp.dereference()
    				for i in xrange(MapBucketCount):
    					if b['tophash'][i] != 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

                "new/two": fingerprint("two"),
                "new/four": fingerprint("four")
            ], [
                "old/one": fingerprint("one"),
                "old/three": fingerprint("three"),
                "old/four": fingerprint("four")
            ]) == [removed("old/three": "three"), added("new/two": "two")]
        }
    
        def "non-trivial replacement with absolute paths (#strategy.class.simpleName)"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. pkg/registry/certificates/certificates/strategy.go

    	oldCSR := old.(*certificates.CertificateSigningRequest)
    	newCSR := obj.(*certificates.CertificateSigningRequest)
    	return validation.ValidateCertificateSigningRequestUpdate(newCSR, oldCSR)
    }
    
    // WarningsOnUpdate returns warnings for the given update.
    func (csrStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 11.4K bytes
    - Viewed (0)
Back to top