Home
last modified time | relevance | path

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

/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/ryu/
A Dd2s.c311 const uint32_t olength = decimalLength17(output); in to_chars() local
315 printf("OLEN=%u\n", olength); in to_chars()
316 printf("EXP=%u\n", v.exponent + olength); in to_chars()
345 memcpy(result + index + olength - i - 1, DIGIT_TABLE + c0, 2); in to_chars()
346 memcpy(result + index + olength - i - 3, DIGIT_TABLE + c1, 2); in to_chars()
347 memcpy(result + index + olength - i - 5, DIGIT_TABLE + d0, 2); in to_chars()
368 memcpy(result + index + olength - i - 1, DIGIT_TABLE + c, 2); in to_chars()
374 result[index + olength - i] = DIGIT_TABLE[c + 1]; in to_chars()
381 if (olength > 1) { in to_chars()
383 index += olength + 1; in to_chars()
[all …]
A Df2s.c229 const uint32_t olength = decimalLength9(output); in to_chars() local
233 printf("OLEN=%u\n", olength); in to_chars()
234 printf("EXP=%u\n", v.exponent + olength); in to_chars()
254 memcpy(result + index + olength - i - 1, DIGIT_TABLE + c0, 2); in to_chars()
255 memcpy(result + index + olength - i - 3, DIGIT_TABLE + c1, 2); in to_chars()
261 memcpy(result + index + olength - i - 1, DIGIT_TABLE + c, 2); in to_chars()
267 result[index + olength - i] = DIGIT_TABLE[c + 1]; in to_chars()
274 if (olength > 1) { in to_chars()
276 index += olength + 1; in to_chars()
283 int32_t exp = v.exponent + (int32_t) olength - 1; in to_chars()
A Dgeneric_128.c263 const uint32_t olength = decimalLength(output); in generic_to_chars() local
267 printf("OLEN=%u\n", olength); in generic_to_chars()
268 printf("EXP=%u\n", v.exponent + olength); in generic_to_chars()
271 for (uint32_t i = 0; i < olength - 1; ++i) { in generic_to_chars()
274 result[index + olength - i] = (char) ('0' + c); in generic_to_chars()
279 if (olength > 1) { in generic_to_chars()
281 index += olength + 1; in generic_to_chars()
288 int32_t exp = v.exponent + olength - 1; in generic_to_chars()
A Dd2fixed.c187 static inline void append_n_digits(const uint32_t olength, uint32_t digits, char* const result) { in append_n_digits() argument
202 memcpy(result + olength - i - 2, DIGIT_TABLE + c0, 2); in append_n_digits()
203 memcpy(result + olength - i - 4, DIGIT_TABLE + c1, 2); in append_n_digits()
209 memcpy(result + olength - i - 2, DIGIT_TABLE + c, 2); in append_n_digits()
214 memcpy(result + olength - i - 2, DIGIT_TABLE + c, 2); in append_n_digits()
239 memcpy(result + olength + 1 - i - 2, DIGIT_TABLE + c0, 2); in append_d_digits()
240 memcpy(result + olength + 1 - i - 4, DIGIT_TABLE + c1, 2); in append_d_digits()
246 memcpy(result + olength + 1 - i - 2, DIGIT_TABLE + c, 2); in append_d_digits()
378 const uint32_t olength = decimalLength9(digits); in d2fixed_buffered_n() local
379 append_n_digits(olength, digits, result + index); in d2fixed_buffered_n()
[all …]

Completed in 7 milliseconds