/packages/apps/Launcher3/src/com/android/launcher3/ |
Utilities.java | 247 coord[0] = (int) Math.round(pt[0]); 248 coord[1] = (int) Math.round(pt[1]); 287 coord[0] = (int) Math.round(pt[0]); 288 coord[1] = (int) Math.round(pt[1]);
|
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
SharePopup.java | 191 params.width = Math.round(maxHeight * desiredAspect); 192 params.height = Math.round(maxHeight); 194 params.width = Math.round(maxWidth); 195 params.height = Math.round(maxWidth / desiredAspect);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 34 for round, bs in (0, 0), (1, 30): 40 self.buffer_size_test(t1, t2, t3, t4, bs, round) 44 def buffer_size_test(self, t1, t2, t3, t4, bs=0, round=0): 47 start = 1 + round*6
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 34 for round, bs in (0, 0), (1, 30): 40 self.buffer_size_test(t1, t2, t3, t4, bs, round) 44 def buffer_size_test(self, t1, t2, t3, t4, bs=0, round=0): 47 start = 1 + round*6
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/ |
background.js | 29 ctx.lineWidth = Math.round(ctx.canvas.width*0.1); 52 ctx.lineWidth = Math.round(ctx.canvas.width*0.1); 53 ctx.lineJoin = 'round'; 76 ctx.lineWidth = Math.round(s*5); 92 ctx.lineWidth = Math.round(s*5); 109 ctx.lineWidth = Math.round(s*5);
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/ |
bg.js | 51 var secondsSinceChangeEvent = Math.round(timeDeltaInMs / 1000); 52 var minutesSinceChangeEvent = Math.round(secondsSinceChangeEvent / 60); 53 var hoursSinceChangeEvent = Math.round(minutesSinceChangeEvent / 60); 54 var daysSinceChangeEvent = Math.round(hoursSinceChangeEvent / 24); 63 text = Math.round(minutesSinceChangeEvent / 5) * 5 + "m"; 66 var halfHours = Math.round(minutesSinceChangeEvent / 30);
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayMath.cpp | 60 SK_FUNCTION(round), 97 (SkFunctionParamType) SkType_Float, // round 132 SK_MEMBER_FUNCTION(round, Float), 206 case SK_FUNCTION(round):
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_quantize_ssse3.asm | 19 cglobal quantize_%1, 0, %2, 15, coeff, ncoeff, skip, zbin, round, quant, \ 35 mova m1, [roundq] ; m1 = round 73 paddsw m6, m1 ; m6 += round 75 paddsw m11, m1 ; m11 += round 130 paddsw m6, m1 ; m6 += round 131 paddsw m11, m1 ; m11 += round
|
/external/skia/src/animator/ |
SkDisplayMath.cpp | 60 SK_FUNCTION(round), 97 (SkFunctionParamType) SkType_Float, // round 132 SK_MEMBER_FUNCTION(round, Float), 206 case SK_FUNCTION(round):
|
/libcore/luni/src/main/java/java/lang/ |
HexStringParser.java | 217 round(); method 226 round(); method 256 private void round() { method in class:HexStringParser
|
/packages/apps/Gallery/src/com/android/camera/ |
HighlightView.java | 113 int d = (int) Math.round(Math.cos(/*45deg*/Math.PI / 4D) 359 return new Rect(Math.round(r.left), Math.round(r.top), 360 Math.round(r.right), Math.round(r.bottom));
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESEngine.java | 438 for (int round = 0; round < 8; round++) 443 work ^= wKey[round * 4 + 0]; 448 work = right ^ wKey[round * 4 + 1]; 455 work ^= wKey[round * 4 + 2]; 460 work = left ^ wKey[round * 4 + 3];
|
/external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/ |
sha512-x86_64.pl | 84 $round="%rdi"; # zaps $ctx 111 add ($Tbl,$round,$SZ),$T1 # T1+=K[round] 134 lea 1($round),$round # round++ 211 xor $round,$round 232 cmp \$$rounds,$round
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/ |
DES.java | 315 for (int round = 0; round < 8; round++) 320 work ^= wKey[round * 4 + 0]; 325 work = right ^ wKey[round * 4 + 1]; 332 work ^= wKey[round * 4 + 2]; 337 work = left ^ wKey[round * 4 + 3];
|
/external/openssl/crypto/sha/asm/ |
sha512-x86_64.pl | 84 $round="%rdi"; # zaps $ctx 111 add ($Tbl,$round,$SZ),$T1 # T1+=K[round] 134 lea 1($round),$round # round++ 211 xor $round,$round 232 cmp \$$rounds,$round
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
fastquant.cpp | 159 Int round = 1 << 15; local 224 coeff = aan_scale(q_value, coeff, round, QPdiv2); 278 Int round = 1 << 15; local 326 q_value = round + (coeff << 12); 383 q_value = smlabb(q_value, coeff, round); 553 Int round = 1 << 15; local 583 q_value = smlabb(q_value, coeff, round); 682 Int round = 1 << 15; local 708 q_value = round + (coeff << 12); 754 /* q_value = coeff*q_value + round */ [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/ |
DateComponents.cpp | 528 if (!setMillisecondsSinceEpochForDateInternal(round(ms))) 541 ms = round(ms); 565 if (!setMillisecondsSinceEpochForDateInternal(round(ms))) 578 setMillisecondsSinceMidnightInternal(positiveFmod(round(ms), msPerDay)); 587 months = round(months); 617 ms = round(ms);
|
/external/chromium/webkit/glue/media/ |
video_renderer_impl.cc | 224 // After projecting the destination rectangle to local coordinates, round 228 local_dest_rect.round(&local_dest_irect); 229 local_dest_rect.round(&local_dest_irect_saved); 313 transformed_rect.round(dest_rect);
|
/packages/apps/Contacts/src/com/android/contacts/detail/ |
ContactDetailTabCarousel.java | 157 int tabWidth = Math.round(mTabWidthScreenWidthFraction * screenWidth); 177 int tabHeight = Math.round(screenWidth * mTabHeightScreenWidthFraction) + mTabShadowHeight; 263 final int pixelsOfPhotoLeft = Math.round(photoHeight) + scrollOffset;
|
/art/test/064-field-access/src/ |
Main.java | 510 for (int round = 0; round < 3; round++) { 514 switch (round) {
|
/bionic/libm/ |
fake_long_double.c | 64 long double roundl(long double a1) { return round(a1); }
|
/cts/tests/src/android/widget/cts/ |
WidgetTestUtils.java | 110 return Math.round(density * dip);
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
RemainderTest.java | 75 ref[i * (stride - skip) + j] = (float)(num - Math.round(num / den) * den);
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
List8.java | 126 int whichPhoto = (int)Math.round(Math.random() * (mPhotoPool.length - 1));
|
/development/samples/training/ContactsList/src/com/example/android/contactslist/util/ |
ImageCache.java | 164 return Math.round(percent * Runtime.getRuntime().maxMemory() / 1024);
|