Lines Matching refs:readLength
406 int32_t Edits::Iterator::readLength(int32_t head) { in readLength() function in Edits::Iterator
523 oldLength_ = readLength((u >> 6) & 0x3f); in next()
524 newLength_ = readLength(u & 0x3f); in next()
538 oldLength_ += readLength((u >> 6) & 0x3f); in next()
539 newLength_ += readLength(u & 0x3f); in next()
617 oldLength_ = readLength((u >> 6) & 0x3f); in previous()
618 newLength_ = readLength(u & 0x3f); in previous()
626 oldLength_ = readLength((u >> 6) & 0x3f); in previous()
627 newLength_ = readLength(u & 0x3f); in previous()
645 oldLength_ += readLength((u >> 6) & 0x3f); in previous()
646 newLength_ += readLength(u & 0x3f); in previous()