/external/jemalloc/test/integration/ |
sdallocx.c | 15 size_t nsz, sz, alignment, total; local 30 nsz = nallocx(sz, MALLOCX_ALIGN(alignment) | 34 total += nsz;
|
mallocx.c | 110 size_t nsz, rsz; local 112 nsz = nallocx(sz, 0); 113 assert_zu_ne(nsz, 0, "Unexpected nallocx() error"); 118 assert_zu_eq(nsz, rsz, "nallocx()/sallocx() size mismatch"); 125 nsz = nallocx(sz, MALLOCX_ZERO); 126 assert_zu_ne(nsz, 0, "Unexpected nallocx() error"); 130 assert_zu_eq(nsz, rsz, "nallocx()/sallocx() rsize mismatch"); 141 size_t nsz, rsz, sz, alignment, total; local 156 nsz = nallocx(sz, MALLOCX_ALIGN(alignment) | 158 assert_zu_ne(nsz, 0 [all...] |
xallocx.c | 413 size_t sz, nsz; local 438 for (sz = szmin; sz < szmax; sz = nsz) { 439 nsz = nallocx(sz+1, flags); 440 assert_zu_eq(xallocx(p, sz+1, 0, flags), nsz, 444 assert_false(validate_fill(p, 0x00, sz, nsz-sz), 445 "Memory not filled: sz=%zu, nsz-sz=%zu", sz, nsz-sz); 446 memset((void *)((uintptr_t)p + sz), FILL_BYTE, nsz-sz); 447 assert_false(validate_fill(p, FILL_BYTE, 0, nsz), 448 "Memory not filled: nsz=%zu", nsz) [all...] |
/external/jemalloc/test/unit/ |
prof_reset.c | 256 size_t sz, nsz; local 274 nsz = nallocx(sz+1, 0); 275 assert_zu_eq(xallocx(p, nsz, 0, 0), sz,
|
/libcore/ojluni/src/main/java/java/io/ |
BufferedInputStream.java | 219 int nsz = pos * 2; local 220 if (nsz > marklimit) 221 nsz = marklimit; 222 byte nbuf[] = new byte[nsz];
|
/ndk/sources/host-tools/nawk-20071023/ |
tran.c | 249 int i, nh, nsz; local 252 nsz = GROWTAB * tp->size; 253 np = (Cell **) calloc(nsz, sizeof(Cell *)); 259 nh = hash(cp->nval, nsz); 266 tp->size = nsz;
|
/external/opencv3/modules/core/src/ |
matrix.cpp | 5117 size_t i, nsz = hdr->nodeSize, psize = hdr->pool.size(), local [all...] |