Searched refs:storage (Results 26 - 50 of 89) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.cpp937 std::string &storage) const {
940 return GetQualifiedName(cu, attributes, storage);
946 std::string &storage) const {
952 storage.clear();
960 storage.insert(0, "::");
961 storage.insert(0, namespace_name);
963 storage.insert(0, "(anonymous namespace)::");
974 storage.insert(0, "::");
975 storage.insert(0, class_union_struct_name);
986 if (storage
[all...]
H A DDWARFDebugInfoEntry.h104 const char *GetQualifiedName(DWARFUnit *cu, std::string &storage) const;
107 std::string &storage) const;
H A DDWARFDIE.cpp178 const char *DWARFDIE::GetQualifiedName(std::string &storage) const {
180 return m_die->GetQualifiedName(m_cu, storage);
H A DDWARFASTParserClang.h236 clang::StorageClass storage = clang::SC_None; member in struct:ParsedDWARFTypeAttributes
/freebsd-11-stable/release/
H A DMakefile.azure49 /usr/local/bin/azure storage blob upload \
/freebsd-11-stable/contrib/netbsd-tests/include/sys/
H A Dt_socket.c90 int rfd, fd[2], storage; local
134 iov.iov_base = &storage;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/
H A DClangHighlighter.cpp231 StreamString storage; local
235 options.selected.Apply(storage, tok_str);
236 to_print = storage.GetString();
/freebsd-11-stable/contrib/binutils/bfd/
H A Dsyms.c64 allocating storage, and the actual reading process. This is an
91 All storage for the symbols themselves is in an objalloc
785 long storage; local
790 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
792 storage = bfd_get_symtab_upper_bound (abfd);
793 if (storage < 0)
795 if (storage == 0)
798 syms = bfd_malloc (storage);
1390 string is in our own local storage anyhow. */
H A Delf64-sparc.c240 elf64_sparc_canonicalize_dynamic_reloc (bfd *abfd, arelent **storage, argument
266 *storage++ = p++;
271 *storage = NULL;
H A Darchive.c1831 long storage;
1835 storage = bfd_get_symtab_upper_bound (current);
1836 if (storage < 0)
1839 if (storage != 0)
1841 if (storage > syms_max)
1845 syms_max = storage;
1822 long storage; local
/freebsd-11-stable/stand/usb/
H A Dusbcore.mk45 ${USBCOREDIR}/storage \
49 ${S}/dev/usb/storage \
167 # USB mass storage support
/freebsd-11-stable/usr.bin/rpcgen/
H A Drpc_util.h205 void write_programs(const char *storage);
H A Drpc_svcout.c302 write_programs(const char *storage) argument
319 write_program(def, storage);
387 write_program(definition *def, const char *storage) argument
395 if (storage != NULL) {
396 f_print(fout, "%s ", storage);
/freebsd-11-stable/stand/mips/beri/loader/
H A Dmain.c47 #include <storage/umass_common.h>
/freebsd-11-stable/usr.bin/m4/
H A Dlook.c73 void *storage = xcalloc(n, s, "hash alloc"); local
74 return storage;
/freebsd-11-stable/sys/dev/isp/
H A Disp_target.c576 uint8_t storage[QENTRY_LEN]; local
578 memset(storage, 0, QENTRY_LEN);
580 ct7_entry_t *ct = (ct7_entry_t *) storage;
587 ct2_entry_t *ct = (ct2_entry_t *) storage;
593 isp_async(isp, ISPASYNC_TARGET_ACTION, storage);
741 char storage[QENTRY_LEN]; local
751 ISP_MEMZERO(storage, QENTRY_LEN);
754 na_fcentry_24xx_t *na = (na_fcentry_24xx_t *) storage;
787 na_fcentry_t *na = (na_fcentry_t *) storage;
790 ISP_MEMCPY(storage, ar
820 char storage[QENTRY_LEN]; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp360 if (BFC.Symtab.size() >= sizeof(irsymtab::storage::Header)) {
361 auto *Hdr = reinterpret_cast<const irsymtab::storage::Header *>(
364 if (Hdr->Version == irsymtab::storage::Header::kCurrentVersion)
/freebsd-11-stable/contrib/binutils/binutils/
H A Dcoffgrok.c725 long storage; local
728 storage = bfd_get_symtab_upper_bound (abfd);
730 if (storage < 0)
733 syms = (asymbol **) xmalloc (storage);
H A Dobjdump.c416 long storage;
424 storage = bfd_get_symtab_upper_bound (abfd);
425 if (storage < 0)
427 if (storage)
428 sy = xmalloc (storage);
442 long storage;
444 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
445 if (storage < 0)
456 if (storage)
457 sy = xmalloc (storage);
412 long storage; local
438 long storage; local
[all...]
/freebsd-11-stable/lib/libunbound/
H A DMakefile9 .PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/cachedb ${UNBOUNDDIR}/dns64 ${UNBOUNDDIR}/iterator ${UNBOUNDDIR}/sldns ${UNBOUNDDIR}/libunbound ${UNBOUNDDIR}/services ${UNBOUNDDIR}/services/cache ${UNBOUNDDIR}/util ${UNBOUNDDIR}/util/data ${UNBOUNDDIR}/respip ${UNBOUNDDIR}/util/storage ${UNBOUNDDIR}/validator
/freebsd-11-stable/sys/dev/hatm/
H A Dif_hatmvar.h202 * cell. The mbuf storage is allocated pagewise and one dmamap is used per
254 char storage[MBUF_ALLOC_SIZE - sizeof(struct mbuf_page_hdr)]; member in struct:mbuf_page
298 char storage[MBUFX_STORAGE_SIZE(0)]; member in struct:mbuf0_chunk
303 char storage[MBUFX_STORAGE_SIZE(1)]; member in struct:mbuf1_chunk
424 /* list of external mbuf storage */
H A Dif_hatm_intr.c83 CTASSERT(sizeof(((struct mbuf0_chunk *)NULL)->storage) >= MBUF0_SIZE);
84 CTASSERT(sizeof(((struct mbuf1_chunk *)NULL)->storage) >= MBUF1_SIZE);
192 * Allocate a page of external mbuf storage for the small pools.
233 pg->hdr.hdroff = sizeof(c->storage);
248 pg->hdr.hdroff = sizeof(c->storage);
/freebsd-11-stable/share/examples/drivers/
H A Dmake_pseudo_driver.sh350 * Allocate storage for this instance .
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h170 llvm::SmallString<32> storage; member in class:lldb_private::python::NullTerminated
174 llvm::StringRef ref = twine.toNullTerminatedStringRef(storage);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp96 void *storage = local
98 new (&rb_) StackAllocationsRingBuffer(*rb, storage);

Completed in 588 milliseconds

1234