Searched refs:pos (Results 1 – 2 of 2) sorted by relevance
/stdlib/ |
A D | tst-strfmon_l.c | 113 long double pos = 1234567.89L; in test_pair() local 114 test_one ("%i", positive, "%Li", pos, pair->positive.i); in test_pair() 115 test_one ("%n", positive, "%Ln", pos, pair->positive.n); in test_pair() 116 test_one ("%^i", positive, "%^Li", pos, pair->positive.i_ungrouped); in test_pair() 117 test_one ("%^n", positive, "%^Ln", pos, pair->positive.n_ungrouped); in test_pair()
|
A D | strtod_l.c | 1101 if (pos + 1 >= 4 || pos + 1 >= bits) in ____STRTOF_INTERNAL() 1107 retval[idx] = val << (pos - bits + 1); in ____STRTOF_INTERNAL() 1108 pos -= bits; in ____STRTOF_INTERNAL() 1112 retval[idx--] = val >> (bits - pos - 1); in ____STRTOF_INTERNAL() 1114 pos = BITS_PER_MP_LIMB - 1 - (bits - pos - 1); in ____STRTOF_INTERNAL() 1132 if (pos + 1 >= 4) in ____STRTOF_INTERNAL() 1134 retval[idx] |= val << (pos - 4 + 1); in ____STRTOF_INTERNAL() 1135 pos -= 4; in ____STRTOF_INTERNAL() 1139 retval[idx--] |= val >> (4 - pos - 1); in ____STRTOF_INTERNAL() 1140 val <<= BITS_PER_MP_LIMB - (4 - pos - 1); in ____STRTOF_INTERNAL() [all …]
|
Completed in 7 milliseconds