Searched refs:nsize (Results 1 – 7 of 7) sorted by relevance
/external/jemalloc/src/ |
D | base.c | 45 size_t csize, nsize; in base_chunk_alloc() local 51 nsize = (node == NULL) ? CACHELINE_CEILING(sizeof(extent_node_t)) : 0; in base_chunk_alloc() 52 csize = CHUNK_CEILING(minsize + nsize); in base_chunk_alloc() 62 addr = (void *)((uintptr_t)addr + nsize); in base_chunk_alloc() 63 csize -= nsize; in base_chunk_alloc() 65 base_allocated += nsize; in base_chunk_alloc() 66 base_resident += PAGE_CEILING(nsize); in base_chunk_alloc()
|
/external/opencv3/modules/core/src/ |
D | lpsolver.cpp | 131 unsigned int nsize = (unsigned int)N.size(); in solveLP() local 133 if(indexToRow[i]<nsize){ in solveLP() 136 *it=b.at<double>(indexToRow[i]-nsize,b.cols-1); in solveLP() 199 unsigned int nsize = (unsigned int)N.size(); in initialize_simplex() local 200 if(indexToRow[0]>=nsize){ in initialize_simplex() 201 int iterator_offset=indexToRow[0]-nsize; in initialize_simplex() 225 if(indexToRow[I]<nsize){ in initialize_simplex() 232 int iterator_offset=indexToRow[I]-nsize; in initialize_simplex()
|
/external/valgrind/perf/ |
D | ffbench.c | 242 static int nsize[] = {0, 0, 0}; in main() local 249 nsize[1] = nsize[2] = faedge; in main() 273 fourn(fdata, nsize, 2, 1); in main() 276 fourn(fdata, nsize, 2, -1); in main()
|
/external/ltrace/ |
D | glob.c | 85 size_t nsize = *sizep + str_size; in append() local 86 if (nsize > *allocp) { in append() 87 size_t nalloc = nsize * 2; in append() 96 *sizep = nsize; in append()
|
/external/avahi/avahi-compat-libdns_sd/ |
D | txt.c | 91 size_t nsize; in make_sure_fits_in() local 98 nsize = t->size + size + 100; in make_sure_fits_in() 100 if (nsize > 0xFFFF) in make_sure_fits_in() 103 if (!(n = avahi_realloc(t->malloc_buffer, nsize))) in make_sure_fits_in() 110 t->max_size = nsize; in make_sure_fits_in()
|
/external/kernel-headers/original/uapi/linux/ |
D | jffs2.h | 126 __u8 nsize; member
|
/external/dlmalloc/ |
D | malloc.c | 3983 size_t nsize = chunksize(oldfirst); in prepend_alloc() local 3984 unlink_chunk(m, oldfirst, nsize); in prepend_alloc() 3985 oldfirst = chunk_plus_offset(oldfirst, nsize); in prepend_alloc() 3986 qsize += nsize; in prepend_alloc() 4435 size_t nsize = chunksize(next); in dispose_chunk() local 4436 psize += nsize; in dispose_chunk() 4437 unlink_chunk(m, next, nsize); in dispose_chunk() 4777 size_t nsize = chunksize(next); in dlfree() local 4778 psize += nsize; in dlfree() 4779 unlink_chunk(fm, next, nsize); in dlfree() [all …]
|