HomeSort by relevance Sort by last modified time
    Searched defs:remainder (Results 26 - 50 of 738) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
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);
  /external/protobuf/src/google/protobuf/stubs/
int128.cc 111 // remainder will be left in dividend.
127 uint128 remainder = 0; local
128 DivModImpl(*this, divisor, &quotient, &remainder);
134 uint128 remainder = 0; local
135 DivModImpl(*this, divisor, &quotient, &remainder);
136 *this = remainder;
  /external/skia/src/core/
SkRTree.cpp 69 int remainder = branches % kMaxChildren; local
70 if (remainder > 0) {
72 if (remainder >= kMinChildren) {
73 remainder = 0;
75 remainder = kMinChildren - remainder;
85 if (remainder != 0) {
86 if (remainder <= kMaxChildren - kMinChildren) {
87 incrementBy -= remainder;
88 remainder = 0
113 int remainder = branches->count() % kMaxChildren; local
    [all...]
  /external/skqp/src/core/
SkRTree.cpp 69 int remainder = branches % kMaxChildren; local
70 if (remainder > 0) {
72 if (remainder >= kMinChildren) {
73 remainder = 0;
75 remainder = kMinChildren - remainder;
85 if (remainder != 0) {
86 if (remainder <= kMaxChildren - kMinChildren) {
87 incrementBy -= remainder;
88 remainder = 0
113 int remainder = branches->count() % kMaxChildren; local
    [all...]
  /external/webrtc/webrtc/base/
random_unittest.cc 22 // Computes the positive remainder of x/n.
26 T remainder = x % n; local
27 if (remainder < 0)
28 remainder += n;
29 return remainder;
34 // based on the remainder when dividing by bucket_count and check that each
  /external/webrtc/webrtc/call/
bitrate_allocator.cc 158 // Carry the remainder forward.
159 uint32_t remainder = observer_allowance - max_it->first; local
161 bitrate_per_observer += remainder / number_of_observers;
184 uint32_t remainder = bitrate; local
187 std::min(remainder, observer.second.min_bitrate);
189 remainder -= allocated_bitrate;
  /frameworks/av/drm/mediacas/plugins/clearkey/
JsonAssetLoader.cpp 75 int remainder = encodedText.length() % 4; local
77 if (remainder > 0) {
78 for (int i = 0; i < 4 - remainder; ++i) {
  /frameworks/av/drm/mediadrm/plugins/clearkey/default/
JsonWebKey.cpp 113 int remainder = encodedText.length() % 4; local
115 if (remainder > 0) {
116 for (int i = 0; i < 4 - remainder; ++i) {
  /frameworks/base/libs/common_time/
LinearTransform.cpp 99 // Divide again. Keep the remainder around in order to round properly.
251 const T remainder = a % b; local
252 if (remainder == 0) {
257 // by swapping remainder and b, we are guaranteeing that a is
260 b = remainder;
  /art/compiler/utils/
swap_space.cc 154 // Insert the remainder.
155 SpaceChunk remainder = { new_chunk.ptr + size, new_chunk.size - size }; local
156 InsertChunk(remainder);
  /external/boringssl/src/crypto/fipsmodule/rand/
rand.c 146 const size_t remainder = len - len_multiple8; local
148 if (remainder != 0) {
149 assert(remainder < 8);
155 OPENSSL_memcpy(buf + len_multiple8, rand_buf, remainder);
  /external/gptfdisk/
mbrpart.cc 262 uint64_t remainder; local
282 remainder = lba - (cylinder * numHeads * numSecspTrack);
283 head = remainder / numSecspTrack;
284 remainder -= head * numSecspTrack;
285 sector = remainder;
  /external/guava/guava/src/com/google/common/primitives/
UnsignedLongs.java 216 public static long remainder(long dividend, long divisor) { method in class:UnsignedLongs
391 maxValueMods[i] = (int) remainder(MAX_VALUE, i);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
PersianCalendar.java 314 int[] remainder = new int[1]; local
315 floorDivide(25 * year + 11, 33, remainder);
316 return remainder[0] < 8;
  /external/icu/icu4c/source/i18n/
persncal.cpp 112 int32_t remainder; local
113 ClockMath::floorDivide(25 * year + 11, 33, remainder);
114 return (remainder < 8);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
PersianCalendar.java 312 int[] remainder = new int[1]; local
313 floorDivide(25 * year + 11, 33, remainder);
314 return remainder[0] < 8;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
BinaryExpr.java 52 remainder, // % enum constant in enum:BinaryExpr.Operator
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
BinaryExpr.java 51 remainder, // % enum constant in enum:BinaryExpr.Operator
  /external/mesa3d/src/compiler/glsl/
opt_rebalance_tree.cpp 75 ir_rvalue *remainder = root->operands[1]; local
77 while (remainder != NULL) {
78 ir_expression *remainder_temp = remainder->as_expression();
84 vine_tail = remainder;
85 remainder = remainder->as_expression() ?
86 ((ir_expression *)remainder)->operands[1] : NULL;
91 ((ir_expression *)remainder)->operands[0] = tempptr->operands[1];
92 tempptr->operands[1] = remainder;
93 remainder = tempptr
    [all...]

Completed in 790 milliseconds

12 3 4 5 6 7 8 91011>>