Home | History | Annotate | Download | only in BaseMemoryLibRepStr

Lines Matching refs:Buffer

29   Fills a target buffer with zeros, and returns the target buffer.

31 This function fills Length bytes of Buffer with zeros, and returns Buffer.
33 If Length > 0 and Buffer is NULL, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
36 @param Buffer The pointer to the target buffer to fill with zeros.
37 @param Length The number of bytes in Buffer to fill with zeros.
39 @return Buffer.
45 OUT VOID *Buffer,
50 return Buffer;
53 ASSERT (Buffer != NULL);
54 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
55 return InternalMemZeroMem (Buffer, Length);