Lines Matching refs:dataLength
47 return trie->data[trie->dataLength-UTRIE2_DATA_GRANULARITY]; in get32()
173 tempTrie.dataLength=header->shiftedDataLength<<UTRIE2_INDEX_SHIFT; in utrie2_openFromSerialized()
178 tempTrie.highValueIndex=tempTrie.dataLength-UTRIE2_DATA_GRANULARITY; in utrie2_openFromSerialized()
186 actualLength+=tempTrie.dataLength*2; in utrie2_openFromSerialized()
188 actualLength+=tempTrie.dataLength*4; in utrie2_openFromSerialized()
244 int32_t indexLength, dataLength, length, i; in utrie2_openDummy() local
258 dataLength=UTRIE2_DATA_START_OFFSET+UTRIE2_DATA_GRANULARITY; in utrie2_openDummy()
261 length+=dataLength*2; in utrie2_openDummy()
263 length+=dataLength*4; in utrie2_openDummy()
290 trie->dataLength=dataLength; in utrie2_openDummy()
305 header->shiftedDataLength=(uint16_t)(dataLength>>UTRIE2_INDEX_SHIFT); in utrie2_openDummy()
439 int32_t dataLength, size; in utrie2_swap() local
463 dataLength=(int32_t)trie.shiftedDataLength<<UTRIE2_INDEX_SHIFT; in utrie2_swap()
468 dataLength<UTRIE2_DATA_START_OFFSET in utrie2_swap()
477 size+=dataLength*2; in utrie2_swap()
480 size+=dataLength*4; in utrie2_swap()
504 ds->swapArray16(ds, inTrie+1, (trie.indexLength+dataLength)*2, outTrie+1, pErrorCode); in utrie2_swap()
508 ds->swapArray32(ds, (const uint16_t *)(inTrie+1)+trie.indexLength, dataLength*4, in utrie2_swap()
707 highValue=trie->newTrie->data[trie->newTrie->dataLength-UTRIE2_DATA_GRANULARITY]; in enumEitherTrie()