/external/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMELFStreamer.cpp | 49 static std::string GetAEABIUnwindPersonalityName(unsigned Index) { argument 50 assert(Index < ARM::EHABI::NUM_PERSONALITY_INDEX && 52 return (Twine("__aeabi_unwind_cpp_pr") + Twine(Index)).str(); 68 void emitPersonalityIndex(unsigned Index) override; 110 void ARMTargetAsmStreamer::emitPersonalityIndex(unsigned Index) { 111 OS << "\t.personalityindex " << Index << '\n'; 364 void emitPersonalityIndex(unsigned Index) override; 633 void ARMTargetELFStreamer::emitPersonalityIndex(unsigned Index) { 634 getStreamer().emitPersonalityIndex(Index); 1286 void ARMELFStreamer::emitPersonalityIndex(unsigned Index) { [all...] |
/external/clang/bindings/python/tests/cindex/ |
H A D | test_file.py | 1 from clang.cindex import Index, File namespace 4 index = Index.create()
|
H A D | test_tokens.py | 2 from clang.cindex import Index namespace
|
/external/swiftshader/third_party/subzero/crosstest/ |
H A D | insertelement.h | 23 setElement(VectorType &Value, size_t Index, ElementType Element) { argument 24 Value[Index] = Element;
|
/external/clang/bindings/python/examples/cindex/ |
H A D | cindex-includes.py | 19 from clang.cindex import Index namespace 32 index = Index.create()
|
H A D | cindex-dump.py | 13 A simple command line tool for dumping a source file using the Clang Index 57 from clang.cindex import Index namespace 77 index = Index.create()
|
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/ |
H A D | error.c | 66 UINTN Index; local 68 for (Index = 0; ErrorCodeTable[Index].Desc; Index +=1) { 69 if (ErrorCodeTable[Index].Code == Status) { 70 StrCpy (Buffer, ErrorCodeTable[Index].Desc);
|
H A D | smbios.c | 30 UINT16 Index; local 39 for (Index = 0; Index < SmbiosTable->TableLength ; Index++) { 93 UINT16 Index; local 104 for (Index = 1; Index <= StringNumber; Index++) { 105 if (StringNumber == Index) {
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
H A D | UndefinedArraySubscriptChecker.cpp | 38 const Expr *Index = A->getIdx(); local 39 if (!C.getSVal(Index).isUndef())
|
/external/eigen/test/ |
H A D | determinant.cpp | 19 typedef typename MatrixType::Index Index; typedef 20 Index size = m.rows(); 30 Index i = internal::random<Index>(0, size-1); 31 Index j; 33 j = internal::random<Index>(0, size-1);
|
H A D | svd_fill.h | 26 typedef typename MatrixType::Index Index; typedef 27 Index diagSize = (std::min)(m.rows(), m.cols()); 31 for(Index k=0; k<diagSize; ++k) 40 Index n = internal::random<Index>(0,d.size()-1); 41 for(Index i=0; i<n; ++i) 42 d(internal::random<Index>(0,d.size()-1)) = d(internal::random<Index>(0,d.size()-1)); 77 Index coun [all...] |
H A D | conservative_resize.cpp | 20 typedef typename MatrixType::Index Index; typedef 40 const Index rows = internal::random<Index>(1,50); 41 const Index cols = internal::random<Index>(1,50); 50 const Index rows = internal::random<Index>(50,75); 51 const Index cols = internal::random<Index>(5 [all...] |
H A D | corners.cpp | 18 typedef typename MatrixType::Index Index; typedef 19 Index rows = m.rows(); 20 Index cols = m.cols(); 22 Index r = internal::random<Index>(1,rows); 23 Index c = internal::random<Index>(1,cols); 33 Index sr = internal::random<Index>( [all...] |
H A D | diagonal.cpp | 14 typedef typename MatrixType::Index Index; typedef 17 Index rows = m.rows(); 18 Index cols = m.cols(); 72 Index rows = m.rows(); 73 Index cols = m.cols();
|
H A D | dontalign.cpp | 22 typedef typename MatrixType::Index Index; typedef 27 Index rows = m.rows(); 28 Index cols = m.cols();
|
H A D | eigen2support.cpp | 16 typedef typename MatrixType::Index Index; typedef 19 Index rows = m.rows(); 20 Index cols = m.cols();
|
H A D | inverse.cpp | 17 typedef typename MatrixType::Index Index; typedef 21 Index rows = m.rows(); 22 Index cols = m.cols();
|
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
H A D | r1mpyq.h | 10 typedef DenseIndex Index; typedef 13 for (Index j = n-2; j>=0; --j) 14 for (Index i = 0; i<m; ++i) { 20 for (Index j = 0; j<n-1; ++j) 21 for (Index i = 0; i<m; ++i) {
|
/external/llvm/include/llvm/Object/ |
H A D | ModuleSummaryIndexObjectFile.h | 32 std::unique_ptr<ModuleSummaryIndex> Index; member in class:llvm::object::ModuleSummaryIndexObjectFile 65 ModuleSummaryIndex &getIndex() { return *Index; }
|
/external/llvm/include/llvm/Transforms/IPO/ |
H A D | FunctionImport.h | 47 const ModuleSummaryIndex &Index, 49 : Index(Index), ModuleLoader(std::move(ModuleLoader)) {} 60 const ModuleSummaryIndex &Index; member in class:llvm::FunctionImporter 66 /// Compute all the imports and exports for every module in the Index. 79 const ModuleSummaryIndex &Index, 84 /// Compute all the imports for the given module using the Index. 89 StringRef ModulePath, const ModuleSummaryIndex &Index, 46 FunctionImporter( const ModuleSummaryIndex &Index, std::function<std::unique_ptr<Module>(StringRef Identifier)> ModuleLoader) argument
|
/external/llvm/lib/IR/ |
H A D | Operator.cpp | 44 APInt Index = OpC->getValue().sextOrTrunc(Offset.getBitWidth()); local 45 Offset += Index * APInt(Offset.getBitWidth(),
|
/external/swiftshader/third_party/LLVM/lib/Target/PTX/ |
H A D | PTXParamManager.cpp | 33 unsigned Index = AllParams.size(); local 34 AllParams[Index] = Param; 35 ArgumentParams.push_back(Index); 37 return Index; 50 unsigned Index = AllParams.size(); local 51 AllParams[Index] = Param; 52 ReturnParams.push_back(Index); 54 return Index; 67 unsigned Index = AllParams.size(); local 68 AllParams[Index] [all...] |
H A D | PTXRegisterInfo.cpp | 37 unsigned Index; local 47 Index = 0; 48 while (!MI.getOperand(Index).isFI()) { 49 ++Index; 50 assert(Index < MI.getNumOperands() && 54 int FrameIndex = MI.getOperand(Index).getIndex(); 71 //MI.getOperand(Index).ChangeToRegister(Reg, false); 72 MI.getOperand(Index).ChangeToImmediate(FrameIndex); 73 //MI.getOperand(Index) = ESOp;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
H A D | IIntStream.cs | 64 /// <see cref="IIntStream.Index"/>, or some other marker.</returns> 72 int Index { get; } property in interface:Antlr.Runtime.IIntStream 76 /// <see cref="IIntStream.Index"/> would return marker. 79 /// The marker will usually be <see cref="IIntStream.Index"/> but
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
H A D | IIntStream.cs | 56 * current input position, Index, or some other marker so that 71 int Index property in interface:Antlr.Runtime.IIntStream 78 * The marker will usually be Index but it doesn't have to be. It's
|