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

1234

/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/guava/guava-tests/benchmark/com/google/common/primitives/
H A DUnsignedLongsBenchmark.java61 @Benchmark long remainder(int reps) { method in class:UnsignedLongsBenchmark
65 tmp += UnsignedLongs.remainder(longs[j], divisors[j]);
124 // Using remainder here does not give us a uniform distribution but it should
131 return UnsignedLongs.remainder(r, dividend + 1);
/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
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
H A DUnknownLongValue.java93 public LongValue remainder(LongValue other) method in class:UnknownLongValue
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInts.java192 public static int remainder(int dividend, int divisor) { method in class:UnsignedInts
H A DUnsignedLongs.java216 public static long remainder(long dividend, long divisor) { method in class:UnsignedLongs
391 maxValueMods[i] = (int) remainder(MAX_VALUE, i);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DGrego.java108 long[] remainder = new long[1];
109 floorDivide(day + 5 /* Calendar.THURSDAY */, 7, remainder);
110 int dayOfWeek = (int)remainder[0];
174 long[] remainder = new long[1];
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) { argument
191 remainder[0] = numerator % denominator;
195 remainder[0] = numerator - (quotient * denominator);
/external/skia/src/core/
H A DSkRTree.cpp68 int remainder = branches % kMaxChildren; local
69 if (remainder > 0) {
71 if (remainder >= kMinChildren) {
72 remainder = 0;
74 remainder = kMinChildren - remainder;
84 if (remainder != 0) {
85 if (remainder <= kMaxChildren - kMinChildren) {
86 incrementBy -= remainder;
87 remainder
112 int remainder = branches->count() % kMaxChildren; local
[all...]
/external/gptfdisk/
H A Dmbrpart.cc260 uint64_t remainder; local
280 remainder = lba - (cylinder * numHeads * numSecspTrack);
281 head = remainder / numSecspTrack;
282 remainder -= head * numSecspTrack;
283 sector = remainder;
/external/icu/icu4c/source/i18n/
H A Dgregoimp.cpp33 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
32 floorDivide(double numerator, int32_t denominator, int32_t& remainder) argument
40 floorDivide(double dividend, double divisor, double& remainder) argument
[all...]

Completed in 341 milliseconds

1234