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

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
DivU64x64Remainder.asm 19 ; both the quotient and the remainder
35 ; OUT UINT64 *Remainder OPTIONAL
44 and dword ptr [ecx + 4], 0 ; zero high dword of remainder
68 mov ecx, dword ptr [esp + 32] ; ecx <- addr for Remainder
77 jecxz @Return ; return if Remainder == NULL
83 sbb edi, edx ; edi:esi <- remainder
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
DivU64x64Remainder.asm 19 ; both the quotient and the remainder
35 ; OUT UINT64 *Remainder OPTIONAL
44 and dword ptr [ecx + 4], 0 ; zero high dword of remainder
68 mov ecx, dword ptr [esp + 32] ; ecx <- addr for Remainder
77 jecxz @Return ; return if Remainder == NULL
83 sbb edi, edx ; edi:esi <- remainder
ModU64x32.S 18 # Calculate the remainder of a 64-bit integer by a 32-bit integer
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CanonicalIterator.java 307 Set<String> remainder = extract(cp2, segment, i, workingBuffer); local
308 if (remainder == null) {
315 for (String item : remainder) {
342 Set remainder = extract(cp2, segment, i, workingBuffer);
343 if (remainder == null) continue;
347 Iterator it = remainder.iterator();
362 * If so, take the remainder, and return the equivalents
413 if (buf.length() == 0) return SET_WITH_NULL_STRING; // succeed, but no remainder
414 String remainder = buf.toString();
419 String trial = Normalizer.normalize(UTF16.valueOf(comp) + remainder, Normalizer.DECOMP, 0)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CanonicalIterator.java 311 Set<String> remainder = extract(cp2, segment, i, workingBuffer); local
312 if (remainder == null) {
319 for (String item : remainder) {
346 Set remainder = extract(cp2, segment, i, workingBuffer);
347 if (remainder == null) continue;
351 Iterator it = remainder.iterator();
366 * If so, take the remainder, and return the equivalents
417 if (buf.length() == 0) return SET_WITH_NULL_STRING; // succeed, but no remainder
418 String remainder = buf.toString();
423 String trial = Normalizer.normalize(UTF16.valueOf(comp) + remainder, Normalizer.DECOMP, 0)
    [all...]
  /external/icu/icu4c/source/i18n/
gregoimp.h 56 * the modulus remainder. Unlike the built-in division, this is
59 * -1 with <code>remainder</code> => 3. NOTE: If numerator is
63 * @param remainder output parameter to receive the
64 * remainder. Unlike <code>numerator % denominator</code>, this
70 int32_t& remainder);
73 * For a positive divisor, return the quotient and remainder
74 * such that dividend = quotient*divisor + remainder and
75 * 0 <= remainder < divisor.
83 double& remainder);
  /external/pdfium/xfa/fxbarcode/common/reedsolomon/
BC_ReedSolomon.cpp 91 CBC_ReedSolomonGF256Poly* remainder = (*temp)[1];
92 CFX_ArrayTemplate<int32_t>* coefficients = remainder->GetCoefficients();
  /external/skia/src/opts/
SkBitmapFilter_opts.h 25 int remainder[4] = {0}; local
28 remainder[0] += coeff * pixelsLeft[i * 4 + 0];
29 remainder[1] += coeff * pixelsLeft[i * 4 + 1];
30 remainder[2] += coeff * pixelsLeft[i * 4 + 2];
31 remainder[3] += coeff * pixelsLeft[i * 4 + 3];
33 __m128i t = _mm_setr_epi32(remainder[0], remainder[1], remainder[2], remainder[3]);
409 int remainder[4] = {0}
    [all...]
  /prebuilts/go/darwin-x86/src/math/
mod.go 11 // Mod returns the floating-point remainder of x/y.
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/
mod.go 11 // Mod returns the floating-point remainder of x/y.
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
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_remainder.c 78 __weak_reference(remainder, remainderl);
  /device/linaro/bootloader/edk2/StdLib/LibC/CRT/Ia32/
lldvrm.c 22 * the 64-bit signed result and the 64-bit signed remainder.
33 // OUT INT64 *Remainder
55 ; EBX:ECX contains the remainder (divided % divisor)
88 ; Put the Remainder in EBX:ECX
ulldvrm.c 22 * the 64-bit signed result and the 64-bit signed remainder.
33 // OUT UINT64 *Remainder
55 ; EBX:ECX contains the remainder (divided % divisor)
60 ; Set up the local stack for Remainder pointer
88 ; Put the Remainder in EBX:ECX
  /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/compiler-rt/lib/builtins/arm/
modsi3.S 30 @ Calculate and return the remainder of the (signed) division.
  /external/proguard/src/proguard/evaluation/value/
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...]
  /hardware/intel/common/libva/va/x11/
va_dri2.h 72 CARD64 remainder, CARD64 *count);
  /libcore/ojluni/src/main/native/
jfdlibm.h 59 #define remainder jremainder macro
  /external/skia/src/pathops/
SkOpSpan.cpp 253 SkOpPtT* remainder = spanPtT->next(); local
255 while (remainder != spanPtT) {
256 SkOpPtT* next = remainder->next();
260 if (nextC->span() == remainder->span() && nextC->fT == remainder->fT) {
265 spanPtT->insert(remainder);
267 remainder = next;
  /system/core/libcutils/
fs_config.cpp 325 ssize_t len, remainder = host_len - sizeof(header); local
326 if (remainder <= 0) {
330 prefix = static_cast<char*>(calloc(1, remainder));
335 if (TEMP_FAILURE_RETRY(read(fd, prefix, remainder)) != remainder) {
340 len = strnlen(prefix, remainder);
341 if (len >= remainder) { // missing a terminating null
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerDivideTest.java 28 * Methods: divide, remainder, mod, and divideAndRemainder
399 * Remainder of division by zero
409 aNumber.remainder(bNumber);
416 * Remainder of division of equal numbers
426 BigInteger result = aNumber.remainder(bNumber);
436 * Remainder of division of two positive numbers
446 BigInteger result = aNumber.remainder(bNumber);
456 * Remainder of division of two negative numbers
466 BigInteger result = aNumber.remainder(bNumber);
476 * Remainder of division of two numbers of different signs
    [all...]
  /build/soong/cc/
util.go 57 func filterList(list []string, filter []string) (remainder []string, filtered []string) {
62 remainder = append(remainder, l)

Completed in 1372 milliseconds

1 2 3 4 56 7 8 91011>>