Searched defs:max_threads (Results 1 - 6 of 6) sorted by relevance

/system/extras/memory_replay/
H A DThreads.h28 Threads(Pointers* pointers, size_t max_threads);
38 size_t max_threads() { return max_threads_; } function in class:Threads
H A DThreads.cpp48 Threads::Threads(Pointers* pointers, size_t max_threads) argument
49 : pointers_(pointers), max_threads_(max_threads) {
H A Dmain.cpp69 void ProcessDump(int fd, size_t max_allocs, size_t max_threads) { argument
72 Threads threads(&pointers, max_threads);
74 printf("Maximum threads available: %zu\n", threads.max_threads());
169 size_t max_threads = DEFAULT_MAX_THREADS; local
171 max_threads = atoi(argv[2]);
186 ProcessDump(dump_fd, max_allocs, max_threads);
/system/extras/libfec/
H A Dfec_process.cpp66 size_t max_threads = fec_div_round_up(count, count_per_thread); local
68 if ((size_t)threads > max_threads) {
69 threads = (int)max_threads;
/system/update_engine/payload_generator/
H A Dfull_update_generator.cc142 size_t max_threads = diff_utils::GetMaxThreads(); local
146 << " bytes each) using " << max_threads << " threads";
153 // |max_threads| will actually hold a block in memory while we process.
187 max_threads);
H A Ddelta_diff_utils.cc347 size_t max_threads = GetMaxThreads(); local
349 max_threads);

Completed in 124 milliseconds