Searched refs:isLong (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DLiteralSupport.h62 bool isLong : 1; // This is *not* set for long long.
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp541 isLong = false;
610 if (isHalf || isFloat || isLong) break; // HH, FH, LH invalid.
616 if (isHalf || isFloat || isLong || isFloat128)
634 if (isHalf || isFloat || isLong || isFloat128)
646 if (isLong || isLongLong) break; // Cannot be repeated.
656 isLong = true;
662 if (isLong || isLongLong || MicrosoftInteger)
718 isLong = false;
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DNeonEmitter.cpp199 bool isLong() const { return isInteger() && ElementBitwidth == 64; } function in class:__anon964::Type
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp3639 } else if (Literal.isLong) {
3647 } else if (Literal.isLong) {
3687 else if (Literal.isLong)
3760 if (Ty.isNull() && !Literal.isLong && !Literal.isLongLong) {
3793 ? Literal.isLong
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp8308 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
8313 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6059 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
6064 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);

Completed in 481 milliseconds