HomeSort by relevance Sort by last modified time
    Searched defs:Div (Results 1 - 25 of 27) sorted by null

1 2

  /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/llvm/unittests/Transforms/Utils/
IntegerDivision.cpp 40 Value *Div = Builder.CreateSDiv(A, B);
43 Value *Ret = Builder.CreateRet(Div);
45 expandDivision(cast<BinaryOperator>(Div));
70 Value *Div = Builder.CreateUDiv(A, B);
73 Value *Ret = Builder.CreateRet(Div);
75 expandDivision(cast<BinaryOperator>(Div));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUISelLowering.cpp 257 // Div = (Tmp1 == 0 ? Quotient : Quotient_A_One)
258 SDValue Div = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, VT),
261 // Div = (Remainder_GE_Zero == 0 ? Quotient_S_One : Div)
262 Div = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, VT),
263 Quotient_S_One, Div, ISD::SETEQ);
281 DAG.ReplaceAllUsesWith(Op.getValue(0).getNode(), &Div);
  /external/chromium_org/third_party/skia/src/core/
SkFloat.cpp 189 int32_t SkFloat::Div(int32_t packed_n, int32_t packed_d)
207 return Div(packed, SetShift(n, 0));
212 return Div(packed, SetShift(1, 0));
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 416 // Div = (Tmp1 == 0 ? Quotient : Quotient_A_One)
417 SDValue Div = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, VT),
420 // Div = (Remainder_GE_Zero == 0 ? Quotient_S_One : Div)
421 Div = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, VT),
422 Quotient_S_One, Div, ISD::SETEQ);
440 Ops[0] = Div;
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUISelLowering.cpp 257 // Div = (Tmp1 == 0 ? Quotient : Quotient_A_One)
258 SDValue Div = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, VT),
261 // Div = (Remainder_GE_Zero == 0 ? Quotient_S_One : Div)
262 Div = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, VT),
263 Quotient_S_One, Div, ISD::SETEQ);
281 DAG.ReplaceAllUsesWith(Op.getValue(0).getNode(), &Div);
  /external/skia/src/core/
SkFloat.cpp 189 int32_t SkFloat::Div(int32_t packed_n, int32_t packed_d)
207 return Div(packed, SetShift(n, 0));
212 return Div(packed, SetShift(1, 0));
  /external/chromium_org/third_party/jinja2/
nodes.py 727 class Div(BinExpr):
  /external/libnfc-nxp/src/
phFriNfc_OvrHalCmd.h 75 void *Div;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 433 class Div(Node):
446 return "Div((%s, %s))" % (repr(self.left), repr(self.right))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 433 class Div(Node):
446 return "Div((%s, %s))" % (repr(self.left), repr(self.right))
    [all...]
  /art/compiler/utils/mips/
assembler_mips.cc 206 void MipsAssembler::Div(Register rs, Register rt) {
451 void MipsAssembler::Div(Register rd, Register rs, Register rt) {
452 Div(rs, rt);
457 Div(rs, rt);
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 241 const SCEV *Div = SE.getConstant(CI);
242 S = Div;
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
  /external/chromium_org/v8/src/mips/
macro-assembler-mips.cc 621 void MacroAssembler::Div(Register rs, const Operand& rt) {
623 div(rs, rt.rm());
628 div(rs, at);
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 361 Div, ///< Signed division.
406 return Create(Div, LHS, RHS, Ctx);
  /external/v8/src/mips/
macro-assembler-mips.cc 621 void MacroAssembler::Div(Register rs, const Operand& rt) {
623 div(rs, rt.rm());
628 div(rs, at);
    [all...]
  /external/valgrind/main/VEX/priv/
host_mips_defs.h 350 Min_Div, /* div */
478 } Div;
host_amd64_defs.h 361 Ain_Div, /* div and mod */
457 /* amd64 div/idiv instruction. Modifies RDX and RAX and
463 } Div;
host_x86_defs.h 348 Xin_Div, /* 64/32 -> (32,32) div and mod */
429 /* x86 div/idiv instruction. Modifies EDX and EAX and reads src. */
433 } Div;
host_arm_defs.h 742 } Div;
host_ppc_defs.h 457 Pin_Div, /* div */
597 /* ppc32 div/divu instruction. */
601 Bool sz32; /* mode64 has both 32 & 64bit div */
605 } Div;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 1742 milliseconds

1 2