Lines Matching refs:bytesLength
131 bytes(NULL), bytesCapacity(0), bytesLength(0) { in BytesTrieBuilder()
152 if(bytesLength>0) { in add()
197 newTrie=new BytesTrie(bytes, bytes+(bytesCapacity-bytesLength)); in build()
213 result.set(bytes+(bytesCapacity-bytesLength), bytesLength); in buildStringPiece()
223 if(bytes!=NULL && bytesLength>0) { in buildBytes()
227 if(bytesLength==0) { in buildBytes()
251 bytesLength=0; in buildBytes()
276 bytesLength=0; in clear()
393 uprv_memcpy(newBytes+(newCapacity-bytesLength), in ensureCapacity()
394 bytes+(bytesCapacity-bytesLength), bytesLength); in ensureCapacity()
404 int32_t newLength=bytesLength+1; in write()
406 bytesLength=newLength; in write()
407 bytes[bytesCapacity-bytesLength]=(char)byte; in write()
409 return bytesLength; in write()
414 int32_t newLength=bytesLength+length; in write()
416 bytesLength=newLength; in write()
417 uprv_memcpy(bytes+(bytesCapacity-bytesLength), b, length); in write()
419 return bytesLength; in write()
473 int32_t i=bytesLength-jumpTarget; in writeDeltaTo()