• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/flex/

Lines Matching refs:array

79 /* allocate_array - allocate memory for an integer array of the given size */
129 /* bubble - bubble sort an integer array in increasing order
136 * sorts the first n elements of array v and replaces them in
140 * v - the array to be sorted
239 /* cshell - shell sort a character array in increasing order
248 * Does a shell sort of the first n elements of array v.
253 * v - array to be sorted
437 /* mark_defs1 - mark the current position in the action array as
450 /* mark_prolog - mark the current position in the action array as
461 /* mk2data - generate a data statement for a two-dimensional array
463 * Generates a data statement initializing the current 2-D array to "value".
489 * Generates a data statement initializing the current array element to
515 int myctoi( array )
516 char array[];
520 (void) sscanf( array, "%d", &val );
528 Char myesc( array )
529 Char array[];
533 switch ( array[1] )
560 while ( isascii( array[sptr] ) &&
561 isdigit( array[sptr] ) )
568 c = array[sptr];
569 array[sptr] = '\0';
571 esc_char = otoi( array + 1 );
573 array[sptr] = c;
582 while ( isascii( array[sptr] ) &&
583 isxdigit( (char) array[sptr] ) )
590 c = array[sptr];
591 array[sptr] = '\0';
593 esc_char = htoi( array + 2 );
595 array[sptr] = c;
601 return array[1];
753 /* reallocate_array - increase the size of a dynamic array */
755 void *reallocate_array( array, size, element_size )
756 void *array;
763 new_array = flex_realloc( array, num_bytes );
765 flexfatal( _( "attempt to increase array size failed" ) );
774 * Copies skelfile or skel array to stdout until a line beginning with
784 * one, or from the skel[] array.
789 { /* copy from skel array */
819 * newline, skel[] array does not.