-
Notifications
You must be signed in to change notification settings - Fork 13.3k
/
Copy pathbsearch.cpp
48 lines (40 loc) · 1.59 KB
/
bsearch.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//===-- Implementation of bsearch -----------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "src/stdlib/bsearch.h"
#include "src/__support/common.h"
#include "src/__support/macros/config.h"
#include <stdint.h>
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(void *, bsearch,
(const void *key, const void *array, size_t array_size,
size_t elem_size,
int (*compare)(const void *, const void *))) {
if (key == nullptr || array == nullptr || array_size == 0 || elem_size == 0)
return nullptr;
while (array_size > 0) {
size_t mid = array_size / 2;
const void *elem =
reinterpret_cast<const uint8_t *>(array) + mid * elem_size;
int compare_result = compare(key, elem);
if (compare_result == 0)
return const_cast<void *>(elem);
if (compare_result < 0) {
// This means that key is less than the element at |mid|.
// So, in the next iteration, we only compare elements less
// than mid.
array_size = mid;
} else {
// |mid| is strictly less than |array_size|. So, the below
// decrement in |array_size| will not lead to a wrap around.
array_size -= (mid + 1);
array = reinterpret_cast<const uint8_t *>(elem) + elem_size;
}
}
return nullptr;
}
} // namespace LIBC_NAMESPACE_DECL