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

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DLiteralSupport.h64 bool isLong : 1; // This is *not* set for long long.
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp546 isLong = false;
619 if (isHalf || isFloat || isLong) break; // HH, FH, LH invalid.
625 if (isHalf || isFloat || isLong || isFloat128)
643 if (isHalf || isFloat || isLong || isFloat128)
655 if (isLong || isLongLong) break; // Cannot be repeated.
665 isLong = true;
671 if (isLong || isLongLong || MicrosoftInteger)
727 isLong = false;
/freebsd-13-stable/contrib/llvm-project/clang/utils/TableGen/
H A DNeonEmitter.cpp202 bool isLong() const { return isInteger() && ElementBitwidth == 64; } function in class:__anon2449::Type
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp3746 } else if (Literal.isLong) {
3754 } else if (Literal.isLong) {
3794 else if (Literal.isLong)
3867 if (Ty.isNull() && !Literal.isLong && !Literal.isLongLong) {
3900 ? Literal.isLong
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp8851 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
8856 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6251 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
6256 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);

Completed in 276 milliseconds