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

1 2

  /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) {
  /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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
RedefineClassesTest.java 288 for (byte currentByte: newClass) {
289 checkedCommand.setNextValueAsByte(currentByte);
  /frameworks/base/telephony/java/com/android/internal/telephony/uicc/
IccUtils.java 481 byte currentByte = 0x00;
485 currentByte = data[valueIndex++];
488 pixels[pixelIndex++] = bitToRGB((currentByte >> bitIndex-- ) & 0x01);
  /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/tools/common/m2/repository/org/ow2/asm/asm/6.1.1/
asm-6.1.1.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/misc/common/commons-compress/
commons-compress-prebuilt.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.12/
commons-compress-1.12.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 
  /prebuilts/tools/common/offline-m2/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 

Completed in 602 milliseconds

1 2