Home | History | Annotate | Download | only in tcpdump

Lines Matching defs:Form

12  * 2. Redistributions in binary form must reproduce the above copyright
248 const char *Form[] = {
341 u_char form, class; /* tag info */
408 u_char form, class, id;
428 form = (*p & 0xe0) >> 5; /* move upper 3 bits to lower 3 */
429 class = form >> 1; /* bits 7&6 -> bits 1&0, range 0-3 */
430 form &= 0x1; /* bit 5 -> bit 0, range 0-1 */
432 form = (u_char)(*p & ASN_FORM_BITS) >> ASN_FORM_SHIFT;
435 elem->form = form;
491 if (form >= sizeof(Form)/sizeof(Form[0])) {
492 printf("[form?%d]", form);
496 printf("[class?%c/%d]", *Form[form], class);
500 printf("[id?%c/%s/%d]", *Form[form], Class[class].name, id);
504 switch (form) {
663 * BE form was added.
847 * Rose-Normal-Form.