HomeSort by: relevance | last modified time | path
    Searched refs:DestSize (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/utilities/
utnonansi.c 171 * PARAMETERS: Adds a "DestSize" parameter to each of the standard string
190 ACPI_SIZE DestSize,
194 if (strlen (Source) >= DestSize)
206 ACPI_SIZE DestSize,
210 if ((strlen (Dest) + strlen (Source)) >= DestSize)
222 ACPI_SIZE DestSize,
231 if ((strlen (Dest) + ActualTransferLength) >= DestSize)
244 ACPI_SIZE DestSize)
248 strncpy (Dest, Source, DestSize);
249 Dest[DestSize - 1] = 0
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/runtime/
rtstr.c 141 UINTN DestSize, Size;
143 DestSize = RtStrLen(Dest);
145 RtCopyMem(Dest + DestSize, Src, Size * sizeof(CHAR16));
146 Dest[DestSize + Size] = '\0';
  /src/sys/external/bsd/acpica/dist/include/
acutils.h 984 ACPI_SIZE DestSize,
991 ACPI_SIZE DestSize);
996 ACPI_SIZE DestSize,
1002 ACPI_SIZE DestSize,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-stress/
llvm-stress.cpp 569 unsigned DestSize = DestTy->getScalarType()->getPrimitiveSizeInBits();
572 if ((getRandom() & 1) && VSize == DestSize) {
579 if (VSize > DestSize) {
583 assert(VSize < DestSize && "Different int types with the same size?");
609 if (VSize > DestSize) {
612 } else if (VSize < DestSize) {
616 // If VSize == DestSize, then the two types must be fp128 and ppc_fp128,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 1179 Value *DestSize = MemSet->getLength();
1187 if (DestSize == SrcSize) {
1205 if (DestSize->getType() != SrcSize->getType()) {
1206 if (DestSize->getType()->getIntegerBitWidth() >
1208 SrcSize = Builder.CreateZExt(SrcSize, DestSize->getType());
1210 DestSize = Builder.CreateZExt(DestSize, SrcSize->getType());
1213 Value *Ule = Builder.CreateICmpULE(DestSize, SrcSize);
1214 Value *SizeDiff = Builder.CreateSub(DestSize, SrcSize);
1216 Ule, ConstantInt::getNullValue(DestSize->getType()), SizeDiff)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Linker/
LinkModules.cpp 295 uint64_t DestSize = DL.getTypeAllocSize(Dest.getValueType());
297 LinkFromSrc = SrcSize > DestSize;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
LegalizationArtifactCombiner.h 372 const unsigned DestSize = DestTy.getSizeInBits();
414 if (CastSrcSize % DestSize != 0)
424 const unsigned NewNumDefs = CastSrcSize / DestSize;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp 876 unsigned DestSize = Dest.getSizeInBits();
878 return DestSize < SrcSize && DestSize % 32 == 0 ;
885 unsigned DestSize = Dest->getScalarSizeInBits();
887 if (DestSize== 16 && Subtarget->has16BitInsts())
890 return DestSize < SrcSize && DestSize % 32 == 0;
895 unsigned DestSize = Dest->getScalarSizeInBits();
898 return DestSize >= 32;
900 return SrcSize == 32 && DestSize == 64
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCast.cpp 3116 CharUnits DestSize = Self.Context.getTypeSizeInChars(DestType);
3118 if (DestSize != SourceSize) {
3120 << (int)SourceSize.getQuantity() << (int)DestSize.getQuantity();
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp 355 uint64_t DestSize = DL.getTypeSizeInBits(DestTy);
357 if (SrcSize < DestSize)
376 if (SrcSize == DestSize &&
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 1698 unsigned DestSize = DestVT.getSizeInBits();
1705 (SlotSize < DestSize &&
1733 if (SlotSize == DestSize)
1736 assert(SlotSize < DestSize && "Unknown extension!");
DAGCombiner.cpp 19166 unsigned DestSize = Zext.getValueSizeInBits();
19168 if (DestSize % SrcSize != 0 ||
19174 int ZextRatio = DestSize / SrcSize;

Completed in 52 milliseconds