Home
last modified time | relevance | path

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

/mirbsd/src/gnu/usr.bin/binutils/gas/
Dexpr.c361 int num_little_digits = 0; in integer_constant() local
367 for (c = '_'; c == '_'; num_little_digits += 2) in integer_constant()
388 for (i = min (num_little_digits + 1, SIZE_OF_LARGE_NUMBER - 1); in integer_constant()
400 if (num_little_digits > SIZE_OF_LARGE_NUMBER - 1) in integer_constant()
401 num_little_digits = SIZE_OF_LARGE_NUMBER - 1; in integer_constant()
403 assert (num_little_digits >= 4); in integer_constant()
405 if (num_little_digits != 8) in integer_constant()
410 while (generic_bignum[num_little_digits - 1] == 0 in integer_constant()
411 && num_little_digits > 1) in integer_constant()
412 num_little_digits--; in integer_constant()
[all …]