taglinefilesource code
array82arch/i386/boot/compressed/gzip.h#  define EXTERN(type, array)  extern type * near array
array83arch/i386/boot/compressed/gzip.h#  define DECLARE(type, array, size)  type * near array
array84arch/i386/boot/compressed/gzip.h#  define ALLOC(type, array, size) { \
array85arch/i386/boot/compressed/gzip.harray = (type*)fcalloc((unsigned)(((size)+1L)/2), 2*sizeof(type)); \
array86arch/i386/boot/compressed/gzip.hif (array == NULL) error("insufficient memory"); \
array88arch/i386/boot/compressed/gzip.h#  define FREE(array) {if (array != NULL) fcfree(array), array=NULL;}
array90arch/i386/boot/compressed/gzip.h#  define EXTERN(type, array)  extern type array[]
array91arch/i386/boot/compressed/gzip.h#  define DECLARE(type, array, size)  type array[size]
array92arch/i386/boot/compressed/gzip.h#  define ALLOC(type, array, size)
array93arch/i386/boot/compressed/gzip.h#  define FREE(array)
array270arch/sparc/kernel/sys_sunos.casmlinkage int sunos_mincore(unsigned long addr, unsigned long len, char *array)
array282arch/sparc/kernel/sys_sunos.cif(verify_area(VERIFY_WRITE, array, num_pages))
array300arch/sparc/kernel/sys_sunos.carray[pnum] = pte_present(*ptep) ? 1 : 0;
array158fs/hpfs/hpfs.h} array[31];        /* unknown length */
array40include/linux/sem.hushort *array;    /* array for GETALL & SETALL */
array370ipc/sem.cushort *array = NULL;
array458ipc/sem.carray = arg.array;
array459ipc/sem.ci = verify_area (VERIFY_WRITE, array, nsems*sizeof(ushort));
array476ipc/sem.carray = arg.array;
array477ipc/sem.cif ((i = verify_area (VERIFY_READ, array, nsems*sizeof(ushort))))
array479ipc/sem.cmemcpy_fromfs (sem_io, array, nsems*sizeof(ushort));
array508ipc/sem.cmemcpy_tofs (array, sem_io, nsems*sizeof(ushort));