Searched defs:Index (Results 1 - 25 of 638) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp49 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 Dtest_file.py1 from clang.cindex import Index, File namespace
4 index = Index.create()
H A Dtest_tokens.py2 from clang.cindex import Index namespace
/external/swiftshader/third_party/subzero/crosstest/
H A Dinsertelement.h23 setElement(VectorType &Value, size_t Index, ElementType Element) { argument
24 Value[Index] = Element;
/external/clang/bindings/python/examples/cindex/
H A Dcindex-includes.py19 from clang.cindex import Index namespace
32 index = Index.create()
H A Dcindex-dump.py13 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 Derror.c66 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 Dsmbios.c30 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 DUndefinedArraySubscriptChecker.cpp38 const Expr *Index = A->getIdx(); local
39 if (!C.getSVal(Index).isUndef())
/external/eigen/test/
H A Ddeterminant.cpp19 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 Dsvd_fill.h26 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 Dconservative_resize.cpp20 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 Dcorners.cpp18 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 Ddiagonal.cpp14 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 Ddontalign.cpp22 typedef typename MatrixType::Index Index; typedef
27 Index rows = m.rows();
28 Index cols = m.cols();
H A Deigen2support.cpp16 typedef typename MatrixType::Index Index; typedef
19 Index rows = m.rows();
20 Index cols = m.cols();
H A Dinverse.cpp17 typedef typename MatrixType::Index Index; typedef
21 Index rows = m.rows();
22 Index cols = m.cols();
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dr1mpyq.h10 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 DModuleSummaryIndexObjectFile.h32 std::unique_ptr<ModuleSummaryIndex> Index; member in class:llvm::object::ModuleSummaryIndexObjectFile
65 ModuleSummaryIndex &getIndex() { return *Index; }
/external/llvm/include/llvm/Transforms/IPO/
H A DFunctionImport.h47 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 DOperator.cpp44 APInt Index = OpC->getValue().sextOrTrunc(Offset.getBitWidth()); local
45 Offset += Index * APInt(Offset.getBitWidth(),
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXParamManager.cpp33 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 DPTXRegisterInfo.cpp37 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 DIIntStream.cs64 /// <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 DIIntStream.cs56 * 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

Completed in 2148 milliseconds

1234567891011>>