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

  /src/sys/external/bsd/gnu-efi/dist/apps/
lfbgrid.c 55 UINT32 CopySize, BufferSize;
97 CopySize = BufferSize;
99 CopySize = BufferSize < gop->Mode->FrameBufferSize ?
102 BufferSize, gop->Mode->FrameBufferSize, CopySize);
129 CopyMem((VOID *)FrameBufferAddr, PixelBuffer, CopySize);
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMutate.cpp 301 // Copy From[FromBeg, FromBeg + CopySize) into To[ToBeg, ToBeg + CopySize).
303 size_t CopySize = Rand(ToSize - ToBeg) + 1;
304 assert(ToBeg + CopySize <= ToSize);
305 CopySize = std::min(CopySize, FromSize);
306 size_t FromBeg = Rand(FromSize - CopySize + 1);
307 assert(FromBeg + CopySize <= FromSize);
308 memmove(To + ToBeg, From + FromBeg, CopySize);
320 size_t CopySize = Rand(MaxCopySize) + 1
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/X86/
X86Counter.cpp 61 size_t CopySize = kDataBufferSize - Offset;
62 memcpy(Buf, Start + Offset, CopySize);
63 if (CopySize >= DataSize)
66 memcpy(Buf + CopySize, Start, Offset);
  /src/sys/external/bsd/acpica/dist/utilities/
utcopy.c 720 ACPI_SIZE CopySize;
732 CopySize = sizeof (ACPI_OPERAND_OBJECT);
735 CopySize = sizeof (ACPI_NAMESPACE_NODE);
739 ACPI_CAST_PTR (char, SourceDesc), CopySize);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 1309 Value *CopySize = MemCpy->getLength();
1311 if (MemSetSize != CopySize) {
1321 ConstantInt *CCopySize = dyn_cast<ConstantInt>(CopySize);
1327 // interested in the bytes from MemSetSize..CopySize here, but as we can't
1328 // easily represent this location, we use the full 0..CopySize range.
1336 if (hasUndefContentsMSSA(MSSA, AA, MemCpy->getSource(), MD, CopySize))
1341 if (DepInfo.isDef() && hasUndefContents(DepInfo.getInst(), CopySize))
1347 CopySize = MemSetSize;
1354 CopySize, MaybeAlign(MemCpy->getDestAlignment()));
1432 if (ConstantInt *CopySize = dyn_cast<ConstantInt>(M->getLength()))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 4343 Value *CopySize =
4346 VAArgTLSCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize);
4347 IRB.CreateMemCpy(VAArgTLSCopy, Align(8), MS.VAArgTLS, Align(8), CopySize);
4349 VAArgTLSOriginCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize);
4351 Align(8), CopySize);
4488 Value *CopySize = IRB.CreateAdd(ConstantInt::get(MS.IntptrTy, 0),
4494 VAArgTLSCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize);
4495 IRB.CreateMemCpy(VAArgTLSCopy, Align(8), MS.VAArgTLS, Align(8), CopySize);
4516 CopySize);
4682 Value *CopySize
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
MachOYAML.cpp 44 size_t CopySize = 16 >= Scalar.size() ? 16 : Scalar.size();
45 memcpy((void *)Val, Scalar.data(), CopySize);

Completed in 67 milliseconds