Home
last modified time | relevance | path

Searched refs:bufBase (Results 1 - 4 of 4) sorted by relevance

/third_party/icu/icu4c/source/test/intltest/
H A Didnaconf.cpp120 UChar* bufBase = buf.getBuffer(buf.length()); in ExplainCodePointTag() local
121 UChar* p = bufBase; in ExplainCodePointTag()
124 *bufBase++ = *p++; in ExplainCodePointTag()
140 *bufBase++ = cp; in ExplainCodePointTag()
142 *bufBase++ = U16_LEAD(cp); in ExplainCodePointTag()
143 *bufBase++ = U16_TRAIL(cp); in ExplainCodePointTag()
147 *bufBase = 0; // close our buffer in ExplainCodePointTag()
/third_party/lzma/C/
H A DLzFind.c72 ISzAlloc_Free(alloc, p->bufBase); in LzInWindow_Free()
73 p->bufBase = NULL; in LzInWindow_Free()
82 if (!p->bufBase || p->blockSize != blockSize) in LzInWindow_Create2()
104 p->bufBase = (Byte *)ISzAlloc_Alloc(alloc, blockSize); in LzInWindow_Create2()
105 // printf("\nbufferBase = %p\n", p->bufBase); in LzInWindow_Create2()
108 return (p->bufBase != NULL); in LzInWindow_Create2()
140 size_t size = (size_t)(p->bufBase + p->blockSize - dest); in MatchFinder_ReadBlock()
163 p->bufBase + (dest - p->bufBase), &size); in MatchFinder_ReadBlock()
186 const size_t offset = (size_t)(p->buffer - p->bufBase) in MatchFinder_MoveBlock()
[all...]
H A DLzmaEnc.c353 Byte *bufBase; member
634 p->bufBase = NULL; in RangeEnc_Construct()
637 #define RangeEnc_GetProcessed(p) ( (p)->processed + (size_t)((p)->buf - (p)->bufBase) + (p)->cacheSize)
638 #define RangeEnc_GetProcessed_sizet(p) ((size_t)(p)->processed + (size_t)((p)->buf - (p)->bufBase) + (size_t)(p)->cacheSize)
644 if (!p->bufBase) in RangeEnc_Alloc()
646 p->bufBase = (Byte *)ISzAlloc_Alloc(alloc, RC_BUF_SIZE); in RangeEnc_Alloc()
647 if (!p->bufBase) in RangeEnc_Alloc()
649 p->bufLim = p->bufBase + RC_BUF_SIZE; in RangeEnc_Alloc()
656 ISzAlloc_Free(alloc, p->bufBase); in RangeEnc_Free()
657 p->bufBase in RangeEnc_Free()
[all...]
H A DLzFind.h35 Byte *bufBase; member

Completed in 6 milliseconds