Home | History | Annotate | Download | only in asn1

Lines Matching refs:elem

116 static int bitstr_cb(const char *elem, int len, void *bitstr);
117 static int asn1_cb(const char *elem, int len, void *bitstr);
277 static int asn1_cb(const char *elem, int len, void *bitstr)
287 for(i = 0, p = elem; i < len; p++, i++)
293 vlen = len - (vstart - elem);
294 len = p - elem;
299 utype = asn1_str2tag(elem, len);
304 ERR_add_error_data(2, "tag=", elem);
314 if (!vstart && elem[len])
833 static int bitstr_cb(const char *elem, int len, void *bitstr)
837 if (!elem)
839 bitnum = strtoul(elem, &eptr, 10);
840 if (eptr && *eptr && (eptr != elem + len))