Searched refs:rx (Results 1 - 25 of 151) sorted by relevance

1234567

/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp183 void setLiveReg(int rx, DomainValue *DV);
184 void kill(int rx);
185 void force(int rx, unsigned domain);
258 /// Set LiveRegs[rx] = dv, updating reference counts.
259 void ExeDepsFix::setLiveReg(int rx, DomainValue *dv) { argument
260 assert(unsigned(rx) < NumRegs && "Invalid index");
263 if (LiveRegs[rx].Value == dv)
265 if (LiveRegs[rx].Value)
266 release(LiveRegs[rx].Value);
267 LiveRegs[rx]
271 kill(int rx) argument
282 force(int rx, unsigned domain) argument
371 int rx = regIndex(*i); local
468 int rx = regIndex(MI->getOperand(OpIdx).getReg()); local
515 int rx = regIndex(MO.getReg()); local
585 int rx = regIndex(mo.getReg()); local
594 int rx = regIndex(mo.getReg()); local
614 int rx = regIndex(mo.getReg()); local
647 int rx = *i; local
706 int rx = regIndex(mo.getReg()); local
[all...]
/freebsd-10-stable/contrib/binutils/opcodes/
H A Dcgen-asm.in71 char *rx = rxbuf;
94 *rx++ = '[';
95 *rx++ = TOLOWER (c);
96 *rx++ = TOUPPER (c);
97 *rx++ = ']';
100 *rx++ = c;
103 /* Copy any remaining literals from the syntax string into the rx. */
104 for(; * syn != 0 && rx <= rxbuf + (CGEN_MAX_RX_ELEMENTS - 7 - 4); ++syn)
121 *rx++ = '\\';
122 *rx
[all...]
H A Dmep-asm.c324 /* Prevent ($ry) from being attempted as an expression on 'sw $rx,($ry)'.
1045 char *rx = rxbuf;
1068 *rx++ = '[';
1069 *rx++ = TOLOWER (c);
1070 *rx++ = TOUPPER (c);
1071 *rx++ = ']';
1074 *rx++ = c;
1077 /* Copy any remaining literals from the syntax string into the rx. */
1078 for(; * syn != 0 && rx <= rxbuf + (CGEN_MAX_RX_ELEMENTS - 7 - 4); ++syn)
1095 *rx
1043 char *rx = rxbuf; local
[all...]
/freebsd-10-stable/lib/msun/src/
H A Dcatrig.c146 * rx = Re(casinh(z)) = -Im(cacos(y + I*x)).
153 do_hard_work(double x, double y, double *rx, int *B_is_usable, double *B, argument
175 * rx = log1p(Am1 + sqrt(Am1*(A+1)))
182 *rx = sqrt(x);
189 *rx = log1p(Am1 + sqrt(Am1 * (A + 1)));
195 *rx = x / sqrt((1 - y) * (1 + y));
200 *rx = log1p((y - 1) + sqrt((y - 1) * (y + 1)));
203 *rx = log(A + sqrt(A * A - 1));
277 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
323 do_hard_work(ax, ay, &rx,
358 double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; local
433 double rx, ry; local
569 double x, y, ax, ay, rx, ry; local
[all...]
H A Dcatrigf.c88 do_hard_work(float x, float y, float *rx, int *B_is_usable, float *B, argument
103 *rx = sqrtf(x);
106 *rx = log1pf(Am1 + sqrtf(Am1 * (A + 1)));
108 *rx = x / sqrtf((1 - y) * (1 + y));
110 *rx = log1pf((y - 1) + sqrtf((y - 1) * (y + 1)));
113 *rx = logf(A + sqrtf(A * A - 1));
148 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
184 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
189 return (CMPLXF(copysignf(rx, x), copysignf(ry, y)));
203 float x, y, ax, ay, rx, r local
263 float rx, ry; local
341 float x, y, ax, ay, rx, ry; local
[all...]
/freebsd-10-stable/sys/contrib/ipfilter/netinet/
H A Dip_rpcb_pxy.c285 rpcb_xact_t *rx; local
296 rx = NULL;
314 rx = NULL; /* XXX gcc */
317 rv = ipf_p_rpcb_decoderep(fin, nat, rs, rm, &rx);
322 if (rx != NULL) {
324 ipf_p_rpcb_deref(rs, rx);
341 if (rx->rx_type == RPCB_RES_STRING)
343 else if (rx->rx_type == RPCB_RES_LIST)
352 if (rx != NULL) {
357 * finished with rx, an
423 rpcb_xact_t rx; local
866 rpcb_xact_t *rx; local
1044 rpcb_xact_t *rx; local
[all...]
/freebsd-10-stable/contrib/file/src/
H A Dfuncs.c468 file_regex_t rx; local
471 rc = file_regcomp(&rx, pat, REG_EXTENDED);
473 file_regerror(&rx, rc, ms);
477 while (file_regexec(&rx, ms->o.buf, 1, &rm, 0) == 0) {
487 file_regfree(&rx);
492 file_regcomp(file_regex_t *rx, const char *pat, int flags) argument
495 rx->c_lc_ctype = newlocale(LC_CTYPE_MASK, "C", 0);
496 assert(rx->c_lc_ctype != NULL);
497 rx->old_lc_ctype = uselocale(rx
508 file_regexec(file_regex_t *rx, const char *str, size_t nmatch, regmatch_t* pmatch, int eflags) argument
518 file_regfree(file_regex_t *rx) argument
531 file_regerror(file_regex_t *rx, int rc, struct magic_set *ms) argument
[all...]
/freebsd-10-stable/tools/tools/ath/athsurvey/
H A Dathsurvey.c79 float tx = 0.0, rx = 0.0, cc = 0.0, cext = 0.0; local
107 rx = (float) hs->samples[i].rx_busy * 100.0 /
133 if (rx > max_rx)
134 max_rx = rx;
145 if (rx < min_rx)
146 min_rx = rx;
204 printf(" tx%% rx%% bc%% ec%% ");
205 printf(" tx%% rx%% bc%% ec%% ");
206 printf(" tx%% rx%% bc%% ec%%\n");
/freebsd-10-stable/sys/dev/xen/netfront/
H A Dnetfront.c253 netif_rx_front_ring_t rx; member in struct:netfront_info
319 struct netif_rx_response rx; member in struct:netfront_rx_info
327 /* Access macros for acquiring freeing slots in xn_free_{tx,rx}_idxs[]. */
558 err = xs_printf(xst, node, "rx-ring-ref","%u",
561 message = "writing rx ring-ref";
571 err = xs_printf(xst, node, "request-rx-copy", "%u",
574 message = "writing request-rx-copy";
577 err = xs_printf(xst, node, "feature-rx-notify", "%d", 1);
579 message = "writing feature-rx-notify";
626 info->rx
1030 struct netif_rx_response *rx = &rinfo.rx; local
1347 struct netif_rx_response *rx = &rinfo->rx; local
[all...]
/freebsd-10-stable/contrib/ncurses/form/
H A Dfty_regex.c105 char *rx = va_arg(*ap, char *); local
114 && !regcomp(preg->pRegExp, rx,
132 char *rx = va_arg(*ap, char *);
154 char *last_pos = compile(rx, buf, &buf[blen], '\0');
157 char *last_pos = compile(rx, buf, &buf[blen]);
/freebsd-10-stable/sys/powerpc/pseries/
H A Dphyp_llan.c120 static int llan_add_rxbuf(struct llan_softc *sc, struct llan_xfer *rx);
278 llan_add_rxbuf(struct llan_softc *sc, struct llan_xfer *rx) argument
291 if (rx->rx_mbuf != NULL) {
292 bus_dmamap_sync(sc->rxbuf_dma_tag, rx->rx_dmamap,
294 bus_dmamap_unload(sc->rxbuf_dma_tag, rx->rx_dmamap);
298 m_copyback(m, 0, 8, (void *)&rx);
300 error = bus_dmamap_load_mbuf_sg(sc->rxbuf_dma_tag, rx->rx_dmamap, m,
304 "cannot load RX DMA map %p, error = %d\n", rx, error);
312 rx->rx_mbuf = m;
314 bus_dmamap_sync(sc->rxbuf_dma_tag, rx
333 struct llan_xfer *rx; local
[all...]
/freebsd-10-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar5416desc.h53 struct ar5416_rx_desc { /* rx desc has 2 control words + 9 status words */
73 struct ar5416_rx_desc rx; member in union:ar5416_desc::__anon7909
90 #define ds_rxstatus0 u.rx.status0
91 #define ds_rxstatus1 u.rx.status1
92 #define ds_rxstatus2 u.rx.status2
93 #define ds_rxstatus3 u.rx.status3
94 #define ds_rxstatus4 u.rx.status4
95 #define ds_rxstatus5 u.rx.status5
96 #define ds_rxstatus6 u.rx.status6
97 #define ds_rxstatus7 u.rx
[all...]
/freebsd-10-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212desc.h27 * AR5212-specific tx/rx descriptor definition.
44 } rx; member in union:ar5212_desc::__anon7900
54 #define ds_rxstatus0 u.rx.status0
55 #define ds_rxstatus1 u.rx.status1
/freebsd-10-stable/tools/tools/netmap/
H A Dbridge.c79 D("wrong index rx[%d] = %d -> tx[%d] = %d",
85 D("wrong len %d rx[%d] -> tx[%d]", rs->len, j, k);
88 D("%s send len %d rx[%d] -> tx[%d]", msg, rs->len, j, k);
275 D("poll %s [0] ev %x %x rx %d@%d tx %d,"
276 " [1] ev %x %x rx %d@%d tx %d",
292 struct netmap_ring *rx = NETMAP_RXRING(pa->nifp, pa->cur_rx_ring); local
293 D("error on fd0, rx [%d,%d,%d)",
294 rx->head, rx->cur, rx
297 struct netmap_ring *rx = NETMAP_RXRING(pb->nifp, pb->cur_rx_ring); local
[all...]
/freebsd-10-stable/sys/net80211/
H A Dieee80211_input.c61 ieee80211_process_mimo(struct ieee80211_node *ni, struct ieee80211_rx_stats *rx) argument
66 if ((rx->r_flags & (IEEE80211_R_C_CHAIN | IEEE80211_R_C_NF | IEEE80211_R_C_RSSI)) !=
71 for (i = 0; i < MIN(rx->c_chain, IEEE80211_MAX_CHAINS); i++) {
72 IEEE80211_RSSI_LPF(ni->ni_mimo_rssi_ctl[i], rx->c_rssi_ctl[i]);
73 IEEE80211_RSSI_LPF(ni->ni_mimo_rssi_ext[i], rx->c_rssi_ext[i]);
77 for(i = 0; i < MIN(rx->c_chain, IEEE80211_MAX_CHAINS); i++) {
78 ni->ni_mimo_noise_ctl[i] = rx->c_nf_ctl[i];
79 ni->ni_mimo_noise_ext[i] = rx->c_nf_ext[i];
81 ni->ni_mimo_chains = rx->c_chain;
86 struct ieee80211_rx_stats *rx)
85 ieee80211_input_mimo(struct ieee80211_node *ni, struct mbuf *m, struct ieee80211_rx_stats *rx) argument
96 struct ieee80211_rx_stats rx; local
105 ieee80211_input_mimo_all(struct ieee80211com *ic, struct mbuf *m, struct ieee80211_rx_stats *rx) argument
[all...]
/freebsd-10-stable/tools/tools/net80211/w00t/assoc/
H A Dassoc.c60 int rx; member in struct:params
432 rc = sniff(p->rx, buf, sizeof(buf));
493 rc = sniff(p->rx, buf, sizeof(buf));
547 rc = sniff(p->rx, buf, sizeof(buf));
593 rc = sniff(p->rx, buf, sizeof(buf));
774 if (open_rxtx(iface, &p.rx, &p.tx) == -1)
811 FD_SET(p.rx, &fds);
818 rc = select(p.rx+1, &fds, NULL,
895 FD_SET(p.rx, &fds);
897 max = (p.rx >
[all...]
/freebsd-10-stable/usr.sbin/fwcontrol/
H A Dfwmpegts.c174 bufreq.rx.nchunk = NCHUNK;
175 bufreq.rx.npacket = NPACKET_R;
176 bufreq.rx.psize = PSIZE;
/freebsd-10-stable/contrib/ncurses/menu/
H A Dm_driver.c459 int ry = event.y, rx = event.x; /* screen coordinates */ local
462 if (mouse_trafo(&ry, &rx, FALSE))
463 { /* rx, ry are now "curses" coordinates */
493 rx = event.x;
494 if (wmouse_trafo(sub, &ry, &rx, FALSE))
503 (rx >= x) &&
504 (rx < x + menu->itemlen))
/freebsd-10-stable/sys/gnu/dts/arm/
H A Dzynq-zc706.dts146 conf-rx {
260 conf-rx {
283 conf-rx {
H A Dzynq-zc702.dts170 conf-rx {
193 conf-rx {
311 conf-rx {
334 conf-rx {
/freebsd-10-stable/sys/arm/ti/cpsw/
H A Dif_cpsw.c288 mtx_assert(&(sc)->rx.lock, MA_NOTOWNED); \
297 mtx_lock(&(sc)->rx.lock); \
300 #define CPSW_RX_UNLOCK(sc) mtx_unlock(&(sc)->rx.lock)
301 #define CPSW_RX_LOCK_ASSERT(sc) mtx_assert(&(sc)->rx.lock, MA_OWNED)
305 (mtx_owned(&(sc)->rx.lock) ? 1 : 0)) { \
309 mtx_lock(&(sc)->rx.lock); \
570 mtx_init(&sc->rx.lock, device_get_nameunit(dev),
635 STAILQ_INIT(&sc->rx.avail);
636 STAILQ_INIT(&sc->rx.active);
641 if (cpsw_add_slots(sc, &sc->tx, 128) || cpsw_add_slots(sc, &sc->rx,
[all...]
H A Dif_cpswvar.h109 struct cpsw_queue rx, tx; member in struct:cpsw_softc
/freebsd-10-stable/tools/tools/net80211/w00t/prga/
H A Dprga.c55 int rx; member in struct:params
168 rc = sniff(p->rx, buf, sizeof(buf));
368 FD_SET(p->rx, &fds);
369 if (select(p->rx+1, &fds, NULL, NULL, &now) == -1)
372 if (!FD_ISSET(p->rx, &fds))
376 rc = sniff(p->rx, buf, sizeof(buf));
429 FD_SET(p->rx, &fds);
430 if (select(p->rx+1, &fds, NULL, NULL, &now) == -1)
433 if (!FD_ISSET(p->rx, &fds))
437 rc = sniff(p->rx, bu
[all...]
/freebsd-10-stable/tools/tools/net80211/w00t/libw00t/
H A Dw00t.h38 int open_rxtx(char *iface, int *rx, int *tx);
/freebsd-10-stable/sys/dev/uart/
H A Duart_dev_pl011.c411 int rx; local
423 rx = xc & 0xff;
426 rx |= UART_STAT_FRAMERR;
428 rx |= UART_STAT_PARERR;
432 uart_rx_put(sc, rx);

Completed in 205 milliseconds

1234567