Home
last modified time | relevance | path

Searched refs:new_head (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/dev/smartpqi/
H A Dsmartpqi_tag.c215 union head_list cur_head, new_head; in pqisrc_put_tag() local
235 new_head.top.seq_no = cur_head.top.seq_no + 1; in pqisrc_put_tag()
237 new_head.top.index = index; in pqisrc_put_tag()
240 }while(!os_atomic64_cas(&stack->head.data,cur_head.data,new_head.data)); in pqisrc_put_tag()
252 union head_list cur_head, new_head; in pqisrc_get_tag() local
260 new_head.top.seq_no = cur_head.top.seq_no + 1; in pqisrc_get_tag()
262 new_head.top.index = stack->next_index_array[cur_head.top.index]; in pqisrc_get_tag()
263 }while(!os_atomic64_cas(&stack->head.data,cur_head.data,new_head.data)); in pqisrc_get_tag()
/freebsd/sys/dev/ice/
H A Dice_osdep.h238 #define LIST_REPLACE_INIT(old_head, new_head) do { \ argument
239 __typeof(new_head) _new_head = (new_head); \
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_taskdeps.cpp202 kmp_depnode_list_t *new_head; in __kmp_add_node() local
205 new_head = (kmp_depnode_list_t *)__kmp_fast_allocate( in __kmp_add_node()
208 new_head = (kmp_depnode_list_t *)__kmp_thread_malloc( in __kmp_add_node()
212 new_head->node = __kmp_node_ref(node); in __kmp_add_node()
213 new_head->next = list; in __kmp_add_node()
215 return new_head; in __kmp_add_node()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dspa_errlog.c1368 find_txg_ancestor_snapshot(spa_t *spa, uint64_t new_head, uint64_t old_head, in find_txg_ancestor_snapshot() argument
1386 dsl_dir_phys(ds->ds_dir)->dd_head_dataset_obj == new_head) in find_txg_ancestor_snapshot()
1402 swap_errlog(spa_t *spa, uint64_t spa_err_obj, uint64_t new_head, uint64_t in swap_errlog() argument
1417 error = find_txg_ancestor_snapshot(spa, new_head, old_head, &txg); in swap_errlog()
1426 error = zap_lookup_int_key(spa->spa_meta_objset, spa_err_obj, new_head, in swap_errlog()
1434 new_head, new_head_errlog, tx); in swap_errlog()
H A Ddsl_dataset.c3722 uint64_t new_head = hds->ds_object; in dsl_dataset_promote_sync() local
3723 spa_swap_errlog(dp->dp_spa, new_head, old_head, tx); in dsl_dataset_promote_sync()
/freebsd/sys/netpfil/ipfw/
H A Dip_fw_table_algo.c1794 struct chashbhead *old_head, *new_head; in ta_modify_chash() local
1805 new_head = (struct chashbhead *)mi->main_ptr; in ta_modify_chash()
1819 ti->state = new_head; in ta_modify_chash()
1820 cfg->head4 = new_head; in ta_modify_chash()
1826 new_head = (struct chashbhead *)mi->main_ptr6; in ta_modify_chash()
1840 ti->xstate = new_head; in ta_modify_chash()
1841 cfg->head6 = new_head; in ta_modify_chash()
3701 struct fhashbhead *old_head, *new_head; in ta_modify_fhash() local
3713 new_head = (struct fhashbhead *)mi->main_ptr; in ta_modify_fhash()
3721 ti->state = new_head; in ta_modify_fhash()
[all …]
/freebsd/contrib/ncurses/progs/
H A Dinfocmp.c105 ENTRY *new_head = _nc_head; in ExitProgram() local
110 _nc_head = new_head; in ExitProgram()
/freebsd/sys/net/
H A Diflib.c3563 struct mbuf *new_head; in iflib_ether_pad() local
3566 new_head = m_dup(*m_head, M_NOWAIT); in iflib_ether_pad()
3567 if (new_head == NULL) { in iflib_ether_pad()
3575 *m_head = new_head; in iflib_ether_pad()