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

123456

/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/chromium_org/chromeos/network/
H A Dnetwork_util.cc36 int remainder = 8; local
40 remainder = prefix_length;
45 int value = remainder == 0 ? 0 :
46 ((2L << (remainder - 1)) - 1) << (8 - remainder);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DStrokeData.cpp91 int remainder = distance % dashLength; local
94 // Odd: shift right a full dash, minus half the remainder.
95 phase = dashLength - remainder / 2;
97 // Even: shift right half a dash, minus half the remainder.
98 phase = (dashLength - remainder) / 2;
/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/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DStepRange.cpp156 // remainder makes no sense.
163 const Decimal remainder = (value - m_step * (value / m_step).round()).abs(); local
167 return computedAcceptableError < remainder && remainder < (m_step - computedAcceptableError);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStringHasher.h95 bool remainder = length & 1; local
103 if (remainder)
/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...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DLayoutState.cpp264 LayoutUnit remainder = roundToInt(pageLogicalTop - firstLineTopWithLeading) % roundToInt(gridLineHeight); local
265 LayoutUnit paginationDelta = gridLineHeight - remainder;
/external/chromium_org/third_party/smhasher/src/
H A DSpooky.cpp40 size_t remainder = length%32; local
61 if (remainder >= 16)
67 remainder -= 16;
73 switch (remainder)
144 size_t remainder; local
173 remainder = (length - ((const uint8 *)end-(const uint8 *)message));
174 memcpy(buf, end, remainder);
175 memset(((uint8 *)buf)+remainder, 0, sc_blockSize-remainder);
176 ((uint8 *)buf)[sc_blockSize-1] = remainder;
202 uint8 remainder; local
312 uint8 remainder = m_remainder; local
[all...]
/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 700 milliseconds

123456