Home | History | Annotate | Download | only in common

Lines Matching refs:firstFreeBlock

154     newTrie->firstFreeBlock=0;  /* no free block in the list */
284 trie->firstFreeBlock=0;
287 trie->firstFreeBlock=other->firstFreeBlock;
553 if(trie->firstFreeBlock!=0) {
555 newBlock=trie->firstFreeBlock;
556 trie->firstFreeBlock=-trie->map[newBlock>>UTRIE2_SHIFT_2];
598 trie->map[block>>UTRIE2_SHIFT_2]=-trie->firstFreeBlock;
599 trie->firstFreeBlock=block;