/titanic_50/usr/src/lib/libbc/inc/include/rpc/ |
H A D | clnt.h | 139 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \ argument 140 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs)) 141 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \ argument 142 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs)) 149 #define CLNT_ABORT(rh) ((*(rh)->cl_ops->cl_abort)(rh)) argument 150 #define clnt_abort(rh) ((*(rh)->cl_ops->cl_abort)(rh)) argument 157 #define CLNT_GETERR(rh, errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp)) argument 158 #define clnt_geterr(rh, errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp)) argument 168 #define CLNT_FREERES(rh, xres, resp) ((*(rh)->cl_ops->cl_freeres)\ argument 169 (rh, xres, resp)) [all …]
|
/titanic_50/usr/src/lib/libtsnet/common/ |
H A D | tsol_sgetrhent.c | 103 parse_address(tsol_rhent_t *rh, const char *addrbuf) in parse_address() argument 111 rh->rh_address.ta_family = AF_INET; in parse_address() 113 &rh->rh_address.ta_addr_v4) > 0) { in parse_address() 114 if (rh->rh_prefix == -1) in parse_address() 115 rh->rh_prefix = get_classful_prefix(rh-> in parse_address() 117 } else if ((rh->rh_address.ta_addr_v4.s_addr = in parse_address() 119 len = get_network_prefix(&rh->rh_address.ta_addr_v4. in parse_address() 121 if (rh->rh_prefix == -1) in parse_address() 122 rh->rh_prefix = len; in parse_address() 127 aptr = (const uchar_t *)&rh->rh_address.ta_addr_v4; in parse_address() [all …]
|
/titanic_50/usr/src/stand/lib/fs/nfs/ |
H A D | clnt.h | 105 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \ argument 106 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs)) 113 #define CLNT_ABORT(rh) ((*(rh)->cl_ops->cl_abort)(rh)) argument 120 #define CLNT_GETERR(rh, errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp)) argument 129 #define CLNT_FREERES(rh, xres, resp) ((*(rh)->cl_ops->cl_freeres)\ argument 130 (rh, xres, resp)) 161 #define CLNT_DESTROY(rh) ((*(rh)->cl_ops->cl_destroy)(rh)) argument
|
/titanic_50/usr/src/uts/common/rpc/ |
H A D | clnt.h | 533 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \ argument 534 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs)) 535 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \ argument 536 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs)) 549 #define CLNT_SEND(rh, proc, xargs, argsp) \ argument 550 ((*(rh)->cl_ops->cl_send)(rh, proc, xargs, argsp)) 551 #define clnt_send(rh, proc, xargs, argsp) \ argument 552 ((*(rh)->cl_ops->cl_send)(rh, proc, xargs, argsp)) 560 #define CLNT_ABORT(rh) ((*(rh)->cl_ops->cl_abort)(rh)) argument 561 #define clnt_abort(rh) ((*(rh)->cl_ops->cl_abort)(rh)) argument [all …]
|
/titanic_50/usr/src/cmd/cmd-inet/usr.lib/in.ripngd/ |
H A D | timer.c | 53 struct rthash *rh; in timer() local 105 for (rh = net_hashes[i]; in timer() 106 rh < &net_hashes[i][ROUTEHASHSIZ]; rh++) { in timer() 107 for (rt = rh->rt_forw; rt != (struct rt_entry *)rh; in timer() 160 struct rthash *rh; in term() local 170 for (rh = net_hashes[i]; rh < &net_hashes[i][ROUTEHASHSIZ]; in term() 171 rh++) { in term() 172 for (rt = rh->rt_forw; rt != (struct rt_entry *)rh; in term()
|
H A D | tables.c | 181 struct rthash *rh; in rtlookup() local 189 rh = &net_hashes[prefix_length][hash & ROUTEHASHMASK]; in rtlookup() 191 for (rt = rh->rt_forw; rt != (struct rt_entry *)rh; rt = rt->rt_forw) { in rtlookup() 238 struct rthash *rh; in rtadd() local 249 rh = (struct rthash *) in rtadd() 251 if (rh == NULL) in rtadd() 253 for (trh = rh; trh < &rh[ROUTEHASHSIZ]; trh++) in rtadd() 255 net_hashes[prefix_length] = rh; in rtadd() 260 rh = &net_hashes[prefix_length][hash & ROUTEHASHMASK]; in rtadd() 291 insque(rt, rh); in rtadd() [all …]
|
H A D | output.c | 138 struct rthash *rh; in supply() local 155 for (rh = net_hashes[i]; rh < &net_hashes[i][ROUTEHASHSIZ]; in supply() 156 rh++) { in supply() 157 for (rt = rh->rt_forw; rt != (struct rt_entry *)rh; in supply()
|
/titanic_50/usr/src/uts/common/os/ |
H A D | labelsys.c | 336 tsol_tnrhc_t *rh; in tnrh_hash_add() local 354 for (rhp = &tnrhc_hash->tnrh_list; (rh = *rhp) != NULL; in tnrh_hash_add() 355 rhp = &rh->rhc_next) { in tnrh_hash_add() 356 ASSERT(rh->rhc_host.ta_family == AF_INET); in tnrh_hash_add() 357 if (((rh->rhc_host.ta_addr_v4.s_addr ^ in tnrh_hash_add() 374 for (rhp = &tnrhc_hash->tnrh_list; (rh = *rhp) != NULL; in tnrh_hash_add() 375 rhp = &rh->rhc_next) { in tnrh_hash_add() 376 ASSERT(rh->rhc_host.ta_family == AF_INET6); in tnrh_hash_add() 377 if (V6_MASK_EQ_2(rh->rhc_host.ta_addr_v6, tmpmask_v6, in tnrh_hash_add() 386 if (rh != NULL) { in tnrh_hash_add() [all …]
|
/titanic_50/usr/src/lib/libm/common/C/ |
H A D | __tan.c | 124 double a, t, z, w = 0.0L, s, c, r, rh, xh, xl; in __k_tan() local 150 rh = r = -one / w; in __k_tan() 151 ((int *) &rh)[LOWORD] = 0; in __k_tan() 155 return (rh + r * ((one + rh * xh) + rh * xl)); in __k_tan() 187 rh = (one - t) * r; in __k_tan() 188 ((int *) &rh)[LOWORD] = 0; in __k_tan() 192 z = rh + r * (((one - rh * xh) - t) - rh * xl); in __k_tan()
|
/titanic_50/usr/src/uts/common/io/ |
H A D | gldutil.c | 1402 struct gld_ri *rh; in gld_interpret_tr() local 1461 rh = (struct gld_ri *)NULL; in gld_interpret_tr() 1500 rh = (struct gld_ri *)&mh->tr_ri; in gld_interpret_tr() 1501 if ((rh->len & 1) || rh->len < 2) { in gld_interpret_tr() 1508 rh->len); in gld_interpret_tr() 1512 if (pktinfo->pktLen < sizeof (struct tr_mac_frm_nori) + rh->len) in gld_interpret_tr() 1514 pktinfo->macLen += rh->len; in gld_interpret_tr() 1533 gld_rcc_receive(macinfo, pktinfo, rh, in gld_interpret_tr() 1555 struct gld_ri *rh; in gld_unitdata_tr() local 1638 gld_rcc_send(macinfo, WR(gld->gld_qptr), dhost, &rh, llcmp->b_rptr); in gld_unitdata_tr() [all …]
|
/titanic_50/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_ether.c | 781 print_sr(struct tr_ri *rh) in print_sr() argument 787 rh->dir, Mtutab[rh->mtu]); in print_sr() 789 hops = (int)(rh->len - 2) / (int)2; in print_sr() 794 if (! bridge(rh->rd[ii])) { in print_sr() 796 ring(rh->rd[ii])); in print_sr() 799 ring(rh->rd[ii]), bridge(rh->rd[ii])); in print_sr() 810 struct tr_ri *rh; in interpret_tr() local 847 rh = (struct tr_ri *)&mh->ri; in interpret_tr() 901 sprintf(get_sum_line(), print_sr(rh)); in interpret_tr() 946 sprintf(get_line(ACFCDASA_LEN, rh->len), print_sr(rh)); in interpret_tr() [all …]
|
/titanic_50/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | StreamListener.java | 168 RequestHandler rh = new RequestHandler(s, interfac, config); in run() local 169 rh.start(); in run()
|
H A D | Listener.java | 245 RequestHandler rh = in run() local 247 rh.start(); in run()
|
/titanic_50/usr/src/uts/common/io/aggr/ |
H A D | aggr_send.c | 80 aggr_find_tx_ring(void *arg, mblk_t *mp, uintptr_t hint, mac_ring_handle_t *rh) in aggr_find_tx_ring() argument 113 *rh = port->lp_pseudo_tx_rings[hash % port->lp_tx_ring_cnt]; in aggr_find_tx_ring() 115 *rh = port->lp_pseudo_tx_rings[0]; in aggr_find_tx_ring()
|
/titanic_50/usr/src/uts/common/io/igb/ |
H A D | igb_stat.c | 277 igb_rx_ring_stat(mac_ring_driver_t rh, uint_t stat, uint64_t *val) in igb_rx_ring_stat() argument 279 igb_rx_ring_t *rx_ring = (igb_rx_ring_t *)rh; in igb_rx_ring_stat() 302 igb_tx_ring_stat(mac_ring_driver_t rh, uint_t stat, uint64_t *val) in igb_tx_ring_stat() argument 304 igb_tx_ring_t *tx_ring = (igb_tx_ring_t *)rh; in igb_tx_ring_stat()
|
/titanic_50/usr/src/lib/libdtrace/common/ |
H A D | dt_aggregate.c | 734 dt_ahashent_t *rh = *((dt_ahashent_t **)rhs); in dt_aggregate_hashcmp() local 736 dtrace_aggdesc_t *ragg = rh->dtahe_data.dtada_desc; in dt_aggregate_hashcmp() 751 dt_ahashent_t *rh = *((dt_ahashent_t **)rhs); in dt_aggregate_varcmp() local 755 rid = dt_aggregate_aggvarid(rh); in dt_aggregate_varcmp() 770 dt_ahashent_t *rh = *((dt_ahashent_t **)rhs); in dt_aggregate_keycmp() local 772 dtrace_aggdesc_t *ragg = rh->dtahe_data.dtada_desc; in dt_aggregate_keycmp() 796 rdata = rh->dtahe_data.dtada_data + rrec->dtrd_offset; in dt_aggregate_keycmp() 881 dt_ahashent_t *rh = *((dt_ahashent_t **)rhs); in dt_aggregate_valcmp() local 883 dtrace_aggdesc_t *ragg = rh->dtahe_data.dtada_desc; in dt_aggregate_valcmp() 885 caddr_t rdata = rh->dtahe_data.dtada_data; in dt_aggregate_valcmp() [all …]
|
/titanic_50/usr/src/uts/common/io/usb/hcd/openhci/ |
H A D | ohci_hub.c | 720 ohci_root_hub_t *rh; in ohci_handle_port_power() local 726 rh = &ohcip->ohci_root_hub; in ohci_handle_port_power() 745 rh->rh_port_status[p] = 0; in ohci_handle_port_power() 746 rh->rh_port_state[p] = DISCONNECTED; in ohci_handle_port_power() 756 rh->rh_port_status[port] = 0; in ohci_handle_port_power() 757 rh->rh_port_state[port] = DISCONNECTED; in ohci_handle_port_power() 771 rh->rh_port_status[p] = 0; in ohci_handle_port_power() 772 rh->rh_port_state[p] = POWERED_OFF; in ohci_handle_port_power() 782 rh->rh_port_status[port] = 0; in ohci_handle_port_power() 783 rh->rh_port_state[port] = POWERED_OFF; in ohci_handle_port_power()
|
/titanic_50/usr/src/uts/i86pc/io/ |
H A D | immu_intrmap.c | 55 #define IRTE_LOW(dst, vector, dlm, tm, rh, dm, fpd, p) \ argument 60 ((uint64_t)(rh) << 3) | \ 757 uchar_t vector, dlm, tm, rh, dm; in immu_intrmap_map() local 770 rh = 0; in immu_intrmap_map() 785 rh = MSI_ADDR_RH_FIXED; in immu_intrmap_map() 797 irte.lo = IRTE_LOW(dst, vector, dlm, tm, rh, dm, 0, 1); in immu_intrmap_map() 809 irte.lo = IRTE_LOW(dst, vector, dlm, tm, rh, dm, 0, 1); in immu_intrmap_map()
|
/titanic_50/usr/src/uts/common/io/usb/hcd/ehci/ |
H A D | ehci_hub.c | 700 ehci_root_hub_t *rh; in ehci_handle_port_power() local 707 rh = &ehcip->ehci_root_hub; in ehci_handle_port_power() 728 rh->rh_port_status[port] = 0; in ehci_handle_port_power() 729 rh->rh_port_state[port] = DISCONNECTED; in ehci_handle_port_power() 738 rh->rh_port_status[port] = 0; in ehci_handle_port_power() 739 rh->rh_port_state[port] = POWERED_OFF; in ehci_handle_port_power() 972 ehci_root_hub_t *rh; in ehci_handle_port_reset() local 979 rh = &ehcip->ehci_root_hub; in ehci_handle_port_reset() 998 if (rh->rh_companion_controllers) { in ehci_handle_port_reset() 1059 if (rh->rh_companion_controllers) { in ehci_handle_port_reset()
|
/titanic_50/usr/src/uts/common/io/xge/drv/ |
H A D | xgell.h | 422 int xgell_rx_ring_stat(mac_ring_driver_t rh, uint_t stat, uint64_t *val); 424 int xgell_tx_ring_stat(mac_ring_driver_t rh, uint_t stat, uint64_t *val);
|
H A D | xgell.c | 1399 xgell_rx_ring_start(mac_ring_driver_t rh, uint64_t mr_gen_num) in xgell_rx_ring_start() argument 1401 xgell_rx_ring_t *rx_ring = (xgell_rx_ring_t *)rh; in xgell_rx_ring_start() 1410 xgell_rx_ring_stop(mac_ring_driver_t rh) in xgell_rx_ring_stop() argument 1416 xgell_tx_ring_start(mac_ring_driver_t rh, uint64_t useless) in xgell_tx_ring_start() argument 1423 xgell_tx_ring_stop(mac_ring_driver_t rh) in xgell_tx_ring_stop() argument 1440 const int index, mac_ring_info_t *infop, mac_ring_handle_t rh) in xgell_fill_ring() argument 1460 rx_ring->ring_handle = rh; in xgell_fill_ring() 1483 tx_ring->ring_handle = rh; in xgell_fill_ring() 2273 xgell_rx_ring_stat(mac_ring_driver_t rh, uint_t stat, uint64_t *val) in xgell_rx_ring_stat() argument 2275 xgell_rx_ring_t *rx_ring = (xgell_rx_ring_t *)rh; in xgell_rx_ring_stat() [all …]
|
/titanic_50/usr/src/cmd/lp/filter/postscript/font/devpost/charlib/ |
H A D | Makefile | 31 ob rc rf rh sq
|
/titanic_50/usr/src/cmd/tsol/tnd/ |
H A D | tnd.h | 123 struct tsol_rhent rh; member
|
/titanic_50/usr/src/common/mpi/ |
H A D | mp_gf2m-priv.h | 86 void s_bmul_1x1(mp_digit *rh, mp_digit *rl, const mp_digit a, const mp_digit b);
|
/titanic_50/usr/src/uts/common/io/i40e/ |
H A D | i40e_gld.c | 434 i40e_ring_start(mac_ring_driver_t rh, uint64_t gen_num) in i40e_ring_start() argument 436 i40e_trqpair_t *itrq = (i40e_trqpair_t *)rh; in i40e_ring_start() 480 const int ring_index, mac_ring_info_t *infop, mac_ring_handle_t rh) in i40e_fill_tx_ring() argument 493 itrq->itrq_mactxring = rh; in i40e_fill_tx_ring() 513 const int ring_index, mac_ring_info_t *infop, mac_ring_handle_t rh) in i40e_fill_rx_ring() argument 528 itrq->itrq_macrxring = rh; in i40e_fill_rx_ring()
|