HomeSort by relevance Sort by last modified time
    Searched defs:SrcSize (Results 1 - 20 of 20) sorted by null

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
DevicePath.c 461 UINTN SrcSize;
468 SrcSize = EfiDevicePathSize (Src);
471 Ptr = EfiLibAllocateCopyPool (SrcSize + InstanceSize, Src);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDevicePathLib/
UefiDevicePathLib.c 261 UINTN SrcSize;
272 SrcSize = GetDevicePathSize (DevicePath);
275 NewDevicePath = AllocatePool (SrcSize + InstanceSize);
278 TempDevicePath = CopyMem (NewDevicePath, DevicePath, SrcSize);;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/
RtDevicePath.c 558 UINTN SrcSize;
565 SrcSize = RtEfiDevicePathSize (Src);
568 Ptr = InternalAllocateCopyPool (SrcSize + InstanceSize, Src);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/EfiCompress/
EfiCompressMain.c 265 UINT32 SrcSize;
290 SrcSize = ftell (InFileP);
295 if ((SrcBuffer = malloc (SrcSize)) == NULL) {
300 if (fread (SrcBuffer, 1, SrcSize, InFileP) != SrcSize) {
314 Status = CompressFunc (SrcBuffer, SrcSize, DstBuffer, &DstSize);
324 Status = CompressFunc (SrcBuffer, SrcSize, DstBuffer, &DstSize);
330 fprintf (stdout, " Orig Size = %ld\tComp Size = %ld\n", SrcSize, DstSize);
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
DevicePathUtilities.c 598 UINTN SrcSize;
613 SrcSize = GetDevicePathSize (DevicePath);
616 NewDevicePath = AllocatePool (SrcSize + InstanceSize);
619 TempDevicePath = CopyMem (NewDevicePath, DevicePath, SrcSize);;
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineShifts.cpp 377 unsigned SrcSize = TrOp->getType()->getScalarSizeInBits();
379 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
InstCombineCasts.cpp 804 unsigned SrcSize = A->getType()->getScalarSizeInBits();
808 // SrcSize < DstSize: zext(a & mask)
809 // SrcSize == DstSize: a & mask
810 // SrcSize > DstSize: trunc(a) & mas
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 212 uint64_t SrcSize = SrcDL.getTypeAllocSize(SrcGV->getValueType());
219 LinkFromSrc = SrcSize > DstSize;
221 if (SrcSize != DstSize)
321 uint64_t SrcSize = DL.getTypeAllocSize(Src.getValueType());
322 LinkFromSrc = SrcSize > DestSize;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 389 unsigned SrcSize = TrOp->getType()->getScalarSizeInBits();
391 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
    [all...]
InstCombineCasts.cpp     [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
LoopUtils.cpp 139 unsigned SrcSize = Cast->getSrcTy()->getPrimitiveSizeInBits();
140 if (SrcSize > DstSize)
155 if (SrcSize == DstSize)
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
dpath.c 398 UINTN SrcSize;
404 SrcSize = DevicePathSize(Src);
406 Ptr = AllocatePool (SrcSize + InstanceSize);
410 CopyMem (Ptr, Src, SrcSize);
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 800 uint64_t srcSize = DL.getTypeAllocSize(srcAlloca->getAllocatedType()) *
803 if (cpyLen < srcSize)
806 // Check that accessing the first srcSize bytes of dest will not cause a
810 // The destination is an alloca. Check it is larger than srcSize.
818 if (destSize < srcSize)
825 if (A->getDereferenceableBytes() < srcSize) {
840 if (destSize < srcSize)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegisterCoalescer.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instructions.cpp     [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringX86BaseImpl.h 372 const SizeT SrcSize = PInst->getSrcSize();
373 for (SizeT I = 0; I < SrcSize; ++I) {
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp 606 unsigned SrcSize = Src->getScalarSizeInBits();
609 return SrcSize == 32 && DestSize == 64;
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 1357 milliseconds