HomeSort by relevance Sort by last modified time
    Searched defs:ROUND_UP (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /hardware/qcom/display/msm8996/sdm/include/utils/
constants.h 43 #define ROUND_UP(number, step) ((((number) + ((step) - 1)) / (step)) * (step))
  /external/libffi/src/pa/
ffi.c 37 #define ROUND_UP(v, a) (((size_t)(v) + (a) - 1) & ~((a) - 1))
313 cif->bytes = 64 + ROUND_UP((z - 6) * sizeof(UINT32), MIN_STACK_SIZE);
  /external/python/cpython2/Modules/_ctypes/libffi/src/pa/
ffi.c 37 #define ROUND_UP(v, a) (((size_t)(v) + (a) - 1) & ~((a) - 1))
313 cif->bytes = 64 + ROUND_UP((z - 6) * sizeof(UINT32), MIN_STACK_SIZE);
  /external/python/cpython3/Modules/_ctypes/libffi/src/pa/
ffi.c 37 #define ROUND_UP(v, a) (((size_t)(v) + (a) - 1) & ~((a) - 1))
313 cif->bytes = 64 + ROUND_UP((z - 6) * sizeof(UINT32), MIN_STACK_SIZE);
  /frameworks/base/libs/androidfw/
BackupData.cpp 44 const static int ROUND_UP[4] = { 0, 3, 2, 1 };
49 return ROUND_UP[n % 4];
BackupHelpers.cpp 77 const static int ROUND_UP[4] = { 0, 3, 2, 1 };
80 round_up(int n) function in namespace:android
82 return n + ROUND_UP[n % 4];
115 int nameBufSize = round_up(file.nameLen);
153 bytesWritten += sizeof(FileState) + round_up(name.length());
187 int paddingLen = ROUND_UP[nameLen % 4];
    [all...]
  /hardware/qcom/display/msm8909/sdm/include/utils/
constants.h 43 #define ROUND_UP(number, step) ((((number) + ((step) - 1)) / (step)) * (step))
  /hardware/qcom/display/msm8909w_3100/sdm/include/utils/
constants.h 43 #define ROUND_UP(number, step) ((((number) + ((step) - 1)) / (step)) * (step))
  /hardware/qcom/display/msm8998/sdm/include/utils/
constants.h 43 #define ROUND_UP(number, step) ((((number) + ((step) - 1)) / (step)) * (step))
  /external/icu/android_icu4j/src/main/java/android/icu/math/
MathContext.java 218 public static final int ROUND_UP=0;
284 * @see #ROUND_UP
302 private static final int ROUNDS[]=new int[]{ROUND_HALF_UP,ROUND_UNNECESSARY,ROUND_CEILING,ROUND_DOWN,ROUND_FLOOR,ROUND_HALF_DOWN,ROUND_HALF_EVEN,ROUND_UP};
305 private static final java.lang.String ROUNDWORDS[]=new java.lang.String[]{"ROUND_HALF_UP","ROUND_UNNECESSARY","ROUND_CEILING","ROUND_DOWN","ROUND_FLOOR","ROUND_HALF_DOWN","ROUND_HALF_EVEN","ROUND_UP"}; // matching names of the ROUNDS values
498 * {@link #ROUND_UP}.
BigDecimal.java 312 * @see MathContext#ROUND_UP
314 public static final int ROUND_UP = android.icu.math.MathContext.ROUND_UP;
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
MathContext.java 229 public static final int ROUND_UP=0;
295 * @see #ROUND_UP
313 private static final int ROUNDS[]=new int[]{ROUND_HALF_UP,ROUND_UNNECESSARY,ROUND_CEILING,ROUND_DOWN,ROUND_FLOOR,ROUND_HALF_DOWN,ROUND_HALF_EVEN,ROUND_UP};
316 private static final java.lang.String ROUNDWORDS[]=new java.lang.String[]{"ROUND_HALF_UP","ROUND_UNNECESSARY","ROUND_CEILING","ROUND_DOWN","ROUND_FLOOR","ROUND_HALF_DOWN","ROUND_HALF_EVEN","ROUND_UP"}; // matching names of the ROUNDS values
517 * {@link #ROUND_UP}.
BigDecimal.java 320 * @see MathContext#ROUND_UP
323 public static final int ROUND_UP = com.ibm.icu.math.MathContext.ROUND_UP;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
MathContext.java 229 public static final int ROUND_UP=0;
295 * @see #ROUND_UP
313 private static final int ROUNDS[]=new int[]{ROUND_HALF_UP,ROUND_UNNECESSARY,ROUND_CEILING,ROUND_DOWN,ROUND_FLOOR,ROUND_HALF_DOWN,ROUND_HALF_EVEN,ROUND_UP};
316 private static final java.lang.String ROUNDWORDS[]=new java.lang.String[]{"ROUND_HALF_UP","ROUND_UNNECESSARY","ROUND_CEILING","ROUND_DOWN","ROUND_FLOOR","ROUND_HALF_DOWN","ROUND_HALF_EVEN","ROUND_UP"}; // matching names of the ROUNDS values
517 * {@link #ROUND_UP}.
BigDecimal.java 322 * @see MathContext#ROUND_UP
325 public static final int ROUND_UP = com.ibm.icu.math.MathContext.ROUND_UP;
    [all...]
  /external/libdrm/amdgpu/
amdgpu_internal.h 43 #define ROUND_UP(x, y) ((((x)-1) | __round_mask(x, y))+1)
  /system/core/storaged/include/
storaged.h 40 #define ROUND_UP(x, align) (((x) + ((align) - 1)) & ~((align) - 1))
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpField.java 35 ROUND_UP,
  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/
timesoftfloat.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
decimal.py 131 'ROUND_FLOOR', 'ROUND_UP', 'ROUND_HALF_DOWN', 'ROUND_05UP',
155 ROUND_UP = 'ROUND_UP'
346 ROUND_HALF_DOWN, ROUND_UP):
    [all...]
  /external/python/cpython2/Lib/
decimal.py 131 'ROUND_FLOOR', 'ROUND_UP', 'ROUND_HALF_DOWN', 'ROUND_05UP',
154 ROUND_UP = 'ROUND_UP'
345 ROUND_HALF_DOWN, ROUND_UP):
    [all...]
  /external/python/cpython3/Lib/
_pydecimal.py 135 'ROUND_FLOOR', 'ROUND_UP', 'ROUND_HALF_DOWN', 'ROUND_05UP',
169 ROUND_UP = 'ROUND_UP'
373 ROUND_HALF_DOWN, ROUND_UP):
429 ROUND_FLOOR, ROUND_UP, ROUND_HALF_DOWN, ROUND_05UP)
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 43 public static final int ROUND_UP = 0;
54 * this rounding mode behaves as {@link #ROUND_UP}, for negative values as
64 * {@link #ROUND_UP}.
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
decimal.py 131 'ROUND_FLOOR', 'ROUND_UP', 'ROUND_HALF_DOWN', 'ROUND_05UP',
155 ROUND_UP = 'ROUND_UP'
346 ROUND_HALF_DOWN, ROUND_UP):
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
decimal.py 131 'ROUND_FLOOR', 'ROUND_UP', 'ROUND_HALF_DOWN', 'ROUND_05UP',
155 ROUND_UP = 'ROUND_UP'
346 ROUND_HALF_DOWN, ROUND_UP):
    [all...]

Completed in 958 milliseconds

1 2 3 4