Lines Matching refs:arrays
59 /* Arrays. */
77 arrays that are needed. This adds another 32 of the requested object. */
174 old_ary = arrays;
179 arrays = bc_malloc (a_count*sizeof(bc_var_array *));
182 /* Copy the old arrays. */
185 arrays[indx] = old_ary[indx];
192 arrays[indx] = NULL;
366 is a zero based index into the arrays storage array. INDEX is
380 ary_ptr = arrays[var_index];
383 ary_ptr = arrays[var_index] = bc_malloc (sizeof (bc_var_array));
879 a_temp->a_next = arrays[ix];
882 arrays[ix] = a_temp;
936 a_temp = arrays[ix];
939 arrays[ix] = a_temp->a_next;
1035 a_src = arrays[ix]->a_next;
1037 a_src = arrays[ix];
1038 a_dest = arrays[ix1];