Home | History | Annotate | Download | only in share

Lines Matching refs:offsets_

226       offsets_(NULL),
307 free(offsets_);
322 offsets_ = NULL;
453 uint32 offset = offsets_[middle];
563 uint32 offset = offsets_[middle];
716 uint32 offset = offsets_[off];
769 uint32 offset = offsets_[middle];
816 uint32 offset = offsets_[middle];
954 uint32 offset = offsets_[off];
957 offsets_[off] |= kUserDictOffsetFlagRemove;
1199 offsets_ = offsets;
1292 write(fd, offsets_, dict_info_.lemma_count << 2);
1331 write(fd, offsets_, dict_info_.lemma_count << 2);
1350 write(fd, offsets_, dict_info_.lemma_count << 2);
1515 // Fixup offsets_, set REMOVE flag to lemma's flag if needed
1520 while ((offsets_[first_freed] & kUserDictOffsetFlagRemove) == 0 &&
1526 int off = offsets_[first_freed];
1533 while ((offsets_[first_inuse] & kUserDictOffsetFlagRemove) &&
1536 int off = offsets_[first_inuse];
1543 // Swap offsets_
1544 int tmp = offsets_[first_inuse];
1545 offsets_[first_inuse] = offsets_[first_freed];
1546 offsets_[first_freed] = tmp;
1579 // Swap offsets_
1632 if (offsets_[j] >= begin && offsets_[j] < end) {
1633 offsets_[j] -= (begin - dst);
1634 offsets_by_id_[ids_[j] - start_id_] = offsets_[j];
1670 offsets_by_id_[i] = offsets_[i];
2190 offsets_[off] = offset;
2211 offset = offsets_[i];
2220 uint32 temp = offsets_[off];
2221 memmove(offsets_ + i + 1, offsets_ + i, (off - i) << 2);
2222 offsets_[i] = temp;