HomeSort by relevance Sort by last modified time
    Searched refs:bufPos (Results 1 - 9 of 9) sorted by null

  /external/xz-java/src/org/tukaani/xz/rangecoder/
RangeEncoderToBuffer.java 19 private int bufPos;
32 bufPos = 0;
37 return bufPos + (int)cacheSize + 5 - 1;
49 return bufPos;
53 out.write(buf, 0, bufPos);
57 buf[bufPos++] = (byte)b;
  /external/icu/icu4c/source/common/
ruleiter.cpp 31 bufPos(0)
56 bufPos = 0;
94 p.bufPos = bufPos;
100 bufPos = p.bufPos;
118 buf->extract(bufPos, maxLookAhead, result);
139 return buf->char32At(bufPos);
148 bufPos += count;
149 if (bufPos == buf->length())
    [all...]
ruleiter.h 63 int32_t bufPos;
139 int32_t bufPos;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
RuleCharacterIterator.java 61 private int bufPos;
147 bufPos = 0;
219 return new Object[] {buf, new int[] {pos.getIndex(), bufPos}};
225 v[1] = bufPos;
239 bufPos = v[1];
274 return new String(buf, bufPos, buf.length - bufPos);
290 bufPos += count;
291 if (bufPos > buf.length) {
294 if (bufPos == buf.length)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
RuleCharacterIterator.java 60 private int bufPos;
146 bufPos = 0;
218 return new Object[] {buf, new int[] {pos.getIndex(), bufPos}};
224 v[1] = bufPos;
238 bufPos = v[1];
273 return new String(buf, bufPos, buf.length - bufPos);
289 bufPos += count;
290 if (bufPos > buf.length) {
293 if (bufPos == buf.length)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexDataWriter.java 255 int bufPos = 0;
259 buf[bufPos++] = (byte)c;
261 buf[bufPos++] = (byte)(((c >> 6) & 0x1f) | 0xc0);
262 buf[bufPos++] = (byte)((c & 0x3f) | 0x80);
264 buf[bufPos++] = (byte)(((c >> 12) & 0x0f) | 0xe0);
265 buf[bufPos++] = (byte)(((c >> 6) & 0x3f) | 0x80);
266 buf[bufPos++] = (byte)((c & 0x3f) | 0x80);
269 write(buf, 0, bufPos);
  /external/lzma/C/
XzDec.c 76 size_t bufPos;
140 p->bufPos = p->bufConv = p->bufTotal = 0;
193 if (p->bufPos != p->bufConv)
195 size_t size = p->bufConv - p->bufPos;
198 memcpy(dest, p->buf + p->bufPos, size);
199 p->bufPos += size;
206 p->bufTotal -= p->bufPos;
207 memmove(p->buf, p->buf + p->bufPos, p->bufTotal);
208 p->bufPos = 0;
233 if (p->bufTotal == p->bufPos && srcRem == 0 && srcWasFinished)
    [all...]
  /external/cldr/tools/java/libs/
icu4j.jar 
  /external/guice/extensions/struts2/lib/
core-3.1.1.jar 

Completed in 607 milliseconds