Lines Matching refs:storage
31 u1* storage; member
46 newBuf->storage = (u1*) malloc(kInitialStorage); in expandBufAlloc()
61 free(pBuf->storage); in expandBufFree()
70 return pBuf->storage; in expandBufGetBuffer()
96 newPtr = (u1*) realloc(pBuf->storage, pBuf->maxLen); in ensureSpace()
102 pBuf->storage = newPtr; in ensureSpace()
113 gapStart = pBuf->storage + pBuf->curLen; in expandBufAddSpace()
126 *(pBuf->storage + pBuf->curLen) = val; in expandBufAdd1()
136 set2BE(pBuf->storage + pBuf->curLen, val); in expandBufAdd2BE()
146 set4BE(pBuf->storage + pBuf->curLen, val); in expandBufAdd4BE()
156 set8BE(pBuf->storage + pBuf->curLen, val); in expandBufAdd8BE()
173 setUtf8String(pBuf->storage + pBuf->curLen, str); in expandBufAddUtf8String()