HomeSort by relevance Sort by last modified time
    Searched defs:trunc (Results 1 - 25 of 72) sorted by null

1 2 3

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_trunc.c 17 * trunc(x)
22 * Inexact flag raised if x not equal to trunc(x).
33 trunc(double x) function
66 __weak_reference(trunc, truncl);
  /external/tcpdump/
print-ripng.c 69 int trunc; local
93 trunc = ((i / sizeof(*ni)) * sizeof(*ni) != i);
109 trunc = ((i / sizeof(*ni)) * sizeof(*ni) != i);
118 if (trunc)
print-aodv.c 150 int n, trunc; local
167 trunc = n - (i/sizeof(ap->rerr.r.dest[0]));
173 if (trunc)
263 int i, j, n, trunc; local
272 trunc = n - (i/j);
277 if (trunc)
372 int i, j, n, trunc; local
381 trunc = n - (i/j);
386 if (trunc)
  /external/icu/icu4c/source/samples/uresb/
uresb.c 52 static UBool trunc = FALSE; variable
131 trunc = TRUE;
138 trunc = FALSE;
234 if(trunc && len > truncsize) {
269 if(trunc && len > truncsize) {
  /external/chromium_org/third_party/skia/samplecode/
SampleColorFilter.cpp 30 int trunc = x >> 3; local
40 return trunc + bias;
73 SkDebugf("--- %3d : trunc=%3d (%2d) round:%3d (%2d) \n"/*new:%d (%2d)\n"*/, i,
84 SkDebugf("--- trunc: %d %d round: %d %d new: %d %d\n", e0, ae0, e1, ae1, e2, ae2);
  /external/deqp/framework/common/
tcuVectorUtil.hpp 117 inline float trunc (float a) { return (float)chopToInt(a); } function in namespace:tcu
454 TCU_DECLARE_VECTOR_UNARY_FUNC(trunc, trunc)
  /external/llvm/include/llvm/ADT/
APSInt.h 65 APSInt LLVM_ATTRIBUTE_UNUSED_RESULT trunc(uint32_t width) const { function in class:llvm::APSInt
66 return APSInt(APInt::trunc(width), IsUnsigned);
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_qsort.c 186 #define Recurse(Trunc) \
188 if (l<Trunc) { \
189 if (r>=Trunc) doRight \
193 else if (r>=Trunc) { pushRight; doLeft }\
327 size_t trunc=TRUNC_nonaligned*size; local
332 if ((size_t)(last-first)>trunc) {
343 Recurse(trunc)
358 size_t trunc=TRUNC_aligned*size; local
363 if ((size_t)(last-first)>trunc) {
374 Recurse(trunc)
    [all...]
  /external/skia/samplecode/
SampleColorFilter.cpp 30 int trunc = x >> 3; local
40 return trunc + bias;
73 SkDebugf("--- %3d : trunc=%3d (%2d) round:%3d (%2d) \n"/*new:%d (%2d)\n"*/, i,
84 SkDebugf("--- trunc: %d %d round: %d %d new: %d %d\n", e0, ae0, e1, ae1, e2, ae2);
  /external/stlport/src/
ios.cpp 75 const ios_base::openmode ios_base::trunc; member in class:ios_base
  /ndk/sources/cxx-stl/stlport/src/
ios.cpp 77 const ios_base::openmode ios_base::trunc; member in class:ios_base
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 100 inline double trunc(double num) { return num > 0 ? floor(num) : ceil(num); } function
305 double fmodValue = fmod(trunc(d), std::numeric_limits<unsigned long long>::max() + 1.0);
  /external/chromium_org/third_party/icu/source/tools/genrb/
derb.c 57 static UBool trunc = FALSE; variable
155 trunc = TRUE;
162 trunc = FALSE;
476 if(trunc && len > truncsize) {
520 if(trunc && len > truncsize) {
579 if(trunc && len > truncsize) {
  /external/libcxx/src/
ios.cpp 121 const ios_base::openmode ios_base::trunc; member in class:ios_base
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
ios.cpp 121 const ios_base::openmode ios_base::trunc; member in class:ios_base
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 161 #define trunc(x) __TGMATH_REAL(x, trunc) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 172 #define trunc(x) __TGMATH_REAL(x, trunc) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 172 #define trunc(x) __TGMATH_REAL(x, trunc) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 161 #define trunc(x) __TGMATH_REAL(x, trunc) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.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-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tgmath.h 161 #define trunc(x) __TGMATH_REAL(x, trunc) macro
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd.h 98 uint64_t trunc; /* # of truncated records */ member in struct:__anon81287
  /external/chromium_org/third_party/re2/re2/
re2.cc 126 static string trunc(const StringPiece& pattern) { function in namespace:re2
214 LOG(ERROR) << "Error parsing '" << trunc(pattern_) << "': "
236 LOG(ERROR) << "Error compiling '" << trunc(pattern_) << "'";
257 LOG(ERROR) << "Error reverse compiling '" << trunc(pattern_) << "'";
638 LOG(INFO) << "Match " << trunc(pattern_)
644 LOG(INFO) << "Match " << trunc(pattern_)
650 LOG(INFO) << "Match " << trunc(pattern_)
667 LOG(INFO) << "Match " << trunc(pattern_)
673 LOG(INFO) << "Match " << trunc(pattern_)
681 LOG(INFO) << "Match " << trunc(pattern_
    [all...]
  /external/chromium_org/third_party/skia/tests/
MathTest.cpp 337 int trunc = (int)floorf(s); local
343 REPORTER_ASSERT(reporter, itrunc == trunc);

Completed in 226 milliseconds

1 2 3