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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/sun/misc/
RegexpTarget.java 38 * @param remainder the string that matched the * in the pattern.
40 Object found(String remainder);
  /prebuilts/go/darwin-x86/src/math/
remainder_amd64.s 7 TEXT ·Remainder(SB),NOSPLIT,$0
8 JMP ·remainder(SB)
remainder_arm.s 7 TEXT ·Remainder(SB),NOSPLIT,$0
8 B ·remainder(SB)
  /prebuilts/go/linux-x86/src/math/
remainder_amd64.s 7 TEXT ·Remainder(SB),NOSPLIT,$0
8 JMP ·remainder(SB)
remainder_arm.s 7 TEXT ·Remainder(SB),NOSPLIT,$0
8 B ·remainder(SB)
  /packages/apps/DeskClock/src/com/android/deskclock/
TimerTextController.java 44 int remainder = (int) (remainingTime % HOUR_IN_MILLIS); local
46 int minutes = (int) (remainder / MINUTE_IN_MILLIS);
47 remainder = (int) (remainder % MINUTE_IN_MILLIS);
49 int seconds = (int) (remainder / SECOND_IN_MILLIS);
50 remainder = (int) (remainder % SECOND_IN_MILLIS);
53 if (!isNegative && remainder != 0) {
StopwatchTextController.java 51 int remainder = (int) (accumulatedTime % HOUR_IN_MILLIS); local
53 final int minutes = (int) (remainder / MINUTE_IN_MILLIS);
54 remainder = (int) (remainder % MINUTE_IN_MILLIS);
56 final int seconds = (int) (remainder / SECOND_IN_MILLIS);
57 remainder = (int) (remainder % SECOND_IN_MILLIS);
60 remainder / 10, 2));
  /bionic/libm/upstream-freebsd/lib/msun/src/
w_drem.c 2 * drem() wrapper for remainder().
14 return remainder(x, y);
  /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/webrtc/webrtc/system_wrappers/source/
sleep.cc 29 struct timespec remainder;
32 nanosleep(&short_wait, &remainder);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestRemainder.rs 26 return remainder(inNumerator, inDenominator);
31 return remainder(inNumerator, inDenominator);
36 return remainder(inNumerator, inDenominator);
41 return remainder(inNumerator, inDenominator);
46 return remainder(inNumerator, inDenominator);
51 return remainder(inNumerator, inDenominator);
56 return remainder(inNumerator, inDenominator);
61 return remainder(inNumerator, inDenominator);
  /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/autotest/client/cros/video/
screenshot_file_namer.py 54 hours, remainder = divmod(time_delta_value.total_seconds(), 3600)
56 minutes, seconds = divmod(remainder, 60)
  /external/icu/icu4c/source/i18n/
gregoimp.cpp 36 int32_t& remainder) {
39 remainder = (int32_t) (numerator - (quotient * denominator));
44 double& remainder) {
48 remainder = dividend - (quotient * divisor);
52 if (remainder < 0 || remainder >= divisor) {
57 quotient += (remainder < 0) ? -1 : +1;
63 // can't give a correct answer, so we set the remainder to
68 remainder = 0;
70 remainder = dividend - (quotient * divisor)
    [all...]
  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
clock_ns.h 50 int32_t remainder; local
53 remainder = ns % kNanosPerSecond;
54 if (remainder < 0) {
56 remainder += kNanosPerSecond;
58 t.tv_nsec = remainder;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Grego.java 112 long[] remainder = new long[1]; local
113 floorDivide(day + 5 /* Calendar.THURSDAY */, 7, remainder);
114 int dayOfWeek = (int)remainder[0];
178 long[] remainder = new long[1]; local
179 long day = floorDivide(time, 24*60*60*1000 /* milliseconds per day */, remainder);
181 fields[5] = (int)remainder[0];
193 private static long floorDivide(long numerator, long denominator, long[] remainder) {
195 remainder[0] = numerator % denominator;
199 remainder[0] = numerator - (quotient * denominator);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Grego.java 110 long[] remainder = new long[1]; local
111 floorDivide(day + 5 /* Calendar.THURSDAY */, 7, remainder);
112 int dayOfWeek = (int)remainder[0];
176 long[] remainder = new long[1]; local
177 long day = floorDivide(time, 24*60*60*1000 /* milliseconds per day */, remainder);
179 fields[5] = (int)remainder[0];
191 private static long floorDivide(long numerator, long denominator, long[] remainder) {
193 remainder[0] = numerator % denominator;
197 remainder[0] = numerator - (quotient * denominator);
  /external/libvpx/libvpx/third_party/libyuv/source/
compare.cc 34 int remainder; local
53 remainder = (int)(count) & ~15;
54 if (remainder) {
55 seed = HashDjb2_SSE(src, remainder, seed);
56 src += remainder;
57 count -= remainder;
59 remainder = (int)(count) & 15;
60 if (remainder) {
61 seed = HashDjb2_C(src, remainder, seed);
122 int remainder = count & (kBlockSize - 1) & ~31 local
    [all...]
  /external/libyuv/files/source/
compare.cc 34 int remainder; local
52 remainder = (int)count & ~15;
53 if (remainder) {
54 seed = HashDjb2_SSE(src, remainder, seed);
55 src += remainder;
56 count -= remainder;
58 remainder = (int)count & 15;
59 if (remainder) {
60 seed = HashDjb2_C(src, remainder, seed);
122 int remainder = count & (kBlockSize - 1) & ~31 local
    [all...]
  /external/libyuv/files/util/
psnr.cc 265 int remainder = count & (kBlockSize - 1) & ~15; local
266 if (remainder) {
267 sse += SumSquareError(src_a, src_b, remainder);
268 src_a += remainder;
269 src_b += remainder;
271 remainder = count & 15;
272 if (remainder) {
273 sse += SumSquareError_C(src_a, src_b, remainder);
  /system/bt/audio_a2dp_hw/test/
audio_a2dp_hw_test.cc 137 const size_t remainder = expected_buffer_size % divisor; local
138 if (remainder != 0) {
139 expected_buffer_size += divisor - remainder;
  /system/bt/audio_hearing_aid_hw/test/
audio_hearing_aid_hw_test.cc 137 const size_t remainder = expected_buffer_size % divisor; local
138 if (remainder != 0) {
139 expected_buffer_size += divisor - remainder;
  /external/pdfium/fxbarcode/common/reedsolomon/
BC_ReedSolomonGF256Poly.cpp 209 auto remainder = Clone();
210 if (!remainder)
219 while (remainder->GetDegree() >= other->GetDegree() && !remainder->IsZero()) {
220 int32_t degreeDifference = remainder->GetDegree() - other->GetDegree();
222 m_field->Multiply(remainder->GetCoefficients((remainder->GetDegree())),
233 remainder = remainder->AddOrSubtract(term.get());
234 if (!remainder)
    [all...]
  /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 521 milliseconds

1 2 3 4 5 6 7 8 91011>>