/external/pdfium/xfa/src/fxbarcode/datamatrix/ |
BC_DataMatrixBitMatrixParser.cpp | 160 int32_t currentByte = 0;
162 currentByte |= 1;
164 currentByte <<= 1;
166 currentByte |= 1;
168 currentByte <<= 1;
170 currentByte |= 1;
172 currentByte <<= 1;
174 currentByte |= 1;
176 currentByte <<= 1;
178 currentByte |= 1; [all...] |
/developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/ |
MidiFramer.java | 54 final byte currentByte = data[offset]; 55 final int currentInt = currentByte & 0xFF; 58 mRunningStatus = currentByte; 60 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 75 mBuffer[0] = currentByte; 78 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 91 mBuffer[mCount++] = currentByte;
|
/developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/ |
MidiFramer.java | 54 final byte currentByte = data[offset]; 55 final int currentInt = currentByte & 0xFF; 58 mRunningStatus = currentByte; 60 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 75 mBuffer[0] = currentByte; 78 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 91 mBuffer[mCount++] = currentByte;
|
/developers/samples/android/common/src/java/com/example/android/common/midi/ |
MidiFramer.java | 54 final byte currentByte = data[offset]; 55 final int currentInt = currentByte & 0xFF; 58 mRunningStatus = currentByte; 60 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 75 mBuffer[0] = currentByte; 78 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 91 mBuffer[mCount++] = currentByte;
|
/development/samples/browseable/MidiScope/src/com.example.android.common.midi/ |
MidiFramer.java | 54 final byte currentByte = data[offset]; 55 final int currentInt = currentByte & 0xFF; 58 mRunningStatus = currentByte; 60 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 75 mBuffer[0] = currentByte; 78 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 91 mBuffer[mCount++] = currentByte;
|
/development/samples/browseable/MidiSynth/src/com.example.android.common.midi/ |
MidiFramer.java | 54 final byte currentByte = data[offset]; 55 final int currentInt = currentByte & 0xFF; 58 mRunningStatus = currentByte; 60 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 75 mBuffer[0] = currentByte; 78 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 91 mBuffer[mCount++] = currentByte;
|
/frameworks/base/core/java/com/android/internal/midi/ |
MidiFramer.java | 65 final byte currentByte = data[offset]; 66 final int currentInt = currentByte & 0xFF; 69 mRunningStatus = currentByte; 71 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 86 mBuffer[0] = currentByte; 89 mNeeded = MidiConstants.getBytesPerMessage(currentByte) - 1; 102 mBuffer[mCount++] = currentByte;
|
/libcore/ojluni/src/main/java/sun/misc/ |
HexDumpEncoder.java | 50 private int currentByte; 87 currentByte = 0; 92 thisLine[currentByte] = buf[off]; 95 currentByte++; 96 if (currentByte == 8)
|
/external/mesa3d/src/glx/ |
pixel.c | 92 GLint elementsLeft, bitOffset, currentByte, nextByte, highBitMask; 121 currentByte = MsbToLsbTable[iter[0]]; 124 currentByte = iter[0]; 135 currentByte = 136 ((currentByte & highBitMask) << bitOffset) | 140 currentByte = ((currentByte & highBitMask) << bitOffset); 144 *destImage = currentByte; 148 *destImage = currentByte & HighBitsMask[elementsLeft]; 283 GLint elementsLeft, bitOffset, currentByte, highBitMask, lowBitMask [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
IccServiceTable.java | 63 byte currentByte = mServiceTable[i]; 65 if ((currentByte & (1 << bit)) != 0) {
|
IccUtils.java | 418 byte currentByte = 0x00; 422 currentByte = data[valueIndex++]; 425 pixels[pixelIndex++] = bitToRGB((currentByte >> bitIndex-- ) & 0x01);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
IconLoader.java | 249 byte currentByte = 0x00; 253 currentByte = data[valueIndex++]; 256 pixels[pixelIndex++] = bitToBnW((currentByte >> bitIndex-- ) & 0x01); 308 byte currentByte = data[valueIndex++]; 314 currentByte = data[valueIndex++]; 317 int clutEntry = ((currentByte >> bitIndex) & mask);
|
/external/pdfium/xfa/src/fxbarcode/qrcode/ |
BC_QRBitMatrixParser.cpp | 154 int32_t currentByte = 0;
165 currentByte <<= 1;
167 currentByte |= 1;
170 (*result)[resultOffset++] = (uint8_t)currentByte;
172 currentByte = 0;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
RedefineClassesTest.java | 219 int currentByte = 0; 222 currentByte = newClassByteCodeFileInputStream.read(); 233 if ( currentByte == -1 ) { // EOF is reached 236 checkedCommand.setNextValueAsByte((byte)currentByte);
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/ |
inputstream.py | 621 currentByte = property(getCurrentByte) 707 if self.data.currentByte not in spaceCharactersBytes: 751 if data.currentByte not in asciiLettersBytes: 864 if not self.data.currentByte == b"=": 870 if self.data.currentByte in (b'"', b"'"): 871 quoteMark = self.data.currentByte
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/ |
Encoder.java | 535 byte currentByte = _matchFinder.GetIndexByte(0 - 1);
538 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2) {
549 + _literalEncoder.GetSubCoder(position, _previousByte).GetPrice(!Base.StateIsCharState(_state), matchByte, currentByte);
556 if (matchByte == currentByte) {
707 currentByte = _matchFinder.GetIndexByte(0 - 1);
716 matchByte, currentByte);
733 if (matchByte == currentByte && !(nextOptimum.PosPrev < cur && nextOptimum.BackPrev == 0)) {
749 if (!nextIsChar && matchByte != currentByte) {
[all...] |
/external/lzma/Java/SevenZip/Compression/LZMA/ |
Encoder.java | 595 byte currentByte = _matchFinder.GetIndexByte(0 - 1);
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2)
609 _literalEncoder.GetSubCoder(position, _previousByte).GetPrice(!Base.StateIsCharState(_state), matchByte, currentByte);
615 if (matchByte == currentByte)
802 currentByte = _matchFinder.GetIndexByte(0 - 1);
810 GetPrice(!Base.StateIsCharState(state), matchByte, currentByte);
826 if (matchByte == currentByte &&
847 if (!nextIsChar && matchByte != currentByte)
[all...] |
/external/lzma/CS/7zip/Compress/LZMA/ |
LzmaEncoder.cs | 595 Byte currentByte = _matchFinder.GetIndexByte(0 - 1);
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2)
609 _literalEncoder.GetSubCoder(position, _previousByte).GetPrice(!_state.IsCharState(), matchByte, currentByte);
615 if (matchByte == currentByte)
802 currentByte = _matchFinder.GetIndexByte(0 - 1);
810 GetPrice(!state.IsCharState(), matchByte, currentByte);
826 if (matchByte == currentByte &&
847 if (!nextIsChar && matchByte != currentByte)
[all...] |
/external/zxing/core/ |
core.jar | |
/prebuilts/devtools/tools/lib/ |
commons-compress-1.0.jar | |
commons-compress-1.8.1.jar | |
/prebuilts/tools/common/commons-compress/ |
commons-compress-1.0.jar | |
/prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.0/ |
commons-compress-1.0.jar | |
/prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.8.1/ |
commons-compress-1.8.1.jar | |
/prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.9/ |
commons-compress-1.9.jar | |