Lines Matching refs:stack
323 /* Push a value on the reloc evaluation stack. */
338 /* Store the value from the stack at the given address. Store it in
355 relocation stack. */
370 /* Shift the value on the top of the relocation stack right by the
721 /* The size of the stack for the relocation evaluator. */
747 bfd_vma stack[RELOC_STACKSIZE];
960 /* Push a value on the reloc evaluation stack. */
988 stack[tos++] = relocation;
993 /* Store a value from the reloc stack into a bitfield. */
1014 val |= (stack[--tos] & ((1 << size) - 1)) << offset;
1020 /* Subtract a value from the top of the stack. */
1048 stack[tos - 1] -= relocation;
1053 /* Shift the value on the top of the stack. */
1081 stack[tos - 1] >>= relocation;
1353 bfd_vma stack[RELOC_STACKSIZE];
1671 /* Manipulate values on the reloc evaluation stack. The
1747 stack[tos++] = addend;
1753 stack[tos - 1] -= addend;
1759 stack[tos - 1] >>= addend;
1768 /* Store a value from the reloc stack into a bitfield. If
1792 val |= (stack[--tos] & mask) << (bfd_vma) r_offset;