Searched refs:lentype (Results 1 – 2 of 2) sorted by relevance
467 assert(field->lentype != 0); in encode_a_field()468 assert(field->lentype->type == atype_int || field->lentype->type == atype_uint); in encode_a_field()471 if (field->lentype->type == atype_int) { in encode_a_field()472 asn1_intmax xlen = field->lentype->loadint(lenptr); in encode_a_field()481 asn1_uintmax xlen = field->lentype->loaduint(lenptr); in encode_a_field()524 assert(field->lentype != 0); in encode_a_field()525 assert(field->lentype->type == atype_int || field->lentype->type == atype_uint); in encode_a_field()528 if (field->lentype->type == atype_int) { in encode_a_field()529 asn1_intmax xlen = field->lentype->loadint(lenptr); in encode_a_field()536 asn1_uintmax xlen = field->lentype->loaduint(lenptr); in encode_a_field()
575 const struct atype_info *lentype; member