OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:r_ul
(Results
1 - 1
of
1
) sorted by null
/external/clearsilver/util/
ulist.c
53
ULIST *
r_ul
;
local
61
r_ul
= (ULIST *) calloc (1, sizeof (ULIST));
62
if (
r_ul
== NULL)
66
r_ul
->items = (void **) calloc (size, sizeof(void *));
67
if (
r_ul
->items == NULL)
69
free (
r_ul
);
73
r_ul
->num = 0;
74
r_ul
->max = size;
75
r_ul
->flags = flags;
76
*ul =
r_ul
;
260
ULIST *
r_ul
;
local
[
all
...]
Completed in 12 milliseconds