Lines Matching refs:indexes

41 structures that store indexes or data.
52 const int32_t indexes[i0] with values i0, i1, ...:
53 (see UBIDI_IX_... constants for names of indexes)
55 i0 indexLength; -- length of indexes[] (UBIDI_IX_TOP)
56 i1 dataLength; -- length in bytes of the post-header data (incl. indexes[])
124 The start and limit code points for the range are stored in the indexes[]
347 * find each mirror code point in the source column and set each other's indexes
350 * reduce the table, combine the source code points with their indexes
382 * set both entries' indexes to each other
406 static int32_t indexes[UBIDI_IX_TOP]={
467 indexes[UBIDI_IX_JG_START]=jgStart;
468 indexes[UBIDI_IX_JG_LIMIT]=jgLimit;
469 indexes[UBIDI_IX_JG_START2]=jgStart2;
470 indexes[UBIDI_IX_JG_LIMIT2]=jgLimit2;
472 indexes[UBIDI_IX_TRIE_SIZE]=trieSize;
473 indexes[UBIDI_IX_MIRROR_LENGTH]=mirrorTop;
474 indexes[UBIDI_IX_LENGTH]=
475 (int32_t)sizeof(indexes)+
488 printf("data size: %5d\n", (int)indexes[UBIDI_IX_LENGTH]);
491 indexes[UBIDI_MAX_VALUES_INDEX]=
516 indexes, 32, UBIDI_IX_TOP,
528 UChar32 jgStart=indexes[UBIDI_IX_JG_START];
529 UChar32 jgLimit=indexes[UBIDI_IX_JG_LIMIT];
535 UChar32 jgStart2=indexes[UBIDI_IX_JG_START2];
536 UChar32 jgLimit2=indexes[UBIDI_IX_JG_LIMIT2];
572 udata_writeBlock(pData, indexes, sizeof(indexes));
575 UChar32 jgStart=indexes[UBIDI_IX_JG_START];
576 UChar32 jgLimit=indexes[UBIDI_IX_JG_LIMIT];
578 UChar32 jgStart2=indexes[UBIDI_IX_JG_START2];
579 UChar32 jgLimit2=indexes[UBIDI_IX_JG_LIMIT2];
588 if(dataLength!=indexes[UBIDI_IX_LENGTH]) {
591 dataLength, (long)indexes[UBIDI_IX_LENGTH]);