HomeSort by relevance Sort by last modified time
    Searched refs:round (Results 26 - 50 of 804) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/test/intltest/
dcfmtest.h 46 const UnicodeString &round,
dcfmtest.cpp 368 const UnicodeString &round, // rounding mode
384 if (round=="ceiling") {
386 } else if (round=="floor") {
388 } else if (round=="down") {
390 } else if (round=="up") {
392 } else if (round=="halfeven") {
394 } else if (round=="halfdown") {
396 } else if (round=="halfup") {
398 } else if (round=="default") {
403 lineNum, UnicodeStringPiece(round).data())
    [all...]
  /external/icu4c/test/intltest/
dcfmtest.h 53 const UnicodeString &round,
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
HillHeightMap.java 172 int xMin = Math.round(x - radius - 1);
173 int xMax = Math.round(x + radius + 1);
175 int yMin = Math.round(y - radius - 1);
176 int yMax = Math.round(y + radius + 1);
  /external/srec/audio/AudioIn/UNIX/include/
filter.h 45 typeAccum round; // used for roundoff member in struct:fir_struct
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct.cpp 42 Int round; local
53 round = 1 << (FDCT_SHIFT - 1);
118 k1 = mla724(k12, k5, round);
119 k0 = mla724(k12, k2, round);
136 k1 = mla392(k0, k14, round);
213 k1 = mla724(k12, k5, round);
214 k0 = mla724(k12, k2, round);
231 k1 = mla392(k0, k14, round);
271 Int round; local
282 round = 1 << (FDCT_SHIFT - 1)
477 Int round; local
656 Int round; local
867 Int round; local
1054 Int round; local
    [all...]
fastquant_inline.h 30 __inline int32 aan_scale(int32 q_value, int32 coeff, int32 round, int32 QPdiv2)
32 q_value = coeff * q_value + round;
83 __inline int32 smlabb(int32 q_value, int32 coeff, int32 round)
85 q_value = coeff * q_value + round;
174 int32 round, int32 QPdiv2)
178 smlabb q_value, coeff, q_value, round
221 __inline int32 smlabb(int32 q_value, int32 coeff, int32 round)
225 smlabb q_value, coeff, q_value, round
269 int32 round, int32 QPdiv2)
273 mla q_value, coeff, q_value, round
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/asm/
vpaes-x86.pl 57 my ($round, $base, $magic, $key, $const, $inp, $out)=
135 ## Round function constants
182 &mov ($round,&DWP(240,$key));
200 # middle of middle round
224 &sub ($round,1); # nr--
227 # top of round
250 # middle of last round
268 &mov ($round,&DWP(240,$key));
273 &mov ($magic,$round);
300 &add ($key,16); # next round ke
    [all...]
  /external/openssl/crypto/aes/asm/
vpaes-x86.pl 57 my ($round, $base, $magic, $key, $const, $inp, $out)=
135 ## Round function constants
182 &mov ($round,&DWP(240,$key));
200 # middle of middle round
224 &sub ($round,1); # nr--
227 # top of round
250 # middle of last round
268 &mov ($round,&DWP(240,$key));
273 &mov ($magic,$round);
300 &add ($key,16); # next round ke
    [all...]
  /cts/tests/tests/holo/src/android/holo/cts/
DisplayInfoActivity.java 41 int width = Math.round(dm.widthPixels / dm.density);
42 int height = Math.round(dm.heightPixels / dm.density);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSubstring.java 70 start = Math.round(start);
77 int end = (int) (Math.round(len) + start) - 1;
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ScrollbarThemeChromiumOverlay.cpp 60 return round(proportion * trackLen);
71 int length = round(proportion * trackLen);
  /external/chromium_org/ui/android/java/src/org/chromium/ui/gfx/
BitmapHelper.java 58 final int heightRatio = Math.round((float) height / (float) reqHeight);
59 final int widthRatio = Math.round((float) width / (float) reqWidth);
  /external/lzma/C/
Ppmd.h 21 #define PPMD_GET_MEAN_SPEC(summ, shift, round) (((summ) + (1 << ((shift) - (round)))) >> (shift))
  /packages/apps/Camera/src/com/android/camera/
Thumbnail.java 62 int w = Math.round(scale * width);
63 int h = Math.round(scale * height);
  /packages/apps/Camera2/src/com/android/camera/
Thumbnail.java 62 int w = Math.round(scale * width);
63 int h = Math.round(scale * height);
  /external/ceres-solver/internal/ceres/
parameter_block_ordering.cc 97 int round = 0; local
104 ordering->AddElementToGroup(parameter_block->mutable_user_state(), round);
108 ++round;
  /external/chromium_org/crypto/
p224_spake_unittest.cc 86 for (unsigned round = 0;; round++) {
91 if ((rand & 1) == round) {
111 // although one side can succeed if we happen to corrupt the second round
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/
AssetTileLoader.java 42 String modelName = assetPath + "/" + name + "_" + Math.round(location.x) + "_" + Math.round(location.y) + "_" + Math.round(location.z) + ".j3o";
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
LongPressDetector.java 169 mTouchInitialX = Math.round(event.getX());
170 mTouchInitialY = Math.round(event.getY());
176 int deltaX = Math.round(event.getX()) - mTouchInitialX;
177 int deltaY = Math.round(event.getY()) - mTouchInitialY;
  /external/chromium_org/third_party/WebKit/Source/core/html/
StepRange.cpp 123 step = max(step.round(), Decimal(1));
129 step = max(step.round(), Decimal(1));
141 return base + ((value - base) / m_step).round() * m_step;
162 const Decimal remainder = (value - m_step * (value / m_step).round()).abs();
  /external/chromium_org/ui/gfx/
path_aura.cc 16 bounds.round(&ibounds);
  /external/chromium_org/v8/tools/testrunner/local/
junit_output.py 40 testCaseElement.attrib["time"] = str(round(test_duration, 3))
  /packages/apps/Camera2/src/com/android/camera/crop/
GeometryMathUtils.java 163 Rect q = new Rect(Math.round(r.left), Math.round(r.top), Math.round(r.right),
164 Math.round(r.bottom));
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
FaceView.java 138 mFaceIndicator.setBounds(Math.round(mRect.left), Math.round(mRect.top),
139 Math.round(mRect.right), Math.round(mRect.bottom));

Completed in 787 milliseconds

12 3 4 5 6 7 8 91011>>