HomeSort by relevance Sort by last modified time
    Searched refs:lrint (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/v8/src/base/
qnx-math.h 17 using std::lrint;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
os_specific_inline.h 19 #define WebRtcIsac_lrint lrint
31 #else // Do a slow but correct implementation of lrint
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtrasTest.cpp 33 TEST(MathExtrasTest, Lrint)
35 EXPECT_EQ(-8, lrint(-7.5));
36 EXPECT_EQ(-8, lrint(-8.5));
37 EXPECT_EQ(0, lrint(-0.5));
38 EXPECT_EQ(0, lrint(0.5));
39 EXPECT_EQ(0, lrint(-0.5));
40 EXPECT_EQ(1, lrint(1.3));
41 EXPECT_EQ(2, lrint(1.7));
42 EXPECT_EQ(0, lrint(0));
43 EXPECT_EQ(0, lrint(-0))
    [all...]
Uint8ClampedArray.h 103 data()[index] = static_cast<unsigned char>(lrint(value));
MathExtras.h 177 // MSVC's math functions do not bring lrint.
178 inline long int lrint(double flt) function
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_lrint.c 36 #define fn lrint
  /bionic/libm/
fake_long_double.c 34 long lrintl(long double a1) { return lrint(a1); }
Android.mk 246 # self recursions for lrint, lrintf, and lrintl.
  /external/chromium_org/third_party/opus/src/celt/
float_cast.h 44 ** 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/chromium_org/third_party/opus/src/src/
mlp_train.h 54 i = lrint(25*x);
  /external/libopus/celt/
float_cast.h 44 ** 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/
libcall-declarations.c 130 long int lrint(double);
288 F(lrint), F(lrintf), F(lrintl), F(lround), F(lroundf),
429 // CHECK-NOERRNO: declare i64 @lrint(double) [[NUW]]
  /external/chromium_org/v8/src/base/platform/
platform.h 54 inline int lrint(double flt) { function
  /bionic/libm/include/
math.h 242 long lrint(double);
  /external/libcxx/test/numerics/c.math/
cmath.disabled.cpp     [all...]
  /bionic/tests/
math_test.cpp 764 TEST(math, lrint) {
769 fesetround(FE_UPWARD); // lrint/lrintf/lrintl obey the rounding mode.
770 ASSERT_EQ(1235, lrint(1234.01));
773 fesetround(FE_TOWARDZERO); // lrint/lrintf/lrintl obey the rounding mode.
774 ASSERT_EQ(1234, lrint(1234.01));
    [all...]
  /external/clang/lib/Headers/
tgmath.h 996 // 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/depr/depr.c.headers/
math_h.disabled.cpp 499 static_assert((std::is_same<decltype(lrint((double)0)), long>::value), "");
502 assert(lrint(1) == 1L);
  /external/ltrace/etc/
libm.so.conf 264 long lrint(double);
  /development/ndk/platforms/android-13/include/
math.h 252 long lrint(double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-18/include/
math.h 253 long lrint(double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-3/include/
math.h 252 long lrint(double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-9/include/
math.h 252 long lrint(double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-L/include/
math.h 242 long lrint(double) __NDK_FPABI_MATH__;
  /external/elfutils/0.153/libcpu/
i386_parse.c     [all...]

Completed in 1048 milliseconds

1 2