Searched refs:tcode (Results 1 - 20 of 20) sorted by relevance

/freebsd-10.0-release/sys/dev/firewire/
H A Dfirewire.h144 COMMON_HDR(, , tcode, );
147 COMMON_HDR(len, chtag, tcode, sy);
151 COMMON_HDR(dst, tlrt, tcode, pri);
155 COMMON_HDR(dst, tlrt, tcode, pri);
160 COMMON_HDR(dst, tlrt, tcode, pri);
165 COMMON_HDR(dst, tlrt, tcode, pri);
171 COMMON_HDR(dst, tlrt, tcode, pri);
177 COMMON_HDR(dst, tlrt, tcode, pri);
183 COMMON_HDR(dst, tlrt, tcode, pri);
189 COMMON_HDR(dst, tlrt, tcode, pr
[all...]
H A Dfwohcireg.h351 tcode:4, member in struct:fwohci_txpkthdr::__anon8333::__anon8334
355 tcode:4,
367 tcode:4, member in struct:fwohci_txpkthdr::__anon8333::__anon8335
371 tcode:4,
385 tcode:4, member in struct:fwohci_txpkthdr::__anon8333::__anon8336
389 tcode:4,
H A Dfirewire.c207 int tcode; local
217 tcode = fp->mode.common.tcode & 0xf;
218 info = &fc->tcode[tcode];
220 printf("invalid tcode=%x\n", tcode);
226 ((tcode != FWTCODE_RREQQ) || (fp->mode.rreqq.dest_hi != 0xffff) ||
251 len, xfer->send.pay_len, tcode_str[tcode], tcode);
1083 fw_tl2xfer(struct firewire_comm *fc, int node, int tlabel, int tcode) argument
1955 int tcode; local
[all...]
H A Dfwdev.c325 tinfo = &xfer->fc->tcode[fp->mode.hdr.tcode];
433 tinfo = &d->fc->tcode[pkt.mode.hdr.tcode];
678 tinfo = &fc->tcode[fp->mode.hdr.tcode];
728 tinfo = &fc->tcode[xfer->recv.hdr.mode.hdr.tcode];
729 if (xfer->recv.hdr.mode.hdr.tcode == FWTCODE_RRESB ||
730 xfer->recv.hdr.mode.hdr.tcode
[all...]
H A Dfwmem.c145 fp->mode.rreqq.tcode = FWTCODE_RREQQ;
181 fp->mode.wreqq.tcode = FWTCODE_WREQQ;
218 fp->mode.rreqb.tcode = FWTCODE_RREQB;
256 fp->mode.wreqb.tcode = FWTCODE_WREQB;
H A Dfwohci.c99 "data write err","bus reset","timeout","tcode err",
685 sc->fc.tcode = tinfo;
873 int tcode, hdr_len, pl_off; local
915 tcode = fp->mode.common.tcode;
918 info = &tinfo[tcode];
927 if (tcode == FWTCODE_STREAM ){
930 } else if (tcode == FWTCODE_PHY) {
935 ohcifp->mode.common.tcode = FWOHCITCODE_PHY;
952 if (tcode
[all...]
H A Dfirewirereg.h167 struct tcode_info *tcode; member in struct:firewire_comm
H A Dif_fwip.c664 fp->mode.stream.tcode = FWTCODE_STREAM;
698 fwip->last_hdr.mode.wreqb.tcode = FWTCODE_WREQB;
906 if (fp->mode.wreqb.tcode != FWTCODE_WREQB) {
H A Dsbp.c1320 sbp_write_cmd_locked(struct sbp_dev *sdev, int tcode, int offset) argument
1359 if (tcode == FWTCODE_WREQB)
1369 fp->mode.wreqq.tcode = tcode;
1378 sbp_write_cmd(struct sbp_dev *sdev, int tcode, int offset) argument
1384 xfer = sbp_write_cmd_locked(sdev, tcode, offset);
1688 if(rfp->mode.wreqb.tcode != FWTCODE_WREQB){
1689 printf("sbp_recv: tcode = %d\n", rfp->mode.wreqb.tcode);
1940 sfp->mode.wres.tcode
[all...]
H A Dsbp_targ.c1901 if (fp->mode.wreqb.tcode != FWTCODE_WREQB){
1902 printf("%s: tcode = %d\n", __func__, fp->mode.wreqb.tcode);
1951 sfp->mode.wres.tcode = FWTCODE_WRES;
H A Dif_fwe.c174 fwe->pkt_hdr.mode.stream.tcode = FWTCODE_STREAM;
/freebsd-10.0-release/contrib/ntp/libparse/
H A Dclk_rawdcf.c109 time_t tcode; /* last converted time code */ member in struct:last_tcode
495 if ((newtime - t->tcode) == 60) /* guard against multi bit errors */
503 t->tcode = newtime;
627 * transfer correctly converted time codes always into tcode
/freebsd-10.0-release/contrib/gcc/
H A Dexplow.c1532 enum tree_code tcode;
1537 tcode = PLUS_EXPR;
1540 tcode = MINUS_EXPR;
1543 tcode = MULT_EXPR;
1546 tcode = RDIV_EXPR;
1549 tcode = MIN_EXPR;
1552 tcode = MAX_EXPR;
1555 tcode = LAST_AND_UNUSED_TREE_CODE;
1558 return ((int) tcode);
1521 enum tree_code tcode; local
H A Dfold-const.c5618 enum tree_code tcode = TREE_CODE (t);
5623 int same_p = tcode == code;
5631 if (TREE_CODE_CLASS (tcode) == tcc_unary)
5634 if (TREE_CODE_CLASS (tcode) == tcc_binary)
5639 switch (tcode)
5696 t1 = fold_build1 (tcode, cstype, fold_convert (cstype, t1));
5708 return fold_build1 (tcode, ctype, fold_convert (ctype, t1));
5725 tcode = (tcode == MIN_EXPR ? MAX_EXPR : MIN_EXPR);
5728 return fold_build2 (tcode, ctyp
5585 enum tree_code tcode = TREE_CODE (t); local
[all...]
H A Doptabs.c5588 rtx op2 ATTRIBUTE_UNUSED, rtx tcode ATTRIBUTE_UNUSED)
5616 insn = gen_conditional_trap (trap_rtx, tcode);
5631 get_rtx_code (enum tree_code tcode, bool unsignedp)
5634 switch (tcode)
5606 get_rtx_code(enum tree_code tcode, bool unsignedp) argument
/freebsd-10.0-release/usr.sbin/fwcontrol/
H A Dfwcontrol.c222 asyreq->pkt.mode.rreqq.tcode = FWTCODE_RREQQ;
224 asyreq->pkt.mode.rreqq.tcode = FWTCODE_WREQQ;
271 asyreq->pkt.mode.common.tcode = FWTCODE_PHY;
296 asyreq->pkt.mode.common.tcode = FWTCODE_PHY;
317 asyreq->pkt.mode.wreqq.tcode = FWTCODE_WREQQ;
H A Dfwdv.c297 pkt->mode.stream.tcode = FWTCODE_STREAM;
/freebsd-10.0-release/contrib/gcc/cp/
H A Dcall.c590 enum tree_code fcode, tcode; local
613 tcode = TREE_CODE (to);
638 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
660 if ((tcode == POINTER_TYPE || TYPE_PTR_TO_MEMBER_P (to))
663 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
664 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
671 else if (tcode == ENUMERAL_TYPE && fcode == INTEGER_TYPE)
678 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
684 if (tcode == POINTER_TYPE
749 if (tcode
[all...]
/freebsd-10.0-release/contrib/sendmail/src/
H A Dmilter.c1420 int tcode; local
1448 tcode = -1;
1454 tcode = SMFTO_CONNECT;
1458 tcode = SMFTO_WRITE;
1462 tcode = SMFTO_READ;
1466 tcode = SMFTO_EOM;
1477 if (tcode >= 0)
1479 m->mf_timeout[tcode] = convtime(p, 's');
1483 (u_long) m->mf_timeout[tcode]);
/freebsd-10.0-release/crypto/openssh/
H A Dchannels.c2426 u_int data_len, tcode; local
2446 tcode = packet_get_int();
2449 tcode != SSH2_EXTENDED_DATA_STDERR) {

Completed in 205 milliseconds