Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for kmem (0.05 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    		// lib string is defined as base.a/mem.o or path/base.a/mem.o
    		n := strings.Split(lib, "/")
    		path := ""
    		base := n[len(n)-2]
    		mem := n[len(n)-1]
    		if len(n) > 2 {
    			path = lib[:len(lib)-len(base)-len(mem)-2]
    
    		}
    		ldimpf = &XcoffLdImportFile64{
    			Limpidpath: path,
    			Limpidbase: base,
    			Limpidmem:  mem,
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    //	b1:
    //	    v3 = ArgIntReg <int> {p1+0} [0] : AX
    //	    ... more arg regs ..
    //	    v4 = ArgFloatReg <float32> {f1+0} [0] : X0
    //	    v52 = MOVQstore <mem> {p1} v2 v3 v1
    //	    ... more stores ...
    //	    v68 = MOVSSstore <mem> {f4} v2 v67 v66
    //	    v38 = MOVQstoreconst <mem> {blob} [val=0,off=0] v2 v32
    //
    // Important: locatePrologEnd is expected to work properly only with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    //go:linkname newarray
    func newarray(typ *_type, n int) unsafe.Pointer {
    	if n == 1 {
    		return mallocgc(typ.Size_, typ, true)
    	}
    	mem, overflow := math.MulUintptr(typ.Size_, uintptr(n))
    	if overflow || mem > maxAlloc || n < 0 {
    		panic(plainError("runtime: allocation size out of range"))
    	}
    	return mallocgc(mem, typ, true)
    }
    
    // reflect_unsafe_NewArray is meant for package reflect,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_windows.go

    	handle = Handle(r0)
    	if handle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func LocalFree(hmem Handle) (handle Handle, err error) {
    	r0, _, e1 := Syscall(procLocalFree.Addr(), 1, uintptr(hmem), 0, 0)
    	handle = Handle(r0)
    	if handle != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
  5. src/cmd/compile/internal/types/type.go

    	t.width = int64(PtrSize)
    	t.align = uint8(PtrSize)
    	t.intRegs = 1
    	if NewPtrCacheEnabled {
    		elem.cache.ptr = t
    	}
    	if elem.HasShape() {
    		t.SetHasShape(true)
    	}
    	t.alg = AMEM
    	if elem.Noalg() {
    		t.SetNoalg(true)
    		t.alg = ANOALG
    	}
    	// Note: we can't check elem.NotInHeap here because it might
    	// not be set yet. See size.go:PtrDataSize.
    	t.ptrBytes = int64(PtrSize)
    	return t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/defaults_test.go

    				{
    					Resources: v1.ResourceRequirements{
    						Limits: v1.ResourceList{
    							v1.ResourceCPU:    cpu,
    							v1.ResourceMemory: mem,
    						},
    						Requests: v1.ResourceList{
    							v1.ResourceCPU:    cpu,
    							v1.ResourceMemory: mem,
    						},
    					},
    				},
    			},
    			validators: []InitContainerValidator{assertResource},
    		},
    		{
    			name: "Probe",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	// "VMOVQ r/m64, xmm1"/6E vs "VMOVQ xmm2/m64, xmm1"/7E with mem operand.
    	VMOVQ (AX), X20           // 62e1fd086e20 or 62e1fe087e20
    	VMOVQ 7(DX), X20          // 62e1fd086ea207000000 or 62e1fe087ea207000000
    	VMOVQ -15(R11)(CX*1), X20 // 62c1fd086ea40bf1ffffff or 62c1fe087ea40bf1ffffff
    	VMOVQ (SP)(AX*2), X20     // 62e1fd086e2444 or 62e1fe087e2444
    	// "VMOVQ xmm1, r/m64"/7E vs "VMOVQ xmm1, xmm2/m64"/D6 with mem operand.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	}
    }
    
    func ExampleQuantityValue() {
    	q := QuantityValue{
    		Quantity: MustParse("1Mi"),
    	}
    	fs := pflag.FlagSet{}
    	fs.SetOutput(os.Stdout)
    	fs.Var(&q, "mem", "sets amount of memory")
    	fs.PrintDefaults()
    	// Output:
    	// --mem quantity   sets amount of memory (default 1Mi)
    }
    
    func TestQuantityUnmarshalCBOR(t *testing.T) {
    	for _, tc := range []struct {
    		name       string
    		in         []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/cache_test.go

    	Fatalf(format string, args ...interface{})
    }
    
    func makeBasePod(t testingMode, nodeName, objName, cpu, mem, extended string, ports []v1.ContainerPort) *v1.Pod {
    	req := make(map[v1.ResourceName]string)
    	if cpu != "" {
    		req[v1.ResourceCPU] = cpu
    		req[v1.ResourceMemory] = mem
    
    		if extended != "" {
    			parts := strings.Split(extended, ":")
    			if len(parts) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    			} else {
    				x = e.p.NewValue1(pos, OpStoreReg, loc.(LocalSlot).Type, c)
    			}
    		} else {
    			if dstReg {
    				x = e.p.NewValue1(pos, OpLoadReg, c.Type, c)
    			} else {
    				// mem->mem. Use temp register.
    				r := e.findRegFor(c.Type)
    				e.erase(r)
    				t := e.p.NewValue1(pos, OpLoadReg, c.Type, c)
    				e.set(r, vid, t, false, pos)
    				x = e.p.NewValue1(pos, OpStoreReg, loc.(LocalSlot).Type, t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top