Searched refs:DestSigned (Results 1 – 4 of 4) sorted by relevance
/external/protobuf/python/google/protobuf/pyext/ |
D | safe_numerics.h | 56 #define BASE_NUMERIC_CAST_CASE_SAME_SIZE(DestSigned, SourceSigned, Code) \ argument 58 true, true, DestSigned, SourceSigned, Code); \ 60 true, false, DestSigned, SourceSigned, Code) 62 #define BASE_NUMERIC_CAST_CASE_SOURCE_LARGER(DestSigned, SourceSigned, Code) \ argument 64 false, false, DestSigned, SourceSigned, Code); \ 66 #define BASE_NUMERIC_CAST_CASE_DEST_LARGER(DestSigned, SourceSigned, Code) \ argument 68 false, true, DestSigned, SourceSigned, Code); \
|
/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
D | NarrowingConversionsCheck.cpp | 307 bool DestSigned = DestType->isSignedIntegerOrEnumerationType(); in handleFloatingToIntegral() local 308 llvm::APSInt Result = llvm::APSInt(DestWidth, !DestSigned); in handleFloatingToIntegral()
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 1662 bool DestSigned = DestType->isSignedIntegerOrEnumerationType(); in HandleFloatToIntCast() local 1664 Result = APSInt(DestWidth, !DestSigned); in HandleFloatToIntCast() 9638 bool DestSigned = E->getType()->isSignedIntegerOrEnumerationType(); in CheckICE() local 9639 APSInt IgnoredVal(DestWidth, !DestSigned); in CheckICE()
|
/external/llvm-project/clang/lib/AST/ |
D | ExprConstant.cpp | 2522 bool DestSigned = DestType->isSignedIntegerOrEnumerationType(); in HandleFloatToIntCast() local 2524 Result = APSInt(DestWidth, !DestSigned); in HandleFloatToIntCast() 15357 bool DestSigned = E->getType()->isSignedIntegerOrEnumerationType(); in CheckICE() local 15358 APSInt IgnoredVal(DestWidth, !DestSigned); in CheckICE()
|