Searched refs:Div (Results 1 - 25 of 36) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DDiv.java19 * $Id: Div.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Div extends Operation class in inherits:Operation
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java30 import org.apache.xpath.operations.Div;
103 (pred instanceof Div) ||
/external/skia/src/core/
H A DSkFloat.h48 void div(const SkFloat& a) { fPacked = Div(fPacked, a.fPacked); }
49 void setDiv(const SkFloat& a, const SkFloat& b) { fPacked = Div(a.fPacked, b.fPacked); }
101 static int32_t Div(int32_t, int32_t);
H A DSkFloat.cpp189 int32_t SkFloat::Div(int32_t packed_n, int32_t packed_d) function in class:SkFloat
207 return Div(packed, SetShift(n, 0));
212 return Div(packed, SetShift(1, 0));
H A DSkFP.h62 #define SkFPDiv(a, b) SkFloat::Div(a, b)
/external/libnfc-nxp/src/
H A DphFriNfc_OvrHalCmd.h75 void *Div; member in struct:phFriNfc_OvrHalCmdVoid
/external/llvm/lib/Support/
H A DConstantRange.cpp495 APInt Div(getBitWidth(), 0);
496 APInt::udivrem(LowerDiv, MaxBitValue, Div, LowerDiv);
497 UpperDiv = UpperDiv - MaxBitValue * Div;
/external/valgrind/main/VEX/priv/
H A Dhost_ppc_defs.c812 i->Pin.Div.extended = extended;
813 i->Pin.Div.syned = syned;
814 i->Pin.Div.sz32 = sz32;
815 i->Pin.Div.dst = dst;
816 i->Pin.Div.srcL = srcL;
817 i->Pin.Div.srcR = srcR;
1308 i->Pin.Div.sz32 ? 'w' : 'd',
1309 i->Pin.Div.extended ? "e" : "",
1310 i->Pin.Div.syned ? "" : "u");
1311 ppHRegPPC(i->Pin.Div
[all...]
H A Dhost_amd64_defs.c714 i->Ain.Div.syned = syned;
715 i->Ain.Div.sz = sz;
716 i->Ain.Div.src = src;
1120 i->Ain.Div.syned ? 's' : 'u',
1121 showAMD64ScalarSz(i->Ain.Div.sz));
1122 ppAMD64RM(i->Ain.Div.src);
1469 addRegUsage_AMD64RM(u, i->Ain.Div.src, HRmRead);
1767 mapRegs_AMD64RM(m, i->Ain.Div.src);
2716 subopc = i->Ain.Div.syned ? 7 : 6;
2717 if (i->Ain.Div
[all...]
H A Dhost_x86_defs.c621 i->Xin.Div.syned = syned;
622 i->Xin.Div.src = src;
932 vex_printf("%cdivl ", i->Xin.Div.syned ? 's' : 'u');
933 ppX86RM(i->Xin.Div.src);
1206 addRegUsage_X86RM(u, i->Xin.Div.src, HRmRead);
1454 mapRegs_X86RM(m, i->Xin.Div.src);
2237 subopc = i->Xin.Div.syned ? 7 : 6;
2239 switch (i->Xin.Div.src->tag) {
2242 i->Xin.Div.src->Xrm.Mem.am);
2246 i->Xin.Div
[all...]
H A Dhost_x86_defs.h429 } Div; member in union:__anon13328::__anon13329
H A Dhost_amd64_defs.h472 } Div; member in union:__anon13043::__anon13044
H A Dhost_ppc_defs.h569 } Div; member in union:__anon13211::__anon13212
/external/llvm/include/llvm/MC/
H A DMCExpr.h314 Div, ///< Signed division. enumerator in enum:llvm::MCBinaryExpr::Opcode
359 return Create(Div, LHS, RHS, Ctx);
/external/clang/include/clang/AST/
H A DStmtVisitor.h121 BINOP_FALLBACK(Mul) BINOP_FALLBACK(Div) BINOP_FALLBACK(Rem)
H A DRecursiveASTVisitor.h50 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) \
64 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) OPERATOR(Add) OPERATOR(Sub) \
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java44 import org.apache.xpath.operations.Div;
401 * @return reference to {@link org.apache.xpath.operations.Div} instance.
407 return compileOperation(new Div(), opPos);
/external/llvm/lib/MC/
H A DMCExpr.cpp108 case MCBinaryExpr::Div: OS << '/'; break;
570 case MCBinaryExpr::Div: Result = LHS / RHS; break;
/external/llvm/lib/VMCore/
H A DConstantFold.cpp1054 assert(!CI2->isNullValue() && "Div by zero handled above");
1057 assert(!CI2->isNullValue() && "Div by zero handled above");
1062 assert(!CI2->isNullValue() && "Div by zero handled above");
1065 assert(!CI2->isNullValue() && "Div by zero handled above");
2026 Constant *Div = ConstantExpr::getSDiv(CI, Factor); local
2032 Type::getInt64Ty(Div->getContext()));
2033 if (!Div->getType()->isIntegerTy(64))
2034 Div = ConstantExpr::getSExt(Div,
2035 Type::getInt64Ty(Div
[all...]
H A DAsmWriter.cpp693 } else if (const PossiblyExactOperator *Div =
695 if (Div->isExact())
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp2184 const SCEV *Div = getUDivExpr(Op, RHSC);
2185 if (!isa<SCEVUDivExpr>(Div) && getMulExpr(Div, RHSC) == Op) {
2188 Operands[i] = Div;
5203 if (const SCEVUDivExpr *Div = dyn_cast<SCEVUDivExpr>(V)) {
5204 const SCEV *LHS = getSCEVAtScope(Div->getLHS(), L);
5205 const SCEV *RHS = getSCEVAtScope(Div->getRHS(), L);
5206 if (LHS == Div->getLHS() && RHS == Div->getRHS())
5207 return Div; // mus
[all...]
H A DScalarEvolutionExpander.cpp241 const SCEV *Div = SE.getConstant(CI); local
242 S = Div;
H A DInstructionSimplify.cpp1007 if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X))
1008 if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y)
/external/clang/tools/libclang/
H A DRecursiveASTVisitor.h50 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) \
64 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) OPERATOR(Add) OPERATOR(Sub) \
/external/v8/src/mips/
H A Dmacro-assembler-mips.h572 DEFINE_INSTRUCTION2(Div);

Completed in 497 milliseconds

12