Home | History | Annotate | Download | only in common

Lines Matching refs:newBlock

175     int32_t newBlock, newTop;
177 newBlock=trie->dataLength;
178 newTop=newBlock+UTRIE_DATA_BLOCK_LENGTH;
184 return newBlock;
195 int32_t indexValue, newBlock;
204 newBlock=utrie_allocDataBlock(trie);
205 if(newBlock<0) {
209 trie->index[c]=newBlock;
212 uprv_memcpy(trie->data+newBlock, trie->data-indexValue, 4*UTRIE_DATA_BLOCK_LENGTH);
213 return newBlock;