Home
last modified time | relevance | path

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

/external/llvm-project/libc/fuzzing/math/
DRemQuoDiff.h29 T remainder2 = func2(x, y, &q2); in RemQuoDiff() local
32 if (!isnan(remainder2)) in RemQuoDiff()
37 if (isinf(remainder2) != isinf(remainder1)) in RemQuoDiff()
45 __llvm_libc::fputil::FPBits<T> bits2(remainder2); in RemQuoDiff()
/external/mesa3d/src/util/
Dfast_idiv_by_const.c211 uint64_t remainder2 = initial_power_of_2 % abs_d; in util_compute_fast_sdiv_info() local
229 remainder2 *= 2; in util_compute_fast_sdiv_info()
230 if (remainder2 >= abs_d) { in util_compute_fast_sdiv_info()
232 remainder2 -= abs_d; in util_compute_fast_sdiv_info()
236 delta = abs_d - remainder2; in util_compute_fast_sdiv_info()