Lines Matching refs:u_nfblocks
119 int u_nfblocks; member
499 u->u_nfblocks = 0; in compiler_enter_scope()
1705 if (!c->u->u_nfblocks) in compiler_continue()
1707 i = c->u->u_nfblocks - 1; in compiler_continue()
3150 if (c->u->u_nfblocks >= CO_MAXBLOCKS) { in compiler_push_fblock()
3155 f = &c->u->u_fblock[c->u->u_nfblocks++]; in compiler_push_fblock()
3165 assert(u->u_nfblocks > 0); in compiler_pop_fblock()
3166 u->u_nfblocks--; in compiler_pop_fblock()
3167 assert(u->u_fblock[u->u_nfblocks].fb_type == t); in compiler_pop_fblock()
3168 assert(u->u_fblock[u->u_nfblocks].fb_block == b); in compiler_pop_fblock()
3175 for (i = 0; i < u->u_nfblocks; ++i) { in compiler_in_loop()