HomeSort by relevance Sort by last modified time
    Searched refs:ceil (Results 126 - 150 of 724) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
CropFilter.java 92 int[] croppedDims = { (int)Math.ceil(mCropRect.xEdge().length() * inDims[0]),
93 (int)Math.ceil(mCropRect.yEdge().length() * inDims[1]) };
  /frameworks/base/tools/layoutlib/bridge/src/android/text/
StaticLayout_Delegate.java 143 List<Integer> breaks = new ArrayList<Integer>((int) Math.ceil(length / 5d));
180 List<Primitive> primitives = new ArrayList<Primitive>(((int) Math.ceil(length * 1.833)));
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
Illustration.java 171 mBackground.setBounds(0, 0, (int) Math.ceil(layoutWidth / mScale),
172 (int) Math.ceil((layoutHeight - mIllustrationBounds.height()) / mScale));
  /frameworks/support/v7/cardview/api21/android/support/v7/widget/
RoundRectDrawable.java 113 mBoundsI.inset((int) Math.ceil(hInset), (int) Math.ceil(vInset));
  /frameworks/support/v7/cardview/eclair-mr1/android/support/v7/widget/
CardViewEclairMr1.java 100 cardView.setMinWidthHeightInternal((int) Math.ceil(getMinWidth(cardView)),
101 (int) Math.ceil(getMinHeight(cardView)));
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
LinearSmoothScroller.java 174 return (int) Math.ceil(calculateTimeForScrolling(dx) / .3356);
186 // To avoid that issue, ceil the result so that if dx > 0, we'll always return positive
188 return (int) Math.ceil(Math.abs(dx) * MILLISECONDS_PER_PX);
  /libcore/ojluni/src/main/native/
Math.c 139 return ceil(d);
155 NATIVE_METHOD(Math, ceil, "!(D)D"),
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 74 (int) Math.ceil(Math.sqrt((double) (w * h) / maxNumOfPixels));
109 int initialSize = Math.max(1, (int) Math.ceil(1 / scale));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureStrokeDrawingPoints.java 146 final int segmentsByAngle = (int)Math.ceil(
150 final int segmentsByDistance = (int)Math.ceil(deltaDistance
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MathUtils.java     [all...]
  /external/llvm/test/MC/Mips/
micromips-fpu-instructions.s 30 # CHECK-EL: ceil.w.s $f6, $f8 # encoding: [0xc8,0x54,0x3b,0x1b]
31 # CHECK-EL: ceil.w.d $f6, $f8 # encoding: [0xc8,0x54,0x3b,0x5b]
95 # CHECK-EB: ceil.w.s $f6, $f8 # encoding: [0x54,0xc8,0x1b,0x3b]
96 # CHECK-EB: ceil.w.d $f6, $f8 # encoding: [0x54,0xc8,0x5b,0x3b]
156 ceil.w.s $f6, $f8
157 ceil.w.d $f6, $f8
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_HighLevelEncoder.cpp 196 (FX_FLOAT)ceil(charCounts[ASCII_ENCODATION]);
200 (FX_FLOAT)ceil(charCounts[ASCII_ENCODATION]);
332 intCharCounts[i] = (int32_t)ceil(charCounts[i]);
  /external/webrtc/webrtc/common_video/libyuv/
libyuv_unittest.cc 181 EXPECT_GT(ceil(psnr), 44);
249 EXPECT_GT(ceil(psnr), 40);
266 EXPECT_GT(ceil(psnr), 42);
  /external/autotest/client/cros/cellular/mbim_compliance/
mbim_message_request.py 116 math.ceil(remaining_payload_length /
  /external/autotest/server/cros/dynamic_suite/
frontend_wrappers.py 34 return int(math.ceil(numerator/denominator))
  /external/ceres-solver/examples/
robot_pose_mle.cc 237 ceil(FLAGS_corridor_length / FLAGS_pose_separation));
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
utils.py 75 chunk_count = int(math.ceil(len(bytestring) / float(chunk_size)))
  /external/fio/
tickmarks.c 104 graphmax = ceil(max / d) * d;
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassHeaderReader.java 145 int rounded = (int)(CHUNK * Math.ceil((float)amount / CHUNK));
  /external/libchrome/base/message_loop/
message_pump_glib.cc 32 ceil((from - TimeTicks::Now()).InMillisecondsF()));
  /external/llvm/test/MC/Mips/mips1/
invalid-mips2.s 20 ceil.w.d $f11,$f25 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
21 ceil.w.s $f6,$f20 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/opencv3/3rdparty/openexr/Imath/
ImathFun.h 156 ceil (T x) function in namespace:Imath
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
TerminalBridge.java 414 charTop = (int) Math.ceil(fm.top);
418 charWidth = (int) Math.ceil(widths[0]);
419 charHeight = (int) Math.ceil(fm.descent - fm.top);
725 int termHeight = (int) Math.ceil(fm.descent - fm.top) * rows;
  /external/v8/test/webkit/fast/js/kde/
math.js 54 shouldBe("Math.ceil(1.1)", "2");
56 shouldBe("Math.ceil(1.6)", "2");
  /external/valgrind/memcheck/tests/
vcpu_fnfns.c 34 printf(" ceilD(%+20.13e) = %+20.13e\n", d, ceil(d));

Completed in 1268 milliseconds

1 2 3 4 56 7 8 91011>>