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

1 2 3 4 5

  /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...]
  /bionic/libc/kernel/common/linux/
calc64.h 19 #define div_long_long_rem(dividend, divisor, remainder) do_div_llr((dividend), divisor, remainder)
  /development/ndk/platforms/android-3/include/linux/
calc64.h 19 #define div_long_long_rem(dividend, divisor, remainder) do_div_llr((dividend), divisor, remainder)
  /prebuilt/ndk/android-ndk-r4/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)
  /prebuilt/ndk/android-ndk-r4/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)
  /prebuilt/ndk/android-ndk-r4/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)
  /prebuilt/ndk/android-ndk-r4/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)
  /prebuilt/ndk/android-ndk-r4/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)
  /prebuilt/ndk/android-ndk-r4/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/src/
w_drem.c 2 * drem() wrapper for remainder().
14 return remainder(x, y);
  /bionic/libm/i387/
e_remainder.S 40 ENTRY(remainder) function
  /libcore/luni/src/main/java/java/util/
Grego.java 108 long[] remainder = new long[1]; local
109 floorDivide(day + Calendar.THURSDAY, 7, remainder);
110 int dayOfWeek = (int)remainder[0];
174 long[] remainder = new long[1]; local
175 long day = floorDivide(time, 24*60*60*1000 /* milliseconds per day */, remainder);
177 fields[5] = (int)remainder[0];
189 private static long floorDivide(long numerator, long denominator, long[] remainder) {
191 remainder[0] = numerator % denominator;
195 remainder[0] = numerator - (quotient * denominator);
  /external/chromium/net/third_party/nss/ssl/
ssl3gthr.c 78 gs->remainder = 5;
88 SSL_GETPID(), ss->fd, gs->state, gs->remainder));
90 nb = ssl_DefRecv(ss, bp, gs->remainder, flags);
106 PORT_Assert( nb <= gs->remainder );
107 if (nb > gs->remainder) {
115 gs->remainder -= nb;
120 if (gs->remainder > 0) {
132 gs->remainder = (gs->hdr[3] << 8) | gs->hdr[4];
137 if(gs->remainder > (MAX_FRAGMENT_LENGTH + 2048 + 5)) {
148 if (gs->remainder > gs->inbuf.space)
    [all...]
sslgathr.c 77 ** GS_MAC - The machine is in this state while waiting for the remainder
82 ** GS_DATA - The machine is in this state while waiting for the remainder
98 gs->remainder = 3;
115 SSL_GETPID(), ss->fd, gs->state, gs->remainder));
117 nb = ssl_DefRecv(ss, bp, gs->remainder, flags);
135 gs->remainder -= nb;
137 if (gs->remainder > 0) {
221 gs->remainder = gs->count - 1;
224 gs->remainder = gs->count;
416 gs->remainder = count
    [all...]
  /external/bluetooth/glib/gio/
gdummyfile.c 265 const char *remainder; local
273 remainder = match_prefix (descendant_dummy->decoded_uri->path,
275 if (remainder != NULL && *remainder == '/')
277 while (*remainder == '/')
278 remainder++;
279 if (*remainder != 0)
286 remainder = match_prefix (descendant_dummy->text_uri,
288 if (remainder != NULL && *remainder == '/'
306 const char *remainder; local
    [all...]
  /external/chromium/third_party/icu/source/i18n/
gregoimp.cpp 33 int32_t& remainder) {
36 remainder = (int32_t) (numerator - (quotient * denominator));
41 double& remainder) {
45 remainder = dividend - (quotient * divisor);
49 if (remainder < 0 || remainder >= divisor) {
54 quotient += (remainder < 0) ? -1 : +1;
60 // can't give a correct answer, so we set the remainder to
65 remainder = 0;
67 remainder = dividend - (quotient * divisor)
    [all...]
  /external/icu4c/i18n/
gregoimp.cpp 33 int32_t& remainder) {
36 remainder = (int32_t) (numerator - (quotient * denominator));
41 double& remainder) {
45 remainder = dividend - (quotient * divisor);
49 if (remainder < 0 || remainder >= divisor) {
54 quotient += (remainder < 0) ? -1 : +1;
60 // can't give a correct answer, so we set the remainder to
65 remainder = 0;
67 remainder = dividend - (quotient * divisor)
    [all...]
  /external/srec/portable/src/
pcrc.c 129 register unsigned int remainder = crc; local
136 byte = (unsigned char)((remainder >> (WIDTH - 8)) ^ *p++);
137 remainder = crcTable[byte] ^(remainder << 8);
139 byte = (unsigned char)(((remainder >> (WIDTH - 8)) ^(*p >> 8)) & 0xFF);
140 remainder = crcTable[byte] ^(remainder << 8);
141 byte = (unsigned char)(((remainder >> (WIDTH - 8)) ^(*p++ & 0xFF)) & 0xFF);
142 remainder = crcTable[byte] ^(remainder << 8)
    [all...]
  /dalvik/vm/mterp/x86-atom/
OP_REM_FLOAT.S 19 * Code: Computes the remainder of a division. Performs no substitutions.
23 * Description: Calls fmod to compute the remainder of the result of dividing a
42 fstps (rFP, rINST, 4) # vAA<- remainder; return of fmod
  /external/proguard/src/proguard/evaluation/value/
DoubleValue.java 104 * Returns the remainder of this DoubleValue divided by the given DoubleValue.
106 public abstract DoubleValue remainder(DoubleValue other); method in class:DoubleValue
109 * Returns the remainder of the given DoubleValue divided by this DoubleValue.
194 * Returns the remainder of this DoubleValue divided by the given
197 public DoubleValue remainder(SpecificDoubleValue other) method in class:DoubleValue
199 return remainder((DoubleValue)other);
203 * Returns the remainder of the given SpecificDoubleValue and this
297 * Returns the remainder of this DoubleValue divided by the given
300 public DoubleValue remainder(ParticularDoubleValue other) method in class:DoubleValue
302 return remainder((SpecificDoubleValue)other)
    [all...]
FloatValue.java 104 * Returns the remainder of this FloatValue divided by the given FloatValue.
106 public abstract FloatValue remainder(FloatValue other); method in class:FloatValue
109 * Returns the remainder of the given FloatValue divided by this FloatValue.
194 * Returns the remainder of this FloatValue divided by the given
197 public FloatValue remainder(SpecificFloatValue other) method in class:FloatValue
199 return remainder((FloatValue)other);
203 * Returns the remainder of the given SpecificFloatValue and this
297 * Returns the remainder of this FloatValue divided by the given
300 public FloatValue remainder(ParticularFloatValue other) method in class:FloatValue
302 return remainder((SpecificFloatValue)other)
    [all...]
ParticularDoubleValue.java 110 public DoubleValue remainder(DoubleValue other) method in class:ParticularDoubleValue
117 return other.remainder(this);
164 public DoubleValue remainder(ParticularDoubleValue other) method in class:ParticularDoubleValue
ParticularFloatValue.java 110 public FloatValue remainder(FloatValue other) method in class:ParticularFloatValue
117 return other.remainder(this);
164 public FloatValue remainder(ParticularFloatValue other) method in class:ParticularFloatValue
SpecificDoubleValue.java 90 public DoubleValue remainder(DoubleValue other) method in class:SpecificDoubleValue
97 return other.remainder(this);
144 public DoubleValue remainder(SpecificDoubleValue other) method in class:SpecificDoubleValue
146 return new CompositeDoubleValue(this, CompositeDoubleValue.REMAINDER, other);
151 return new CompositeDoubleValue(other, CompositeDoubleValue.REMAINDER, this);
SpecificFloatValue.java 90 public FloatValue remainder(FloatValue other) method in class:SpecificFloatValue
97 return other.remainder(this);
144 public FloatValue remainder(SpecificFloatValue other) method in class:SpecificFloatValue
146 return new CompositeFloatValue(this, CompositeFloatValue.REMAINDER, other);
151 return new CompositeFloatValue(other, CompositeFloatValue.REMAINDER, this);

Completed in 253 milliseconds

1 2 3 4 5