HomeSort by relevance Sort by last modified time
    Searched refs:Round (Results 1 - 25 of 32) sorted by null

1 2

  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
NumUtil.java 24 public float Round(float Rval, int Rpl) {
27 float tmp = Math.round(Rval);
Coordinate.java 220 decCoordinate = nu.Round(this.deg + (float) this.minsDecMins / 60, Coordinate.MINPRECISION);
227 decCoordinate = nu.Round(this.deg - ((float) this.minsDecMins / 60), Coordinate.MINPRECISION);
236 decCoordinate = nu.Round(this.deg + ((float) this.minsDecMins / 60), Coordinate.MINPRECISION);
243 decCoordinate = nu.Round(this.deg - ((float) this.minsDecMins / 60), Coordinate.MINPRECISION);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_TransformDequantLumaDCFromPair_s.s 121 Round RN 0
339 ;// constant 2 after the Multiplication. The value of Round would be 2
346 MOV Round, #2 ;// Round = 2
351 SMLABB temp1, colOp00, Scale, Round ;// Temp1 = B(c0w0) * Scale + Round
352 SMLABB temp3, colOp02, Scale, Round ;// Temp3 = B(c1w0) * Scale + Round
353 SMLATB temp2, colOp00, Scale, Round ;// Temp2 = T(c0w0) * Scale + Round
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
avatar_menu_button.cc 24 static inline int Round(double x) {
68 // Round here so that we minimize the aspect ratio drift.
69 int dst_height = Round(button_icon_.height() * scale);
70 // Round rather than truncating, so that for odd heights we select an extra
74 int dst_y = Round((height() - dst_height) / 2.0);
avatar_menu_bubble_view.cc 57 inline int Round(double x) {
70 scaled_height = Round(src_height * scale);
75 scaled_width = Round(src_width * scale);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_TransformDequantLumaDCFromPair.c 36 int i, Round, Value;
49 Round = 1<<(Shift-1);
53 Value = (pDst[i] * Scale + Round) >> Shift;
  /external/libvpx/libvpx/vp8/common/
treecoder.h 74 int Round
  /bionic/tests/
benchmark_main.cpp 34 static int Round(int n) {
140 iterations = Round(iterations);
  /external/chromium_org/native_client_sdk/src/examples/api/core/
test.js 11 return parseFloat(document.getElementById('Round').textContent);
example.js 39 var statRoundEl = document.getElementById('Round');
  /external/chromium_org/printing/
printing_context_android.cc 26 inline int Round(double x) {
129 width = Round(ConvertUnitDouble(width, kInchToMil, 1.0) * dpi);
130 height = Round(ConvertUnitDouble(height, kInchToMil, 1.0) * dpi);
  /external/libvpx/libvpx/vp8/encoder/arm/neon/
fastquantizeb_neon.asm 49 vadd.s16 q4, q6 ; x + Round
54 vqdmulh.s16 q4, q8 ; y = ((Round+abs(z)) * Quant) >> 16
66 vadd.s16 q10, q6 ; x2 + Round
71 vqdmulh.s16 q10, q8 ; y2 = ((Round+abs(z)) * Quant) >> 16
181 vadd.s16 q12, q14 ; x + Round
186 vqdmulh.s16 q12, q8 ; y = ((Round+abs(z)) * Quant) >> 16
  /external/chromium_org/ui/gfx/
transform_util.cc 59 SkMScalar Round(SkMScalar n) {
136 decomp.translate[0] = Round(decomp.translate[0]);
137 decomp.translate[1] = Round(decomp.translate[1]);
138 decomp.translate[2] = Round(decomp.translate[2]);
215 decomp.scale[0] = Round(decomp.scale[0]);
216 decomp.scale[1] = Round(decomp.scale[1]);
217 decomp.scale[2] = Round(decomp.scale[2]);
  /external/chromium_org/third_party/skia/src/core/
SkFP.h 52 #define SkFPRound(x) SkFloat::Round(x);
  /external/skia/src/core/
SkFP.h 52 #define SkFPRound(x) SkFloat::Round(x);
  /external/chromium_org/cc/base/
math_util.h 83 static float Round(float f) {
86 static double Round(double d) {
  /external/chromium_org/v8/test/webkit/fast/js/kde/
md5-1.js 241 /* Round 1 */
259 /* Round 2 */
277 /* Round 3 */
295 /* Round 4 */
  /external/chromium/chrome/browser/ui/views/tabs/
tab_strip.cc 60 static inline int Round(double x) {
709 int w = Round(first_tab->IsActive() ? selected : selected);
916 int rounded_tab_x = Round(tab_x);
918 gfx::Rect(rounded_tab_x, 0, Round(end_of_tab) - rounded_tab_x,
929 if (abs(Round(unselected) - Tab::GetStandardSize().width()) > 1 &&
936 new_tab_x = Round(tab_x - kTabHOffset) + kNewTabButtonHOffset;
    [all...]
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_strip_gtk.cc 70 inline int Round(double x) {
427 gfx::Rect bounds(Round(new_x), start_tab_a_bounds_.y(), tab_a_->width(),
435 bounds = gfx::Rect(Round(new_x), start_tab_b_bounds_.y(), tab_b_->width(),
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/tabs/
tab_strip_gtk.cc 91 inline int Round(double x) {
448 gfx::Rect bounds(Round(new_x), start_tab_a_bounds_.y(), tab_a_->width(),
456 bounds = gfx::Rect(Round(new_x), start_tab_b_bounds_.y(), tab_b_->width(),
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
aggregate_results.js 219 // Round to the nearest tenth of a percent.
220 percent.push(Math.round(percentage * 10) / 10 + '%');
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_strip.cc 90 static inline int Round(double x) {
    [all...]
  /external/chromium_org/third_party/jinja2/
filters.py 599 just the other way round. It returns a list of lists with the
629 """Round the number to a given precision. The first
641 {{ 42.55|round }}
643 {{ 42.55|round(1, 'floor') }}
651 {{ 42.55|round|int }}
657 return round(value, precision)
757 way round.
982 'round': do_round,
  /external/chromium_org/cc/trees/
layer_tree_host_common.cc     [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
background.js 5 // Round a number to the 1's place.
332 Math.round((load_times.startLoadTime - requested) * 1000.0);
334 Math.round((load_times.commitLoadTime - started) * 1000.0);
336 Math.round((load_times.finishDocumentLoadTime - started) * 1000.0);
338 Math.round((load_times.firstPaintTime - started) * 1000.0);
340 Math.round((load_times.finishLoadTime - started) * 1000.0);
342 Math.round((load_times.firstPaintAfterLoadTime - started) * 1000.0);

Completed in 485 milliseconds

1 2