Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for kmem (0.04 sec)

  1. src/runtime/map.go

    	}
    
    	// store new key/elem at insert position
    	if t.IndirectKey() {
    		kmem := newobject(t.Key)
    		*(*unsafe.Pointer)(insertk) = kmem
    		insertk = kmem
    	}
    	if t.IndirectElem() {
    		vmem := newobject(t.Elem)
    		*(*unsafe.Pointer)(elem) = vmem
    	}
    	typedmemmove(t.Key, insertk, key)
    	*inserti = top
    	h.count++
    
    done:
    	if h.flags&hashWriting == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Move [4] dst src mem) => (MOVWstore dst (MOVWZload src mem) mem)
    (Move [8] dst src mem) => (MOVDstore dst (MOVDload src mem) mem)
    (Move [16] dst src mem) =>
    	(MOVDstore [8] dst (MOVDload [8] src mem)
    		(MOVDstore dst (MOVDload src mem) mem))
    (Move [24] dst src mem) =>
            (MOVDstore [16] dst (MOVDload [16] src mem)
    	        (MOVDstore [8] dst (MOVDload [8] src mem)
                    (MOVDstore dst (MOVDload src mem) mem)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "MOVBstore", argLength: 3, reg: gpstore, asm: "MOVB", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},       // store byte in arg1 to arg0+auxint+aux. arg2=mem
    		{name: "MOVHstore", argLength: 3, reg: gpstore, asm: "MOVH", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},       // store 2 bytes in arg1 to arg0+auxint+aux. arg2=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM.rules

    	(MOVHstore dst (MOVHUload src mem) mem)
    (Move [2] dst src mem) =>
    	(MOVBstore [1] dst (MOVBUload [1] src mem)
    		(MOVBstore dst (MOVBUload src mem) mem))
    (Move [4] {t} dst src mem) && t.Alignment()%4 == 0 =>
    	(MOVWstore dst (MOVWload src mem) mem)
    (Move [4] {t} dst src mem) && t.Alignment()%2 == 0 =>
    	(MOVHstore [2] dst (MOVHUload [2] src mem)
    		(MOVHstore dst (MOVHUload src mem) mem))
    (Move [4] dst src mem) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritedec64.go

    		v1.AuxInt = int64ToAuxInt(4)
    		v1.AddArg(ptr)
    		v0.AddArg2(v1, mem)
    		v2 := b.NewValue0(v.Pos, OpLoad, typ.UInt32)
    		v2.AddArg2(ptr, mem)
    		v.AddArg2(v0, v2)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    	// cond: is64BitInt(t) && !config.BigEndian && !t.IsSigned()
    	// result: (Int64Make (Load <typ.UInt32> (OffPtr <typ.UInt32Ptr> [4] ptr) mem) (Load <typ.UInt32> ptr mem))
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top