Home
last modified time | relevance | path

Searched refs:bc_malloc (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/bsd/bc/dist/
H A Dstorage.c95 functions = bc_malloc (f_count*sizeof (bc_function)); in more_functions()
96 f_names = bc_malloc (f_count*sizeof (char *)); in more_functions()
111 f->f_body = bc_malloc (BC_START_SIZE); in more_functions()
142 variables = bc_malloc (v_count*sizeof(bc_var *)); in more_variables()
143 v_names = bc_malloc (v_count*sizeof(char *)); in more_variables()
179 arrays = bc_malloc (a_count*sizeof(bc_var_array *)); in more_arrays()
180 a_names = bc_malloc (a_count*sizeof(char *)); in more_arrays()
266 temp = bc_malloc (sizeof (fstack_rec)); in fpush()
297 temp = bc_malloc (sizeof (estack_rec)); in push_copy()
311 temp = bc_malloc (sizeof (estack_rec)); in push_num()
[all …]
H A Dutil.c53 temp = bc_malloc (strlen (str)+1); in strcopyof()
64 temp = bc_malloc (sizeof (arg_list)); in nextarg()
99 temp = bc_malloc (len); in make_arg_str()
143 arglist1 = bc_malloc(arg_count+1); in call_str()
240 genstr = bc_malloc (size); in set_genstr_size()
555 id = bc_malloc (sizeof (id_rec)); in lookup()
653 bc_malloc (size_t size) in bc_malloc() function
H A Dload.c74 new_body = bc_malloc (f->f_body_size); in addbyte()
102 functions[func].f_label = bc_malloc (sizeof(bc_label_group)); in def_label()
112 temp->l_next = bc_malloc (sizeof(bc_label_group)); in def_label()
H A Dproto.h82 void *bc_malloc (size_t);
H A Dmain.c156 temp = bc_malloc(sizeof(file_node)); in parse_args()