Home | History | Annotate | Download | only in src

Lines Matching defs:hdr

179 	uint8_t type, addr, temp, hdr;
232 hdr = bt_get_unaligned((uint8_t *) (buf + 20));
233 plen = ((hdr & 0x10) >> 4) | ((hdr & 0x08) >> 2) | (hdr & 0x04) | ((hdr & 0x02) << 2) | ((hdr & 0x01) << 4);
234 pflow = ((hdr & 0x20) >> 5);
235 llid = ((hdr & 0x80) >> 7) | ((hdr & 0x40) >> 5);
236 hdr = bt_get_unaligned((uint8_t *) (buf + 21));
237 plen = plen | ((hdr & 0x80) >> 2) | (hdr & 0x40) | ((hdr & 0x20) << 2) | ((hdr & 0x08) << 4);