HomeSort by relevance Sort by last modified time
    Searched full:ceil (Results 101 - 125 of 247) sorted by null

1 2 3 45 6 7 8 910

  /bionic/libc/tzcode/
private.h 357 #define SECSPERREPEAT_BITS 34 /* ceil(log2(SECSPERREPEAT)) */
  /build/tools/droiddoc/templates/assets/
carousel.js 157 centeringPoint = Math.ceil(slidesAtOnce/2);
  /dalvik/libcore/luni/src/main/native/
org_apache_harmony_luni_util_NumberConvert.c 159 k = (int) ceil ((e + p - 1) * INV_LOG_OF_TEN_BASE_2 - 1e-10);
  /external/iproute2/include/linux/
pkt_sched.h 273 struct tc_ratespec ceil; member in struct:tc_htb_opt
  /external/kernel-headers/original/linux/
pkt_sched.h 273 struct tc_ratespec ceil; member in struct:tc_htb_opt
  /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/v8/src/
math.js 246 "ceil", MathCeil,
platform-nullos.cc 43 // Give V8 the opportunity to override the default ceil behaviour.
  /external/webkit/WebCore/svg/
SVGLength.cpp 150 // Use of ceil allows a pixel match to the W3Cs expected output of coords-units-03-b.svg
  /external/webkit/WebKitTools/Scripts/
parallelcl 98 my $jobSize = POSIX::ceil($numSources / (2 * $numJobs));
  /frameworks/base/core/java/android/widget/
RatingBar.java 267 final int secondaryProgress = (int) (Math.ceil(progressInStars) * ratio);
  /frameworks/base/tests/CoreTests/android/core/
MathTest.java 184 * @tests java.lang.Math#ceil(double)
188 // Test for method double java.lang.Math.ceil(double)
190 79, Math.ceil(78.89), 0);
192 -78, Math.ceil(-78.89), 0);
    [all...]
StrictMathTest.java 171 * @tests java.lang.StrictMath#ceil(double)
175 // Test for method double java.lang.StrictMath.ceil(double)
177 79, StrictMath.ceil(78.89), 0.0);
179 -78, StrictMath.ceil(-78.89), 0.0);
    [all...]
  /packages/apps/Camera/src/com/android/camera/
Util.java 114 (int) Math.ceil(Math.sqrt(w * h / maxNumOfPixels));
  /packages/apps/Gallery3D/src/com/cooliris/media/
StringTexture.java 53 return (int) (10.0f * App.PIXEL_DENSITY) + (int) FloatMath.ceil(paint.measureText(string));
  /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);
  /external/icu4c/common/
putil.c 399 return ceil(x);
484 * This is different than calling floor() or ceil():
486 * ceil(3.3) = 4, ceil(-3.3) = -3
502 return ceil(d);
507 return d >= 0 ? floor(d) : ceil(d);
    [all...]
  /external/opencore/codecs_v2/video/avc_h264/dec/src/
header.cpp 404 numBits = 0;/* ceil(log2(num_slice_groups_minus1+1)) bits */
761 /* Ceil(Log2(PicSizeInMapUnits/(float)SliceGroupChangeRate + 1)) */
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
header.cpp 403 numBits = 0;/* ceil(log2(num_slice_groups_minus1+1)) bits */
760 /* Ceil(Log2(PicSizeInMapUnits/(float)SliceGroupChangeRate + 1)) */
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
PriorityQueue.java 399 int capacity = (int) Math.ceil(c.size()
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
NumberConverter.java 242 int k = (int) Math.ceil((e + p - 1) * invLogOfTenBaseTwo - 1e-10);
  /external/qemu/android/skin/
window.c 1139 window_w = (int) ceil(layout_w*scale);
1140 window_h = (int) ceil(layout_h*scale);
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebKitNSStringExtras.mm 45 return ceil(value);

Completed in 331 milliseconds

1 2 3 45 6 7 8 910