tag | line | file | source code |
array | 82 | arch/i386/boot/compressed/gzip.h | # define EXTERN(type, array) extern type * near array |
array | 83 | arch/i386/boot/compressed/gzip.h | # define DECLARE(type, array, size) type * near array |
array | 84 | arch/i386/boot/compressed/gzip.h | # define ALLOC(type, array, size) { \ |
array | 85 | arch/i386/boot/compressed/gzip.h | array = (type*)fcalloc((unsigned)(((size)+1L)/2), 2*sizeof(type)); \ |
array | 86 | arch/i386/boot/compressed/gzip.h | if (array == NULL) error("insufficient memory"); \ |
array | 88 | arch/i386/boot/compressed/gzip.h | # define FREE(array) {if (array != NULL) fcfree(array), array=NULL;} |
array | 90 | arch/i386/boot/compressed/gzip.h | # define EXTERN(type, array) extern type array[] |
array | 91 | arch/i386/boot/compressed/gzip.h | # define DECLARE(type, array, size) type array[size] |
array | 92 | arch/i386/boot/compressed/gzip.h | # define ALLOC(type, array, size) |
array | 93 | arch/i386/boot/compressed/gzip.h | # define FREE(array) |
array | 158 | fs/hpfs/hpfs.h | } array[31]; /* unknown length */ |
array | 40 | include/linux/sem.h | ushort *array; /* array for GETALL & SETALL */ |
array | 370 | ipc/sem.c | ushort *array = NULL; |
array | 458 | ipc/sem.c | array = arg.array; |
array | 459 | ipc/sem.c | i = verify_area (VERIFY_WRITE, array, nsems*sizeof(ushort)); |
array | 476 | ipc/sem.c | array = arg.array; |
array | 477 | ipc/sem.c | if ((i = verify_area (VERIFY_READ, array, nsems*sizeof(ushort)))) |
array | 479 | ipc/sem.c | memcpy_fromfs (sem_io, array, nsems*sizeof(ushort)); |
array | 508 | ipc/sem.c | memcpy_tofs (array, sem_io, nsems*sizeof(ushort)); |