HomeSort by relevance Sort by last modified time
    Searched full:ceil (Results 226 - 250 of 1498) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/webkit/fast/js/kde/
math.js 54 shouldBe("Math.ceil(1.1)", "2");
56 shouldBe("Math.ceil(1.6)", "2");
  /external/jpeg/
jutils.c 73 /* Compute a/b rounded up to next integer, ie, ceil(a/b) */
82 /* Compute a rounded up to next multiple of b, ie, ceil(a/b)*b */
  /external/llvm/lib/Target/Mips/
MicroMipsInstrFPU.td 45 def CEIL_W_S_MM : MMRel, ABSS_FT<"ceil.w.s", FGR32Opnd, FGR32Opnd, II_CEIL>,
58 def CEIL_W_MM : MMRel, ABSS_FT<"ceil.w.d", FGR32Opnd, AFGR64Opnd, II_CEIL>,
  /external/llvm/test/CodeGen/AArch64/
floatdp_1source.ll 14 declare double @ceil(double) readonly
83 %valceil = call double @ceil(double %val1)
  /external/llvm/test/CodeGen/X86/
rounding-ops.ll 70 %call = tail call double @ceil(double %x) nounwind readnone
80 declare double @ceil(double) nounwind readnone
inline-asm-fpstack.ll 129 ; The return value from ceil must be duped before being consumed by asm.
131 ; CHECK: ceil
140 %0 = call x86_fp80 @ceil(x86_fp80 %a)
145 declare x86_fp80 @ceil(x86_fp80)
152 ; Load %a from stack after ceil
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jutils.c 74 /* Compute a/b rounded up to next integer, ie, ceil(a/b) */
83 /* Compute a rounded up to next multiple of b, ie, ceil(a/b)*b */
  /external/qemu/distrib/jpeg-6b/
jutils.c 73 /* Compute a/b rounded up to next integer, ie, ceil(a/b) */
82 /* Compute a rounded up to next multiple of b, ie, ceil(a/b)*b */
  /external/replicaisland/src/com/replica/replicaisland/
TiledVertexGrid.java 189 final int horzTileCount = (int)Math.ceil((float)mWidth / mTileWidth);
190 final int vertTileCount = (int)Math.ceil((float)mHeight / mTileHeight);
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 99 outline.setRoundRect((int) Math.ceil(rect.left), (int) Math.ceil(rect.top),
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
CropFilter.java 93 int[] croppedDims = { (int)FloatMath.ceil(mCropRect.xEdge().length() * inDims[0]),
94 (int)FloatMath.ceil(mCropRect.yEdge().length() * inDims[1]) };
  /frameworks/support/v7/cardview/eclair-mr1/android/support/v7/widget/
CardViewEclairMr1.java 94 ((View) cardView).setMinimumHeight((int) Math.ceil(getMinHeight(cardView)));
95 ((View) cardView).setMinimumWidth((int) Math.ceil(getMinWidth(cardView)));
  /packages/apps/Settings/src/com/android/settings/widget/
SetupWizardIllustration.java 136 mBackground.setBounds(0, 0, (int) Math.ceil(layoutWidth / mScale),
137 (int) Math.ceil((layoutHeight - mForegroundBounds.height()) / mScale));
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
float.h 71 ceil(log10(b) * (emin - 1))
158 ceil(1 + pmax * log10(b)) otherwise
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
float.h 71 ceil(log10(b) * (emin - 1))
158 ceil(1 + pmax * log10(b)) otherwise
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
cmath 58 #undef ceil
175 using ::ceil;
178 ceil(float __x)
182 ceil(long double __x)
188 ceil(_Tp __x)
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
cmath 58 #undef ceil
175 using ::ceil;
178 ceil(float __x)
182 ceil(long double __x)
188 ceil(_Tp __x)
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
cmath 58 #undef ceil
175 using ::ceil;
178 ceil(float __x)
182 ceil(long double __x)
188 ceil(_Tp __x)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
cmath 58 #undef ceil
175 using ::ceil;
178 ceil(float __x)
182 ceil(long double __x)
188 ceil(_Tp __x)
  /external/chromium_org/third_party/skia/experimental/Intersection/
cd.htm 225 var xEnd = Math.ceil(xmin * subscale) / subscale;
226 var yEnd = Math.ceil(ymin * subscale) / subscale;
239 columns = Math.ceil(xmax * subscale) - Math.floor(xmin * subscale) + 1;
240 rows = Math.ceil(ymax * subscale) - Math.floor(ymin * subscale) + 1;
459 var min = tgt.offsetTop + Math.ceil(at_y);
472 mouseX = (e.clientX - left - Math.ceil(at_x) + 1) / unit + xStart;
473 mouseY = (e.clientY - top - Math.ceil(at_y)) / unit + yStart;
  /external/skia/experimental/Intersection/
cd.htm 225 var xEnd = Math.ceil(xmin * subscale) / subscale;
226 var yEnd = Math.ceil(ymin * subscale) / subscale;
239 columns = Math.ceil(xmax * subscale) - Math.floor(xmin * subscale) + 1;
240 rows = Math.ceil(ymax * subscale) - Math.floor(ymin * subscale) + 1;
459 var min = tgt.offsetTop + Math.ceil(at_y);
472 mouseX = (e.clientX - left - Math.ceil(at_x) + 1) / unit + xStart;
473 mouseY = (e.clientY - top - Math.ceil(at_y)) / unit + yStart;
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AndroidViewIntegrationTest.java 319 (int) Math.ceil(getRootLayoutWidthOnMainThread() / deviceDIPScale);
345 (int) Math.ceil(getRootLayoutWidthOnMainThread() / deviceDIPScale);
369 (int) Math.ceil(physicalWidth / deviceDIPScale);
  /external/iproute2/tc/
q_hfsc.c 374 if (dmax != 0 && ceil(1.0 * umax * TIME_UNITS_PER_SEC / dmax) > rate) {
379 sc->m1 = ceil(1.0 * umax * TIME_UNITS_PER_SEC / dmax); /* in bps */
388 sc->d = tc_core_time2ktime(ceil(dmax - umax * TIME_UNITS_PER_SEC / rate));
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 206 mCenterX += Math.ceil(edges.left / scale);
303 adjustment[1] = FloatMath.ceil(edges.top / scale);
308 if (coef[dim] > 0) adjustment[dim] = FloatMath.ceil(adjustment[dim]);
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
LinearSmoothScroller.java 173 return (int) Math.ceil(calculateTimeForScrolling(dx) / .3356);
185 // To avoid that issue, ceil the result so that if dx > 0, we'll always return positive
187 return (int) Math.ceil(Math.abs(dx) * MILLISECONDS_PER_PX);

Completed in 4360 milliseconds

1 2 3 4 5 6 7 8 91011>>