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

  /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;
  /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...]
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/tar/
TarUtils.java 137 final byte currentByte = buffer[start];
139 if (currentByte < '0' || currentByte > '7'){
141 exceptionMessage(buffer, offset, length, start, currentByte));
143 result = (result << 3) + (currentByte - '0'); // convert from ASCII
237 final int length, final int current, final byte currentByte) {
248 return "Invalid byte "+currentByte+" at offset "+(current-offset)+" in '"+string+"' len="+length;
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/snappy/
SnappyCompressorOutputStream.java 155 int currentByte = (int) (uncompressedSize & 0x7F);
156 more = uncompressedSize > currentByte;
158 currentByte |= 0x80;
160 os.write(currentByte);
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
ZipArchiveInputStream.java     [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
RedefineClassesTest.java 289 for (byte currentByte: newClass) {
290 checkedCommand.setNextValueAsByte(currentByte);
  /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 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 

Completed in 762 milliseconds