tag | line | file | source code |
array | 153 | fs/hpfs/hpfs.h | } array[31]; /* unknown length */ |
array | 49 | include/linux/sem.h | ushort *array; /* array for GETALL & SETALL */ |
array | 158 | ipc/sem.c | ushort nsems, *array = NULL; |
array | 236 | ipc/sem.c | if (!arg || ! (array = (ushort *) get_fs_long((int *) arg))) |
array | 238 | ipc/sem.c | i = verify_area (VERIFY_WRITE, array, nsems* sizeof(short)); |
array | 257 | ipc/sem.c | if (!arg || ! (array = (ushort *) get_fs_long ((int *) arg)) ) |
array | 259 | ipc/sem.c | if ((i = verify_area (VERIFY_READ, array, sizeof tbuf))) |
array | 261 | ipc/sem.c | memcpy_fromfs (sem_io, array, nsems*sizeof(ushort)); |
array | 292 | ipc/sem.c | memcpy_tofs (array, sem_io, nsems*sizeof(ushort)); |
array | 82 | zBoot/gzip.h | # define EXTERN(type, array) extern type * near array |
array | 83 | zBoot/gzip.h | # define DECLARE(type, array, size) type * near array |
array | 84 | zBoot/gzip.h | # define ALLOC(type, array, size) { \ |
array | 85 | zBoot/gzip.h | array = (type*)fcalloc((unsigned)(((size)+1L)/2), 2*sizeof(type)); \ |
array | 86 | zBoot/gzip.h | if (array == NULL) error("insufficient memory"); \ |
array | 88 | zBoot/gzip.h | # define FREE(array) {if (array != NULL) fcfree(array), array=NULL;} |
array | 90 | zBoot/gzip.h | # define EXTERN(type, array) extern type array[] |
array | 91 | zBoot/gzip.h | # define DECLARE(type, array, size) type array[size] |
array | 92 | zBoot/gzip.h | # define ALLOC(type, array, size) |
array | 93 | zBoot/gzip.h | # define FREE(array) |