Home
last modified time | relevance | path

Searched refs:voidfn (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/bc/src/
H A Dlang.c111 f->voidfn = false; in bc_func_init()
134 f->voidfn = false; in bc_func_reset()
H A Dbc_parse.c889 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() local
1382 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()
/freebsd/contrib/bc/include/
H A Dlang.h411 bool voidfn; member