Home
last modified time | relevance | path

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

/external/llvm-project/libc/fuzzing/math/
DRemQuoDiff.h28 T remainder1 = func1(x, y, &q1); in RemQuoDiff() local
31 if (isnan(remainder1)) { in RemQuoDiff()
37 if (isinf(remainder2) != isinf(remainder1)) in RemQuoDiff()
44 __llvm_libc::fputil::FPBits<T> bits1(remainder1); in RemQuoDiff()
/external/mesa3d/src/util/
Dfast_idiv_by_const.c209 uint64_t remainder1 = initial_power_of_2 % abs_test_numer; in util_compute_fast_sdiv_info() local
221 remainder1 *= 2; in util_compute_fast_sdiv_info()
222 if (remainder1 >= abs_test_numer) { in util_compute_fast_sdiv_info()
224 remainder1 -= abs_test_numer; in util_compute_fast_sdiv_info()
237 } while (quotient1 < delta || (quotient1 == delta && remainder1 == 0)); in util_compute_fast_sdiv_info()