Searched refs:maxbytes (Results 1 – 6 of 6) sorted by relevance
/third_party/ltp/testcases/kernel/mem/mtest01/ |
D | mtest01.c | 53 static long maxbytes = 0; variable 60 char *str_maxbytes, long *maxbytes, in parse_mtest_options() argument 68 if (tst_parse_long(str_maxbytes, maxbytes, 1, LONG_MAX)) { in parse_mtest_options() 74 alloc_maxbytes = (unsigned long long)maxbytes; in parse_mtest_options() 112 opt_maxbytes, &maxbytes, in setup()
|
/third_party/boost/libs/container/src/ |
D | dlmalloc.cpp | 65 (void* oldmem, size_t minbytes, size_t maxbytes, size_t *received) in dlmalloc_grow() argument 66 { return boost_cont_grow(oldmem, minbytes, maxbytes, received); } in dlmalloc_grow() 69 (void* oldmem, size_t minbytes, size_t maxbytes, size_t *received, int do_commit) in dlmalloc_shrink() argument 70 { return boost_cont_shrink(oldmem, minbytes, maxbytes, received, do_commit); } in dlmalloc_shrink()
|
D | dlmalloc_ext_2_8_6.c | 519 ,size_t maxbytes in internal_grow_both_sides() argument 532 if(try_realloc_chunk_with_min(m, oldp, request2size(minbytes), request2size(maxbytes), 0)){ in internal_grow_both_sides() 541 if(*received_size >= maxbytes) in internal_grow_both_sides() 576 , only_preferred_backwards ? maxbytes : minbytes in internal_grow_both_sides() 721 static int internal_shrink(mstate m, void* oldmem, size_t minbytes, size_t maxbytes, size_t *receiv… in internal_shrink() argument 724 if (minbytes >= MAX_REQUEST || maxbytes >= MAX_REQUEST) { in internal_shrink() 731 if (minbytes > maxbytes) { in internal_shrink() 745 size_t nbmax = request2size(maxbytes); in internal_shrink() 1282 (void* oldmem, size_t minbytes, size_t maxbytes, size_t *received) in boost_cont_grow() argument 1293 p = try_realloc_chunk_with_min(ms, p, request2size(minbytes), request2size(maxbytes), 0); in boost_cont_grow() [all …]
|
/third_party/ltp/testcases/kernel/fs/proc/ |
D | proc01.c | 66 static unsigned long long maxbytes; variable 419 if ((maxbytes > 0) && (file_total_read > maxbytes)) { in readproc() 457 maxbytes = atoi(opt_maxmbytesstr) * 1024 * 1024; in main()
|
/third_party/boost/boost/container/detail/ |
D | dlmalloc.hpp | 67 BOOST_CONTAINER_DECL int dlmalloc_grow(void* oldmem, size_t minbytes, size_t maxbytes, size_t *rece… 69 BOOST_CONTAINER_DECL int dlmalloc_shrink(void* oldmem, size_t minbytes, size_t maxbytes, size_t *re…
|
D | alloc_lib.h | 274 (void* oldmem, size_t minbytes, size_t maxbytes, size_t *received); 277 (void* oldmem, size_t minbytes, size_t maxbytes, size_t *received, int do_commit);
|