HomeSort by relevance Sort by last modified time
    Searched refs:Overflow (Results 26 - 50 of 140) sorted by null

12 3 4 5 6

  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 881 // Return infinity for exponent overflow
    [all...]
  /external/llvm/include/llvm/ADT/
APInt.h     [all...]
  /external/pdfium/xfa/fxfa/parser/
cxfa_subform.cpp 19 {XFA_Element::PageSet, 1, 0}, {XFA_Element::Overflow, 1, 0},
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
APInt.h 929 // Operations that return overflow indicators.
930 APInt sadd_ov(const APInt &RHS, bool &Overflow) const;
931 APInt uadd_ov(const APInt &RHS, bool &Overflow) const;
932 APInt ssub_ov(const APInt &RHS, bool &Overflow) const;
933 APInt usub_ov(const APInt &RHS, bool &Overflow) const;
934 APInt sdiv_ov(const APInt &RHS, bool &Overflow) const;
935 APInt smul_ov(const APInt &RHS, bool &Overflow) const;
936 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
937 APInt sshl_ov(const APInt &Amt, bool &Overflow) const;
938 APInt ushl_ov(const APInt &Amt, bool &Overflow) const
    [all...]
  /frameworks/compile/mclinker/lib/Fragment/
Relocation.cpp 104 case Relocator::Overflow: {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 952 // Operations that return overflow indicators.
953 APInt sadd_ov(const APInt &RHS, bool &Overflow) const;
954 APInt uadd_ov(const APInt &RHS, bool &Overflow) const;
955 APInt ssub_ov(const APInt &RHS, bool &Overflow) const;
956 APInt usub_ov(const APInt &RHS, bool &Overflow) const;
957 APInt sdiv_ov(const APInt &RHS, bool &Overflow) const;
958 APInt smul_ov(const APInt &RHS, bool &Overflow) const;
959 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
960 APInt sshl_ov(const APInt &Amt, bool &Overflow) const;
961 APInt ushl_ov(const APInt &Amt, bool &Overflow) const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
APInt.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
APInt.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
APInt.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
APInt.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
APInt.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
APInt.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 952 // Operations that return overflow indicators.
953 APInt sadd_ov(const APInt &RHS, bool &Overflow) const;
954 APInt uadd_ov(const APInt &RHS, bool &Overflow) const;
955 APInt ssub_ov(const APInt &RHS, bool &Overflow) const;
956 APInt usub_ov(const APInt &RHS, bool &Overflow) const;
957 APInt sdiv_ov(const APInt &RHS, bool &Overflow) const;
958 APInt smul_ov(const APInt &RHS, bool &Overflow) const;
959 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
960 APInt sshl_ov(const APInt &Amt, bool &Overflow) const;
961 APInt ushl_ov(const APInt &Amt, bool &Overflow) const
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
APInt.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
APInt.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
APInt.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
APInt.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
APInt.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
APInt.h     [all...]
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 637 bool Overflow = false;
638 I.uadd_ov(C, Overflow);
639 EXPECT_FALSE(Overflow);
644 bool Overflow = false;
645 I.sadd_ov(C, Overflow);
646 EXPECT_FALSE(Overflow);
651 bool Overflow = false;
653 I.sadd_ov(C, Overflow);
654 EXPECT_FALSE(Overflow);
656 I.uadd_ov(C, Overflow);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APInt.cpp 979 // Return infinity for exponent overflow
    [all...]
  /external/libchrome/base/numerics/
safe_conversions.h 22 // that it CHECKs that the specified numeric conversion will not overflow
27 // would otherwise overflow or underflow. An NaN source returns 0 by
40 // parameter as an unsigned result (thus avoiding an overflow if the value
72 // overflow or underflow. NaN source will always trigger a CHECK.
94 static constexpr T Overflow() {
118 ? S<Dst>::Overflow()
124 // overflow or underflow, and NaN assignment to an integral will return 0.
  /external/pdfium/third_party/base/numerics/
safe_conversions.h 23 // that it CHECKs that the specified numeric conversion will not overflow
28 // would otherwise overflow or underflow. An NaN source returns 0 by
41 // parameter as an unsigned result (thus avoiding an overflow if the value
73 // overflow or underflow. NaN source will always trigger a CHECK.
93 static constexpr T Overflow() {
117 ? S<Dst>::Overflow()
123 // overflow or underflow, and NaN assignment to an integral will return 0.
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
APInt.h 826 // Operations that return overflow indicators.
827 APInt sadd_ov(const APInt &RHS, bool &Overflow) const;
828 APInt uadd_ov(const APInt &RHS, bool &Overflow) const;
829 APInt ssub_ov(const APInt &RHS, bool &Overflow) const;
830 APInt usub_ov(const APInt &RHS, bool &Overflow) const;
831 APInt sdiv_ov(const APInt &RHS, bool &Overflow) const;
832 APInt smul_ov(const APInt &RHS, bool &Overflow) const;
833 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
834 APInt sshl_ov(unsigned Amt, bool &Overflow) const;
    [all...]
  /prebuilts/go/darwin-x86/src/math/
exp_amd64.s 26 #define Overflow 7.09782712893384e+02
49 // check if argument will overflow
51 MOVSD $Overflow, X1
53 JA overflow
104 JGE overflow
121 overflow: // return +Inf label

Completed in 886 milliseconds

12 3 4 5 6