Lines Matching refs:bytesLength
128 bytes(NULL), bytesCapacity(0), bytesLength(0) { in BytesTrieBuilder()
149 if(bytesLength>0) { in add()
193 newTrie=new BytesTrie(bytes, bytes+(bytesCapacity-bytesLength)); in build()
209 result.set(bytes+(bytesCapacity-bytesLength), bytesLength); in buildStringPiece()
219 if(bytes!=NULL && bytesLength>0) { in buildBytes()
223 if(bytesLength==0) { in buildBytes()
247 bytesLength=0; in buildBytes()
272 bytesLength=0; in clear()
388 uprv_memcpy(newBytes+(newCapacity-bytesLength), in ensureCapacity()
389 bytes+(bytesCapacity-bytesLength), bytesLength); in ensureCapacity()
399 int32_t newLength=bytesLength+1; in write()
401 bytesLength=newLength; in write()
402 bytes[bytesCapacity-bytesLength]=(char)byte; in write()
404 return bytesLength; in write()
409 int32_t newLength=bytesLength+length; in write()
411 bytesLength=newLength; in write()
412 uprv_memcpy(bytes+(bytesCapacity-bytesLength), b, length); in write()
414 return bytesLength; in write()
468 int32_t i=bytesLength-jumpTarget; in writeDeltaTo()