HomeSort by relevance Sort by last modified time
    Searched refs:remainder (Results 101 - 125 of 1199) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
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
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);
  /frameworks/av/media/libstagefright/foundation/tests/
Base64_test.cpp 45 int remainder = in[i].size() % 4; local
47 if (remainder > 0) {
48 for (int i = 0; i < 4 - remainder; ++i) {
  /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());
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
DivU64x32Remainder.asm 32 ; OUT UINT32 *Remainder
39 div ecx ; eax <- quotient[32..63], edx <- remainder
43 mov ecx, [esp + 20] ; ecx <- Remainder
44 jecxz @F ; abandon remainder if Remainder == NULL
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
DivU64x32Remainder.asm 32 ; OUT UINT32 *Remainder
39 div ecx ; eax <- quotient[32..63], edx <- remainder
43 mov ecx, [esp + 20] ; ecx <- Remainder
44 jecxz @F ; abandon remainder if Remainder == NULL
DivU64x32Remainder.S 30 # OUT UINT32 *Remainder
37 divl %ecx # eax <- quotient[32..63], edx <- remainder
41 movl 20(%esp), %ecx # ecx <- Remainder
42 jecxz L1 # abandon remainder if Remainder == NULL
DivU64x64Remainder.S 19 # both the quotient and the remainder
31 # OUT UINT64 *Remainder OPTIONAL
40 andl $0, 4(%ecx) # zero high dword of remainder
65 mov 32(%esp), %ecx # ecx <- addr for Remainder
74 jecxz Return # return if Remainder == NULL
80 sbbl %edx, %edi # edi:esi <- remainder
  /external/skia/src/utils/
SkBase64.cpp 121 size_t remainder = length % 3;
122 const unsigned char* end = &src[length - remainder];
136 if (remainder > 0) {
140 if (remainder == 2)
  /bionic/libc/arch-mips/bionic/
__bionic_clone.S 46 # remainder of arguments are correct for clone system call
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
LapsAdapter.java 248 int remainder = (int) (time % DateUtils.HOUR_IN_MILLIS); local
250 minutes = (int) (remainder / DateUtils.MINUTE_IN_MILLIS);
251 remainder = (int) (remainder % DateUtils.MINUTE_IN_MILLIS);
253 seconds = (int) (remainder / DateUtils.SECOND_IN_MILLIS);
254 remainder = (int) (remainder % DateUtils.SECOND_IN_MILLIS);
256 hundredths = remainder / 10;
  /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;
  /libcore/ojluni/src/main/java/java/security/
SecureRandom.java 720 String remainder = property; local
721 while (remainder != null) {
724 remainder)).matches()) {
738 remainder = m.group(5);
740 remainder = null;
  /device/asus/fugu/libaudio/
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;
  /external/compiler-rt/lib/builtins/arm/
udivmodsi4.S 25 @ unsigned int *remainder)
26 @ Calculate the quotient and remainder of the (unsigned) division. The return
27 @ value is the quotient, the remainder is placed in the variable.
  /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;
  /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;
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmUtils.java 73 final long remainder = delta % DateUtils.MINUTE_IN_MILLIS; local
74 delta += remainder == 0 ? 0 : (DateUtils.MINUTE_IN_MILLIS - remainder);
  /build/soong/cc/
sabi.go 56 func filterOutWithPrefix(list []string, filter []string) (remainder []string) {
60 remainder = append(remainder, l)

Completed in 2390 milliseconds

1 2 3 45 6 7 8 91011>>