Home | History | Annotate | Download | only in toolutil

Lines Matching full:savings

621     int32_t entry, offset, oldOffset, trailOffset, oldTrailOffset, savings, sum;
648 /* count possible savings from lead bytes with all-unassigned results in all trail bytes */
650 savings=0;
683 savings+=count[i];
689 /* subtract from the possible savings the cost of an additional state */
690 savings=savings*2-1024; /* count bytes, not 16-bit words */
691 if(savings<=0) {
695 printf("compacting toUnicode data saves %ld bytes\n", (long)savings);
844 int32_t i, entry, savings, localSavings, belowSavings;
852 savings=findUnassigned(states,
858 if(savings<0) {
860 } else if(savings>0) {
862 savings);
863 belowSavings+=savings;
900 int32_t state, savings;
905 savings=findUnassigned(states,
909 if(savings>0) {
911 (long)state, (long)savings);