Lines Matching refs:history
505 int32_t CollData::minLengthInChars(const CEList *ceList, int32_t offset, int32_t *history) const in minLengthInChars()
510 if (history[offset] >= 0) { in minLengthInChars()
511 return history[offset]; in minLengthInChars()
540 rlength = minLengthInChars(ceList, roffset, history); in minLengthInChars()
573 rlength = minLengthInChars(ceList, roffset, history); in minLengthInChars()
615 rlength = minLengthInChars(ceList, roffset, history); in minLengthInChars()
631 history[offset] = shortestLength; in minLengthInChars()
639 int32_t *history = NEW_ARRAY(int32_t, clength); in minLengthInChars() local
642 history[i] = -1; in minLengthInChars()
645 int32_t minLength = minLengthInChars(ceList, offset, history); in minLengthInChars()
647 DELETE_ARRAY(history); in minLengthInChars()