Home | History | Annotate | Download | only in runtime

Lines Matching refs:stk

425 // stackfree frees an n byte stack allocation at stk.
431 func stackfree(stk stack, n uintptr) {
433 v := unsafe.Pointer(stk.lo)
437 if stk.lo+n < stk.hi {
783 func fillstack(stk stack, b byte) {
784 for p := stk.lo; p < stk.hi; p++ {
789 func findsghi(gp *g, stk stack) uintptr {
793 if stk.lo <= p && p < stk.hi && p > sghi {
797 if stk.lo <= p && p < stk.hi && p > sghi {