Searched refs:rt (Results 1 - 25 of 48) sorted by relevance

12

/haiku-fatelf/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_phy.h86 ieee80211_ack_rate(const struct ieee80211_rate_table *rt, uint8_t rate) argument
88 uint8_t cix = rt->info[rt->rateCodeToIndex[rate]].ctlRateIndex;
90 return rt->info[cix].dot11Rate;
94 ieee80211_ctl_rate(const struct ieee80211_rate_table *rt, uint8_t rate) argument
96 uint8_t cix = rt->info[rt->rateCodeToIndex[rate]].ctlRateIndex;
98 return rt->info[cix].dot11Rate;
102 ieee80211_rate2phytype(const struct ieee80211_rate_table *rt, uint8_t rate) argument
104 uint8_t rix = rt
110 ieee80211_isratevalid(const struct ieee80211_rate_table *rt, uint8_t rate) argument
122 ieee80211_ack_duration(const struct ieee80211_rate_table *rt, uint8_t rate, int isShortPreamble) argument
[all...]
H A Dieee80211_phy.c198 ieee80211_setup_ratetable(struct ieee80211_rate_table *rt) argument
206 for (i = 0; i < N(rt->rateCodeToIndex); i++)
207 rt->rateCodeToIndex[i] = (uint8_t) -1;
208 for (i = 0; i < rt->rateCount; i++) {
209 uint8_t code = rt->info[i].dot11Rate;
210 uint8_t cix = rt->info[i].ctlRateIndex;
211 uint8_t ctl_rate = rt->info[cix].dot11Rate;
213 rt->rateCodeToIndex[code] = i;
219 rt->rateCodeToIndex[code] = i;
232 rt
271 const struct ieee80211_rate_table *rt; local
398 ieee80211_compute_duration(const struct ieee80211_rate_table *rt, uint32_t frameLen, uint16_t rate, int isShortPreamble) argument
[all...]
H A Dieee80211_hwmp.c678 struct ieee80211_mesh_route *rt = NULL; local
751 rt = ieee80211_mesh_rt_find(vap, preq->preq_origaddr);
752 if (rt == NULL)
754 else if ((rt->rt_flags & IEEE80211_MESHRT_FLAGS_VALID) == 0)
755 hwmp_discover(vap, rt->rt_dest, NULL);
769 rt = ieee80211_mesh_rt_find(vap, rootmac);
770 if (rt == NULL) {
771 rt = ieee80211_mesh_rt_add(vap, rootmac);
772 if (rt == NULL) {
787 if ((rt
941 struct ieee80211_mesh_route *rt = NULL; local
1111 struct ieee80211_mesh_route *rt; local
1147 struct ieee80211_mesh_route *rt = NULL; local
1227 struct ieee80211_mesh_route *rt = NULL; local
1290 struct ieee80211_mesh_route *rt = NULL; local
[all...]
H A Dieee80211_mesh.c157 struct ieee80211_mesh_route *rt; local
161 TAILQ_FOREACH(rt, &ms->ms_routes, rt_next) {
162 if (IEEE80211_ADDR_EQ(dest, rt->rt_dest))
163 return rt;
172 struct ieee80211_mesh_route *rt; local
179 rt = malloc(ALIGN(sizeof(struct ieee80211_mesh_route)) +
181 if (rt != NULL) {
182 IEEE80211_ADDR_COPY(rt->rt_dest, dest);
183 rt->rt_priv = (void *)ALIGN(&rt[
195 struct ieee80211_mesh_route *rt; local
208 struct ieee80211_mesh_route *rt; local
229 struct ieee80211_mesh_route *rt; local
269 mesh_rt_del(struct ieee80211_mesh_state *ms, struct ieee80211_mesh_route *rt) argument
280 struct ieee80211_mesh_route *rt, *next; local
297 struct ieee80211_mesh_route *rt, *next; local
312 struct ieee80211_mesh_route *rt, *next; local
330 struct ieee80211_mesh_route *rt, *next; local
796 struct ieee80211_mesh_route *rt; local
827 struct ieee80211_mesh_route *rt; local
1031 struct ieee80211_mesh_route *rt = local
2582 struct ieee80211_mesh_route *rt; local
[all...]
/haiku-fatelf/src/system/kernel/arch/m68k/
H A Darch_040_mmu.cpp18 set_pgdir(void *rt) argument
21 rp = (uint32)rt & ~((1 << 9) - 1);
H A Darch_030_mmu.cpp18 set_pgdir(void *rt) argument
23 entry.addr = TA_TO_PREA(((addr_t)rt));
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_rate/sample/
H A Dsample.h121 const HAL_RATE_TABLE *rt = sc->sc_currates; local
134 KASSERT(rt != NULL, ("no rate table, mode %u", sc->sc_curmode));
136 if (rix >= rt->rateCount) {
138 rix, rt->rateCount, sc->sc_curmode);
141 cix = rt->info[rix].controlRate;
147 switch (rt->info[rix].phy) {
175 rt->info[rix].phy == IEEE80211_T_OFDM) {
181 cix = rt->info[sc->sc_protrix].controlRate;
193 KASSERT(cix < rt->rateCount,
194 ("bogus cix %d, max %u, mode %u\n", cix, rt
[all...]
H A Dsample.c147 dot11rate(const HAL_RATE_TABLE *rt, int rix) argument
149 return rt->info[rix].phy == IEEE80211_T_HT ?
150 rt->info[rix].dot11Rate : (rt->info[rix].dot11Rate & IEEE80211_RATE_VAL) / 2;
154 dot11rate_label(const HAL_RATE_TABLE *rt, int rix) argument
156 return rt->info[rix].phy == IEEE80211_T_HT ? "MCS" : "Mb ";
164 pick_best_rate(struct ath_node *an, const HAL_RATE_TABLE *rt, argument
180 (rt->info[rix].phy != IEEE80211_T_HT)) {
207 const HAL_RATE_TABLE *rt, int size_bin)
209 #define DOT11RATE(ix) (rt
206 pick_sample_rate(struct sample_softc *ssc , struct ath_node *an, const HAL_RATE_TABLE *rt, int size_bin) argument
332 const HAL_RATE_TABLE *rt = sc->sc_currates; local
472 const HAL_RATE_TABLE *rt = sc->sc_currates; local
602 const HAL_RATE_TABLE *rt = sc->sc_currates; local
762 const HAL_RATE_TABLE *rt = sc->sc_currates; local
879 const HAL_RATE_TABLE *rt = sc->sc_currates; local
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5210/
H A Dar5210_phy.c70 HAL_RATE_TABLE *rt; local
73 rt = &ar5210_11a_table;
76 rt = &ar5210_turbo_table;
83 ath_hal_setupratetable(ah, rt);
84 return rt;
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5211/
H A Dar5211_phy.c86 HAL_RATE_TABLE *rt; local
89 rt = &ar5211_11a_table;
92 rt = &ar5211_11b_table;
95 rt = &ar5211_turbo_table;
102 ath_hal_setupratetable(ah, rt);
103 return rt;
/haiku-fatelf/src/libs/ncurses/tack/
H A Dcrum.c55 ** move the cursor from (rf, cf) to (rt, ct) using sel
61 int rt,
68 s = tparm(cursor_address, rt, ct);
79 s = tparm(row_address, rt);
81 rf = rt;
98 if (rf < rt) {
99 s = tparm(parm_down_cursor, rt - rf);
100 tputs(s, rt - rf, tc_putch);
101 rf = rt;
104 if (rf > rt) {
58 move_to( int rf, int cf, int rt, int ct, int sel) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar5212_phy.c165 HAL_RATE_TABLE *rt; local
168 rt = &ar5212_11a_table;
171 rt = &ar5212_11b_table;
177 rt = &ar5212_11g_table;
181 rt = &ar5212_turboa_table;
184 rt = &ar5212_turbog_table;
188 rt = &ar5212_half_table;
192 rt = &ar5212_quarter_table;
199 ath_hal_setupratetable(ah, rt);
200 return rt;
[all...]
/haiku-fatelf/src/bin/rcs/
H A Dmerger.c70 RILE *rt; local
108 if (!(rt = Iopen(t, "r", (struct stat*)0)))
110 fastcopy(rt, f);
111 Ifclose(rt);
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath_tx.c424 ath_tx_get_rtscts_rate(struct ath_hal *ah, const HAL_RATE_TABLE *rt, argument
436 ctsrate = rt->info[cix].rateCode;
440 ctsrate |= rt->info[cix].shortPreamble;
451 int shortPreamble, int pktlen, const HAL_RATE_TABLE *rt,
457 if (rt->info[cix].phy == IEEE80211_T_HT) {
459 __func__, rt->info[cix].rateCode);
474 ctsduration += rt->info[cix].spAckDuration;
476 rt, pktlen, rix, AH_TRUE);
478 ctsduration += rt->info[rix].spAckDuration;
481 ctsduration += rt
450 ath_tx_calc_ctsduration(struct ath_hal *ah, int rix, int cix, int shortPreamble, int pktlen, const HAL_RATE_TABLE *rt, int flags) argument
510 const HAL_RATE_TABLE *rt; local
887 const HAL_RATE_TABLE *rt; local
[all...]
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dtimeval.c66 timeval_to_cpu (rt, ut, st)
67 struct timeval *rt, *ut, *st; /* real, user, sys */
73 t2.tv_sec = rt->tv_sec;
74 t2.tv_usec = rt->tv_usec;
/haiku-fatelf/src/servers/app/drawing/Painter/drawing_modes/
H A DDrawingModeAddSUBPIX.h21 uint8 rt = min_c(255, _p.data8[2] + (r)); \
24 BLEND_SUBPIX(d, rt, gt, bt, a1, a2, a3); \
H A DDrawingModeBlendSUBPIX.h24 uint8 rt = (_p.data8[2] + (r)) >> 1; \
25 BLEND_SUBPIX(d, rt, gt, bt, a1, a2, a3); \
H A DDrawingModeSubtractSUBPIX.h21 uint8 rt = max_c(0, _p.data8[2] - (r)); \
24 BLEND_SUBPIX(d, rt, gt, bt, a1, a2, a3); \
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416_phy.c109 HAL_RATE_TABLE *rt; local
114 rt = &ar5416_11ng_table;
119 rt = &ar5416_11na_table;
124 ath_hal_setupratetable(ah, rt);
125 return rt;
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_rate/onoe/
H A Donoe.c193 const HAL_RATE_TABLE *rt = sc->sc_currates; local
196 KASSERT(rt != NULL, ("no rate table, mode %u", sc->sc_curmode));
215 on->on_tx_rate0 = rt->info[on->on_tx_rix0].rateCode;
218 rt->info[on->on_tx_rix0].shortPreamble;
231 on->on_tx_rate1 = rt->info[rix].rateCode;
233 rt->info[rix].shortPreamble;
240 on->on_tx_rate2 = rt->info[rix].rateCode;
242 rt->info[rix].shortPreamble;
248 on->on_tx_rate3 = rt->info[0].rateCode;
250 on->on_tx_rate3 | rt
[all...]
/haiku-fatelf/src/libs/icon/transformable/
H A DTransformable.cpp252 BPoint rt(bounds.right, bounds.top);
257 Transform(&rt);
261 return BRect(floorf(min4(lt.x, rt.x, lb.x, rb.x)),
262 floorf(min4(lt.y, rt.y, lb.y, rb.y)),
263 ceilf(max4(lt.x, rt.x, lb.x, rb.x)),
264 ceilf(max4(lt.y, rt.y, lb.y, rb.y)));
/haiku-fatelf/src/servers/app/drawing/Painter/
H A DTransformable.cpp254 BPoint rt(bounds.right, bounds.top);
259 Transform(&rt);
263 return BRect(floorf(min4(lt.x, rt.x, lb.x, rb.x)),
264 floorf(min4(lt.y, rt.y, lb.y, rb.y)),
265 ceilf(max4(lt.x, rt.x, lb.x, rb.x)),
266 ceilf(max4(lt.y, rt.y, lb.y, rb.y)));
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_rate/amrr/
H A Damrr.c220 const HAL_RATE_TABLE *rt = sc->sc_currates; local
223 KASSERT(rt != NULL, ("no rate table, mode %u", sc->sc_curmode));
241 amn->amn_tx_rate0 = rt->info[amn->amn_tx_rix0].rateCode;
243 rt->info[amn->amn_tx_rix0].shortPreamble;
252 amn->amn_tx_rate1 = rt->info[rix].rateCode;
254 rt->info[rix].shortPreamble;
261 amn->amn_tx_rate2 = rt->info[rix].rateCode;
263 rt->info[rix].shortPreamble;
269 amn->amn_tx_rate3 = rt->info[0].rateCode;
271 amn->amn_tx_rate3 | rt
[all...]
/haiku-fatelf/src/apps/icon-o-matic/transformable/
H A DTransformBox.cpp113 BPoint rt = fRightTop; local
119 TransformFromCanvas(rt);
127 _StrokeBWLine(into, lt, rt);
128 _StrokeBWLine(into, rt, rb);
134 _StrokeBWPoint(into, rt, rotation + 90.0);
231 BPoint rt = fRightTop; local
237 TransformFromCanvas(rt);
243 r.left = min5(lt.x, rt.x, lb.x, rb.x, c.x);
244 r.top = min5(lt.y, rt.y, lb.y, rb.y, c.y);
245 r.right = max5(lt.x, rt
[all...]
/haiku-fatelf/src/system/boot/platform/amiga_m68k/
H A Drom_calls.h39 #define LP0(offs, rt, name, bt, bn) \
45 register rt _##name##_re __asm("d0"); \
70 #define LP1(offs, rt, name, t1, v1, r1, bt, bn) \
77 register rt _##name##_re __asm("d0"); \
106 #define LP1A5(offs, rt, name, t1, v1, r1, bt, bn) \
113 register rt _##name##_re __asm("d0"); \
143 #define LP1A5FP(offs, rt, name, t1, v1, r1, bt, bn, fpt) \
151 register rt _##name##_re __asm("d0"); \
162 #define LP2(offs, rt, name, t1, v1, r1, t2, v2, r2, bt, bn) \
170 register rt
[all...]

Completed in 123 milliseconds

12