/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRTokenRewriteStream.h | 129 - (void) rollback:(NSString *)programName Index:(NSInteger)anInstructionIndex; 134 - (void) insertAfterProgNam:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText; 139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText; 154 - (void)setLastRewriteTokenIndex:(NSString *)programName Index:(NSInteger)anInt; 165 - (ANTLRHashMap *)getKindOfOps:(ANTLRHashMap *)rewrites KindOfClass:(Class)kind Index:(NSInteger)before;
|
/external/eigen/Eigen/src/Core/ |
Array.h | 108 * \sa resize(Index,Index) 133 EIGEN_STRONG_INLINE explicit Array(Index dim) 156 Array(Index rows, Index cols); 224 inline Index innerStride() const { return 1; } 225 inline Index outerStride() const { return this->innerSize(); }
|
ArrayBase.h | 53 typedef typename internal::traits<Derived>::Index Index; 158 explicit ArrayBase(Index); 159 ArrayBase(Index,Index);
|
Assign_MKL.h | 87 typedef typename Derived1::Index Index; 92 const Index innerSize = dst.innerSize(); 93 const Index outerSize = dst.outerSize(); 94 for(Index outer = 0; outer < outerSize; ++outer) {
|
VectorwiseOp.h | 81 Index rows() const { return (Direction==Vertical ? 1 : m_matrix.rows()); } 82 Index cols() const { return (Direction==Horizontal ? 1 : m_matrix.cols()); } 84 EIGEN_STRONG_INLINE const Scalar coeff(Index i, Index j) const 92 const Scalar coeff(Index index) const 95 return m_functor(m_matrix.col(index)); 97 return m_functor(m_matrix.row(index)); 172 typedef typename ExpressionType::Index Index; [all...] |
/external/eigen/Eigen/src/Eigenvalues/ |
GeneralizedEigenSolver.h | 75 typedef typename MatrixType::Index Index; 125 GeneralizedEigenSolver(Index size) 259 GeneralizedEigenSolver& setMaxIterations(Index maxIters) 290 // Index n = m_eivec.cols(); 319 Index i = 0;
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_dataflow.c | 55 src->Index, refmask); 76 inst->RGB.Src[src].Index); 90 inst->Alpha.Src[src].Index); 124 cb(userdata, fullinst, inst->RGB.Src[src].File, inst->RGB.Src[src].Index, 128 cb(userdata, fullinst, inst->Alpha.Src[src].File, inst->Alpha.Src[src].Index, RC_MASK_W); 157 U.P.RGB.Src[RC_PAIR_PRESUB_SRC].Index; 161 U.P.Alpha.Src[RC_PAIR_PRESUB_SRC].Index; 262 cb(userdata, fullinst, inst->DstReg.File, inst->DstReg.Index, inst->DstReg.WriteMask); 304 rc_register_file file, unsigned int index, unsigned int mask) 309 d->Fn(d->UserData, inst, file, index, chan) 349 unsigned int index = inst->DstReg.Index; local 359 unsigned int index = inst->SrcReg[src].Index; local 396 unsigned int index = inst->RGB.DestIndex; local 405 unsigned int index = inst->Alpha.DestIndex; local 415 unsigned int index = inst->RGB.Src[src].Index; local 425 unsigned int index = inst->Alpha.Src[src].Index; local [all...] |
radeon_optimize.c | 39 unsigned int Index; 52 combine.Index = inner.Index; 112 && src->Index == sc_data->Index 127 unsigned int index, 133 sc_data.Index = index; 333 inst->U.I.SrcReg[src].Index >= c->Program.Constants.Count) 337 &c->Program.Constants.Constants[inst->U.I.SrcReg[src].Index]; [all...] |
radeon_program_print.c | 112 static void rc_print_inline_float(FILE * f, int index) 114 int r300_exponent = (index >> 3) & 0xf; 115 unsigned r300_mantissa = index & 0x7; 124 fprintf(f, "%f (0x%x)", *print_float, index); 128 static void rc_print_register(FILE * f, rc_register_file file, int index, unsigned int reladdr) 133 switch(index) { 135 default: fprintf(f, "special[%i]", index); break; 138 rc_print_inline_float(f, index); 149 fprintf(f, "%s[%i%s]", filename, index, reladdr ? " + addr[0]" : ""); 163 rc_print_register(f, dst.File, dst.Index, 0) [all...] |
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
LevenbergMarquardt.h | 52 typedef DenseIndex Index; 63 Index maxfev; // maximum number of function evaluation 85 Index *nfev, 104 Index nfev; 105 Index njev; 106 Index iter; 113 Index n; 114 Index m; 187 for (Index j = 0; j < n; ++j) 215 Index df_ret = functor.df(x, fjac) [all...] |
dogleg.h | 16 typedef DenseIndex Index; 19 Index i, j; 26 const Index n = qrfac.cols();
|
/external/clang/include/clang/Serialization/ |
ModuleManager.h | 63 /// \brief The list of module files that both we and the global module index 66 /// Either the global index or the module manager may have modules that the 67 /// other does not know about, because the global index can be out-of-date 70 /// known to the global index. 73 /// \brief The global module index, if one is attached. 75 /// The global module index will actually be owned by the ASTReader; this is 151 /// \brief Returns the module associated with the given index 152 ModuleFile &operator[](unsigned Index) const { return *Chain[Index]; } 232 /// \brief Set the global module index [all...] |
/external/eigen/test/ |
geo_parametrizedline.cpp | 22 typedef typename LineType::Index Index; 23 const Index dim = _line.dim();
|
schur_real.cpp | 16 typedef typename MatrixType::Index Index; 18 const Index size = T.cols();
|
sparse_vector.cpp | 12 template<typename Scalar,typename Index> void sparse_vector(int rows, int cols) 18 typedef SparseVector<Scalar,0,Index> SparseVectorType; 19 typedef SparseMatrix<Scalar,0,Index> SparseMatrixType; 49 VERIFY(nonzerocoords[j]==it.index()); 50 VERIFY(it.value()==v1.coeff(it.index())); 51 VERIFY(it.value()==refV1.coeff(it.index()));
|
product_syrk.cpp | 14 typedef typename MatrixType::Index Index; 21 Index rows = m.rows(); 22 Index cols = m.cols(); 35 Index c = internal::random<Index>(0,cols-1);
|
/external/llvm/include/llvm/Support/ |
MathExtras.h | 75 unsigned long Index; 76 _BitScanForward(&Index, Val); 77 return Index; 91 unsigned long Index; 92 _BitScanForward64(&Index, Val); 93 return Index; 144 unsigned long Index; 145 _BitScanReverse(&Index, Val); 146 return Index ^ 31; 160 unsigned long Index; [all...] |
/external/llvm/lib/DebugInfo/DWARF/ |
DWARFAcceleratorTable.cpp | 32 // section (see SourceLevelDebugging.rst for the structure of the index). 83 unsigned Index = AccelSection.getU32(&Offset); 86 if (Index == UINT32_MAX) { 91 for (unsigned HashIdx = Index; HashIdx < Hdr.NumHashes; ++HashIdx) {
|
/external/llvm/lib/Transforms/Utils/ |
LoopUtils.cpp | 634 Value *InductionDescriptor::transform(IRBuilder<> &B, Value *Index) const { 637 assert(Index->getType() == StartValue->getType() && 638 "Index type does not match StartValue type"); 640 return B.CreateSub(StartValue, Index); 642 Index = B.CreateMul(Index, StepValue); 643 return B.CreateAdd(StartValue, Index); 646 assert(Index->getType() == StepValue->getType() && 647 "Index type does not match StepValue type"); 649 Index = B.CreateNeg(Index) [all...] |
/external/opencv3/modules/flann/include/opencv2/flann/ |
flann_base.hpp | 60 * (Deprecated) Index parameters for creating a saved index. 83 throw FLANNException("Datatype of saved index is different than of the one to be created."); 86 throw FLANNException("The index saved belongs to a different dataset"); 100 class Index : public NNIndex<Distance> 106 Index(const Matrix<ElementType>& features, const IndexParams& params, Distance distance = Distance() ) 121 ~Index() 127 * Builds the index. 148 * \brief Saves the index to a stream 149 * \param stream The stream to save the index t [all...] |
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/ |
LVREV_ApplyNewSettings.c | 378 LVM_INT32 Index=0; 408 Index=i; 414 if(RoomSize==LVREV_GainPolyTable[Index][0]) 419 Coefs[i-1]=LVREV_GainPolyTable[Index][i]; 431 Tot_Dist=LVREV_GainPolyTable[Index][0]-LVREV_GainPolyTable[Index-1][0]; 432 Dist=RoomSize-LVREV_GainPolyTable[Index-1][0]; 438 Coefs[i-1]=LVREV_GainPolyTable[Index-1][i]; 447 Coefs[i-1]=LVREV_GainPolyTable[Index][i]; 472 Index=((32767*100)/(100+pPrivate->NewParams.Level)) [all...] |
/system/update_engine/payload_generator/ |
graph_utils.cc | 51 Vertex::Index dst, 65 Vertex::Index dst, 94 // For each node N in graph, drop all edges N->|index|. 95 void DropIncomingEdgesTo(Graph* graph, Vertex::Index index) { 99 it->out_edges.erase(index);
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
Antlr.Runtime.Tools.Tests.pas | 262 Index: Integer; 269 Index := 2; 270 ReturnValue := FIList.GetItem(Index); 277 Index: Integer; 284 Index := 3; 286 FIList.SetItem(Index, Value); 320 Index: Integer; 327 Index := 2; 329 FIList.Insert(Index, Value); 352 Index: Integer [all...] |
/external/clang/unittests/libclang/ |
LibclangTest.cpp | 10 #include "clang-c/Index.h" 356 CXIndex Index; 366 Index = clang_createIndex(0, 0); 370 clang_disposeIndex(Index); 418 ClangTU = clang_parseTranslationUnit(Index, CppName.c_str(), nullptr, 0, 453 ClangTU = clang_parseTranslationUnit(Index, MName.c_str(), Args, NumArgs, 491 clang_parseTranslationUnit2FullArgv(Index, Filename.c_str(), Argv,
|
/external/llvm/include/llvm/ADT/ |
ArrayRef.h | 185 const T &operator[](size_t Index) const { 186 assert(Index < Length && "Invalid index!"); 187 return Data[Index]; 296 T &operator[](size_t Index) const { 297 assert(Index < this->size() && "Invalid index!"); 298 return data()[Index];
|