HomeSort by relevance Sort by last modified time
    Searched refs:remainder (Results 76 - 100 of 594) sorted by null

1 2 34 5 6 7 8 91011>>

  /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/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;
  /external/proguard/src/proguard/evaluation/value/
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);
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
UnknownDoubleValue.java 90 public DoubleValue remainder(DoubleValue other) method in class:UnknownDoubleValue
UnknownFloatValue.java 90 public FloatValue remainder(FloatValue other) method in class:UnknownFloatValue
  /external/chromium_org/third_party/icu/source/i18n/
gregoimp.cpp 33 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 = dividend - (quotient * divisor)
    [all...]
  /external/icu/icu4c/source/i18n/
gregoimp.cpp 33 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 = dividend - (quotient * divisor)
    [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...]
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
hasher.py 51 remainder = length & 1
63 if remainder == 1:
  /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/mesa/src/src/glx/apple/
glx_empty.c 45 glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count)
102 int64_t target_msc, int64_t divisor, int64_t remainder)
108 (void) remainder;
116 int64_t remainder, int64_t * ust,
123 (void) remainder;
  /external/mesa3d/src/glx/apple/
glx_empty.c 45 glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count)
102 int64_t target_msc, int64_t divisor, int64_t remainder)
108 (void) remainder;
116 int64_t remainder, int64_t * ust,
123 (void) remainder;
  /external/chromium_org/net/third_party/nss/ssl/
sslgathr.c 44 ** GS_MAC - The machine is in this state while waiting for the remainder
49 ** GS_DATA - The machine is in this state while waiting for the remainder
65 gs->remainder = 3;
82 SSL_GETPID(), ss->fd, gs->state, gs->remainder));
84 nb = ssl_DefRecv(ss, bp, gs->remainder, flags);
102 gs->remainder -= nb;
104 if (gs->remainder > 0) {
188 gs->remainder = gs->count - 1;
191 gs->remainder = gs->count;
383 gs->remainder = count
    [all...]
  /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;
  /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());
  /bionic/libc/arch-mips/bionic/
__bionic_clone.S 46 # remainder of arguments are correct for clone system call
  /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/skia/src/utils/
SkBase64.cpp 122 size_t remainder = length % 3;
123 const unsigned char* end = &src[length - remainder];
137 if (remainder > 0) {
141 if (remainder == 2)
  /external/libyuv/files/source/
compare.cc 234 int remainder = static_cast<int>(count) & ~15; local
235 if (remainder) {
236 seed = HashDjb2_SSE(src, remainder, seed);
237 src += remainder;
238 count -= remainder;
240 remainder = static_cast<int>(count) & 15;
241 if (remainder) {
242 seed = HashDjb2_C(src, remainder, seed);
379 int remainder = count & (kBlockSize - 1) & ~15; local
380 if (remainder) {
    [all...]
  /external/skia/src/utils/
SkBase64.cpp 122 size_t remainder = length % 3;
123 const unsigned char* end = &src[length - remainder];
137 if (remainder > 0) {
141 if (remainder == 2)

Completed in 522 milliseconds

1 2 34 5 6 7 8 91011>>