HomeSort by relevance Sort by last modified time
    Searched full:remainder (Results 1 - 25 of 553) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libm/src/
w_drem.c 2 * drem() wrapper for remainder().
14 return remainder(x, y);
  /external/kernel-headers/original/linux/
calc64.h 12 * result is returned and the remainder stored in the variable
13 * referenced by remainder (data type long *). In contrast to the
17 #define div_long_long_rem(dividend, divisor, remainder) \
18 do_div_llr((dividend), divisor, remainder)
21 const long divisor, long *remainder)
25 *(remainder) = do_div(result, divisor);
36 const long divisor, long *remainder)
41 res = -div_long_long_rem(-dividend, divisor, remainder);
42 *remainder = -(*remainder);
    [all...]
  /dalvik/vm/mterp/armv5te/
OP_REM_DOUBLE.S 2 /* EABI doesn't define a double remainder function, but libm does */
OP_REM_DOUBLE_2ADDR.S 2 /* EABI doesn't define a double remainder function, but libm does */
OP_REM_FLOAT.S 2 /* EABI doesn't define a float remainder function, but libm does */
OP_REM_FLOAT_2ADDR.S 2 /* EABI doesn't define a float remainder function, but libm does */
OP_REM_INT.S 2 /* idivmod returns quotient in r0 and remainder in r1 */
OP_REM_INT_2ADDR.S 2 /* idivmod returns quotient in r0 and remainder in r1 */
OP_REM_INT_LIT16.S 2 /* idivmod returns quotient in r0 and remainder in r1 */
OP_REM_INT_LIT8.S 2 /* idivmod returns quotient in r0 and remainder in r1 */
OP_REM_LONG.S 2 /* ldivmod returns quotient in r0/r1 and remainder in r2/r3 */
OP_REM_LONG_2ADDR.S 2 /* ldivmod returns quotient in r0/r1 and remainder in r2/r3 */
  /dalvik/vm/mterp/armv6t2/
OP_REM_DOUBLE_2ADDR.S 2 /* EABI doesn't define a double remainder function, but libm does */
OP_REM_FLOAT_2ADDR.S 2 /* EABI doesn't define a float remainder function, but libm does */
OP_REM_INT_2ADDR.S 2 /* idivmod returns quotient in r0 and remainder in r1 */
OP_REM_INT_LIT16.S 2 /* idivmod returns quotient in r0 and remainder in r1 */
OP_REM_LONG_2ADDR.S 2 /* ldivmod returns quotient in r0/r1 and remainder in r2/r3 */
  /bionic/libc/kernel/common/linux/
calc64.h 19 #define div_long_long_rem(dividend, divisor, remainder) do_div_llr((dividend), divisor, remainder)
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
calc64.h 19 #define div_long_long_rem(dividend, divisor, remainder) do_div_llr((dividend), divisor, remainder)
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
calc64.h 19 #define div_long_long_rem(dividend, divisor, remainder) do_div_llr((dividend), divisor, remainder)
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
calc64.h 19 #define div_long_long_rem(dividend, divisor, remainder) do_div_llr((dividend), divisor, remainder)
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
calc64.h 19 #define div_long_long_rem(dividend, divisor, remainder) do_div_llr((dividend), divisor, remainder)
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
calc64.h 19 #define div_long_long_rem(dividend, divisor, remainder) do_div_llr((dividend), divisor, remainder)
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
calc64.h 19 #define div_long_long_rem(dividend, divisor, remainder) do_div_llr((dividend), divisor, remainder)
  /bionic/libm/man/
remainder.3 33 .\" $FreeBSD: src/lib/msun/man/remainder.3,v 1.4 2005/11/24 09:25:10 joel Exp $
36 .Dt REMAINDER 3
39 .Nm remainder ,
49 .Fn remainder "double x" "double y"
57 .Fn remainder ,
62 return the remainder
86 the remainder is computed exactly and
94 But attempting to take the remainder when
122 .Fn remainder ,
129 The remainder is as defined i
    [all...]

Completed in 1436 milliseconds

1 2 3 4 5 6 7 8 91011>>