Lines Matching refs:tempTrie
136 UTrie2 tempTrie; in utrie2_openFromSerialized() local
170 uprv_memset(&tempTrie, 0, sizeof(tempTrie)); in utrie2_openFromSerialized()
171 tempTrie.indexLength=header->indexLength; in utrie2_openFromSerialized()
172 tempTrie.dataLength=header->shiftedDataLength<<UTRIE2_INDEX_SHIFT; in utrie2_openFromSerialized()
173 tempTrie.index2NullOffset=header->index2NullOffset; in utrie2_openFromSerialized()
174 tempTrie.dataNullOffset=header->dataNullOffset; in utrie2_openFromSerialized()
176 tempTrie.highStart=header->shiftedHighStart<<UTRIE2_SHIFT_1; in utrie2_openFromSerialized()
177 tempTrie.highValueIndex=tempTrie.dataLength-UTRIE2_DATA_GRANULARITY; in utrie2_openFromSerialized()
179 tempTrie.highValueIndex+=tempTrie.indexLength; in utrie2_openFromSerialized()
183 actualLength=(int32_t)sizeof(UTrie2Header)+tempTrie.indexLength*2; in utrie2_openFromSerialized()
185 actualLength+=tempTrie.dataLength*2; in utrie2_openFromSerialized()
187 actualLength+=tempTrie.dataLength*4; in utrie2_openFromSerialized()
200 uprv_memcpy(trie, &tempTrie, sizeof(tempTrie)); in utrie2_openFromSerialized()