/third_party/skia/third_party/externals/libpng/contrib/tools/ |
H A D | makesRGB.c | 63 unsigned int x = nearbyint(finvsRGB(i)); in invsRGB() 131 calc = nearbyint((lo+adjust) * 256); in main() 140 calc = nearbyint((hi-lo) * 32); in main() 155 unsigned int iexact = nearbyint(255*sRGB(i)); in main() 227 unsigned int iexact = nearbyint(255*sRGB(i)); in main() 308 unsigned int iexact = nearbyint(255*sRGB(i)); in main() 340 unsigned int iexact = nearbyint(255*sRGB(i)); in main() 365 unsigned int iexact = nearbyint(255*sRGB(i)); in main()
|
H A D | cvtcolor.c | 169 for (i=0; i<channels; ++i) c[i] = nearbyint(c[i] * 65535); in main() 178 for (i=0; i<channels; ++i) c[i] = nearbyint(c[i] * 255); in main()
|
/third_party/musl/libc-test/src/api/ |
H A D | tgmath.c | 221 #ifdef nearbyint in f() 222 {double r = nearbyint(x);} in f() 224 #error no nearbyint(x) in f()
|
H A D | math.c | 179 {double(*p)(double) = nearbyint;} in f()
|
/third_party/musl/src/math/s390x/ |
H A D | nearbyint.c | 5 double nearbyint(double x) in nearbyint() function 13 #include "../nearbyint.c"
|
/third_party/musl/src/math/aarch64/ |
H A D | nearbyint.c | 3 double nearbyint(double x) in nearbyint() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | nearbyint.c | 4 /* nearbyint is the same as rint, but it must not raise the inexact exception */ 6 double nearbyint(double x) in nearbyint() function
|
H A D | nearbyintl.c | 7 return nearbyint(x); in nearbyintl()
|
/third_party/musl/src/math/ |
H A D | nearbyint.c | 4 /* nearbyint is the same as rint, but it must not raise the inexact exception */ 6 double nearbyint(double x) in nearbyint() function
|
H A D | nearbyintl.c | 7 return nearbyint(x); in nearbyintl()
|
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_nearbyint_test.cpp | 17 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the nearbyint interface. 24 bool testResult = DoubleUlpCmp(g_nearbyintData[i].expected, nearbyint(g_nearbyintData[i].input), 1); in HWTEST_F()
|
/third_party/musl/libc-test/src/math/ |
H A D | nearbyint.c | 6 #include "sanity/nearbyint.h" 7 #include "special/nearbyint.h" 26 y = nearbyint(p->x); in main() 30 printf("%s:%d: bad fp exception: %s nearbyint(%a)=%a, want %s", in main() 37 printf("%s:%d: %s nearbyint(%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | tgmath.h | 189 #undef nearbyint macro 252 #define nearbyint(x) __tg_real(nearbyint, (x)) macro
|
H A D | math.h | 295 double nearbyint(double);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | tgmath.h | 189 #undef nearbyint macro 252 #define nearbyint(x) __tg_real(nearbyint, (x)) macro
|
H A D | math.h | 295 double nearbyint(double);
|
/third_party/musl/include/ |
H A D | tgmath.h | 189 #undef nearbyint macro 252 #define nearbyint(x) __tg_real(nearbyint, (x)) macro
|
H A D | math.h | 295 double nearbyint(double);
|
/third_party/astc-encoder/Source/ |
H A D | astcenc_vecmathlib_none_4.h | 873 return vfloat4(std::nearbyint(a.m[0]), in round() 874 std::nearbyint(a.m[1]), in round() 875 std::nearbyint(a.m[2]), in round() 876 std::nearbyint(a.m[3])); in round()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-external-refs.cc | 81 double value = nearbyint(input); in f64_nearest_int_wrapper() 408 simd_float_round_wrapper<double, &nearbyint>(data); in f64x2_nearest_int_wrapper()
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 295 double nearbyint(double);
|
/third_party/node/deps/v8/src/compiler/ |
H A D | types.h | 340 return nearbyint(x) == x && !IsMinusZero(x); // Allows for infinities. in IsInteger()
|
H A D | node-matchers.h | 214 std::nearbyint(this->ResolvedValue()) == this->ResolvedValue(); in IsInteger()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | SubzeroReactor.cpp | 3245 auto nearbyint = Ice::InstIntrinsic::create(::function, 1, result, intrinsic); 3246 nearbyint->addArg(cast.value()); 3247 ::basicBlock->appendInst(nearbyint); 3597 auto nearbyint = Ice::InstIntrinsic::create(::function, 1, result, intrinsic); 3598 nearbyint->addArg(cast.value()); 3599 ::basicBlock->appendInst(nearbyint); 3623 auto nearbyint = Ice::InstIntrinsic::create(::function, 1, result, intrinsic); 3624 nearbyint->addArg(clamped.value()); 3625 ::basicBlock->appendInst(nearbyint);
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | mplibm.c | 168 int mpnearbyint(struct t *t) { return mpd1(t, nearbyint); } in mpnearbyint()
|