/external/libvpx/examples/includes/geshi/geshi/ |
matlab.php | 72 'cart2pol','cart2sph','cat','caxis','cdf2rdf','ceil','cell',
|
/external/llvm/lib/Target/X86/ |
README-FPStack.txt | 54 Open code rint,floor,ceil,trunc:
|
/external/quake/quake/src/WinQuake/ |
d_polyse.cpp | 545 // ceil () for light so positive steps are exaggerated, negative steps
551 ceil((t1 * p01_minus_p21 - t0 * p11_minus_p21) * xstepdenominv);
553 ceil((t1 * p00_minus_p20 - t0 * p10_minus_p20) * ystepdenominv);
807 // ceil (), but plus a little bit)
|
r_drawa.s | 141 // set integer rounding to ceil mode, set to single precision 190 // ceilv0 = (int)(v0 - 2000) + 2000; // ceil(v0); 209 // r_ceilv1 = (int)(r_v1 - 2000) + 2000; // ceil(r_v1);
|
/external/skia/samplecode/ |
SampleRegion.cpp | 13 inline float roundf(float x) { return (x-floor(x))>0.5 ? ceil(x) : floor(x); }
|
/external/v8/src/ |
math.js | 247 "ceil", MathCeil,
|
platform-nullos.cc | 44 // Give V8 the opportunity to override the default ceil behaviour.
|
/external/valgrind/main/memcheck/tests/ |
vcpu_fnfns.c | 34 printf(" ceilD(%+20.13e) = %+20.13e\n", d, ceil(d));
|
/external/webkit/Tools/Scripts/ |
parallelcl | 98 my $jobSize = POSIX::ceil($numSources / (2 * $numJobs));
|
/frameworks/base/core/java/android/widget/ |
RatingBar.java | 270 final int secondaryProgress = (int) (Math.ceil(progressInStars) * ratio);
|
/libcore/luni/src/main/native/ |
java_lang_RealToString.cpp | 123 k = static_cast<int>(ceil ((e + p - 1) * INV_LOG_OF_TEN_BASE_2 - 1e-10));
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
xalloc.h | 215 /* Set N = ceil (1.5 * N) so that progress is made if N == 1.
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/ |
math.h | 44 using std::tr1::ceil;
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
pkt_sched.h | 246 struct tc_ratespec ceil; member in struct:tc_htb_opt
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
math.h | 44 using std::tr1::ceil;
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
math.h | 44 using std::tr1::ceil;
|
/prebuilt/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
math.h | 44 using std::tr1::ceil;
|
/system/core/libcutils/ |
private.h | 361 #define SECSPERREPEAT_BITS 34 /* ceil(log2(SECSPERREPEAT)) */
|
/external/quake/quake/src/QW/client/ |
r_drawa.s | 141 // set integer rounding to ceil mode, set to single precision 190 // ceilv0 = (int)(v0 - 2000) + 2000; // ceil(v0); 209 // r_ceilv1 = (int)(r_v1 - 2000) + 2000; // ceil(r_v1);
|
/frameworks/base/media/java/android/media/videoeditor/ |
MediaImageItem.java | [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
OldAndroidMathTest.java | 146 // Test for method double java.lang.Math.ceil(double) 148 79, Math.ceil(78.89), 0); 150 -78, Math.ceil(-78.89), 0);
|
OldAndroidStrictMathTest.java | 133 // Test for method double java.lang.StrictMath.ceil(double) 135 79, StrictMath.ceil(78.89), 0.0); 137 -78, StrictMath.ceil(-78.89), 0.0);
|
/libcore/luni/src/main/java/java/lang/ |
Math.java | 226 * <li>{@code ceil(+0.0) = +0.0}</li> 227 * <li>{@code ceil(-0.0) = -0.0}</li> 228 * <li>{@code ceil((anything in range (-1,0)) = -0.0}</li> 229 * <li>{@code ceil(+infinity) = +infinity}</li> 230 * <li>{@code ceil(-infinity) = -infinity}</li> 231 * <li>{@code ceil(NaN) = NaN}</li> 238 public static native double ceil(double d); method in class:Math [all...] |
/external/icu4c/common/ |
putil.c | 446 return ceil(x); 525 * This is different than calling floor() or ceil(): 527 * ceil(3.3) = 4, ceil(-3.3) = -3 540 return ceil(d); 545 return d >= 0 ? floor(d) : ceil(d); [all...] |
/dalvik/dx/src/com/android/dx/merge/ |
DexMerger.java | [all...] |