| /freebsd-14.2/sys/contrib/dev/acpica/components/utilities/ |
| H A D | utnonansi.c | 298 ACPI_SIZE DestSize, in AcpiUtSafeStrcpy() argument 302 if (strlen (Source) >= DestSize) in AcpiUtSafeStrcpy() 314 ACPI_SIZE DestSize, in AcpiUtSafeStrcat() argument 318 if ((strlen (Dest) + strlen (Source)) >= DestSize) in AcpiUtSafeStrcat() 330 ACPI_SIZE DestSize, in AcpiUtSafeStrncat() argument 339 if ((strlen (Dest) + ActualTransferLength) >= DestSize) in AcpiUtSafeStrncat() 352 ACPI_SIZE DestSize) in AcpiUtSafeStrncpy() argument 356 strncpy (Dest, Source, DestSize); in AcpiUtSafeStrncpy() 357 Dest[DestSize - 1] = 0; in AcpiUtSafeStrncpy()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | MemCpyOptimizer.cpp | 1253 Value *DestSize = MemSet->getLength(); in processMemSetMemCpyDependence() local 1261 if (DestSize == SrcSize) { in processMemSetMemCpyDependence() 1288 if (DestSize->getType() != SrcSize->getType()) { in processMemSetMemCpyDependence() 1289 if (DestSize->getType()->getIntegerBitWidth() > in processMemSetMemCpyDependence() 1291 SrcSize = Builder.CreateZExt(SrcSize, DestSize->getType()); in processMemSetMemCpyDependence() 1293 DestSize = Builder.CreateZExt(DestSize, SrcSize->getType()); in processMemSetMemCpyDependence() 1296 Value *Ule = Builder.CreateICmpULE(DestSize, SrcSize); in processMemSetMemCpyDependence() 1297 Value *SizeDiff = Builder.CreateSub(DestSize, SrcSize); in processMemSetMemCpyDependence() 1299 Ule, ConstantInt::getNullValue(DestSize->getType()), SizeDiff); in processMemSetMemCpyDependence() 1455 if (!DestSize || Size != *DestSize) { in performStackMoveOptzn() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-stress/ |
| H A D | llvm-stress.cpp | 563 unsigned DestSize = DestTy->getScalarType()->getPrimitiveSizeInBits(); in Act() local 566 if ((getRandom() & 1) && VSize == DestSize) { in Act() 573 if (VSize > DestSize) { in Act() 577 assert(VSize < DestSize && "Different int types with the same size?"); in Act() 603 if (VSize > DestSize) { in Act() 606 } else if (VSize < DestSize) { in Act()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | OutputSections.cpp | 284 uint8_t DestSize = Format.getDwarfOffsetByteSize() + 1; in applyULEB128() local 285 uint8_t RealSize = encodeULEB128(Val, ULEB, DestSize); in applyULEB128() 296 uint8_t DestSize = Format.getDwarfOffsetByteSize() + 1; in applySLEB128() local 297 uint8_t RealSize = encodeSLEB128(Val, SLEB, DestSize); in applySLEB128()
|
| /freebsd-14.2/sys/contrib/dev/acpica/include/ |
| H A D | acutils.h | 1090 ACPI_SIZE DestSize, 1097 ACPI_SIZE DestSize); 1102 ACPI_SIZE DestSize, 1108 ACPI_SIZE DestSize,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Linker/ |
| H A D | LinkModules.cpp | 295 uint64_t DestSize = DL.getTypeAllocSize(Dest.getValueType()); in shouldLinkFromSource() local 297 LinkFromSrc = SrcSize > DestSize; in shouldLinkFromSource()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | LegalizationArtifactCombiner.h | 418 const unsigned DestSize = DestTy.getSizeInBits(); in tryFoldUnmergeCast() local 461 if (CastSrcSize % DestSize != 0) in tryFoldUnmergeCast() 471 const unsigned NewNumDefs = CastSrcSize / DestSize; in tryFoldUnmergeCast()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUISelLowering.cpp | 939 unsigned DestSize = Dest.getSizeInBits(); in isTruncateFree() local 941 return DestSize < SrcSize && DestSize % 32 == 0 ; in isTruncateFree() 948 unsigned DestSize = Dest->getScalarSizeInBits(); in isTruncateFree() local 950 if (DestSize== 16 && Subtarget->has16BitInsts()) in isTruncateFree() 953 return DestSize < SrcSize && DestSize % 32 == 0; in isTruncateFree() 958 unsigned DestSize = Dest->getScalarSizeInBits(); in isZExtFree() local 961 return DestSize >= 32; in isZExtFree() 963 return SrcSize == 32 && DestSize == 64; in isZExtFree()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaCast.cpp | 3267 CharUnits DestSize = Self.Context.getTypeSizeInChars(DestType); in CheckBuiltinBitCast() local 3269 if (DestSize != SourceSize) { in CheckBuiltinBitCast() 3271 << (int)SourceSize.getQuantity() << (int)DestSize.getQuantity(); in CheckBuiltinBitCast()
|
| H A D | SemaChecking.cpp | 878 unsigned DestSize = DestSizeAPS->getZExtValue(); in HandleScanfSpecifier() local 880 if (DestSize < SourceSize) in HandleScanfSpecifier() 881 Diagnose(FS.getArgIndex(), DestSize, SourceSize); in HandleScanfSpecifier() 1265 auto Diagnose = [&](unsigned ArgIndex, unsigned DestSize, in checkFortifiedBuiltinMemoryFunction() 1272 << DestSize << SourceSize); in checkFortifiedBuiltinMemoryFunction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ConstantFolding.cpp | 351 TypeSize DestSize = DL.getTypeSizeInBits(DestTy); in ConstantFoldLoadThroughBitcast() local 353 if (!TypeSize::isKnownGE(SrcSize, DestSize)) in ConstantFoldLoadThroughBitcast() 364 if (SrcSize == DestSize && in ConstantFoldLoadThroughBitcast()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 22902 unsigned DestSize = Zext.getValueSizeInBits(); in reduceBuildVecToShuffleWithZero() local 22904 if (DestSize % SrcSize != 0 || in reduceBuildVecToShuffleWithZero() 22910 int ZextRatio = DestSize / SrcSize; in reduceBuildVecToShuffleWithZero()
|