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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/math/
remainder.go 29 // Remainder returns the IEEE 754 floating-point remainder of x/y.
32 // Remainder(ħInf, y) = NaN
33 // Remainder(NaN, y) = NaN
34 // Remainder(x, 0) = NaN
35 // Remainder(x, ħInf) = x
36 // Remainder(x, NaN) = NaN
37 func Remainder(x, y float64) float64
39 func remainder(x, y float64) float64 { func
  /prebuilts/go/linux-x86/src/math/
remainder.go 29 // Remainder returns the IEEE 754 floating-point remainder of x/y.
32 // Remainder(ħInf, y) = NaN
33 // Remainder(NaN, y) = NaN
34 // Remainder(x, 0) = NaN
35 // Remainder(x, ħInf) = x
36 // Remainder(x, NaN) = NaN
37 func Remainder(x, y float64) float64
39 func remainder(x, y float64) float64 { func
  /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...]
  /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());
  /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) {
  /frameworks/native/services/surfaceflinger/RenderEngine/
Mesh.cpp 36 size_t remainder = (stride * vertexCount) / vertexCount; local
38 // either vertexSize or texCoordSize, it must have overflowed. remainder
40 if ((stride < vertexSize) || (remainder != stride)) {
  /packages/apps/DeskClock/src/com/android/deskclock/
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));
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) {
  /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/tensorflow/tensorflow/tools/graph_transforms/
obfuscate_names.cc 59 const int64 remainder = (remaining % chars_size); local
60 const char current_char = valid_chars[remainder];
  /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/dng_sdk/source/
dng_safe_arithmetic.cpp 245 const std::uint32_t remainder = val % multiple_of; local
246 if (remainder == 0) {
249 return SafeUint32Add(val, multiple_of - remainder);
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInts.java 192 public static int remainder(int dividend, int divisor) { method in class:UnsignedInts
  /external/guava/guava-tests/benchmark/com/google/common/primitives/
UnsignedLongsBenchmark.java 61 @Benchmark long remainder(int reps) { method in class:UnsignedLongsBenchmark
65 tmp += UnsignedLongs.remainder(longs[j], divisors[j]);
124 // Using remainder here does not give us a uniform distribution but it should
131 return UnsignedLongs.remainder(r, dividend + 1);
  /external/jemalloc/test/unit/
util.c 141 char *remainder; local
144 result = malloc_strtoumax(test->input, &remainder, test->base);
149 assert_str_eq(remainder, test->expected_remainder,
150 "Unexpected remainder for \"%s\", base %d",
  /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);
  /external/proguard/src/proguard/evaluation/value/
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
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);
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);
UnknownDoubleValue.java 90 public DoubleValue remainder(DoubleValue other) method in class:UnknownDoubleValue

Completed in 819 milliseconds

1 2 3 4 5 6 7 8 91011>>