HomeSort by relevance Sort by last modified time
    Searched defs:Factor (Results 1 - 14 of 14) 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 380 unsigned Factor = SchedModel.getLatencyFactor();
381 return (Scaled + Factor - 1) / Factor;
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 277 unsigned Factor = NumParts / NumIntermediates;
279 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor,
574 unsigned Factor = NumParts / NumIntermediates;
576 getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT, V);
    [all...]
SelectionDAG.cpp     [all...]
  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 386 /* Initial factor: set target size to: |3.0 * per_frame_bandwidth|. */
390 /* adjustment up based on q: this factor ranges from ~1.2 to 2.2. */
785 /* For streaming applications the most important factor is
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
ratectrl.c 386 /* Initial factor: set target size to: |3.0 * per_frame_bandwidth|. */
390 /* adjustment up based on q: this factor ranges from ~1.2 to 2.2. */
785 /* For streaming applications the most important factor is
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 631 // alignof-like expression, factor out known factors.
    [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 850 // Get the cost of the scaling factor used in F for LU.
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 461 // Input Instr I Factor AddSub0 AddSub1
466 Value *Factor = nullptr;
471 Factor = Opnd0_0;
473 Factor = Opnd0_1;
475 if (Factor) {
476 AddSub0 = (Factor == Opnd0_0) ? Opnd0_1 : Opnd0_0;
477 AddSub1 = (Factor == Opnd1_0) ? Opnd1_1 : Opnd1_0;
480 Factor = Opnd0_1;
485 if (!Factor)
505 Value *RI = createFMul(Factor, NewAddSub)
    [all...]
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp     [all...]
  /external/clang/lib/Driver/
Tools.cpp 646 // FIXME: Factor out an ARM class so we can cache the arch somewhere.
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 153 cl::desc("A flag that overrides the target's max interleave factor for "
158 cl::desc("A flag that overrides the target's max interleave factor for "
197 cl::desc("The maximum unroll factor to use when unrolling a scalar "
232 /// block to a specified vectorization factor (VF).
236 /// counts that are known to be a multiple of the vectorization factor.
244 /// and reduction variables that were found to a given vectorization factor.
388 /// The unroll factor. Each entry in the map stores this number of vector
412 /// The vectorization SIMD factor to use. Each vector will have this many
417 /// The vectorization unroll factor to use. Each scalar is vectorized to this
549 /// to what vectorization factor
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 647 milliseconds