ReactOS
0.4.16-dev-937-g7afcd2a
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
bsearch.c
Go to the documentation of this file.
1
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2
#include <stdlib.h>
3
4
/*
5
* @implemented
6
*/
7
void
*
8
__cdecl
9
bsearch
(
const
void
*
key
,
const
void
*base0,
size_t
nelem
,
10
size_t
size
,
int
(
__cdecl
*
cmp
)(
const
void
*ck,
const
void
*ce))
11
{
12
char
*
base
= (
char
*)base0;
13
size_t
lim;
14
int
cmpval;
15
void
*
p
;
16
17
for
(lim =
nelem
; lim != 0; lim >>= 1)
18
{
19
p
=
base
+ (lim >> 1) *
size
;
20
cmpval = (*cmp)(
key
,
p
);
21
if
(cmpval == 0)
22
return
p
;
23
if
(cmpval > 0)
24
{
/* key > p: move right */
25
base
= (
char
*)
p
+
size
;
26
lim--;
27
}
/* else move left */
28
}
29
return
0;
30
}
__cdecl
#define __cdecl
Definition:
accygwin.h:79
size
GLsizeiptr size
Definition:
glext.h:5919
p
GLfloat GLfloat p
Definition:
glext.h:8902
cmp
#define cmp(status, error)
Definition:
error.c:114
nelem
#define nelem(x)
Definition:
shaptest.c:19
base
Definition:
uninitialized_test.cpp:81
key
Definition:
copy.c:22
bsearch
#define bsearch
Definition:
tif_config.wince.h:38
sdk
lib
crt
search
bsearch.c
Generated on Wed Apr 2 2025 06:14:10 for ReactOS by
1.9.6