Searched refs:storage (Results 1 - 25 of 62) sorted by relevance

123

/freebsd-10-stable/contrib/expat/tests/
H A Dchardata.c31 CharData_Init(CharData *storage) argument
33 assert(storage != NULL);
34 storage->count = -1;
38 CharData_AppendString(CharData *storage, const char *s) argument
40 int maxchars = sizeof(storage->data) / sizeof(storage->data[0]);
45 if (storage->count < 0)
46 storage->count = 0;
47 if ((len + storage->count) > maxchars) {
48 len = (maxchars - storage
57 CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len) argument
79 CharData_CheckString(CharData *storage, const char *expected) argument
108 CharData_CheckXMLChars(CharData *storage, const XML_Char *expected) argument
[all...]
H A Dchardata.h25 void CharData_Init(CharData *storage);
27 void CharData_AppendString(CharData *storage, const char *s);
29 void CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len);
31 int CharData_CheckString(CharData *storage, const char *s);
33 int CharData_CheckXMLChars(CharData *storage, const XML_Char *s);
H A Druntests.c242 CharData *storage = (CharData *)userData; local
243 if (storage->count < 0 && atts != NULL && atts[0] != NULL) {
245 CharData_AppendXMLChars(storage, atts[1], -1);
254 CharData storage; local
256 CharData_Init(&storage);
257 XML_SetUserData(parser, &storage);
261 CharData_CheckXMLChars(&storage, expected);
271 CharData storage; local
273 CharData_Init(&storage);
274 XML_SetUserData(parser, &storage);
537 CharData *storage = (CharData *) userData; local
551 CharData *storage = (CharData *) userData; local
585 CharData storage; local
682 CharData *storage = (CharData *) userData; local
691 CharData storage; local
1157 CharData storage; local
1182 CharData storage; local
1323 CharData *storage = (CharData *) userData; local
1337 CharData *storage = (CharData *) userData; local
1346 CharData storage; local
[all...]
/freebsd-10-stable/sys/ia64/include/
H A Ddb_machdep.h51 #define BKPT_WRITE(addr, storage) db_bkpt_write(addr, storage)
52 #define BKPT_CLEAR(addr, storage) db_bkpt_clear(addr, storage)
56 void db_bkpt_write(db_addr_t, BKPT_INST_TYPE *storage);
57 void db_bkpt_clear(db_addr_t, uint64_t *storage);
/freebsd-10-stable/crypto/openssl/crypto/
H A Dex_data.c420 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
429 storage = OPENSSL_malloc(mx * sizeof(CRYPTO_EX_DATA_FUNCS *));
430 if (!storage)
433 storage[i] = sk_CRYPTO_EX_DATA_FUNCS_value(item->meth, i);
437 if ((mx > 0) && !storage) {
442 if (storage[i] && storage[i]->new_func) {
444 storage[i]->new_func(obj, ptr, ad, i,
445 storage[i]->argl, storage[
459 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
502 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
[all...]
/freebsd-10-stable/sys/modules/usb/umass/
H A DMakefile30 .PATH: $S/dev/usb/storage
/freebsd-10-stable/sys/modules/usb/urio/
H A DMakefile30 .PATH: $S/dev/usb/storage
/freebsd-10-stable/sys/modules/usb/usfs/
H A DMakefile30 .PATH: $S/dev/usb/storage
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
H A DOptional.h32 AlignedCharArrayUnion<T> storage; member in class:llvm::Optional
38 new (storage.buffer) T(y);
42 new (storage.buffer) T(*O);
47 new (storage.buffer) T(std::forward<T>(y));
51 new (storage.buffer) T(std::move(*O));
59 new (storage.buffer) T(std::move(y));
88 new (storage.buffer) T(y);
113 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
114 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); }
/freebsd-10-stable/sys/boot/uboot/lib/
H A Dapi_public.h148 } storage; member in union:device_info::__anon6503
154 #define di_stor info.storage
/freebsd-10-stable/contrib/wpa/src/utils/
H A Dtrace.c76 long storage, symcount; local
87 storage = bfd_get_symtab_upper_bound(abfd);
88 if (storage == 0) {
89 storage = bfd_get_dynamic_symtab_upper_bound(abfd);
92 if (storage < 0) {
97 syms = malloc(storage);
100 "(%ld bytes)", storage);
/freebsd-10-stable/sys/ddb/
H A Ddb_break.c161 #define BKPT_WRITE(addr, storage) \
163 *storage = db_get_value(addr, BKPT_SIZE, FALSE); \
164 db_put_value(addr, BKPT_SIZE, BKPT_SET(*storage)); \
169 #define BKPT_CLEAR(addr, storage) \
170 db_put_value(addr, BKPT_SIZE, *storage)
/freebsd-10-stable/contrib/unbound/
H A DMakefile.in108 util/rtt.c util/storage/dnstree.c util/storage/lookup3.c \
109 util/storage/lruhash.c util/storage/slabhash.c util/timehist.c util/tube.c \
381 $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
600 $(srcdir)/validator/val_nsec.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h \
602 $(srcdir)/services/cache/rrset.h $(srcdir)/util/storage/slabhash.h $(srcdir)/util/data/dname.h \
606 $(srcdir)/services/cache/infra.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
607 $(srcdir)/util/storage/dnstree.h $(srcdir)/util/rbtree.h $(srcdir)/util/rtt.h $(srcdir)/util/storage/slabhas
[all...]
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_kevent.c84 int s[2], storage, status, kq; local
110 iov.iov_base = &storage;
125 iov.iov_base = &storage;
/freebsd-10-stable/usr.bin/m4/
H A Dlook.c70 void *storage = xalloc(s, "hash alloc"); local
71 if (storage)
72 memset(storage, 0, s);
73 return storage;
/freebsd-10-stable/release/
H A DMakefile.azure49 /usr/local/bin/azure storage blob upload \
/freebsd-10-stable/contrib/netbsd-tests/include/sys/
H A Dt_socket.c90 int rfd, fd[2], storage; local
134 iov.iov_base = &storage;
/freebsd-10-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. */
/freebsd-10-stable/sys/boot/usb/
H A DMakefile36 ${S}/dev/usb/storage \
/freebsd-10-stable/usr.bin/rpcgen/
H A Drpc_util.h205 void write_programs(const char *storage);
/freebsd-10-stable/lib/libunbound/
H A DMakefile8 .PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/compat ${UNBOUNDDIR}/dns64 ${UNBOUNDDIR}/iterator ${UNBOUNDDIR}/sldns ${UNBOUNDDIR}/libunbound ${UNBOUNDDIR}/services ${UNBOUNDDIR}/services/cache ${UNBOUNDDIR}/util ${UNBOUNDDIR}/util/data ${UNBOUNDDIR}/util/storage ${UNBOUNDDIR}/validator
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.cpp1991 std::string &storage) const
1995 return GetQualifiedName (dwarf2Data, cu, attributes, storage);
2002 std::string &storage) const
2010 storage.clear();
2022 storage.insert (0, "::");
2023 storage.insert (0, namespace_name);
2027 storage.insert (0, "(anonymous namespace)::");
2041 storage.insert (0, "::");
2042 storage.insert (0, class_union_struct_name);
2054 if (storage
[all...]
/freebsd-10-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-10-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);
/freebsd-10-stable/sys/ia64/ia64/
H A Ddb_machdep.c305 db_bkpt_clear(db_addr_t addr, BKPT_INST_TYPE *storage) argument
318 tmp |= *storage << SLOT_SHIFT(slot);
337 db_bkpt_write(db_addr_t addr, BKPT_INST_TYPE *storage) argument
349 *storage = (tmp >> SLOT_SHIFT(slot)) & SLOT_MASK;

Completed in 538 milliseconds

123