HomeSort by relevance Sort by last modified time
    Searched defs:Power (Results 1 - 6 of 6) sorted by null

  /external/clang/test/SemaCXX/
blocks.cpp 30 class Power {
34 Power(int base) : base(base) {}
41 return Power(2).calculate(10);
  /external/openfst/src/include/fst/
weight.h 148 // 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) {
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 81 unsigned Power;
83 Factor(Value *Base, unsigned Power) : Base(Base), Power(Power) {}
99 /// \brief Sort factors in descending order by their power.
102 return LHS.Power > RHS.Power;
109 return LHS.Power == RHS.Power;
    [all...]
LoopStrengthReduce.cpp     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 1040 class Power(Node):
1053 return "Power((%s, %s))" % (repr(self.left), repr(self.right))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 1040 class Power(Node):
1053 return "Power((%s, %s))" % (repr(self.left), repr(self.right))
    [all...]

Completed in 200 milliseconds