Home | History | Annotate | Download | only in common

Lines Matching defs:indexLength

346     long indexLength=trie->indexLength;
348 long totalLength=(long)sizeof(UTrieHeader)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2);
350 indexLength, dataLength, totalLength);
355 long indexLength=trie->indexLength;
357 long totalLength=(long)sizeof(UTrie2Header)+indexLength*2+dataLength*(trie->data32!=NULL ? 4 : 2);
359 which, indexLength, dataLength, totalLength);
1234 * Limited by its own 16-bit index values, and by uint16_t UTrie2Header.indexLength.
1300 /* are indexLength and dataLength within limits? */
1301 if( /* for unshifted indexLength */
1330 trie->indexLength=allIndexesLength;
1346 header->indexLength=(uint16_t)trie->indexLength;