]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseMemoryLibRepStr/ScanMem64Wrapper.c
Prepend underscores to procedure identifiers.
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibRepStr / ScanMem64Wrapper.c
1 /** @file
2 ScanMem64() 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: ScanMem64Wrapper.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 a 64-bit value, and returns a pointer to the
30 matching 64-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 at 64-bit increments for a 64-bit
34 value that matches Value. If a match is found, then a pointer to the matching
35 value in the target buffer is returned. If no match is found, then NULL is
36 returned. If Length is 0, then NULL is returned.
37
38 If Buffer is NULL, then ASSERT().
39 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
40 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
41
42 @param Buffer Pointer to the target buffer to scan.
43 @param Length Number of bytes in Buffer to scan.
44 @param Value Value to search for in the target buffer.
45
46 @return Pointer to the first occurrence or NULL if not found.
47 @retval NULL if Length == 0 or Value was not found.
48
49 **/
50 VOID *
51 EFIAPI
52 ScanMem64 (
53 IN CONST VOID *Buffer,
54 IN UINTN Length,
55 IN UINT64 Value
56 )
57 {
58 ASSERT (Buffer != NULL);
59 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
60 ASSERT (Length <= MAX_ADDRESS + (UINTN)Buffer + 1);
61
62 if ((Length /= sizeof (Value)) == 0) {
63 return NULL;
64 }
65 return (VOID*)InternalMemScanMem64 (Buffer, Length, Value);
66 }