Lines Matching defs:count1
446 // Calculate how to split the range between minLength (count1) and minLength+1 (count2).
448 // count1 + count2 * nextCountBytes = n
449 // count1 + count2 = count
452 // and then into the following count1 & count2 computations.
454 int32_t count1 = count - count2; // number of minLength weights
455 if(count2 == 0 || (count1 + count2 * nextCountBytes) < n) {
458 --count1;
459 U_ASSERT((count1 + count2 * nextCountBytes) >= n);
464 if(count1 == 0) {
474 splitRange, rangeCount, count1, count2);
477 // Next start = start + count1. First end = 1 before that.
478 ranges[0].end = incWeightByOffset(start, minLength, count1 - 1);
479 ranges[0].count = count1;