Home | History | Annotate | Download | only in gennorm

Lines Matching defs:table

146 /* 15b in the combining index -> <=0x8000 uint16_t values in the combining table */
476 /* start a new table */
501 fprintf(stderr, "error: gennorm combining table - trying to use %u units, more than the %ld units available\n",
514 * it writes the table data instead of calculating and setting the final indexes;
516 * they are written into the table
519 /* start a new table */
550 /* set a marker on the last final trail index in this lead's table */
1298 * extract all Norm.canonBothCCs into the FCD table
1348 uint16_t *table;
1355 /* add an entry to the BMP or supplementary search table */
1357 table=canonStartSets+_NORM_MAX_CANON_SETS;
1360 table[tableLength++]=(uint16_t)code;
1364 table[tableLength++]=(uint16_t)c;
1366 table[tableLength++]=(uint16_t)(_NORM_CANON_SET_BMP_IS_INDEX|canonStartSetsTop);
1371 table=canonStartSets+_NORM_MAX_CANON_SETS+_NORM_MAX_SET_SEARCH_TABLE_LENGTH;
1374 table[tableLength++]=(uint16_t)(code>>16);
1375 table[tableLength++]=(uint16_t)code;
1379 table[tableLength-2]|=(uint16_t)(0x8000|((c>>8)&0x1f00));
1380 table[tableLength++]=(uint16_t)c;
1382 table[tableLength++]=(uint16_t)canonStartSetsTop;
1403 fprintf(stderr, "gennorm error: search table for canonical starter sets too long\n");
1775 /* FCD data: take Norm.canonBothCCs and store them in the FCD table */
1787 printf("combining table count: %u\n", combiningTableTop);
1951 printf("size of combining table %5u uint16_t\n", combiningTableTop);
1958 printf(" size of BMP search table %5u uint16_t\n", canonStartSets[_NORM_SET_INDEX_CANON_BMP_TABLE_LENGTH]);
1959 printf(" size of supplementary search table %5u uint16_t\n", canonStartSets[_NORM_SET_INDEX_CANON_SUPP_TABLE_LENGTH]);