Lines Matching defs:array

302 /* Number that, if used to subscript an array, has a good chance of producing
346 * yytext_is_array - if true (i.e., %array directive), then declare
347 * yytext as a array instead of a character pointer. Nice and inefficient.
384 * skel - compiled-in skeleton array
385 * skel_ind - index into "skel" array, if skelfile is nil
396 * input_files - array holding names of input files
397 * num_input_files - size of input_files array
400 * action_array - array to hold the rule actions
509 * protsave contains the entire state array for protos
647 #define reallocate_integer_array(array,size) \
648 (int *) reallocate_array( (void *) array, size, sizeof( int ) )
653 #define reallocate_bool_array(array,size) \
654 (bool *) reallocate_array( (void *) array, size, sizeof( bool ) )
666 #define reallocate_int_ptr_array(array,size) \
667 (int **) reallocate_array( (void *) array, size, sizeof( int * ) )
669 #define reallocate_char_ptr_array(array,size) \
670 (char **) reallocate_array( (void *) array, size, sizeof( char * ) )
672 #define reallocate_dfaacc_union(array, size) \
674 reallocate_array( (void *) array, size, sizeof( union dfaacc_union ) )
679 #define reallocate_character_array(array,size) \
680 (char *) reallocate_array( (void *) array, size, sizeof( char ) )
685 #define reallocate_Character_array(array,size) \
686 (u_char *) reallocate_array( (void *) array, size, sizeof( u_char ) )
877 /* Mark the current position in the action array as the end of the section 1
882 /* Mark the current position in the action array as the end of the prolog. */
885 /* Generate a data statement for a two-dimensional array. */
1056 /* A growable array. See buf.c. */