Lines Matching defs:tmp
58 u8 tmp;
80 tmp = *pos++;
82 "0x%02x", tmp);
83 hdr->tag = (hdr->tag << 7) | (tmp & 0x7f);
84 } while (tmp & 0x80);
92 tmp = *pos++;
93 if (tmp & 0x80) {
94 if (tmp == 0xff) {
99 tmp &= 0x7f; /* number of subsequent octets */
101 if (tmp > 4) {
105 while (tmp--) {
115 hdr->length = tmp;
133 u8 tmp;
146 tmp = *pos++;
147 val = (val << 7) | (tmp & 0x7f);
148 } while (tmp & 0x80);