| /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/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/ |
| dw2-bfloat16.c | 18 /* Storage for the 'x' test. */ 19 unsigned char storage[2]; variable
|
| /src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/ |
| vchiq_util.h | 52 VCHIQ_HEADER_T **storage; member in struct:__anon6396
|
| /src/tests/lib/libc/sys/ |
| t_kevent.c | 80 int s[2], storage, status, kq; local 103 iov.iov_base = &storage; 118 iov.iov_base = &storage;
|
| /src/external/mit/expat/dist/tests/ |
| common.h | 129 CharData *storage; member in struct:ExtTest
|
| alloc_tests.c | 494 CharData storage; local 514 CharData_Init(&storage); 515 XML_SetUserData(g_parser, &storage); 528 CharData_CheckXMLChars(&storage, expected); 1279 CharData storage; local 1285 CharData_Init(&storage); 1288 XML_SetUserData(g_parser, &storage); 1302 CharData_CheckXMLChars(&storage, XCS("doce")); 1319 CharData storage; local 1325 CharData_Init(&storage); [all...] |
| 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...] |
| ns_tests.c | 123 CharData storage; local 124 CharData_Init(&storage); 125 XML_SetUserData(g_parser, &storage); 131 CharData_CheckXMLChars(&storage, result); 598 CharData storage; local 600 CharData_Init(&storage); 602 XML_SetUserData(g_parser, &storage); 606 CharData_CheckXMLChars(&storage, expected); 621 CharData storage; local 623 CharData_Init(&storage); 651 CharData storage; local [all...] |
| /src/external/mit/libuv/dist/test/ |
| test-tcp-oob.c | 42 static char storage[1024]; local 43 *buf = uv_buf_init(storage, sizeof(storage));
|
| /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/tests/include/sys/ |
| t_socket.c | 90 int rfd, fd[2], storage; local 134 iov.iov_base = &storage;
|
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/ |
| timers.cc | 187 char storage[kStorageSize]; local 193 std::strftime(storage, sizeof(storage), "%x %X", ::localtime(&now)); 197 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo); 201 written = std::strftime(storage, sizeof(storage), "%x %X", ::gmtime(&now)); 205 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo); 210 return std::string(storage); [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/ |
| timers.cc | 187 char storage[kStorageSize]; local 193 std::strftime(storage, sizeof(storage), "%x %X", ::localtime(&now)); 197 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo); 201 written = std::strftime(storage, sizeof(storage), "%x %X", ::gmtime(&now)); 205 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo); 210 return std::string(storage); [all...] |
| /src/external/bsd/nsd/dist/ |
| dname.h | 419 /* storage for labelcount, and for the wireformat name. 422 * This allocates storage for it, due to alignment, the struct 425 uint8_t storage[MAXDOMAINLEN/2 + 1 + MAXDOMAINLEN+1 ]; member in struct:dname_buffer
|
| /src/external/gpl3/gdb/dist/gdb/ |
| completer.h | 92 /* Get temporary storage for generating a match result, dynamically. 95 std::string &storage () function in class:completion_match 112 /* Storage a symbol comparison routine can use for generating a 201 storage of the pairing completion_match object. */ 215 /* Storage used by the finish() method, if it has to compute a new 499 to conveniently share the same storage among all the calls to the
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| completer.h | 93 /* Get temporary storage for generating a match result, dynamically. 96 std::string &storage () function in class:completion_match 113 /* Storage a symbol comparison routine can use for generating a 202 storage of the pairing completion_match object. */ 216 /* Storage used by the finish() method, if it has to compute a new 456 to conveniently share the same storage among all the calls to the
|
| /src/usr.bin/m4/ |
| look.c | 72 void *storage = xalloc(s, "hash alloc"); local 73 if (storage) 74 memset(storage, 0, s); 75 return storage;
|
| /src/crypto/external/apache2/openssl/dist/crypto/bn/ |
| bn_mod.c | 58 BN_ULONG storage[1024 / BN_BITS2]; local 59 BN_ULONG carry, temp, mask, *rp, *tp = storage; 65 if (mtop > OSSL_NELEM(storage)) { 97 if (tp != storage)
|
| /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/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_chacha20_poly1305_hw.c | 124 unsigned char *buf, *tohash, *ctr, storage[sizeof(zero) + 32]; local 128 buf = storage + ((0 - (size_t)storage) & 15); /* align */
|
| /src/crypto/external/bsd/openssl/dist/crypto/bn/ |
| bn_mod.c | 57 BN_ULONG storage[1024 / BN_BITS2]; local 58 BN_ULONG carry, temp, mask, *rp, *tp = storage; 64 if (mtop > sizeof(storage) / sizeof(storage[0])) { 98 if (tp != storage)
|
| /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/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_chacha20_poly1305_hw.c | 125 unsigned char *buf, *tohash, *ctr, storage[sizeof(zero) + 32]; local 129 buf = storage + ((0 - (size_t)storage) & 15); /* align */
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/bn/ |
| bn_mod.c | 52 BN_ULONG storage[1024 / BN_BITS2]; local 53 BN_ULONG carry, temp, mask, *rp, *tp = storage; 59 if (mtop > sizeof(storage) / sizeof(storage[0]) 89 if (tp != storage)
|
| /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...] |