Home | History | Annotate | Download | only in asn1

Lines Matching full: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);
271 static int asn1_cb(const char *elem, int len, void *bitstr)
281 for(i = 0, p = elem; i < len; p++, i++)
287 vlen = len - (vstart - elem);
288 len = p - elem;
293 utype = asn1_str2tag(elem, len);
298 ERR_add_error_data(2, "tag=", elem);
308 if (!vstart && elem[len])
834 static int bitstr_cb(const char *elem, int len, void *bitstr)
838 if (!elem)
840 bitnum = strtoul(elem, &eptr, 10);
841 if (eptr && *eptr && (eptr != elem + len))