Lines Matching refs:tcode
228 #define TCODE_IS_READ_REQUEST(tcode) (((tcode) & ~1) == 4)
229 #define TCODE_IS_BLOCK_PACKET(tcode) (((tcode) & 1) != 0)
230 #define TCODE_IS_LINK_INTERNAL(tcode) ((tcode) == TCODE_LINK_INTERNAL)
231 #define TCODE_IS_REQUEST(tcode) (((tcode) & 2) == 0)
232 #define TCODE_IS_RESPONSE(tcode) (((tcode) & 2) != 0)
233 #define TCODE_HAS_REQUEST_DATA(tcode) (((tcode) & 12) != 4)
234 #define TCODE_HAS_RESPONSE_DATA(tcode) (((tcode) & 12) != 0)