Home | History | Annotate | Download | only in common

Lines Matching refs:newBlock

473     int32_t newBlock, newTop;
475 newBlock=trie->index2Length;
476 newTop=newBlock+UTRIE2_INDEX_2_BLOCK_LENGTH;
486 uprv_memcpy(trie->index2+newBlock, trie->index2+trie->index2NullOffset, UTRIE2_INDEX_2_BLOCK_LENGTH*4);
487 return newBlock;
512 int32_t newBlock, newTop;
516 newBlock=trie->firstFreeBlock;
517 trie->firstFreeBlock=-trie->map[newBlock>>UTRIE2_SHIFT_2];
520 newBlock=trie->dataLength;
521 newTop=newBlock+UTRIE2_DATA_BLOCK_LENGTH;
550 uprv_memcpy(trie->data+newBlock, trie->data+copyBlock, UTRIE2_DATA_BLOCK_LENGTH*4);
551 trie->map[newBlock>>UTRIE2_SHIFT_2]=0;
552 return newBlock;
587 int32_t i2, oldBlock, newBlock;
601 newBlock=allocDataBlock(trie, oldBlock);
602 if(newBlock<0) {
606 setIndex2Entry(trie, i2, newBlock);
607 return newBlock;