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

123456

/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/content/child/webcrypto/openssl/
H A Daes_cbc_openssl.cc61 const unsigned remainder = output_max_len.ValueOrDie() % AES_BLOCK_SIZE; local
62 if (remainder != 0)
63 output_max_len += AES_BLOCK_SIZE - remainder;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DStrokeData.cpp96 int remainder = distance % dashLength; local
99 // Odd: shift right a full dash, minus half the remainder.
100 phase = dashLength - remainder / 2;
102 // Even: shift right half a dash, minus half the remainder.
103 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.cpp154 // remainder makes no sense.
161 const Decimal remainder = (value - m_step * (value / m_step).round()).abs(); local
165 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/jemalloc/test/unit/
H A Dutil.c118 char *remainder; local
121 result = malloc_strtoumax(test->input, &remainder, test->base);
126 assert_str_eq(remainder, test->expected_remainder,
127 "Unexpected remainder for \"%s\", base %d",
/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.java116 public DoubleValue remainder(DoubleValue other) method in class:ParticularDoubleValue
123 return other.remainder(this);
173 public DoubleValue remainder(ParticularDoubleValue other) method in class:ParticularDoubleValue
H A DParticularFloatValue.java116 public FloatValue remainder(FloatValue other) method in class:ParticularFloatValue
123 return other.remainder(this);
173 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
/external/chromium_org/ash/system/user/
H A Dtray_user.cc216 int remainder = height % 2; local
218 vertical_pad + remainder,
/external/chromium_org/chromeos/network/
H A Dnetwork_util.cc42 int remainder = 8; local
46 remainder = prefix_length;
51 int value = remainder == 0 ? 0 :
52 ((2L << (remainder - 1)) - 1) << (8 - remainder);
/external/chromium_org/third_party/libyuv/util/
H A Dpsnr.cc225 int remainder = count & (kBlockSize - 1) & ~15; local
226 if (remainder) {
227 sse += SumSquareError(src_a, src_b, remainder);
228 src_a += remainder;
229 src_b += remainder;
231 remainder = count & 15;
232 if (remainder) {
233 sse += SumSquareError_C(src_a, src_b, 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/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 890 milliseconds

123456