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

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
ValueTypes.h 139 bool isInteger() const {
140 return isSimple() ? V.isInteger() : isExtendedInteger();
374 assert(isInteger() && !isVector() && "Invalid integer type!");
385 assert(isInteger() && !isVector() && "Invalid integer type!");
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
MachineValueType.h 333 bool isInteger() const {
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFYAML.cpp 1437 static bool isInteger(StringRef Val) {
1455 if (TypeStr.startswith("SHT_") || isInteger(TypeStr))
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
MveEmitter.cpp 278 bool isInteger() const { return Kind != ScalarTypeKind::Float; }
279 bool requiresFloat() const override { return !isInteger(); }
1311 if (ST->isInteger() && ST->sizeInBits() < 32)
NeonEmitter.cpp 192 bool isInteger() const { return Kind == SInt || Kind == UInt; }
200 bool isShort() const { return isInteger() && ElementBitwidth == 16; }
201 bool isInt() const { return isInteger() && ElementBitwidth == 32; }
202 bool isLong() const { return isInteger() && ElementBitwidth == 64; }
608 if (isInteger() && !isSigned())
647 } else if (isInteger())
671 else if (isInteger() && !isSigned())
676 assert(isInteger() && isSigned());
720 if (isInteger() && !isSigned())
962 else if (T.isInteger())
    [all...]
SveEmitter.cpp 98 bool isInteger() const { return !isFloatingPoint() && !Predicate; }
880 if (T.isInteger())
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APFloat.h 391 bool isInteger() const;
683 bool isInteger() const;
1232 bool isInteger() const { APFLOAT_DISPATCH_ON_SEMANTICS(isInteger()); }
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 2535 bool isInteger() const {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 2634 bool isInteger = LHS.getValueType().isInteger();
2639 if (isInteger) {
3678 assert(VT.is128BitVector() && VT.isInteger() &&
3797 } else if (Ty.isVector() && Ty.isInteger() && isTypeLegal(Ty)) {
6635 if (LHS.getValueType().isInteger()) {
6911 if (LHS.getValueType().isInteger()) {
6988 if (LHS.getValueType().isInteger()) {
7472 if (VT.isInteger() && !VT.isVector())
9137 if (ScalarVT.getFixedSizeInBits() < 32 && ScalarVT.isInteger())
    [all...]

Completed in 85 milliseconds