Searched refs:pQ (Results 1 – 1 of 1) sorted by relevance
210 #define INIT_HTC_PACKET_QUEUE(pQ) \ argument212 DL_LIST_INIT(&(pQ)->QueueHead); \213 (pQ)->Depth = 0; \217 #define HTC_PACKET_ENQUEUE(pQ, p) \ argument218 { dl_list_insert_tail(&(pQ)->QueueHead, &(p)->ListLink); \219 (pQ)->Depth++; \223 #define HTC_PACKET_ENQUEUE_TO_HEAD(pQ, p) \ argument224 { dl_list_insert_head(&(pQ)->QueueHead, &(p)->ListLink); \225 (pQ)->Depth++; \228 #define HTC_QUEUE_EMPTY(pQ) ((pQ)->Depth == 0) argument[all …]