Searched defs:Log2 (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/sfntly/cpp/src/sfntly/math/
H A Dfont_math.h26 static int32_t Log2(int32_t a) { function in class:sfntly::FontMath
/external/sfntly/cpp/src/sfntly/math/
H A Dfont_math.h26 static int32_t Log2(int32_t a) { function in class:sfntly::FontMath
/external/llvm/lib/Target/Mips/
H A DMipsSEISelDAGToDAG.cpp535 int32_t Log2 = ImmValue.exactLogBase2(); local
537 if (Log2 != -1) {
538 Imm = CurDAG->getTargetConstant(Log2, EltTy);
620 int32_t Log2 = (~ImmValue).exactLogBase2(); local
622 if (Log2 != -1) {
623 Imm = CurDAG->getTargetConstant(Log2, EltTy);
H A DMipsSEISelLowering.cpp573 unsigned Log2 = Log2IfPositive; local
575 if ((Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT && Log2 >= ExtendTySize) ||
576 Log2 == ExtendTySize) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp303 static void detectLog2OfHalf(Value *&Op, Value *&Y, IntrinsicInst *&Log2) { argument
313 Log2 = II;
519 IntrinsicInst *Log2; local
520 detectLog2OfHalf(Op0, OpY, Log2);
524 detectLog2OfHalf(Op1, OpY, Log2);
532 Builder->SetFastMathFlags(Log2->getFastMathFlags());
533 Log2->setArgOperand(0, OpY);
534 Value *FMulVal = Builder->CreateFMul(OpX, Log2);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp776 int Log2 = NewMask.exactLogBase2(); local
777 if (Log2 >= 0) {
780 TLO.DAG.getConstant(BitWidth - 1 - Log2,
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp2097 class Log2 : public LogFunc { public: Log2 (void) : LogFunc("log2", deLog2) {} }; function in class:deqp::gls::BuiltinPrecisionTests::Functions::Log2
2100 ExprP<float> log2 (const ExprP<float>& x) { return app<Log2>(x); }
5105 addScalarFactory<Log2>(*funcs);

Completed in 183 milliseconds