Home
last modified time | relevance | path

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

/toolchain/binutils/binutils-2.25/gas/
Dexpr.c370 int num_little_digits = 0; in integer_constant() local
376 for (c = '_'; c == '_'; num_little_digits += 2) in integer_constant()
397 for (i = min (num_little_digits + 1, SIZE_OF_LARGE_NUMBER - 1); in integer_constant()
409 if (num_little_digits > SIZE_OF_LARGE_NUMBER - 1) in integer_constant()
410 num_little_digits = SIZE_OF_LARGE_NUMBER - 1; in integer_constant()
412 gas_assert (num_little_digits >= 4); in integer_constant()
414 if (num_little_digits != 8) in integer_constant()
419 while (generic_bignum[num_little_digits - 1] == 0 in integer_constant()
420 && num_little_digits > 1) in integer_constant()
421 num_little_digits--; in integer_constant()
[all …]