/external/llvm/lib/Transforms/Instrumentation/ |
CFGMST.h | 180 OS << " Edge " << Count++ << ": " << getBBInfo(EI->SrcBB).Index << "-->" 181 << getBBInfo(EI->DestBB).Index << EI->infoString() << "\n"; 186 uint32_t Index = BBInfos.size(); 192 Iter->second = std::move(llvm::make_unique<BBInfo>(Index)); 193 Index++; 198 Iter->second = std::move(llvm::make_unique<BBInfo>(Index));
|
/external/llvm/test/MC/ARM/ |
eh-directive-section-comdat.s | 12 @ This test case will check the content of .group section. The section index 45 @ CHECK: Index: 1 66 @ CHECK: Index: 4 84 @ CHECK: Index: 5 97 @ CHECK: Index: 6 105 @ CHECK: Index: 7 121 @ CHECK: Index: 8
|
/external/mesa3d/src/gallium/include/pipe/ |
p_shader_tokens.h | 171 unsigned Index : 16; /**< UINT */ 527 int Index : 16; 541 int Index : 16; /* SINT */ 553 * Index specifies the element number of a register in the register file. 555 * If Indirect is TRUE, Index should be offset by the X component of a source 571 int Index : 16; /* SINT */ 595 int Index : 16; /* SINT */ 604 int Index : 16; /* SINT */
|
/external/opencv3/modules/flann/src/ |
miniflann.cpp | 225 // cluster boundary index. Used when searching the kmeans tree 238 // index memory weighting factor 256 // cluster boundary index. Used when searching the kmeans tree 311 buildIndex_(void*& index, const Mat& data, const IndexParams& params, const Distance& dist = Distance()) 322 index = _index; 326 buildIndex(void*& index, const Mat& data, const IndexParams& params, const Distance& dist = Distance()) 328 buildIndex_<Distance, ::cvflann::Index<Distance> >(index, data, params, dist); 337 Index::Index() [all...] |
/external/v8/test/mjsunit/es6/ |
typedarray-indexing.js | 30 // Negative index out of range. 32 // Negative index in rage. 34 // Index in range. 56 // Index out of range. 58 // Index in range. 62 // Negative index in range.
|
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
HybridNonLinearSolver.h | 46 typedef DenseIndex Index; 60 Index maxfev; // maximum number of function evaluation 62 Index nb_of_subdiagonals; 63 Index nb_of_superdiagonals; 94 Index nfev; 95 Index njev; 96 Index iter; 101 Index n; 107 Index ncsuc; 110 Index nslow1, nslow2 [all...] |
/external/llvm/include/llvm/Object/ |
ELF.h | 207 ErrorOr<const Elf_Shdr *> getSection(uint32_t Index) const; 209 const Elf_Sym *getSymbol(const Elf_Shdr *Sec, uint32_t Index) const { 210 return &*(symbol_begin(Sec) + Index); 229 unsigned Index = Sym - symbol_begin(SymTab); 232 return ShndxTable[Index]; 239 uint32_t Index = Sym->st_shndx; 240 if (Index == ELF::SHN_XINDEX) 243 if (Index == ELF::SHN_UNDEF || Index >= ELF::SHN_LORESERVE) 310 uint32_t Index = Rel->getSymbol(isMips64EL()) [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_build.c | 233 ds.Index = 0; 252 ds.Index = semantic_index; 423 full_decl->Semantic.Index, 649 instruction_predicate.Index = 0; 656 tgsi_build_instruction_predicate(int index, 673 instruction_predicate.Index = index; 747 texture_offset.Index = 0; 759 int index, int file, int swizzle_x, int swizzle_y, int swizzle_z, 766 texture_offset.Index = index [all...] |
/external/clang/lib/Lex/ |
PreprocessingRecord.cpp | 329 unsigned Index = -PPID.ID - 1; 330 assert(Index < LoadedPreprocessedEntities.size() && 332 return getLoadedPreprocessedEntity(Index); 337 unsigned Index = PPID.ID - 1; 338 assert(Index < PreprocessedEntities.size() && 340 return PreprocessedEntities[Index]; 343 /// \brief Retrieve the loaded preprocessed entity at the given index. 345 PreprocessingRecord::getLoadedPreprocessedEntity(unsigned Index) { 346 assert(Index < LoadedPreprocessedEntities.size() && 349 PreprocessedEntity *&Entity = LoadedPreprocessedEntities[Index]; [all...] |
/external/mesa3d/src/gallium/drivers/i915/ |
i915_fpc_optimize.c | 44 s1->Register.Index == d1->Register.Index); 52 d1->Register.Index == d2->Register.Index); 60 d1->Register.Index == d2->Register.Index && 153 o->Index = i->Index; 168 o->Index = i->Index; [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/ |
finder.hpp | 351 unsigned int Index=0; 352 Index<N && It!=End; ++Index,++It ) {}; 399 unsigned int Index=0; 404 for( Index=0; Index<N && It2!=End; ++Index,++It2 ) {}; 425 unsigned int Index=0; 426 Index<N && It!=Begin; ++Index,--It ) {} [all...] |
/external/eigen/Eigen/src/Core/ |
GeneralProduct.h | 230 typedef typename Dest::Index Index; 233 const Index cols = dest.cols(); 234 for (Index j=0; j<cols; ++j) 241 typedef typename Dest::Index Index; 244 const Index rows = dest.rows(); 245 for (Index i=0; i<rows; ++i) 411 typedef typename ProductType::Index Index; [all...] |
Functors.h | 560 template<typename Index> 561 EIGEN_STRONG_INLINE const Scalar operator() (Index, Index = 0) const { return m_other; } 562 template<typename Index> 563 EIGEN_STRONG_INLINE const Packet packetOp(Index, Index = 0) const { return internal::pset1<Packet>(m_other); } 573 template<typename Index> 574 EIGEN_STRONG_INLINE const Scalar operator() (Index row, Index col) const { return row==col ? Scalar(1) : Scalar(0); } 600 template<typename Index> [all...] |
/external/clang/lib/Sema/ |
SemaInit.cpp | 214 /// the initializer list one element at a time. The IList and Index 216 /// (syntactic) initializer list and the index into that initializer 218 /// responsible for moving that Index forward as it consumes elements. 222 /// initializer list and the index into that initializer list where we 244 unsigned &Index, InitListExpr *StructuredList, 253 unsigned &Index, 259 unsigned &Index, 264 unsigned &Index, 269 unsigned &Index, 274 unsigned &Index, [all...] |
/external/eigen/test/ |
adjoint.cpp | 62 typedef typename MatrixType::Index Index; 68 Index rows = m.rows(); 69 Index cols = m.cols(); 100 Index r = internal::random<Index>(0, rows-1), 101 c = internal::random<Index>(0, cols-1);
|
cwiseop.cpp | 70 typedef typename MatrixType::Index Index; 74 Index rows = m.rows(); 75 Index cols = m.cols(); 90 Index r = internal::random<Index>(0, rows-1), 91 c = internal::random<Index>(0, cols-1);
|
/external/mesa3d/src/gallium/drivers/r300/ |
r300_tgsi_to_rc.c | 176 int index) 179 return ttr->immediate_offset + index; 181 return index; 190 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index); 208 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index); 219 if (ttr->imms_to_swizzle[i].index == src->Register.Index) { 221 dst->Index = 0 [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_vertprog.c | 167 return ((dst->Index << R200_VPI_OUT_REG_INDEX_SHIFT) 170 switch (dst->Index) { 186 return (((dst->Index - VERT_RESULT_TEX0) << R200_VPI_OUT_REG_INDEX_SHIFT) 191 fprintf(stderr, "problem in %s, unknown dst output reg %d\n", __FUNCTION__, dst->Index); 196 assert (dst->Index == 0); 263 /* if(vp->inputs[src->Index] != -1) 264 return vp->inputs[src->Index]; 270 vp->inputs[src->Index] = max_reg+1;*/ 273 assert(vp->inputs[src->Index] != -1); 274 return vp->inputs[src->Index]; [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_program_alu.c | 99 static struct rc_dst_register dstregtmpmask(int index, int mask) 103 dst.Index = index; 110 .Index = 0, 115 .Index = 0, 121 .Index = 0, 127 .Index = 0, 131 static struct rc_src_register srcreg(int file, int index) 135 src.Index = index; [all...] |
radeon_variable.c | 38 * Rewrite the index and writemask for the destination register of var 57 var_ptr->Inst->U.I.DstReg.Index = new_index; 77 reader->U.I.Src->Index = new_index; 97 /* Reuse the source index of the source that 99 * index. We can't use rc_pair_alloc_source 101 * index that is already being used. */ 106 .Index = new_index; 114 .Index = new_index; 265 assert(var->Dst.Index == friend->Dst.Index); [all...] |
/external/llvm/lib/Option/ |
ArgList.cpp | 321 const char *ArgList::GetOrMakeJoinedArgString(unsigned Index, 324 StringRef Cur = getArgString(Index); 356 unsigned Index = ArgStrings.size(); 362 return Index; 400 unsigned Index = BaseArgs.MakeIndex(Value); 403 Index, BaseArgs.getArgString(Index), BaseArg)); 409 unsigned Index = BaseArgs.MakeIndex(Opt.getName(), Value); 412 Index, BaseArgs.getArgString(Index + 1), BaseArg)) [all...] |
/external/libnfc-nxp/src/ |
phLibNfc_ndef_raw.c | [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRTokenRewriteStream.h | 43 /** What index into rewrites List are we? */ 45 /** Token buffer index. */ 46 NSInteger index; variable 51 @property (getter=getIndex, setter=setIndex:) NSInteger index; variable 54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)index Text:(NSString *)text; 59 * Return the index of the next token to operate on. 110 /** Map String (program name) -> Integer index */ 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)index Text:(NSString *)theText [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRTokenRewriteStream.h | 43 /** What index into rewrites List are we? */ 45 /** Token buffer index. */ 46 NSInteger index; variable 51 @property (getter=getIndex, setter=setIndex:) NSInteger index; variable 54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)index Text:(NSString *)text; 59 * Return the index of the next token to operate on. 110 /** Map String (program name) -> Integer index */ 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)index Text:(NSString *)theText [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRTokenRewriteStream.h | 43 /** What index into rewrites List are we? */ 45 /** Token buffer index. */ 46 NSInteger index; variable 51 @property (getter=getIndex, setter=setIndex:) NSInteger index; variable 54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)index Text:(NSString *)text; 59 * Return the index of the next token to operate on. 110 /** Map String (program name) -> Integer index */ 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)index Text:(NSString *)theText [all...] |