Searched refs:o_base (Results 1 – 5 of 5) sorted by relevance
| /netbsd-src/external/bsd/bc/dist/ |
| H A D | storage.c | 67 o_base = 10; in init_storage() 540 o_base = 2; in store_var() 546 o_base = BC_BASE_MAX; in store_var() 550 o_base = (int) temp; in store_var() 638 bc_int2num (&ex_stack->s_num, o_base); in load_var() 711 if (o_base > 2) in decr_var() 712 o_base--; in decr_var() 792 if (o_base < BC_BASE_MAX) in incr_var() 793 o_base++; in incr_var()
|
| H A D | number.c | 1413 bc_out_num (bc_num num, int o_base, void (*out_char)(int), int leading_zero) in bc_out_num() argument 1427 if (o_base == 10) in bc_out_num() 1465 bc_int2num (&base, o_base); in bc_out_num() 1467 bc_int2num (&max_o_digit, o_base-1); in bc_out_num() 1490 if (o_base <= 16) in bc_out_num() 1509 if (o_base <= 16) in bc_out_num()
|
| H A D | global.h | 113 EXTERN int o_base; variable
|
| H A D | number.h | 139 void bc_out_num (bc_num num, int o_base, void (* out_char)(int),
|
| H A D | execute.c | 264 bc_out_num (ex_stack->s_num, o_base, out_char, std_only); in execute()
|