Lines Matching refs:bytesCapacity
129 bytes(NULL), bytesCapacity(0), bytesLength(0) { in BytesTrieBuilder()
195 newTrie=new BytesTrie(bytes, bytes+(bytesCapacity-bytesLength)); in build()
200 bytesCapacity=0; in build()
211 result.set(bytes+(bytesCapacity-bytesLength), bytesLength); in buildStringPiece()
254 if(bytesCapacity<capacity) { in buildBytes()
259 bytesCapacity=0; in buildBytes()
262 bytesCapacity=capacity; in buildBytes()
377 if(length>bytesCapacity) { in ensureCapacity()
378 int32_t newCapacity=bytesCapacity; in ensureCapacity()
387 bytesCapacity=0; in ensureCapacity()
391 bytes+(bytesCapacity-bytesLength), bytesLength); in ensureCapacity()
394 bytesCapacity=newCapacity; in ensureCapacity()
404 bytes[bytesCapacity-bytesLength]=(char)byte; in write()
414 uprv_memcpy(bytes+(bytesCapacity-bytesLength), b, length); in write()