Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 235 for refStore (0.12 sec)

  1. src/runtime/asm_riscv64.s

    	CALL	runtime·cgocallbackg(SB)
    
    	// Restore g->sched (== m->curg->sched) from saved values.
    	MOV	0(X2), X7
    	MOV	X7, (g_sched+gobuf_pc)(g)
    	MOV	$(24+8)(X2), X6		// must match frame size
    	MOV	X6, (g_sched+gobuf_sp)(g)
    
    	// Switch back to m->g0's stack and restore m->g0->sched.sp.
    	// (Unlike m->curg, the g0 goroutine never uses sched.pc,
    	// so we do not have to restore it.)
    	MOV	g_m(g), X5
    	MOV	m_g0(X5), g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_s390x.s

    nosaveg:
    	BL	R9					// to vdso lookup
    
    finish:
    	MOVD	0(R15), R3		// sec
    	MOVD	8(R15), R5		// nsec
    	MOVD	R7, R15			// 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.
    	MOVD	24(R15), R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. src/runtime/asm_loong64.s

    	JAL	runtime·cgocallbackg(SB)
    
    	// Restore g->sched (== m->curg->sched) from saved values.
    	MOVV	0(R3), R4
    	MOVV	R4, (g_sched+gobuf_pc)(g)
    	MOVV	$(24+8)(R3), R13 // must match frame size
    	MOVV	R13, (g_sched+gobuf_sp)(g)
    
    	// Switch back to m->g0's stack and restore m->g0->sched.sp.
    	// (Unlike m->curg, the g0 goroutine never uses sched.pc,
    	// so we do not have to restore it.)
    	MOVV	g_m(g), R12
    	MOVV	m_g0(R12), g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. src/runtime/asm_mipsx.s

    	JAL	runtime·cgocallbackg(SB)
    
    	// Restore g->sched (== m->curg->sched) from saved values.
    	MOVW	0(R29), R4
    	MOVW	R4, (g_sched+gobuf_pc)(g)
    	MOVW	$(12+4)(R29), R2	// must match frame size
    	MOVW	R2, (g_sched+gobuf_sp)(g)
    
    	// Switch back to m->g0's stack and restore m->g0->sched.sp.
    	// (Unlike m->curg, the g0 goroutine never uses sched.pc,
    	// so we do not have to restore it.)
    	MOVW	g_m(g), R3
    	MOVW	m_g0(R3), g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/runtime/asm_386.s

    	MOVL	$_rt0_386_lib_go(SB), BX
    	MOVL	BX, 0(SP)
    	MOVL	$0, 4(SP)
    
    	CALL	AX
    
    	MOVL	BP, SP
    
    	JMP	restore
    
    nocgo:
    	MOVL	$0x800000, 0(SP)                    // stacksize = 8192KB
    	MOVL	$_rt0_386_lib_go(SB), AX
    	MOVL	AX, 4(SP)                           // fn
    	CALL	runtime·newosproc0(SB)
    
    restore:
    	ADDL	$8, SP
    	POPL	DI
    	POPL	SI
    	POPL	BX
    	POPL	BP
    	RET
    
    // _rt0_386_lib_go initializes the Go runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. src/runtime/sys_linux_arm.s

    	MOVW	$0, R8
    	MOVW	R8, (R7) // clear g slot
    
    	JMP	finish
    
    nosaveg:
    	BL	(R4)
    
    finish:
    	MOVW	R5, R13		// Restore real 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.
    	MOVW	8(R13), R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. src/math/big/arith_s390x.s

    	BLT v1 // if n < 0 goto v1
    
    U1:  // n >= 0
    	// regular loop body unrolled 4x
    	MOVD 0(R8)(R10*1), R5
    	MOVD 8(R8)(R10*1), R6
    	MOVD 16(R8)(R10*1), R7
    	MOVD 24(R8)(R10*1), R1
    	ADDC R4, R4             // restore CF
    	MOVD 0(R9)(R10*1), R11
    	ADDE R11, R5
    	MOVD 8(R9)(R10*1), R11
    	ADDE R11, R6
    	MOVD 16(R9)(R10*1), R11
    	ADDE R11, R7
    	MOVD 24(R9)(R10*1), R11
    	ADDE R11, R1
    	MOVD R0, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. cni/pkg/iptables/iptables.go

    	// CLI: -A ISTIO_OUTPUT -m connmark --mark 0x111/0xfff -j CONNMARK --restore-mark --nfmask 0xffffffff --ctmask 0xffffffff
    	//
    	// DESC: Propagate/restore connmark (if we had one) for outbound
    	iptablesBuilder.AppendRule(
    		iptableslog.UndefinedCommand, ChainInpodOutput, iptablesconstants.MANGLE,
    		"-m", "connmark",
    		"--mark", inpodTproxyMark,
    		"-j", "CONNMARK",
    		"--restore-mark",
    		"--nfmask", fmt.Sprintf("0x%x", InpodRestoreMask),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	// nf_tables does not use locks
    	// legacy added locks in 1.6.2
    	return !v.Legacy || v.Version.LessThan(IptablesRestoreLocking)
    }
    
    var (
    	// IptablesRestoreLocking is the version where locking and -w is added to iptables-restore
    	IptablesRestoreLocking = utilversion.MustParseGeneric("1.6.2")
    	// IptablesLockfileEnv is the version where XTABLES_LOCKFILE is added to iptables.
    	IptablesLockfileEnv = utilversion.MustParseGeneric("1.8.6")
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/bitmap.go

    	}
    	rangeString, data := snapshottable.Snapshot()
    	dst.Range = rangeString
    	dst.Data = data
    	return nil
    }
    
    // Restore restores the pool to the previously captured state. ErrMismatchedNetwork
    // is returned if the provided IPNet range doesn't exactly match the previous range.
    func (r *Range) Restore(net *net.IPNet, data []byte) error {
    	if !net.IP.Equal(r.net.IP) || net.Mask.String() != r.net.Mask.String() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top