Home
last modified time | relevance | path

Searched refs:stk_t (Results 1 – 4 of 4) sorted by relevance

/titanic_50/usr/src/tools/ctf/cvt/
H A Dstack.h40 typedef struct stk stk_t; typedef
42 stk_t *stack_new(void (*)(void *));
43 void stack_free(stk_t *);
44 void *stack_pop(stk_t *);
45 void *stack_peek(stk_t *);
46 void stack_push(stk_t *, void *);
47 int stack_level(stk_t *);
H A Dstack.c50 stk_t *
53 stk_t *sp; in stack_new()
55 sp = xmalloc(sizeof (stk_t)); in stack_new()
65 stack_free(stk_t *sp) in stack_free()
78 stack_pop(stk_t *sp) in stack_pop()
86 stack_peek(stk_t *sp) in stack_peek()
95 stack_push(stk_t *sp, void *data) in stack_push()
109 stack_level(stk_t *sp) in stack_level()
H A Dstabs.c182 stk_t *file_stack; in stabs_read()
/titanic_50/usr/src/common/util/
H A Dqsort.c64 } stk_t; typedef
121 stk_t stack[8 * sizeof (nrec) + 1]; in qsort()
122 stk_t *sp; in qsort()