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

1 2 3 4

  /bionic/libm/i387/
e_remainder.S 40 ENTRY(remainder) function
  /external/speex/libspeex/
resample_neon.h 58 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 = len % 16 local
    [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...]
  /frameworks/base/libs/utils/
LinearTransform.cpp 87 // Divide again. Keep the remainder around in order to round properly.
234 const T remainder = a % b; local
235 if (remainder == 0) {
240 // by swapping remainder and b, we are guaranteeing that a is
243 b = remainder;
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
WNafMultiplier.java 49 BigInteger remainder = k.mod(pow2wBI); local
51 // if remainder > 2^(width - 1) - 1
52 if (remainder.testBit(width - 1))
54 wnaf[i] = (byte)(remainder.intValue() - pow2wB);
58 wnaf[i] = (byte)remainder.intValue();
  /external/oprofile/libutil++/
op_spu_bfd.cpp 121 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;
  /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);
SpecificLongValue.java 92 public LongValue remainder(LongValue other) method in class:SpecificLongValue
101 return other.remainder(this);
184 public LongValue remainder(SpecificLongValue other) method in class:SpecificLongValue
187 return new CompositeLongValue(this, CompositeLongValue.REMAINDER, other);
193 return new CompositeLongValue(other, CompositeLongValue.REMAINDER, this);
UnknownDoubleValue.java 90 public DoubleValue remainder(DoubleValue other) method in class:UnknownDoubleValue
UnknownFloatValue.java 90 public FloatValue remainder(FloatValue other) method in class:UnknownFloatValue
UnknownLongValue.java 93 public LongValue remainder(LongValue other) method in class:UnknownLongValue
IntegerValue.java 121 * 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((IntegerValue)other)
803 public IntegerValue remainder(ParticularIntegerValue other) method in class:IntegerValue
    [all...]
LongValue.java 128 * 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((SpecificLongValue)other)
    [all...]
ParticularIntegerValue.java 139 public IntegerValue remainder(IntegerValue other) method in class:ParticularIntegerValue
148 return other.remainder(this);
267 public IntegerValue remainder(ParticularIntegerValue other) method in class:ParticularIntegerValue
ParticularLongValue.java 112 public LongValue remainder(LongValue other) method in class:ParticularLongValue
121 return other.remainder(this);
200 public LongValue remainder(ParticularLongValue other) method in class:ParticularLongValue
SpecificIntegerValue.java 107 public IntegerValue remainder(IntegerValue other) method in class:SpecificIntegerValue
116 return other.remainder(this);
239 public IntegerValue remainder(SpecificIntegerValue other) method in class:SpecificIntegerValue
242 return new CompositeIntegerValue(this, CompositeIntegerValue.REMAINDER, other);
248 return new CompositeIntegerValue(other, CompositeIntegerValue.REMAINDER, this);
UnknownIntegerValue.java 109 public IntegerValue remainder(IntegerValue other) method in class:UnknownIntegerValue
  /external/grub/docs/
kernel.c 194 int remainder = ud % divisor; local
196 *p++ = (remainder < 10) ? remainder + '0' : remainder + 'a' - 10;
  /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/astl/src/
string.cpp 267 const size_t remainder = pos + n; local
270 if (remainder >= mLength || remainder < pos)
276 // remainder < mLength and allocation guarantees to be at least
278 size_t left = mLength - remainder + 1;
280 value_type *s = mData + remainder;

Completed in 715 milliseconds

1 2 3 4