HomeSort by relevance Sort by last modified time
    Searched refs:Percentage (Results 1 - 10 of 10) sorted by null

  /external/llvm/include/llvm/Support/
CachePruning.h 45 /// Define the maximum size for the cache directory, in terms of percentage of
50 CachePruning &setMaxSize(unsigned Percentage) {
51 PercentageOfAvailableSpace = std::min(100u, Percentage);
  /external/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 114 unsigned MaxPercentageOfAvailableSpace = 75; // percentage.
137 * of percentage of the available space on the the disk. Set to 100 to
148 void setMaxCacheSizeRelativeToAvailableSpace(unsigned Percentage) {
149 if (Percentage)
150 CacheOptions.MaxPercentageOfAvailableSpace = Percentage;
  /external/llvm/lib/Analysis/
IndirectCallPromotionAnalysis.cpp 48 cl::desc("The percentage threshold for the promotion"));
66 unsigned Percentage = (Count * 100) / TotalCount;
67 return (Percentage >= ICPPercentThreshold);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 171 * of percentage of the available space on the disk. Set to 100 to indicate
182 void setMaxCacheSizeRelativeToAvailableSpace(unsigned Percentage) {
183 if (Percentage)
184 CacheOptions.Policy.MaxSizePercentageOfAvailableSpace = Percentage;
  /external/syzkaller/vendor/google.golang.org/grpc/resolver/dns/
dns_resolver.go 335 Percentage *int `json:"percentage,omitempty"`
377 !chosenByPercentage(c.Percentage) ||
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/expr/
LiteralStringValueExprTest.java 24 import org.assertj.core.data.Percentage;
147 assertThat(posFloat.asDouble()).isCloseTo(3.4028235e38f, Percentage.withPercentage(1));
148 assertThat(negFloat.asDouble()).isCloseTo(1.40e-45f, Percentage.withPercentage(1));
  /external/llvm/tools/lto/
lto.cpp 542 thinlto_code_gen_t cg, unsigned Percentage) {
543 return unwrap(cg)->setMaxCacheSizeRelativeToAvailableSpace(Percentage);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/lto/
lto.cpp 585 thinlto_code_gen_t cg, unsigned Percentage) {
586 return unwrap(cg)->setMaxCacheSizeRelativeToAvailableSpace(Percentage);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
GenFds.py     [all...]
  /art/dex2oat/driver/
compiler_driver.cc 103 static double Percentage(size_t x, size_t y) {
111 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
    [all...]

Completed in 1150 milliseconds