Searched refs:dist (Results 1 – 6 of 6) sorted by relevance
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/ryu/ |
A D | d2s_intrinsics.h | 39 static inline uint64_t shiftright128(const uint64_t lo, const uint64_t hi, const uint32_t dist) { in shiftright128() argument 50 assert(dist < 64); in shiftright128() 51 return __shiftright128(lo, hi, (unsigned char) dist); in shiftright128() 86 static inline uint64_t shiftright128(const uint64_t lo, const uint64_t hi, const uint32_t dist) { in shiftright128() argument 88 assert(dist < 64); in shiftright128() 89 assert(dist > 0); in shiftright128() 90 return (hi << (64 - dist)) | (lo >> dist); in shiftright128()
|
A D | d2fixed.c | 164 const uint32_t dist = (uint32_t) (j - 128); // dist: [0, 52] in mulShift_mod1e9() local 165 const uint64_t shiftedhigh = s1high >> dist; in mulShift_mod1e9() 166 const uint64_t shiftedlow = shiftright128(s1low, s1high, dist); in mulShift_mod1e9()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/ |
A D | Makefile.in | 531 dist release:
|
A D | Makerules | 11 config dist menuconfig oldconfig release \
|
A D | Rules.mak | 37 release dist tags help
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/regex/ |
A D | tst-regex2.dat | 2049 * Make-dist: Add back one of the tar invocations removed before. 2144 * Make-dist (autoconf-it, configure, %/configure): Copy those changes. 2148 * Make-dist (dist): Cleanup a bit. We are not interested in the
|
Completed in 12 milliseconds