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

/external/clang/test/SemaCXX/
H A Dblocks.cpp30 class Power { class in namespace:test2
34 Power(int base) : base(base) {} function in class:test2::Power
41 return Power(2).calculate(10);
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dmonsoon.py25 Power = collections.namedtuple('Power', ['amps', 'volts']) variable
220 out.append(Power(sample, main_voltage_v))
/external/openfst/src/include/fst/
H A Dweight.h148 // Power is the iterated product for arbitrary semirings such that
149 // Power(w, 0) is One() for the semiring, and
150 // Power(w, n) = Times(Power(w, n-1), w)
153 W Power(W w, size_t n) { function in namespace:fst
/external/clang/test/CodeGenCXX/
H A Dtemp-order.cpp5 static unsigned pow(unsigned Base, unsigned Power) { argument
7 while (Power--)
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp81 unsigned Power; member in struct:__anon26317::Factor
83 Factor(Value *Base, unsigned Power) : Base(Base), Power(Power) {} argument
102 return LHS.Power > RHS.Power;
109 return LHS.Power == RHS.Power;
1649 assert(Factors[0].Power);
1652 Idx < Size && Factors[Idx].Power >
[all...]
H A DLoopStrengthReduce.cpp4025 size_t Power = 1; local
4030 Power = ComplexityLimit;
4033 Power *= FSize;
4034 if (Power >= ComplexityLimit)
4037 return Power;

Completed in 194 milliseconds