Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 503 for sP (0.02 sec)

  1. src/runtime/traceback.go

    	// But don't go too far from frame.sp.
    	if lo < frame.sp-maxExpand {
    		lo = frame.sp - maxExpand
    	}
    	if hi > frame.sp+maxExpand {
    		hi = frame.sp + maxExpand
    	}
    	// And don't go outside the stack bounds.
    	if lo < stk.lo {
    		lo = stk.lo
    	}
    	if hi > stk.hi {
    		hi = stk.hi
    	}
    
    	// Print the hex dump.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/kubelet/server/stats/summary_sys_containers_windows.go

    	"k8s.io/kubernetes/pkg/kubelet/cm"
    )
    
    func (sp *summaryProviderImpl) GetSystemContainersStats(nodeConfig cm.NodeConfig, podStats []statsapi.PodStats, updateStats bool) (stats []statsapi.ContainerStats) {
    	stats = append(stats, sp.getSystemPodsCPUAndMemoryStats(nodeConfig, podStats, updateStats))
    	return stats
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. src/runtime/asm_riscv64.s

    	// Save current sp in m->g0->sched.sp in preparation for
    	// switch back to m->curg stack.
    	// NOTE: unwindm knows that the saved g->sched.sp is at 8(X2) aka savedsp-24(SP).
    	MOV	m_g0(X5), X6
    	MOV	(g_sched+gobuf_sp)(X6), X7
    	MOV	X7, savedsp-24(SP)	// must match frame size
    	MOV	X2, (g_sched+gobuf_sp)(X6)
    
    	// Switch to m->curg stack and call runtime.cgocallbackg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  4. src/runtime/asm_s390x.s

    	// Save current m->g0->sched.sp on stack and then set it to SP.
    	// Save current sp in m->g0->sched.sp in preparation for
    	// switch back to m->curg stack.
    	// NOTE: unwindm knows that the saved g->sched.sp is at 8(R1) aka savedsp-16(SP).
    	MOVD	m_g0(R8), R3
    	MOVD	(g_sched+gobuf_sp)(R3), R4
    	MOVD	R4, savedsp-24(SP)	// must match frame size
    	MOVD	R15, (g_sched+gobuf_sp)(R3)
    
    	// Switch to m->curg stack and call runtime.cgocallbackg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. src/runtime/signal_windows.go

    	// overwrite the PC. (See issue #35773)
    	if r.ip() != 0 && r.ip() != abi.FuncPCABI0(asyncPreempt) {
    		sp := unsafe.Pointer(r.sp())
    		delta := uintptr(sys.StackAlign)
    		sp = add(sp, -delta)
    		r.set_sp(uintptr(sp))
    		if usesLR {
    			*((*uintptr)(sp)) = r.lr()
    			r.set_lr(r.ip())
    		} else {
    			*((*uintptr)(sp)) = r.ip()
    		}
    	}
    	r.set_ip(abi.FuncPCABI0(sigpanic0))
    	return _EXCEPTION_CONTINUE_EXECUTION
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. src/crypto/sha512/sha512block_amd64.s

    	COPY_YMM_AND_BSWAP(Y6, (2*32)(DI), Y9)
    	COPY_YMM_AND_BSWAP(Y7, (3*32)(DI), Y9)
    
    	MOVQ DI, frame_INP(SP)
    
    	// schedule 64 input dwords, by doing 12 rounds of 4 each
    	MOVQ $4, frame_SRND(SP)
    
    loop1:
    	VPADDQ  (BP), Y4, Y0
    	VMOVDQU Y0, frame_YFER(SP)
    
    	MY_VPALIGNR(Y0, Y7, Y6, 8)
    
    	VPADDQ Y4, Y0, Y0
    
    	MY_VPALIGNR(Y1, Y5, Y4, 8)
    
    	VPSRLQ $1, Y1, Y2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/operand_test.go

    	{"(DX)", "(DX)"},
    	{"(R9)", "(R9)"},
    	{"(R9)(BX*8)", "(R9)(BX*8)"},
    	{"(SI)", "(SI)"},
    	{"(SI)(BX*1)", "(SI)(BX*1)"},
    	{"(SI)(DX*1)", "(SI)(DX*1)"},
    	{"(SP)", "(SP)"},
    	{"(SP)(AX*4)", "(SP)(AX*4)"},
    	{"32(SP)(BX*2)", "32(SP)(BX*2)"},
    	{"32323(SP)(R8*4)", "32323(SP)(R8*4)"},
    	{"+3(PC)", "3(PC)"},
    	{"-1(DI)(BX*1)", "-1(DI)(BX*1)"},
    	{"-3(PC)", "-3(PC)"},
    	{"-64(SI)(BX*1)", "-64(SI)(BX*1)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  8. src/runtime/os3_plan9.go

    		gp.sig = uint32(sig)
    		gp.sigpc = c.pc()
    
    		pc := c.pc()
    		sp := c.sp()
    
    		// If we don't recognize the PC as code
    		// but we do recognize the top pointer on the stack as code,
    		// then assume this was a call to non-code and treat like
    		// pc == 0, to make unwinding show the context.
    		if pc != 0 && !findfunc(pc).valid() && findfunc(*(*uintptr)(unsafe.Pointer(sp))).valid() {
    			pc = 0
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/runtime/msan_amd64.s

    	CMPQ	R10, R14
    	JE	call	// already on g0
    
    	MOVQ	(g_sched+gobuf_sp)(R10), SP
    call:
    	ANDQ	$~15, SP	// alignment for gcc ABI
    	CALL	AX
    	MOVQ	R12, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_4fmaps.s

    TEXT asmtest_avx512_4fmaps(SB), NOSPLIT, $0
    	V4FMADDPS 17(SP), [Z0-Z3], K2, Z0                  // 62f27f4a9a842411000000
    	V4FMADDPS -17(BP)(SI*4), [Z0-Z3], K2, Z0           // 62f27f4a9a84b5efffffff
    	V4FMADDPS 17(SP), [Z10-Z13], K2, Z0                // 62f22f4a9a842411000000
    	V4FMADDPS -17(BP)(SI*4), [Z10-Z13], K2, Z0         // 62f22f4a9a84b5efffffff
    	V4FMADDPS 17(SP), [Z20-Z23], K2, Z0                // 62f25f429a842411000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 5.9K bytes
    - Viewed (0)
Back to top