OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:index_
(Results
1 - 2
of
2
) sorted by relevancy
/src/games/sail/
array.h
55
void *array_get(const struct array *, unsigned
index_
);
56
void array_set(const struct array *, unsigned
index_
, void *val);
59
int array_insert(struct array *a, unsigned
index_
);
60
void array_remove(struct array *a, unsigned
index_
);
76
array_get(const struct array *a, unsigned
index_
)
78
arrayassert(
index_
< a->num);
79
return a->v[
index_
];
83
array_set(const struct array *a, unsigned
index_
, void *val)
85
arrayassert(
index_
< a->num);
86
a->v[
index_
] = val
92
unsigned
index_
= a->num;
local in function:array_add
[
all
...]
array.h
55
void *array_get(const struct array *, unsigned
index_
);
56
void array_set(const struct array *, unsigned
index_
, void *val);
59
int array_insert(struct array *a, unsigned
index_
);
60
void array_remove(struct array *a, unsigned
index_
);
76
array_get(const struct array *a, unsigned
index_
)
78
arrayassert(
index_
< a->num);
79
return a->v[
index_
];
83
array_set(const struct array *a, unsigned
index_
, void *val)
85
arrayassert(
index_
< a->num);
86
a->v[
index_
] = val
92
unsigned
index_
= a->num;
local in function:array_add
[
all
...]
Completed in 22 milliseconds
Indexes created Mon Oct 20 05:10:11 GMT 2025