Home
last modified time | relevance | path

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

1234

/freebsd/usr.sbin/setfmac/
H A Dsetfmac.c85 struct label_specs *specs; in main() local
95 specs = new_specs(); in main()
106 add_specs(specs, optarg, 0); in main()
115 add_specs(specs, optarg, 1); in main()
133 add_setfmac_specs(specs, *argv); in main()
137 if (argc == 0 || specs_empty(specs)) in main()
493 struct label_specs *specs; in new_specs() local
495 specs = malloc(sizeof(*specs)); in new_specs()
496 if (specs == NULL) in new_specs()
498 STAILQ_INIT(&specs->head); in new_specs()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DMSVCUndecoratedNameParser.cpp89 llvm::ArrayRef<MSVCUndecoratedNameSpecifier> specs = parser.GetSpecifiers(); in ExtractContextAndIdentifier() local
91 std::size_t count = specs.size(); in ExtractContextAndIdentifier()
92 identifier = count > 0 ? specs[count - 1].GetBaseName() : ""; in ExtractContextAndIdentifier()
93 context = count > 1 ? specs[count - 2].GetFullName() : ""; in ExtractContextAndIdentifier()
100 llvm::ArrayRef<MSVCUndecoratedNameSpecifier> specs = parser.GetSpecifiers(); in DropScope() local
101 if (specs.empty()) in DropScope()
104 return specs[specs.size() - 1].GetBaseName(); in DropScope()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp114 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() argument
115 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
140 specs.Append(module_spec); in GetModuleSpecifications()
144 specs.Append(module_spec); in GetModuleSpecifications()
148 specs.Append(module_spec); in GetModuleSpecifications()
152 specs.Append(module_spec); in GetModuleSpecifications()
158 return specs.GetSize() - initial_count; in GetModuleSpecifications()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBModuleSpec.cpp199 SBModuleSpecList specs; in GetModuleSpecifications() local
203 ObjectFile::GetModuleSpecifications(file_spec, 0, 0, *specs.m_opaque_up); in GetModuleSpecifications()
204 return specs; in GetModuleSpecifications()
247 SBModuleSpecList specs; in FindMatchingSpecs() local
249 *specs.m_opaque_up); in FindMatchingSpecs()
250 return specs; in FindMatchingSpecs()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/
H A DLoongArch.def108 // v2.10 LoongArch ABI specs.
110 // Spec addition: https://github.com/loongson/la-abi-specs/pull/1
125 // v2.20 LoongArch ABI specs.
127 // Spec addition: https://github.com/loongson/la-abi-specs/pull/4
131 // v2.30 LoongArch ABI specs.
133 // Spec addition: https://github.com/loongson/la-abi-specs/pull/5
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp196 lldb_private::ModuleSpecList specs; in LocateExecutableSymbolFile() local
198 ObjectFile::GetModuleSpecifications(file_spec, 0, 0, specs); in LocateExecutableSymbolFile()
204 if (specs.GetModuleSpecAtIndex(0, mspec) && in LocateExecutableSymbolFile()
205 specs.GetModuleSpecAtIndex(1, mspec2) && in LocateExecutableSymbolFile()
215 if (specs.GetModuleSpecAtIndex(0, mspec)) { in LocateExecutableSymbolFile()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp434 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
445 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
472 specs)) { in GetModuleSpecifications()
474 specs.GetModuleSpecRefAtIndex(specs.GetSize() - 1); in GetModuleSpecifications()
489 specs)) { in GetModuleSpecifications()
491 specs.GetModuleSpecRefAtIndex(specs.GetSize() - 1); in GetModuleSpecifications()
503 const size_t end_count = specs.GetSize(); in GetModuleSpecifications()
510 if (specs.GetModuleSpecAtIndex(i, module_spec)) { in GetModuleSpecifications()
/freebsd/lib/libc/stdio/
H A Dxprintf.c654 register_printf_render_std(const char *specs) in register_printf_render_std() argument
657 for (; *specs != '\0'; specs++) { in register_printf_render_std()
658 switch (*specs) { in register_printf_render_std()
660 register_printf_render(*specs, in register_printf_render_std()
665 register_printf_render(*specs, in register_printf_render_std()
670 register_printf_render(*specs, in register_printf_render_std()
675 register_printf_render(*specs, in register_printf_render_std()
680 register_printf_render(*specs, in register_printf_render_std()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/
H A DObjectContainerMachOFileset.cpp223 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() argument
224 const size_t initial_count = specs.GetSize(); in GetModuleSpecifications()
235 file, entry_offset, file_size - entry_offset, specs)) { in GetModuleSpecifications()
236 ModuleSpec &spec = specs.GetModuleSpecRefAtIndex(specs.GetSize() - 1); in GetModuleSpecifications()
242 return specs.GetSize() - initial_count; in GetModuleSpecifications()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp109 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() argument
128 specs.Append(ModuleSpec(file, ArchSpec("i686-unknown-windows-msvc"))); in GetModuleSpecifications()
131 specs.Append(ModuleSpec(file, ArchSpec("x86_64-unknown-windows-msvc"))); in GetModuleSpecifications()
134 specs.Append(ModuleSpec(file, ArchSpec("armv7-unknown-windows-msvc"))); in GetModuleSpecifications()
137 specs.Append(ModuleSpec(file, ArchSpec("aarch64-unknown-windows-msvc"))); in GetModuleSpecifications()
H A DObjectFileCOFF.h59 lldb_private::ModuleSpecList &specs);
76 uint32_t GetDependentModules(lldb_private::FileSpecList &specs) override { in GetDependentModules() argument
/freebsd/contrib/llvm-project/lldb/source/Symbol/
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()
/freebsd/contrib/llvm-project/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);
/freebsd/crypto/openssl/doc/
H A Dbuild.info.in39 # The build.info format requires file specs to be in Unix format.
40 # Especially, since VMS file specs use [ and ], the build.info parser
/freebsd/contrib/file/magic/Magdir/
H A Debml5 # https://www.matroska.org/technical/specs/index.html#track
H A Dpwsafe8 # file format specs
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.cpp95 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() argument
102 specs.Append(spec); in GetModuleSpecifications()
/freebsd/sys/contrib/device-tree/Bindings/mmc/
H A Dmmci.txt13 as the VCC/VDD supply in the eMMC/SD specs.
21 as the VCCQ/VDD_IO supply in the eMMC/SD specs.
H A Dsdhci-fujitsu.txt17 as the VCCQ/VDD_IO supply in the eMMC/SD specs.
/freebsd/sys/contrib/device-tree/Bindings/w1/
H A Dw1-gpio.txt6 - gpios: one or two GPIO specs:
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
H A DObjectFileJSON.cpp106 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() argument
144 specs.Append(spec); in GetModuleSpecifications()
/freebsd/include/
H A Dprintf.h126 int register_printf_render_std(const char *specs);
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h172 lldb::offset_t file_size, ModuleSpecList &specs,
180 lldb_private::ModuleSpecList &specs);
/freebsd/sys/contrib/device-tree/Bindings/arm/
H A Dfw-cfg.txt15 device can be found in "docs/specs/fw_cfg.txt" in the QEMU source tree.

1234