Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 286 for uptr (3.48 sec)

  1. src/runtime/race_ppc64le.s

    	GO_ARGS
    	// void __tsan_go_atomic32_load(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
    	MOVD	$__tsan_go_atomic32_load(SB), R8
    	ADD	$32, R1, R6	// addr of caller's 1st arg
    	BR	racecallatomic<>(SB)
    	RET
    
    TEXT	sync∕atomic·LoadInt64(SB), NOSPLIT, $0-16
    	GO_ARGS
    	// void __tsan_go_atomic64_load(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
    	MOVD	$__tsan_go_atomic64_load(SB), R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/runtime/debuglog.go

    			sl -= uint64(len(b))
    			gwrite(b)
    		}
    
    	case debugLogConstString:
    		len, ptr := int(r.uvarint()), uintptr(r.uvarint())
    		ptr += firstmoduledata.etext
    		// We can't use unsafe.String as it may panic, which isn't safe
    		// in this (potentially) nowritebarrier context.
    		str := stringStruct{
    			str: unsafe.Pointer(ptr),
    			len: len,
    		}
    		s := *(*string)(unsafe.Pointer(&str))
    		print(s)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. src/encoding/xml/read_test.go

    }
    
    const (
    	emptyXML = `
    <Parent>
        <I></I>
        <IPtr></IPtr>
        <Is></Is>
        <IPtrs></IPtrs>
        <F></F>
        <FPtr></FPtr>
        <Fs></Fs>
        <FPtrs></FPtrs>
        <B></B>
        <BPtr></BPtr>
        <Bs></Bs>
        <BPtrs></BPtrs>
        <Bytes></Bytes>
        <BytesPtr></BytesPtr>
        <S></S>
        <SPtr></SPtr>
        <Ss></Ss>
        <SPtrs></SPtrs>
        <MyI></MyI>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. src/runtime/map_faststr.go

    	if h.B == 0 {
    		// One-bucket table.
    		b := (*bmap)(h.buckets)
    		if key.len < 32 {
    			// short key, doing lots of comparisons is ok
    			for i, kptr := uintptr(0), b.keys(); i < abi.MapBucketCount; i, kptr = i+1, add(kptr, 2*goarch.PtrSize) {
    				k := (*stringStruct)(kptr)
    				if k.len != key.len || isEmpty(b.tophash[i]) {
    					if b.tophash[i] == emptyRest {
    						break
    					}
    					continue
    				}
    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/crypto/aes/gcm_arm64.s

    #define pTbl R0
    #define tMsk R1
    #define tPtr R2
    #define plen R3
    #define dlen R4
    
    	MOVD	$0xC2, R1
    	LSL	$56, R1
    	MOVD	$1, R0
    	VMOV	R1, POLY.D[0]
    	VMOV	R0, POLY.D[1]
    	VEOR	ZERO.B16, ZERO.B16, ZERO.B16
    
    	MOVD	productTable+0(FP), pTbl
    	MOVD	tagMask+8(FP), tMsk
    	MOVD	T+16(FP), tPtr
    	MOVD	pLen+24(FP), plen
    	MOVD	dLen+32(FP), dlen
    
    	VLD1	(tPtr), [ACC0.B16]
    	VLD1	(tMsk), [B1.B16]
    
    	LSL	$3, plen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

    (NilCheck          ptr:(Addr {_} (SB))    _) => ptr
    (NilCheck ptr:(Convert (Addr {_} (SB)) _) _) => ptr
    
    // for late-expanded calls, recognize memequal applied to a single constant byte
    // Support is limited by 1, 2, 4, 8 byte sizes
    (StaticLECall {callAux} sptr (Addr {scon} (SB)) (Const64 [1]) mem)
      && isSameCall(callAux, "runtime.memequal")
      && symIsRO(scon)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_amd64.s

    	MOVOU X3, (16*3)(AX)
    	MOVOU X4, (16*4)(AX)
    	MOVOU X5, (16*5)(AX)
    	MOVQ $0, rptr
    
    	RET
    #undef x1in
    #undef y1in
    #undef z1in
    #undef x2in
    #undef y2in
    #undef xout
    #undef yout
    #undef zout
    #undef s2
    #undef z1sqr
    #undef h
    #undef r
    #undef hsqr
    #undef rsqr
    #undef hcub
    #undef rptr
    #undef sel_save
    #undef zero_save
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    		base.Fatalf("NewPtr: pointer to elem Type is nil")
    	}
    
    	if t := elem.cache.ptr; t != nil {
    		if t.Elem() != elem {
    			base.Fatalf("NewPtr: elem mismatch")
    		}
    		if elem.HasShape() != t.HasShape() {
    			base.Fatalf("Incorrect HasShape flag for cached pointer type")
    		}
    		return t
    	}
    
    	t := newType(TPTR)
    	t.extra = Ptr{Elem: elem}
    	t.width = int64(PtrSize)
    	t.align = uint8(PtrSize)
    	t.intRegs = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_wasm.go

    	*ptr = new
    	return old
    }
    
    //go:nosplit
    //go:noinline
    func Xchgint32(ptr *int32, new int32) int32 {
    	old := *ptr
    	*ptr = new
    	return old
    }
    
    //go:nosplit
    //go:noinline
    func Xchgint64(ptr *int64, new int64) int64 {
    	old := *ptr
    	*ptr = new
    	return old
    }
    
    //go:nosplit
    //go:noinline
    func Xchguintptr(ptr *uintptr, new uintptr) uintptr {
    	old := *ptr
    	*ptr = new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_ppc64x.go

    //go:noescape
    func Load8(ptr *uint8) uint8
    
    //go:noescape
    func Load64(ptr *uint64) uint64
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(ptr *uint32) uint32
    
    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top