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

1 2 3 4 5 6 7 8

  /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...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
EllipsizedMultilineTextView.java 83 final CharSequence remainder = TextUtils.ellipsize(text.subSequence(lastLineStart, local
91 if (!TextUtils.isEmpty(remainder)) {
92 builder.append(remainder.toString());
  /external/arduino/hardware/arduino/cores/arduino/
Print.cpp 205 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/
StepRange.cpp 156 // 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/platform/graphics/
StrokeData.cpp 91 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/chromium_org/chromeos/network/
network_util.cc 36 int remainder = 8; local
40 remainder = prefix_length;
45 int value = remainder == 0 ? 0 :
46 ((2L << (remainder - 1)) - 1) << (8 - remainder);
  /system/core/libutils/
LinearTransform.cpp 87 // Divide again. Keep the remainder around in order to round properly.
237 const T remainder = a % b; local
238 if (remainder == 0) {
243 // by swapping remainder and b, we are guaranteeing that a is
246 b = remainder;
  /external/bouncycastle/bcprov/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/chromium_org/third_party/WebKit/Source/core/rendering/
LayoutState.cpp 264 LayoutUnit remainder = roundToInt(pageLogicalTop - firstLineTopWithLeading) % roundToInt(gridLineHeight); local
265 LayoutUnit paginationDelta = gridLineHeight - remainder;
  /external/chromium_org/third_party/WebKit/Source/wtf/
StringHasher.h 95 bool remainder = length & 1; local
103 if (remainder)
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInteger.java 143 * 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));
UnsignedInts.java 188 public static int remainder(int dividend, int divisor) { method in class:UnsignedInts
  /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
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FEBlendNEON.h 43 uint16x8_t remainder = vaddq_u16(vsubq_u16(num, vmulq_u16(sixteenConst255, quotient)), sixteenConstOne); local
44 return vaddq_u16(quotient, vshrq_n_u16(remainder, 8));

Completed in 1561 milliseconds

1 2 3 4 5 6 7 8