/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/ryu/ |
A D | d2s_intrinsics.h | 253 const uint128_t b0 = ((uint128_t) m) * mul[0]; in mulShift64() 254 const uint128_t b2 = ((uint128_t) m) * mul[1]; in mulShift64() 272 *vp = mulShift64(4 * m + 2, mul, j); in mulShiftAll64() 273 *vm = mulShift64(4 * m - 1 - mmShift, mul, j); in mulShiftAll64() 274 return mulShift64(4 * m, mul, j); in mulShiftAll64() 294 *vp = mulShift64(4 * m + 2, mul, j); in mulShiftAll64() 296 return mulShift64(4 * m, mul, j); in mulShiftAll64() 320 const uint64_t lo = umul128(m, mul[0], &tmp); in mulShiftAll64() 325 const uint64_t lo2 = lo + mul[0]; in mulShiftAll64() 331 const uint64_t lo3 = lo - mul[0]; in mulShiftAll64() [all …]
|
A D | generic_128.h | 423 result[0] = mul[0]; in generic_computePow5() 424 result[1] = mul[1]; in generic_computePow5() 425 result[2] = mul[2]; in generic_computePow5() 426 result[3] = mul[3]; in generic_computePow5() 432 mul_128_256_shift(m, mul, delta, corr, result); in generic_computePow5() 442 result[0] = mul[0] + 1; in generic_computeInvPow5() 443 result[1] = mul[1]; in generic_computeInvPow5() 444 result[2] = mul[2]; in generic_computeInvPow5() 445 result[3] = mul[3]; in generic_computeInvPow5() 451 mul_128_256_shift(m, mul, delta, corr, result); in generic_computeInvPow5() [all …]
|
A D | d2fixed.c | 90 static inline uint32_t mulShift_mod1e9(const uint64_t m, const uint64_t* const mul, const int32_t j… in mulShift_mod1e9() argument 91 const uint128_t b0 = ((uint128_t) m) * mul[0]; // 0 in mulShift_mod1e9() 92 const uint128_t b1 = ((uint128_t) m) * mul[1]; // 64 in mulShift_mod1e9() 93 const uint128_t b2 = ((uint128_t) m) * mul[2]; // 128 in mulShift_mod1e9() 142 static inline uint32_t mulShift_mod1e9(const uint64_t m, const uint64_t* const mul, const int32_t j… in mulShift_mod1e9() argument 144 const uint64_t low0 = umul128(m, mul[0], &high0); // 0 in mulShift_mod1e9() 146 const uint64_t low1 = umul128(m, mul[1], &high1); // 64 in mulShift_mod1e9() 148 const uint64_t low2 = umul128(m, mul[2], &high2); // 128 in mulShift_mod1e9()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/libsupc++/ |
A D | hash_bytes.cc | 131 static const size_t mul = (((size_t) 0xc6a4a793UL) << 32UL) 139 size_t hash = seed ^ (len * mul); 142 const size_t data = shift_mix(unaligned_load(p) * mul) * mul; 144 hash *= mul; 150 hash *= mul; 152 hash = shift_mix(hash) * mul;
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/libsupc++/ |
A D | hash_bytes.cc | 131 static const size_t mul = (((size_t) 0xc6a4a793UL) << 32UL) 139 size_t hash = seed ^ (len * mul); 142 const size_t data = shift_mix(unaligned_load(p) * mul) * mul; 144 hash *= mul; 150 hash *= mul; 152 hash = shift_mix(hash) * mul;
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/libsupc++/ |
A D | hash_bytes.cc | 136 static const size_t mul = (((size_t) 0xc6a4a793UL) << 32UL) 144 size_t hash = seed ^ (len * mul); 147 const size_t data = shift_mix(unaligned_load(p) * mul) * mul; 149 hash *= mul; 155 hash *= mul; 157 hash = shift_mix(hash) * mul;
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/libsupc++/ |
A D | hash_bytes.cc | 131 static const size_t mul = (((size_t) 0xc6a4a793UL) << 32UL) 139 size_t hash = seed ^ (len * mul); 142 const size_t data = shift_mix(unaligned_load(p) * mul) * mul; 144 hash *= mul; 150 hash *= mul; 152 hash = shift_mix(hash) * mul;
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/libsupc++/ |
A D | hash_bytes.cc | 136 static const size_t mul = (((size_t) 0xc6a4a793UL) << 32UL) 144 size_t hash = seed ^ (len * mul); 147 const size_t data = shift_mix(unaligned_load(p) * mul) * mul; 149 hash *= mul; 155 hash *= mul; 157 hash = shift_mix(hash) * mul;
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/libsupc++/ |
A D | hash_bytes.cc | 136 static const size_t mul = (((size_t) 0xc6a4a793UL) << 32UL) 144 size_t hash = seed ^ (len * mul); 147 const size_t data = shift_mix(unaligned_load(p) * mul) * mul; 149 hash *= mul; 155 hash *= mul; 157 hash = shift_mix(hash) * mul;
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/libsupc++/ |
A D | hash_bytes.cc | 136 static const size_t mul = (((size_t) 0xc6a4a793UL) << 32UL) 144 size_t hash = seed ^ (len * mul); 147 const size_t data = shift_mix(unaligned_load(p) * mul) * mul; 149 hash *= mul; 155 hash *= mul; 157 hash = shift_mix(hash) * mul;
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/libsupc++/ |
A D | hash_bytes.cc | 136 static const size_t mul = (((size_t) 0xc6a4a793UL) << 32UL) 144 size_t hash = seed ^ (len * mul); 147 const size_t data = shift_mix(unaligned_load(p) * mul) * mul; 149 hash *= mul; 155 hash *= mul; 157 hash = shift_mix(hash) * mul;
|
/l4re-core-master/l4util/lib/src/ARCH-x86/ |
A D | rdtsc.c | 24 muldiv (l4_uint32_t a, l4_uint32_t mul, l4_uint32_t div) in muldiv() argument 29 :"a" (a), "c" (div), "d" (mul)); in muldiv()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sparc/ |
A D | qp_ops.c | 23 fakedef(mul)
|
/l4re-core-master/libstdc++-v3/ |
A D | contrib.inc | 13 mul = $(foreach a,$1,$2)
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/ |
A D | lowlevellock.S | 254 mul %rdi /* Milli seconds to nano seconds. */ 404 mul %rdi /* Milli seconds to nano seconds. */
|
A D | pthread_rwlock_timedrdlock.S | 129 mul %rdi /* Milli seconds to nano seconds. */
|
A D | pthread_rwlock_timedwrlock.S | 126 mul %rdi /* Milli seconds to nano seconds. */
|
A D | lowlevelrobustlock.S | 224 mul %rdi /* Milli seconds to nano seconds. */
|
A D | sem_timedwait.S | 196 mul %rdi /* Milli seconds to nano seconds. */
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/ |
A D | lowlevellock.S | 262 mul %edx /* Milli seconds to nano seconds. */ 416 mul %edx /* Milli seconds to nano seconds. */
|
A D | lowlevelrobustlock.S | 150 mul %edx /* Milli seconds to nano seconds. */
|
A D | pthread_rwlock_timedrdlock.S | 97 mul %edx /* Milli seconds to nano seconds. */
|
A D | pthread_rwlock_timedwrlock.S | 95 mul %edx /* Milli seconds to nano seconds. */
|
A D | pthread_cond_timedwait.S | 146 mul %edx /* Milli seconds to nano seconds. */ 495 mul %edx /* Milli seconds to nano seconds. */
|
A D | sem_timedwait.S | 80 mul %edx /* Milli seconds to nano seconds. */
|