Home
last modified time | relevance | path

Searched refs:total_mb (Results 1 – 7 of 7) sorted by relevance

/external/compiler-rt/test/asan/TestCases/Posix/
Dmmap_limit_mb.cc23 long total_mb = atoi(argv[1]); in main() local
25 fprintf(stderr, "total_mb: %zd allocation_size: %zd\n", total_mb, in main()
28 for (long total = total_mb << 20; total > 0; total -= allocation_size) in main()
/external/llvm-project/compiler-rt/test/asan/TestCases/Posix/
Dmmap_limit_mb.cpp23 long total_mb = atoi(argv[1]); in main() local
25 fprintf(stderr, "total_mb: %zd allocation_size: %zd\n", total_mb, in main()
28 for (long total = total_mb << 20; total > 0; total -= allocation_size) in main()
/external/autotest/client/common_lib/cros/
Dmemory_eater.py196 total_mb = 0
204 return total_mb
205 total_mb += size_mb
/external/webp/src/enc/
Danalysis_enc.c430 const int total_mb = last_row * enc->mb_w_; in VP8EncAnalyze() local
466 enc->alpha_ = main_job.alpha / total_mb; in VP8EncAnalyze()
467 enc->uv_alpha_ = main_job.uv_alpha / total_mb; in VP8EncAnalyze()
/external/autotest/client/tests/aiostress/
Daio-stress.c1066 double total_mb = 0; local
1070 total_mb += global_thread_info[i].stage_mb_trans;
1074 if (total_mb) {
1076 total_mb / runtime);
1077 fprintf(stderr, "%.2f MB in %.2fs", total_mb, runtime);
/external/ltp/testcases/kernel/io/ltp-aiodio/
Daio-stress.c1087 double total_mb = 0; local
1091 total_mb += global_thread_info[i].stage_mb_trans;
1095 if (total_mb) {
1097 total_mb / runtime);
1098 fprintf(stderr, "%.2f MB in %.2fs", total_mb, runtime);
/external/elfutils/debuginfod/
Ddebuginfod.cxx1165 double total_mb = 0.0; in set_metrics() local
1167 total_mb += i->fd_size_mb; in set_metrics()
1168 set_metric("fdcache_bytes", (int64_t)(total_mb*1024.0*1024.0)); in set_metrics()
1289 double total_mb = 0.0; in limit() local
1294 total_mb += i->fd_size_mb; in limit()
1295 if (total_fd > max_fds || total_mb > max_mbs) in limit()