Searched refs:tp (Results 1 - 25 of 58) sorted by path

123

/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath_tdma.c256 const struct ieee80211_txparam *tp; local
268 tp = vap->iv_bss->ni_txparms;
278 if (tp->ucastrate != IEEE80211_FIXED_RATE_NONE)
279 rix = ath_tx_findrix(sc, tp->ucastrate);
281 rix = ath_tx_findrix(sc, tp->mcastrate);
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi3945/dev/wpi/
H A Dif_wpi.c2792 const struct ieee80211_txparam *tp = ni->ni_txparms; local
2824 rate = tp->mgmtrate;
2826 rate = tp->mcastrate;
2827 else if (tp->ucastrate != IEEE80211_FIXED_RATE_NONE)
2828 rate = tp->ucastrate;
2948 tx->data_ntries = tp->maxretry;
/haiku/src/add-ons/kernel/network/protocols/ipv6/
H A Dipv6_utils.cpp60 char tmp[INET6_ADDRSTRLEN], *tp; local
102 tp = tmp;
108 *tp++ = ':';
113 *tp++ = ':';
119 if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp)))
121 tp += strlen(tp);
125 tp += SPRINTF((tp, "
[all...]
/haiku/src/bin/network/telnet/
H A Dcommands.c2411 struct tosent *tp;
2412 if (tos < 0 && (tp = gettosbyname("telnet", "tcp")))
2413 tos = tp->t_tos;
2403 struct tosent *tp; local
H A Dsys_bsd.c754 struct termspeeds *tp; local
764 tp = termspeeds;
765 while ((tp->speed != -1) && (tp->value < in))
766 tp++;
767 *ispeed = tp->speed;
769 tp = termspeeds;
770 while ((tp->speed != -1) && (tp->value < out))
771 tp
[all...]
/haiku/src/bin/network/telnetd/
H A Dtelnetd.c408 struct tosent *tp; local
409 if (tos < 0 && (tp = gettosbyname("telnet", "tcp")))
410 tos = tp->t_tos;
/haiku/src/bin/unzip/
H A Dbeos.c1001 struct utimbuf tp;
1003 tp.modtime = tp.actime = modtime;
1004 return (utime(fname, &tp));
/haiku/src/kits/storage/mime/
H A DTextSnifferAddon.cpp239 my_unichar *tp = ubuf + 1; local
241 while (ISSPC(*tp))
242 ++tp; /* skip leading whitespace */
243 if ((tp[0] == '\\' && tp[1] == '\"') ||
244 (isascii((unsigned char)tp[0]) &&
245 isalnum((unsigned char)tp[0]) &&
246 isascii((unsigned char)tp[1]) &&
247 isalnum((unsigned char)tp[1]) &&
248 ISSPC(tp[
[all...]
/haiku/src/system/kernel/util/
H A Dinet_ntop.c122 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp; local
163 tp = tmp;
169 *tp++ = ':';
174 *tp++ = ':';
179 if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp)))
181 tp += strlen(tp);
184 tp += SPRINTF((tp, "
[all...]
/haiku/src/system/libnetwork/netresolv/inet/
H A Dinet_cidr_ntop.c175 char *tp; local
221 tp = tmp;
227 *tp++ = ':';
232 *tp++ = ':';
245 n = decoct(src+12, n, tp, sizeof tmp - (tp - tmp));
250 tp += strlen(tp);
253 tp += SPRINTF((tp, "
[all...]
H A Dinet_cidr_pton.c167 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
173 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
174 endp = tp + NS_IN6ADDRSZ;
202 colonp = tp;
207 if (tp + NS_INT16SZ > endp)
209 *tp++ = (u_char) (val >> 8) & 0xff;
210 *tp++ = (u_char) val & 0xff;
215 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
216 inet_cidr_pton_ipv4(curtok, tp, &bits, 1) == 0) {
217 tp
[all...]
H A Dinet_net_pton.c279 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
289 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
290 endp = tp + NS_IN6ADDRSZ;
320 colonp = tp;
324 if (tp + NS_INT16SZ > endp)
326 *tp++ = (u_char) (val >> 8) & 0xff;
327 *tp++ = (u_char) val & 0xff;
333 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
334 getv4(curtok, tp, &bits) > 0) {
335 tp
[all...]
/haiku/src/system/libroot/posix/glibc/arch/generic/
H A Dmul.c126 mp_ptr tp = (mp_ptr) TMP_ALLOC (2 * vsize * BYTES_PER_MP_LIMB); local
129 MPN_MUL_N_RECURSE (tp, up, vp, vsize, tspace);
130 cy = mpn_add_n (prodp, prodp, tp, vsize);
131 mpn_add_1 (prodp + vsize, tp + vsize, vsize, cy);
/haiku/src/system/libroot/posix/glibc/arch/ppc/
H A Dmul.c126 mp_ptr tp = (mp_ptr) TMP_ALLOC (2 * vsize * BYTES_PER_MP_LIMB); local
129 MPN_MUL_N_RECURSE (tp, up, vp, vsize, tspace);
130 cy = mpn_add_n (prodp, prodp, tp, vsize);
131 mpn_add_1 (prodp + vsize, tp + vsize, vsize, cy);
/haiku/src/tests/system/libroot/posix/
H A Dtest_time.c28 register struct tm *tp; local
65 tp = localtime(&t);
66 if (tp == NULL)
71 else if (strftime(buf, sizeof(buf), "%a %b %d %X %Z %Y", tp) == 0)
/haiku/headers/private/kernel/arch/riscv64/
H A Darch_thread_types.h25 uint64 tp; member in struct:iframe
/haiku/src/add-ons/kernel/drivers/network/ether/sis19x/dev/sge/
H A Dif_sge.c275 } *tp, apc_tbls[] = {
294 tp = apc_tbls;
296 if (pci_get_vendor(dev) == tp->vid &&
297 pci_get_device(dev) == tp->did) {
301 tp++;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar2316.c259 const int16_t *tp; local
274 for (tp = lp; tp < ep; tp++) {
279 if (*tp == target) {
280 *vlo = *vhi = tp - (const int16_t *) lp;
287 if (target < tp[1]) {
288 *vlo = tp - (const int16_t *) lp;
H A Dar2317.c236 const int16_t *tp; local
251 for (tp = lp; tp < ep; tp++) {
256 if (*tp == target) {
257 *vlo = *vhi = tp - (const int16_t *) lp;
264 if (target < tp[1]) {
265 *vlo = tp - (const int16_t *) lp;
H A Dar2413.c253 const uint16_t *tp; local
268 for (tp = lp; tp < ep; tp++) {
273 if (*tp == target) {
274 *vlo = *vhi = tp - (const uint16_t *) lp;
281 if (target < tp[1]) {
282 *vlo = tp - (const uint16_t *) lp;
H A Dar2425.c254 const uint16_t *tp; local
269 for (tp = lp; tp < ep; tp++) {
274 if (*tp == target) {
275 *vlo = *vhi = tp - (const uint16_t *) lp;
282 if (target < tp[1]) {
283 *vlo = tp - (const uint16_t *) lp;
H A Dar5112.c572 uint16_t *tp; local
587 for (tp = lp; tp < ep; tp++) {
592 if (*tp == target) {
593 *vlo = *vhi = tp - lp;
600 if (target < tp[1]) {
601 *vlo = tp - lp;
H A Dar5413.c295 const uint16_t *tp; local
310 for (tp = lp; tp < ep; tp++) {
315 if (*tp == target) {
316 *vlo = *vhi = tp - (const uint16_t *) lp;
323 if (target < tp[1]) {
324 *vlo = tp - (const uint16_t *) lp;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_rate/amrr/
H A Damrr.c314 const struct ieee80211_txparam *tp = ni->ni_txparms; local
318 if (tp == NULL || tp->ucastrate == IEEE80211_FIXED_RATE_NONE) {
344 for (; srate >= 0 && RATE(srate) != tp->ucastrate; srate--)
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_rate/onoe/
H A Donoe.c289 const struct ieee80211_txparam *tp = ni->ni_txparms; local
293 if (tp == NULL || tp->ucastrate == IEEE80211_FIXED_RATE_NONE) {
319 for (; srate >= 0 && RATE(srate) != tp->ucastrate; srate--)

Completed in 182 milliseconds

123