Searched defs:remainder (Results 1 - 25 of 69) sorted by relevance

123

/external/kernel-headers/original/linux/
H A Dcalc64.h12 * 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);
20 do_div_llr(const long long dividend, const long divisor, long *remainder) argument
35 div_long_long_rem_signed(const long long dividend, const long divisor, long *remainder) argument
[all...]
/external/speex/libspeex/
H A Dresample_neon.h58 uint32_t remainder = len % 16; local
59 len = len - remainder;
65 " subs %[remainder], %[remainder], #4\n"
88 " cmp %[remainder], #0\n"
93 " subs %[remainder], %[remainder], #4\n"
103 [len] "+r" (len), [remainder] "+r" (remainder)
131 uint32_t remainder local
[all...]
/external/srec/portable/src/
H A Dpcrc.c129 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 <<
[all...]
/external/arduino/hardware/arduino/cores/arduino/
H A DPrint.cpp205 double remainder = number - (double)int_part; local
212 // Extract digits from the remainder one at a time
215 remainder *= 10.0;
216 int toPrint = int(remainder);
218 remainder -= toPrint;
/external/proguard/src/proguard/evaluation/value/
H A DDoubleValue.java104 * 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((SpecificDoubleValu
[all...]
H A DFloatValue.java104 * 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((SpecificFloatValu
[all...]
H A DParticularDoubleValue.java110 public DoubleValue remainder(DoubleValue other) method in class:ParticularDoubleValue
117 return other.remainder(this);
164 public DoubleValue remainder(ParticularDoubleValue other) method in class:ParticularDoubleValue
H A DParticularFloatValue.java110 public FloatValue remainder(FloatValue other) method in class:ParticularFloatValue
117 return other.remainder(this);
164 public FloatValue remainder(ParticularFloatValue other) method in class:ParticularFloatValue
H A DSpecificDoubleValue.java90 public DoubleValue remainder(DoubleValue other) method in class:SpecificDoubleValue
97 return other.remainder(this);
144 public DoubleValue remainder(SpecificDoubleValue other) method in class:SpecificDoubleValue
H A DSpecificFloatValue.java90 public FloatValue remainder(FloatValue other) method in class:SpecificFloatValue
97 return other.remainder(this);
144 public FloatValue remainder(SpecificFloatValue other) method in class:SpecificFloatValue
H A DUnknownDoubleValue.java90 public DoubleValue remainder(DoubleValue other) method in class:UnknownDoubleValue
H A DUnknownFloatValue.java90 public FloatValue remainder(FloatValue other) method in class:UnknownFloatValue
H A DIntegerValue.java121 * Returns the remainder of this IntegerValue divided by the given
124 public abstract IntegerValue remainder(IntegerValue other) method in class:IntegerValue
128 * Returns the remainder of the given IntegerValue divided by this
312 * Returns the remainder of this IntegerValue divided by the given
315 public IntegerValue remainder(UnknownIntegerValue other) method in class:IntegerValue
317 return remainder((IntegerValue)other);
321 * Returns the remainder of the given UnknownIntegerValue divided by this
556 * Returns the remainder of this IntegerValue divided by the given
559 public IntegerValue remainder(SpecificIntegerValue other) method in class:IntegerValue
561 return remainder((IntegerValu
803 public IntegerValue remainder(ParticularIntegerValue other) method in class:IntegerValue
[all...]
H A DLongValue.java128 * Returns the remainder of this LongValue divided by the given
131 public LongValue remainder(LongValue other) method in class:LongValue
138 * Returns the remainder of the given LongValue divided by this
144 return other.remainder(this);
284 * Returns the remainder of this LongValue divided by the given
287 public LongValue remainder(SpecificLongValue other) method in class:LongValue
293 * Returns the remainder of the given SpecificLongValue divided by this
440 * Returns the remainder of this LongValue divided by the given
443 public LongValue remainder(ParticularLongValue other) method in class:LongValue
445 return remainder((SpecificLongValu
[all...]
H A DParticularIntegerValue.java139 public IntegerValue remainder(IntegerValue other) method in class:ParticularIntegerValue
148 return other.remainder(this);
267 public IntegerValue remainder(ParticularIntegerValue other) method in class:ParticularIntegerValue
H A DParticularLongValue.java112 public LongValue remainder(LongValue other) method in class:ParticularLongValue
121 return other.remainder(this);
200 public LongValue remainder(ParticularLongValue other) method in class:ParticularLongValue
H A DSpecificIntegerValue.java107 public IntegerValue remainder(IntegerValue other) method in class:SpecificIntegerValue
116 return other.remainder(this);
239 public IntegerValue remainder(SpecificIntegerValue other) method in class:SpecificIntegerValue
H A DSpecificLongValue.java92 public LongValue remainder(LongValue other) method in class:SpecificLongValue
101 return other.remainder(this);
184 public LongValue remainder(SpecificLongValue other) method in class:SpecificLongValue
H A DUnknownIntegerValue.java109 public IntegerValue remainder(IntegerValue other) method in class:UnknownIntegerValue
/external/grub/docs/
H A Dkernel.c194 int remainder = ud % divisor; local
196 *p++ = (remainder < 10) ? remainder + '0' : remainder + 'a' - 10;
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInteger.java143 * Returns the remainder of dividing this by {@code val}.
145 public UnsignedInteger remainder(UnsignedInteger val) { method in class:UnsignedInteger
147 return asUnsigned(UnsignedInts.remainder(value, val.value));
H A DUnsignedInts.java188 public static int remainder(int dividend, int divisor) { method in class:UnsignedInts
H A DUnsignedLong.java140 * Returns the remainder of dividing this by {@code val}.
142 public UnsignedLong remainder(UnsignedLong val) { method in class:UnsignedLong
144 return asUnsigned(UnsignedLongs.remainder(value, val.value));
H A DUnsignedLongs.java212 public static long remainder(long dividend, long divisor) { method in class:UnsignedLongs
360 maxValueMods[i] = (int) remainder(MAX_VALUE, i);
/external/oprofile/libutil++/
H A Dop_spu_bfd.cpp121 int remainder, desc_start, name_pad_length, desc_pad_length; local
124 remainder = nsize % 4;
125 if (remainder != 0)
126 name_pad_length = 4 - remainder;
130 if ((remainder = (dsize % 4)) != 0)
131 desc_pad_length = 4 - remainder;

Completed in 314 milliseconds

123