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

1 2

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringExtras.h 65 static inline std::string utostr_32(uint32_t X, bool isNeg = false) {
76 if (isNeg) *--BufPtr = '-'; // Add negative sign...
81 static inline std::string utostr(uint64_t X, bool isNeg = false) {
92 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /external/llvm/include/llvm/ADT/
StringExtras.h 78 static inline std::string utostr(uint64_t X, bool isNeg = false) {
89 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 320 unsigned isNeg = (int64_t(Value - 4) < 0) ? 1 : 0;
325 Binary |= isNeg << 10; // Sign bit.
338 unsigned isNeg = (int64_t(Value-4) < 0) ? 1 : 0;
343 Binary |= isNeg << 10; // Sign bit.
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
StringExtras.h 79 static inline std::string utostr(uint64_t X, bool isNeg = false) {
90 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 79 static inline std::string utostr(uint64_t X, bool isNeg = false) {
90 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 79 static inline std::string utostr(uint64_t X, bool isNeg = false) {
90 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 79 static inline std::string utostr(uint64_t X, bool isNeg = false) {
90 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 79 static inline std::string utostr(uint64_t X, bool isNeg = false) {
90 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 79 static inline std::string utostr(uint64_t X, bool isNeg = false) {
90 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 79 static inline std::string utostr(uint64_t X, bool isNeg = false) {
90 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 79 static inline std::string utostr(uint64_t X, bool isNeg = false) {
90 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 79 static inline std::string utostr(uint64_t X, bool isNeg = false) {
90 if (isNeg) *--BufPtr = '-'; // Add negative sign...
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
Reassociate.cpp 192 (!BinaryOperator::isNot(I) && !BinaryOperator::isNeg(I)))
284 if (!LHSBO && LHS->hasOneUse() && BinaryOperator::isNeg(LHS)) {
288 if (!RHSBO && RHS->hasOneUse() && BinaryOperator::isNeg(RHS)) {
435 if (!BinaryOperator::isNeg(U)) continue;
472 if (BinaryOperator::isNeg(Sub))
758 if (!BinaryOperator::isNeg(TheOp))
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/ir/code/
Neg.java 87 public boolean isNeg() {
Instruction.java 546 public boolean isNeg() {
  /external/llvm/lib/Target/AArch64/
AArch64ExpandPseudoInsts.cpp 527 bool isNeg = false;
532 isNeg = true;
539 FirstOpc = (isNeg ? AArch64::MOVNWi : AArch64::MOVZWi);
541 FirstOpc = (isNeg ? AArch64::MOVNXi : AArch64::MOVZXi);
562 if (isNeg)
576 if (Imm16 == (isNeg ? Mask : 0))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APInt.cpp 918 bool isNeg = T.I >> 63;
932 return isNeg ? -APInt(width, mantissa >> (52 - exp)) :
943 return isNeg ? -Tmp : Tmp;
966 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
969 APInt Tmp(isNeg ? -(*this) : (*this));
981 if (!isSigned || !isNeg)
1004 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0;
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 842 bool isNeg = T.I >> 63;
856 return isNeg ? -APInt(width, mantissa >> (52 - exp)) :
867 return isNeg ? -Tmp : Tmp;
890 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
893 APInt Tmp(isNeg ? -(*this) : (*this));
905 if (!isSigned || !isNeg)
928 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0;
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 820 bool isNeg = T.I >> 63;
834 return isNeg ? -APInt(width, mantissa >> (52 - exp)) :
845 return isNeg ? -Tmp : Tmp;
868 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
871 APInt Tmp(isNeg ? -(*this) : (*this));
883 if (!isSigned || !isNeg)
906 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 191 if (!BinaryOperator::isNot(I) && !BinaryOperator::isNeg(I) &&
560 if ((Opcode == Instruction::Mul && BinaryOperator::isNeg(BO)) ||
    [all...]
StraightLineStrengthReduce.cpp 611 if (BinaryOperator::isNeg(Bump)) {
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java 1132 boolean isNeg = false;
1139 isNeg = true;
1144 if (isNeg)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombine.h 42 if (BinaryOperator::isNeg(V) ||
  /external/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 54 if (BinaryOperator::isNeg(V) || BinaryOperator::isFNeg(V) ||
  /external/swiftshader/third_party/LLVM/include/llvm/
InstrTypes.h 310 /// isNeg, isFNeg, isNot - Check if the given Value is a
313 static bool isNeg(const Value *V);
    [all...]

Completed in 1255 milliseconds

1 2