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

  /external/eigen/Eigen/src/Core/
Replicate.h 39 Factor = (RowFactor==Dynamic || ColFactor==Dynamic) ? Dynamic : RowFactor*ColFactor
41 typedef typename nested<MatrixType,Factor>::type MatrixTypeNested;
169 VectorwiseOp<ExpressionType,Direction>::replicate(Index factor) const
172 (_expression(),Direction==Vertical?factor:1,Direction==Horizontal?factor:1);
  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 373 unsigned Factor = SchedModel.getLatencyFactor();
374 return (Scaled + Factor - 1) / Factor;
  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 394 /* Initial factor: set target size to: |3.0 * per_frame_bandwidth|. */
398 /* adjustment up based on q: this factor ranges from ~1.2 to 2.2. */
793 /* For streaming applications the most important factor is
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 78 /// factor of some product.
79 struct Factor {
83 Factor(Value *Base, unsigned Power) : Base(Base), Power(Power) {}
87 bool operator()(const Factor &LHS, const Factor &RHS) {
94 bool operator()(const Factor &LHS, const Factor &RHS) {
101 bool operator()(const Factor &LHS, const Factor &RHS) {
108 bool operator()(const Factor &LHS, const Factor &RHS)
    [all...]
LoopStrengthReduce.cpp 782 // Get the cost of the scaling factor used in F for LU.
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 609 // alignof-like expression, factor out known factors.
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 459 // Input Instr I Factor AddSub0 AddSub1
464 Value *Factor = 0;
469 Factor = Opnd0_0;
471 Factor = Opnd0_1;
473 if (Factor) {
474 AddSub0 = (Factor == Opnd0_0) ? Opnd0_1 : Opnd0_0;
475 AddSub1 = (Factor == Opnd1_0) ? Opnd1_1 : Opnd1_0;
478 Factor = Opnd0_1;
483 if (!Factor)
497 return createFMul(Factor, NewAddSub)
    [all...]
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
SelectionDAGBuilder.cpp 256 unsigned Factor = NumParts / NumIntermediates;
258 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor,
569 unsigned Factor = NumParts / NumIntermediates;
571 getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT, V);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 68 unsigned Factor = VT.getSizeInBits()/vectorWidth;
70 VT.getVectorNumElements()/Factor);
    [all...]

Completed in 376 milliseconds