Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 186 for resptr (0.14 sec)

  1. src/cmd/compile/internal/ssa/shift_test.go

    			Valu("argptr", OpOffPtr, ptyp, 8, nil, "SP"),
    			Valu("resptr", OpOffPtr, ptyp, 16, nil, "SP"),
    			Valu("load", OpLoad, typ, 0, nil, "argptr", "mem"),
    			Valu("c", OpConst64, c.config.Types.UInt64, amount, nil),
    			Valu("shift", op, typ, 0, nil, "load", "c"),
    			Valu("store", OpStore, types.TypeMem, 0, c.config.Types.UInt64, "resptr", "shift", "mem"),
    			Exit("store")))
    	Compile(fun.f)
    	return fun
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_amd64.s

    	PXOR X10, X4
    	PXOR X11, X5
    
    	MOVOU X0, (16*0)(res_ptr)
    	MOVOU X1, (16*1)(res_ptr)
    	MOVOU X2, (16*2)(res_ptr)
    	MOVOU X3, (16*3)(res_ptr)
    	MOVOU X4, (16*4)(res_ptr)
    	MOVOU X5, (16*5)(res_ptr)
    
    	RET
    /* ---------------------------------------*/
    // func p256NegCond(val *p256Element, cond int)
    TEXT ·p256NegCond(SB),NOSPLIT,$0
    	MOVQ val+0(FP), res_ptr
    	MOVQ cond+8(FP), t0
    	// acc = poly
    	MOVQ $-1, acc0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. internal/config/subnet/subnet.go

    		Transport: c.transport,
    	}
    
    	resp, err := client.Do(r)
    	if err != nil {
    		return "", err
    	}
    	defer xhttp.DrainBody(resp.Body)
    
    	respBytes, err := io.ReadAll(io.LimitReader(resp.Body, respBodyLimit))
    	if err != nil {
    		return "", err
    	}
    	respStr := string(respBytes)
    
    	if resp.StatusCode == http.StatusOK {
    		return respStr, nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 27 16:35:36 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_arm64.s

    		CSEL	EQ, acc2, t2, t2
    		CSEL	EQ, acc3, t3, t3
    
    		CMP	$16, const1
    		BNE	loop_select
    
    	STP	(x0, x1), 0*16(res_ptr)
    	STP	(x2, x3), 1*16(res_ptr)
    	STP	(y0, y1), 2*16(res_ptr)
    	STP	(y2, y3), 3*16(res_ptr)
    	STP	(t0, t1), 4*16(res_ptr)
    	STP	(t2, t3), 5*16(res_ptr)
    	RET
    /* ---------------------------------------*/
    // func p256SelectAffine(res *p256AffinePoint, table *p256AffineTable, idx int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. test/fixedbugs/issue9537.dir/b.go

    type Intf interface {
    	Get()        []byte
    	RetPtr(int)  *int
    	RetRPtr(int) (int, *int)
    }
    
    func main() {
    	x := &a.X{T: [32]byte{1, 2, 3, 4}}
    	var ix Intf = X{x}
    	t1 := ix.Get()
    	t2 := x.Get()
    	if !bytes.Equal(t1, t2) {
    		panic(t1)
    	}
    
    	p1 := ix.RetPtr(5)
    	p2 := x.RetPtr(7)
    	if *p1 != 6 || *p2 != 8 {
    		panic(*p1)
    	}
    
    	r1, r2 := ix.RetRPtr(10)
    	r3, r4 := x.RetRPtr(13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 22 03:25:12 UTC 2015
    - 678 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Zero [0] _ mem) => mem
    (Zero [1] destptr mem) => (I64Store8 destptr (I64Const [0]) mem)
    (Zero [2] destptr mem) => (I64Store16 destptr (I64Const [0]) mem)
    (Zero [4] destptr mem) => (I64Store32 destptr (I64Const [0]) mem)
    (Zero [8] destptr mem) => (I64Store destptr (I64Const [0]) mem)
    
    (Zero [3] destptr mem) =>
    	(I64Store8 [2] destptr (I64Const [0])
    		(I64Store16 destptr (I64Const [0]) mem))
    (Zero [5] destptr mem) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/reset.go

    )
    
    var (
    	iptablesCleanupInstructions = dedent.Dedent(`
    		The reset process does not reset or clean up iptables rules or IPVS tables.
    		If you wish to reset iptables, you must do so manually by using the "iptables" command.
    
    		If your cluster was setup to utilize IPVS, run ipvsadm --clear (or similar)
    		to reset your system's IPVS tables.
    
    		The reset process does not clean your kubeconfig files and you must remove them manually.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm_s390x.s

    #define res_ptr   R1
    #define in_ptr   R2
    #define T1L   V2
    #define T1H   V3
    
    TEXT ·p256BigToLittle(SB), NOSPLIT, $0
    	MOVD res+0(FP), res_ptr
    	MOVD in+8(FP), in_ptr
    
    	VL 0(in_ptr), T1H
    	VL 16(in_ptr), T1L
    
    	VPDI $0x4, T1L, T1L, T1L
    	VPDI $0x4, T1H, T1H, T1H
    
    	VST T1L, 0(res_ptr)
    	VST T1H, 16(res_ptr)
    	RET
    
    #undef res_ptr
    #undef in_ptr
    #undef T1L
    #undef T1H
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/debug/buildinfo/buildinfo.go

    		} else {
    			bo = binary.LittleEndian
    		}
    		var readPtr func([]byte) uint64
    		if ptrSize == 4 {
    			readPtr = func(b []byte) uint64 { return uint64(bo.Uint32(b)) }
    		} else if ptrSize == 8 {
    			readPtr = bo.Uint64
    		} else {
    			return "", "", errNotGoExe
    		}
    		vers = readString(x, ptrSize, readPtr, readPtr(data[16:]))
    		mod = readString(x, ptrSize, readPtr, readPtr(data[16+ptrSize:]))
    	}
    	if vers == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/reflect/makefunc.go

    type makeFuncCtxt struct {
    	fn      uintptr
    	stack   *bitVector // ptrmap for both stack args and results
    	argLen  uintptr    // just args
    	regPtrs abi.IntArgRegBitmap
    }
    
    // moveMakeFuncArgPtrs uses ctxt.regPtrs to copy integer pointer arguments
    // in args.Ints to args.Ptrs where the GC can see them.
    //
    // This is similar to what reflectcallmove does in the runtime, except
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top