HomeSort by relevance Sort by last modified time
    Searched refs:lenByte (Results 1 - 7 of 7) sorted by null

  /libcore/ojluni/src/main/java/sun/security/util/
DerIndefLenConverter.java 151 int lenByte = data[dataPos++] & 0xff;
152 if (isIndefinite(lenByte)) {
157 if (isLongForm(lenByte)) {
158 lenByte &= LEN_MASK;
159 if (lenByte > 4) {
162 if ((dataSize - dataPos) < (lenByte + 1)) {
165 for (int i = 0; i < lenByte; i++) {
172 curLen = (lenByte & LEN_MASK);
187 int lenByte = data[dataPos++] & 0xff;
188 if (isIndefinite(lenByte)) {
    [all...]
DerInputStream.java 426 byte lenByte = (byte)buffer.read();
427 int len = getLength(lenByte, buffer);
435 indefData[1] = lenByte;
624 static int getLength(int lenByte, InputStream in) throws IOException {
626 if (lenByte == -1) {
631 tmp = lenByte;
DerValue.java 262 byte lenByte = (byte)in.read();
263 length = DerInputStream.getLength(lenByte, in);
270 indefData[1] = lenByte;
381 byte lenByte = (byte)in.read();
382 length = DerInputStream.getLength(lenByte, in);
388 indefData[1] = lenByte;
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/cryptobyte/
builder.go 226 var lenLen, lenByte uint8
232 lenByte = 0x80 | 4
235 lenByte = 0x80 | 3
238 lenByte = 0x80 | 2
241 lenByte = 0x80 | 1
244 lenByte = uint8(length)
250 child.result[child.offset] = lenByte
asn1.go 666 tag, lenByte := (*s)[0], (*s)[1]
686 if lenByte&0x80 == 0 {
688 length = uint32(lenByte) + 2
693 lenLen := lenByte & 0x7f
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/cryptobyte/
builder.go 226 var lenLen, lenByte uint8
232 lenByte = 0x80 | 4
235 lenByte = 0x80 | 3
238 lenByte = 0x80 | 2
241 lenByte = 0x80 | 1
244 lenByte = uint8(length)
250 child.result[child.offset] = lenByte
asn1.go 666 tag, lenByte := (*s)[0], (*s)[1]
686 if lenByte&0x80 == 0 {
688 length = uint32(lenByte) + 2
693 lenLen := lenByte & 0x7f

Completed in 499 milliseconds