Home | History | Annotate | Download | only in intl

Lines Matching defs:memory

76     /* Out of memory.  */
89 argument *memory; \
96 /* Overflow, would lead to out of memory. */ \
98 memory = (a->arg \
101 if (memory == NULL) \
102 /* Out of memory. */ \
104 a->arg = memory; \
151 /* n too large, would lead to out of memory later. */
221 /* n too large, would lead to out of memory later. */
278 /* n too large, would lead to out of memory
505 DIRECTIVE *memory;
510 /* Overflow, would lead to out of memory. */
512 memory = realloc (d->dir, memory_size);
513 if (memory == NULL)
514 /* Out of memory. */
516 d->dir = memory;