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

1234

/freebsd-11-stable/contrib/expat/tests/
H A Dchardata.c54 CharData_Init(CharData *storage) { argument
55 assert(storage != NULL);
56 storage->count = -1;
60 CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len) { argument
63 assert(storage != NULL);
65 maxchars = sizeof(storage->data) / sizeof(storage->data[0]);
66 if (storage->count < 0)
67 storage->count = 0;
70 if ((len + storage
80 CharData_CheckXMLChars(CharData *storage, const XML_Char *expected) argument
[all...]
H A Dstructdata.h56 void StructData_Init(StructData *storage);
58 void StructData_AddItem(StructData *storage, const XML_Char *s, int data0,
61 void StructData_CheckItems(StructData *storage, const StructDataEntry *expected,
64 void StructData_Dispose(StructData *storage);
H A Dstructdata.c69 StructData_Init(StructData *storage) { argument
70 assert(storage != NULL);
71 storage->count = 0;
72 storage->max_count = 0;
73 storage->entries = NULL;
77 StructData_AddItem(StructData *storage, const XML_Char *s, int data0, int data1, argument
81 assert(storage != NULL);
83 if (storage->count == storage->max_count) {
86 storage
105 StructData_CheckItems(StructData *storage, const StructDataEntry *expected, int count) argument
145 StructData_Dispose(StructData *storage) argument
[all...]
H A Dchardata.h50 void CharData_Init(CharData *storage);
52 void CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len);
54 int CharData_CheckXMLChars(CharData *storage, const XML_Char *s);
H A Druntests.c579 CharData *storage = (CharData *)userData; local
585 while (storage->count < 0 && atts[0] != NULL) {
587 CharData_AppendXMLChars(storage, atts[1], -1);
595 CharData storage; local
597 CharData_Init(&storage);
598 XML_SetUserData(g_parser, &storage);
603 CharData_CheckXMLChars(&storage, expected);
612 CharData storage; local
614 CharData_Init(&storage);
615 XML_SetUserData(g_parser, &storage);
629 CharData *storage; member in struct:ExtTest
641 CharData *const storage = (CharData *)malloc(sizeof(CharData)); local
845 CharData storage; local
1091 StructData *storage = (StructData *)userData; local
1099 StructData *storage = (StructData *)userData; local
1121 StructData storage; local
1266 CharData *storage = (CharData *)userData; local
1274 CharData storage; local
2101 CharData storage; local
2143 CharData storage; local
2170 CharData storage; local
2240 CharData storage; local
2284 CharData storage; local
2576 CharData storage; local
2988 CharData storage; local
3502 CharData storage; local
3950 CharData storage; local
4072 CharData storage; local
4125 CharData storage; local
4178 CharData storage; local
4514 CharData storage; local
4874 CharData storage; local
4928 CharData storage; local
5184 CharData storage; local
5200 CharData storage; local
5216 CharData *storage = (CharData *)userData; local
5227 CharData storage; local
5242 CharData storage; local
5257 CharData storage; local
5283 CharData storage; local
5309 CharData storage; local
5324 CharData *storage = (CharData *)userData; local
5336 CharData storage; local
5355 CharData storage; local
5508 CharData storage; local
5530 CharData storage; local
5631 CharData *storage; member in struct:ExtTest2
5692 CharData storage; local
5723 CharData storage; local
5758 CharData storage; local
5789 CharData storage; local
5819 CharData storage; local
5849 CharData storage; local
5936 CharData storage; local
5979 CharData *storage = (CharData *)userData; local
5988 CharData storage; local
6009 CharData storage; local
6029 CharData storage; local
6054 CharData *storage = (CharData *)userData; local
6090 CharData storage; local
6226 CharData storage; local
6248 CharData storage; local
6277 CharData storage; local
6309 CharData storage; local
6548 CharData *storage = (CharData *)userData; local
6561 CharData *storage = (CharData *)userData; local
6569 CharData storage; local
7092 CharData storage; local
7115 CharData storage; local
7145 CharData storage; local
7400 CharData storage; local
8139 CharData storage; local
8972 CharData storage; local
9012 CharData storage; local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_thread_list.cpp9 void InitThreadList(uptr storage, uptr size) { argument
12 new (thread_list_placeholder) HwasanThreadList(storage, size);
H A Dhwasan_thread_list.h110 HwasanThreadList(uptr storage, uptr size) argument
111 : free_space_(storage), free_space_end_(storage + size) {
112 // [storage, storage + size) is used as a vector of
212 void InitThreadList(uptr storage, uptr size);
/freebsd-11-stable/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_util.c53 queue->storage = kzalloc(size * sizeof(VCHIQ_HEADER_T *), GFP_KERNEL);
54 if (queue->storage == NULL) {
63 if (queue->storage != NULL)
64 kfree(queue->storage);
89 * Write to queue->storage must be visible after read from
94 queue->storage[queue->write & (queue->size - 1)] = header;
97 * Write to queue->storage must be visible before write to
118 * Read from queue->storage must be visible after read from
123 return queue->storage[queue->read & (queue->size - 1)];
137 * Read from queue->storage mus
[all...]
H A Dvchiq_util.h52 VCHIQ_HEADER_T **storage; member in struct:__anon8894
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DIRSymtab.cpp84 std::vector<storage::Comdat> Comdats;
85 std::vector<storage::Module> Mods;
86 std::vector<storage::Symbol> Syms;
87 std::vector<storage::Uncommon> Uncommons;
92 std::vector<storage::Str> DependentLibraries;
94 void setStr(storage::Str &S, StringRef Value) {
100 void writeRange(storage::Range<T> &R, const std::vector<T> &Objs) {
128 storage::Module Mod;
152 storage::Str Specifier;
187 storage
[all...]
/freebsd-11-stable/crypto/openssl/crypto/
H A Dex_data.c424 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
433 storage = OPENSSL_malloc(mx * sizeof(CRYPTO_EX_DATA_FUNCS *));
434 if (!storage)
437 storage[i] = sk_CRYPTO_EX_DATA_FUNCS_value(item->meth, i);
441 if ((mx > 0) && !storage) {
446 if (storage[i] && storage[i]->new_func) {
448 storage[i]->new_func(obj, ptr, ad, i,
449 storage[i]->argl, storage[
463 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
516 CRYPTO_EX_DATA_FUNCS **storage = NULL; local
[all...]
/freebsd-11-stable/sys/modules/usb/cfumass/
H A DMakefile3 .PATH: ${SRCTOP}/sys/dev/usb/storage
/freebsd-11-stable/sys/modules/usb/usfs/
H A DMakefile30 .PATH: $S/dev/usb/storage
/freebsd-11-stable/sys/modules/usb/urio/
H A DMakefile30 .PATH: $S/dev/usb/storage
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h44 namespace storage { namespace in namespace:llvm::irsymtab
156 } // end namespace storage
163 /// This represents a symbol that has been read from a storage::Symbol and
164 /// possibly a storage::Uncommon.
166 // Copied from storage::Symbol.
171 // Copied from storage::Uncommon.
187 using S = storage::Symbol;
234 ArrayRef<storage::Module> Modules;
235 ArrayRef<storage::Comdat> Comdats;
236 ArrayRef<storage
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_ring_buffer.h79 // A ring buffer with externally provided storage that encodes its state in 8
80 // bytes. Has significant constraints on size and alignment of storage.
93 void Init(void *storage, uptr size) { argument
100 CHECK_EQ((uptr)storage % (size * 2), 0);
101 long_ = (uptr)storage | ((size >> kPageSizeBits) << kSizeShift);
109 CompactRingBuffer(void *storage, uptr size) { argument
110 Init(storage, size);
114 CompactRingBuffer(const CompactRingBuffer &other, void *storage) { argument
116 internal_memcpy(storage, other.StartOfStorage(), size);
117 Init(storage, siz
[all...]
/freebsd-11-stable/sys/modules/usb/umass/
H A DMakefile30 .PATH: $S/dev/usb/storage
/freebsd-11-stable/stand/uboot/lib/
H A Dapi_public.h148 } storage; member in union:device_info::__anon5090
154 #define di_stor info.storage
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Drsaz_exp.c87 unsigned char storage[320 * 3 + 32 * 9 * 16 + 64]; /* 5.5KB */ local
88 unsigned char *p_str = storage + (64 - ((size_t)storage % 64));
265 OPENSSL_cleanse(storage, sizeof(storage));
287 unsigned char storage[16 * 8 * 8 + 64 * 2 + 64]; /* 1.2KB */ local
288 unsigned char *table = storage + (64 - ((size_t)storage % 64));
337 OPENSSL_cleanse(storage, sizeof(storage));
[all...]
H A Dbn_mod.c166 BN_ULONG storage[1024 / BN_BITS2]; local
167 BN_ULONG carry, temp, mask, *rp, *tp = storage;
173 if (mtop > sizeof(storage) / sizeof(storage[0])
203 if (tp != storage)
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dtrace.c100 long storage, symcount; local
111 storage = bfd_get_symtab_upper_bound(abfd);
112 if (storage == 0) {
113 storage = bfd_get_dynamic_symtab_upper_bound(abfd);
116 if (storage < 0) {
121 syms = malloc(storage);
124 "(%ld bytes)", storage);
/freebsd-11-stable/contrib/unbound/
H A DMakefile.in126 util/rtt.c util/edns.c util/storage/dnstree.c util/storage/lookup3.c \
127 util/storage/lruhash.c util/storage/slabhash.c util/tcp_conn_limit.c \
446 $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
683 $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
685 $(srcdir)/util/data/msgreply.h $(srcdir)/services/cache/rrset.h $(srcdir)/util/storage/slabhash.h \
690 $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/storage/dnstree.h \
693 $(srcdir)/util/storage/slabhas
[all...]
/freebsd-11-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-11-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-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.h31 const char *GetQualifiedName(std::string &storage) const;

Completed in 227 milliseconds

1234