Home
last modified time | relevance | path

Searched refs:specs (Results 1 – 25 of 60) sorted by relevance

123

/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DMSVCUndecoratedNameParser.cpp82 llvm::ArrayRef<MSVCUndecoratedNameSpecifier> specs = parser.GetSpecifiers(); in ExtractContextAndIdentifier() local
84 std::size_t count = specs.size(); in ExtractContextAndIdentifier()
85 identifier = count > 0 ? specs[count - 1].GetBaseName() : ""; in ExtractContextAndIdentifier()
86 context = count > 1 ? specs[count - 2].GetFullName() : ""; in ExtractContextAndIdentifier()
93 llvm::ArrayRef<MSVCUndecoratedNameSpecifier> specs = parser.GetSpecifiers(); in DropScope() local
94 if (specs.empty()) in DropScope()
97 return specs[specs.size() - 1].GetBaseName(); in DropScope()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp109 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() argument
110 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
135 specs.Append(module_spec); in GetModuleSpecifications()
139 specs.Append(module_spec); in GetModuleSpecifications()
143 specs.Append(module_spec); in GetModuleSpecifications()
147 specs.Append(module_spec); in GetModuleSpecifications()
153 return specs.GetSize() - initial_count; in GetModuleSpecifications()
H A DObjectFilePDB.h48 ModuleSpecList &specs);
/llvm-project-15.0.7/lldb/source/API/
H A DSBModuleSpec.cpp170 SBModuleSpecList specs; in GetModuleSpecifications() local
174 ObjectFile::GetModuleSpecifications(file_spec, 0, 0, *specs.m_opaque_up); in GetModuleSpecifications()
175 return specs; in GetModuleSpecifications()
218 SBModuleSpecList specs; in FindMatchingSpecs() local
220 *specs.m_opaque_up); in FindMatchingSpecs()
221 return specs; in FindMatchingSpecs()
/llvm-project-15.0.7/mlir/lib/Interfaces/
H A DDataLayoutInterfaces.cpp267 specs.push_back(op.getDataLayoutSpec()); in collectParentLayouts()
272 specs.push_back(op.getDataLayoutSpec()); in collectParentLayouts()
289 SmallVector<DataLayoutSpecInterface> specs; in getCombinedDataLayout() local
290 collectParentLayouts(leaf, specs); in getCombinedDataLayout()
293 if (specs.empty()) in getCombinedDataLayout()
299 llvm::reverse(specs), in getCombinedDataLayout()
323 SmallVector<DataLayoutSpecInterface> specs; in verifyDataLayoutOp() local
325 collectParentLayouts(op, specs, &opLocations); in verifyDataLayoutOp()
379 SmallVector<DataLayoutSpecInterface> specs; in checkValid() local
380 collectParentLayouts(scope, specs); in checkValid()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp587 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
598 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
625 specs)) { in GetModuleSpecifications()
627 specs.GetModuleSpecRefAtIndex(specs.GetSize() - 1); in GetModuleSpecifications()
642 specs)) { in GetModuleSpecifications()
644 specs.GetModuleSpecRefAtIndex(specs.GetSize() - 1); in GetModuleSpecifications()
656 const size_t end_count = specs.GetSize(); in GetModuleSpecifications()
663 if (specs.GetModuleSpecAtIndex(i, module_spec)) { in GetModuleSpecifications()
/llvm-project-15.0.7/clang/docs/
H A DSYCLSupport.rst23 `memory model <https://www.khronos.org/registry/SYCL/specs/sycl-2020/html/sycl-2020.html#_sycl_devi…
24 section 4.7.7 - `address space classes <https://www.khronos.org/registry/SYCL/specs/sycl-2020/html/…
25 and section 5.9 covers `address space deduction <https://www.khronos.org/registry/SYCL/specs/sycl-2…
33 `OpenCL C v3.0 6.7.8 <https://www.khronos.org/registry/OpenCL/specs/3.0-unified/html/OpenCL_C.html#…
59 `common address space deduction rules <https://www.khronos.org/registry/SYCL/specs/sycl-2020/html/s…
H A DOpenCLSupport.rst59 <https://www.khronos.org/registry/OpenCL/specs/opencl-1.2.pdf#167>`_
69 <https://www.khronos.org/registry/spir/specs/spir_spec-2.0.pdf#18>`_
167 <https://www.khronos.org/registry/cl/specs/opencl-2.0-openclc.pdf#160>`_ of
172 <https://www.khronos.org/registry/cl/specs/opencl-2.0-openclc.pdf#101>`_.
175 <https://www.khronos.org/registry/cl/specs/opencl-2.0-openclc.pdf#164>`_ and
177 <https://www.khronos.org/registry/cl/specs/opencl-2.0-openclc.pdf#171>`_.
347 (list of feature-test macros is `here <https://www.khronos.org/registry/OpenCL/specs/3.0-unified/ht…
/llvm-project-15.0.7/lldb/source/Symbol/
H A DLocateSymbolFile.cpp362 lldb_private::ModuleSpecList specs; in LocateExecutableSymbolFile() local
364 ObjectFile::GetModuleSpecifications(file_spec, 0, 0, specs); in LocateExecutableSymbolFile()
370 if (specs.GetModuleSpecAtIndex(0, mspec) && in LocateExecutableSymbolFile()
371 specs.GetModuleSpecAtIndex(1, mspec2) && in LocateExecutableSymbolFile()
381 if (specs.GetModuleSpecAtIndex(0, mspec)) { in LocateExecutableSymbolFile()
H A DObjectFile.cpp190 ModuleSpecList &specs, in GetModuleSpecifications() argument
207 specs); in GetModuleSpecifications()
215 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
216 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
225 if (callback(file, data_sp, data_offset, file_offset, file_size, specs) > 0) in GetModuleSpecifications()
226 return specs.GetSize() - initial_count; in GetModuleSpecifications()
235 if (callback(file, data_sp, data_offset, file_offset, file_size, specs) > 0) in GetModuleSpecifications()
236 return specs.GetSize() - initial_count; in GetModuleSpecifications()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/
H A DObjectContainerUniversalMachO.cpp202 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
203 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
216 file, slice_file_offset, file_size - slice_file_offset, specs); in GetModuleSpecifications()
221 return specs.GetSize() - initial_count; in GetModuleSpecifications()
H A DObjectContainerUniversalMachO.h47 lldb_private::ModuleSpecList &specs);
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Minidump/
H A DObjectFileMinidump.cpp51 lldb::offset_t length, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
52 specs.Clear(); in GetModuleSpecifications()
H A DObjectFileMinidump.h54 lldb_private::ModuleSpecList &specs);
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVAttributes.td47 // https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VkCooperativeMatrixPropert…
70 // See https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#limits
74 // https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#limits-minmax
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.cpp94 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() argument
101 specs.Append(spec); in GetModuleSpecifications()
H A DObjectFileBreakpad.h44 ModuleSpecList &specs);
/llvm-project-15.0.7/clang/utils/
H A DFindSpecRefs830 specs = {}
832 spec = specs[ref.name] = specs.get(ref.name,{})
/llvm-project-15.0.7/mlir/lib/Dialect/DLTI/
H A DDLTI.cpp246 DataLayoutSpecAttr::combineWith(ArrayRef<DataLayoutSpecInterface> specs) const { in combineWith()
249 if (llvm::any_of(specs, [](DataLayoutSpecInterface spec) { in combineWith()
257 for (DataLayoutSpecInterface spec : specs) in combineWith()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/DLTI/
H A DDLTI.h96 DataLayoutSpecAttr combineWith(ArrayRef<DataLayoutSpecInterface> specs) const;
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/misc/
H A Dno-recursion.rst15 …s: i. Recursion is not supported. <https://www.khronos.org/registry/OpenCL/specs/opencl-1.2.pdf>`_.
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DObjectFile.h190 lldb::offset_t file_size, ModuleSpecList &specs,
198 lldb_private::ModuleSpecList &specs);
/llvm-project-15.0.7/lldb/test/Shell/ObjectFile/PECOFF/
H A Ddwarf-gnu-debuglink-i686.yaml7 # returning two different module specs for MachineX86 -- "i386-pc-windows" and
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.h49 lldb_private::ModuleSpecList &specs);
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp254 lldb::offset_t length, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
255 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
334 specs.Append(module_spec); in GetModuleSpecifications()
339 specs.Append(module_spec); in GetModuleSpecifications()
344 specs.Append(module_spec); in GetModuleSpecifications()
349 specs.Append(module_spec); in GetModuleSpecifications()
355 return specs.GetSize() - initial_count; in GetModuleSpecifications()

123