Searched refs:nextByte (Results 1 - 25 of 38) sorted by relevance

12

/external/r8/src/main/java/com/android/tools/r8/code/
H A DBytecodeStream.java30 int nextByte(); method in interface:BytecodeStream
H A DInstructionFactory.java19 int high = stream.nextByte();
20 int opcode = stream.nextByte();
63 private int nextByte; field in class:InstructionFactory.ShortBufferBytecodeStream
81 public int nextByte() { method in class:InstructionFactory.ShortBufferBytecodeStream
84 return nextByte;
87 nextByte = next & 0xff;
H A DInstruction.java38 return (byte) stream.nextByte();
42 int result = stream.nextByte();
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
H A DBitstreamReader.java36 private int nextByte; field in class:BitstreamReader
45 nextByte = is.read();
89 curByte = nextByte;
90 nextByte = is.read();
124 return !(curByte == -1 || (nextByte == -1 && hasTail));
162 bits[cnt++] = (nextByte >> (7 - i)) & 0x1;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCharsetRecog_mbcs.java157 int nextByte(CharsetDetector det) { method in class:CharsetRecog_mbcs.iteratedChar
205 firstByte = it.charValue = it.nextByte(det);
214 int secondByte = it.nextByte(det);
271 firstByte = it.charValue = it.nextByte(det);
281 int secondByte = it.nextByte(det);
338 firstByte = it.charValue = it.nextByte(det);
349 secondByte = it.nextByte(det);
375 thirdByte = it.nextByte(det);
484 firstByte = it.charValue = it.nextByte(det);
497 secondByte = it.nextByte(de
[all...]
H A DCharsetRecog_sbcs.java110 private int nextByte(CharsetDetector det) method in class:CharsetRecog_sbcs.NGramParser
124 while ((b = nextByte(det)) >= 0) {
217 private int nextByte(CharsetDetector det) method in class:CharsetRecog_sbcs.NGramParser_IBM420
241 while ((b = nextByte(det)) >= 0) {
/external/icu/icu4c/source/i18n/
H A Dcsrmbcs.cpp132 int32_t IteratedChar::nextByte(InputText *det) function in class:IteratedChar
248 int32_t firstByte = it->charValue = it->nextByte(det);
258 int32_t secondByte = it->nextByte(det);
300 firstByte = it->charValue = it->nextByte(det);
312 secondByte = it->nextByte(det);
344 thirdByte = it->nextByte(det);
412 firstByte = it->charValue = it->nextByte(det);
423 int32_t secondByte = it->nextByte(det);
466 firstByte = it->charValue = it->nextByte(det);
478 secondByte = it->nextByte(de
[all...]
H A Dcsrmbcs.h44 int32_t nextByte(InputText* det);
H A Dcsrsbcs.h48 virtual int32_t nextByte(InputText *det);
66 int32_t nextByte(InputText *det);
H A Dcsrsbcs.cpp95 int32_t NGramParser::nextByte(InputText *det) function in class:NGramParser
109 while ((b = nextByte(det)) >= 0) {
192 int32_t NGramParser_IBM420::nextByte(InputText *det) function in class:NGramParser_IBM420
216 while ((b = nextByte(det)) >= 0) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetRecog_mbcs.java156 int nextByte(CharsetDetector det) { method in class:CharsetRecog_mbcs.iteratedChar
204 firstByte = it.charValue = it.nextByte(det);
213 int secondByte = it.nextByte(det);
270 firstByte = it.charValue = it.nextByte(det);
280 int secondByte = it.nextByte(det);
337 firstByte = it.charValue = it.nextByte(det);
348 secondByte = it.nextByte(det);
374 thirdByte = it.nextByte(det);
483 firstByte = it.charValue = it.nextByte(det);
496 secondByte = it.nextByte(de
[all...]
H A DCharsetRecog_sbcs.java109 private int nextByte(CharsetDetector det) method in class:CharsetRecog_sbcs.NGramParser
123 while ((b = nextByte(det)) >= 0) {
216 private int nextByte(CharsetDetector det) method in class:CharsetRecog_sbcs.NGramParser_IBM420
240 while ((b = nextByte(det)) >= 0) {
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
H A DEUCTool.java290 int nextByte() { method in class:EUCTool.iteratedChar
310 firstByte = it.charValue = it.nextByte();
321 secondByte = it.nextByte();
347 thirdByte = it.nextByte();
H A DBIG5Tool.java290 int nextByte() { method in class:BIG5Tool.iteratedChar
308 firstByte = it.charValue = it.nextByte();
321 secondByte = it.nextByte();
/external/skia/src/core/
H A DSkUtils.cpp151 uint8_t nextByte = *p;
152 if (!utf8_byte_is_continuation(nextByte)) {
155 c = (c << 6) | (nextByte & 0x3F);
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.cpp328 uint8_t nextByte; local
351 && !lookAtByte(insn, &nextByte))
361 ((nextByte == 0xf0) ||
362 ((nextByte & 0xfe) == 0x86 || (nextByte & 0xf8) == 0x90)))
371 (nextByte == 0x88 || nextByte == 0x89 ||
372 nextByte == 0xc6 || nextByte == 0xc7))
374 if (insn->mode == MODE_64BIT && (nextByte
[all...]
/external/mesa3d/src/glx/
H A Dpixel.c92 GLint elementsLeft, bitOffset, currentByte, nextByte, highBitMask; local
130 nextByte = MsbToLsbTable[iter[1]];
133 nextByte = iter[1];
137 ((nextByte & lowBitMask) >> (8 - bitOffset));
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICUBinary.java730 int nextByte = is.read();
731 if (nextByte < 0) {
744 bytes[length++] = (byte) nextByte;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUBinary.java726 int nextByte = is.read();
727 if (nextByte < 0) {
740 bytes[length++] = (byte) nextByte;
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DByteString.java164 * {@link ByteIterator#nextByte()}.
182 return nextByte();
186 public byte nextByte() {
213 byte nextByte(); method in interface:ByteString.ByteIterator
/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DByteStringTest.java634 stillEqual = (duoIter.nextByte() == quintetIter.nextByte());
639 duoIter.nextByte();
645 quintetIter.nextByte();
H A DLiteralByteStringTest.java93 stillEqual = (iter.hasNext() && referenceBytes[i] == iter.nextByte());
99 iter.nextByte();
H A DNioByteStringTest.java87 stillEqual = (iter.hasNext() && BYTES[i] == iter.nextByte());
93 iter.nextByte();
/external/r8/deps/
H A Dfastutil-7.2.0.jarMETA-INF/MANIFEST.MF it/ it/unimi/ it/unimi/dsi/ it/unimi/dsi/fastutil/ it/unimi/dsi/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.core.contenttype_3.5.0.v20150421-2214.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...

Completed in 909 milliseconds

12