Home
last modified time | relevance | path

Searched refs:rx (Results 1 – 25 of 268) sorted by relevance

1234567891011

/NextBSD/contrib/llvm/lib/CodeGen/
HDExecutionDepsFix.cpp189 void setLiveReg(int rx, DomainValue *DV);
190 void kill(int rx);
191 void force(int rx, unsigned domain);
267 void ExeDepsFix::setLiveReg(int rx, DomainValue *dv) { in setLiveReg() argument
268 assert(unsigned(rx) < NumRegs && "Invalid index"); in setLiveReg()
271 if (LiveRegs[rx].Value == dv) in setLiveReg()
273 if (LiveRegs[rx].Value) in setLiveReg()
274 release(LiveRegs[rx].Value); in setLiveReg()
275 LiveRegs[rx].Value = retain(dv); in setLiveReg()
279 void ExeDepsFix::kill(int rx) { in kill() argument
[all …]
/NextBSD/lib/msun/src/
HDcatrigf.c88 do_hard_work(float x, float y, float *rx, int *B_is_usable, float *B, in do_hard_work() argument
103 *rx = sqrtf(x); in do_hard_work()
106 *rx = log1pf(Am1 + sqrtf(Am1 * (A + 1))); in do_hard_work()
108 *rx = x / sqrtf((1 - y) * (1 + y)); in do_hard_work()
110 *rx = log1pf((y - 1) + sqrtf((y - 1) * (y + 1))); in do_hard_work()
113 *rx = logf(A + sqrtf(A * A - 1)); in do_hard_work()
148 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhf() local
184 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinhf()
189 return (CMPLXF(copysignf(rx, x), copysignf(ry, y))); in casinhf()
203 float x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacosf() local
[all …]
HDcatrig.c153 do_hard_work(double x, double y, double *rx, int *B_is_usable, double *B, in do_hard_work() argument
182 *rx = sqrt(x); in do_hard_work()
189 *rx = log1p(Am1 + sqrt(Am1 * (A + 1))); in do_hard_work()
195 *rx = x / sqrt((1 - y) * (1 + y)); in do_hard_work()
200 *rx = log1p((y - 1) + sqrt((y - 1) * (y + 1))); in do_hard_work()
203 *rx = log(A + sqrt(A * A - 1)); in do_hard_work()
277 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinh() local
323 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinh()
328 return (CMPLX(copysign(rx, x), copysign(ry, y))); in casinh()
358 double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacos() local
[all …]
/NextBSD/sys/contrib/ipfilter/netinet/
HDip_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) {
360 ipf_p_rpcb_deref(rs, rx);
[all …]
/NextBSD/contrib/llvm/lib/Target/Mips/
HDMips16InstrInfo.td69 FRI16<op, (outs CPU16Regs:$rx), (ins simm16:$imm),
74 FRI16_ins_base<op, asmstr, "\t$rx, $imm \t# 16 bit inst", itin>;
78 FRI16<_op, (outs CPU16Regs:$rx), (ins pcrel16:$imm, i32imm:$size),
79 !strconcat(asmstr, "\t$rx, $imm\t# 16 bit inst"), [], itin>;
83 FRI16<op, (outs), (ins CPU16Regs:$rx, simm16:$imm),
88 FRI16R_ins_base<op, asmstr, "\t$rx, $imm \t# 16 bit inst", itin>;
92 FRI16<_op, (outs CPU16Regs:$rx), (ins CPU16Regs:$rx_, simm16:$imm),
93 !strconcat(asmstr, "\t$rx, $imm\t# 16 bit inst"), [], itin> {
94 let Constraints = "$rx_ = $rx";
99 FRI16<_op, (outs), (ins CPU16Regs:$rx, brtarget:$imm),
[all …]
HDMips16InstrFormats.td22 // rx 3-bit source or destination register
115 // Format RI instruction class in Mips : <|opcode|rx|imm8|>
122 bits<3> rx;
127 let Inst{10-8} = rx;
132 // Format RR instruction class in Mips : <|opcode|rx|ry|funct|>
139 bits<3> rx;
146 let Inst{10-8} = rx;
172 bits<3> rx;
180 let Inst{10-8} = rx;
210 bits<3> rx;
[all …]
/NextBSD/contrib/file/src/
HDfuncs.c457 file_regex_t rx; in file_replace() local
460 rc = file_regcomp(&rx, pat, REG_EXTENDED); in file_replace()
462 file_regerror(&rx, rc, ms); in file_replace()
466 while (file_regexec(&rx, ms->o.buf, 1, &rm, 0) == 0) { in file_replace()
476 file_regfree(&rx); in file_replace()
481 file_regcomp(file_regex_t *rx, const char *pat, int flags) in file_regcomp() argument
484 rx->c_lc_ctype = newlocale(LC_CTYPE_MASK, "C", 0); in file_regcomp()
485 assert(rx->c_lc_ctype != NULL); in file_regcomp()
486 rx->old_lc_ctype = uselocale(rx->c_lc_ctype); in file_regcomp()
487 assert(rx->old_lc_ctype != NULL); in file_regcomp()
[all …]
/NextBSD/sys/dev/xen/netfront/
HDnetfront.c188 netif_rx_front_ring_t rx; member
243 struct netif_rx_response rx; member
531 info->rx.sring = NULL; in setup_device()
553 FRONT_RING_INIT(&info->rx, rxs, PAGE_SIZE); in setup_device()
645 sc->rx.rsp_cons = 0; in xn_free_rx_ring()
647 sc->xn_rx_if->event = sc->rx.rsp_cons ; in xn_free_rx_ring()
725 req_prod = sc->rx.req_prod_pvt; in network_alloc_rx_buffers()
739 batch_target = sc->rx_target - (req_prod - sc->rx.rsp_cons); in network_alloc_rx_buffers()
763 if (req_prod >sc->rx.sring->req_prod) in network_alloc_rx_buffers()
774 if ((req_prod - sc->rx.sring->rsp_prod) < (sc->rx_target / 4)) { in network_alloc_rx_buffers()
[all …]
/NextBSD/sys/powerpc/pseries/
HDphyp_llan.c125 static int llan_add_rxbuf(struct llan_softc *sc, struct llan_xfer *rx);
316 llan_add_rxbuf(struct llan_softc *sc, struct llan_xfer *rx) in llan_add_rxbuf() argument
329 if (rx->rx_mbuf != NULL) { in llan_add_rxbuf()
330 bus_dmamap_sync(sc->rxbuf_dma_tag, rx->rx_dmamap, in llan_add_rxbuf()
332 bus_dmamap_unload(sc->rxbuf_dma_tag, rx->rx_dmamap); in llan_add_rxbuf()
336 m_copyback(m, 0, 8, (void *)&rx); in llan_add_rxbuf()
338 error = bus_dmamap_load_mbuf_sg(sc->rxbuf_dma_tag, rx->rx_dmamap, m, in llan_add_rxbuf()
342 "cannot load RX DMA map %p, error = %d\n", rx, error); in llan_add_rxbuf()
350 rx->rx_mbuf = m; in llan_add_rxbuf()
352 bus_dmamap_sync(sc->rxbuf_dma_tag, rx->rx_dmamap, BUS_DMASYNC_PREREAD); in llan_add_rxbuf()
[all …]
/NextBSD/contrib/ncurses/form/
HDfty_regex.c111 char *rx = (char *)arg; in Generic_RegularExpression_Type() local
114 if (rx) in Generic_RegularExpression_Type()
122 && !regcomp(preg->pRegExp, rx, in Generic_RegularExpression_Type()
140 char *rx = (char *)arg; in Generic_RegularExpression_Type()
143 if (rx) in Generic_RegularExpression_Type()
163 char *last_pos = compile(rx, buf, &buf[blen], '\0'); in Generic_RegularExpression_Type()
166 char *last_pos = compile(rx, buf, &buf[blen]); in Generic_RegularExpression_Type()
212 char *rx = va_arg(*ap, char *); in Make_RegularExpression_Type() local
214 return Generic_RegularExpression_Type((void *)rx); in Make_RegularExpression_Type()
/NextBSD/contrib/binutils/opcodes/
HDcgen-asm.in69 char *rx = rxbuf;
92 *rx++ = '[';
93 *rx++ = TOLOWER (c);
94 *rx++ = TOUPPER (c);
95 *rx++ = ']';
98 *rx++ = c;
101 /* Copy any remaining literals from the syntax string into the rx. */
102 for(; * syn != 0 && rx <= rxbuf + (CGEN_MAX_RX_ELEMENTS - 7 - 4); ++syn)
119 *rx++ = '\\';
120 *rx++ = c;
[all …]
HDmep-asm.c1043 char *rx = rxbuf; in mep_cgen_build_insn_regex() local
1066 *rx++ = '['; in mep_cgen_build_insn_regex()
1067 *rx++ = TOLOWER (c); in mep_cgen_build_insn_regex()
1068 *rx++ = TOUPPER (c); in mep_cgen_build_insn_regex()
1069 *rx++ = ']'; in mep_cgen_build_insn_regex()
1072 *rx++ = c; in mep_cgen_build_insn_regex()
1076 for(; * syn != 0 && rx <= rxbuf + (CGEN_MAX_RX_ELEMENTS - 7 - 4); ++syn) in mep_cgen_build_insn_regex()
1093 *rx++ = '\\'; in mep_cgen_build_insn_regex()
1094 *rx++ = c; in mep_cgen_build_insn_regex()
1100 *rx++ = '['; in mep_cgen_build_insn_regex()
[all …]
/NextBSD/sys/dev/ath/ath_hal/ar5416/
HDar5416desc.h73 struct ar5416_rx_desc rx; member
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.status7
98 #define ds_rxstatus8 u.rx.status8
/NextBSD/sys/gnu/dts/arm/
HDomap2430.dtsi152 interrupt-names = "common", "tx", "rx", "rx_overflow";
157 dma-names = "tx", "rx";
168 interrupt-names = "common", "tx", "rx";
173 dma-names = "tx", "rx";
184 interrupt-names = "common", "tx", "rx";
189 dma-names = "tx", "rx";
200 interrupt-names = "common", "tx", "rx";
205 dma-names = "tx", "rx";
216 interrupt-names = "common", "tx", "rx";
221 dma-names = "tx", "rx";
[all …]
HDomap3.dtsi272 dma-names = "tx", "rx";
282 dma-names = "tx", "rx";
292 dma-names = "tx", "rx";
302 dma-names = "tx", "rx";
313 dma-names = "tx", "rx";
324 dma-names = "tx", "rx";
340 ti,mbox-rx = <1 0 0>;
420 dma-names = "tx", "rx";
430 dma-names = "tx", "rx";
439 dma-names = "tx", "rx";
[all …]
HDomap2420.dtsi123 interrupt-names = "tx", "rx";
127 dma-names = "tx", "rx";
137 interrupt-names = "tx", "rx";
141 dma-names = "tx", "rx";
151 dma-names = "tx", "rx";
165 ti,mbox-rx = <1 0 0>;
169 ti,mbox-rx = <3 1 3>;
HDimx23.dtsi88 dma-names = "rx-tx";
97 dma-names = "rx-tx";
332 "saif0", "empty", "auart0-rx", "auart0-tx",
333 "auart1-rx", "auart1-tx", "saif1", "empty",
376 dma-names = "rx-tx";
402 dma-names = "rx-tx";
414 dma-names = "rx-tx";
428 dma-names = "rx";
450 dma-names = "rx-tx";
482 dma-names = "rx", "tx";
[all …]
HDimx28.dtsi75 dma-names = "rx";
112 dma-names = "rx-tx";
123 dma-names = "rx-tx";
134 dma-names = "rx-tx";
145 dma-names = "rx-tx";
156 dma-names = "rx-tx";
903 interrupt-names = "auart4-rx", "aurat4-tx", "spdif-tx", "empty",
905 "auart0-rx", "auart0-tx", "auart1-rx", "auart1-tx",
906 "auart2-rx", "auart2-tx", "auart3-rx", "auart3-tx";
942 dma-names = "rx";
[all …]
/NextBSD/sys/net80211/
HDieee80211_input.c62 ieee80211_process_mimo(struct ieee80211_node *ni, struct ieee80211_rx_stats *rx) in ieee80211_process_mimo() argument
67 if ((rx->r_flags & (IEEE80211_R_C_CHAIN | IEEE80211_R_C_NF | IEEE80211_R_C_RSSI)) != in ieee80211_process_mimo()
72 for (i = 0; i < MIN(rx->c_chain, IEEE80211_MAX_CHAINS); i++) { in ieee80211_process_mimo()
73 IEEE80211_RSSI_LPF(ni->ni_mimo_rssi_ctl[i], rx->c_rssi_ctl[i]); in ieee80211_process_mimo()
74 IEEE80211_RSSI_LPF(ni->ni_mimo_rssi_ext[i], rx->c_rssi_ext[i]); in ieee80211_process_mimo()
78 for(i = 0; i < MIN(rx->c_chain, IEEE80211_MAX_CHAINS); i++) { in ieee80211_process_mimo()
79 ni->ni_mimo_noise_ctl[i] = rx->c_nf_ctl[i]; in ieee80211_process_mimo()
80 ni->ni_mimo_noise_ext[i] = rx->c_nf_ext[i]; in ieee80211_process_mimo()
82 ni->ni_mimo_chains = rx->c_chain; in ieee80211_process_mimo()
87 struct ieee80211_rx_stats *rx) in ieee80211_input_mimo() argument
[all …]
/NextBSD/sys/arm/ti/cpsw/
HDif_cpsw.c289 mtx_assert(&(sc)->rx.lock, MA_NOTOWNED); \
298 mtx_lock(&(sc)->rx.lock); \
301 #define CPSW_RX_UNLOCK(sc) mtx_unlock(&(sc)->rx.lock)
302 #define CPSW_RX_LOCK_ASSERT(sc) mtx_assert(&(sc)->rx.lock, MA_OWNED)
306 (mtx_owned(&(sc)->rx.lock) ? 1 : 0)) { \
310 mtx_lock(&(sc)->rx.lock); \
601 mtx_init(&sc->rx.lock, device_get_nameunit(dev), in cpsw_attach()
676 STAILQ_INIT(&sc->rx.avail); in cpsw_attach()
677 STAILQ_INIT(&sc->rx.active); in cpsw_attach()
682 if (cpsw_add_slots(sc, &sc->tx, 128) || cpsw_add_slots(sc, &sc->rx, -1)) { in cpsw_attach()
[all …]
/NextBSD/tools/tools/ath/athsurvey/
HDathsurvey.c79 float tx = 0.0, rx = 0.0, cc = 0.0, cext = 0.0; in process_survey_stats() local
107 rx = (float) hs->samples[i].rx_busy * 100.0 / in process_survey_stats()
133 if (rx > max_rx) in process_survey_stats()
134 max_rx = rx; in process_survey_stats()
145 if (rx < min_rx) in process_survey_stats()
146 min_rx = rx; in process_survey_stats()
/NextBSD/tools/tools/netmap/
HDbridge.c292 struct netmap_ring *rx = NETMAP_RXRING(pa->nifp, pa->cur_rx_ring); in main() local
294 rx->head, rx->cur, rx->tail); in main()
297 struct netmap_ring *rx = NETMAP_RXRING(pb->nifp, pb->cur_rx_ring); in main() local
299 rx->head, rx->cur, rx->tail); in main()
/NextBSD/tools/tools/net80211/w00t/prga/
HDprga.c55 int rx; member
168 rc = sniff(p->rx, buf, sizeof(buf)); in get_prga()
368 FD_SET(p->rx, &fds); in wait_ack()
369 if (select(p->rx+1, &fds, NULL, NULL, &now) == -1) in wait_ack()
372 if (!FD_ISSET(p->rx, &fds)) in wait_ack()
376 rc = sniff(p->rx, buf, sizeof(buf)); in wait_ack()
429 FD_SET(p->rx, &fds); in wait_relay()
430 if (select(p->rx+1, &fds, NULL, NULL, &now) == -1) in wait_relay()
433 if (!FD_ISSET(p->rx, &fds)) in wait_relay()
437 rc = sniff(p->rx, buf, sizeof(buf)); in wait_relay()
[all …]
/NextBSD/crypto/openssl/crypto/aes/asm/
HDaesni-sha1-x86_64.pl150 my $j=0; my $jj=0; my $r=0; my $sn=0; my $rx=0;
548 return &body_20_39() if ($rx==19); $rx++;
579 return &body_40_59() if ($rx==39); $rx++;
587 @r[$k%$n].='&$aesenc();' if ($jj==$k/$n && $rx!=20);
614 $rx++;
622 @r[$k%$n].='&$aesenc();' if ($jj==$k/$n && $rx!=40);
730 $j=$jj=$r=$rx=0;
774 return &body_20_39_dec() if ($rx==19);
778 unshift (@r,@aes256_dec[$rx]) if (@aes256_dec[$rx]);
779 $rx++;
[all …]
/NextBSD/tools/tools/net80211/w00t/assoc/
HDassoc.c60 int rx; member
432 rc = sniff(p->rx, buf, sizeof(buf)); in get_probe_response()
493 rc = sniff(p->rx, buf, sizeof(buf)); in get_auth()
547 rc = sniff(p->rx, buf, sizeof(buf)); in get_assoc()
593 rc = sniff(p->rx, buf, sizeof(buf)); in read_wifi()
774 if (open_rxtx(iface, &p.rx, &p.tx) == -1) in main()
811 FD_SET(p.rx, &fds); in main()
818 rc = select(p.rx+1, &fds, NULL, in main()
895 FD_SET(p.rx, &fds); in main()
897 max = (p.rx > p.tap) ? p.rx : p.tap; in main()
[all …]

1234567891011