/openbsd/lib/libexpat/tests/ |
H A D | chardata.c | 62 assert(storage != NULL); in CharData_Init() 63 storage->count = -1; in CharData_Init() 70 assert(storage != NULL); in CharData_AppendXMLChars() 72 maxchars = sizeof(storage->data) / sizeof(storage->data[0]); in CharData_AppendXMLChars() 73 if (storage->count < 0) in CharData_AppendXMLChars() 74 storage->count = 0; in CharData_AppendXMLChars() 80 if (len + storage->count < (int)sizeof(storage->data)) { in CharData_AppendXMLChars() 81 memcpy(storage->data + storage->count, s, len * sizeof(storage->data[0])); in CharData_AppendXMLChars() 82 storage->count += len; in CharData_AppendXMLChars() 92 count = (storage->count < 0) ? 0 : storage->count; in CharData_CheckXMLChars() [all …]
|
H A D | structdata.c | 73 assert(storage != NULL); in StructData_Init() 74 storage->count = 0; in StructData_Init() 75 storage->max_count = 0; in StructData_Init() 76 storage->entries = NULL; in StructData_Init() 84 assert(storage != NULL); in StructData_AddItem() 86 if (storage->count == storage->max_count) { in StructData_AddItem() 91 storage->entries, storage->max_count * sizeof(StructDataEntry)); in StructData_AddItem() 96 entry = &storage->entries[storage->count]; in StructData_AddItem() 101 storage->count++; in StructData_AddItem() 154 free(storage->entries); in StructData_Dispose() [all …]
|
H A D | basic_tests.c | 394 CharData storage; in START_TEST() local 795 CharData storage; in START_TEST() local 4453 test_data.storage = &storage; in START_TEST() 4484 test_data.storage = &storage; in START_TEST() 4519 test_data.storage = &storage; in START_TEST() 4550 test_data.storage = &storage; in START_TEST() 4579 test_data.storage = &storage; in START_TEST() 4608 test_data.storage = &storage; in START_TEST() 4659 test_data.storage = &storage; in START_TEST() 5087 test_data.storage = &storage; in START_TEST() [all …]
|
H A D | common.c | 235 CharData *storage = (CharData *)userData; in accumulate_attribute() local 251 CharData storage; in _run_character_check() local 253 CharData_Init(&storage); in _run_character_check() 254 XML_SetUserData(g_parser, &storage); in _run_character_check() 265 CharData storage; in _run_attribute_check() local 267 CharData_Init(&storage); in _run_attribute_check() 268 XML_SetUserData(g_parser, &storage); in _run_attribute_check() 287 CharData_Init(storage); in _run_ext_character_check() 288 test_data->storage = storage; in _run_ext_character_check() 294 CharData_CheckXMLChars(storage, expected); in _run_ext_character_check() [all …]
|
H A D | ns_tests.c | 123 CharData storage; in run_ns_tagname_overwrite_test() local 124 CharData_Init(&storage); in run_ns_tagname_overwrite_test() 125 XML_SetUserData(g_parser, &storage); in run_ns_tagname_overwrite_test() 598 CharData storage; in START_TEST() local 600 CharData_Init(&storage); in START_TEST() 602 XML_SetUserData(g_parser, &storage); in START_TEST() 621 CharData storage; in START_TEST() local 623 CharData_Init(&storage); in START_TEST() 625 XML_SetUserData(g_parser, &storage); in START_TEST() 651 CharData storage; in START_TEST() local [all …]
|
H A D | handlers.c | 82 CharData *storage = (CharData *)userData; in end_element_event_handler() local 84 CharData_AppendXMLChars(storage, name, -1); in end_element_event_handler() 219 CharData *storage = (CharData *)userData; in overwrite_start_checker() local 221 CharData_AppendXMLChars(storage, name, -1); in overwrite_start_checker() 232 CharData *storage = (CharData *)userData; in overwrite_end_checker() local 234 CharData_AppendXMLChars(storage, name, -1); in overwrite_end_checker() 763 CharData storage; in external_entity_good_cdata_ascii() local 769 CharData_Init(&storage); in external_entity_good_cdata_ascii() 773 XML_SetUserData(ext_parser, &storage); in external_entity_good_cdata_ascii() 1720 if (storage->count <= index) { in _handler_record_get() [all …]
|
H A D | structdata.h | 55 void StructData_Init(StructData *storage); 57 void StructData_AddItem(StructData *storage, const XML_Char *s, int data0, 60 void StructData_CheckItems(StructData *storage, const StructDataEntry *expected, 63 void StructData_Dispose(StructData *storage);
|
H A D | chardata.h | 51 void CharData_Init(CharData *storage); 53 void CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len); 55 int CharData_CheckXMLChars(CharData *storage, const XML_Char *s);
|
H A D | misc_tests.c | 272 CharData storage; in START_TEST() local 278 CharData_Init(&storage); in START_TEST() 279 XML_SetUserData(g_parser, &storage); in START_TEST() 284 CharData_CheckXMLChars(&storage, expected); in START_TEST() 441 CharData storage; in START_TEST() local 442 CharData_Init(&storage); in START_TEST() 445 XML_SetUserData(parser, &storage); in START_TEST() 459 CharData_CheckXMLChars(&storage, in START_TEST()
|
/openbsd/gnu/llvm/llvm/lib/Object/ |
H A D | IRSymtab.cpp | 93 std::vector<storage::Comdat> Comdats; 94 std::vector<storage::Module> Mods; 95 std::vector<storage::Symbol> Syms; 96 std::vector<storage::Uncommon> Uncommons; 150 storage::Module Mod; in addModule() 174 storage::Str Specifier; in addModule() 209 storage::Comdat Comdat; in getComdatIndex() 222 storage::Symbol &Sym = Syms.back(); in addSymbol() 225 storage::Uncommon *Unc = nullptr; in addSymbol() 335 storage::Header Hdr; in build() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/Object/ |
H A D | IRSymtab.h | 46 namespace storage { 192 using S = storage::Symbol; 239 ArrayRef<storage::Module> Modules; 240 ArrayRef<storage::Comdat> Comdats; 241 ArrayRef<storage::Symbol> Symbols; 242 ArrayRef<storage::Uncommon> Uncommons; 251 const storage::Header &header() const { in header() 314 const storage::Symbol *SymI, *SymE; 315 const storage::Uncommon *UncI; 338 SymbolRef(const storage::Symbol *SymI, const storage::Symbol *SymE, in SymbolRef() [all …]
|
/openbsd/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/ |
H A D | TraceIntelPT.cpp | 183 Storage &storage = GetUpdatedStorage(); in Decode() local 184 if (storage.multicpu_decoder) in Decode() 194 Storage &storage = GetUpdatedStorage(); in FindBeginningOfTimeNanos() local 199 if (!storage.tsc_conversion) in FindBeginningOfTimeNanos() 204 if (storage.multicpu_decoder) { in FindBeginningOfTimeNanos() 223 storage.beginning_of_time_nanos = in FindBeginningOfTimeNanos() 226 return storage.beginning_of_time_nanos; in FindBeginningOfTimeNanos() 338 if (storage.multicpu_decoder) { in DumpTraceInfo() 431 if (storage.multicpu_decoder) { in DumpTraceInfoAsJson() 448 if (storage.multicpu_decoder) { in DumpTraceInfoAsJson() [all …]
|
/openbsd/lib/libc/include/ |
H A D | thread_private.h | 146 #define _THREAD_PRIVATE(keyname, storage, error) &(storage) argument 147 #define _THREAD_PRIVATE_DT(keyname, storage, dt, error) &(storage) argument 171 #define _THREAD_PRIVATE(keyname, storage, error) \ 172 (_thread_cb.tc_tag_storage == NULL ? &(storage) : \ 174 &(storage), sizeof(storage), NULL, (error))) 176 #define _THREAD_PRIVATE_DT(keyname, storage, dt, error) \ 177 (_thread_cb.tc_tag_storage == NULL ? &(storage) : \ 179 &(storage), sizeof(storage), (dt), (error)))
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | Trace.cpp | 189 Storage &storage = GetUpdatedStorage(); in GetLiveThreadBinaryDataSize() local 195 Storage &storage = GetUpdatedStorage(); in GetLiveCpuBinaryDataSize() local 201 Storage &storage = GetUpdatedStorage(); in GetLiveProcessBinaryDataSize() local 376 Storage &storage = GetUpdatedStorage(); in GetPostMortemThreadDataFile() local 389 Storage &storage = GetUpdatedStorage(); in GetPostMortemCpuDataFile() local 402 Storage &storage = GetUpdatedStorage(); in SetPostMortemThreadDataFile() local 408 Storage &storage = GetUpdatedStorage(); in SetPostMortemCpuDataFile() local 485 if (!storage.cpus) in OnAllCpusBinaryDataRead() 490 if (cpu_id == storage.cpus->end()) in OnAllCpusBinaryDataRead() 515 if (storage.cpus) in GetTracedCpus() [all …]
|
/openbsd/gnu/usr.bin/perl/dist/Storable/t/ |
H A D | utf8hash.t | 79 my $storage = "utfhash.po"; # po = perl object! 82 ok((nstore \%utf8hash, $storage), "nstore to $storage"); 83 ok(($retrieved = retrieve($storage)), "retrieve from $storage"); 91 unlink $storage; 94 ok((store \%utf8hash, $storage), "store to $storage"); 95 ok(($retrieved = retrieve($storage)), "retrieve from $storage"); 102 $DEBUGME or unlink $storage;
|
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_ring_buffer.h | 96 void Init(void *storage, uptr size) { in Init() argument 103 uptr st = (uptr)storage; in Init() 114 CompactRingBuffer(void *storage, uptr size) { in CompactRingBuffer() argument 115 Init(storage, size); in CompactRingBuffer() 119 CompactRingBuffer(const CompactRingBuffer &other, void *storage) { in CompactRingBuffer() argument 121 internal_memcpy(storage, other.StartOfStorage(), size); in CompactRingBuffer() 122 Init(storage, size); in CompactRingBuffer() 124 SetNext((const T *)storage + Idx); in CompactRingBuffer()
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/init/ |
H A D | addr-const1.C | 18 static double storage; member 25 if (foo::b != &foo::storage) in baz() 33 double *foo::b = &(((bar *)(&foo::storage))->p); 34 double foo::storage = 0.0;
|
H A D | new1.C | 11 void * operator new ( size_t , void * storage ); 15 int storage[ 5 ]; variable 18 bar *s = new ( ( void * ) & storage ) bar; in mem()
|
/openbsd/gnu/usr.bin/gcc/gcc/f/ |
H A D | fini.c | 64 static char storage[32]; variable 325 fscanf (in, "%s %s %s %s %s %d %d", prefix, postfix, storage, type, routine, in main() 328 if (storage[0] == '\0') in main() 329 storage[1] = '\0'; in main() 333 if (storage[2] == '\0') in main() 334 storage[1] = '\0'; in main() 336 storage[strlen (storage) - 1] = ' '; in main() 345 for (i = 1; storage[i] != '\0'; ++i) in main() 346 storage[i - 1] = storage[i]; in main() 347 storage[i - 1] = '\0'; in main() [all …]
|
/openbsd/usr.sbin/unbound/ |
H A D | Makefile.in | 131 util/rtt.c util/siphash.c util/edns.c util/storage/dnstree.c util/storage/lookup3.c \ 132 util/storage/lruhash.c util/storage/slabhash.c util/tcp_conn_limit.c \ 721 $(srcdir)/util/storage/slabhash.h $(srcdir)/util/storage/lookup3.h $(srcdir)/util/data/dname.h \ 1021 dnstree.lo dnstree.o: $(srcdir)/util/storage/dnstree.c config.h $(srcdir)/util/storage/dnstree.h \ 1024 lookup3.lo lookup3.o: $(srcdir)/util/storage/lookup3.c config.h $(srcdir)/util/storage/lookup3.h 1025 lruhash.lo lruhash.o: $(srcdir)/util/storage/lruhash.c config.h $(srcdir)/util/storage/lruhash.h \ 1034 slabhash.lo slabhash.o: $(srcdir)/util/storage/slabhash.c config.h $(srcdir)/util/storage/slabhash.… 1279 …$(srcdir)/util/storage/lookup3.h $(srcdir)/util/storage/slabhash.h $(srcdir)/util/tcp_conn_limit.h… 1294 …$(srcdir)/util/storage/slabhash.h $(srcdir)/services/cache/infra.h $(srcdir)/util/storage/dnstree.… 1399 …$(srcdir)/util/storage/lookup3.h $(srcdir)/util/storage/slabhash.h $(srcdir)/util/tcp_conn_limit.h… [all …]
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/other/ |
H A D | new1.C | 11 void * operator new ( size_t , void * storage ); 15 int storage[ 5 ]; variable 18 bar *s = new ( ( void * ) & storage ) bar; in mem()
|
/openbsd/gnu/llvm/llvm/utils/ |
H A D | lldbDataFormatters.py | 123 storage = valobj.GetChildMemberWithName('Storage') 124 if not storage: 125 storage = valobj 128 hasVal = storage.GetChildMemberWithName('hasVal').GetValueAsUnsigned(failure) 135 underlying_type = storage.GetType().GetTemplateArgumentType(0) 136 storage = storage.GetChildMemberWithName('value') 137 return storage.Cast(underlying_type)
|
/openbsd/gnu/usr.bin/cvs/doc/ |
H A D | cvs.info-9 | 102 * Base directory, in CVS directory: Working directory storage. 105 * Baserev file, in CVS directory: Working directory storage. 106 * Baserev.tmp file, in CVS directory: Working directory storage. 131 * Checkin.prog file, in CVS directory: Working directory storage. 176 * CVS directory, in working directory: Working directory storage. 181 * CVS/Base directory: Working directory storage. 219 * CVSROOT, storage of files: CVSROOT storage. 398 * modules.db: CVSROOT storage. 399 * modules.dir: CVSROOT storage. 400 * modules.pag: CVSROOT storage. [all …]
|
/openbsd/gnu/usr.bin/binutils-2.17/config/ |
H A D | tls.m4 | 3 GCC_ENABLE(tls, yes, [Use thread-local storage]) 4 AC_CACHE_CHECK([whether the target supports thread-local storage], 20 [Define to 1 if the target supports thread-local storage.])
|
/openbsd/gnu/gcc/config/ |
H A D | tls.m4 | 3 GCC_ENABLE(tls, yes, [], [Use thread-local storage]) 4 AC_CACHE_CHECK([whether the target supports thread-local storage], 22 [Define to 1 if the target supports thread-local storage.])
|