HomeSort by relevance Sort by last modified time
    Searched full:dividend (Results 151 - 175 of 225) sorted by null

1 2 3 4 5 67 8 9

  /external/icu/icu4c/source/i18n/
gregoimp.h 72 * such that dividend = quotient*divisor + remainder and
80 static double floorDivide(double dividend, double divisor,
  /external/pdfium/third_party/bigint/
BigInteger.cc 317 // Decrease the magnitude of the dividend by one.
320 * We tinker with the dividend before and with the
BigUnsigned.hh 161 * `divideWithRemainder' is special: it both takes the dividend from and
  /external/llvm/lib/Target/X86/
X86ScheduleSLM.td 91 // This is quite rough, latency depends on the dividend.
X86SchedSandyBridge.td 105 // This is quite rough, latency depends on the dividend.
  /art/compiler/dex/
local_value_numbering_test.cc 89 #define DEF_DIV_REM(opcode, result, dividend, divisor) \
90 { opcode, 0u, 0u, 2, { dividend, divisor }, 1, { result } }
91 #define DEF_DIV_REM_WIDE(opcode, result, dividend, divisor) \
92 { opcode, 0u, 0u, 4, { dividend, dividend + 1, divisor, divisor + 1 }, 2, { result, result + 1 } }
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 336 /* Compute `dividend / divisor' and return both its quotient and */
339 #define FT_DIV_MOD( type, dividend, divisor, quotient, remainder ) \
341 (quotient) = (type)( (dividend) / (divisor) ); \
342 (remainder) = (type)( (dividend) % (divisor) ); \
357 #define FT_DIV_MOD( type, dividend, divisor, quotient, remainder ) \
359 (quotient) = (type)( (dividend) / (divisor) ); \
360 (remainder) = (type)( (dividend) - (quotient) * (divisor) ); \
    [all...]
  /external/pdfium/third_party/freetype/src/smooth/
ftgrays.c 316 /* Compute `dividend / divisor' and return both its quotient and */
319 #define FT_DIV_MOD( type, dividend, divisor, quotient, remainder ) \
321 (quotient) = (type)( (dividend) / (divisor) ); \
322 (remainder) = (type)( (dividend) % (divisor) ); \
337 #define FT_DIV_MOD( type, dividend, divisor, quotient, remainder ) \
339 (quotient) = (type)( (dividend) / (divisor) ); \
340 (remainder) = (type)( (dividend) - (quotient) * (divisor) ); \
    [all...]
  /external/llvm/lib/Support/
APInt.cpp     [all...]
  /external/wpa_supplicant_8/src/ap/
drv_callbacks.c 960 u64 divisor, dividend; local
978 dividend = survey->channel_time_busy -
982 iface->channel_utilization = dividend * 255 / divisor;
    [all...]
  /external/llvm/test/CodeGen/SystemZ/
int-div-01.ll 47 ; Check that the sign extension of the dividend is elided when the argument
int-div-03.ll 48 ; Test register division when the dividend is zero rather than sign extended.
  /external/v8/src/mips/
lithium-codegen-mips.h 348 Register dividend,
  /external/v8/src/mips64/
lithium-codegen-mips64.h 349 Register dividend,
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_target_nvc0.cpp 54 // INPUT: $r0: dividend, $r1: divisor
108 // INPUT: $r0: dividend, $r1: divisor
  /external/valgrind/exp-bbv/tests/ppc32-linux/
ll.S 472 mullw 22,21,20 # find remainder. 1st q*dividend
478 mr 19,21 # move Quotient as new dividend
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
MonthView.java 403 int dividend = (offset + mNumCells) / mNumDays; local
405 return (dividend + (remainder > 0 ? 1 : 0));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/
gmp.info-1     [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc     [all...]
  /external/v8/src/x87/
macro-assembler-x87.cc     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
FastMath.java     [all...]
  /external/v8/test/cctest/
test-assembler-arm.cc 1449 uint32_t dividend; member in struct:__anon19221
    [all...]
  /external/aac/libFDK/include/
fixpoint_math.h 242 * \param num dividend
  /external/v8/test/mjsunit/
math-floor-of-div.js 291 // Test for flooring division with negative dividend.
  /libcore/luni/src/main/java/java/math/
Conversion.java 404 * Make the dividend positive shifting it right by 1 bit then get

Completed in 3380 milliseconds

1 2 3 4 5 67 8 9