OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Curl_tree
(Results
1 - 6
of
6
) sorted by null
/external/curl/lib/
splay.h
26
struct
Curl_tree
{
27
struct
Curl_tree
*smaller; /* smaller node */
28
struct
Curl_tree
*larger; /* larger node */
29
struct
Curl_tree
*same; /* points to a node with identical key */
34
struct
Curl_tree
*Curl_splay(struct timeval i,
35
struct
Curl_tree
*t);
37
struct
Curl_tree
*Curl_splayinsert(struct timeval key,
38
struct
Curl_tree
*t,
39
struct
Curl_tree
*newnode);
42
struct
Curl_tree
*Curl_splayremove(struct timeval key
[
all
...]
splay.c
40
struct
Curl_tree
*Curl_splay(struct timeval i,
41
struct
Curl_tree
*t)
43
struct
Curl_tree
N, *l, *r, *y;
100
struct
Curl_tree
*Curl_splayinsert(struct timeval i,
101
struct
Curl_tree
*t,
102
struct
Curl_tree
*node)
154
struct
Curl_tree
*Curl_splaygetbest(struct timeval i,
155
struct
Curl_tree
*t,
156
struct
Curl_tree
**removed)
158
struct
Curl_tree
*x
[
all
...]
multihandle.h
95
struct
Curl_tree
*timetree;
multi.c
[
all
...]
urldata.h
[
all
...]
/external/curl/tests/unit/
unit1309.c
37
static void splayprint(struct
Curl_tree
* t, int d, char output)
39
struct
Curl_tree
*node;
73
struct
Curl_tree
*root;
74
struct
Curl_tree
nodes[NUM_NODES];
Completed in 776 milliseconds