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

12

/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/protobuf/java/src/main/java/com/google/protobuf/
H A DBoundedByteString.java149 return nextByte();
152 public byte nextByte() { method in class:BoundedByteString.BoundedByteIterator
H A DLiteralByteString.java325 return nextByte();
328 public byte nextByte() { method in class:LiteralByteString.LiteralByteIterator
H A DRopeByteString.java799 return nextByte(); // Does not instantiate a Byte
802 public byte nextByte() { method in class:RopeByteString.RopeByteIterator
807 return bytes.nextByte();
H A DByteString.java101 * {@link ByteIterator#nextByte()}.
119 byte nextByte(); method in interface:ByteString.ByteIterator
/external/icu/android_icu4j/src/main/java/android/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);
267 firstByte = it.charValue = it.nextByte(det);
277 int secondByte = it.nextByte(det);
331 firstByte = it.charValue = it.nextByte(det);
342 secondByte = it.nextByte(det);
368 thirdByte = it.nextByte(det);
471 firstByte = it.charValue = it.nextByte(det);
484 secondByte = it.nextByte(de
[all...]
H A DCharsetRecog_sbcs.java107 private int nextByte(CharsetDetector det) method in class:CharsetRecog_sbcs.NGramParser
121 while ((b = nextByte(det)) >= 0) {
214 private int nextByte(CharsetDetector det) method in class:CharsetRecog_sbcs.NGramParser_IBM420
237 while ((b = nextByte(det)) >= 0) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetRecog_mbcs.java155 int nextByte(CharsetDetector det) { method in class:CharsetRecog_mbcs.iteratedChar
203 firstByte = it.charValue = it.nextByte(det);
212 int secondByte = it.nextByte(det);
266 firstByte = it.charValue = it.nextByte(det);
276 int secondByte = it.nextByte(det);
330 firstByte = it.charValue = it.nextByte(det);
341 secondByte = it.nextByte(det);
367 thirdByte = it.nextByte(det);
470 firstByte = it.charValue = it.nextByte(det);
483 secondByte = it.nextByte(de
[all...]
H A DCharsetRecog_sbcs.java106 private int nextByte(CharsetDetector det) method in class:CharsetRecog_sbcs.NGramParser
120 while ((b = nextByte(det)) >= 0) {
213 private int nextByte(CharsetDetector det) method in class:CharsetRecog_sbcs.NGramParser_IBM420
236 while ((b = nextByte(det)) >= 0) {
/external/icu/icu4c/source/i18n/
H A Dcsrmbcs.cpp131 int32_t IteratedChar::nextByte(InputText *det) function in class:IteratedChar
247 int32_t firstByte = it->charValue = it->nextByte(det);
257 int32_t secondByte = it->nextByte(det);
299 firstByte = it->charValue = it->nextByte(det);
311 secondByte = it->nextByte(det);
343 thirdByte = it->nextByte(det);
411 firstByte = it->charValue = it->nextByte(det);
422 int32_t secondByte = it->nextByte(det);
465 firstByte = it->charValue = it->nextByte(det);
477 secondByte = it->nextByte(de
[all...]
H A Dcsrmbcs.h42 int32_t nextByte(InputText* det);
H A Dcsrsbcs.h46 virtual int32_t nextByte(InputText *det);
64 int32_t nextByte(InputText *det);
H A Dcsrsbcs.cpp94 int32_t NGramParser::nextByte(InputText *det) function in class:NGramParser
108 while ((b = nextByte(det)) >= 0) {
191 int32_t NGramParser_IBM420::nextByte(InputText *det) function in class:NGramParser_IBM420
215 while ((b = nextByte(det)) >= 0) {
/external/lzma/CPP/7zip/Compress/
H A DBcj2Coder.cpp151 Byte nextByte = _buf[bufPos + 4]; local
153 (UInt32(nextByte) << 24) |
158 // if (Test86MSByte(nextByte))
187 convert = Test86MSByte(nextByte);
190 convert = Test86MSByte(nextByte);
200 convert = Test86MSByte(nextByte);
209 prevByte = nextByte;
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
H A DEUCTool.java288 int nextByte() { method in class:EUCTool.iteratedChar
308 firstByte = it.charValue = it.nextByte();
319 secondByte = it.nextByte();
345 thirdByte = it.nextByte();
H A DBIG5Tool.java288 int nextByte() { method in class:BIG5Tool.iteratedChar
306 firstByte = it.charValue = it.nextByte();
319 secondByte = it.nextByte();
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.cpp331 uint8_t nextByte; local
354 && !lookAtByte(insn, &nextByte))
364 ((nextByte == 0xf0) ||
365 ((nextByte & 0xfe) == 0x86 || (nextByte & 0xf8) == 0x90)))
374 (nextByte == 0x88 || nextByte == 0x89 ||
375 nextByte == 0xc6 || nextByte == 0xc7))
377 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.java728 int nextByte = is.read();
729 if (nextByte < 0) {
742 bytes[length++] = (byte) nextByte;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUBinary.java724 int nextByte = is.read();
725 if (nextByte < 0) {
738 bytes[length++] = (byte) nextByte;
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DLiteralByteStringTest.java91 stillEqual = (iter.hasNext() && referenceBytes[i] == iter.nextByte());
97 iter.nextByte();
H A DByteStringTest.java632 stillEqual = (duoIter.nextByte() == quintetIter.nextByte());
637 duoIter.nextByte();
643 quintetIter.nextByte();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.help_3.5.0.v20100524.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/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 439 milliseconds

12