Home | History | Annotate | Download | only in GuardUefiMemoryAllocationLib

Lines Matching refs:OldSize

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);
729 EfiRuntimeServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
735 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
738 @param OldSize The size, in bytes, of OldBuffer.
749 IN UINTN OldSize,
754 return InternalReallocatePool (EfiRuntimeServicesData, OldSize, NewSize, OldBuffer);
761 EfiReservedMemoryType. If OldBuffer is not NULL, then the smaller of OldSize and
767 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
770 @param OldSize The size, in bytes, of OldBuffer.
781 IN UINTN OldSize,
786 return InternalReallocatePool (EfiReservedMemoryType, OldSize, NewSize, OldBuffer);