Home | History | Annotate | Download | only in UefiMemoryAllocationProfileLib

Lines Matching refs:OldSize

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);
946 EfiRuntimeServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
952 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
955 @param OldSize The size, in bytes, of OldBuffer.
966 IN UINTN OldSize,
973 Buffer = InternalReallocatePool (EfiRuntimeServicesData, OldSize, NewSize, OldBuffer);
991 EfiReservedMemoryType. If OldBuffer is not NULL, then the smaller of OldSize and
997 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
1000 @param OldSize The size, in bytes, of OldBuffer.
1011 IN UINTN OldSize,
1018 Buffer = InternalReallocatePool (EfiReservedMemoryType, OldSize, NewSize, OldBuffer);