Home
last modified time | relevance | path

Searched refs:num_little_digits (Results 1 – 1 of 1) sorted by relevance

/toolchain/binutils/binutils-2.27/gas/
Dexpr.c374 int num_little_digits = 0; in integer_constant() local
380 for (c = '_'; c == '_'; num_little_digits += 2) in integer_constant()
401 for (i = min (num_little_digits + 1, SIZE_OF_LARGE_NUMBER - 1); in integer_constant()
413 if (num_little_digits > SIZE_OF_LARGE_NUMBER - 1) in integer_constant()
414 num_little_digits = SIZE_OF_LARGE_NUMBER - 1; in integer_constant()
416 gas_assert (num_little_digits >= 4); in integer_constant()
418 if (num_little_digits != 8) in integer_constant()
423 while (generic_bignum[num_little_digits - 1] == 0 in integer_constant()
424 && num_little_digits > 1) in integer_constant()
425 num_little_digits--; in integer_constant()
[all …]