Lines Matching refs:bot
35 * bot==0 pop top scope
36 * bot==top query
37 * bot!=0 push top on bot
43 hashview(Hash_table_t* top, Hash_table_t* bot)
51 bot = 0;
52 else if (top == bot)
53 bot = top->scope;
54 else if (bot)
57 bot = 0;
64 if (p = (Hash_bucket_t*)hashlook(bot, b->name, HASH_LOOKUP, NiL))
69 top->scope = bot;
70 bot->frozen++;
73 else if (bot = top->scope)
85 bot->frozen--;
87 return(bot);