Home
last modified time | relevance | path

Searched refs:LHSSigned (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaHLSL.cpp909 bool LHSSigned = LElTy->hasSignedIntegerRepresentation(); in handleIntegerVectorBinOpConversion() local
914 if (LHSSigned == RHSSigned) { in handleIntegerVectorBinOpConversion()
923 if (IntOrder != (LHSSigned ? 1 : -1)) { in handleIntegerVectorBinOpConversion()
933 if (IsCompAssign || LHSSigned) in handleIntegerVectorBinOpConversion()
949 QualType ElTy = Ctx.getCorrespondingUnsignedType(LHSSigned ? LElTy : RElTy); in handleIntegerVectorBinOpConversion()
H A DSemaExpr.cpp1324 bool LHSSigned = LHSType->hasSignedIntegerRepresentation(); in handleIntegerConversion() local
1326 if (LHSSigned == RHSSigned) { in handleIntegerConversion()
1334 } else if (order != (LHSSigned ? 1 : -1)) { in handleIntegerConversion()
1347 if (LHSSigned) { in handleIntegerConversion()
1359 S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType); in handleIntegerConversion()