Home
last modified time | relevance | path

Searched refs:ix (Results 1 – 20 of 20) sorted by relevance

/f-stack/freebsd/netpfil/ipfw/
H A Ddn_sched_prio.c60 #define test_bit(ix, pData) ((*pData) & (1<<(ix))) argument
61 #define __set_bit(ix, pData) (*pData) |= (1<<(ix)) argument
62 #define __clear_bit(ix, pData) (*pData) &= ~(1<<(ix)) argument
66 #define __clear_bit(ix, pData) (*pData) &= ~(1<<(ix)) argument
H A Ddn_sched_qfq.c98 if (ix < 0 || ix > 31) in test_bit()
99 D("bad index %d", ix); in test_bit()
100 return *p & (1<<ix); in test_bit()
104 if (ix < 0 || ix > 31) in __set_bit()
106 *p |= (1<<ix); in __set_bit()
110 if (ix < 0 || ix > 31) in __clear_bit()
112 *p &= ~(1<<ix); in __clear_bit()
116 #define test_bit(ix, pData) ((*pData) & (1<<(ix))) argument
117 #define __set_bit(ix, pData) (*pData) |= (1<<(ix)) argument
118 #define __clear_bit(ix, pData) (*pData) &= ~(1<<(ix)) argument
[all …]
H A Dip_fw_nat.c143 flush_nat_ptrs(struct ip_fw_chain *chain, const int ix) in flush_nat_ptrs() argument
152 (ix < 0 || cmd->nat->id == ix)) in flush_nat_ptrs()
/f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_freebsd.c36 static HAL_BOOL ar9300ClrMulticastFilterIndex(struct ath_hal *ah, uint32_t ix);
897 ar9300ClrMulticastFilterIndex(struct ath_hal *ah, uint32_t ix) in ar9300ClrMulticastFilterIndex() argument
901 if (ix >= 64) in ar9300ClrMulticastFilterIndex()
903 if (ix >= 32) { in ar9300ClrMulticastFilterIndex()
905 OS_REG_WRITE(ah, AR_MCAST_FIL1, (val &~ (1<<(ix-32)))); in ar9300ClrMulticastFilterIndex()
908 OS_REG_WRITE(ah, AR_MCAST_FIL0, (val &~ (1<<ix))); in ar9300ClrMulticastFilterIndex()
917 ar9300SetMulticastFilterIndex(struct ath_hal *ah, uint32_t ix) in ar9300SetMulticastFilterIndex() argument
921 if (ix >= 64) in ar9300SetMulticastFilterIndex()
923 if (ix >= 32) { in ar9300SetMulticastFilterIndex()
925 OS_REG_WRITE(ah, AR_MCAST_FIL1, (val | (1<<(ix-32)))); in ar9300SetMulticastFilterIndex()
[all …]
H A Dar9300_stub_funcs.h119 extern HAL_BOOL ar9300_Stub_ClrMulticastFilterIndex(struct ath_hal *, uint32_t ix);
120 extern HAL_BOOL ar9300_Stub_SetMulticastFilterIndex(struct ath_hal *, uint32_t ix);
H A Dar9300_stub_funcs.c716 ar9300_Stub_ClrMulticastFilterIndex(struct ath_hal *ah, uint32_t ix) in ar9300_Stub_ClrMulticastFilterIndex() argument
724 ar9300_Stub_SetMulticastFilterIndex(struct ath_hal *ah, uint32_t ix) in ar9300_Stub_SetMulticastFilterIndex() argument
H A Dar9300_reset.c6067 int nmeasurement=0, im, ix, iy, temp; in ar9300_tx_iq_cal_post_proc() local
6220 for( ix=0;ix<max_iqcal-1;ix++){ in ar9300_tx_iq_cal_post_proc()
6221 for( iy=ix+1;iy<=max_iqcal-1;iy++){ in ar9300_tx_iq_cal_post_proc()
6223 coeff.mag_coeff[ch_idx][im][ix]) { in ar9300_tx_iq_cal_post_proc()
6225 temp=coeff.mag_coeff[ch_idx][im][ix]; in ar9300_tx_iq_cal_post_proc()
6226 coeff.mag_coeff[ch_idx][im][ix] = coeff.mag_coeff[ch_idx][im][iy]; in ar9300_tx_iq_cal_post_proc()
6230 coeff.phs_coeff[ch_idx][im][ix]){ in ar9300_tx_iq_cal_post_proc()
6232 temp=coeff.phs_coeff[ch_idx][im][ix]; in ar9300_tx_iq_cal_post_proc()
6233 coeff.phs_coeff[ch_idx][im][ix]=coeff.phs_coeff[ch_idx][im][iy]; in ar9300_tx_iq_cal_post_proc()
/f-stack/freebsd/sys/
H A Dipc.h126 #define IXSEQ_TO_IPCID(ix,perm) (((perm.seq) << 16) | (ix & 0xffff)) argument
/f-stack/freebsd/net80211/
H A Dieee80211_ddb.c79 static void _db_show_ssid(const char *tag, int ix, int len, const uint8_t *);
81 static void _db_show_key(const char *tag, int ix, const struct ieee80211_key *);
195 _db_show_txampdu(const char *sep, int ix, const struct ieee80211_tx_ampdu *tap) in _db_show_txampdu() argument
198 sep, ix, tap, tap->txa_flags, IEEE80211_AGGR_BITS, in _db_show_txampdu()
210 _db_show_rxampdu(const char *sep, int ix, const struct ieee80211_rx_ampdu *rap) in _db_show_rxampdu() argument
216 sep, ix, rap, rap->rxa_flags, ix /*XXX */); in _db_show_rxampdu()
729 _db_show_ssid(const char *tag, int ix, int len, const uint8_t *ssid) in _db_show_ssid() argument
734 db_printf(tag, ix); in _db_show_ssid()
770 _db_show_key(const char *tag, int ix, const struct ieee80211_key *wk) in _db_show_key() argument
776 db_printf(tag, ix); in _db_show_key()
H A Dieee80211_crypto.h239 struct ieee80211_key *k, ieee80211_keyix ix) in ieee80211_crypto_resetkey() argument
243 k->wk_keyix = k->wk_rxkeyix = ix; in ieee80211_crypto_resetkey()
H A Dieee80211_sta.c1555 int ix = aid / NBBY; in sta_recv_mgmt() local
1566 if (min <= ix && ix <= max && in sta_recv_mgmt()
/f-stack/dpdk/drivers/net/octeontx2/
H A Dotx2_flow.c853 int lid, lt, ld, fl, ix; in flow_process_mkex_cfg() local
873 for (ix = 0; ix < NPC_MAX_INTF; ix++) { in flow_process_mkex_cfg()
877 &npc->prx_fxcfg[ix][ld][fl].xtract[0]; in flow_process_mkex_cfg()
878 val = kex_rsp->intf_ld_flags[ix][ld][fl]; in flow_process_mkex_cfg()
888 for (ix = 0; ix < NPC_MAX_INTF; ix++) { in flow_process_mkex_cfg()
892 x_info = &(*p)[ix][lid][lt].xtract[ld]; in flow_process_mkex_cfg()
893 val = (*q)[ix][lid][lt][ld]; in flow_process_mkex_cfg()
/f-stack/freebsd/kern/
H A Dsysv_sem.c195 #define SEMU(ix) \ argument
196 ((struct sem_undo *)(((intptr_t)semu) + (ix) * seminfo.semusz))
1424 int semid, semnum, adjval, ix; in semexit_myhook() local
1452 for (ix = 0; ix < suptr->un_cnt; ix++) { in semexit_myhook()
1453 semid = suptr->un_ent[ix].un_id; in semexit_myhook()
1454 semnum = suptr->un_ent[ix].un_num; in semexit_myhook()
1455 adjval = suptr->un_ent[ix].un_adjval; in semexit_myhook()
1456 seq = suptr->un_ent[ix].un_seq; in semexit_myhook()
1471 suptr->un_proc, suptr->un_ent[ix].un_id, in semexit_myhook()
1472 suptr->un_ent[ix].un_num, in semexit_myhook()
[all …]
H A Dsysv_msg.c151 #define MSQID(ix,ds) ((ix) & 0xffff | (((ds).msg_perm.seq << 16) & 0xffff0000)) argument
/f-stack/tools/ipfw/
H A Ddummynet.c996 int ix = y1; in load_extra_delays() local
1000 for (; ix<stop; ++ix) in load_extra_delays()
1001 p->samples[ix] = x1; in load_extra_delays()
1005 for (; ix<stop ; ++ix) in load_extra_delays()
1006 p->samples[ix] = (ix - c)/m; in load_extra_delays()
/f-stack/dpdk/drivers/net/cxgbe/base/
H A Dt4vf_hw.c656 unsigned int ix = VI_VF_NUM_STATS - rem; in t4vf_get_port_stats_fw() local
671 cpu_to_be16(V_FW_VI_STATS_CMD_IX(ix) | in t4vf_get_port_stats_fw()
/f-stack/freebsd/mips/conf/
H A DOCTEON1162 device ix # Intel PRO/10GbE PF PCIE Ethernet Family
/f-stack/freebsd/arm64/conf/
H A DGENERIC263 device ix # Intel 10Gb Ethernet Family
/f-stack/freebsd/amd64/conf/
H A DGENERIC237 device ix # Intel PRO/10GbE PCIE PF Ethernet
/f-stack/tools/ifconfig/
H A Difieee80211.c4820 getid(int s, int ix, void *data, size_t len, int *plen, int mesh) in getid() argument
4827 ireq.i_val = ix; in getid()