/third_party/benchmark/test/ |
H A D | complexity_test.cc | 78 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity(benchmark::o1); 79 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity(); 82 ->Complexity([](benchmark::IterationCount) { return 1.0; }); 132 ->Complexity(benchmark::oN); 136 ->Complexity([](benchmark::IterationCount n) -> double { 142 ->Complexity(); 173 ->Complexity(benchmark::oNLogN); 177 ->Complexity([](benchmark::IterationCount n) { 183 ->Complexity(); 202 // -------- Testing formatting of Complexity wit [all...] |
H A D | reporter_output_test.cc | 403 // ----------------------- Testing Complexity Output ----------------------- // 414 BENCHMARK(BM_Complexity_O1)->Range(1, 1 << 18)->Complexity(benchmark::o1);
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/ |
H A D | MeasureUnitImpl.java | 26 private MeasureUnit.Complexity complexity = MeasureUnit.Complexity.SINGLE; 129 if (this.getComplexity() == MeasureUnit.Complexity.MIXED) { in extractIndividualUnitsWithIndices() 191 if (this.singleUnits.size() > 1 && this.complexity == MeasureUnit.Complexity.SINGLE) { in appendSingleUnit() 192 this.setComplexity(MeasureUnit.Complexity.COMPOUND); in appendSingleUnit() 229 public MeasureUnit.Complexity getComplexity() { in getComplexity() 233 public void setComplexity(MeasureUnit.Complexity complexity) { in setComplexity() 248 if (this.complexity == MeasureUnit.Complexity.COMPOUND) { in serialize() 265 if (this.getComplexity() == MeasureUnit.Complexity.MIXED) { in serialize() 529 MeasureUnit.Complexity complexit in parse() [all...] |
H A D | ConversionRates.java | 129 if (measureUnitImpl.getComplexity() != MeasureUnit.Complexity.SINGLE) return false; in checkSimpleUnit()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
H A D | LongNameMultiplexer.java | 62 if (unit.getComplexity() == MeasureUnit.Complexity.MIXED) { in forMeasureUnits()
|
H A D | LongNameHandler.java | 27 import com.ibm.icu.util.MeasureUnit.Complexity; 662 if (mui.getComplexity() == MeasureUnit.Complexity.COMPOUND) { in calculateGenderForUnit() 708 } else if (mui.getComplexity() == MeasureUnit.Complexity.MIXED) { in calculateGenderForUnit() 711 assert mui.getComplexity() == MeasureUnit.Complexity.SINGLE; in calculateGenderForUnit() 826 assert unit.getComplexity() != Complexity.MIXED in forMeasureUnit() 970 if (productUnit.getComplexity() == Complexity.MIXED) { in processPatternTimes()
|
H A D | MixedUnitLongNameHandler.java | 65 assert mixedUnit.getComplexity() == MeasureUnit.Complexity.MIXED in forMeasureUnit()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | MeasureUnit.java | 91 public enum Complexity { enum in MeasureUnit 456 * Compute the complexity of the unit. See Complexity for more information. 461 public Complexity getComplexity() { in getComplexity() 477 * occur. For more information, see `Complexity`. 495 * error will occur. For more information, see `Complexity`. 510 * For more information, see `Complexity`. 525 * For more information, see `Complexity`. 544 * occur. For more information, see `Complexity`. 566 * MIXED unit, an error will occur. For more information, see `Complexity`. 581 if (implCopy.getComplexity() == Complexity in product() [all...] |
/third_party/benchmark/src/ |
H A D | benchmark_register.cc | 421 Benchmark* Benchmark::Complexity(BigO complexity) { in Complexity() function in benchmark::internal::Benchmark 426 Benchmark* Benchmark::Complexity(BigOFunc* complexity) { in Complexity() function in benchmark::internal::Benchmark
|
/third_party/benchmark/bindings/python/google_benchmark/ |
H A D | benchmark.cc | 114 (Benchmark * (Benchmark::*)(benchmark::BigO)) & Benchmark::Complexity, in NB_MODULE()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | MeasureUnitTest.java | 4535 assertEquals(identifier + ": Complexity", MeasureUnit.Complexity.SINGLE, singleMeasureUnit.getComplexity()); in verifySingleUnit() 4580 assertEquals("mu1 initial complexity", MeasureUnit.Complexity.SINGLE, mu1.getComplexity()); in TestInternalMeasureUnitImpl() 4588 assertEquals("mu1 post-build complexity", MeasureUnit.Complexity.SINGLE, mu1.getComplexity()); in TestInternalMeasureUnitImpl() 4595 assertEquals("mu1 = HMS: complexity", MeasureUnit.Complexity.MIXED, mu1.getComplexity()); in TestInternalMeasureUnitImpl() 4603 assertEquals("append meter twice: complexity", MeasureUnit.Complexity.SINGLE, m2.getComplexity()); in TestInternalMeasureUnitImpl() 4610 assertEquals("append meter & centimeter: complexity", MeasureUnit.Complexity.COMPOUND, mcm.getComplexity()); in TestInternalMeasureUnitImpl() 4617 assertEquals("meter-square-meter: complexity", MeasureUnit.Complexity.SINGLE, m2m.getComplexity()); in TestInternalMeasureUnitImpl() 4636 assertEquals(identifier + ": Complexity", in verifyCompoundUnit() 4637 MeasureUnit.Complexity in verifyCompoundUnit() [all...] |
/third_party/benchmark/include/benchmark/ |
H A D | benchmark.h | 1236 Benchmark* Complexity(BigO complexity = benchmark::oAuto); 1240 Benchmark* Complexity(BigOFunc* complexity);
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
H A D | NumberFormatterImpl.java | 217 macros.unit.getComplexity() == MeasureUnit.Complexity.MIXED; in macrosToMicroGenerator()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86ISelDAGToDAG.cpp | 2515 unsigned Complexity = 0; in selectLEAAddr() local 2517 Complexity = 1; in selectLEAAddr() 2519 Complexity = 4; in selectLEAAddr() 2522 Complexity++; in selectLEAAddr() 2527 Complexity++; in selectLEAAddr() 2537 Complexity = 4; in selectLEAAddr() 2539 Complexity += 2; in selectLEAAddr() 2570 Complexity++; in selectLEAAddr() 2574 Complexity++; in selectLEAAddr() 2577 if (Complexity < in selectLEAAddr() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 836 unsigned Complexity = S->getSCEVType(); in GroupByComplexity() local 840 for (unsigned j = i+1; j != e && Ops[j]->getSCEVType() == Complexity; ++j) { in GroupByComplexity()
|