Searched refs:lrint (Results 1 - 19 of 19) sorted by relevance

/external/v8/src/base/
H A Dqnx-math.h17 using std::lrint;
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dos_specific_inline.h20 #define WebRtcIsac_lrint lrint
32 #else // Do a slow but correct implementation of lrint
/external/valgrind/none/tests/mips32/
H A Dtest_math.cpp14 /* Testing lrint. */
15 fesetround(FE_UPWARD); // lrint/lrintf/lrintl obey the rounding mode.
17 printf("lrint(1234.01): %ld\n", lrint(1234.01));
20 fesetround(FE_TOWARDZERO); // lrint/lrintf/lrintl obey the rounding mode.
22 printf("lrint(1234.01): %ld\n", lrint(1234.01));
H A Dtest_math.stdout.exp2 lrint(1234.01): 1235
6 lrint(1234.01): 1234
/external/valgrind/none/tests/mips64/
H A Dtest_math.cpp14 /* Testing lrint. */
15 fesetround(FE_UPWARD); // lrint/lrintf/lrintl obey the rounding mode.
17 printf("lrint(1234.01): %ld\n", lrint(1234.01));
20 fesetround(FE_TOWARDZERO); // lrint/lrintf/lrintl obey the rounding mode.
22 printf("lrint(1234.01): %ld\n", lrint(1234.01));
H A Dtest_math.stdout.exp2 lrint(1234.01): 1235
6 lrint(1234.01): 1234
/external/libopus/celt/
H A Dfloat_cast.h44 ** Fortunately the ISO C99 specifications define the functions lrint, lrintf,
53 ** The C99 prototypes for lrint and lrintf are as follows:
56 ** long int lrint (double x) ;
91 #define float2int(x) lrint(x)
123 #warning "Don't have the functions lrint() and lrintf ()."
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c130 long int lrint(double);
288 F(lrint), F(lrintf), F(lrintl), F(lround), F(lroundf),
429 // CHECK-NOERRNO: declare i64 @lrint(double) [[NUW]]
/external/v8/src/base/platform/
H A Dplatform.h54 inline int lrint(double flt) { function
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp89 Ambiguous lrint(Ambiguous){ return Ambiguous(); } function
1150 static_assert((std::is_same<decltype(std::lrint((float)0)), long>::value), "");
1151 static_assert((std::is_same<decltype(std::lrint((bool)0)), long>::value), "");
1152 static_assert((std::is_same<decltype(std::lrint((unsigned short)0)), long>::value), "");
1153 static_assert((std::is_same<decltype(std::lrint((int)0)), long>::value), "");
1154 static_assert((std::is_same<decltype(std::lrint((unsigned int)0)), long>::value), "");
1155 static_assert((std::is_same<decltype(std::lrint((long)0)), long>::value), "");
1156 static_assert((std::is_same<decltype(std::lrint((unsigned long)0)), long>::value), "");
1157 static_assert((std::is_same<decltype(std::lrint((long long)0)), long>::value), "");
1158 static_assert((std::is_same<decltype(std::lrint((unsigne
[all...]
/external/clang/lib/Headers/
H A Dtgmath.h996 // lrint
1004 __tg_lrint(double __x) {return lrint(__x);}
1010 #undef lrint macro
1011 #define lrint(__x) __tg_lrint(__tg_promote1((__x))(__x)) macro
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp501 static_assert((std::is_same<decltype(lrint((double)0)), long>::value), "");
504 assert(lrint(1) == 1L);
/external/ltrace/etc/
H A Dlibm.so.conf264 long lrint(double);
/external/elfutils/src/libcpu/
H A Di386_parse.c2798 lrint (ceil (log2 (NMNES))));
H A Di386_parse.y1127 lrint (ceil (log2 (NMNES))));
/external/opencv/cxcore/include/
H A Dcxtypes.h224 return (int)lrint(value);
/external/v8/src/
H A Dobjects-inl.h4130 return static_cast<uint8_t>(lrint(value));
H A Dobjects.cc14407 clamped_value = static_cast<uint8_t>(lrint(double_value));
/external/libopus/
H A Dconfigure13013 for ac_func in lrint
13015 ac_fn_c_check_func "$LINENO" "lrint" "ac_cv_func_lrint"

Completed in 776 milliseconds