Home | History | Annotate | Download | only in i18n

Lines Matching refs:count2

129     range->count2*=countBytes;
366 /* set the length2 and count2 fields */
369 ranges[i].count2=(uint32_t)ranges[i].count;
380 lengthCounts[ranges[i].length2]+=ranges[i].count2;
389 maxCount+=ranges[rangeCount].count2;
396 } else if(n<=ranges[0].count2*countBytes) {
398 uint32_t count1, count2, power_1, power;
402 /* calculate how to split the range between maxLength-1 (count1) and maxLength (count2) */
405 count2=(n+power-1)/power;
406 count1=ranges[0].count-count2;
410 printf("split the first range %ld:%ld\n", count1, count2);
452 ranges[1].count=count2;
454 ranges[0].count2=count1*power_1;
455 ranges[1].count2=count2*power_1; /* will be *countBytes when lengthened */
482 printf("ranges[%ld] .start=0x%08lx .end=0x%08lx .length=%ld .length2=%ld .count=%ld .count2=%lu\n",
483 i, ranges[i].start, ranges[i].end, ranges[i].length, ranges[i].length2, ranges[i].count, ranges[i].count2);