Home
last modified time | relevance | path

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

/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdio/
A D_adjust_pos.c23 int corr; in __stdio_adjust_position() local
25 if ((corr = stream->__modeflags & __MASK_READING) != 0) { in __stdio_adjust_position()
30 if (corr && __STDIO_STREAM_IS_WIDE(stream)) { in __stdio_adjust_position()
34 if ((corr > 1) || stream->__ungot[1]) { /* User ungetwc, */ in __stdio_adjust_position()
37 corr -= (1 + stream->__ungot_width[1]); in __stdio_adjust_position()
39 corr -= stream->__ungot_width[0]; in __stdio_adjust_position()
45 corr += (((__STDIO_STREAM_IS_WRITING(stream)) in __stdio_adjust_position()
59 if ((*pos -= corr) > oldpos) { in __stdio_adjust_position()
60 corr = -corr; in __stdio_adjust_position()
63 if (corr < 0) { in __stdio_adjust_position()
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/ryu/
A Dgeneric_128.h365 …const uint64_t* const a, const uint64_t* const b, const uint32_t shift, const uint32_t corr, uint6… in mul_128_256_shift() argument
394 const uint128_t r0 = corr + ((p0 >> shift) | (p1 << (128 - shift))); in mul_128_256_shift()
395 const uint128_t r1 = ((p1 >> shift) | (p2 << (128 - shift))) + (r0 < corr); in mul_128_256_shift()
401 const uint128_t r0 = corr + p1; in mul_128_256_shift()
402 const uint128_t r1 = p2 + (r0 < corr); in mul_128_256_shift()
408 const uint128_t r0 = corr + ((p1 >> (shift - 128)) | (p2 << (256 - shift))); in mul_128_256_shift()
409 const uint128_t r1 = (p2 >> (shift - 128)) + (r0 < corr); in mul_128_256_shift()
431 const uint32_t corr = (uint32_t) ((POW5_ERRORS[i / 32] >> (2 * (i % 32))) & 3); in generic_computePow5() local
432 mul_128_256_shift(m, mul, delta, corr, result); in generic_computePow5()
450 const uint32_t corr = (uint32_t) ((POW5_INV_ERRORS[i / 32] >> (2 * (i % 32))) & 3) + 1; in generic_computeInvPow5() local
[all …]

Completed in 5 milliseconds