HomeSort by relevance Sort by last modified time
    Searched refs:ALLOC_SIZE (Results 1 - 5 of 5) sorted by null

  /external/mksh/src/
lalloc.c 32 #define ALLOC_ISUNALIGNED(p) (((ptrdiff_t)(p)) % ALLOC_SIZE)
54 * note: the alignment of "ptr" to ALLOC_SIZE is checked
57 *lpp = (lp = ptr - ALLOC_SIZE);
97 if (notoktoadd(numb, ALLOC_SIZE) ||
98 (lp = remalloc(lp, numb + ALLOC_SIZE)) == NULL
108 return ((char *)lp + ALLOC_SIZE);
main.c 120 cp = alloc(sizeof(*bufptr) - ALLOC_SIZE, APERM);
123 memset(cp, 0, sizeof(*bufptr) - ALLOC_SIZE);
126 bufptr = (void *)(cp - ALLOC_SIZE);
934 cp = alloc(sizeof(struct env) - ALLOC_SIZE, ATEMP);
936 ep = (void *)(cp - ALLOC_SIZE);
1028 afree(cp + ALLOC_SIZE, ATEMP);
    [all...]
jobs.c 47 char command[64 - (ALLOC_SIZE + sizeof(Proc *) + sizeof(pid_t) +
    [all...]
sh.h 640 #define ALLOC_SIZE (sizeof(ALLOC_ITEM))
    [all...]
  /external/srec/portable/src/
phashtable.c 34 #define ALLOC_SIZE 16
49 PHashTableEntry entries[ALLOC_SIZE];
381 for (i = 0; i < ALLOC_SIZE - 1; ++i)
385 block->entries[ALLOC_SIZE-1].next = NULL;
390 for (i = 0, entry = block->entries; i < ALLOC_SIZE - 1; ++i, ++entry)

Completed in 570 milliseconds