HomeSort by: relevance | last modified time | path
    Searched defs:isInt (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 82 bool isInt() const { return EntryKind == E_Integer; }
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
APValue.h 393 bool isInt() const { return Kind == Int; }
416 assert(isInt() && "Invalid accessor");
581 assert(isInt() && "Invalid accessor");
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
NeonEmitter.cpp 201 bool isInt() const { return isInteger() && ElementBitwidth == 32; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
MathExtras.h 363 template <unsigned N> constexpr inline bool isInt(int64_t x) {
367 template <> constexpr inline bool isInt<8>(int64_t x) {
370 template <> constexpr inline bool isInt<16>(int64_t x) {
373 template <> constexpr inline bool isInt<32>(int64_t x) {
383 return isInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 74 bool isZero() const { return isInt() ? !IntVal : getFpVal().isZero(); }
77 bool isOne() const { return isInt() && IntVal == 1; }
78 bool isTwo() const { return isInt() && IntVal == 2; }
79 bool isMinusOne() const { return isInt() && IntVal == -1; }
80 bool isMinusTwo() const { return isInt() && IntVal == -2; }
101 bool isInt() const { return !IsFp; }
232 if (isInt()) {
243 if (!isInt())
267 if (That.isInt())
275 if (isInt() == That.isInt())
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptStmt.h 137 bool IsInt;
141 IntOrString(uint32_t Value) : Data(Value), IsInt(1) {}
142 IntOrString(RCInt Value) : Data(Value), IsInt(1) {}
143 IntOrString(StringRef Value) : Data(Value), IsInt(0) {}
145 : Data(Token), IsInt(Token.kind() == RCToken::Kind::Int) {}
148 return !IsInt && Data.String.equals_lower(Str);
151 bool isInt() const { return IsInt; }
154 assert(IsInt);
159 assert(!IsInt);
    [all...]

Completed in 29 milliseconds