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

123

/freebsd-11.0-release/usr.bin/m4/
H A Dlook.c73 void *storage = xcalloc(n, s, "hash alloc"); local
74 return storage;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserGo.cpp314 clang::StorageClass storage = clang::SC_None; //, Extern, Static, PrivateExtern local
335 if (storage == clang::SC_None)
336 storage = clang::SC_Extern;
338 storage = clang::SC_PrivateExtern;
H A DDWARFDIE.h169 GetQualifiedName (std::string &storage) const;
H A DDWARFDIE.cpp230 DWARFDIE::GetQualifiedName (std::string &storage) const
233 return m_die->GetQualifiedName (GetDWARF(), m_cu, storage);
H A DDWARFDebugInfoEntry.h203 std::string &storage) const;
209 std::string &storage) const;
H A DDWARFASTParserClang.cpp1054 clang::StorageClass storage = clang::SC_None;//, Extern, Static, PrivateExtern local
1090 if (storage == clang::SC_None)
1091 storage = clang::SC_Extern;
1093 storage = clang::SC_PrivateExtern;
1490 storage,
1960 // Disable external storage for this type so we don't get anymore
3194 clang::StorageClass storage = clang::SC_None; local
3304 storage);
/freebsd-11.0-release/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...]
H A Dnm.c1022 long storage = bfd_get_dynamic_symtab_upper_bound (abfd);
1027 if (storage > 0)
1029 dyn_syms = xmalloc (storage);
1056 It's OK to do this in place; we'll free the storage anyway
1015 long storage = bfd_get_dynamic_symtab_upper_bound (abfd); local
/freebsd-11.0-release/usr.bin/rpcgen/
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.0-release/contrib/binutils/bfd/
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
H A Dsunos.c316 sunos_canonicalize_dynamic_symtab (bfd *abfd, asymbol **storage) argument
395 *storage++ = (asymbol *) (info->canonical_dynsym + i);
396 *storage = NULL;
424 sunos_canonicalize_dynamic_reloc (bfd *abfd, arelent **storage, asymbol **syms) argument
502 *storage++ = info->canonical_dynrel + i;
503 *storage = NULL;
2035 table and the dynamic relocs, allocate storage for them. */
H A Delf64-mips.c2370 mips_elf64_canonicalize_dynamic_reloc (bfd *abfd, arelent **storage,
2399 *storage++ = p++;
2404 *storage = NULL;
2365 mips_elf64_canonicalize_dynamic_reloc(bfd *abfd, arelent **storage, asymbol **syms) argument
/freebsd-11.0-release/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.0-release/share/examples/drivers/
H A Dmake_pseudo_driver.sh351 * Allocate storage for this instance .
/freebsd-11.0-release/contrib/unbound/libunbound/
H A Dlibunbound.c858 struct sockaddr_storage storage; local
883 if(!extstrtoaddr(addr, &storage, &stlen)) {
949 struct sockaddr_storage storage; local
951 if(!extstrtoaddr(addr, &storage, &stlen)) {
/freebsd-11.0-release/contrib/llvm/include/llvm/ADT/
H A DDenseMap.h713 AlignedCharArrayUnion<BucketT[InlineBuckets], LargeRep> storage; member in class:llvm::SmallDenseMap
751 // the tricky bits of DenseMap's storage system: the buckets are not
855 // First move the inline buckets into a temporary storage.
861 // temporary storage. Have the loop move the TmpEnd forward as it goes.
940 // 'storage.buffer' static type is 'char *'.
941 return reinterpret_cast<const BucketT *>(storage.buffer);
950 return reinterpret_cast<const LargeRep *>(storage.buffer);
/freebsd-11.0-release/contrib/gdb/gdb/
H A Dhpread.c2143 enum address_class storage;
2158 /* What kind of "storage" does this use? */
2160 storage = LOC_STATIC;
2163 storage = LOC_REGISTER;
2165 storage = LOC_LOCAL;
2167 storage = LOC_UNDEF;
2183 if (storage == LOC_STATIC)
2194 domain, storage,
2202 domain, storage,
2232 VAR_DOMAIN, storage,
2133 enum address_class storage; local
[all...]
/freebsd-11.0-release/contrib/libgnuregex/
H A Dregcomp.c979 bin_tree_storage_t *storage, *next;
980 for (storage = dfa->str_tree_storage; storage; storage = next)
982 next = storage->next;
983 re_free (storage);
1597 Return the index of the new node, or -1 if insufficient storage is
3754 bin_tree_storage_t *storage = re_malloc (bin_tree_storage_t, 1);
3756 if (storage == NULL)
3758 storage
974 bin_tree_storage_t *storage, *next; local
3743 bin_tree_storage_t *storage = re_malloc (bin_tree_storage_t, 1); local
[all...]
/freebsd-11.0-release/crypto/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c215 unsigned char storage[sizeof(SHA1_MB_CTX) + 32]; local
234 ctx = (SHA1_MB_CTX *) (storage + 32 - ((size_t)storage % 32)); /* align */
H A De_aes_cbc_hmac_sha256.c211 unsigned char storage[sizeof(SHA256_MB_CTX) + 32]; local
231 ctx = (SHA256_MB_CTX *) (storage + 32 - ((size_t)storage % 32));
/freebsd-11.0-release/sys/dev/usb/storage/
H A Durio.c32 __FBSDID("$FreeBSD: releng/11.0/sys/dev/usb/storage/urio.c 292080 2015-12-11 05:28:00Z imp $");
78 #include <dev/usb/storage/rio500_usb.h>
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangASTContext.h433 int storage,
462 int storage);

Completed in 208 milliseconds

123