Home | History | Annotate | Download | only in config

Lines Matching defs:bignum

444   /* If exp.op == O_big then this bignum holds a copy of the global bignum value.  */
445 LITTLENUM_TYPE * bignum;
1661 pool->literals[entry].bignum = xmalloc (CHARS_PER_LITTLENUM * exp->X_add_number);
1662 memcpy (pool->literals[entry].bignum, generic_bignum,
1666 pool->literals[entry].bignum = NULL;
1765 /* PR 16688: Restore the global bignum value. */
1766 gas_assert (pool->literals[entry].bignum != NULL);
1767 memcpy (generic_bignum, pool->literals[entry].bignum,
1776 free (pool->literals[entry].bignum);
1777 pool->literals[entry].bignum = NULL;