HomeSort by relevance Sort by last modified time
    Searched refs:trunc (Results 201 - 225 of 472) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/lib/IR/
ConstantRange.cpp 551 Union = ConstantRange(APInt::getMaxValue(DstTySize),Upper.trunc(DstTySize));
568 return ConstantRange(LowerDiv.trunc(DstTySize),
569 UpperDiv.trunc(DstTySize)).unionWith(Union);
574 return ConstantRange(LowerDiv.trunc(DstTySize),
575 UpperModulo.trunc(DstTySize)).unionWith(Union);
  /external/tcpdump/
print-pim.c 221 trunc:
310 trunc:
411 trunc:
619 trunc:
1084 trunc:
print-ip.c 125 trunc:
301 trunc:
671 trunc:
print-arp.c 288 trunc:
405 trunc:
print-babel.c 73 trunc:
599 trunc:
print-slow.c 329 trunc:
447 trunc:
  /external/guava/guava/src/com/google/common/io/
BaseEncoding.java 211 byte[] trunc = new byte[length];
212 System.arraycopy(result, 0, trunc, 0, length);
213 return trunc;
  /external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/
BaseEncoding.java 179 byte[] trunc = new byte[length];
180 System.arraycopy(result, 0, trunc, 0, length);
181 return trunc;
  /external/llvm/lib/Analysis/
VectorUtils.cpp 49 case Intrinsic::trunc:
203 case LibFunc::trunc:
206 return checkUnaryFloatSignature(*CI, Intrinsic::trunc);
  /bionic/tests/
math_test.cpp 985 TEST(math, trunc) {
989 fesetround(FE_UPWARD); // trunc ignores the rounding mode and always rounds toward zero.
990 ASSERT_DOUBLE_EQ(1.0, trunc(1.5));
991 ASSERT_DOUBLE_EQ(-1.0, trunc(-1.5));
992 ASSERT_DOUBLE_EQ(0.0, trunc(0.0));
993 ASSERT_DOUBLE_EQ(-0.0, trunc(-0.0));
994 ASSERT_TRUE(isnan(trunc(nan(""))));
995 ASSERT_DOUBLE_EQ(HUGE_VAL, trunc(HUGE_VAL));
    [all...]
  /external/bison/darwin-lib/
math.h 2304 # undef trunc macro
    [all...]
  /external/bison/lib/
math.in.h 1980 # define trunc macro
1990 _GL_CXXALIASWARN (trunc); variable
1992 # undef trunc macro
    [all...]
  /external/bison/linux-lib/
math.h 2304 # undef trunc macro
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 184 FieldValue = FieldValue.trunc(FieldSize);
204 Tmp = Tmp.trunc(BitsInPreviousByte);
207 FieldValue = FieldValue.trunc(NewFieldWidth);
209 Tmp = Tmp.trunc(BitsInPreviousByte);
213 FieldValue = FieldValue.trunc(NewFieldWidth);
270 FieldValue.lshr(FieldValue.getBitWidth() - CharWidth).trunc(CharWidth);
273 Tmp = FieldValue.trunc(CharWidth);
281 FieldValue = FieldValue.trunc(FieldValue.getBitWidth() - CharWidth);
    [all...]
  /external/clang/test/CodeGen/
libcall-declarations.c 178 double trunc(double);
297 F(tgamma), F(tgammaf), F(tgammal), F(trunc), F(truncf),
477 // CHECK-NOERRNO: declare double @trunc(double) [[NUW]]
566 // CHECK-ERRNO: declare double @trunc(double) [[NUW]]
  /external/deqp/executor/tools/
xeBatchResultToXml.cpp 260 std::ofstream out (casePath.getPath(), std::ofstream::binary|std::ofstream::trunc);
368 std::ofstream out (indexPath.getPath(), std::ofstream::binary|std::ofstream::trunc);
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_win32io.cpp 230 case ios_base::out | ios_base::trunc:
250 case ios_base::in | ios_base::out | ios_base::trunc:
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
mathcalls.h 314 __MATHCALLX (trunc,, (_Mdouble_ __x), (__const__));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
tgmath.h 364 #define trunc(Val) __TGMATH_UNARY_REAL_ONLY (Val, trunc) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
mathcalls.h 315 __MATHCALLX (trunc,, (_Mdouble_ __x), (__const__));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tgmath.h 364 #define trunc(Val) __TGMATH_UNARY_REAL_ONLY (Val, trunc) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
mathcalls.h 315 __MATHCALLX (trunc,, (_Mdouble_ __x), (__const__));
  /bionic/libm/include/
math.h 233 double trunc(double);
  /external/icu/icu4c/source/test/iotest/
stream.cpp 252 fstream fs(STANDARD_TEST_FILE, fstream::in | fstream::out | fstream::trunc);
  /external/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 244 case LibFunc::trunc: case LibFunc::truncf: case LibFunc::truncl:

Completed in 771 milliseconds

1 2 3 4 5 6 7 891011>>