| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/ |
| dw2-bfloat16.c | 18 /* Storage for the 'x' test. */ 19 unsigned char storage[2]; variable
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/ |
| dw2-bfloat16.c | 18 /* Storage for the 'x' test. */ 19 unsigned char storage[2]; variable
|
| /src/external/mit/expat/dist/tests/ |
| chardata.c | 61 CharData_Init(CharData *storage) { 62 assert(storage != NULL); 63 storage->count = -1; 67 CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len) { 70 assert(storage != NULL); 72 maxchars = sizeof(storage->data) / sizeof(storage->data[0]); 73 if (storage->count < 0) 74 storage->count = 0; 77 if ((len + storage->count) > maxchars) [all...] |
| 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);
|
| structdata.c | 72 StructData_Init(StructData *storage) { 73 assert(storage != NULL); 74 storage->count = 0; 75 storage->max_count = 0; 76 storage->entries = NULL; 80 StructData_AddItem(StructData *storage, const XML_Char *s, int data0, int data1, 84 assert(storage != NULL); 86 if (storage->count == storage->max_count) { 89 storage->max_count += STRUCT_EXTENSION_COUNT [all...] |
| 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);
|
| common.c | 236 CharData storage; local 238 CharData_Init(&storage); 239 XML_SetUserData(g_parser, &storage); 244 CharData_CheckXMLChars(&storage, expected); 250 CharData storage; local 252 CharData_Init(&storage); 253 XML_SetUserData(g_parser, &storage); 258 CharData_CheckXMLChars(&storage, expected); 264 CharData *const storage = (CharData *)malloc(sizeof(CharData)); local 266 CharData_Init(storage); [all...] |
| basic_tests.c | 395 CharData storage; local 397 CharData_Init(&storage); 398 XML_SetUserData(g_parser, &storage); 403 CharData_CheckXMLChars(&storage, expected); 655 StructData storage; local 657 StructData_Init(&storage); 658 XML_SetUserData(g_parser, &storage); 665 StructData_CheckItems(&storage, expected, expected_count); 666 StructData_Dispose(&storage); 796 CharData storage; local 1575 CharData storage; local 1617 CharData storage; local 1644 CharData storage; local 1714 CharData storage; local 1758 CharData storage; local 2008 struct handler_record_list storage; local 2038 struct handler_record_list storage; local 2066 struct handler_record_list storage; local 2102 struct handler_record_list storage; local 2139 struct handler_record_list storage; local 2175 struct handler_record_list storage; local 2564 CharData storage; local 3224 CharData storage; local 3284 CharData storage; local 3311 CharData storage; local 3338 CharData storage; local 3628 CharData storage; local 3868 CharData storage; local 3988 CharData storage; local 4214 CharData storage; local 4230 CharData storage; local 4246 CharData storage; local 4261 CharData storage; local 4276 CharData storage; local 4302 CharData storage; local 4328 CharData storage; local 4348 CharData storage; local 4367 CharData storage; local 4455 CharData storage; local 4477 CharData storage; local 4590 CharData storage; local 4621 CharData storage; local 4656 CharData storage; local 4687 CharData storage; local 4716 CharData storage; local 4745 CharData storage; local 4796 CharData storage; local 4946 CharData storage; local 4967 CharData storage; local 4987 CharData storage; local 5029 CharData storage; local 5173 CharData storage; local 5195 CharData storage; local 5224 CharData storage; local 5256 CharData storage; local 5397 CharData storage; local 5453 CharData storage; local 5566 CharData storage; local 5596 CharData storage; local 5719 CharData storage; local 5916 CharData storage; local 6038 CharData storage; local 6172 CharData storage; local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.ada/ |
| scalar_storage.exp | 16 # Test that range types with scalar storage order are handled 23 standard_ada_testfile storage 31 set bp_location [gdb_get_line_number "START" ${testdir}/storage.adb] 32 if {![runto "storage.adb:$bp_location"]} {
|
| /src/lib/librefuse/refuse/ |
| chan.c | 67 static struct refuse_chan_storage storage; variable in typeref:struct:refuse_chan_storage 115 /* Find the first empty slot in the storage. */ 116 for (idx = 0; idx < (int)storage.n_alloc; idx++) { 117 if (storage.vec[idx] == NULL) { 118 storage.vec[idx] = chan; 124 storage.n_alloc = (storage.n_alloc + 8) * 2; 125 storage.vec = realloc(storage.vec, sizeof(struct fuse_chan*) * storage.n_alloc) [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/ |
| hwasan_thread_list.cpp | 9 void InitThreadList(uptr storage, uptr size) { 12 new (thread_list_placeholder) HwasanThreadList(storage, size);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/ |
| ex_data.c | 212 EX_CALLBACK **storage = NULL; local 224 storage = stack; 226 storage = OPENSSL_malloc(sizeof(*storage) * mx); 227 if (storage != NULL) 229 storage[i] = sk_EX_CALLBACK_value(ip->meth, i); 233 if (mx > 0 && storage == NULL) { 238 if (storage[i] != NULL && storage[i]->new_func != NULL) { 240 storage[i]->new_func(obj, ptr, ad, i 259 EX_CALLBACK **storage = NULL; local 327 EX_CALLBACK **storage = NULL; local [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/hwasan/ |
| hwasan_thread_list.cpp | 13 void InitThreadList(uptr storage, uptr size) { 19 new (thread_list_placeholder) HwasanThreadList(storage, size);
|
| /src/crypto/external/apache2/openssl/dist/crypto/ |
| ex_data.c | 223 EX_CALLBACK **storage = NULL; local 240 storage = stack; 242 storage = OPENSSL_malloc(sizeof(*storage) * mx); 243 if (storage != NULL) 245 storage[i] = sk_EX_CALLBACK_value(ip->meth, i); 249 if (mx > 0 && storage == NULL) 252 if (storage[i] != NULL && storage[i]->new_func != NULL) { 254 storage[i]->new_func(obj, ptr, ad, i 278 EX_CALLBACK **storage = NULL; local 373 struct ex_callback_entry *storage = NULL; local [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/ |
| ex_data.c | 218 EX_CALLBACK **storage = NULL; local 235 storage = stack; 237 storage = OPENSSL_malloc(sizeof(*storage) * mx); 238 if (storage != NULL) 240 storage[i] = sk_EX_CALLBACK_value(ip->meth, i); 244 if (mx > 0 && storage == NULL) { 249 if (storage[i] != NULL && storage[i]->new_func != NULL) { 251 storage[i]->new_func(obj, ptr, ad, i 275 EX_CALLBACK **storage = NULL; local 372 struct ex_callback_entry *storage = NULL; local [all...] |
| /src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/ |
| vchiq_util.c | 53 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 must be visible after read fro [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Object/ |
| IRSymtab.cpp | 84 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) { 141 storage::Module Mod; 165 storage::Str Specifier; 200 storage::Comdat Comdat [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.ada/ |
| scalar_storage.exp | 16 # Test that range types with scalar storage order are handled 23 standard_ada_testfile storage 31 if {[regexp "error: reverse storage order .* not supported by LLVM" $output]} { 32 unsupported "scalar storage order not supported" 43 set bp_location [gdb_get_line_number "START" ${testdir}/storage.adb] 44 if {![runto "storage.adb:$bp_location"]} {
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| IRSymtab.h | 45 namespace storage { namespace in namespace:llvm::irsymtab 157 } // end namespace storage 164 /// This represents a symbol that has been read from a storage::Symbol and 165 /// possibly a storage::Uncommon. 167 // Copied from storage::Symbol. 172 // Copied from storage::Uncommon. 188 using S = storage::Symbol; 235 ArrayRef<storage::Module> Modules; 236 ArrayRef<storage::Comdat> Comdats; 237 ArrayRef<storage::Symbol> Symbols [all...] |
| /src/external/mit/libuv/dist/src/unix/ |
| getnameinfo.c | 38 if (req->storage.ss_family == AF_INET) 40 else if (req->storage.ss_family == AF_INET6) 45 err = getnameinfo((struct sockaddr*) &req->storage, 90 memcpy(&req->storage, 94 memcpy(&req->storage,
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_ring_buffer.h | 80 // A ring buffer with externally provided storage that encodes its state in 8 81 // bytes. Has significant constraints on size and alignment of storage. 94 void Init(void *storage, uptr size) { 101 CHECK_EQ((uptr)storage % (size * 2), 0); 102 long_ = (uptr)storage | ((size >> kPageSizeBits) << kSizeShift); 110 CompactRingBuffer(void *storage, uptr size) { 111 Init(storage, size); 115 CompactRingBuffer(const CompactRingBuffer &other, void *storage) { 117 internal_memcpy(storage, other.StartOfStorage(), size); 118 Init(storage, size) [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_ring_buffer.h | 79 // 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) { 100 CHECK_EQ((uptr)storage % (size * 2), 0); 101 long_ = (uptr)storage | ((size >> kPageSizeBits) << kSizeShift); 109 CompactRingBuffer(void *storage, uptr size) { 110 Init(storage, size); 114 CompactRingBuffer(const CompactRingBuffer &other, void *storage) { 116 internal_memcpy(storage, other.StartOfStorage(), size); 117 Init(storage, size) [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/ |
| lldbDataFormatters.py | 106 storage = valobj.GetChildMemberWithName('Storage') 107 if not storage: 108 storage = valobj 111 hasVal = storage.GetChildMemberWithName('hasVal').GetValueAsUnsigned(failure) 118 underlying_type = storage.GetType().GetTemplateArgumentType(0) 119 storage = storage.GetChildMemberWithName('value') 120 return storage.Cast(underlying_type)
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_ring_buffer.h | 81 // A ring buffer with externally provided storage that encodes its state in 8 82 // bytes. Has significant constraints on size and alignment of storage. 98 void Init(void *storage, uptr size) { 105 uptr st = (uptr)storage; 116 CompactRingBuffer(void *storage, uptr size) { 117 Init(storage, size); 121 CompactRingBuffer(const CompactRingBuffer &other, void *storage) { 123 internal_memcpy(storage, other.StartOfStorage(), size); 124 Init(storage, size); 126 SetNext((const T *)storage + Idx) [all...] |
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| cooked-index-entry.c | 173 cooked_index_entry::full_name (struct obstack *storage, 214 get_parent ()->write_scope (storage, sep, name_flags); 215 obstack_grow0 (storage, local_name, strlen (local_name)); 216 return (const char *) obstack_finish (storage); 222 cooked_index_entry::write_scope (struct obstack *storage, 227 get_parent ()->write_scope (storage, sep, flags); 233 obstack_grow (storage, local_name, strlen (local_name)); 234 obstack_grow (storage, sep, strlen (sep));
|