Searched refs:voidfn (Results 1 – 3 of 3) sorted by relevance
111 f->voidfn = false; in bc_func_init()134 f->voidfn = false; in bc_func_reset()
889 if (p->func->voidfn) inst = BC_INST_RET_VOID; in bc_parse_return()919 if (BC_ERR(p->func->voidfn)) in bc_parse_return()1007 BcInst inst = (p->func->voidfn ? BC_INST_RET_VOID : BC_INST_RET0); in bc_parse_endBody()1372 bool comma = false, voidfn; in bc_parse_func() local1382 voidfn = (!BC_IS_POSIX && p->l.t == BC_LEX_NAME && in bc_parse_func()1390 voidfn = (voidfn && p->l.t == BC_LEX_NAME); in bc_parse_func()1393 if (voidfn) in bc_parse_func()1416 p->func->voidfn = voidfn; in bc_parse_func()
411 bool voidfn; member