/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/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGBuilder.cpp | 272 unsigned Factor = NumParts / NumIntermediates; 274 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor, 568 unsigned Factor = NumParts / NumIntermediates; 570 getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT, V); [all...] |
SelectionDAG.cpp | [all...] |
/external/chromium_org/third_party/libvpx/source/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/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...] |
/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 | 851 // Get the cost of the scaling factor used in F for LU. [all...] |
/external/llvm/lib/IR/ |
ConstantFold.cpp | 612 // alignof-like expression, factor out known factors. [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/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | 83 unsigned Factor = VT.getSizeInBits()/vectorWidth; 85 VT.getVectorNumElements()/Factor); [all...] |