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/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     [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 608 // alignof-like expression, factor out known factors.
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 423 // Input Instr I Factor AddSub0 AddSub1
428 Value *Factor = 0;
433 Factor = Opnd0_0;
435 Factor = Opnd0_1;
437 if (Factor) {
438 AddSub0 = (Factor == Opnd0_0) ? Opnd0_1 : Opnd0_0;
439 AddSub1 = (Factor == Opnd1_0) ? Opnd1_1 : Opnd1_0;
442 Factor = Opnd0_1;
447 if (!Factor)
461 return createFMul(Factor, NewAddSub)
    [all...]
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
SelectionDAGBuilder.cpp 255 unsigned Factor = NumParts / NumIntermediates;
257 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor,
565 unsigned Factor = NumParts / NumIntermediates;
567 getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT, V);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 132 /// block to a specified vectorization factor (VF).
136 /// counts that are known to be a multiple of the vectorization factor.
144 /// and reduction variables that were found to a given vectorization factor.
260 /// The unroll factor. Each entry in the map stores this number of vector
282 /// The vectorization SIMD factor to use. Each vector will have this many
285 /// The vectorization unroll factor to use. Each scalar is vectorized to this
318 /// to what vectorization factor.
565 /// \return The most profitable vectorization factor and the cost of that VF.
567 /// then this vectorization factor will be selected if vectorization is
577 /// \return The most profitable unroll factor
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 71 unsigned Factor = VT.getSizeInBits()/128;
73 VT.getVectorNumElements()/Factor);
    [all...]

Completed in 574 milliseconds