taglinefilesource code
array157fs/hpfs/hpfs.h} array[31];        /* unknown length */
array40include/linux/sem.hushort *array;    /* array for GETALL & SETALL */
array161ipc/sem.cushort *array = NULL;
array240ipc/sem.carray = arg.array;
array241ipc/sem.ci = verify_area (VERIFY_WRITE, array, nsems*sizeof(ushort));
array259ipc/sem.carray = arg.array;
array260ipc/sem.cif ((i = verify_area (VERIFY_READ, array, nsems*sizeof(ushort))))
array262ipc/sem.cmemcpy_fromfs (sem_io, array, nsems*sizeof(ushort));
array291ipc/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)