Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for podstore (0.23 sec)

  1. test/codegen/memcombine.go

    }
    
    func zero_uint64_2(d1, d2 []uint64) {
    	_, _ = d1[1], d2[1]
    	d1[0], d1[1] = 0, 0 // arm64:"STP",-"MOVB",-"MOVH"
    	d2[1], d2[0] = 0, 0 // arm64:"STP",-"MOVB",-"MOVH"
    }
    
    func loadstore(p, q *[4]uint8) {
    	// amd64:"MOVL",-"MOVB"
    	// arm64:"MOVWU",-"MOVBU"
    	x0, x1, x2, x3 := q[0], q[1], q[2], q[3]
    	// amd64:"MOVL",-"MOVB"
    	// arm64:"MOVW",-"MOVB"
    	p[0], p[1], p[2], p[3] = x0, x1, x2, x3
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    		v := c.regoff(&p.To)
    		r := int(p.To.Reg)
    		// Offsets in DS form stores must be a multiple of 4
    		if o.ispfx {
    			o1, o2 = pfxstore(p.As, p.From.Reg, int16(r), PFX_R_ABS)
    			o1 |= uint32((v >> 16) & 0x3FFFF)
    			o2 |= uint32(v & 0xFFFF)
    		} else {
    			inst := c.opstore(p.As)
    			if c.opform(inst) == DS_FORM && v&0x3 != 0 {
    				log.Fatalf("invalid offset for DS form load/store %v", p)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "MOVWstore", argLength: 3, reg: gpstore, asm: "MOVW", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"}, // store 4 bytes
    		{name: "MOVDstore", argLength: 3, reg: gpstore, asm: "MOVD", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"}, // store 8 bytes
    
    		// Store floating point value into arg0+aux+auxint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// Manage RuntimeClass resources.
    	runtimeClassManager *runtimeclass.Manager
    
    	// Cache last per-container error message to reduce log spam
    	logReduction *logreduction.LogReduction
    
    	// PodState provider instance
    	podStateProvider podStateProvider
    
    	// Use RuntimeDefault as the default seccomp profile for all workloads.
    	seccompDefault bool
    
    	// MemorySwapBehavior defines how swap is used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MOVWstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVW", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},   // store 4 bytes of arg1 to arg0 + auxInt + aux.  arg2=mem.
    		{name: "MOVDstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVD", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},   // store 8 bytes of arg1 to arg0 + auxInt + aux.  arg2=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)
  6. src/cmd/internal/obj/s390x/asmz.go

    		return op_ST, true
    	case AMOVH, AMOVHZ:
    		return op_STH, true
    	case AMOVB, AMOVBZ:
    		return op_STC, true
    	}
    	return 0, false
    }
    
    // zopstore returns the RXY op for the given store.
    func (c *ctxtz) zopstore(a obj.As) uint32 {
    	switch a {
    	// fixed point store
    	case AMOVD:
    		return op_STG
    	case AMOVW, AMOVWZ:
    		return op_STY
    	case AMOVH, AMOVHZ:
    		return op_STHY
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    			}
    		}
    	}
    	if isSameCall(sym, "runtime.racefuncenter") {
    		// TODO REGISTER ABI this needs to be cleaned up.
    		// If we're removing racefuncenter, remove its argument as well.
    		if v.Args[0].Op != OpStore {
    			if v.Op == OpStaticLECall {
    				// there is no store, yet.
    				return true
    			}
    			return false
    		}
    		mem := v.Args[0].Args[2]
    		v.Args[0].reset(OpCopy)
    		v.Args[0].AddArg(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)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

            .body("B")
            .build(),
        )
        val request1 =
          Request.Builder()
            .url(server.url("/"))
            .cacheControl(CacheControl.Builder().noStore().build())
            .build()
        val response1 = client.newCall(request1).execute()
        assertThat(response1.body.string()).isEqualTo("A")
        val request2 =
          Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) rawLoad(t *types.Type, src *ssa.Value) *ssa.Value {
    	return s.newValue2(ssa.OpLoad, t, src, s.mem())
    }
    
    func (s *state) store(t *types.Type, dst, val *ssa.Value) {
    	s.vars[memVar] = s.newValue3A(ssa.OpStore, types.TypeMem, t, dst, val, s.mem())
    }
    
    func (s *state) zero(t *types.Type, dst *ssa.Value) {
    	s.instrument(t, dst, instrumentWrite)
    	store := s.newValue2I(ssa.OpZero, types.TypeMem, t.Size(), dst, s.mem())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/opGen.go

    				{0, 4294998015}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 g R12 SP R14 SB
    				{1, 4294901760}, // F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15
    			},
    		},
    	},
    	{
    		name:           "MOVDstore",
    		auxType:        auxSymOff,
    		argLen:         3,
    		faultOnNilArg0: true,
    		symEffect:      SymWrite,
    		asm:            arm.AMOVD,
    		reg: regInfo{
    			inputs: []inputInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top