Home
last modified time | relevance | path

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

/netbsd-src/external/mit/libcbor/dist/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()
24 struct _cbor_stack_record *new_top = in _cbor_stack_push()
25 _CBOR_MALLOC(sizeof(struct _cbor_stack_record)); in _cbor_stack_push()
28 *new_top = (struct _cbor_stack_record){stack->top, item, subitems}; in _cbor_stack_push()
H A Dstack.h18 struct _cbor_stack_record { struct
19 struct _cbor_stack_record *lower; argument
26 struct _cbor_stack_record *top; argument
34 struct _cbor_stack_record *_cbor_stack_push(struct _cbor_stack *, cbor_item_t *,