taglinefilesource code
array153fs/hpfs/hpfs.h} array[31];        /* unknown length */
array49include/linux/sem.hushort *array;         /* array for GETALL & SETALL */
array158ipc/sem.cushort nsems, *array = NULL;
array236ipc/sem.cif (!arg || ! (array = (ushort *) get_fs_long((int *) arg)))
array238ipc/sem.ci = verify_area (VERIFY_WRITE, array, nsems* sizeof(short));
array257ipc/sem.cif (!arg || ! (array = (ushort *) get_fs_long ((int *) arg)) )
array259ipc/sem.cif ((i = verify_area (VERIFY_READ, array, sizeof tbuf)))
array261ipc/sem.cmemcpy_fromfs (sem_io, array, nsems*sizeof(ushort));
array292ipc/sem.cmemcpy_tofs (array, sem_io, nsems*sizeof(ushort));
array82zBoot/gzip.h#  define EXTERN(type, array)  extern type * near array
array83zBoot/gzip.h#  define DECLARE(type, array, size)  type * near array
array84zBoot/gzip.h#  define ALLOC(type, array, size) { \
array85zBoot/gzip.harray = (type*)fcalloc((unsigned)(((size)+1L)/2), 2*sizeof(type)); \
array86zBoot/gzip.hif (array == NULL) error("insufficient memory"); \
array88zBoot/gzip.h#  define FREE(array) {if (array != NULL) fcfree(array), array=NULL;}
array90zBoot/gzip.h#  define EXTERN(type, array)  extern type array[]
array91zBoot/gzip.h#  define DECLARE(type, array, size)  type array[size]
array92zBoot/gzip.h#  define ALLOC(type, array, size)
array93zBoot/gzip.h#  define FREE(array)