/prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/ |
tgmath.h | 1140 // round 1148 __tg_round(double __x) {return round(__x);} 1154 #undef round macro 1155 #define round(__x) __tg_round(__tg_promote1((__x))(__x)) macro
|
/prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/ |
tgmath.h | 1140 // round 1148 __tg_round(double __x) {return round(__x);} 1154 #undef round macro 1155 #define round(__x) __tg_round(__tg_promote1((__x))(__x)) macro
|
/prebuilts/sdk/renderscript/clang-include/ |
tgmath.h | 1140 // round 1148 __tg_round(double __x) {return round(__x);} 1154 #undef round macro 1155 #define round(__x) __tg_round(__tg_promote1((__x))(__x)) macro
|
/prebuilts/sdk/tools/darwin/renderscript/clang-include/ |
tgmath.h | 1140 // round 1148 __tg_round(double __x) {return round(__x);} 1154 #undef round macro 1155 #define round(__x) __tg_round(__tg_promote1((__x))(__x)) macro
|
/external/chromium_org/third_party/freetype/src/autofit/ |
aflatin2.c | 223 FT_Bool round; local 290 /* now check whether the point belongs to a straight or round */ 335 /* now, set the `round' flag depending on the segment's kind */ 336 round = FT_BOOL( 340 FT_TRACE5(( " (%s)\n", round ? "round" : "flat" )); 343 if ( round ) 578 /* we round up much more often */ 832 /* a segment is round if it doesn't have successive */ [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
entropy_coding.c | 211 int16_t round, shftVal = 0, sh; local 222 round = 32; 226 round = 256; 235 CorrQ11[k] = WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(sum, tmpGain) + round, shftVal); 283 int16_t round, shftVal = 0, sh; local 295 round = 32; 299 round = 256; 308 CorrQ11[k] = WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(sum, tmpGain) + round, shftVal); [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/ |
entropy_coding.c | 103 int16_t round, shftVal = 0, sh; local 117 round = 32; 121 round = 256; 130 CorrQ11[k] = WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(sum, tmpGain) + round, [all...] |
/external/eigen/unsupported/test/mpreal/ |
mpreal.h | 452 friend const mpreal round(const mpreal& v);
2391 inline const mpreal round(const mpreal& v) function in namespace:mpfr [all...] |
/external/freetype/src/autofit/ |
aflatin.c | 255 /* round segments the overshoot positions. */ 350 FT_Bool round = 0; local 425 /* now check whether the point belongs to a straight or round */ 692 /* now set the `round' flag depending on the segment's kind: */ 698 /* an `off' point, the segment is round, otherwise it is */ 705 round = 0; 707 round = FT_BOOL( 713 if ( round && AF_LATIN_IS_NEUTRAL_BLUE( bs ) ) 716 FT_TRACE5(( " (round, skipped)\n" )); 720 FT_TRACE5(( " (%s)\n", round ? "round" : "flat" )) [all...] |
aflatin2.c | 224 FT_Bool round; local 291 /* now check whether the point belongs to a straight or round */ 336 /* now, set the `round' flag depending on the segment's kind */ 337 round = FT_BOOL( 341 FT_TRACE5(( " (%s)\n", round ? "round" : "flat" )); 344 if ( round ) 579 /* we round up much more often */ 833 /* a segment is round if it doesn't have successive */ [all...] |
/external/vixl/src/a64/ |
simulator-a64.cc | 409 "0b00 (Round to Nearest)", 410 "0b01 (Round towards Plus Infinity)", 411 "0b10 (Round towards Minus Infinity)", 412 "0b11 (Round towards Zero)" 1356 FPRounding round = RMode(); local 1441 FPRounding round = RMode(); local [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
entropy_coding.c | 103 WebRtc_Word16 round, shftVal = 0, sh; local 117 round = 32; 121 round = 256; 130 CorrQ11[k] = WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(sum, tmpGain) + round, [all...] |
/frameworks/base/core/java/android/app/ |
ActivityTransitionCoordinator.java | 429 view.setRight(Math.round(width)); 430 view.setBottom(Math.round(height)); 441 int x = Math.round(left); 442 int y = Math.round(top); 443 int width = Math.round(right) - x; 444 int height = Math.round(bottom) - y; [all...] |
/libcore/luni/src/main/java/java/math/ |
BigDecimal.java | 53 * Rounding mode to round towards positive infinity. For positive values 62 * Rounding mode to round towards negative infinity. For positive values 794 return add(augend).round(mc); 804 return add(augend).round(mc); 808 return add(augend).round(mc); 823 return larger.round(mc); 1840 public BigDecimal round(MathContext mc) { method in class:BigDecimal [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
GLES11Canvas.java | 659 Math.round(((color >> 16) & 0xFF) * prealpha), 660 Math.round(((color >> 8) & 0xFF) * prealpha), 661 Math.round((color & 0xFF) * prealpha), 662 Math.round(255 * prealpha)); [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
Key.java | 247 mX = Math.round(keyXPos + horizontalGap / 2); 249 mWidth = Math.round(keyWidth - horizontalGap); 250 mHitBox.set(Math.round(keyXPos), keyYPos, Math.round(keyXPos + keyWidth) + 1, 259 final int visualInsetsLeft = Math.round(keyAttr.getFraction( 261 final int visualInsetsRight = Math.round(keyAttr.getFraction( [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
CoreMathVerifier.java | 105 static native float round(float x); method in class:CoreMathVerifier [all...] |
/external/chromium_org/v8/src/arm64/ |
simulator-arm64.cc | 2134 FPRounding round = fpcr().RMode(); local 2219 FPRounding round = fpcr().RMode(); local [all...] |
/external/llvm/include/llvm/Target/ |
TargetLibraryInfo.h | 508 /// double round(double x); 509 round, enumerator in enum:llvm::LibFunc::Func 741 case LibFunc::round: case LibFunc::roundf: case LibFunc::roundl:
|
/cts/tests/tests/widget/src/android/widget/cts/ |
TextViewTest.java | 765 assertEquals(FastMath.round(originalLineHeight * mult + add), mTextView.getLineHeight()); 769 assertEquals(FastMath.round(originalLineHeight * mult + add), mTextView.getLineHeight()); 775 assertEquals(FastMath.round(originalLineHeight * mult + add), mTextView.getLineHeight()); 779 assertEquals(FastMath.round(originalLineHeight * mult + add), mTextView.getLineHeight()); 783 assertEquals(FastMath.round(originalLineHeight * mult + add), mTextView.getLineHeight()); 790 assertEquals(FastMath.round(expected), mTextView.getLineHeight()); 795 assertEquals(FastMath.round(expected), mTextView.getLineHeight()); [all...] |
/external/deqp/modules/glshared/ |
glsBuiltinPrecisionTests.cpp | 270 typename Traits<T>::IVal round (const FloatFormat& fmt, const T& value) function in namespace:deqp::gls::BuiltinPrecisionTests 459 ret[ndx] = round(fmt, value[ndx]); [all...] |
/external/valgrind/main/VEX/priv/ |
guest_arm_toIR.c | 3846 IRTemp shval, old_shval, imm_val, round; local 3983 IRTemp tmp, shval, mask, old_shval, imm_val, round; local 12335 Bool round = False; local [all...] |
guest_ppc_toIR.c | 75 round-to-nearest. This means V will compute incorrect results 9869 IRExpr* round = get_IR_roundingmode_DFP(); local 9927 IRExpr* round = get_IR_roundingmode_DFP(); local 10052 IRExpr* round = get_IR_roundingmode_DFP(); local 10118 IRExpr* round = get_IR_roundingmode_DFP(); local [all...] |
/frameworks/base/core/java/android/view/ |
View.java | [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
mandreel.js | 3688 function round(sp) function [all...] |