OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:node_stack_t
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/bintrees/bintrees/
stack.h
14
typedef struct node_stack
node_stack_t
;
typedef in typeref:struct:node_stack
21
node_stack_t
*stack_init(int size);
22
void stack_delete(
node_stack_t
*stack);
23
void stack_push(
node_stack_t
*stack, node_t *node);
24
node_t *stack_pop(
node_stack_t
*stack);
25
int stack_is_empty(
node_stack_t
*stack);
26
void stack_reset(
node_stack_t
*stack);
stack.pxd
11
ctypedef struct
node_stack_t
:
13
node_stack_t
*stack_init(int size)
14
void stack_delete(
node_stack_t
*stack)
15
void stack_push(
node_stack_t
*stack, node_t *node)
16
node_t *stack_pop(
node_stack_t
*stack)
17
int stack_is_empty(
node_stack_t
*stack)
18
void stack_reset(
node_stack_t
*stack)
stack.c
12
extern
node_stack_t
*
15
node_stack_t
*stack;
17
stack = PyMem_Malloc(sizeof(
node_stack_t
));
25
stack_delete(
node_stack_t
*stack)
32
stack_push(
node_stack_t
*stack, node_t *node)
43
stack_pop(
node_stack_t
*stack)
49
stack_is_empty(
node_stack_t
*stack)
55
stack_reset(
node_stack_t
*stack)
cwalker.pxd
9
from stack cimport
node_stack_t
namespace
14
cdef
node_stack_t
*stack
ctrees.c
788
node_stack_t
*stack;
830
node_stack_t
*stack;
cwalker.c
349
* from stack cimport
node_stack_t
360
node_stack_t
*stack;
[
all
...]
qavltree.c
351
* from stack cimport
node_stack_t
362
node_stack_t
*stack;
382
* from stack cimport
node_stack_t
[
all
...]
qbintree.c
351
* from stack cimport
node_stack_t
362
node_stack_t
*stack;
382
* from stack cimport
node_stack_t
[
all
...]
qrbtree.c
351
* from stack cimport
node_stack_t
362
node_stack_t
*stack;
382
* from stack cimport
node_stack_t
[
all
...]
Completed in 113 milliseconds