Home | History | Annotate | Download | only in asn1

Lines Matching defs:ndef

79  * Top level i2d equivalents: the 'ndef' variant instructs the encoder to use
132 int i, seqcontlen, seqlen, ndef = 1;
194 ndef = 2;
231 seqlen = ASN1_object_size(ndef, seqcontlen, tag);
235 ASN1_put_object(out, ndef, seqcontlen, tag, aclass);
246 if (ndef == 2)
268 int i, ret, flags, ttag, tclass, ndef;
304 /* if template and arguments require ndef, use it */
306 ndef = 2;
308 ndef = 1;
354 sklen = ASN1_object_size(ndef, skcontlen, sktag);
359 ret = ASN1_object_size(ndef, sklen, ttag);
369 ASN1_put_object(out, ndef, sklen, ttag, tclass);
371 ASN1_put_object(out, ndef, skcontlen, sktag, skaclass);
375 if (ndef == 2) {
391 ret = ASN1_object_size(ndef, i, ttag);
394 ASN1_put_object(out, ndef, i, ttag, tclass);
396 if (ndef == 2)
496 int ndef = 0;
522 /* -2 return is special meaning use ndef */
524 ndef = 2;
535 ASN1_put_object(out, ndef, len, tag, aclass);
537 if (ndef)
544 return ASN1_object_size(ndef, len, tag);
649 /* Special handling for NDEF */