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

12

/freebsd-9.3-release/contrib/expat/tests/
H A Dchardata.c35 CharData_Init(CharData *storage) argument
37 assert(storage != NULL);
38 storage->count = -1;
42 CharData_AppendString(CharData *storage, const char *s) argument
44 int maxchars = sizeof(storage->data) / sizeof(storage->data[0]);
49 if (storage->count < 0)
50 storage->count = 0;
51 if ((len + storage->count) > maxchars) {
52 len = (maxchars - storage
61 CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len) argument
83 CharData_CheckString(CharData *storage, const char *expected) argument
112 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.c216 CharData *storage = (CharData *)userData; local
217 if (storage->count < 0 && atts != NULL && atts[0] != NULL) {
219 CharData_AppendXMLChars(storage, atts[1], -1);
228 CharData storage; local
230 CharData_Init(&storage);
231 XML_SetUserData(parser, &storage);
235 CharData_CheckXMLChars(&storage, expected);
245 CharData storage; local
247 CharData_Init(&storage);
248 XML_SetUserData(parser, &storage);
449 CharData *storage = (CharData *) userData; local
463 CharData *storage = (CharData *) userData; local
497 CharData storage; local
594 CharData *storage = (CharData *) userData; local
603 CharData storage; local
1140 CharData *storage = (CharData *) userData; local
1154 CharData *storage = (CharData *) userData; local
1163 CharData storage; local
[all...]
/freebsd-9.3-release/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-9.3-release/crypto/openssl/crypto/
H A Dex_data.c417 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
426 storage = OPENSSL_malloc(mx * sizeof(CRYPTO_EX_DATA_FUNCS *));
427 if (!storage)
430 storage[i] = sk_CRYPTO_EX_DATA_FUNCS_value(item->meth, i);
434 if ((mx > 0) && !storage) {
439 if (storage[i] && storage[i]->new_func) {
441 storage[i]->new_func(obj, ptr, ad, i,
442 storage[i]->argl, storage[
456 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
499 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
[all...]
/freebsd-9.3-release/sys/modules/usb/umass/
H A DMakefile30 .PATH: $S/dev/usb/storage
/freebsd-9.3-release/sys/modules/usb/urio/
H A DMakefile30 .PATH: $S/dev/usb/storage
/freebsd-9.3-release/sys/modules/usb/usfs/
H A DMakefile30 .PATH: $S/dev/usb/storage
/freebsd-9.3-release/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-9.3-release/sys/boot/uboot/lib/
H A Dapi_public.h147 } storage; member in union:device_info::__anon5806
153 #define di_stor info.storage
/freebsd-9.3-release/contrib/wpa/src/utils/
H A Dtrace.c82 long storage, symcount; local
93 storage = bfd_get_symtab_upper_bound(abfd);
94 if (storage == 0) {
95 storage = bfd_get_dynamic_symtab_upper_bound(abfd);
98 if (storage < 0) {
103 syms = malloc(storage);
106 "(%ld bytes)", storage);
/freebsd-9.3-release/sys/ddb/
H A Ddb_break.c170 #define BKPT_WRITE(addr, storage) \
172 *storage = db_get_value(addr, BKPT_SIZE, FALSE); \
173 db_put_value(addr, BKPT_SIZE, BKPT_SET(*storage)); \
178 #define BKPT_CLEAR(addr, storage) \
179 db_put_value(addr, BKPT_SIZE, *storage)
/freebsd-9.3-release/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-9.3-release/sys/dev/isp/
H A Disp_target.c826 uint8_t storage[QENTRY_LEN]; local
828 memset(storage, 0, QENTRY_LEN);
830 ct7_entry_t *ct = (ct7_entry_t *) storage;
837 ct2_entry_t *ct = (ct2_entry_t *) storage;
843 ct_entry_t *ct = (ct_entry_t *) storage;
851 isp_async(isp, ISPASYNC_TARGET_ACTION, storage);
1053 char storage[QENTRY_LEN]; local
1070 ISP_MEMZERO(storage, QENTRY_LEN);
1073 na_fcentry_24xx_t *na = (na_fcentry_24xx_t *) storage;
1105 na_fcentry_t *na = (na_fcentry_t *) storage;
1169 char storage[QENTRY_LEN]; local
[all...]
/freebsd-9.3-release/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-9.3-release/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-9.3-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...]
/freebsd-9.3-release/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;
/freebsd-9.3-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.c82 CTASSERT(sizeof(((struct mbuf0_chunk *)NULL)->storage) >= MBUF0_SIZE);
83 CTASSERT(sizeof(((struct mbuf1_chunk *)NULL)->storage) >= MBUF1_SIZE);
191 * Allocate a page of external mbuf storage for the small pools.
232 pg->hdr.hdroff = sizeof(c->storage);
247 pg->hdr.hdroff = sizeof(c->storage);
/freebsd-9.3-release/share/examples/drivers/
H A Dmake_pseudo_driver.sh351 * Allocate storage for this instance .

Completed in 298 milliseconds

12