Home | History | Annotate | Download | only in UefiMemoryAllocationLib

Lines Matching refs:OldSize

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);
736 EfiRuntimeServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
742 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
745 @param OldSize The size, in bytes, of OldBuffer.
756 IN UINTN OldSize,
761 return InternalReallocatePool (EfiRuntimeServicesData, OldSize, NewSize, OldBuffer);
768 EfiReservedMemoryType. If OldBuffer is not NULL, then the smaller of OldSize and
774 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
777 @param OldSize The size, in bytes, of OldBuffer.
788 IN UINTN OldSize,
793 return InternalReallocatePool (EfiReservedMemoryType, OldSize, NewSize, OldBuffer);