Lines Matching refs:tempTrie
137 UTrie2 tempTrie; in utrie2_openFromSerialized() local
171 uprv_memset(&tempTrie, 0, sizeof(tempTrie)); in utrie2_openFromSerialized()
172 tempTrie.indexLength=header->indexLength; in utrie2_openFromSerialized()
173 tempTrie.dataLength=header->shiftedDataLength<<UTRIE2_INDEX_SHIFT; in utrie2_openFromSerialized()
174 tempTrie.index2NullOffset=header->index2NullOffset; in utrie2_openFromSerialized()
175 tempTrie.dataNullOffset=header->dataNullOffset; in utrie2_openFromSerialized()
177 tempTrie.highStart=header->shiftedHighStart<<UTRIE2_SHIFT_1; in utrie2_openFromSerialized()
178 tempTrie.highValueIndex=tempTrie.dataLength-UTRIE2_DATA_GRANULARITY; in utrie2_openFromSerialized()
180 tempTrie.highValueIndex+=tempTrie.indexLength; in utrie2_openFromSerialized()
184 actualLength=(int32_t)sizeof(UTrie2Header)+tempTrie.indexLength*2; in utrie2_openFromSerialized()
186 actualLength+=tempTrie.dataLength*2; in utrie2_openFromSerialized()
188 actualLength+=tempTrie.dataLength*4; in utrie2_openFromSerialized()
201 uprv_memcpy(trie, &tempTrie, sizeof(tempTrie)); in utrie2_openFromSerialized()