Lines Matching defs:start
825 // we will start from strength between the expansion
914 int32_t i = expansionIndex, k = resetIndex+1, n = 0, m = 0, start = 0;
965 start = k;
973 k = start;
993 if(k > start) {
1113 // we will start from strength between the expansion
1980 SortedLines::calculateCumulativeStrengths(Line *start, Line *end) {
1981 // start is a reset - end may be NULL
1982 start = start->next;
1984 while(start && start != end) {
1985 if(start->strength < cumulativeStrength) {
1986 cumulativeStrength = start->strength;
1988 start->cumulativeStrength = cumulativeStrength;
1989 start = start->next;