HomeSort by relevance Sort by last modified time
    Searched refs:writeByte (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /dalvik/dx/src/com/android/dex/util/
ByteOutput.java 29 void writeByte(int i);
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/data/
CompactDataOutput.java 48 writeByte(value);
50 writeByte(0x80 | (value & 0x7F));
73 writeByte(buffer);
79 writeByte(buffer);
  /external/grpc-grpc-java/okhttp/third_party/okhttp/test/java/io/grpc/okhttp/internal/framed/
HpackTest.java 80 bytesIn.writeByte(0x00); // Literal indexed
81 bytesIn.writeByte(0x0a); // Literal name (len = 10)
84 bytesIn.writeByte(0x0d); // Literal value (len = 13)
96 bytesIn.writeByte(0x40); // Literal indexed
97 bytesIn.writeByte(0x0a); // Literal name (len = 10)
100 bytesIn.writeByte(0x0d); // Literal value (len = 13)
103 bytesIn.writeByte(0x20); // Set max table size to 0
113 bytesIn.writeByte(0x40); // Literal indexed
114 bytesIn.writeByte(0x0a); // Literal name (len = 10)
117 bytesIn.writeByte(0x0d); // Literal value (len = 13
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
HpackTest.java 68 bytesIn.writeByte(0x00); // Literal indexed
69 bytesIn.writeByte(0x0a); // Literal name (len = 10)
72 bytesIn.writeByte(0x0d); // Literal value (len = 13)
85 bytesIn.writeByte(0x40); // Literal indexed
86 bytesIn.writeByte(0x0a); // Literal name (len = 10)
89 bytesIn.writeByte(0x0d); // Literal value (len = 13)
92 bytesIn.writeByte(0x40); // Literal indexed
93 bytesIn.writeByte(0x0a); // Literal name (len = 10)
96 bytesIn.writeByte(0x0d); // Literal value (len = 13)
99 bytesIn.writeByte(0x40); // Literal indexe
    [all...]
Http2Test.java 49 frame.writeByte(99); // type 99
50 frame.writeByte(Http2.FLAG_NONE);
62 frame.writeByte(Http2.TYPE_HEADERS);
63 frame.writeByte(FLAG_END_HEADERS | FLAG_END_STREAM);
88 frame.writeByte(Http2.TYPE_HEADERS);
89 frame.writeByte(FLAG_END_HEADERS | FLAG_PRIORITY);
92 frame.writeByte(255); // Heaviest weight, zero-indexed.
124 frame.writeByte(Http2.TYPE_HEADERS);
125 frame.writeByte(Http2.FLAG_NONE);
131 frame.writeByte(Http2.TYPE_CONTINUATION)
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
DexRandomAccessFile.java 66 writeByte(b1);
67 writeByte(b2);
86 writeByte(b1);
88 writeByte(b2);
90 writeByte(b3);
92 writeByte(b4);
124 writeByte(0);
136 writeByte(nextByte);
154 writeByte(0x80);
155 writeByte(0x80)
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format22b.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeByte((byte) insn.vregB);
30 file.writeByte((byte) insn.vregC);
Format23x.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeByte((byte) insn.vregB);
30 file.writeByte((byte) insn.vregC);
Format35mi.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
30 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
31 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
Format35ms.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
30 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
31 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
Format10x.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) 0); // padding
Format11x.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
Format12x.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
Format20bc.java 31 file.writeByte((byte) insn.info.value);
32 file.writeByte((byte) insn.vregA);
Format22x.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
Format35c.java 29 file.writeByte((byte) insn.info.value);
30 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
32 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
33 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
Format10t.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
FormEncodingBuilder.java 33 content.writeByte('&');
37 content.writeByte('=');
46 content.writeByte('&');
50 content.writeByte('=');
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
FormEncodingBuilder.java 35 content.writeByte('&');
39 content.writeByte('=');
48 content.writeByte('&');
52 content.writeByte('=');
  /external/antlr/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 62 out.writeByte(SerializedGrammar.FORMAT_VERSION);
77 case ANTLRParser.LEXER_GRAMMAR : out.writeByte('l'); break;
78 case ANTLRParser.PARSER_GRAMMAR : out.writeByte('p'); break;
79 case ANTLRParser.TREE_GRAMMAR: out.writeByte('t'); break;
80 case ANTLRParser.COMBINED_GRAMMAR : out.writeByte('c'); break;
93 out.writeByte('R');
103 out.writeByte('.');
112 out.writeByte('B');
123 out.writeByte('A');
137 out.writeByte(';');
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
RemoteControlWriter.java 51 out.writeByte(RemoteControlWriter.BLOCK_CMDOK);
56 out.writeByte(RemoteControlWriter.BLOCK_CMDDUMP);
  /external/objenesis/main/src/main/java/org/objenesis/instantiator/sun/
MagicInstantiator.java 137 in.writeByte(CONSTANT_Class);
141 in.writeByte(CONSTANT_Class);
145 in.writeByte(CONSTANT_Utf8);
149 in.writeByte(CONSTANT_Utf8);
153 in.writeByte(CONSTANT_Utf8);
157 in.writeByte(CONSTANT_Utf8);
161 in.writeByte(CONSTANT_Utf8);
165 in.writeByte(CONSTANT_Utf8);
170 in.writeByte(CONSTANT_Class);
174 in.writeByte(CONSTANT_Utf8)
    [all...]
  /external/xz-java/src/org/tukaani/xz/rangecoder/
RangeEncoderToStream.java 24 void writeByte(int b) throws IOException {
  /dalvik/dx/src/com/android/dex/
EncodedValueCodec.java 51 out.writeByte(type | ((requiredBytes - 1) << 5));
55 out.writeByte((byte) value);
78 out.writeByte(type | ((requiredBytes - 1) << 5));
82 out.writeByte((byte) value);
108 out.writeByte(type | ((requiredBytes - 1) << 5));
112 out.writeByte((byte) value);
  /external/turbine/java/com/google/turbine/bytecode/
AnnotationWriter.java 116 output.writeByte(tag);
121 output.writeByte('e');
127 output.writeByte('c');
132 output.writeByte('[');
140 output.writeByte('@');
145 output.writeByte(annotation.targetType().tag());
153 output.writeByte(flat.size());
155 output.writeByte(curr.tag());
156 output.writeByte(curr.typeArgumentIndex());
165 output.writeByte(((TypeParameterTarget) target).index())
    [all...]

Completed in 716 milliseconds

1 2 3 4 5 6 7 8 910