/external/freetype/src/autofit/ |
aflatin2.c | 210 FT_Bool round; local 279 /* now check whether the point belongs to a straight or round */ 319 /* now, set the `round' flag depending on the segment's kind */ 320 round = FT_BOOL( 324 AF_LOG(( "%c ", round ? 'r' : 'f' )); 327 if ( round ) 788 /* a segment is round if it doesn't have successive */ [all...] |
/external/libvpx/vp8/common/x86/ |
postproc_mmx.asm | 131 paddusw mm3, RD ; mm3 += round value 227 paddusw mm3, RD ; mm3 += round value
|
postproc_mmx.c | 207 mm3 += round value 358 mm3 += round value 535 mm3 += round value 667 mm3 += round value [all...] |
postproc_sse2.asm | 119 paddusw xmm3, RD42 ; mm3 += round value 209 paddusw xmm3, RD42 ; mm3 += round value
|
/external/qemu/target-arm/ |
neon_helper.c | 822 #define NEON_QDMULH16(dest, src1, src2, round) do { \ 829 if (round) { \ 847 #define NEON_QDMULH32(dest, src1, src2, round) do { \ 855 if (round) { \ [all...] |
/external/skia/include/core/ |
SkRect.h | 416 void round(SkIRect* dst) const {
|
/external/webkit/WebCore/rendering/ |
RenderSlider.cpp | 99 clampedValue = minimum + round((clampedValue - minimum) / step) * step;
|
/packages/apps/Camera/src/com/android/camera/ |
CameraSettings.java | 214 entryValues[maxValue - i] = Integer.toString(Math.round(i / step));
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
AllApps3D.java | 318 final int firstIcon = Math.round(sRollo.mScrollPos) * mColumnsPerPage; 372 sRollo.selectIcon(Math.round(sRollo.mScrollPos) * mColumnsPerPage, SELECTED_FOCUSED); 409 int currentTopRow = Math.round(sRollo.mScrollPos); [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
Suggest.java | 435 freq = (int)Math.round((freq * multiplier));
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/ |
AvdStartDialog.java | 356 scale = Math.round(scale * 100);
|
/external/libvpx/vp8/common/arm/neon/ |
loopfilterhorizontaledge_uv_neon.asm | 158 vrshr.s8 q1, q1, #1 ;round/shift: vp8_filter += 1; vp8_filter >>= 1
|
loopfilterhorizontaledge_y_neon.asm | 145 vrshr.s8 q1, q1, #1 ;round/shift: vp8_filter += 1; vp8_filter >>= 1
|
/external/v8/src/ |
math.js | 251 "round", MathRound,
|
/external/v8/test/mjsunit/ |
undeletable-functions.js | 57 "round", "sin", "sqrt", "tan", "atan2", "pow", "max", "min"];
|
/external/webkit/SunSpider/tests/sunspider-0.9/ |
3d-cube.js | 54 NumPix = Math.round(Q.LastPx + NumPix);
|
date-format-tofte.js | 184 return Math.round(self.getTime()/1000);
|
/external/webkit/SunSpider/tests/sunspider-0.9.1/ |
3d-cube.js | 54 NumPix = Math.round(Q.LastPx + NumPix);
|
date-format-tofte.js | 184 return Math.round(self.getTime()/1000);
|
/frameworks/base/tests/CoreTests/android/core/ |
MathTest.java | 542 assertEquals("Failed to round properly - up to odd", 544 assertTrue("Failed to round properly - NaN", Double.isNaN(Math 546 assertEquals("Failed to round properly down to even", 548 assertTrue("Failed to round properly " + 2.5 + " to even", Math 553 * @tests java.lang.Math#round(double) 557 // Test for method long java.lang.Math.round(double) 558 assertEquals("Incorrect rounding of a float", -91, Math.round(-90.89d)); 562 * @tests java.lang.Math#round(float) 566 // Test for method int java.lang.Math.round(float) 567 assertEquals("Incorrect rounding of a float", -91, Math.round(-90.89f)) [all...] |
StrictMathTest.java | 557 assertEquals("Failed to round properly - up to odd", 559 assertTrue("Failed to round properly - NaN", Double.isNaN(StrictMath 561 assertEquals("Failed to round properly down to even", 2.0, StrictMath 563 assertTrue("Failed to round properly " + 2.5 + " to even", StrictMath 568 * @tests java.lang.StrictMath#round(double) 572 // Test for method long java.lang.StrictMath.round(double) 574 -91, StrictMath.round(-90.89d)); 578 * @tests java.lang.StrictMath#round(float) 582 // Test for method int java.lang.StrictMath.round(float) 584 -91, StrictMath.round(-90.89f)) [all...] |
/external/libvpx/vp8/encoder/ |
encodeframe.c | 327 x->block[i].round = cpi->Y1round[QIndex]; 341 x->block[i].round = cpi->UVround[QIndex]; 352 x->block[24].round = cpi->Y2round[QIndex]; [all...] |
/external/webkit/WebCore/platform/graphics/mac/ |
ComplexTextController.cpp | 47 return static_cast<CGFloat>(round(f)); 477 // First, we round spaces to an adjusted width in all fonts.
|
/frameworks/base/core/java/android/inputmethodservice/ |
Keyboard.java | 655 // Round-up so we don't have any pixels outside the grid 811 // Round it to avoid values like 47.9999 from getting truncated 812 return Math.round(a.getFraction(index, base, base, defValue));
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
Archive.java | 348 Math.round(getSize() / (1024*1024)),
[all...] |