Home
last modified time | relevance | path

Searched refs:p_next (Results 1 – 25 of 41) sorted by relevance

12

/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_prtn.c310 cl_map_item_t *p_next; in osm_prtn_find_by_name() local
313 p_next = cl_qmap_head(&p_subn->prtn_pkey_tbl); in osm_prtn_find_by_name()
315 p = (osm_prtn_t *) p_next; in osm_prtn_find_by_name()
316 p_next = cl_qmap_next(&p->map_item); in osm_prtn_find_by_name()
393 cl_map_item_t *p_next; in osm_prtn_make_partitions() local
407 p_next = cl_qmap_head(&p_subn->prtn_pkey_tbl); in osm_prtn_make_partitions()
409 p = (osm_prtn_t *) p_next; in osm_prtn_make_partitions()
410 p_next = cl_qmap_next(&p->map_item); in osm_prtn_make_partitions()
428 p_next = cl_qmap_head(&p_subn->prtn_pkey_tbl); in osm_prtn_make_partitions()
430 p = (osm_prtn_t *) p_next; in osm_prtn_make_partitions()
[all …]
H A Dosm_pkey_mgr.c813 cl_map_item_t *p_next; in osm_pkey_mgr_process() local
837 p_next = cl_qmap_head(p_tbl); in osm_pkey_mgr_process()
838 while (p_next != cl_qmap_end(p_tbl)) { in osm_pkey_mgr_process()
839 p_prtn = (osm_prtn_t *) p_next; in osm_pkey_mgr_process()
840 p_next = cl_qmap_next(p_next); in osm_pkey_mgr_process()
849 p_next = cl_qmap_head(p_tbl); in osm_pkey_mgr_process()
851 p_port = (osm_port_t *) p_next; in osm_pkey_mgr_process()
852 p_next = cl_qmap_next(p_next); in osm_pkey_mgr_process()
864 p_next = cl_qmap_head(p_tbl); in osm_pkey_mgr_process()
866 p_sw = (osm_switch_t *) p_next; in osm_pkey_mgr_process()
[all …]
H A Dosm_db_pack.c65 char *p_next; in unpack_lids() local
71 p_num = strtok_r(lids_str, " \t", &p_next); in unpack_lids()
80 p_num = strtok_r(NULL, " \t", &p_next); in unpack_lids()
111 char *p_num, *p_next; in unpack_neighbor() local
116 p_num = strtok_r(tmp_str, ":", &p_next); in unpack_neighbor()
122 p_num = strtok_r(NULL, ":", &p_next); in unpack_neighbor()
H A Dosm_qos.c449 cl_map_item_t *p_next; in osm_qos_setup() local
479 p_next = cl_qmap_head(p_tbl); in osm_qos_setup()
480 while (p_next != cl_qmap_end(p_tbl)) { in osm_qos_setup()
482 p_port = (osm_port_t *) p_next; in osm_qos_setup()
483 p_next = cl_qmap_next(p_next); in osm_qos_setup()
H A Dosm_state_mgr.c795 cl_map_item_t *p_next; in state_mgr_light_sweep_start() local
827 p_next = cl_qmap_head(&sm->p_subn->node_guid_tbl); in state_mgr_light_sweep_start()
828 while (p_next != cl_qmap_end(&sm->p_subn->node_guid_tbl)) { in state_mgr_light_sweep_start()
829 p_node = (osm_node_t *) p_next; in state_mgr_light_sweep_start()
830 p_next = cl_qmap_next(p_next); in state_mgr_light_sweep_start()
1031 cl_map_item_t *p_next; in state_mgr_report_new_ports() local
1039 p_next = cl_qmap_head(&sm->p_subn->port_guid_tbl); in state_mgr_report_new_ports()
1040 while (p_next != cl_qmap_end(&sm->p_subn->port_guid_tbl)) { in state_mgr_report_new_ports()
1041 p_port = (osm_port_t *) p_next; in state_mgr_report_new_ports()
1042 p_next = cl_qmap_next(p_next); in state_mgr_report_new_ports()
H A Dosm_congestion_control.c357 cl_map_item_t *p_next; in osm_congestion_control_setup() local
376 p_next = cl_qmap_head(p_tbl); in osm_congestion_control_setup()
377 while (p_next != cl_qmap_end(p_tbl)) { in osm_congestion_control_setup()
378 osm_port_t *p_port = (osm_port_t *) p_next; in osm_congestion_control_setup()
382 p_next = cl_qmap_next(p_next); in osm_congestion_control_setup()
H A Dosm_prtn_config.c390 cl_map_iterator_t p_next, p_item; in manage_membership_change() local
422 p_next = cl_map_head(p_tbl); in manage_membership_change()
423 while (p_next != cl_map_end(p_tbl)) { in manage_membership_change()
424 p_item = p_next; in manage_membership_change()
425 p_next = cl_map_next(p_item); in manage_membership_change()
/freebsd/contrib/less/
H A Doutput.c99 char *anchor, *p, *p_next; in win_flush() local
129 for (anchor = p_next = obuf; in win_flush()
130 (p_next = memchr(p_next, ESC, ob - p_next)) != NULL; ) in win_flush()
132 p = p_next; in win_flush()
154 anchor = p_next = p; in win_flush()
163 p_next = p; in win_flush()
193 p_next = q; in win_flush()
282 if (!is_ansi_end(*p) || p == p_next) in win_flush()
335 p_next = anchor = p + 1; in win_flush()
337 p_next++; in win_flush()
/freebsd/contrib/ofed/opensm/include/complib/
H A Dcl_qlist.h117 struct _cl_list_item *p_next; member
291 p_new_item->p_next = p_list_item; in __cl_primitive_insert()
294 p_new_item->p_prev->p_next = p_new_item; in __cl_primitive_insert()
325 p_list_item->p_next->p_prev = p_list_item->p_prev; in __cl_primitive_remove()
327 p_list_item->p_prev->p_next = p_list_item->p_next; in __cl_primitive_remove()
331 if (p_list_item != p_list_item->p_next) { in __cl_primitive_remove()
332 p_list_item->p_next = NULL; in __cl_primitive_remove()
416 p_list->end.p_next = &p_list->end; in __cl_qlist_reset()
547 return (p_list_item->p_next); in cl_qlist_next()
H A Dcl_fleximap.h459 return ((cl_fmap_item_t *) p_map->nil.pool_item.list_item.p_next); in cl_fmap_head()
531 return ((cl_fmap_item_t *) p_item->pool_item.list_item.p_next); in cl_fmap_next()
804 p_map->nil.pool_item.list_item.p_next = &p_map->nil.pool_item.list_item; in cl_fmap_remove_all()
H A Dcl_qmap.h532 return ((cl_map_item_t *) p_map->nil.pool_item.list_item.p_next); in cl_qmap_head()
603 return ((cl_map_item_t *) p_item->pool_item.list_item.p_next); in cl_qmap_next()
836 p_map->nil.pool_item.list_item.p_next = &p_map->nil.pool_item.list_item; in cl_qmap_remove_all()
/freebsd/contrib/tcsh/
H A Dsh.proc.c274 for (pp = proclist.p_next; pp != NULL; pp = pp->p_next) in pchild()
469 fp->p_next = pp->p_next; in pwait()
627 for (pp = proclist.p_next; pp; pp = pp->p_next) in dowait()
687 for (np = proclist.p_next, idx = 0; np; np = np->p_next) in pflush()
810 for (np = proclist.p_next; np; np = np->p_next) in palloc()
825 pp->p_next = proclist.p_next; in palloc()
1328 for (pp = proclist.p_next; pp; pp = pp->p_next) in dojobs()
1662 for (pp = proclist.p_next; pp; pp = pp->p_next) in panystop()
1685 for (pp = proclist.p_next; pp; pp = pp->p_next) in pfind()
1691 for (pp = proclist.p_next; pp; pp = pp->p_next) in pfind()
[all …]
H A Dsh.proc.h47 struct process *p_next; /* next in global "proclist" */ member
H A Dtc.prompt.c546 for (pp = proclist.p_next; pp; pp = pp->p_next) in tprintf()
H A Dsh.c1865 for (pp = proclist.p_next; pp; pp = pp->p_next) { in phup()
2436 for (pp = proclist.p_next; pp; pp = pp->p_next) { in done()
H A Dtw.init.c1016 for (j = proclist.p_next; j != NULL; j = j->p_next) in tw_job_next()
/freebsd/sys/dev/qlnx/qlnxe/
H A Decore_chain.h332 struct ecore_chain_next *p_next = OSAL_NULL; in ecore_chain_advance_page() local
337 p_next = (struct ecore_chain_next *)(*p_next_elem); in ecore_chain_advance_page()
338 *p_next_elem = p_next->next_virt; in ecore_chain_advance_page()
699 struct ecore_chain_next *p_next; in ecore_chain_init_next_ptr_elem() local
703 p_next = (struct ecore_chain_next *)((u8 *)p_virt_curr + size); in ecore_chain_init_next_ptr_elem()
705 DMA_REGPAIR_LE(p_next->next_phys, p_phys_next); in ecore_chain_init_next_ptr_elem()
707 p_next->next_virt = p_virt_next; in ecore_chain_init_next_ptr_elem()
721 struct ecore_chain_next *p_next = OSAL_NULL; in ecore_chain_get_last_elem() local
733 while (p_next->next_virt != p_chain->p_virt_addr) { in ecore_chain_get_last_elem()
734 p_virt_addr = p_next->next_virt; in ecore_chain_get_last_elem()
[all …]
/freebsd/contrib/ofed/opensm/complib/
H A Dcl_list.c141 cl_qlist_tail(p_src_list)->p_next = cl_qlist_head(p_dest_list); in cl_qlist_insert_list_head()
148 p_dest_list->end.p_next = cl_qlist_head(p_src_list); in cl_qlist_insert_list_head()
193 cl_qlist_tail(p_dest_list)->p_next = cl_qlist_head(p_src_list); in cl_qlist_insert_list_tail()
201 cl_qlist_tail(p_src_list)->p_next = &p_dest_list->end; in cl_qlist_insert_list_tail()
317 cl_list_item_t *p_current_item, *p_next; in cl_qlist_move_items() local
329 p_next = cl_qlist_next(p_current_item); in cl_qlist_move_items()
336 p_current_item = p_next; in cl_qlist_move_items()
H A Dcl_map.c598 cl_map_item_t *p_item, *p_item2, *p_next; in cl_qmap_merge() local
606 p_next = cl_qmap_next(p_item); in cl_qmap_merge()
621 p_item = p_next; in cl_qmap_merge()
630 cl_map_item_t *p_next; in __cl_qmap_delta_move() local
636 p_next = cl_qmap_next(*pp_item); in __cl_qmap_delta_move()
643 (*pp_item) = p_next; in __cl_qmap_delta_move()
1543 p_next = cl_fmap_next(p_item); in cl_fmap_merge()
1558 p_item = p_next; in cl_fmap_merge()
1567 cl_fmap_item_t *p_next; in __cl_fmap_delta_move() local
1573 p_next = cl_fmap_next(*pp_item); in __cl_fmap_delta_move()
[all …]
/freebsd/crypto/openssl/crypto/
H A Dmem_sec.c305 struct sh_list_st **p_next; member
384 temp->p_next = (SH_LIST **)list; in sh_add_to_list()
387 OPENSSL_assert((char **)temp->next->p_next == list); in sh_add_to_list()
388 temp->next->p_next = &(temp->next); in sh_add_to_list()
400 temp->next->p_next = temp->p_next; in sh_remove_from_list()
401 *temp->p_next = temp->next; in sh_remove_from_list()
406 OPENSSL_assert(WITHIN_FREELIST(temp2->p_next) || WITHIN_ARENA(temp2->p_next)); in sh_remove_from_list()
/freebsd/usr.sbin/ctld/
H A Dctld.c595 TAILQ_INSERT_TAIL(&pg->pg_portals, portal, p_next); in portal_new()
828 TAILQ_FOREACH(portal, &pg->pg_portals, p_next) { in isns_do_register()
842 TAILQ_FOREACH(portal, &pg->pg_portals, p_next) { in isns_do_register()
1249 TAILQ_INSERT_TAIL(&conf->conf_ports, port, p_next); in port_new()
1335 TAILQ_FOREACH(port, &conf->conf_ports, p_next) { in port_find()
1725 TAILQ_FOREACH(portal, &pg->pg_portals, p_next)
1888 TAILQ_FOREACH(port, &conf->conf_ports, p_next) { in conf_verify()
2153 TAILQ_FOREACH(newp, &newpg->pg_portals, p_next) { in conf_apply()
2163 p_next) { in conf_apply()
2309 TAILQ_FOREACH(oldp, &oldpg->pg_portals, p_next) { in conf_apply()
[all …]
H A Dctld.h94 TAILQ_ENTRY(portal) p_next;
144 TAILQ_ENTRY(port) p_next;
H A Ddiscovery.c115 TAILQ_FOREACH(portal, &port->p_portal_group->pg_portals, p_next) { in discovery_add_target()
/freebsd/sys/kern/
H A Dsubr_prf.c105 char *p_next; member
284 pca.p_next = pca.p_bufr; in _vprintf()
287 *pca.p_next = '\0'; in _vprintf()
464 *ap->p_next++ = c; in putbuf()
468 *ap->p_next = '\0'; in putbuf()
474 ap->p_next = ap->p_bufr; in putbuf()
476 *ap->p_next = '\0'; in putbuf()
/freebsd/crypto/openssl/test/
H A Dectest.c1838 ECPARAMETERS **p_next = &p_ary[0]; in check_named_curve_from_ecparameters() local
1911 || !TEST_ptr(other_params = *p_next++ = in check_named_curve_from_ecparameters()
1928 || !TEST_ptr(other_params = *p_next++ = in check_named_curve_from_ecparameters()
1947 || !TEST_ptr(other_params = *p_next++ = in check_named_curve_from_ecparameters()
1955 || !TEST_ptr(other_params = *p_next++ = in check_named_curve_from_ecparameters()
1966 || !TEST_ptr(other_params = *p_next++ = in check_named_curve_from_ecparameters()
1977 || !TEST_ptr(other_params = *p_next++ = in check_named_curve_from_ecparameters()
1988 || !TEST_ptr(other_params = *p_next++ = in check_named_curve_from_ecparameters()
2002 for (p_next = &p_ary[0]; p_next < p_ary + OSSL_NELEM(g_ary); p_next++) in check_named_curve_from_ecparameters()
2003 ECPARAMETERS_free(*p_next); in check_named_curve_from_ecparameters()

12