Home
last modified time | relevance | path

Searched refs:bufIndex (Results 1 – 7 of 7) sorted by relevance

/external/lzma/C/
DMtCoder.c123 unsigned bufIndex; in ThreadFunc2() local
202 bufIndex = (unsigned)(int)-1; in ThreadFunc2()
237 bufIndex = mtc->freeBlockHead; in ThreadFunc2()
238 mtc->freeBlockHead = mtc->freeBlockList[bufIndex]; in ThreadFunc2()
241 res = mtc->mtCallback->Code(mtc->mtCallbackObject, t->index, bufIndex, in ThreadFunc2()
253 block->bufIndex = bufIndex; in ThreadFunc2()
284 if (res == SZ_OK && bufIndex != (unsigned)(int)-1) in ThreadFunc2()
286 res = mtc->mtCallback->Write(mtc->mtCallbackObject, bufIndex); in ThreadFunc2()
301 if (bufIndex != (unsigned)(int)-1) in ThreadFunc2()
303 mtc->freeBlockList[bufIndex] = mtc->freeBlockHead; in ThreadFunc2()
[all …]
DMtCoder.h69 unsigned bufIndex; member
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
DChecker.java33 private int bufIndex; field in Checker
71 bufIndex = 0; in resetCounts()
104 bufIndex = 0; in nextBuffer()
118 if (bufIndex >= bufMax) { in nextChar()
122 return buffer[bufIndex++]; in nextChar()
DStatisticsTool.java50 private int bufIndex; field in StatisticsTool
100 bufIndex = 0; in StatisticsTool()
116 bufIndex = 0; in nextBuffer()
123 if (bufIndex >= bufMax) { in nextChar()
131 return buffer[bufIndex++]; in nextChar()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothSocketConnFacade.java555 byte bufIndex = (byte) 0x00FF; in bluetoothConnectionThroughputRead()
567 bufIndex = readBuf[j]; in bluetoothConnectionThroughputRead()
569 bufIndex++; in bluetoothConnectionThroughputRead()
570 if (bufIndex != readBuf[j]) { in bluetoothConnectionThroughputRead()
572 + "Expected=" + bufIndex + ", read=" + readBuf[j]); in bluetoothConnectionThroughputRead()
575 + bufIndex + ", read=" + readBuf[j]); in bluetoothConnectionThroughputRead()
578 Log.d("bluetoothConnectionThroughputRead: First byte=" + bufIndex); in bluetoothConnectionThroughputRead()
/external/mesa3d/src/mesa/main/
Dbuffers.c722 const gl_buffer_index bufIndex = u_bit_scan(&destMask0); in _mesa_drawbuffers() local
723 if (fb->_ColorDrawBufferIndexes[count] != bufIndex) { in _mesa_drawbuffers()
725 fb->_ColorDrawBufferIndexes[count] = bufIndex; in _mesa_drawbuffers()
736 gl_buffer_index bufIndex = ffs(destMask[buf]) - 1; in _mesa_drawbuffers() local
739 if (fb->_ColorDrawBufferIndexes[buf] != bufIndex) { in _mesa_drawbuffers()
741 fb->_ColorDrawBufferIndexes[buf] = bufIndex; in _mesa_drawbuffers()
/external/icu/icu4c/source/test/intltest/
Dnptrans.cpp165 int32_t bufIndex=0; in map() local
167 for(;bufIndex<bufLen;){ in map()
168 U16_NEXT(buffer, bufIndex, bufLen, ch); in map()