/glibc-2.36/elf/ |
D | tst-tls-dlinfo.c | 38 void *block; in do_test() local 39 if (dlinfo (h, RTLD_DI_TLS_DATA, &block)) in do_test() 44 else if (block != NULL) in do_test() 47 block); in do_test() 66 if (dlinfo (h, RTLD_DI_TLS_DATA, &block)) in do_test() 72 else if (block != foop) in do_test() 75 block, foop); in do_test()
|
/glibc-2.36/libio/ |
D | tst-widetext.input | 67 Free block (U+0500-U+052F): 93 Free block (U+0750-U+077F): 101 Free block (U+07C0-U+08FF): 205 Free block (U+1380-U+139F): 236 Free block (U+1700-U+177F): 252 Free block (U+18B0-U+1DFF): 377 Free block (U+27C0-U+27FF): 388 Free block (U+2900-U+2E7F): 430 Free block (U+2FE0-U+2FEF): 474 Free block (U+31C0-U+31FF): [all …]
|
/glibc-2.36/malloc/ |
D | mcheck-impl.c | 41 void *block; /* Real block allocated, for memalign. */ member 88 else if ((hdr->magic2 ^ (uintptr_t) hdr->block) != MAGICWORD) in checkhdr() 182 ptr = hdr->block; in free_mcheck() 216 hdr->block = hdr; in malloc_mcheck_after() 253 memalign_mcheck_after (void *block, size_t alignment, size_t size) in memalign_mcheck_after() argument 255 if (block == NULL) in memalign_mcheck_after() 260 return block; in memalign_mcheck_after() 263 struct hdr *hdr = ((struct hdr *) (block + slop)) - 1; in memalign_mcheck_after() 267 hdr->block = (void *) block; in memalign_mcheck_after() 268 hdr->magic2 = (uintptr_t) block ^ MAGICWORD; in memalign_mcheck_after() [all …]
|
D | mtrace-impl.c | 103 malloc_mtrace_after (void *block, size_t size, const void *caller) in malloc_mtrace_after() argument 110 fprintf (mallstream, "+ %p %#lx\n", block, (unsigned long int) size); in malloc_mtrace_after() 116 realloc_mtrace_after (void *block, const void *oldptr, size_t size, in realloc_mtrace_after() argument 123 if (block == NULL) in realloc_mtrace_after() 132 fprintf (mallstream, "+ %p %#lx\n", block, (unsigned long int) size); in realloc_mtrace_after() 137 fprintf (mallstream, "> %p %#lx\n", block, (unsigned long int) size); in realloc_mtrace_after() 144 memalign_mtrace_after (void *block, size_t size, const void *caller) in memalign_mtrace_after() argument 151 fprintf (mallstream, "+ %p %#lx\n", block, (unsigned long int) size); in memalign_mtrace_after()
|
D | tst-malloc-stats-cancellation.c | 50 char block[BUFSIZ], *p; in buffer_threadproc() local 64 while ((nread = read (ifd, block, BUFSIZ)) > 0) in buffer_threadproc() 66 p = block; in buffer_threadproc()
|
D | malloc.c | 3045 uintptr_t block = (uintptr_t) p - prev_size (p); in munmap_chunk() local 3052 if (__glibc_unlikely ((block | total_size) & (pagesize - 1)) != 0 in munmap_chunk() 3062 __munmap ((char *) block, total_size); in munmap_chunk() 3077 uintptr_t block = (uintptr_t) p - offset; in mremap_chunk() local 3080 if (__glibc_unlikely ((block | total_size) & (pagesize - 1)) != 0 in mremap_chunk() 3091 cp = (char *) __mremap ((char *) block, total_size, new_size, in mremap_chunk() 3778 unsigned int block; /* bit map traverser */ in _int_malloc() local 4254 block = idx2block (idx); in _int_malloc() 4255 map = av->binmap[block]; in _int_malloc() 4265 if (++block >= BINMAPSIZE) /* out of bins */ in _int_malloc() [all …]
|
/glibc-2.36/manual/ |
D | memory.texi | 189 global variable. Each static or global variable defines one block of 222 For example, you may need a block to store a line read from an input 227 Or, you may need a block for each record or each definition in the input 229 allocate a new block for each record or definition as you read it. 231 When you use dynamic allocation, the allocation of a block of memory is 321 * Freeing after Malloc:: Use @code{free} to free a block you 323 * Changing Block Size:: Use @code{realloc} to make a block 326 block and clear it. 340 To allocate a block of memory, call @code{malloc}. The prototype for 583 This function returns a pointer to a newly allocated block @var{size} [all …]
|
D | dynlink.texi | 76 This request writes the address of the TLS block (in the current thread) 80 any associated TLS block. 86 does not have an associated TLS block.
|
D | string.texi | 179 (in bytes and wide characters respectively) of the block of memory to 487 original values of the bytes in the block at @var{from}, including those 488 bytes which also belong to the block at @var{to}. 499 careful to copy the original values of the wide characters in the block 501 block at @var{wto}. 530 @deftypefun {void *} memset (void *@var{block}, int @var{c}, size_t @var{size}) 535 object beginning at @var{block}. It returns the value of @var{block}. 538 @deftypefun {wchar_t *} wmemset (wchar_t *@var{block}, wchar_t @var{wc}, size_t @var{size}) 542 @var{size} wide characters of the object beginning at @var{block}. It 543 returns the value of @var{block}. [all …]
|
D | crypt.texi | 271 A call to @code{getentropy} can only block when the system has just 273 However, if it does block, it cannot be interrupted by signals or 296 If this flag is specified, the call may block, potentially for quite 298 is not specified, the call can only block when the system has just
|
D | signal.texi | 2 @c %MENU% How to send, block, and handle signals 266 terminate. If you block or ignore these signals or establish handlers 500 also not possible to block this signal. 642 nothing else. You cannot block this signal. You can set a handler, but 994 the program, the thing to do is to block them, not ignore them. 1525 There are two ways to avoid this problem. One is to block the signal 1881 signal handlers because they block signals. As a result, the library 1931 block all signals around any access that had better not be interrupted 2400 deliver it later. Generally, a program does not block signals 2402 @code{SIG_IGN}. But it is useful to block signals briefly, to prevent [all …]
|
/glibc-2.36/misc/bits/ |
D | stab.def | 138 /* Beginning of lexical block. 140 The value is the address of the start of the text for the block. 141 The variables declared inside the block *precede* the N_LBRAC symbol. */ 153 /* End of a lexical block. Desc matches the N_LBRAC's desc. 154 The value is the address of the end of the text for the block. */ 157 /* Begin named common block. Only the name is significant. */ 160 /* End named common block. Only the name is significant
|
/glibc-2.36/nptl/ |
D | pthread_join_common.c | 38 const struct __timespec64 *abstime, bool block) in __pthread_clockjoin_ex() argument 84 if (block) in __pthread_clockjoin_ex()
|
/glibc-2.36/mach/ |
D | err_kern.sub | 81 "(os/device) operation would block", 108 "(os/unix) block device required for operation", 128 "(os/unix) operation on device would block",
|
/glibc-2.36/htl/ |
D | Makefile | 109 pt-block \ 111 pt-block-intr \
|
/glibc-2.36/sysdeps/sparc/sparc64/multiarch/ |
D | memcpy-niagara1.S | 116 andn %o2, (64 - 1), %g1 ! block copy loop iterator 117 sub %o2, %g1, %o2 ! final sub-block copy bytes
|
/glibc-2.36/localedata/locales/ |
D | en_NG | 202 % "street or block name",
|
D | nso_ZA | 233 % "street or block name",
|
D | zu_ZA | 235 % "street or block name",
|
D | ve_ZA | 243 % "street or block name",
|
D | xh_ZA | 241 % "street or block name",
|
D | tn_ZA | 245 % "street or block name",
|
D | ss_ZA | 250 % "street or block name",
|
D | nr_ZA | 247 % "street or block name",
|
/glibc-2.36/po/ |
D | el.po | 888 msgid "memory clobbered before allocated block\n" 892 msgid "memory clobbered past end of allocated block\n" 896 msgid "block freed twice\n" 2242 #. TRANS A file that isn't a block special file was given in a situation that 2373 #. TRANS An operation that would block was attempted on an object that has 2374 #. TRANS non-blocking mode selected. Trying the same operation again will block 2400 #. TRANS block (such as @code{connect}; @pxref{Connecting}) never return 2937 msgid "Operation would block" 2938 msgstr "Η λειτουργία θα έπρεπε να φράξει(block)"
|