/glibc-2.36/sysdeps/gnu/ |
D | ifaddrs.c | 65 } *storage; in __getifaddrs() local 69 storage = malloc (nifs * sizeof storage[0]); in __getifaddrs() 70 if (storage == NULL) in __getifaddrs() 82 storage[i].ia.ifa_next = &storage[i + 1].ia; in __getifaddrs() 83 storage[i].ia.ifa_addr = &storage[i].addr; in __getifaddrs() 86 storage[i].ia.ifa_name = strncpy (storage[i].name, ifr->ifr_name, in __getifaddrs() 87 sizeof storage[i].name); in __getifaddrs() 88 storage[i].addr = ifr->ifr_addr; in __getifaddrs() 95 storage[i].ia.ifa_flags = ifr->ifr_flags; in __getifaddrs() 97 ifr->ifr_addr = storage[i].addr; in __getifaddrs() [all …]
|
/glibc-2.36/misc/ |
D | tst-fd_to_filename.c | 33 struct fd_to_filename storage; in check() local 34 char *actual = __fd_to_filename (value, &storage); in check() 62 struct fd_to_filename storage; in check_open() local 63 int read_alias = xopen (__fd_to_filename (pipes[0], &storage), O_RDONLY, 0); in check_open() 64 int write_alias = xopen (__fd_to_filename (pipes[1], &storage), O_WRONLY, 0); in check_open()
|
D | fd_to_filename.c | 26 __fd_to_filename (int descriptor, struct fd_to_filename *storage) in __fd_to_filename() argument 30 char *p = mempcpy (storage->buffer, FD_TO_FILENAME_PREFIX, in __fd_to_filename() 34 return storage->buffer; in __fd_to_filename()
|
/glibc-2.36/resolv/ |
D | tst-resolv-trailing.c | 68 struct hostent storage; in do_test() local 78 TEST_COMPARE (gethostbyname_r (query, &storage, buf, sizeof (buf), in do_test() 90 &storage, buf, sizeof (buf), in do_test() 102 &storage, buf, sizeof (buf), in do_test()
|
D | tst-resolv-threads.c | 247 struct hostent storage; in byname() local 253 ret = gethostbyname_r (qname, &storage, buf, sizeof (buf), in byname() 256 ret = gethostbyname2_r (qname, AF_INET, &storage, buf, sizeof (buf), in byname() 290 struct hostent storage; in thread_byname2_af_inet6() local 294 int ret = gethostbyname2_r (qname, AF_INET6, &storage, buf, sizeof (buf), in thread_byname2_af_inet6()
|
D | tst-resolv-nondecimal.c | 92 struct hostent storage; in run_query() local 95 TEST_COMPARE (gethostbyname_r (query, &storage, buf, sizeof (buf), in run_query() 106 TEST_COMPARE (gethostbyname2_r (query, AF_INET, &storage, buf, sizeof (buf), in run_query()
|
/glibc-2.36/argp/ |
D | argp-parse.c | 295 void *storage; member 504 parser->storage = malloc (GLEN + CLEN + LLEN + SLEN); in parser_init() 505 if (! parser->storage) in parser_init() 508 parser->groups = parser->storage; in parser_init() 509 parser->child_inputs = parser->storage + GLEN; in parser_init() 510 parser->long_opts = parser->storage + GLEN + CLEN; in parser_init() 511 parser->short_opts = parser->storage + GLEN + CLEN + LLEN; in parser_init() 666 free (parser->storage); in parser_finalize()
|
/glibc-2.36/manual/ |
D | crypt.texi | 3 @c %MENU% Passphrase storage and strongly unpredictable bytes. 6 functions: one-way hash functions for passphrase storage, and access 70 @c storage, the DES initializer takes an internal lock with the usual 77 into a one-way hash suitable for storage in the user database. The 91 @var{salt}. To hash a new passphrase for storage, set @var{salt} to a 135 Failed to allocate internal scratch storage. 145 @code{crypt} uses static storage for both internal scratchwork and the 166 Instead of static storage, it uses the memory pointed to by its
|
D | threads.texi | 36 * ISO C Thread-local Storage:: Functions to support thread-local storage. 456 @cindex thread-local storage 459 storage}, a mechanism by which variables can be defined to have unique 460 per-thread storage, lifetimes that match the thread lifetime, and 461 destructors that cleanup the unique per-thread storage. 464 storage: 468 The @code{tss_t} data type identifies a thread-specific storage 476 (void *)}, to be used as a thread-specific storage destructor. The 483 @code{thread_local} is used to mark a variable with thread storage 496 bounded limit to the destruction of thread-local storage; e.g., [all …]
|
D | platform.texi | 67 dedicated to the executing processor are released until all outstanding storage 68 accesses to caching-inhibited storage have been completed. 74 dedicated to the executing processor are released until all outstanding storage 75 accesses to cacheable storage for which the data is not in the cache have been
|
D | memory.texi | 5 @cindex storage allocation 18 * Memory Allocation:: Allocating storage for your program data 40 @dfn{frame}) or some secondary storage, usually disk space. The disk 97 some variables: C variables with the static storage class (@pxref{Memory 144 The @dfn{data segment} is working storage for the program. It can be 160 This section covers how ordinary programs manage storage for their data, 175 of automatic storage that are freed when the 193 @cindex static storage class 202 @cindex automatic storage class 204 In GNU C, the size of the automatic storage can be an expression [all …]
|
D | filesys.texi | 1760 * Storage Allocation:: Allocate backing storage for files. 3177 @cindex allocating file storage 3179 @cindex storage allocating 3192 bytes for which no backing storage has been allocated by the file 3196 Explicit allocation of storage for yet-unwritten parts of the file can 3197 help the system to avoid fragmentation. Additionally, if storage 3456 allocated with @code{malloc}, so you should release its storage with 3507 String constants are normally in read-only storage, so your program
|
D | pattern.texi | 798 * Regexp Cleanup:: Freeing storage; reporting errors. 1602 free the storage it uses by calling @code{regfree}. 1609 Calling @code{regfree} frees all the storage that @code{*@var{compiled}} 1989 Free the storage used for the word-strings and vector that
|
D | string.texi | 9 operate on arbitrary regions of storage; for example, the @code{memcpy} 100 read-only storage. 203 arrays or blocks of storage, then you should always use the @samp{mem} 1570 the time needed to allocate and free storage is much less than the time 2371 There may be copies in temporary storage areas, such as registers and
|
D | fdl-1.3.texi | 345 and independent documents or works, in or on a volume of a storage or
|
D | lgpl-2.1.texi | 223 a storage or distribution medium does not bring the other work under
|
D | resource.texi | 1440 The physical memory can be extended by storage on an external media 1449 memory content from the memory to the storage media and back. This is
|
D | arith.texi | 42 storage, regardless of what machine the program runs on. 69 If you don't need a specific storage size, but want the smallest data 83 If you don't need a specific storage size, but want the data structure 125 data types to get the number of bytes of storage each uses.
|
D | process.texi | 486 Executing the specified file requires more storage than is available.
|
/glibc-2.36/sysdeps/generic/ |
D | fd_to_filename.h | 34 char *__fd_to_filename (int descriptor, struct fd_to_filename *storage)
|
/glibc-2.36/posix/ |
D | regcomp.c | 981 bin_tree_storage_t *storage, *next; in free_workarea_compile() local 982 for (storage = dfa->str_tree_storage; storage; storage = next) in free_workarea_compile() 984 next = storage->next; in free_workarea_compile() 985 re_free (storage); in free_workarea_compile() 3827 bin_tree_storage_t *storage = re_malloc (bin_tree_storage_t, 1); in create_token_tree() local 3829 if (storage == NULL) in create_token_tree() 3831 storage->next = dfa->str_tree_storage; in create_token_tree() 3832 dfa->str_tree_storage = storage; in create_token_tree()
|
/glibc-2.36/sysdeps/x86_64/ |
D | dl-trampoline.h | 181 sub $32, %RSP_LP # Allocate the local storage.
|
/glibc-2.36/ |
D | COPYING | 131 a storage or distribution medium does not bring the other work under
|
D | NEWS | 2221 - tss_create, tss_delete, tss_get, and tss_set for thread-local storage. 3755 [17730] malloc: thread-local storage is sometimes improperly free()'d 5881 * ELF thread-local storage support (TLS) now works on PowerPC and PowerPC64; 5915 * ELF thread-local storage support (TLS) now works on x86-64. 5970 thread-local storage (TLS) ABI on some platforms. 7097 allocates zero bytes of storage, and returns a unique pointer which 7238 of temporary storage; so, the old sorting function is called when the 7239 required storage is not available.
|
/glibc-2.36/ChangeLog.old/ |
D | ChangeLog.2 | 1771 `const' qualifier always after storage classes. 2665 before storage class in defn. 3730 and ENVP `register' storage class; can then clear the FP early.
|