Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,669 for rstore (0.11 sec)

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

    			Valu("test", OpAMD64CMPBconst, types.TypeFlags, 0, nil, "cond"),
    			Eq("test", "next", "exit"),
    		),
    		Bloc("next",
    			Goto("loop"),
    		),
    		Bloc("exit",
    			Valu("store", OpAMD64MOVQstore, types.TypeMem, 0, nil, "ptr", "ld", "call"),
    			Exit("store"),
    		),
    	)
    	regalloc(f.f)
    	checkFunc(f.f)
    	for _, v := range f.blocks["loop"].Values {
    		if v.Op == OpStoreReg {
    			t.Errorf("spill inside loop %s", v.LongString())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/bytecode/AsmExtensions.kt

        visitInsn(Opcodes.RETURN)
    }
    
    
    internal
    fun MethodVisitor.ALOAD(`var`: Int) {
        visitVarInsn(Opcodes.ALOAD, `var`)
    }
    
    
    internal
    fun MethodVisitor.ASTORE(`var`: Int) {
        visitVarInsn(Opcodes.ASTORE, `var`)
    }
    
    
    internal
    fun MethodVisitor.GOTO(label: Label) {
        visitJumpInsn(Opcodes.GOTO, label)
    }
    
    
    internal
    inline fun <reified T> MethodVisitor.TRY_CATCH(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "MOVQstore", argLength: 3, reg: gpstore, asm: "MOVQ", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},
    
    		// MOVOload/store: 16 byte load/store
    		// These operations are only used to move data around: there is no *O arithmetic, for example.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  4. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v4-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 135 bytes
    - Viewed (0)
  5. pkg/kubelet/userns/userns_manager.go

    	if err != nil {
    		return err
    	}
    
    	fstore, err := utilstore.NewFileStore(dir, &utilfs.DefaultFs{})
    	if err != nil {
    		return fmt.Errorf("create user namespace store: %w", err)
    	}
    	if err := fstore.Write(mappingsFile, data); err != nil {
    		return err
    	}
    
    	// We need to fsync the parent dir so the file is guaranteed to be there.
    	// fstore guarantees an atomic write, we need durability too.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_linux_ppc64x.S

    .file "gcc_linux_ppc64x.S"
    
    // Define a frame which has no argument space, but is compatible with
    // a call into a Go ABI. We allocate 32B to match FIXED_FRAME with
    // similar semantics, except we store the backchain pointer, not the
    // LR at offset 0. R2 is stored in the Go TOC save slot (offset 24).
    .set GPR_OFFSET, 32
    .set FPR_OFFSET, GPR_OFFSET + 18*8
    .set VR_OFFSET, FPR_OFFSET + 18*8
    .set FRAME_SIZE, VR_OFFSET + 12*16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:03:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/state/state_checkpoint.go

    	err := sc.storeState()
    	if err != nil {
    		klog.InfoS("Store state to checkpoint error", "err", err)
    	}
    }
    
    // SetDefaultCPUSet sets default CPU set
    func (sc *stateCheckpoint) SetDefaultCPUSet(cset cpuset.CPUSet) {
    	sc.mux.Lock()
    	defer sc.mux.Unlock()
    	sc.cache.SetDefaultCPUSet(cset)
    	err := sc.storeState()
    	if err != nil {
    		klog.InfoS("Store state to checkpoint error", "err", err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 00:59:30 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/AsmExtensions.kt

        visitInsn(Opcodes.RETURN)
    }
    
    
    internal
    fun MethodVisitor.ALOAD(`var`: Int) {
        visitVarInsn(Opcodes.ALOAD, `var`)
    }
    
    
    internal
    fun MethodVisitor.ASTORE(`var`: Int) {
        visitVarInsn(Opcodes.ASTORE, `var`)
    }
    
    
    internal
    fun MethodVisitor.GOTO(label: Label) {
        visitJumpInsn(Opcodes.GOTO, label)
    }
    
    
    internal
    inline fun <reified T> MethodVisitor.TRY_CATCH(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    	f.expectations.DeletionObserved(klog.FromContext(ctx), dsKey)
    
    	return nil
    }
    
    type daemonSetsController struct {
    	*DaemonSetsController
    
    	dsStore      cache.Store
    	historyStore cache.Store
    	podStore     cache.Store
    	nodeStore    cache.Store
    	fakeRecorder *record.FakeRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_loong64.s

    	JMP	finish
    
    nosaveg:
    	JAL	(R20)
    
    finish:
    	MOVV	0(R3), R7	// sec
    	MOVV	8(R3), R5	// nsec
    
    	MOVV	R23, R3	// restore SP
    	// Restore vdsoPC, vdsoSP
    	// We don't worry about being signaled between the two stores.
    	// If we are not in a signal handler, we'll restore vdsoSP to 0,
    	// and no one will care about vdsoPC. If we are in a signal handler,
    	// we cannot receive another signal.
    	MOVV	16(R3), R25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top