Home
last modified time | relevance | path

Searched refs:MaxSizeBytes (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DCachePruning.cpp129 Policy.MaxSizeBytes = Size * Mult; in parseCachePruningPolicy()
162 Policy.MaxSizeBytes == 0 && Policy.MaxSizeFiles == 0) { in pruneCache()
267 if (Policy.MaxSizePercentageOfAvailableSpace > 0 || Policy.MaxSizeBytes > 0) { in pruneCache()
277 if (Policy.MaxSizeBytes == 0) in pruneCache()
278 Policy.MaxSizeBytes = AvailableSpace; in pruneCache()
281 Policy.MaxSizeBytes); in pruneCache()
286 << Policy.MaxSizeBytes << " bytes\n"); in pruneCache()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/
H A DThinLTOCodeGenerator.h173 void setCacheMaxSizeBytes(uint64_t MaxSizeBytes) { in setCacheMaxSizeBytes() argument
174 if (MaxSizeBytes) in setCacheMaxSizeBytes()
175 CacheOptions.Policy.MaxSizeBytes = MaxSizeBytes; in setCacheMaxSizeBytes()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/lto/
H A Dlto.cpp633 thinlto_code_gen_t cg, unsigned MaxSizeBytes) { in thinlto_codegen_set_cache_size_bytes() argument
634 return unwrap(cg)->setCacheMaxSizeBytes(MaxSizeBytes); in thinlto_codegen_set_cache_size_bytes()
639 uint64_t MaxSizeBytes = MaxSizeMegabytes; in thinlto_codegen_set_cache_size_megabytes() local
640 MaxSizeBytes *= 1024 * 1024; in thinlto_codegen_set_cache_size_megabytes()
641 return unwrap(cg)->setCacheMaxSizeBytes(MaxSizeBytes); in thinlto_codegen_set_cache_size_megabytes()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DCachePruning.h49 uint64_t MaxSizeBytes = 0; member