/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Div.java | 19 * $Id: Div.java 468655 2006-10-28 07:12:06Z minchau $ 28 * The 'div' operation expression executer. 30 public class Div extends Operation
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
HasPositionalPredChecker.java | 30 import org.apache.xpath.operations.Div; 103 (pred instanceof Div) ||
|
/external/skia/src/core/ |
SkFloat.h | 55 void div(const SkFloat& a) { fPacked = Div(fPacked, a.fPacked); } function in class:SkFloat 56 void setDiv(const SkFloat& a, const SkFloat& b) { fPacked = Div(a.fPacked, b.fPacked); } 108 static int32_t Div(int32_t, int32_t);
|
SkFloat.cpp | 196 int32_t SkFloat::Div(int32_t packed_n, int32_t packed_d) 214 return Div(packed, SetShift(n, 0)); 219 return Div(packed, SetShift(1, 0));
|
SkFP.h | 70 #define SkFPDiv(a, b) SkFloat::Div(a, b)
|
/external/libnfc-nxp/src/ |
phFriNfc_OvrHalCmd.h | 75 void *Div;
|
/external/llvm/include/llvm/MC/ |
MCExpr.h | 287 Div, ///< Signed division. 332 return Create(Div, LHS, RHS, Ctx);
|
/external/valgrind/main/VEX/priv/ |
host_amd64_defs.c | 535 //.. case Xfp_DIV: return "div"; 561 case Asse_DIVF: return "div"; 692 i->Ain.Div.syned = syned; 693 i->Ain.Div.sz = sz; 694 i->Ain.Div.src = src; [all...] |
host_ppc_defs.c | 805 i->Pin.Div.syned = syned; 806 i->Pin.Div.sz32 = sz32; 807 i->Pin.Div.dst = dst; 808 i->Pin.Div.srcL = srcL; 809 i->Pin.Div.srcR = srcR; [all...] |
host_x86_defs.c | 471 case Xfp_DIV: return "div"; 497 case Xsse_DIVF: return "div"; 621 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); [all...] |
host_x86_defs.h | 348 Xin_Div, /* 64/32 -> (32,32) div and mod */ 425 /* x86 div/idiv instruction. Modifies EDX and EAX and reads src. */ 429 } Div;
|
host_amd64_defs.h | 363 Ain_Div, /* div and mod */ 458 /* amd64 div/idiv instruction. Modifies RDX and RAX and 464 } Div;
|
host_ppc_defs.h | 446 Pin_Div, /* div */ 560 /* ppc32 div/divu instruction. */ 563 Bool sz32; /* mode64 has both 32 & 64bit div */ 567 } Div;
|
/external/clang/include/clang/AST/ |
StmtVisitor.h | 123 BINOP_FALLBACK(Mul) BINOP_FALLBACK(Div) BINOP_FALLBACK(Rem)
|
RecursiveASTVisitor.h | 50 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) \ 64 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) OPERATOR(Add) OPERATOR(Sub) \ [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZISelDAGToDAG.cpp | 657 SDNode *Div = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG, 663 ReplaceUses(SDValue(Node, 0), SDValue(Div, 0)); 742 SDNode *Div = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG, 747 ReplaceUses(SDValue(Node, 0), SDValue(Div, 0));
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
Compiler.java | 44 import org.apache.xpath.operations.Div; 148 expr = div(opPos); break; 397 * Compile a 'div' operation. 401 * @return reference to {@link org.apache.xpath.operations.Div} instance. 405 protected Expression div(int opPos) throws TransformerException method in class:Compiler 407 return compileOperation(new Div(), opPos); [all...] |
/external/llvm/lib/MC/ |
MCExpr.cpp | 108 case MCBinaryExpr::Div: OS << '/'; break; 538 case MCBinaryExpr::Div: Result = LHS / RHS; break;
|
/external/llvm/lib/VMCore/ |
ConstantFold.cpp | [all...] |
AsmWriter.cpp | 669 } else if (const PossiblyExactOperator *Div = 671 if (Div->isExact()) [all...] |
/external/llvm/lib/Analysis/ |
ScalarEvolution.cpp | [all...] |
InstructionSimplify.cpp | 741 BinaryOperator *Div = cast<BinaryOperator>(Y == Op1 ? Op0 : Op1); 742 if (Div->isExact()) [all...] |
ScalarEvolutionExpander.cpp | 211 const SCEV *Div = SE.getConstant(CI); 212 S = Div; [all...] |
/external/v8/src/mips/ |
macro-assembler-mips.h | 401 DEFINE_INSTRUCTION2(Div); [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
DAGCombiner.cpp | [all...] |