Lines Matching full:target

42   Fills a target buffer with a byte value, and returns the target buffer.
64 Fills a target buffer with a 16-bit value, and returns the target buffer.
75 @param Buffer The pointer to the target buffer to fill.
91 Fills a target buffer with a 32-bit value, and returns the target buffer.
102 @param Buffer The pointer to the target buffer to fill.
118 Fills a target buffer with a 64-bit value, and returns the target buffer.
129 @param Buffer The pointer to the target buffer to fill.
145 Fills a target buffer with a value that is size UINTN, and returns the target buffer.
156 @param Buffer The pointer to the target buffer to fill.
172 Fills a target buffer with zeros, and returns the target buffer.
179 @param Buffer The pointer to the target buffer to fill with zeros.
223 Scans a target buffer for an 8-bit value, and returns a pointer to the matching 8-bit value
224 in the target buffer.
226 This function searches target the buffer specified by Buffer and Length from the lowest
228 then a pointer to the matching byte in the target buffer is returned. If no match is found,
234 @param Buffer The pointer to the target buffer to scan.
236 @param Value The value to search for in the target buffer.
238 @return A pointer to the matching byte in the target buffer, otherwise NULL.
250 Scans a target buffer for a 16-bit value, and returns a pointer to the matching 16-bit value
251 in the target buffer.
253 This function searches target the buffer specified by Buffer and Length from the lowest
255 then a pointer to the matching byte in the target buffer is returned. If no match is found,
263 @param Buffer The pointer to the target buffer to scan.
265 @param Value The value to search for in the target buffer.
267 @return A pointer to the matching byte in the target buffer, otherwise NULL.
279 Scans a target buffer for a 32-bit value, and returns a pointer to the matching 32-bit value
280 in the target buffer.
282 This function searches target the buffer specified by Buffer and Length from the lowest
284 then a pointer to the matching byte in the target buffer is returned. If no match is found,
292 @param Buffer The pointer to the target buffer to scan.
294 @param Value The value to search for in the target buffer.
296 @return A pointer to the matching byte in the target buffer, otherwise NULL.
308 Scans a target buffer for a 64-bit value, and returns a pointer to the matching 64-bit value
309 in the target buffer.
311 This function searches target the buffer specified by Buffer and Length from the lowest
313 then a pointer to the matching byte in the target buffer is returned. If no match is found,
321 @param Buffer The pointer to the target buffer to scan.
323 @param Value The value to search for in the target buffer.
325 @return A pointer to the matching byte in the target buffer, otherwise NULL.
337 Scans a target buffer for a UINTN sized value, and returns a pointer to the matching
338 UINTN sized value in the target buffer.
340 This function searches target the buffer specified by Buffer and Length from the lowest
342 then a pointer to the matching byte in the target buffer is returned. If no match is found,
350 @param Buffer The pointer to the target buffer to scan.
352 @param Value The value to search for in the target buffer.
354 @return A pointer to the matching byte in the target buffer, otherwise NULL.
411 Scans a target buffer for a GUID, and returns a pointer to the matching GUID
412 in the target buffer.
414 This function searches target the buffer specified by Buffer and Length from
417 GUID in the target buffer is returned. If no match is found, then NULL is returned.
425 @param Buffer The pointer to the target buffer to scan.
427 @param Guid The value to search for in the target buffer.
429 @return A pointer to the matching Guid in the target buffer, otherwise NULL.