Lines Matching refs:bytesLength
129 bytes(NULL), bytesCapacity(0), bytesLength(0) { in BytesTrieBuilder()
150 if(bytesLength>0) { in add()
195 newTrie=new BytesTrie(bytes, bytes+(bytesCapacity-bytesLength)); in build()
211 result.set(bytes+(bytesCapacity-bytesLength), bytesLength); in buildStringPiece()
221 if(bytes!=NULL && bytesLength>0) { in buildBytes()
225 if(bytesLength==0) { in buildBytes()
249 bytesLength=0; in buildBytes()
274 bytesLength=0; in clear()
390 uprv_memcpy(newBytes+(newCapacity-bytesLength), in ensureCapacity()
391 bytes+(bytesCapacity-bytesLength), bytesLength); in ensureCapacity()
401 int32_t newLength=bytesLength+1; in write()
403 bytesLength=newLength; in write()
404 bytes[bytesCapacity-bytesLength]=(char)byte; in write()
406 return bytesLength; in write()
411 int32_t newLength=bytesLength+length; in write()
413 bytesLength=newLength; in write()
414 uprv_memcpy(bytes+(bytesCapacity-bytesLength), b, length); in write()
416 return bytesLength; in write()
470 int32_t i=bytesLength-jumpTarget; in writeDeltaTo()