Searched refs:bufIndex (Results 1 – 9 of 9) sorted by relevance
/third_party/icu/tools/colprobe/ |
D | line.cpp | 591 int32_t bufIndex = 0; in initFromString() local 594 sscanf(buff+bufIndex, "%04X", &name[i]); in initFromString() 596 bufIndex += 4; in initFromString() 597 while(buff[bufIndex] != '/') { in initFromString() 598 sscanf(buff+bufIndex, " %04X", &name[i]); in initFromString() 600 bufIndex += 5; in initFromString() 604 bufIndex++; in initFromString() 612 if(buff[bufIndex] == ';') { in initFromString() 614 bufIndex += 2; in initFromString() 619 sscanf(buff+bufIndex, "%04X", &expansionString[i]); in initFromString() [all …]
|
/third_party/lzma/C/ |
D | MtCoder.c | 122 unsigned bufIndex; in ThreadFunc2() local 201 bufIndex = (unsigned)(int)-1; in ThreadFunc2() 236 bufIndex = mtc->freeBlockHead; in ThreadFunc2() 237 mtc->freeBlockHead = mtc->freeBlockList[bufIndex]; in ThreadFunc2() 240 res = mtc->mtCallback->Code(mtc->mtCallbackObject, t->index, bufIndex, in ThreadFunc2() 252 block->bufIndex = bufIndex; in ThreadFunc2() 283 if (res == SZ_OK && bufIndex != (unsigned)(int)-1) in ThreadFunc2() 285 res = mtc->mtCallback->Write(mtc->mtCallbackObject, bufIndex); in ThreadFunc2() 300 if (bufIndex != (unsigned)(int)-1) in ThreadFunc2() 302 mtc->freeBlockList[bufIndex] = mtc->freeBlockHead; in ThreadFunc2() [all …]
|
D | MtCoder.h | 69 unsigned bufIndex; member
|
/third_party/node/deps/npm/node_modules/qrcode-terminal/vendor/QRCode/ |
D | QRBitBuffer.js | 9 var bufIndex = Math.floor(index / 8); 10 return ( (this.buffer[bufIndex] >>> (7 - index % 8) ) & 1) == 1; 25 var bufIndex = Math.floor(this.length / 8); 26 if (this.buffer.length <= bufIndex) { 31 this.buffer[bufIndex] |= (0x80 >>> (this.length % 8) );
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/ |
D | Checker.java | 33 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()
|
D | StatisticsTool.java | 50 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()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | nptrans.cpp | 162 int32_t bufIndex=0; in map() local 164 for(;bufIndex<bufLen;){ in map() 165 U16_NEXT(buffer, bufIndex, bufLen, ch); in map()
|
/third_party/mesa3d/src/mesa/main/ |
D | buffers.c | 785 const gl_buffer_index bufIndex = u_bit_scan(&destMask0); in _mesa_drawbuffers() local 786 if (fb->_ColorDrawBufferIndexes[count] != bufIndex) { in _mesa_drawbuffers() 788 fb->_ColorDrawBufferIndexes[count] = bufIndex; in _mesa_drawbuffers() 799 gl_buffer_index bufIndex = ffs(destMask[buf]) - 1; in _mesa_drawbuffers() local 802 if (fb->_ColorDrawBufferIndexes[buf] != bufIndex) { in _mesa_drawbuffers() 804 fb->_ColorDrawBufferIndexes[buf] = bufIndex; in _mesa_drawbuffers()
|
/third_party/skia/third_party/externals/d3d12allocator/src/ |
D | Tests.cpp | 1230 for(UINT bufIndex = 0; bufIndex < bufToCreateCount; ++bufIndex) in TestMultithreading() local 1233 res.dataSeed = (threadIndex << 16) | bufIndex; in TestMultithreading()
|