Home
last modified time | relevance | path

Searched refs:currentByte (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/glx/
Dpixel.c92 GLint elementsLeft, bitOffset, currentByte, nextByte, highBitMask; in FillBitmap() local
121 currentByte = MsbToLsbTable[iter[0]]; in FillBitmap()
124 currentByte = iter[0]; in FillBitmap()
135 currentByte = in FillBitmap()
136 ((currentByte & highBitMask) << bitOffset) | in FillBitmap()
140 currentByte = ((currentByte & highBitMask) << bitOffset); in FillBitmap()
144 *destImage = currentByte; in FillBitmap()
148 *destImage = currentByte & HighBitsMask[elementsLeft]; in FillBitmap()
283 GLint elementsLeft, bitOffset, currentByte, highBitMask, lowBitMask; in EmptyBitmap() local
327 currentByte = MsbToLsbTable[iter[0]]; in EmptyBitmap()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DRedefineClassesTest.java220 int currentByte = 0; in testRedefineClasses001() local
223 currentByte = newClassByteCodeFileInputStream.read(); in testRedefineClasses001()
234 if ( currentByte == -1 ) { // EOF is reached in testRedefineClasses001()
237 checkedCommand.setNextValueAsByte((byte)currentByte); in testRedefineClasses001()
/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java595 byte currentByte = _matchFinder.GetIndexByte(0 - 1); in GetOptimum()
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2) in GetOptimum()
609 …SubCoder(position, _previousByte).GetPrice(!Base.StateIsCharState(_state), matchByte, currentByte); in GetOptimum()
615 if (matchByte == currentByte) in GetOptimum()
802 currentByte = _matchFinder.GetIndexByte(0 - 1); in GetOptimum()
810 GetPrice(!Base.StateIsCharState(state), matchByte, currentByte); in GetOptimum()
826 if (matchByte == currentByte && in GetOptimum()
847 if (!nextIsChar && matchByte != currentByte) in GetOptimum()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs595 Byte currentByte = _matchFinder.GetIndexByte(0 - 1); in GetOptimum()
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2) in GetOptimum()
609 …coder.GetSubCoder(position, _previousByte).GetPrice(!_state.IsCharState(), matchByte, currentByte); in GetOptimum()
615 if (matchByte == currentByte) in GetOptimum()
802 currentByte = _matchFinder.GetIndexByte(0 - 1); in GetOptimum()
810 GetPrice(!state.IsCharState(), matchByte, currentByte); in GetOptimum()
826 if (matchByte == currentByte && in GetOptimum()
847 if (!nextIsChar && matchByte != currentByte) in GetOptimum()