HomeSort by relevance Sort by last modified time
    Searched refs:OldSize (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
MemoryAllocationLib.c 79 EfiBootServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
85 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
88 @param OldSize The size, in bytes, of OldBuffer.
99 IN UINTN OldSize,
112 if (OldSize > 0) {
113 CopyMem (NewBuffer, OldBuffer, OldSize);
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptPkcs7Verify.c 273 UINTN OldSize;
331 OldSize = BufferSize;
339 OldSize = BufferSize;
341 BufferSize = OldSize + SingleCertSize + sizeof (UINT32);
349 CopyMem (CertBuf, OldBuf, OldSize);
354 WriteUnaligned32 ((UINT32 *) (CertBuf + OldSize), (UINT32) SingleCertSize);
355 CopyMem (CertBuf + OldSize + sizeof (UINT32), SingleCert, SingleCertSize);
367 *CertLength = BufferSize - OldSize - sizeof (UINT32);
373 CopyMem (*TrustedCert, CertBuf + OldSize + sizeof (UINT32), *CertLength);
475 UINTN OldSize;
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Library/GuardUefiMemoryAllocationLib/
MemoryAllocationLib.c 657 specified by PoolType. If OldBuffer is not NULL, then the smaller of OldSize and
663 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
667 @param OldSize The size, in bytes, of OldBuffer.
678 IN UINTN OldSize,
687 CopyMem (NewBuffer, OldBuffer, MIN (OldSize, NewSize));
697 EfiBootServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
703 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
706 @param OldSize The size, in bytes, of OldBuffer.
717 IN UINTN OldSize,
722 return InternalReallocatePool (EfiBootServicesData, OldSize, NewSize, OldBuffer);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
MemoryAllocationLib.h 390 EfiBootServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
396 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
399 @param OldSize The size, in bytes, of OldBuffer.
410 IN UINTN OldSize,
419 EfiRuntimeServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
425 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
428 @param OldSize The size, in bytes, of OldBuffer.
439 IN UINTN OldSize,
448 EfiReservedMemoryType. If OldBuffer is not NULL, then the smaller of OldSize and
454 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Malloc.c 220 - valid NewSize >= OldSize Returns malloc(NewSize) with Oldsize bytes copied from Ptr
221 - valid NewSize < OldSize Returns new buffer with Oldsize bytes copied from Ptr
238 size_t OldSize = 0;
252 OldSize = (size_t)Head->Size;
262 NumCpy = OldSize;
263 if( OldSize > NewSize) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
OnigurumaUefiPort.h 44 #define realloc(OldPtr,NewSize,OldSize) ReallocatePool(OldSize,NewSize,OldPtr)
  /device/linaro/bootloader/edk2/MdePkg/Library/PeiMemoryAllocationLib/
MemoryAllocationLib.c 781 specified by PoolType. If OldBuffer is not NULL, then the smaller of OldSize and
787 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
791 @param OldSize The size, in bytes, of OldBuffer.
802 IN UINTN OldSize,
811 CopyMem (NewBuffer, OldBuffer, MIN (OldSize, NewSize));
821 EfiBootServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
827 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
830 @param OldSize The size, in bytes, of OldBuffer.
841 IN UINTN OldSize,
846 return InternalReallocatePool (EfiBootServicesData, OldSize, NewSize, OldBuffer);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiMemoryAllocationLib/
MemoryAllocationLib.c 664 specified by PoolType. If OldBuffer is not NULL, then the smaller of OldSize and
670 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
674 @param OldSize The size, in bytes, of OldBuffer.
685 IN UINTN OldSize,
694 CopyMem (NewBuffer, OldBuffer, MIN (OldSize, NewSize));
704 EfiBootServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
710 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
713 @param OldSize The size, in bytes, of OldBuffer.
724 IN UINTN OldSize,
729 return InternalReallocatePool (EfiBootServicesData, OldSize, NewSize, OldBuffer);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/SmmMemoryAllocationLib/
MemoryAllocationLib.c 813 specified by PoolType. If OldBuffer is not NULL, then the smaller of OldSize and
820 and OldSize is greater than (MAX_ADDRESS - OldBuffer + 1), then ASSERT().
823 @param OldSize The size, in bytes, of OldBuffer.
834 IN UINTN OldSize,
843 CopyMem (NewBuffer, OldBuffer, MIN (OldSize, NewSize));
853 EfiRuntimeServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
860 and OldSize is greater than (MAX_ADDRESS - OldBuffer + 1), then ASSERT().
862 @param OldSize The size, in bytes, of OldBuffer.
873 IN UINTN OldSize,
878 return InternalReallocatePool (EfiRuntimeServicesData, OldSize, NewSize, OldBuffer);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
AddrModeMatcher.cpp 182 unsigned OldSize = AddrModeInsts.size();
189 AddrModeInsts.resize(OldSize);
198 AddrModeInsts.resize(OldSize);
261 unsigned OldSize = AddrModeInsts.size();
271 AddrModeInsts.resize(OldSize);
284 AddrModeInsts.resize(OldSize);
294 AddrModeInsts.resize(OldSize);
327 unsigned OldSize = AddrModeInsts.size();
343 AddrModeInsts.resize(OldSize);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
BmLib.c 331 @param OldSize - The size of the current buffer.
341 IN UINTN OldSize,
354 CopyMem (NewPool, OldPool, OldSize < NewSize ? OldSize : NewSize);
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/
MemoryAllocationLib.c 864 specified by PoolType. If OldBuffer is not NULL, then the smaller of OldSize and
870 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
874 @param OldSize The size, in bytes, of OldBuffer.
885 IN UINTN OldSize,
894 CopyMem (NewBuffer, OldBuffer, MIN (OldSize, NewSize));
904 EfiBootServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
910 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
913 @param OldSize The size, in bytes, of OldBuffer.
924 IN UINTN OldSize,
931 Buffer = InternalReallocatePool (EfiBootServicesData, OldSize, NewSize, OldBuffer);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiMemoryAllocationProfileLib/
MemoryAllocationLib.c 861 specified by PoolType. If OldBuffer is not NULL, then the smaller of OldSize and
867 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
871 @param OldSize The size, in bytes, of OldBuffer.
882 IN UINTN OldSize,
891 CopyMem (NewBuffer, OldBuffer, MIN (OldSize, NewSize));
901 EfiBootServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
907 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
910 @param OldSize The size, in bytes, of OldBuffer.
921 IN UINTN OldSize,
928 Buffer = InternalReallocatePool (EfiBootServicesData, OldSize, NewSize, OldBuffer);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerCorpus.h 129 uint32_t OldSize = GetFeature(Idx);
130 if (OldSize == 0 || (Shrink && OldSize > NewSize)) {
131 if (OldSize > 0) {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/lib/Fuzzer/
FuzzerCorpus.h 139 uint32_t OldSize = GetFeature(Idx);
140 if (OldSize == 0 || (Shrink && OldSize > NewSize)) {
141 if (OldSize > 0) {
  /prebuilts/clang/host/linux-x86/clang-4393122/prebuilt_include/llvm/lib/Fuzzer/
FuzzerCorpus.h 139 uint32_t OldSize = GetFeature(Idx);
140 if (OldSize == 0 || (Shrink && OldSize > NewSize)) {
141 if (OldSize > 0) {
  /prebuilts/clang/host/linux-x86/clang-4479392/prebuilt_include/llvm/lib/Fuzzer/
FuzzerCorpus.h 139 uint32_t OldSize = GetFeature(Idx);
140 if (OldSize == 0 || (Shrink && OldSize > NewSize)) {
141 if (OldSize > 0) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/
MemoryAllocationLib.c 859 specified by PoolType. If OldBuffer is not NULL, then the smaller of OldSize and
865 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
869 @param OldSize The size, in bytes, of OldBuffer.
880 IN UINTN OldSize,
889 CopyMem (NewBuffer, OldBuffer, MIN (OldSize, NewSize));
899 EfiRuntimeServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
905 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
908 @param OldSize The size, in bytes, of OldBuffer.
919 IN UINTN OldSize,
926 Buffer = InternalReallocatePool (EfiRuntimeServicesData, OldSize, NewSize, OldBuffer);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/SmmMemoryAllocationProfileLib/
MemoryAllocationLib.c 945 specified by PoolType. If OldBuffer is not NULL, then the smaller of OldSize and
952 and OldSize is greater than (MAX_ADDRESS - OldBuffer + 1), then ASSERT().
955 @param OldSize The size, in bytes, of OldBuffer.
966 IN UINTN OldSize,
975 CopyMem (NewBuffer, OldBuffer, MIN (OldSize, NewSize));
985 EfiRuntimeServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
992 and OldSize is greater than (MAX_ADDRESS - OldBuffer + 1), then ASSERT().
994 @param OldSize The size, in bytes, of OldBuffer.
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
SmallPtrSet.cpp 134 unsigned OldSize = CurArraySize;
159 for (const void **BucketPtr = OldBuckets, **E = OldBuckets+OldSize;
  /prebuilts/clang/host/linux-x86/clang-4579689/prebuilt_include/llvm/lib/Fuzzer/
FuzzerCorpus.h 194 uint32_t OldSize = GetFeature(Idx);
195 if (OldSize == 0 || (Shrink && OldSize > NewSize)) {
196 if (OldSize > 0) {
  /prebuilts/clang/host/linux-x86/clang-4630689/prebuilt_include/llvm/lib/Fuzzer/
FuzzerCorpus.h 194 uint32_t OldSize = GetFeature(Idx);
195 if (OldSize == 0 || (Shrink && OldSize > NewSize)) {
196 if (OldSize > 0) {
  /prebuilts/clang/host/linux-x86/clang-4639204/prebuilt_include/llvm/lib/Fuzzer/
FuzzerCorpus.h 194 uint32_t OldSize = GetFeature(Idx);
195 if (OldSize == 0 || (Shrink && OldSize > NewSize)) {
196 if (OldSize > 0) {
  /prebuilts/clang/host/linux-x86/clang-4691093/prebuilt_include/llvm/lib/Fuzzer/
FuzzerCorpus.h 194 uint32_t OldSize = GetFeature(Idx);
195 if (OldSize == 0 || (Shrink && OldSize > NewSize)) {
196 if (OldSize > 0) {
  /external/llvm/lib/MC/
MCAssembler.cpp 788 uint64_t OldSize = LF.getContents().size();
800 return OldSize != LF.getContents().size();
806 uint64_t OldSize = DF.getContents().size();
818 return OldSize != Data.size();
824 uint64_t OldSize = DF.getContents().size();
833 return OldSize != Data.size();
838 unsigned OldSize = F.getContents().size();
840 return OldSize != F.getContents().size();
845 unsigned OldSize = F.getContents().size();
847 return OldSize != F.getContents().size()
    [all...]

Completed in 735 milliseconds

1 2 3 4