Searched refs:bufPos (Results 1 – 11 of 11) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | EventSource.cpp | 333 unsigned bufPos = 0; in parseEventStream() local 335 while (bufPos < bufSize) { in parseEventStream() 337 if (m_receiveBuf[bufPos] == '\n') in parseEventStream() 338 bufPos++; in parseEventStream() 344 for (unsigned i = bufPos; lineLength < 0 && i < bufSize; i++) { in parseEventStream() 348 fieldLength = i - bufPos; in parseEventStream() 353 lineLength = i - bufPos; in parseEventStream() 361 parseEventStreamLine(bufPos, fieldLength, lineLength); in parseEventStream() 362 bufPos += lineLength + 1; in parseEventStream() 370 if (bufPos == bufSize) in parseEventStream() [all …]
|
/external/chromium_org/third_party/icu/source/common/ |
D | ruleiter.cpp | 28 bufPos(0) in RuleCharacterIterator() 53 bufPos = 0; in next() 92 p.bufPos = bufPos; in getPos() 98 bufPos = p.bufPos; in setPos() 116 buf->extract(bufPos, maxLookAhead, result); in lookahead() 137 return buf->char32At(bufPos); in _current() 146 bufPos += count; in _advance() 147 if (bufPos == buf->length()) { in _advance()
|
D | ruleiter.h | 61 int32_t bufPos; variable 138 int32_t bufPos; member
|
/external/icu/icu4c/source/common/ |
D | ruleiter.cpp | 29 bufPos(0) in RuleCharacterIterator() 54 bufPos = 0; in next() 92 p.bufPos = bufPos; in getPos() 98 bufPos = p.bufPos; in setPos() 116 buf->extract(bufPos, maxLookAhead, result); in lookahead() 137 return buf->char32At(bufPos); in _current() 146 bufPos += count; in _advance() 147 if (bufPos == buf->length()) { in _advance()
|
D | ruleiter.h | 61 int32_t bufPos; variable 137 int32_t bufPos; member
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | DexDataWriter.java | 255 int bufPos = 0; in writeString() local 259 buf[bufPos++] = (byte)c; in writeString() 261 buf[bufPos++] = (byte)(((c >> 6) & 0x1f) | 0xc0); in writeString() 262 buf[bufPos++] = (byte)((c & 0x3f) | 0x80); in writeString() 264 buf[bufPos++] = (byte)(((c >> 12) & 0x0f) | 0xe0); in writeString() 265 buf[bufPos++] = (byte)(((c >> 6) & 0x3f) | 0x80); in writeString() 266 buf[bufPos++] = (byte)((c & 0x3f) | 0x80); in writeString() 269 write(buf, 0, bufPos); in writeString()
|
/external/chromium_org/third_party/webrtc/modules/audio_device/ios/ |
D | audio_device_ios.cc | 1498 uint16_t bufPos = 0; in RecordProcessImpl() local 1507 bufPos = 0; in RecordProcessImpl() 1510 while (bufPos < N_REC_BUFFERS) { in RecordProcessImpl() 1511 if ((_recordingLength[bufPos] > 0) in RecordProcessImpl() 1512 && (_recordingLength[bufPos] < noSamp10ms)) { in RecordProcessImpl() 1514 insertPos = static_cast<int16_t>(bufPos); in RecordProcessImpl() 1516 bufPos = N_REC_BUFFERS; in RecordProcessImpl() 1518 && (0 == _recordingLength[bufPos])) { in RecordProcessImpl() 1520 insertPos = static_cast<int16_t>(bufPos); in RecordProcessImpl() 1522 ++bufPos; in RecordProcessImpl() [all …]
|
/external/lzma/C/ |
D | XzDec.c | 52 size_t bufPos; member 116 p->bufPos = p->bufConv = p->bufTotal = 0; in BraState_Init() 136 if (p->bufPos != p->bufConv) in BraState_Code() 138 size_t curSize = p->bufConv - p->bufPos; in BraState_Code() 141 memcpy(dest, p->buf + p->bufPos, curSize); in BraState_Code() 142 p->bufPos += curSize; in BraState_Code() 148 p->bufTotal -= p->bufPos; in BraState_Code() 149 memmove(p->buf, p->buf + p->bufPos, p->bufTotal); in BraState_Code() 150 p->bufPos = 0; in BraState_Code() 193 if (p->bufTotal == p->bufPos && srcLenOrig == 0 && srcWasFinished) in BraState_Code()
|
/external/svox/pico/lib/ |
D | picoos.c | 1424 picoos_int32 bufPos; member 1749 sdf->bufPos = 0; in picoos_sdfOpenOut() 1793 nrSamples = sdFile->bufPos; in picoos_sdfFlushOutBuf() 1810 sdFile->bufPos = 0; in picoos_sdfFlushOutBuf() 1816 if ((sdFile != NULL) && !(sdFile->aborted) && (sdFile->bufPos > 0)) { in picoos_sdfFlushOutput() 1839 sdFile->buf[sdFile->bufPos++] = s; in picoos_sdfPutSamples() 1840 if (sdFile->bufPos >= PICOOS_SDF_BUF_LEN) { in picoos_sdfPutSamples() 1858 if (!((*sdFile)->aborted) && ((*sdFile)->bufPos > 0)) { in picoos_sdfCloseOut()
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/ |
D | Renderer9.cpp | 2706 int bufPos = 0; in getSampleCounts() local 2707 for (int i = D3DMULTISAMPLE_16_SAMPLES; i >= 0 && bufPos < bufSize; i--) in getSampleCounts() 2711 params[bufPos++] = i; in getSampleCounts()
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/ |
D | Renderer11.cpp | 2510 int bufPos = 0; in getSampleCounts() local 2511 for (int i = D3D11_MAX_MULTISAMPLE_SAMPLE_COUNT - 1; i >= 0 && bufPos < bufSize; i--) in getSampleCounts() 2515 params[bufPos++] = i + 1; in getSampleCounts()
|