Searched defs:bufferPos (Results 1 - 14 of 14) sorted by relevance

/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/icu/icu4c/source/common/unicode/
H A Dnormlzr.h757 int32_t bufferPos; member in class:Normalizer
/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/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;
440 private int bufferPos; field in class:CodedInputStreamMicro
447 * {@code totalBytesRetired + bufferPos}.
468 bufferPos = off;
475 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;
401 private int bufferPos; field in class:CodedInputByteBufferNano
421 bufferPos = off;
482 byteLimit += bufferPos;
525 final int currentAbsolutePosition = bufferPos;
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DByteString.java775 private int bufferPos; field in class:ByteString.Output
794 if (bufferPos == buffer.length) {
797 buffer[bufferPos++] = (byte)b;
802 if (length <= buffer.length - bufferPos) {
804 System.arraycopy(b, offset, buffer, bufferPos, length);
805 bufferPos += length;
808 int copySize = buffer.length - bufferPos;
809 System.arraycopy(b, offset, buffer, bufferPos, copySize);
816 bufferPos = length;
857 cachedBufferPos = bufferPos;
[all...]
H A DCodedInputStream.java297 private int lastPos = bufferPos;
305 byteArrayStream.write(buffer, lastPos, bufferPos - lastPos);
315 return ByteBuffer.wrap(buffer, lastPos, bufferPos - lastPos);
317 byteArrayStream.write(buffer, lastPos, bufferPos);
373 if (size <= (bufferSize - bufferPos) && size > 0) {
376 final String result = new String(buffer, bufferPos, size, "UTF-8");
377 bufferPos += size;
395 int pos = bufferPos;
400 bufferPos = pos + size;
505 if (size <= (bufferSize - bufferPos)
861 private int bufferPos; field in class:CodedInputStream
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNormalizer.java142 private int bufferPos; field in class:Normalizer
605 copy.bufferPos = bufferPos;
1424 if(bufferPos<buffer.length() || nextNormalize()) {
1425 return buffer.codePointAt(bufferPos);
1439 if(bufferPos<buffer.length() || nextNormalize()) {
1440 int c=buffer.codePointAt(bufferPos);
1441 bufferPos+=Character.charCount(c);
1457 if(bufferPos>0 || previousNormalize()) {
1458 int c=buffer.codePointBefore(bufferPos);
[all...]
/external/icu/icu4c/source/common/
H A Dunames.cpp213 #define WRITE_CHAR(buffer, bufferLength, bufferPos, c) { \
218 ++(bufferPos); \
240 uint16_t token, tokenCount=*tokens++, bufferPos=0; local
277 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
292 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
297 if(!bufferPos && nameChoice == U_EXTENDED_CHAR_NAME) {
309 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
320 return bufferPos;
777 uint16_t i, factor, bufferPos=0; local
818 WRITE_CHAR(buffer, bufferLength, bufferPos,
852 uint16_t bufferPos=0; local
[all...]
/external/google-tv-pairing-protocol/java/jar/
H A Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/protobuf/ com/google/protobuf/UninitializedMessageException ...
/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 ...

Completed in 352 milliseconds