Home
last modified time | relevance | path

Searched refs:SrcSigned (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_handlers.cc465 bool SrcSigned = SrcTy.isSignedIntegerTy(); in handleImplicitConversion() local
473 if (!SrcSigned && !DstSigned) { in handleImplicitConversion()
505 << (SrcSigned ? "" : "un") << DstTy << Value(DstTy, Dst) in handleImplicitConversion()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_handlers.cc461 bool SrcSigned = SrcTy.isSignedIntegerTy(); in handleImplicitConversion() local
469 if (!SrcSigned && !DstSigned) { in handleImplicitConversion()
495 << (SrcSigned ? "" : "un") << DstTy << Value(DstTy, Dst) in handleImplicitConversion()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_handlers.cpp563 bool SrcSigned = SrcTy.isSignedIntegerTy(); in handleImplicitConversion() local
571 if (!SrcSigned && !DstSigned) { in handleImplicitConversion()
603 << (SrcSigned ? "" : "un") << DstTy << Value(DstTy, Dst) in handleImplicitConversion()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprScalar.cpp978 bool SrcSigned = SrcType->isSignedIntegerOrEnumerationType(); in EmitIntegerTruncationCheckHelper() local
985 if (!SrcSigned && !DstSigned) { in EmitIntegerTruncationCheckHelper()
1030 bool SrcSigned = SrcType->isSignedIntegerOrEnumerationType(); in EmitIntegerTruncationCheck() local
1033 (!SrcSigned && DstSigned)) in EmitIntegerTruncationCheck()
1068 bool SrcSigned = SrcType->isSignedIntegerOrEnumerationType(); in EmitIntegerSignChangeCheckHelper() local
1070 (void)SrcSigned; // Only used in assert() in EmitIntegerSignChangeCheckHelper()
1077 assert(((SrcBits != DstBits) || (SrcSigned != DstSigned)) && in EmitIntegerSignChangeCheckHelper()
1131 bool SrcSigned = SrcType->isSignedIntegerOrEnumerationType(); in EmitIntegerSignChangeCheck() local
1141 if (SrcSigned == DstSigned && SrcBits == DstBits) in EmitIntegerSignChangeCheck()
1145 if (!SrcSigned && !DstSigned) in EmitIntegerSignChangeCheck()
[all …]