Lines Matching refs:tmp
174 u8 tmp; in asn1_get_next() local
204 tmp = *pos++; in asn1_get_next()
206 "0x%02x", tmp); in asn1_get_next()
207 hdr->tag = (hdr->tag << 7) | (tmp & 0x7f); in asn1_get_next()
208 } while (tmp & 0x80); in asn1_get_next()
225 tmp = *pos++; in asn1_get_next()
226 if (tmp & 0x80) { in asn1_get_next()
227 if (tmp == 0xff) { in asn1_get_next()
232 tmp &= 0x7f; /* number of subsequent octets */ in asn1_get_next()
234 if (tmp == 0 || pos == end || *pos == 0) { in asn1_get_next()
239 if (tmp > 4) { in asn1_get_next()
243 while (tmp--) { in asn1_get_next()
258 hdr->length = tmp; in asn1_get_next()
294 u8 tmp; in asn1_parse_oid() local
307 tmp = *pos++; in asn1_parse_oid()
308 val = (val << 7) | (tmp & 0x7f); in asn1_parse_oid()
309 } while (tmp & 0x80); in asn1_parse_oid()