Searched defs:Index (Results 1 - 25 of 677) 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()
/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/tensorflow/tensorflow/core/kernels/
H A Dscan_ops_gpu.cu.cc28 typedef Eigen::Index Index; typedef in namespace:tensorflow
H A Dreduction_ops_gpu_bool.cu.cc27 // Derive Index type. int (32-bit) or long (64-bit) depending on the
30 typedef TTypes<float>::Tensor::Index Index; typedef in namespace:tensorflow::functor
40 const Eigen::array<Index, NUM_AXES>& reduction_axes, \
H A Dreduction_ops_gpu_complex128.cu.cc27 // Derive Index type. int (32-bit) or long (64-bit) depending on the
30 typedef TTypes<float>::Tensor::Index Index; typedef in namespace:tensorflow::functor
40 const Eigen::array<Index, NUM_AXES>& reduction_axes, \
H A Dreduction_ops_gpu_complex64.cu.cc27 // Derive Index type. int (32-bit) or long (64-bit) depending on the
30 typedef TTypes<float>::Tensor::Index Index; typedef in namespace:tensorflow::functor
40 const Eigen::array<Index, NUM_AXES>& reduction_axes, \
H A Dreduction_ops_gpu_double.cu.cc27 // Derive Index type. int (32-bit) or long (64-bit) depending on the
30 typedef TTypes<float>::Tensor::Index Index; typedef in namespace:tensorflow::functor
40 const Eigen::array<Index, NUM_AXES>& reduction_axes, \
H A Dreduction_ops_gpu_float.cu.cc27 // Derive Index type. int (32-bit) or long (64-bit) depending on the
30 typedef TTypes<float>::Tensor::Index Index; typedef in namespace:tensorflow::functor
40 const Eigen::array<Index, NUM_AXES>& reduction_axes, \
H A Dreduction_ops_gpu_int.cu.cc27 // Derive Index type. int (32-bit) or long (64-bit) depending on the
30 typedef TTypes<float>::Tensor::Index Index; typedef in namespace:tensorflow::functor
40 const Eigen::array<Index, NUM_AXES>& reduction_axes, \
H A Dreduction_ops_half_mean_sum.cu.cc27 // Derive Index type. int (32-bit) or long (64-bit) depending on the
30 typedef TTypes<float>::Tensor::Index Index; typedef in namespace:tensorflow::functor
40 const Eigen::array<Index, NUM_AXES>& reduction_axes, \
/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...]
/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/libcxx/test/libcxx/containers/sequences/array/array.zero/
H A Ddb_indexing.pass.cpp24 inline bool CheckDebugThrows(Array& Arr, size_t Index) { argument
26 Arr[Index];
/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;

Completed in 543 milliseconds

1234567891011>>