Lines Matching refs:stackptr
302 int stackptr; member
1465 (unsigned long)val, reloc, PRIV (stackptr))); in _bfd_vms_push()
1467 PRIV (stack[PRIV (stackptr)]).value = val; in _bfd_vms_push()
1468 PRIV (stack[PRIV (stackptr)]).reloc = reloc; in _bfd_vms_push()
1469 PRIV (stackptr)++; in _bfd_vms_push()
1470 if (PRIV (stackptr) >= STACKSIZE) in _bfd_vms_push()
1473 _bfd_error_handler (_("stack overflow (%d) in _bfd_vms_push"), PRIV (stackptr)); in _bfd_vms_push()
1484 if (PRIV (stackptr) == 0) in _bfd_vms_pop()
1490 PRIV (stackptr)--; in _bfd_vms_pop()
1491 *val = PRIV (stack[PRIV (stackptr)]).value; in _bfd_vms_pop()
1492 *rel = PRIV (stack[PRIV (stackptr)]).reloc; in _bfd_vms_pop()