/external/webkit/Source/WebCore/inspector/front-end/ |
HAREntry.js | 180 return typeof startTime !== "number" || startTime === -1 ? -1 : Math.round(timing[end] - startTime); 186 return time === -1 ? -1 : Math.round(time * 1000);
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/ |
Deemph_32_opt.s | 55 MOV r14, r10, ASR #16 @y[0] = round(L_tmp) 66 MOV r14, r10, ASR #16 @y[1] = round(L_tmp)
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/ |
Deemph_32_neon.s | 55 MOV r14, r10, ASR #16 @y[0] = round(L_tmp) 66 MOV r14, r10, ASR #16 @y[1] = round(L_tmp)
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
AbstractSlotRenderer.java | 69 int w = Math.round(scale * v.getWidth()); 70 int h = Math.round(scale * v.getHeight());
|
TiledScreenNail.java | 80 mWidth = Math.round(scale * width); 81 mHeight = Math.round(scale * height);
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
HandleView.java | 148 final int deltaX = Math.round((ev.getX() - mStartMoveX)); 190 final int deltaX = Math.round((eventX - mStartMoveX));
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/ |
ResolutionChooserDialog.java | 68 return (int)Math.round(d); 92 if (Math.round(size) == size) {
|
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/ |
TimeLine.java | 90 return Math.round(time * keyFramesPerSeconds);
|
/external/libvpx/vp8/encoder/x86/ |
quantize_ssse3.asm | 36 movdqa xmm2, [rdi] ;round lo 37 movdqa xmm3, [rdi + 16] ;round hi
|
/frameworks/base/services/java/com/android/server/power/ |
RampAnimator.java | 118 mCurrentValue = (int)Math.round(mAnimatedValue);
|
/gdk/samples/PhotoEditor/src/com/android/photoeditor/actions/ |
RotateAction.java | 97 // Round the current rotation degrees in case rotation tracking has not stopped yet. 109 rotateDegrees = Math.round(rotateDegrees / 90) * 90;
|
/libcore/luni/src/main/java/java/lang/ |
StrictMath.java | 354 * 754 rules. The result is {@code x-round(x/p)*p} where {@code round(x/p)} 657 * <li>{@code round(+0.0) = +0.0}</li> 658 * <li>{@code round(-0.0) = +0.0}</li> 659 * <li>{@code round((anything > Long.MAX_VALUE) = Long.MAX_VALUE}</li> 660 * <li>{@code round((anything < Long.MIN_VALUE) = Long.MIN_VALUE}</li> 661 * <li>{@code round(+infinity) = Long.MAX_VALUE}</li> 662 * <li>{@code round(-infinity) = Long.MIN_VALUE}</li> 663 * <li>{@code round(NaN) = +0.0}</li> 670 public static long round(double d) method in class:StrictMath 693 public static int round(float f) { method in class:StrictMath [all...] |
HexStringParser.java | 217 round(); method 226 round(); method 256 private void round() { method in class:HexStringParser
|
/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);
|
/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):
|
/external/webkit/Source/JavaScriptCore/wtf/ |
MathExtras.h | 112 static double round(double num) function 126 inline long long llround(double num) { return static_cast<long long>(round(num)); } 128 inline long lround(double num) { return static_cast<long>(round(num)); }
|
/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 | 437 for (int round = 0; round < 8; round++) 442 work ^= wKey[round * 4 + 0]; 447 work = right ^ wKey[round * 4 + 1]; 454 work ^= wKey[round * 4 + 2]; 459 work = left ^ wKey[round * 4 + 3];
|
/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 | 83 $round="%rdi"; # zaps $ctx 110 add ($Tbl,$round,$SZ),$T1 # T1+=K[round] 133 lea 1($round),$round # round++ 210 xor $round,$round 231 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/webkit/Source/WebCore/html/ |
DateComponents.cpp | 533 if (!setMillisecondsSinceEpochForDateInternal(round(ms))) 546 ms = round(ms); 570 if (!setMillisecondsSinceEpochForDateInternal(round(ms))) 583 setMillisecondsSinceMidnightInternal(positiveFmod(round(ms), msPerDay)); 592 months = round(months); 622 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;
|
/packages/apps/Email/src/com/android/email/activity/ |
MessageListItemCoordinates.java | 285 coordinates.sendersAscent = Math.round(senders.getPaint().ascent()); 293 coordinates.subjectAscent = Math.round(subject.getPaint().ascent()); 305 coordinates.dateAscent = Math.round(date.getPaint().ascent());
|