Home
last modified time | relevance | path

Searched refs:wh (Results 1 – 25 of 57) sorted by relevance

123

/illumos-gate/usr/src/lib/libm/common/complex/
H A Dk_clog_rl.c411 long double t1, t2, t3, t4, tk, z, wh, w, zh, zk; local
457 wh = (long double) dk;
458 *er = half * ((y - wh) * (y + wh) - (t2 - wh * wh));
526 wh = x;
530 ((unsigned *)&wh)[0] = 0; /* 32 bits chopped */
532 lx = ((unsigned *)&wh)[2]; /* 56 rounded */
534 ((unsigned *)&wh)[2] = (j << 25);
535 lx = ((unsigned *)&wh)[1];
537 ((unsigned *)&wh)[1] = ly;
538 ((unsigned *)&wh)[0] += (ly == 0 && lx != 0);
[all …]
H A Dk_clog_r.c250 double t1, t2, t3, t4, tk, z, wh, w, zh, zk; in __k_clog_r() local
281 ((int *)&wh)[HIWORD] = iy; in __k_clog_r()
282 ((unsigned *)&wh)[LOWORD] = ly & 0xf8000000; in __k_clog_r()
283 *er = half * ((y - wh) * (y + wh) - (t2 - wh * wh)); in __k_clog_r()
344 ((int *)&wh)[HIWORD] = ix + (j >> 5); in __k_clog_r()
345 ((unsigned *)&wh)[LOWORD] = (j << 27); in __k_clog_r()
350 tk = wh - x; in __k_clog_r()
351 t3 = tk * tk - (two * wh * tk - (wh * wh - t1)); in __k_clog_r()
353 ((int *)&wh)[HIWORD] = iy + (j >> 5); in __k_clog_r()
354 ((unsigned *)&wh)[LOWORD] = (j << 27); in __k_clog_r()
[all …]
/illumos-gate/usr/src/uts/common/io/mac/plugins/
H A Dmac_wifi.c187 struct ieee80211_frame *wh; in mac_wifi_header() local
202 wh = (struct ieee80211_frame *)mp->b_rptr; in mac_wifi_header()
204 wh->i_fc[0] = IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_TYPE_DATA; in mac_wifi_header()
208 wh->i_fc[1] = IEEE80211_FC1_DIR_TODS; in mac_wifi_header()
209 IEEE80211_ADDR_COPY(wh->i_addr1, wdp->wd_bssid); in mac_wifi_header()
210 IEEE80211_ADDR_COPY(wh->i_addr2, saddr); in mac_wifi_header()
211 IEEE80211_ADDR_COPY(wh->i_addr3, daddr); in mac_wifi_header()
216 wh->i_fc[1] = IEEE80211_FC1_DIR_NODS; in mac_wifi_header()
217 IEEE80211_ADDR_COPY(wh->i_addr1, daddr); in mac_wifi_header()
218 IEEE80211_ADDR_COPY(wh->i_addr2, saddr); in mac_wifi_header()
[all …]
/illumos-gate/usr/src/uts/common/io/net80211/
H A Dnet80211_input.c64 struct ieee80211_frame *wh; in ieee80211_input() local
86 wh = (struct ieee80211_frame *)mp->b_rptr; in ieee80211_input()
88 dir = wh->i_fc[1] & IEEE80211_FC1_DIR_MASK; in ieee80211_input()
90 hdrspace = ieee80211_hdrspace(ic, wh); /* optimize */ in ieee80211_input()
111 wh = (struct ieee80211_frame *)mp->b_rptr; in ieee80211_input()
112 if ((wh->i_fc[0] & IEEE80211_FC0_VERSION_MASK) != in ieee80211_input()
115 "discard pkt with wrong version %x", wh->i_fc[0]); in ieee80211_input()
119 dir = wh->i_fc[1] & IEEE80211_FC1_DIR_MASK; in ieee80211_input()
120 type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK; in ieee80211_input()
121 subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK; in ieee80211_input()
[all …]
H A Dnet80211_output.c56 struct ieee80211_frame *wh, int type, const uint8_t *sa, const uint8_t *da, in ieee80211_send_setup() argument
59 wh->i_fc[0] = (uint8_t)(IEEE80211_FC0_VERSION_0 | type); in ieee80211_send_setup()
63 wh->i_fc[1] = IEEE80211_FC1_DIR_TODS; in ieee80211_send_setup()
64 IEEE80211_ADDR_COPY(wh->i_addr1, bssid); in ieee80211_send_setup()
65 IEEE80211_ADDR_COPY(wh->i_addr2, sa); in ieee80211_send_setup()
66 IEEE80211_ADDR_COPY(wh->i_addr3, da); in ieee80211_send_setup()
70 wh->i_fc[1] = IEEE80211_FC1_DIR_NODS; in ieee80211_send_setup()
71 IEEE80211_ADDR_COPY(wh->i_addr1, da); in ieee80211_send_setup()
72 IEEE80211_ADDR_COPY(wh->i_addr2, sa); in ieee80211_send_setup()
73 IEEE80211_ADDR_COPY(wh->i_addr3, bssid); in ieee80211_send_setup()
[all …]
H A Dnet80211_crypto_ccmp.c360 ccmp_init(struct ieee80211_frame *wh, uint64_t pn, size_t dlen, in ccmp_init() argument
372 IEEE80211_ADDR_COPY(b0 + 2, wh->i_addr2); in ccmp_init()
392 aad[2] = wh->i_fc[0] & 0x8f; /* magic #s */ in ccmp_init()
393 aad[3] = wh->i_fc[1] & 0xc7; /* magic #s */ in ccmp_init()
395 (void) memcpy(aad + 4, wh->i_addr1, 3 * IEEE80211_ADDR_LEN); in ccmp_init()
396 aad[22] = wh->i_seq[0] & IEEE80211_SEQ_FRAG_MASK; in ccmp_init()
408 if (IEEE80211_QOS_HAS_SEQ(wh)) { in ccmp_init()
410 (struct ieee80211_qosframe *)wh; in ccmp_init()
427 struct ieee80211_frame *wh; in ccmp_encrypt() local
433 wh = (struct ieee80211_frame *)mp->b_rptr; in ccmp_encrypt()
[all …]
H A Dnet80211_proto.c115 struct ieee80211_frame *wh; in ieee80211_dump_pkt() local
122 wh = (struct ieee80211_frame *)buf; in ieee80211_dump_pkt()
123 switch (wh->i_fc[1] & IEEE80211_FC1_DIR_MASK) { in ieee80211_dump_pkt()
126 ieee80211_macaddr_sprintf(wh->i_addr2)); in ieee80211_dump_pkt()
129 ieee80211_macaddr_sprintf(wh->i_addr1)); in ieee80211_dump_pkt()
132 ieee80211_macaddr_sprintf(wh->i_addr3)); in ieee80211_dump_pkt()
137 ieee80211_macaddr_sprintf(wh->i_addr2)); in ieee80211_dump_pkt()
140 ieee80211_macaddr_sprintf(wh->i_addr3)); in ieee80211_dump_pkt()
143 ieee80211_macaddr_sprintf(wh->i_addr1)); in ieee80211_dump_pkt()
148 ieee80211_macaddr_sprintf(wh->i_addr3)); in ieee80211_dump_pkt()
[all …]
H A Dnet80211_crypto_tkip.c619 const struct ieee80211_frame_addr4 *wh = in michael_mic_hdr() local
622 switch (wh->i_fc[1] & IEEE80211_FC1_DIR_MASK) { in michael_mic_hdr()
624 IEEE80211_ADDR_COPY(hdr, wh->i_addr1); /* DA */ in michael_mic_hdr()
625 IEEE80211_ADDR_COPY(hdr + IEEE80211_ADDR_LEN, wh->i_addr2); in michael_mic_hdr()
628 IEEE80211_ADDR_COPY(hdr, wh->i_addr3); /* DA */ in michael_mic_hdr()
629 IEEE80211_ADDR_COPY(hdr + IEEE80211_ADDR_LEN, wh->i_addr2); in michael_mic_hdr()
632 IEEE80211_ADDR_COPY(hdr, wh->i_addr1); /* DA */ in michael_mic_hdr()
633 IEEE80211_ADDR_COPY(hdr + IEEE80211_ADDR_LEN, wh->i_addr3); in michael_mic_hdr()
636 IEEE80211_ADDR_COPY(hdr, wh->i_addr3); /* DA */ in michael_mic_hdr()
637 IEEE80211_ADDR_COPY(hdr + IEEE80211_ADDR_LEN, wh->i_addr4); in michael_mic_hdr()
[all …]
H A Dnet80211_node.c1073 const struct ieee80211_frame *wh, int subtype, int rssi, int rstamp) in ieee80211_add_scan() argument
1079 in = ieee80211_find_node(nt, wh->i_addr3); in ieee80211_add_scan()
1084 in = ieee80211_alloc_node(ic, nt, wh->i_addr3); in ieee80211_add_scan()
1112 IEEE80211_ADDR_COPY(in->in_bssid, wh->i_addr3); in ieee80211_add_scan()
1161 ieee80211_init_neighbor(ieee80211_node_t *in, const struct ieee80211_frame *wh, in ieee80211_init_neighbor() argument
1166 IEEE80211_ADDR_COPY(in->in_bssid, wh->i_addr3); in ieee80211_init_neighbor()
1190 ieee80211_add_neighbor(ieee80211com_t *ic, const struct ieee80211_frame *wh, in ieee80211_add_neighbor() argument
1195 in = ieee80211_dup_bss(&ic->ic_sta, wh->i_addr2); in ieee80211_add_neighbor()
1197 ieee80211_init_neighbor(in, wh, sp); in ieee80211_add_neighbor()
1204 #define IEEE80211_IS_CTL(wh) \ argument
[all …]
H A Dnet80211_ht.c95 struct ieee80211_frame *wh; in ieee80211_decap_amsdu() local
100 wh = (struct ieee80211_frame *)mp->b_rptr; in ieee80211_decap_amsdu()
101 hdrspace = ieee80211_hdrspace(ic, wh); in ieee80211_decap_amsdu()
128 (void) memcpy(m0->b_wptr, (uint8_t *)wh, hdrspace); in ieee80211_decap_amsdu()
378 struct ieee80211_qosframe *wh; in ieee80211_ampdu_reorder() local
387 wh = (struct ieee80211_qosframe *)m->b_rptr; in ieee80211_ampdu_reorder()
388 ASSERT(wh->i_fc[0] == IEEE80211_FC0_QOSDATA); in ieee80211_ampdu_reorder()
390 if ((wh->i_fc[1] & IEEE80211_FC1_DIR_MASK) == IEEE80211_FC1_DIR_DSTODS) in ieee80211_ampdu_reorder()
391 tid = ((struct ieee80211_qosframe_addr4 *)wh)->i_qos[0]; in ieee80211_ampdu_reorder()
393 tid = wh->i_qos[0]; in ieee80211_ampdu_reorder()
[all …]
H A Dnet80211_crypto_none.c104 struct ieee80211_frame *wh = (struct ieee80211_frame *)mp->b_rptr; in none_decap() local
105 const uint8_t *ivp = (const uint8_t *)&wh[1]; in none_decap()
H A Dnet80211.c560 const struct ieee80211_frame *wh = data; in ieee80211_hdrsize() local
564 ASSERT((wh->i_fc[0]&IEEE80211_FC0_TYPE_MASK) != in ieee80211_hdrsize()
566 if ((wh->i_fc[1] & IEEE80211_FC1_DIR_MASK) == IEEE80211_FC1_DIR_DSTODS) in ieee80211_hdrsize()
568 if (IEEE80211_QOS_HAS_SEQ(wh)) in ieee80211_hdrsize()
594 const struct ieee80211_frame *wh = data; in ieee80211_anyhdrsize() local
596 if ((wh->i_fc[0]&IEEE80211_FC0_TYPE_MASK) == IEEE80211_FC0_TYPE_CTL) { in ieee80211_anyhdrsize()
597 switch (wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) { in ieee80211_anyhdrsize()
/illumos-gate/usr/src/uts/common/io/arn/
H A Darn_xmit.c322 struct ieee80211_frame *wh; in arn_tx_set_retry() local
323 wh = (struct ieee80211_frame *)bf->bf_dma.mem_va; in arn_tx_set_retry()
328 *(uint16_t *)&wh->i_seq[0] |= LE_16(0x0800); /* ??? */ in arn_tx_set_retry()
932 struct ieee80211_frame *wh, uint8_t type) in arn_test_get_txq() argument
945 if (wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_QOS) { in arn_test_get_txq()
946 qwh = (struct ieee80211_qosframe *)wh; in arn_test_get_txq()
1001 struct ieee80211_frame *wh) in assign_aggr_tid_seqno() argument
1009 in = ieee80211_find_txnode(ic, wh->i_addr1); in assign_aggr_tid_seqno()
1019 if (wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_QOS) { in assign_aggr_tid_seqno()
1020 qwh = (struct ieee80211_qosframe *)wh; in assign_aggr_tid_seqno()
[all …]
H A Darn_recv.c428 struct ieee80211_frame *wh; in arn_rx_handler() local
531 wh = (struct ieee80211_frame *)rx_mp->b_rptr; in arn_rx_handler()
533 if ((wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) == in arn_rx_handler()
549 if (IEEE80211_IS_DATA_QOS(wh)) { in arn_rx_handler()
550 if ((wh->i_fc[1] & IEEE80211_FC1_DIR_MASK) == in arn_rx_handler()
553 wh)->i_qos[0]; in arn_rx_handler()
556 ((struct ieee80211_qosframe *)wh)->i_qos[0]; in arn_rx_handler()
569 in = ieee80211_find_rxnode(ic, wh); in arn_rx_handler()
610 if ((wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) == in arn_rx_handler()
612 subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK; in arn_rx_handler()
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dtgammal.c883 long double r1, r2, t2, z, xh, xl, yh, yl, zh, z1, z2, zl, x5, wh, wl; in gam_n() local
944 wh = CHOPPED((z1 * (yy.h + yy.l))); in gam_n()
945 wl = (zl * yy.h + z1 * yy.l) - (wh - zh * yy.h); in gam_n()
947 rr.h = xh * wh; in gam_n()
948 rr.l = z2 * wl + xl * wh; in gam_n()
981 wh = CHOPPED((x5 * (yy.h + yy.l))); in gam_n()
982 wl = (z1 * yy.h + x5 * yy.l) - (wh - zh * yy.h); in gam_n()
983 rr.h = wh * xh; in gam_n()
984 rr.l = z * wl + xl * wh; in gam_n()
1001 wh = CHOPPED((z2 * (yy.h + yy.l))); in gam_n()
[all …]
H A Dtgamma.c1408 double r1, r2, t2, z, xh, xl, yh, yl, zh, z1, z2, zl, x5, wh, wl; in gam_n() local
1503 wh = (double) ((float) (x5 * (yy.h + yy.l))); in gam_n()
1504 wl = (z1 * yy.h + x5 * yy.l) - (wh - zh * yy.h); in gam_n()
1505 rr.h = wh * xh; in gam_n()
1506 rr.l = z * wl + xl * wh; in gam_n()
1523 wh = (double) ((float) (z2 * (yy.h + yy.l))); in gam_n()
1524 wl = (z2 * yy.l + yl * yy.h) - (wh - (yh - 6.0) * yy.h); in gam_n()
1525 rr.h = wh * xh; in gam_n()
1526 rr.l = z * wl + xl * wh; in gam_n()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dtdump.c94 if(t->wh.whinc) in p_tree()
96 if(p_tree((Shnode_t*)(t->wh.whinc))<0) in p_tree()
104 if(p_tree(t->wh.whtre)<0) in p_tree()
106 return(p_tree(t->wh.dotre)); in p_tree()
H A Ddeparse.c152 if(t->wh.whinc) in p_tree()
159 if(t->wh.whinc) in p_tree()
161 struct argnod *arg = (t->wh.whtre)->ar.arexpr; in p_tree()
165 arg = (t->wh.whinc)->arexpr; in p_tree()
169 p_tree(t->wh.whtre,0); in p_tree()
170 t = t->wh.dotre; in p_tree()
176 if(tr->tre.tretyp==TWH && tr->wh.whinc && t->lst.lstlef->tre.tretyp==TARITH) in p_tree()
/illumos-gate/usr/src/uts/common/pcmcia/cs/
H A Dcs_stubs.c279 csx_RequestWindow(client_handle_t ch, window_handle_t *wh, win_req_t *wr) in csx_RequestWindow() argument
285 return (CardServices(RequestWindow, ch, wh, wr)); in csx_RequestWindow()
289 csx_ReleaseWindow(window_handle_t wh) in csx_ReleaseWindow() argument
293 cmn_err(CE_CONT, "csx_ReleaseWindow: handle: 0x%x\n", wh); in csx_ReleaseWindow()
295 return (CardServices(ReleaseWindow, wh)); in csx_ReleaseWindow()
299 csx_ModifyWindow(window_handle_t wh, modify_win_t *mw) in csx_ModifyWindow() argument
303 cmn_err(CE_CONT, "csx_ModifyWindow: handle: 0x%x\n", wh); in csx_ModifyWindow()
305 return (CardServices(ModifyWindow, wh, mw)); in csx_ModifyWindow()
309 csx_MapMemPage(window_handle_t wh, map_mem_page_t *mmp) in csx_MapMemPage() argument
313 cmn_err(CE_CONT, "csx_MapMemPage: handle: 0x%x\n", wh); in csx_MapMemPage()
[all …]
/illumos-gate/usr/src/uts/common/io/zyd/
H A Dzyd.c227 struct ieee80211_frame *wh; in zyd_receive() local
262 wh = (struct ieee80211_frame *)m->b_rptr; in zyd_receive()
263 in = ieee80211_find_rxnode(ic, wh); in zyd_receive()
285 struct ieee80211_frame *wh; in zyd_send() local
337 wh = (struct ieee80211_frame *)m->b_rptr; in zyd_send()
338 in = ieee80211_find_txnode(ic, wh->i_addr1); in zyd_send()
351 if (wh->i_fc[1] & IEEE80211_FC1_WEP) { in zyd_send()
361 wh = (struct ieee80211_frame *)m->b_rptr; in zyd_send()
403 if (!IEEE80211_IS_MULTICAST(wh->i_addr1)) { in zyd_send()
419 (wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) in zyd_send()
/illumos-gate/usr/src/uts/common/io/ath/
H A Dath_main.c536 struct ieee80211_frame *wh; in ath_rx_handler() local
606 wh = (struct ieee80211_frame *)rx_mp->b_rptr; in ath_rx_handler()
607 if ((wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) == in ath_rx_handler()
625 in = ieee80211_find_rxnode(ic, wh); in ath_rx_handler()
673 struct ieee80211_frame *wh; in ath_tx_start() local
692 wh = (struct ieee80211_frame *)mp->b_rptr; in ath_tx_start()
693 iswep = wh->i_fc[1] & IEEE80211_FC1_WEP; in ath_tx_start()
732 wh = (struct ieee80211_frame *)mp->b_rptr; in ath_tx_start()
770 switch (wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) { in ath_tx_start()
772 subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK; in ath_tx_start()
[all …]
/illumos-gate/usr/src/uts/common/io/wpi/
H A Dwpi.c1664 struct ieee80211_frame *wh; local
1746 wh = (struct ieee80211_frame *)(head + 1);
1750 ieee80211_dump_pkt((uint8_t *)wh, len, 0, 0);
1753 in = ieee80211_find_rxnode(ic, wh);
1756 (void) memcpy(mp->b_wptr, wh, len);
2082 struct ieee80211_frame *wh; local
2138 wh = (struct ieee80211_frame *)m->b_rptr;
2140 in = ieee80211_find_txnode(ic, wh->i_addr1);
2158 if (!IEEE80211_IS_MULTICAST(wh->i_addr1)) {
2164 if (wh->i_fc[1] & IEEE80211_FC1_WEP) {
[all …]
/illumos-gate/usr/src/uts/common/io/ral/
H A Drt2560.c1178 struct ieee80211_frame *wh; in rt2560_rx_intr() local
1252 wh = (struct ieee80211_frame *)m->b_rptr; in rt2560_rx_intr()
1253 ni = ieee80211_find_rxnode(ic, wh); in rt2560_rx_intr()
1433 struct ieee80211_frame *wh; in rt2560_mgmt_send() local
1474 wh = (struct ieee80211_frame *)m->b_rptr; in rt2560_mgmt_send()
1475 ni = ieee80211_find_txnode(ic, wh->i_addr1); in rt2560_mgmt_send()
1484 if (wh->i_fc[1] & IEEE80211_FC1_WEP) { in rt2560_mgmt_send()
1492 wh = (struct ieee80211_frame *)m->b_rptr; in rt2560_mgmt_send()
1505 wh = (struct ieee80211_frame *)m->b_rptr; in rt2560_mgmt_send()
1506 if (!IEEE80211_IS_MULTICAST(wh->i_addr1)) { in rt2560_mgmt_send()
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Dexpand.c66 expand(list, wh) in expand() argument
68 int wh;
76 printf("expand(%x, %d)\nlist = ", list, wh);
80 if (wh == 0) {
89 which = wh;
/illumos-gate/usr/src/uts/common/pcmcia/sys/
H A Dcs_priv.h620 #define GET_WINDOW_NUMBER(wh) ((wh) & WINDOW_HANDLE_MASK) argument
621 #define GET_WINDOW_MAGIC(wh) ((wh) & ~WINDOW_HANDLE_MASK) argument

123