Searched refs:bufferPos (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/lzma_sdk/
H A DBra86.c13 SizeT bufferPos = 0, prevPosT; local
22 Byte *p = data + bufferPos;
27 bufferPos = (SizeT)(p - data);
30 prevPosT = bufferPos - prevPosT;
41 prevPosT = bufferPos;
43 bufferPos++;
48 prevPosT = bufferPos;
59 dest = (ip + (UInt32)bufferPos) + src;
61 dest = src - (ip + (UInt32)bufferPos);
74 bufferPos
[all...]
/external/lzma/C/
H A DBra86.c13 SizeT bufferPos = 0, prevPosT; local
22 Byte *p = data + bufferPos;
27 bufferPos = (SizeT)(p - data);
30 prevPosT = bufferPos - prevPosT;
41 prevPosT = bufferPos;
43 bufferPos++;
48 prevPosT = bufferPos;
59 dest = (ip + (UInt32)bufferPos) + src;
61 dest = src - (ip + (UInt32)bufferPos);
74 bufferPos
[all...]
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DCodedInputStream.java219 if (size <= (bufferSize - bufferPos) && size > 0) {
222 final String result = new String(buffer, bufferPos, size, "UTF-8");
223 bufferPos += size;
321 } else if (size <= (bufferSize - bufferPos) && size > 0) {
324 final ByteString result = ByteString.copyFrom(buffer, bufferPos, size);
325 bufferPos += size;
537 private int bufferPos; field in class:CodedInputStream
544 * {@code totalBytesRetired + bufferPos}. This value may be negative if
567 bufferPos = off;
575 bufferPos
[all...]
H A DByteString.java724 private int bufferPos; field in class:ByteString.Output
743 if (bufferPos == buffer.length) {
746 buffer[bufferPos++] = (byte)b;
751 if (length <= buffer.length - bufferPos) {
753 System.arraycopy(b, offset, buffer, bufferPos, length);
754 bufferPos += length;
757 int copySize = buffer.length - bufferPos;
758 System.arraycopy(b, offset, buffer, bufferPos, copySize);
765 bufferPos = length;
797 cachedBufferPos = bufferPos;
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DCodedInputStream.java201 if (size <= (bufferSize - bufferPos) && size > 0) {
204 final String result = new String(buffer, bufferPos, size, "UTF-8");
205 bufferPos += size;
266 if (size <= (bufferSize - bufferPos) && size > 0) {
269 final ByteString result = ByteString.copyFrom(buffer, bufferPos, size);
270 bufferPos += size;
482 private int bufferPos; field in class:CodedInputStream
489 * {@code totalBytesRetired + bufferPos}. This value may be negative if
512 bufferPos = off;
520 bufferPos
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DCodedInputByteBufferNano.java190 if (size <= (bufferSize - bufferPos) && size > 0) {
193 final String result = new String(buffer, bufferPos, size, "UTF-8");
194 bufferPos += size;
232 if (size <= (bufferSize - bufferPos) && size > 0) {
236 System.arraycopy(buffer, bufferPos, result, 0, size);
237 bufferPos += size;
399 private int bufferPos; field in class:CodedInputByteBufferNano
419 bufferPos = off;
480 byteLimit += bufferPos;
523 final int currentAbsolutePosition = bufferPos;
[all...]
/external/lzma/CPP/7zip/Compress/
H A DBcj2Coder.cpp102 UInt32 bufferPos = 0; local
115 UInt32 size = kBufferSize - (bufferPos + processedSize);
119 RINOK(inStream->Read(_buffer + bufferPos + processedSize, size, &processedSizeLoc));
124 UInt32 endPos = bufferPos + processedSize;
129 for (bufferPos = 0; bufferPos < endPos; bufferPos++)
131 Byte b = _buffer[bufferPos];
151 bufferPos = 0;
154 while(bufferPos <
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DCodedInputStreamMicro.java198 if (size <= (bufferSize - bufferPos) && size > 0) {
201 final String result = new String(buffer, bufferPos, size, "UTF-8");
202 bufferPos += size;
240 if (size <= (bufferSize - bufferPos) && size > 0) {
243 final ByteStringMicro result = ByteStringMicro.copyFrom(buffer, bufferPos, size);
244 bufferPos += size;
438 private int bufferPos; field in class:CodedInputStreamMicro
445 * {@code totalBytesRetired + bufferPos}.
466 bufferPos = off;
473 bufferPos
[all...]
/external/lzma/CPP/7zip/Common/
H A DFilterCoder.cpp43 UInt32 bufferPos = 0; local
50 size_t processedSize = kBufferSize - bufferPos;
53 RINOK(ReadStream(inStream, _buffer + bufferPos, &processedSize));
55 UInt32 endPos = bufferPos + (UInt32)processedSize;
57 bufferPos = Filter->Filter(_buffer, endPos);
58 if (bufferPos > endPos)
60 for (; endPos < bufferPos; endPos++)
62 bufferPos = Filter->Filter(_buffer, endPos);
65 if (bufferPos == 0)
71 RINOK(WriteWithLimit(outStream, bufferPos));
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dnormlzr.cpp35 buffer(), bufferPos(0)
44 buffer(), bufferPos(0)
53 buffer(), bufferPos(0)
62 buffer(copy.buffer), bufferPos(copy.bufferPos)
101 return text->hashCode() + fUMode + fOptions + buffer.hashCode() + bufferPos + currentIndex + nextIndex;
112 bufferPos==that.bufferPos &&
250 if(bufferPos<buffer.length() || nextNormalize()) {
251 return buffer.char32At(bufferPos);
[all...]
H A Dunames.c236 #define WRITE_CHAR(buffer, bufferLength, bufferPos, c) { \
241 ++(bufferPos); \
263 uint16_t token, tokenCount=*tokens++, bufferPos=0; local
300 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
315 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
320 if(!bufferPos && nameChoice == U_EXTENDED_CHAR_NAME) {
332 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
343 return bufferPos;
788 uint16_t i, factor, bufferPos=0; local
829 WRITE_CHAR(buffer, bufferLength, bufferPos,
863 uint16_t bufferPos=0; local
[all...]
/external/icu4c/common/
H A Dnormlzr.cpp36 buffer(), bufferPos(0)
45 buffer(), bufferPos(0)
54 buffer(), bufferPos(0)
63 buffer(copy.buffer), bufferPos(copy.bufferPos)
100 return text->hashCode() + fUMode + fOptions + buffer.hashCode() + bufferPos + currentIndex + nextIndex;
111 bufferPos==that.bufferPos &&
249 if(bufferPos<buffer.length() || nextNormalize()) {
250 return buffer.char32At(bufferPos);
[all...]
H A Dunames.cpp238 #define WRITE_CHAR(buffer, bufferLength, bufferPos, c) { \
243 ++(bufferPos); \
265 uint16_t token, tokenCount=*tokens++, bufferPos=0; local
302 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
317 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
322 if(!bufferPos && nameChoice == U_EXTENDED_CHAR_NAME) {
334 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
345 return bufferPos;
802 uint16_t i, factor, bufferPos=0; local
843 WRITE_CHAR(buffer, bufferLength, bufferPos,
877 uint16_t bufferPos=0; local
[all...]
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dnormlzr.h757 int32_t bufferPos; member in class:Normalizer
/external/icu4c/common/unicode/
H A Dnormlzr.h757 int32_t bufferPos; member in class:Normalizer
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DGeometryBatchFactory.java249 int bufferPos[] = new int[lodLevels];
261 lodData[i][bufferPos[i] + j] = buffer.get() + numOfVertices * curGeom;
262 //bufferPos[i]++;
264 bufferPos[i] += buffer.capacity();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 491 milliseconds