/external/proguard/src/proguard/evaluation/value/ |
UnknownDoubleValue.java | 90 public DoubleValue remainder(DoubleValue other) method in class:UnknownDoubleValue
|
UnknownFloatValue.java | 90 public FloatValue remainder(FloatValue other) method in class:UnknownFloatValue
|
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...] |
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
|
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);
|
UnknownLongValue.java | 93 public LongValue remainder(LongValue other) method in class:UnknownLongValue
|
/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)
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
dri2.h | 90 CARD64 remainder, CARD64 *count); 97 CARD64 remainder, CARD64 *ust, CARD64 *msc, CARD64 *sbc);
|
/external/grub/docs/ |
kernel.c.texi | 194 int remainder = ud % divisor; 196 *p++ = (remainder < 10) ? remainder + '0' : remainder + 'a' - 10;
|
/external/mesa3d/src/glx/ |
dri2.h | 90 CARD64 remainder, CARD64 *count); 97 CARD64 remainder, CARD64 *ust, CARD64 *msc, CARD64 *sbc);
|
/system/core/toolbox/cp/ |
utils.c | 221 size_t remainder; local 234 remainder = fsize; 238 chunk = (remainder > MMAP_MAX_WRITE) ? 239 MMAP_MAX_WRITE : remainder; 240 if (write(to_fd, &p[fsize - remainder], 246 remainder -= chunk; 250 } while (remainder > 0);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
StepRange.cpp | 155 // remainder makes no sense. 162 const Decimal remainder = (value - m_step * (value / m_step).round()).abs(); local 166 return computedAcceptableError < remainder && remainder < (m_step - computedAcceptableError);
|
/external/chromium_org/third_party/skia/src/core/ |
SkRTree.cpp | 330 int remainder = branches->count() % fMaxChildren; local 333 if (0 != remainder) { 335 // If the remainder isn't enough to fill a node, we'll need to add fewer nodes to 337 if (remainder >= fMinChildren) { 338 remainder = 0; 340 remainder = fMinChildren - remainder; 352 int end = currentBranch + numTiles * fMaxChildren - SkMin32(remainder, 363 if (remainder != 0) { 364 // if need be, omit some nodes to make up for remainder [all...] |
/external/icu4c/i18n/ |
persncal.cpp | 110 int32_t remainder; local 111 ClockMath::floorDivide(25 * year + 11, 33, remainder); 112 return (remainder < 8);
|
/external/skia/src/core/ |
SkRTree.cpp | 330 int remainder = branches->count() % fMaxChildren; local 333 if (0 != remainder) { 335 // If the remainder isn't enough to fill a node, we'll need to add fewer nodes to 337 if (remainder >= fMinChildren) { 338 remainder = 0; 340 remainder = fMinChildren - remainder; 352 int end = currentBranch + numTiles * fMaxChildren - SkMin32(remainder, 363 if (remainder != 0) { 364 // if need be, omit some nodes to make up for remainder [all...] |
/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/chrome/browser/chromeos/policy/ |
auto_enrollment_client.cc | 253 uint64 remainder = 0; local 256 remainder = remainder | (byte << (8 * i)); 258 remainder = remainder & ((GG_UINT64_C(1) << power) - 1); 266 request->set_remainder(remainder);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/ |
RSAKeyPairGenerator.java | 139 dP = d.remainder(pSub1); 140 dQ = d.remainder(qSub1);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/ |
DecimalTest.cpp | [all...] |
/bionic/libc/arch-x86/string/ |
swab.S | 35 L2: shrl $3,%ecx # copy remainder 8 words at a time
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_remainder.c | 78 __weak_reference(remainder, remainderl);
|
/external/chromium_org/third_party/libva/va/x11/ |
va_dri2.h | 72 CARD64 remainder, CARD64 *count);
|
/external/openfst/src/include/fst/ |
partition.h | 168 size_t remainder = class_size_[class_id] - split_size_[class_id]; local 169 if (remainder < split_size_[class_id]) { // add smaller 173 class_size_[new_class] = remainder; 179 class_size_[class_id] = remainder;
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
partition.h | 163 size_t remainder = class_size_[class_id] - split_size_[class_id]; local 164 if (remainder < (size_t)split_size_[class_id]) { // add smaller 168 class_size_[new_class] = remainder; 174 class_size_[class_id] = remainder;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/ |
argv_traverser.hpp | 50 void remainder( int& argc, char_type** argv );
|