Home
last modified time | relevance | path

Searched refs:_cbor_stack_record (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/libcbor/src/cbor/internal/
H A Dstack.c15 struct _cbor_stack_record *top = stack->top; in _cbor_stack_pop()
21 struct _cbor_stack_record *_cbor_stack_push(struct _cbor_stack *stack, in _cbor_stack_push()
25 struct _cbor_stack_record *new_top = in _cbor_stack_push()
26 _cbor_malloc(sizeof(struct _cbor_stack_record)); in _cbor_stack_push()
29 *new_top = (struct _cbor_stack_record){stack->top, item, subitems}; in _cbor_stack_push()
H A Dstack.h18 struct _cbor_stack_record { struct
20 struct _cbor_stack_record *lower; argument
36 struct _cbor_stack_record *top; argument
46 struct _cbor_stack_record *_cbor_stack_push(struct _cbor_stack *, cbor_item_t *,