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

1 2 3 4 5 6 7 8 91011

  /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/content/child/webcrypto/openssl/
aes_cbc_openssl.cc 61 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/core/html/forms/
StepRange.cpp 154 // 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/platform/graphics/
StrokeData.cpp 96 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;
  /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/chromium_org/chromeos/network/
network_util.cc 42 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/WebKit/Source/wtf/
StringHasher.h 95 bool remainder = length & 1; local
103 if (remainder)
  /external/chromium_org/third_party/libyuv/util/
psnr.cc 225 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/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/jemalloc/test/unit/
util.c 118 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/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 116 public DoubleValue remainder(DoubleValue other) method in class:ParticularDoubleValue
123 return other.remainder(this);
173 public DoubleValue remainder(ParticularDoubleValue other) method in class:ParticularDoubleValue
ParticularFloatValue.java 116 public FloatValue remainder(FloatValue other) method in class:ParticularFloatValue
123 return other.remainder(this);
173 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

Completed in 1071 milliseconds

1 2 3 4 5 6 7 8 91011