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

1 2 3 4 56 7 8 91011>>

  /external/ImageMagick/MagickCore/
cache.c 97 remainder;
94 remainder; member in struct:_MagickModulo
    [all...]
  /external/aac/libMpegTPDec/src/
tpdec_lib.cpp 160 INT remainder; /* Reminder in division during lost access unit estimation. */ member in struct:TRANSPORTDEC
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 936 /** Returns the IEEE remainder.
940 public Dfp remainder(final Dfp d) { method in class:Dfp
1581 int remainder[];\/\/ remainder local
    [all...]
  /external/clang/lib/Headers/
tgmath.h 1082 // remainder
1090 __tg_remainder(double __x, double __y) {return remainder(__x, __y);}
1096 #undef remainder macro
1097 #define remainder(__x, __y) __tg_remainder(__tg_promote2((__x), (__y))(__x), \ macro
  /external/eigen/bench/
analyze-blocking-sizes.cpp 552 vector<size_t> remainder; local
554 remainder.push_back(i);
557 while (!remainder.empty()) {
562 remainder,
  /external/fio/
backend.c 804 uint64_t secs, remainder, bps, bytes, iops; local
824 remainder = bytes % bps;
825 return remainder * 1000000 / bps + secs * 1000000;
    [all...]
  /external/google-breakpad/src/common/windows/
pdb_source_line_writer.cc 1110 int remainder = highest_end % 4; local
    [all...]
  /external/gptfdisk/
basicmbr.cc 665 uint64_t remainder; local
685 remainder = lba - (cylinder * numHeads * numSecspTrack);
686 head = remainder / numSecspTrack;
687 remainder -= head * numSecspTrack;
688 sector = remainder;
    [all...]
  /external/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp 91 Ambiguous remainder(Ambiguous, Ambiguous){ return Ambiguous(); } function
    [all...]
  /external/libcxx/test/std/numerics/c.math/
cmath.pass.cpp 94 Ambiguous remainder(Ambiguous, Ambiguous){ return Ambiguous(); } function
    [all...]
  /external/mesa3d/src/vulkan/wsi/
wsi_common_x11.c 731 int64_t remainder = 0; local
754 remainder, 0, NULL);
    [all...]
  /external/python/cpython2/Objects/stringlib/
formatter.h 403 digits[remainder]
408 remainder beyond it.
417 STRINGLIB_CHAR *remainder; local
421 remainder = ptr;
423 /* Does remainder start with a decimal point? */
424 *has_decimal = ptr<end && *remainder == '.';
428 remainder++;
430 *n_remainder = end - remainder;
459 | <lpadding> <sign> <prefix> <spadding> <grouped_digits> <decimal> <remainder> <rpadding> |
561 /* Used to keep track of digits, decimal, and remainder. *
    [all...]
  /external/python/cpython3/Python/
formatter_unicode.c 428 digits[remainder]
433 remainder beyond it.
441 Py_ssize_t remainder; local
447 remainder = pos;
449 /* Does remainder start with a decimal point? */
450 *has_decimal = pos<end && PyUnicode_READ(kind, data, remainder) == '.';
454 remainder++;
456 *n_remainder = end - remainder;
485 | <lpadding> <sign> <prefix> <spadding> <grouped_digits> <decimal> <remainder> <rpadding> |
598 /* Used to keep track of digits, decimal, and remainder. *
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
APFloat.h 126 /// New operations: sqrt, IEEE remainder, C90 fmod, nexttoward.
249 /// IEEE remainder.
250 opStatus remainder(const IEEEFloat &);
945 opStatus remainder(const APFloat &RHS) { function in class:llvm::APFloat
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInteger.java 918 * @see #remainder
923 BigInt remainder = new BigInt(); local
924 BigInt.division(getBigInt(), divisorBigInt, quotient, remainder); local
925 return new BigInteger[] {new BigInteger(quotient), new BigInteger(remainder) };
951 public BigInteger remainder(BigInteger divisor) { method in class:BigInteger
952 BigInt remainder = new BigInt(); local
953 BigInt.division(getBigInt(), divisor.getBigInt(), null, remainder); local
    [all...]
  /libnativehelper/platform_include/nativehelper/detail/
signature_checker.h 403 // The remainder of the function descriptor yet to be parsed.
404 ConstexprStringView remainder; member in struct:nativehelper::detail::ParseTypeDescriptorResult
411 return remainder.size() > 0u;
421 // and return the token and the remainder string.
437 ConstexprStringView remainder = single_type.substr(/*start*/1u); local
486 // Possibly parse an arbitary-long remainder substring.
489 return {{token, remainder}};
493 maybe_res = ParseSingleTypeDescriptor(remainder, /*allow_void*/false);
504 return {{token, res.remainder}};
524 remainder = single_type.substr(/*start*/semicolon_len)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
tgmath.h 1082 // remainder
1090 __tg_remainder(double __x, double __y) {return remainder(__x, __y);}
1096 #undef remainder macro
1097 #define remainder(__x, __y) __tg_remainder(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
tgmath.h 1082 // remainder
1090 __tg_remainder(double __x, double __y) {return remainder(__x, __y);}
1096 #undef remainder macro
1097 #define remainder(__x, __y) __tg_remainder(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
tgmath.h 1091 // remainder
1099 __tg_remainder(double __x, double __y) {return remainder(__x, __y);}
1105 #undef remainder macro
1106 #define remainder(__x, __y) __tg_remainder(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APFloat.h 136 /// New operations: sqrt, IEEE remainder, C90 fmod, nexttoward.
258 /// IEEE remainder.
259 opStatus remainder(const IEEEFloat &);
609 opStatus remainder(const DoubleAPFloat &RHS);
971 opStatus remainder(const APFloat &RHS) { function in class:llvm::APFloat
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
APFloat.h 136 /// New operations: sqrt, IEEE remainder, C90 fmod, nexttoward.
258 /// IEEE remainder.
259 opStatus remainder(const IEEEFloat &);
615 opStatus remainder(const DoubleAPFloat &RHS);
977 opStatus remainder(const APFloat &RHS) { function in class:llvm::APFloat
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/include/
tgmath.h 1091 // remainder
1099 __tg_remainder(double __x, double __y) {return remainder(__x, __y);}
1105 #undef remainder macro
1106 #define remainder(__x, __y) __tg_remainder(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
APFloat.h 136 /// New operations: sqrt, IEEE remainder, C90 fmod, nexttoward.
258 /// IEEE remainder.
259 opStatus remainder(const IEEEFloat &);
615 opStatus remainder(const DoubleAPFloat &RHS);
977 opStatus remainder(const APFloat &RHS) { function in class:llvm::APFloat
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/include/
tgmath.h 1091 // remainder
1099 __tg_remainder(double __x, double __y) {return remainder(__x, __y);}
1105 #undef remainder macro
1106 #define remainder(__x, __y) __tg_remainder(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
APFloat.h 136 /// New operations: sqrt, IEEE remainder, C90 fmod, nexttoward.
258 /// IEEE remainder.
259 opStatus remainder(const IEEEFloat &);
615 opStatus remainder(const DoubleAPFloat &RHS);
977 opStatus remainder(const APFloat &RHS) { function in class:llvm::APFloat
    [all...]

Completed in 1264 milliseconds

1 2 3 4 56 7 8 91011>>