Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Mem (0.35 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MOVWstoreidx", argLength: 4, reg: gpstore2, asm: "MOVW", typ: "Mem"},   // store 4 bytes of arg2 to arg0 + arg1, arg3 = mem.
    		{name: "MOVDstoreidx", argLength: 4, reg: gpstore2, asm: "MOVD", typ: "Mem"},   // store 8 bytes of arg2 to arg0 + arg1, arg3 = mem.
    		{name: "FMOVSstoreidx", argLength: 4, reg: fpstore2, asm: "FMOVS", typ: "Mem"}, // store 32-bit float of arg2 to arg0 + arg1, arg3=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Move [2] dst src mem) =>
            (MOVHstore dst (MOVHZload src mem) mem)
    (Move [4] dst src mem) =>
    	(MOVWstore dst (MOVWZload src mem) mem)
    // MOVD for load and store must have offsets that are multiple of 4
    (Move [8] {t} dst src mem) =>
    	(MOVDstore dst (MOVDload src mem) mem)
    (Move [3] dst src mem) =>
            (MOVBstore [2] dst (MOVBZload [2] src mem)
                    (MOVHstore dst (MOVHload src mem) mem))
    (Move [5] dst src mem) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBload src mem) mem)
    (Move [2] dst src mem) => (MOVWstore dst (MOVWload src mem) mem)
    (Move [4] dst src mem) => (MOVLstore dst (MOVLload src mem) mem)
    (Move [8] dst src mem) => (MOVQstore dst (MOVQload src mem) mem)
    (Move [16] dst src mem) && config.useSSE => (MOVOstore dst (MOVOload src mem) mem)
    (Move [16] dst src mem) && !config.useSSE =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. plugin/pkg/admission/limitranger/admission_test.go

    		},
    		{
    			pod:        validPod("pod-max-mem-request-limit", 2, getResourceRequirements(getComputeResourceList("", "250Mi"), getComputeResourceList("", "500Mi"))),
    			limitRange: createLimitRange(api.LimitTypePod, api.ResourceList{}, getComputeResourceList("", "1Gi"), api.ResourceList{}, api.ResourceList{}, api.ResourceList{}),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    			}
    
    			// We can merge if v is a predecessor of mem.
    			//
    			// For example, we can merge load into target in the
    			// following scenario:
    			//      x = read ... v
    			//    mem = write ... v
    			//   load = read ... mem
    			// target = add x load
    			if memPreds[v] {
    				continue
    			}
    			return false
    		}
    		if len(v.Args) > 0 && v.Args[len(v.Args)-1] == mem {
    			// If v takes mem as an input then we know mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/runtime/map.go

    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname makemap
    func makemap(t *maptype, hint int, h *hmap) *hmap {
    	mem, overflow := math.MulUintptr(uintptr(hint), t.Bucket.Size_)
    	if overflow || mem > maxAlloc {
    		hint = 0
    	}
    
    	// initialize Hmap
    	if h == nil {
    		h = new(hmap)
    	}
    	h.hash0 = uint32(rand())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top