Home
last modified time | relevance | path

Searched refs:max_memory_ (Results 1 – 6 of 6) sorted by relevance

/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/
H A Dmemory_pool.h38 MemoryPoolStats() : bytes_allocated_(0), max_memory_(0) {} in MemoryPoolStats()
40 int64_t max_memory() const { return max_memory_.load(); } in max_memory()
48 if (diff > 0 && allocated > max_memory_) { in UpdateAllocatedBytes()
49 max_memory_ = allocated; in UpdateAllocatedBytes()
55 std::atomic<int64_t> max_memory_; variable
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/
H A Dmemory_pool.h38 MemoryPoolStats() : bytes_allocated_(0), max_memory_(0) {} in MemoryPoolStats()
40 int64_t max_memory() const { return max_memory_.load(); } in max_memory()
48 if (diff > 0 && allocated > max_memory_) { in UpdateAllocatedBytes()
49 max_memory_ = allocated; in UpdateAllocatedBytes()
55 std::atomic<int64_t> max_memory_; variable
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/
H A Dmemory_pool.h38 MemoryPoolStats() : bytes_allocated_(0), max_memory_(0) {} in MemoryPoolStats()
40 int64_t max_memory() const { return max_memory_.load(); } in max_memory()
48 if (diff > 0 && allocated > max_memory_) { in UpdateAllocatedBytes()
49 max_memory_ = allocated; in UpdateAllocatedBytes()
55 std::atomic<int64_t> max_memory_; variable
/dports/graphics/tesseract/tesseract-5.0.0/src/ccstruct/
H A Dimagedata.cpp386 max_memory_(0), in DocumentData()
416 max_memory_ = max_memory; in SetDocument()
565 (max_memory_ > 0 && memory_used() > max_memory_)) { in ReCachePages()
604 DocumentCache::DocumentCache(int64_t max_memory) : max_memory_(max_memory) {} in DocumentCache()
623 fair_share_memory = max_memory_ / filenames.size(); in LoadDocuments()
720 if (total_memory >= max_memory_) { in GetPageSequential()
728 offset > 1 && total_memory >= max_memory_; --offset) { in GetPageSequential()
736 for (int offset = num_behind; offset < 0 && total_memory >= max_memory_; in GetPageSequential()
743 if (!documents_[next_index]->IsCached() && total_memory < max_memory_) { in GetPageSequential()
H A Dimagedata.h269 int64_t max_memory_; variable
357 int64_t max_memory_ = 0; variable
/dports/www/node10/node-v10.24.1/deps/v8/src/wasm/
H A Dmodule-compiler.cc145 const size_t max_memory_; member in v8::internal::wasm::CompilationState
3411 max_memory_(GetMaxUsableMemorySize(isolate) / 2), in CompilationState()
3420 DCHECK_LT(0, max_memory_); in CompilationState()
3587 bool should_increase_workload = allocated_memory_ <= max_memory_ / 2; in RestartBackgroundTasks()
3624 bool can_accept_work = allocated_memory_ < max_memory_; in StopBackgroundCompilationTaskForThrottling()