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

  /external/icu/icu4c/source/test/intltest/
idnaconf.cpp 192 UChar* bufBase = buf.getBuffer(buf.length());
193 UChar* p = bufBase;
196 *bufBase++ = *p++;
212 *bufBase++ = cp;
214 *bufBase++ = U16_LEAD(cp);
215 *bufBase++ = U16_TRAIL(cp);
219 *bufBase = 0; // close our buffer
  /external/lzma/C/
LzmaEnc.c 241 Byte *bufBase;
469 p->bufBase = 0;
472 #define RangeEnc_GetProcessed(p) ((p)->processed + ((p)->buf - (p)->bufBase) + (p)->cacheSize)
477 if (p->bufBase == 0)
479 p->bufBase = (Byte *)alloc->Alloc(alloc, RC_BUF_SIZE);
480 if (p->bufBase == 0)
482 p->bufLim = p->bufBase + RC_BUF_SIZE;
489 alloc->Free(alloc, p->bufBase);
490 p->bufBase = 0;
501 p->buf = p->bufBase;
    [all...]

Completed in 80 milliseconds