| /f-stack/dpdk/lib/librte_eal/windows/include/sys/ |
| H A D | queue.h | 188 if ((SLIST_FIRST(head1) = SLIST_FIRST(head2)) != NULL) \ 190 } else if (SLIST_FIRST(head2) != NULL) { \ 203 for ((var) = SLIST_FIRST((head)); \ 213 for ((var) = SLIST_FIRST((head)); \ 223 for ((varp) = &SLIST_FIRST((head)); \ 228 SLIST_FIRST((head)) = NULL; \ 238 SLIST_FIRST((head)) = (elm); \ 245 if (SLIST_FIRST((head)) == (elm)) { \ 263 SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \ 274 SLIST_FIRST(head1) = SLIST_FIRST(head2); \ [all …]
|
| /f-stack/freebsd/sys/ |
| H A D | queue.h | 218 if ((SLIST_FIRST(head1) = SLIST_FIRST(head2)) != NULL) \ 220 } else if (SLIST_FIRST(head2) != NULL) { \ 233 for ((var) = SLIST_FIRST((head)); \ 243 for ((var) = SLIST_FIRST((head)); \ 253 for ((varp) = &SLIST_FIRST((head)); \ 258 SLIST_FIRST((head)) = NULL; \ 268 SLIST_FIRST((head)) = (elm); \ 275 if (SLIST_FIRST((head)) == (elm)) { \ 293 SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \ 304 SLIST_FIRST(head1) = SLIST_FIRST(head2); \ [all …]
|
| /f-stack/tools/compat/include/sys/ |
| H A D | queue.h | 189 #define SLIST_FIRST(head) ((head)->slh_first) macro 192 for ((var) = SLIST_FIRST((head)); \ 202 for ((var) = SLIST_FIRST((head)); \ 212 for ((varp) = &SLIST_FIRST((head)); \ 217 SLIST_FIRST((head)) = NULL; \ 226 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \ 227 SLIST_FIRST((head)) = (elm); \ 234 if (SLIST_FIRST((head)) == (elm)) { \ 252 SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \ 257 SLIST_FIRST(head1) = SLIST_FIRST(head2); \ [all …]
|
| H A D | mbuf.h | 1122 return (SLIST_FIRST(&m->m_pkthdr.tags)); in m_tag_first()
|
| /f-stack/freebsd/netpfil/pf/ |
| H A D | pf_osfp.c | 250 while ((fp = SLIST_FIRST(&V_pf_osfp_list))) { in pf_osfp_flush() 252 while ((entry = SLIST_FIRST(&fp->fp_oses))) { in pf_osfp_flush() 514 SLIST_FIRST(&f2->fp_oses)->fp_class_nm, in pf_osfp_validate() 515 SLIST_FIRST(&f2->fp_oses)->fp_version_nm, in pf_osfp_validate() 516 SLIST_FIRST(&f2->fp_oses)->fp_subtype_nm, in pf_osfp_validate() 517 SLIST_FIRST(&f->fp_oses)->fp_class_nm, in pf_osfp_validate() 518 SLIST_FIRST(&f->fp_oses)->fp_version_nm, in pf_osfp_validate() 519 SLIST_FIRST(&f->fp_oses)->fp_subtype_nm); in pf_osfp_validate() 522 SLIST_FIRST(&f->fp_oses)->fp_class_nm, in pf_osfp_validate() 523 SLIST_FIRST(&f->fp_oses)->fp_version_nm, in pf_osfp_validate() [all …]
|
| H A D | pf_table.c | 823 for (p = SLIST_FIRST(workq); p != NULL; p = q) { in pfr_destroy_kentries() 1626 for (p = SLIST_FIRST(&workq); p != NULL; p = q) { in pfr_ina_commit() 1810 for (p = SLIST_FIRST(workq); p; p = q) { in pfr_setflags_ktables() 1950 for (p = SLIST_FIRST(workq); p; p = q) { in pfr_destroy_ktables()
|
| /f-stack/freebsd/kern/ |
| H A D | kern_et.c | 87 SLIST_FIRST(&eventtimers)->et_quality < et->et_quality) { in et_register() 252 if (et != SLIST_FIRST(&eventtimers)) in sysctl_kern_eventtimer_choice()
|
| H A D | uipc_mbuf2.c | 352 p = SLIST_FIRST(&m->m_pkthdr.tags); in m_tag_delete_chain() 385 p = SLIST_FIRST(&m->m_pkthdr.tags); in m_tag_locate()
|
| H A D | subr_epoch.c | 239 if (SLIST_FIRST(&td->td_epochs) != et) { in epoch_trace_exit() 244 SLIST_FIRST(&td->td_epochs)->et_epoch->e_name, in epoch_trace_exit() 245 SLIST_FIRST(&td->td_epochs)->et_file, in epoch_trace_exit() 246 SLIST_FIRST(&td->td_epochs)->et_line); in epoch_trace_exit()
|
| H A D | kern_cpu.c | 222 while ((saved_freq = SLIST_FIRST(&sc->saved_freq)) != NULL) { in cpufreq_detach() 291 saved_freq = SLIST_FIRST(&sc->saved_freq); in cf_set_method()
|
| H A D | kern_event.c | 2101 while ((kn = SLIST_FIRST(&kq->kq_knlist[i])) != NULL) { in kqueue_drain() 2115 while ((kn = SLIST_FIRST(&kq->kq_knhash[i])) != NULL) { in kqueue_drain() 2525 kn = SLIST_FIRST(&knl->kl_list); in knlist_cleardel() 2569 (kn = SLIST_FIRST(&kq->kq_knlist[fd])) != NULL) { in knote_fdclose()
|
| H A D | subr_lock.c | 552 lp = SLIST_FIRST(&type->lpt_lpalloc); in lock_profile_lookup()
|
| H A D | kern_sysctl.c | 358 nodes[indx] = SLIST_FIRST(&sysctl__children); in sysctl_search_oid() 360 nodes[indx] = SLIST_FIRST(&nodes[indx - 1]->oid_children); in sysctl_search_oid() 1291 oidp = SLIST_FIRST(lsp); in name2oid()
|
| H A D | kern_exec.c | 1325 while ((argkva = SLIST_FIRST(&exec_args_kva_freelist)) == NULL) in exec_alloc_args_kva() 1380 while ((argkva = SLIST_FIRST(&head)) != NULL) { in exec_args_kva_lowmem()
|
| /f-stack/freebsd/mips/malta/ |
| H A D | uart_bus_maltausart.c | 83 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs); in uart_malta_probe()
|
| /f-stack/freebsd/netgraph/ |
| H A D | ng_pptpgre.c | 731 np = SLIST_FIRST(q); in ng_pptpgre_sendq() 923 prev = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_rcvdata_lower() 962 np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_rcvdata_lower() 981 np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_rcvdata_lower() 1016 np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_rcvdata_lower() 1182 last = np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_reorder_timeout() 1189 np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_reorder_timeout() 1265 np = SLIST_FIRST(&hpriv->roq); in ng_pptpgre_reset()
|
| H A D | ng_bridge.c | 967 = SLIST_FIRST(oldList); in ng_bridge_rehash() 1002 struct ng_bridge_hent **hptr = &SLIST_FIRST(&priv->tab[bucket]); in ng_bridge_remove_hosts() 1053 struct ng_bridge_hent **hptr = &SLIST_FIRST(&priv->tab[bucket]); in ng_bridge_timeout()
|
| /f-stack/freebsd/mips/cavium/ |
| H A D | uart_bus_octeonusart.c | 100 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs); in uart_octeon_probe()
|
| /f-stack/freebsd/mips/atheros/ar531x/ |
| H A D | uart_bus_ar5315.c | 76 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs); in uart_ar5315_probe()
|
| /f-stack/freebsd/mips/atheros/ |
| H A D | uart_bus_ar71xx.c | 78 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs); in uart_ar71xx_probe()
|
| H A D | uart_bus_ar933x.c | 83 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs); in uart_ar933x_probe()
|
| /f-stack/freebsd/netinet/libalias/ |
| H A D | alias_mod.c | 168 t = SLIST_FIRST(&dll_chain); in walk_dll_chain()
|
| /f-stack/dpdk/drivers/vdpa/mlx5/ |
| H A D | mlx5_vdpa_mem.c | 23 entry = SLIST_FIRST(&priv->mr_list); in mlx5_vdpa_mem_dereg()
|
| /f-stack/dpdk/drivers/net/qede/ |
| H A D | qede_filter.c | 1034 tmp = SLIST_FIRST(&qdev->arfs_info.arfs_list_head); in qede_flow_flush()
|
| /f-stack/lib/ |
| H A D | ff_kern_timeout.c | 638 new = SLIST_FIRST(&cc->cc_callfree);
|