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

  /external/mksh/src/
lalloc.c 32 #define ALLOC_ISUNALIGNED(p) (((size_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 113 cp = alloc(sizeof(*bufptr) - ALLOC_SIZE, APERM);
116 memset(cp, 0, sizeof(*bufptr) - ALLOC_SIZE);
119 bufptr = (void *)(cp - ALLOC_SIZE);
929 cp = alloc(sizeof(struct env) - ALLOC_SIZE, ATEMP);
931 ep = (void *)(cp - ALLOC_SIZE);
1027 afree(cp + ALLOC_SIZE, ATEMP);
    [all...]
sh.h 708 #define ALLOC_SIZE (sizeof(ALLOC_ITEM))
1062 #define LINE (4096 - ALLOC_SIZE)
    [all...]
jobs.c 48 char command[256 - (ALLOC_SIZE + sizeof(Proc *) + sizeof(pid_t) +
    [all...]
  /external/deqp/framework/randomshaders/
rsgToken.cpp 95 : m_tokens (ALLOC_SIZE)
rsgToken.hpp 237 ALLOC_SIZE = 64
247 m_tokens.resize(m_numTokens+ALLOC_SIZE);
  /system/extras/tests/pagingtest/
pagingtest.c 14 #define ALLOC_SIZE (10 * 1024 * 1024)
135 unsigned long long alloc_size = 0ULL; local
140 //arguments: <program> [test_runs [alloc_size [file_size]]]
148 alloc_size = strtoull(argv[2], NULL, 10);
150 if (!alloc_size) {
151 alloc_size = ALLOC_SIZE;
160 rc = mmap_test(test_runs, alloc_size);
  /art/test/004-ThreadStress/src/
Main.java 60 private final static int ALLOC_SIZE = 1024;
67 l.add(new byte[ALLOC_SIZE]);
120 private final static int ALLOC_SIZE = 1024; // Needs to be small enough to not be in LOS.
128 l.add(new byte[ALLOC_SIZE]);
  /external/libnl/lib/netfilter/
log_obj.c 51 nl_dump(p, "alloc_size=%u ", log->log_alloc_size);
168 void nfnl_log_set_alloc_size(struct nfnl_log *log, uint32_t alloc_size)
170 log->log_alloc_size = alloc_size;
248 diff |= NFNL_LOG_DIFF_VAL(ALLOC_SIZE, log_alloc_size);
262 __ADD(LOG_ATTR_ALLOC_SIZE, alloc_size)
  /external/squashfs-tools/squashfs-tools/
mksquashfs.c 756 #define ALLOC_SIZE 128
761 pathname = malloc(ALLOC_SIZE);
778 *size = (res + ALLOC_SIZE) & ~(ALLOC_SIZE - 1);
793 static int size = ALLOC_SIZE;
805 static int size = ALLOC_SIZE;
817 static int size = ALLOC_SIZE;
821 subpath = malloc(ALLOC_SIZE);
840 size = (res + ALLOC_SIZE) & ~(ALLOC_SIZE - 1)
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
ecofflink.c 240 #define ALLOC_SIZE (4064)
253 want = ALLOC_SIZE;
257 if (want < ALLOC_SIZE)
258 want = ALLOC_SIZE;
    [all...]

Completed in 434 milliseconds