Lines Matching refs:bignum
587 /* If exp.op == O_big then this bignum holds a copy of the global bignum value. */
588 LITTLENUM_TYPE * bignum;
2073 pool->literals[entry].bignum = XNEWVEC (LITTLENUM_TYPE,
2075 memcpy (pool->literals[entry].bignum, generic_bignum,
2079 pool->literals[entry].bignum = NULL;
2178 /* PR 16688: Restore the global bignum value. */
2179 gas_assert (pool->literals[entry].bignum != NULL);
2180 memcpy (generic_bignum, pool->literals[entry].bignum,
2189 free (pool->literals[entry].bignum);
2190 pool->literals[entry].bignum = NULL;