• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/contrib/edk2/Include/Library/

Lines Matching refs:AllocationSize

200   Allocates the number bytes specified by AllocationSize of type EfiBootServicesData and returns a
201 pointer to the allocated buffer. If AllocationSize is 0, then a valid buffer of 0 size is
204 @param AllocationSize The number of bytes to allocate.
212 IN UINTN AllocationSize
218 Allocates the number bytes specified by AllocationSize of type EfiRuntimeServicesData and returns
219 a pointer to the allocated buffer. If AllocationSize is 0, then a valid buffer of 0 size is
222 @param AllocationSize The number of bytes to allocate.
230 IN UINTN AllocationSize
236 Allocates the number bytes specified by AllocationSize of type EfiReservedMemoryType and returns
237 a pointer to the allocated buffer. If AllocationSize is 0, then a valid buffer of 0 size is
240 @param AllocationSize The number of bytes to allocate.
248 IN UINTN AllocationSize
254 Allocates the number bytes specified by AllocationSize of type EfiBootServicesData, clears the
255 buffer with zeros, and returns a pointer to the allocated buffer. If AllocationSize is 0, then a
259 @param AllocationSize The number of bytes to allocate and zero.
267 IN UINTN AllocationSize
273 Allocates the number bytes specified by AllocationSize of type EfiRuntimeServicesData, clears the
274 buffer with zeros, and returns a pointer to the allocated buffer. If AllocationSize is 0, then a
278 @param AllocationSize The number of bytes to allocate and zero.
286 IN UINTN AllocationSize
292 Allocates the number bytes specified by AllocationSize of type EfiReservedMemoryType, clears the
293 buffer with zeros, and returns a pointer to the allocated buffer. If AllocationSize is 0, then a
297 @param AllocationSize The number of bytes to allocate and zero.
305 IN UINTN AllocationSize
311 Allocates the number bytes specified by AllocationSize of type EfiBootServicesData, copies
312 AllocationSize bytes from Buffer to the newly allocated buffer, and returns a pointer to the
313 allocated buffer. If AllocationSize is 0, then a valid buffer of 0 size is returned. If there
317 If AllocationSize is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
319 @param AllocationSize The number of bytes to allocate and zero.
328 IN UINTN AllocationSize,
335 Allocates the number bytes specified by AllocationSize of type EfiRuntimeServicesData, copies
336 AllocationSize bytes from Buffer to the newly allocated buffer, and returns a pointer to the
337 allocated buffer. If AllocationSize is 0, then a valid buffer of 0 size is returned. If there
341 If AllocationSize is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
343 @param AllocationSize The number of bytes to allocate and zero.
352 IN UINTN AllocationSize,
359 Allocates the number bytes specified by AllocationSize of type EfiReservedMemoryType, copies
360 AllocationSize bytes from Buffer to the newly allocated buffer, and returns a pointer to the
361 allocated buffer. If AllocationSize is 0, then a valid buffer of 0 size is returned. If there
365 If AllocationSize is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
367 @param AllocationSize The number of bytes to allocate and zero.
376 IN UINTN AllocationSize,