Home | History | Annotate | Download | only in asn1

Lines Matching defs:ndef

75 /* Top level i2d equivalents: the 'ndef' variant instructs the encoder
131 int i, seqcontlen, seqlen, ndef = 1;
194 if (aclass & ASN1_TFLG_NDEF) ndef = 2;
231 seqlen = ASN1_object_size(ndef, seqcontlen, tag);
235 ASN1_put_object(out, ndef, seqcontlen, tag, aclass);
247 if (ndef == 2)
269 int i, ret, flags, ttag, tclass, ndef;
309 /* if template and arguments require ndef, use it */
311 ndef = 2;
312 else ndef = 1;
359 sklen = ASN1_object_size(ndef, skcontlen, sktag);
362 ret = ASN1_object_size(ndef, sklen, ttag);
371 ASN1_put_object(out, ndef, sklen, ttag, tclass);
373 ASN1_put_object(out, ndef, skcontlen, sktag, skaclass);
377 if (ndef == 2)
396 ret = ASN1_object_size(ndef, i, ttag);
400 ASN1_put_object(out, ndef, i, ttag, tclass);
403 if (ndef == 2)
512 int ndef = 0;
538 /* -2 return is special meaning use ndef */
541 ndef = 2;
552 ASN1_put_object(out, ndef, len, tag, aclass);
554 if (ndef)
561 return ASN1_object_size(ndef, len, tag);
672 /* Special handling for NDEF */