Home
last modified time | relevance | path

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

/external/toybox/toys/pending/
Dbc.c52 BC_STATUS_SUCCESS = 0, enumerator
1069 return TT.sig ? BC_STATUS_SIGNAL : BC_STATUS_SUCCESS; in bc_read_chars()
1085 return BC_STATUS_SUCCESS; in bc_read_line()
1125 return BC_STATUS_SUCCESS; in bc_read_file()
1168 return TT.sig ? BC_STATUS_SIGNAL : BC_STATUS_SUCCESS; in bc_num_subArrays()
1288 if (!places || !n->len) return BC_STATUS_SUCCESS; in bc_num_shift()
1300 return BC_STATUS_SUCCESS; in bc_num_shift()
1334 return BC_STATUS_SUCCESS; in bc_num_a()
1338 return BC_STATUS_SUCCESS; in bc_num_a()
1388 return TT.sig ? BC_STATUS_SIGNAL : BC_STATUS_SUCCESS; in bc_num_a()
[all …]
/external/bc/src/
Dread.c127 return BC_STATUS_SUCCESS; in bc_read_chars()
150 vm.status = (sig_atomic_t) BC_STATUS_SUCCESS; in bc_read_chars()
182 return BC_STATUS_SUCCESS; in bc_read_chars()
Dfile.c85 return BC_STATUS_SUCCESS; in bc_file_output()
117 else s = BC_STATUS_SUCCESS; in bc_file_flushErr()
Dvm.c644 if (vm.status == (sig_atomic_t) BC_STATUS_SUCCESS) BC_LONGJMP_STOP;
740 vm.status : BC_STATUS_SUCCESS;
744 vm.status : BC_STATUS_SUCCESS;
1011 int s = BC_STATUS_IS_ERROR(status) ? status : BC_STATUS_SUCCESS;
Dhistory.c383 return BC_STATUS_SUCCESS; in bc_history_readCode()
1292 return BC_STATUS_SUCCESS; in bc_history_edit()
/external/bc/include/
Dstatus.h63 BC_STATUS_SUCCESS = 0, enumerator
Dvm.h192 BC_UNLIKELY(vm.status != (sig_atomic_t) BC_STATUS_SUCCESS || vm.sig)
194 BC_LIKELY(vm.status == (sig_atomic_t) BC_STATUS_SUCCESS && !vm.sig)