HomeSort by relevance Sort by last modified time
    Searched full:tagno (Results 1 - 14 of 14) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BERApplicationSpecific.java 6 public BERApplicationSpecific(int tagNo, ASN1EncodableVector vec)
8 super(tagNo, vec);
DERTaggedObject.java 16 * @param tagNo the tag number for this object.
20 int tagNo,
23 super(tagNo, obj);
28 * @param tagNo the tag number for this object.
33 int tagNo,
36 super(explicit, tagNo, obj);
44 int tagNo)
46 super(false, tagNo, new DERSequence());
59 out.writeEncoded(CONSTRUCTED | TAGGED, tagNo, bytes);
76 out.writeTag(flags, tagNo);
    [all...]
DEROutputStream.java 53 void writeTag(int flags, int tagNo)
56 if (tagNo < 31)
58 write(flags | tagNo);
63 if (tagNo < 128)
65 write(tagNo);
72 stack[--pos] = (byte)(tagNo & 0x7F);
76 tagNo >>= 7;
77 stack[--pos] = (byte)(tagNo & 0x7F | 0x80);
79 while (tagNo > 127);
86 void writeEncoded(int flags, int tagNo, byte[] bytes
    [all...]
BERTaggedObject.java 15 * @param tagNo the tag number for this object.
19 int tagNo,
22 super(tagNo, obj);
27 * @param tagNo the tag number for this object.
32 int tagNo,
35 super(explicit, tagNo, obj);
43 int tagNo)
45 super(false, tagNo, new BERSequence());
54 out.writeTag(CONSTRUCTED | TAGGED, tagNo);
ASN1StreamParser.java 59 int tagNo = ASN1InputStream.readTagNumber(_in, tag);
81 return new BERApplicationSpecificParser(tagNo, sp);
86 return new BERTaggedObjectParser(tag, tagNo, indIn);
92 switch (tagNo)
104 throw new IOException("unknown BER object encountered: 0x" + Integer.toHexString(tagNo));
113 return new DERApplicationSpecific(isConstructed, tagNo, defIn.toByteArray());
118 return new BERTaggedObjectParser(tag, tagNo, defIn);
124 switch (tagNo)
139 return new DERUnknownTag(true, tagNo, defIn.toByteArray());
144 switch (tagNo)
    [all...]
ASN1InputStream.java 108 int tagNo,
118 return new DERApplicationSpecific(isConstructed, tagNo, defIn.toByteArray());
123 return new BERTaggedObjectParser(tag, tagNo, defIn).getDERObject();
129 switch (tagNo)
150 return new DERUnknownTag(true, tagNo, defIn.toByteArray());
154 return createPrimitiveDERObject(tagNo, defIn.toByteArray());
194 int tagNo = readTagNumber(this, tag);
216 return new BERApplicationSpecificParser(tagNo, sp).getDERObject();
220 return new BERTaggedObjectParser(tag, tagNo, indIn).getDERObject();
226 switch (tagNo)
    [all...]
ASN1TaggedObject.java 14 int tagNo;
45 * @param tagNo the tag number for this object.
49 int tagNo,
53 this.tagNo = tagNo;
64 * @param tagNo the tag number for this object.
69 int tagNo,
81 this.tagNo = tagNo;
95 if (tagNo != other.tagNo || empty != other.empty || explicit != other.explicit
    [all...]
DERApplicationSpecific.java 67 public DERApplicationSpecific(int tagNo, ASN1EncodableVector vec)
69 this.tag = tagNo;
189 int tagNo = input[0] & 0x1f;
194 if (tagNo == 0x1f)
196 tagNo = 0;
209 tagNo |= (b & 0x7f);
210 tagNo <<= 7;
214 tagNo |= (b & 0x7f);
  /system/core/sh/
mknodes.sh 46 tagno=0
64 echo "#define $define $tagno"
65 tagno=$(($tagno + 1))
136 echo "static const short nodesize[$tagno] = {"
  /external/srec/tools/grxmlcompile/
grph.h 52 void AddTag (SubGraph *subg, int tagNo);
gr_iface.cpp 141 void Graph::AddTag (SubGraph *subg, int tagNo)
143 subg->AddTag (tagNo);
145 subg->DebugPrintLabel (tagNo);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java     [all...]
  /external/libvpx/examples/includes/geshi/geshi/
visualfoxpro.php 160 'Tableupdate','TagCount','TagNo','Tan','Target','This',
  /dalvik/hit/samples/
android.hprof     [all...]

Completed in 95 milliseconds