Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 386 for uptr (5.06 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/cmd/vendor/golang.org/x/sys/unix/pledge_openbsd.go

    func Pledge(promises, execpromises string) error {
    	if err := pledgeAvailable(); err != nil {
    		return err
    	}
    
    	pptr, err := BytePtrFromString(promises)
    	if err != nil {
    		return err
    	}
    
    	exptr, err := BytePtrFromString(execpromises)
    	if err != nil {
    		return err
    	}
    
    	return pledge(pptr, exptr)
    }
    
    // PledgePromises implements the pledge syscall.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/writebarrier.go

    }
    
    // needWBdst reports whether GC needs to see what used to be in *ptr when ptr is
    // the target of a pointer store.
    func needWBdst(ptr, mem *Value, zeroes map[ID]ZeroRegion) bool {
    	// Detect storing to zeroed memory.
    	var off int64
    	for ptr.Op == OpOffPtr {
    		off += ptr.AuxInt
    		ptr = ptr.Args[0]
    	}
    	ptrSize := ptr.Block.Func.Config.PtrSize
    	if off%ptrSize != 0 {
    		return true // see issue 61187
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/walk/convert.go

    		// Copy from the static string data to the [n]byte.
    		if len(sc) > 0 {
    			sptr := ir.NewUnaryExpr(base.Pos, ir.OSPTR, s)
    			sptr.SetBounded(true)
    			as := ir.NewAssignStmt(base.Pos, ir.NewStarExpr(base.Pos, p), ir.NewStarExpr(base.Pos, typecheck.ConvNop(sptr, t.PtrTo())))
    			appendWalkStmt(init, as)
    		}
    
    		// Slice the [n]byte to a []byte.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  10. 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)
Back to top