Home
last modified time | relevance | path

Searched refs:BC_STATUS_SUCCESS (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/bc/include/
H A Dstatus.h403 BC_STATUS_SUCCESS = 0, enumerator
680 BC_UNLIKELY((vm)->status != (sig_atomic_t) BC_STATUS_SUCCESS || (vm)->sig)
684 BC_LIKELY((vm)->status == (sig_atomic_t) BC_STATUS_SUCCESS && !(vm)->sig)
856 BC_UNLIKELY(vm->status != (sig_atomic_t) BC_STATUS_SUCCESS)
860 BC_LIKELY(vm->status == (sig_atomic_t) BC_STATUS_SUCCESS)
/freebsd/contrib/bc/src/
H A Dread.c154 return BC_STATUS_SUCCESS; in bc_read_chars()
186 vm->status = (sig_atomic_t) BC_STATUS_SUCCESS; in bc_read_chars()
238 return BC_STATUS_SUCCESS; in bc_read_chars()
H A Dfile.c117 return BC_STATUS_SUCCESS; in bc_file_output()
133 else s = BC_STATUS_SUCCESS; in bc_file_flushErr()
176 else s = BC_STATUS_SUCCESS; in bc_file_flushErr()
H A Dvm.c1141 if (vm->status == (sig_atomic_t) BC_STATUS_SUCCESS) BC_LONGJMP_STOP;
1172 while (s == BC_STATUS_SUCCESS && !vm->eof && vm->line_buf.len < 1);
1258 BC_STATUS_SUCCESS;
1263 BC_STATUS_SUCCESS;
1359 if (vm->status == (sig_atomic_t) BC_STATUS_SUCCESS) BC_LONGJMP_STOP;
1514 if (vm->status != BC_STATUS_SUCCESS ||
1531 if (vm->status != BC_STATUS_SUCCESS) return;
1845 BcStatus s = BC_STATUS_IS_ERROR(status) ? status : BC_STATUS_SUCCESS;
H A Ddc_fuzzer.c111 return s == BC_STATUS_SUCCESS || s == BC_STATUS_QUIT ? 0 : -1; in LLVMFuzzerTestOneInput()
H A Dbc_fuzzer.c111 return s == BC_STATUS_SUCCESS || s == BC_STATUS_QUIT ? 0 : -1; in LLVMFuzzerTestOneInput()
H A Dhistory.c230 BcStatus s = BC_STATUS_SUCCESS; in bc_history_line()
309 s = BC_STATUS_SUCCESS; in bc_history_line()
354 BcStatus s = BC_STATUS_SUCCESS; in bc_history_line()
766 return BC_STATUS_SUCCESS; in bc_history_readCode()
2041 return BC_STATUS_SUCCESS; in bc_history_edit()
H A Dprogram.c3747 if (BC_ERR(s != BC_STATUS_SUCCESS && vm->status == BC_STATUS_SUCCESS)) in bc_program_exec()