Lines Matching refs:pbf
51 * byte 0: MT PBF GID
76 /* PBF: Packet Boundary Flag (byte 0) */
109 #define NCI_MSG_PBLD_HDR0(p, mt, pbf, gid) \
110 *(p)++ = (UINT8) (((mt) << NCI_MT_SHIFT) | ((pbf) << NCI_PBF_SHIFT) | (gid));
117 #define NCI_MSG_PRS_HDR0(p, mt, pbf, gid) \
119 pbf = (*(p) & NCI_PBF_MASK) >> NCI_PBF_SHIFT; \
122 /* parse MT and PBF bits of NCI packet */
123 #define NCI_MSG_PRS_MT_PBF(p, mt, pbf) \
125 pbf = (*(p) & NCI_PBF_MASK) >> NCI_PBF_SHIFT;
132 * byte 0: MT(0) PBF CID
142 #define NCI_DATA_PBLD_HDR(p, pbf, cid, len) \
143 *(p)++ = (UINT8) (((pbf) << NCI_PBF_SHIFT) | (cid)); *(p)++=0; *(p)++ = (len);
145 #define NCI_DATA_PRS_HDR(p, pbf, cid, len) \
146 (pbf) = (*(p) & NCI_PBF_MASK) >> NCI_PBF_SHIFT; (cid) = (*(p) & NCI_CID_MASK); p++; p++; (len) = *(p)++;