Lines Matching refs:tempTrie
71 UCPTrie tempTrie; in ucptrie_openFromBinary() local
72 uprv_memset(&tempTrie, 0, sizeof(tempTrie)); in ucptrie_openFromBinary()
73 tempTrie.indexLength = header->indexLength; in ucptrie_openFromBinary()
74 tempTrie.dataLength = in ucptrie_openFromBinary()
76 tempTrie.index3NullOffset = header->index3NullOffset; in ucptrie_openFromBinary()
77 tempTrie.dataNullOffset = in ucptrie_openFromBinary()
80 tempTrie.highStart = header->shiftedHighStart << UCPTRIE_SHIFT_2; in ucptrie_openFromBinary()
81 tempTrie.shifted12HighStart = (tempTrie.highStart + 0xfff) >> 12; in ucptrie_openFromBinary()
82 tempTrie.type = type; in ucptrie_openFromBinary()
83 tempTrie.valueWidth = valueWidth; in ucptrie_openFromBinary()
86 int32_t actualLength = (int32_t)sizeof(UCPTrieHeader) + tempTrie.indexLength * 2; in ucptrie_openFromBinary()
88 actualLength += tempTrie.dataLength * 2; in ucptrie_openFromBinary()
90 actualLength += tempTrie.dataLength * 4; in ucptrie_openFromBinary()
92 actualLength += tempTrie.dataLength; in ucptrie_openFromBinary()
105 uprv_memcpy(trie, &tempTrie, sizeof(tempTrie)); in ucptrie_openFromBinary()