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

/illumos-gate/usr/src/uts/intel/sys/
H A Dmc_intel.h305 #define TCODE_OFFSET_RANK(tcode) \
306 (((tcode) >> OFFSET_RANK_SHIFT) & MAX_RANK_MASK)
307 #define TCODE_OFFSET_RAS(tcode) (((tcode) >> OFFSET_RAS_SHIFT) & MAX_RAS_MASK)
308 #define TCODE_OFFSET_BANK(tcode) \
309 (((tcode) >> OFFSET_BANK_SHIFT) & MAX_BANK_MASK)
310 #define TCODE_OFFSET_CAS(tcode) ((tcode) & MAX_CAS_MASK)
/illumos-gate/usr/src/cmd/ldap/common/
H A Dconvutf8.c53 const char *tcode);
66 const char *tcode) {
75 if (fcode == NULL || tcode == NULL)
78 if (strcasecmp(fcode, tcode) == 0)
81 if ((cd = iconv_open(tcode, fcode)) == (iconv_t)-1) {
65 ldaptool_convert( const char *src, const char *fcode, const char *tcode) argument
/illumos-gate/usr/src/uts/common/sys/1394/adapters/
H A Dhci1394_ohci.h325 #define HCI1394_IS_ARRESP(tcode) \
326 ((tcode == IEEE1394_TCODE_WRITE_RESP) || \
327 (tcode == IEEE1394_TCODE_READ_QUADLET_RESP) || \
328 (tcode == IEEE1394_TCODE_READ_BLOCK_RESP) || \
329 (tcode == IEEE1394_TCODE_LOCK_RESP))
331 #define HCI1394_IS_ARREQ(tcode) \
332 ((tcode == IEEE1394_TCODE_READ_QUADLET) || \
333 (tcode == IEEE1394_TCODE_WRITE_QUADLET) || \
334 (tcode == IEEE1394_TCODE_READ_BLOCK) || \
335 (tcode
[all...]
/illumos-gate/usr/src/uts/common/io/1394/adapters/
H A Dhci1394_async.c71 #define HCI1394_ARITH_LOCK_SWAP32(tcode, data) \
72 (((tcode) == CMD1394_LOCK_FETCH_ADD) || \
73 ((tcode) == CMD1394_LOCK_BOUNDED_ADD) || \
74 ((tcode) == CMD1394_LOCK_WRAP_ADD)) ? \
76 #define HCI1394_ARITH_LOCK_SWAP64(tcode, data) \
77 (((tcode) == CMD1394_LOCK_FETCH_ADD) || \
78 ((tcode) == CMD1394_LOCK_BOUNDED_ADD) || \
79 ((tcode) == CMD1394_LOCK_WRAP_ADD)) ? \
82 #define HCI1394_ARITH_LOCK_SWAP32(tcode, data) (data)
83 #define HCI1394_ARITH_LOCK_SWAP64(tcode, dat
734 uint_t tcode; local
932 uint_t tcode; local
1224 hci1394_async_arresp_read(hci1394_async_handle_t async_handle, hci1394_basic_pkt_t *pkt, uint_t *tcode, hci1394_async_cmd_t **hcicmd, uint_t *size) argument
1545 hci1394_async_arreq_read(hci1394_async_handle_t async_handle, hci1394_basic_pkt_t *pkt, uint_t *tcode, hci1394_async_cmd_t **hcicmd, uint_t *size) argument
3345 hci1394_async_arresp_size_get(uint_t tcode, hci1394_q_handle_t q_handle, uint32_t *addr, uint_t *size) argument
[all...]
H A Dhci1394_q.c1015 uint32_t tcode; local
1044 tcode = (hdr->q1 & DESC_PKT_TCODE_MASK) >> DESC_PKT_TCODE_SHIFT;
1045 if ((tcode == IEEE1394_TCODE_WRITE_QUADLET) ||
1046 (tcode == IEEE1394_TCODE_READ_QUADLET_RESP)) {
1048 * if the tcode = a quadlet write, move the last quadlet as
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DDNSDigest.c1321 mDNSexport void DNSDigest_SignMessage(DNSMessage *msg, mDNSu8 **end, DomainAuthInfo *info, mDNSu16 tcode) argument
1382 // digest error (tcode) and other data len (zero) - we'll add them to the rdata later
1383 buf.b[0] = (mDNSu8)((tcode >> 8) & 0xff);
1384 buf.b[1] = (mDNSu8)( tcode & 0xff);
1406 rdata[2] = (mDNSu8)((tcode >> 8) & 0xff);
1407 rdata[3] = (mDNSu8)( tcode & 0xff);
1421 mDNSexport mDNSBool DNSDigest_VerifyMessage(DNSMessage *msg, mDNSu8 *end, LargeCacheRecord * lcr, DomainAuthInfo *info, mDNSu16 * rcode, mDNSu16 * tcode) argument
1444 *tcode = TSIG_ErrBadKey;
1458 *tcode = TSIG_ErrBadTime;
1484 *tcode
[all...]
H A DmDNSEmbeddedAPI.h3048 extern void DNSDigest_SignMessage(DNSMessage *msg, mDNSu8 **end, DomainAuthInfo *info, mDNSu16 tcode);
3064 extern mDNSBool DNSDigest_VerifyMessage(DNSMessage *msg, mDNSu8 *end, LargeCacheRecord *tsig, DomainAuthInfo *info, mDNSu16 *rcode, mDNSu16 *tcode);
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dmilter.c1411 int tcode; local
1439 tcode = -1;
1445 tcode = SMFTO_CONNECT;
1449 tcode = SMFTO_WRITE;
1453 tcode = SMFTO_READ;
1457 tcode = SMFTO_EOM;
1468 if (tcode >= 0)
1470 m->mf_timeout[tcode] = convtime(p, 's');
1474 (u_long) m->mf_timeout[tcode]);

Completed in 110 milliseconds