Searched refs:tempTrie (Results 1 – 3 of 3) sorted by relevance
323 Trie2Writable tempTrie = new Trie2Writable(this); in uncompact() local326 this.index1 = tempTrie.index1; in uncompact()327 this.index2 = tempTrie.index2; in uncompact()328 this.data = tempTrie.data; in uncompact()329 this.index2Length = tempTrie.index2Length; in uncompact()330 this.dataCapacity = tempTrie.dataCapacity; in uncompact()331 this.isCompacted = tempTrie.isCompacted; in uncompact()334 this.header = tempTrie.header; in uncompact()335 this.index = tempTrie.index; in uncompact()336 this.data16 = tempTrie.data16; in uncompact()[all …]
325 Trie2Writable tempTrie = new Trie2Writable(this); in uncompact() local328 this.index1 = tempTrie.index1; in uncompact()329 this.index2 = tempTrie.index2; in uncompact()330 this.data = tempTrie.data; in uncompact()331 this.index2Length = tempTrie.index2Length; in uncompact()332 this.dataCapacity = tempTrie.dataCapacity; in uncompact()333 this.isCompacted = tempTrie.isCompacted; in uncompact()336 this.header = tempTrie.header; in uncompact()337 this.index = tempTrie.index; in uncompact()338 this.data16 = tempTrie.data16; in uncompact()[all …]
135 UTrie2 tempTrie; in utrie2_openFromSerialized() local169 uprv_memset(&tempTrie, 0, sizeof(tempTrie)); in utrie2_openFromSerialized()170 tempTrie.indexLength=header->indexLength; in utrie2_openFromSerialized()171 tempTrie.dataLength=header->shiftedDataLength<<UTRIE2_INDEX_SHIFT; in utrie2_openFromSerialized()172 tempTrie.index2NullOffset=header->index2NullOffset; in utrie2_openFromSerialized()173 tempTrie.dataNullOffset=header->dataNullOffset; in utrie2_openFromSerialized()175 tempTrie.highStart=header->shiftedHighStart<<UTRIE2_SHIFT_1; in utrie2_openFromSerialized()176 tempTrie.highValueIndex=tempTrie.dataLength-UTRIE2_DATA_GRANULARITY; in utrie2_openFromSerialized()178 tempTrie.highValueIndex+=tempTrie.indexLength; in utrie2_openFromSerialized()182 actualLength=(int32_t)sizeof(UTrie2Header)+tempTrie.indexLength*2; in utrie2_openFromSerialized()[all …]