]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseMemoryLibSse2/ScanMem8Wrapper.c
Split wrapper functions into separate source files to reduce image code size
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibSse2 / ScanMem8Wrapper.c
1 /** @file
2 ScanMem8() implementation.
3
4 Copyright (c) 2006, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 Module Name: ScanMem8Wrapper.c
14
15 The following BaseMemoryLib instances share the same version of this file:
16
17 BaseMemoryLib
18 BaseMemoryLibMmx
19 BaseMemoryLibSse2
20 BaseMemoryLibRepStr
21 PeiMemoryLib
22 UefiMemoryLib
23
24 **/
25
26 #include "MemLibInternals.h"
27
28 /**
29 Scans a target buffer for an 8-bit value, and returns a pointer to the
30 matching 8-bit value in the target buffer.
31
32 This function searches target the buffer specified by Buffer and Length from
33 the lowest address to the highest address for an 8-bit value that matches
34 Value. If a match is found, then a pointer to the matching byte in the target
35 buffer is returned. If no match is found, then NULL is returned. If Length is
36 0, then NULL is returned.
37
38 If Buffer is NULL, then ASSERT().
39 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
40
41 @param Buffer Pointer to the target buffer to scan.
42 @param Length Number of bytes in Buffer to scan.
43 @param Value Value to search for in the target buffer.
44
45 @return Pointer to the first occurrence or NULL if not found.
46 @retval NULL if Length == 0 or Value was not found.
47
48 **/
49 VOID *
50 EFIAPI
51 ScanMem8 (
52 IN CONST VOID *Buffer,
53 IN UINTN Length,
54 IN UINT8 Value
55 )
56 {
57 ASSERT (Buffer != NULL);
58 ASSERT (Length <= MAX_ADDRESS + (UINTN)Buffer + 1);
59
60 if ((Length /= sizeof (Value)) == 0) {
61 return NULL;
62 }
63 return (VOID*)InternalMemScanMem8 (Buffer, Length, Value);
64 }