Home
last modified time | relevance | path

Searched refs:tempTrie (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTrie2Writable.java323 Trie2Writable tempTrie = new Trie2Writable(this); in uncompact() local
326 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 …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTrie2Writable.java325 Trie2Writable tempTrie = new Trie2Writable(this); in uncompact() local
328 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 …]
/external/icu/icu4c/source/common/
Dutrie2.cpp135 UTrie2 tempTrie; in utrie2_openFromSerialized() local
169 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 …]