HomeSort by relevance Sort by last modified time
    Searched refs:roundingMode (Results 1 - 25 of 36) sorted by null

1 2

  /libcore/luni/src/main/java/java/math/
MathContext.java 35 * {@link RoundingMode#HALF_EVEN} rounding.
37 public static final MathContext DECIMAL128 = new MathContext(34, RoundingMode.HALF_EVEN);
41 * precision format: 7 digit precision and {@link RoundingMode#HALF_EVEN}
44 public static final MathContext DECIMAL32 = new MathContext(7, RoundingMode.HALF_EVEN);
48 * precision format: 16 digit precision and {@link RoundingMode#HALF_EVEN}
51 public static final MathContext DECIMAL64 = new MathContext(16, RoundingMode.HALF_EVEN);
55 * {@link RoundingMode#HALF_UP} rounding.
57 public static final MathContext UNLIMITED = new MathContext(0, RoundingMode.HALF_UP);
66 * A {@code RoundingMode} object which specifies the algorithm to be used
69 private final RoundingMode roundingMode
    [all...]
BigDecimal.java 41 * @see RoundingMode#UP
48 * @see RoundingMode#DOWN
57 * @see RoundingMode#CEILING
66 * @see RoundingMode#FLOOR
74 * @see RoundingMode#HALF_UP
82 * @see RoundingMode#HALF_DOWN
90 * @see RoundingMode#HALF_EVEN
99 * @see RoundingMode#UNNECESSARY
369 * if {@code mc.precision > 0} and {@code mc.roundingMode ==
407 * if {@code mc.precision > 0} and {@code mc.roundingMode =
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 155 enum roundingMode {
294 opStatus add(const APFloat &, roundingMode);
295 opStatus subtract(const APFloat &, roundingMode);
296 opStatus multiply(const APFloat &, roundingMode);
297 opStatus divide(const APFloat &, roundingMode);
301 opStatus mod(const APFloat &, roundingMode);
302 opStatus fusedMultiplyAdd(const APFloat &, const APFloat &, roundingMode);
303 opStatus roundToIntegral(roundingMode);
321 opStatus convert(const fltSemantics &, roundingMode, bool *);
322 opStatus convertToInteger(integerPart *, unsigned int, bool, roundingMode,
    [all...]
  /libcore/luni/src/main/java/java/text/
DecimalFormat.java 26 import java.math.RoundingMode;
512 private transient RoundingMode roundingMode = RoundingMode.HALF_EVEN;
    [all...]
NumberFormat.java 26 import java.math.RoundingMode;
831 * Returns the {@code RoundingMode} used by this {@code NumberFormat}. The default
836 public RoundingMode getRoundingMode() {
841 * Sets the {@code RoundingMode} used by this {@code NumberFormat}. The default
846 public void setRoundingMode(RoundingMode roundingMode) {
  /external/qemu/fpu/
softfloat.c 117 int8 roundingMode;
122 roundingMode = STATUS(float_rounding_mode);
123 roundNearestEven = ( roundingMode == float_round_nearest_even );
126 if ( roundingMode == float_round_to_zero ) {
132 if ( roundingMode == float_round_up ) roundIncrement = 0;
135 if ( roundingMode == float_round_down ) roundIncrement = 0;
167 int8 roundingMode;
171 roundingMode = STATUS(float_rounding_mode);
172 roundNearestEven = ( roundingMode == float_round_nearest_even );
175 if ( roundingMode == float_round_to_zero )
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeDecimalFormat.java 21 import java.math.RoundingMode;
559 public void setRoundingMode(RoundingMode roundingMode, double roundingIncrement) {
561 switch (roundingMode) {
639 private static native void setRoundingMode(long addr, int roundingMode, double roundingIncrement);
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnmdptst.c     [all...]
  /external/icu/icu4c/source/test/cintltst/
cnmdptst.c     [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
decimfmt.h     [all...]
  /external/icu/icu4c/source/i18n/unicode/
decimfmt.h     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 254 enum APFloat::roundingMode RndMode = APFloat::rmNearestTiesToEven;
275 enum APFloat::roundingMode RndMode = APFloat::rmNearestTiesToEven;
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
  /external/icu/icu4c/source/i18n/
decimfmt.cpp     [all...]
  /external/chromium_org/third_party/icu/source/i18n/
decimfmt.cpp     [all...]
  /external/llvm/unittests/ADT/
APFloatTest.cpp 457 APFloat::roundingMode rdmd = APFloat::rmNearestTiesToEven;
480 APFloat::roundingMode rdmd = APFloat::rmNearestTiesToEven;
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 1060 milliseconds

1 2