Home
last modified time | relevance | path

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

/freebsd/sys/dev/qat/qat_api/common/utils/
H A Dlac_lock_free_stack.h37 pointer_t new_top; in pop() local
46 new_top.ptr = (uintptr_t)next->pNext; in pop()
47 new_top.ctr = old_top.ctr + 1; in pop()
50 new_top.atomic)); in pop()
58 pointer_t new_top; in push() local
64 new_top.ptr = (uintptr_t)val; in push()
65 new_top.ctr = old_top.ctr + 1; in push()
68 new_top.atomic)); in push()
/freebsd/contrib/libcbor/src/cbor/internal/
H A Dstack.c25 struct _cbor_stack_record *new_top = in _cbor_stack_push() local
27 if (new_top == NULL) return NULL; in _cbor_stack_push()
29 *new_top = (struct _cbor_stack_record){stack->top, item, subitems}; in _cbor_stack_push()
30 stack->top = new_top; in _cbor_stack_push()
32 return new_top; in _cbor_stack_push()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/vdev_zaps/
H A Dvdev_zaps_005_pos.ksh56 new_top=$(get_top_vd_zap $DISK $conf)
59 [[ "$new_top" -ne "$orig_top" ]] && log_fail "Top ZAP ($new_top) after "\
H A Dvdev_zaps_004_pos.ksh58 new_top=$(get_top_vd_zap "type: 'mirror'" $conf)
59 if [[ "$new_top" -ne "$orig_top" ]]; then