Lines Matching defs:top_sf
3659 struct pf_anchor_stackframe *top_sf;
3662 top_sf = stack[PF_ANCHOR_STACK_MAX].sf_stack_top;
3665 return (top_sf);
3673 struct pf_anchor_stackframe *top_sf = pf_anchor_stack_top();
3675 top_sf++;
3676 if (pf_anchor_stack_is_full(top_sf))
3679 top_sf->sf_rs = rs;
3680 top_sf->sf_anchor = anchor;
3681 top_sf->sf_r = r;
3682 top_sf->sf_child = child;
3683 top_sf->sf_jump_target = jump_target;
3687 if ((top_sf <= &stack[0]) || (top_sf >= &stack[PF_ANCHOR_STACK_MAX]))
3690 stack[PF_ANCHOR_STACK_MAX].sf_stack_top = top_sf;
3700 struct pf_anchor_stackframe *top_sf = pf_anchor_stack_top();
3705 if (pf_anchor_stack_is_empty(top_sf)) {
3708 if ((top_sf <= &stack[0]) ||
3709 (top_sf >= &stack[PF_ANCHOR_STACK_MAX]))
3713 *rs = top_sf->sf_rs;
3714 *anchor = top_sf->sf_anchor;
3715 *r = top_sf->sf_r;
3716 *child = top_sf->sf_child;
3717 *jump_target = top_sf->sf_jump_target;
3718 top_sf--;
3719 stack[PF_ANCHOR_STACK_MAX].sf_stack_top = top_sf;