OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:node_stack_t
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/bintrees/bintrees/
cwalker.pxd
9
from stack cimport
node_stack_t
namespace
14
cdef
node_stack_t
*stack
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);
Completed in 152 milliseconds