Home
last modified time | relevance | path

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

/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/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
DHexDump.java108 int bufIndex = 0; in toHexString() local
112 buf[bufIndex++] = HEX_DIGITS[(b >>> 4) & 0x0F]; in toHexString()
113 buf[bufIndex++] = HEX_DIGITS[b & 0x0F]; in toHexString()
/external/mesa3d/src/mesa/main/
Dbuffers.c634 const int bufIndex = u_bit_scan(&destMask0); in _mesa_drawbuffers() local
635 if (fb->_ColorDrawBufferIndexes[count] != bufIndex) { in _mesa_drawbuffers()
637 fb->_ColorDrawBufferIndexes[count] = bufIndex; in _mesa_drawbuffers()
648 GLint bufIndex = ffs(destMask[buf]) - 1; in _mesa_drawbuffers() local
651 if (fb->_ColorDrawBufferIndexes[buf] != bufIndex) { in _mesa_drawbuffers()
653 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()