Lines Matching defs:memory

1 /* vsprintf with automatic memory allocation.
339 Return the allocated memory in case of success, NULL in case of memory
411 Return the allocated memory in case of success, NULL in case of memory
462 The room for q[j] can be allocated at the memory location of r[n+j].
812 Return the allocated memory - containing the decimal digits in low-to-high
814 of memory allocation failure. */
867 Return the allocated memory in case of success, NULL in case of memory
877 /* Allocate memory for result. */
955 Return the allocated memory in case of success, NULL in case of memory
965 /* Allocate memory for result. */
1038 Return the allocated memory - containing the decimal digits in low-to-high
1040 of memory allocation failure. */
1042 scale10_round_decimal_decoded (int e, mpn_t m, void *memory, int n)
1057 if (memory == NULL)
1083 free (memory);
1179 free (memory);
1206 free (memory);
1245 free (memory);
1260 Return the allocated memory - containing the decimal digits in low-to-high
1262 of memory allocation failure. */
1268 void *memory = decode_long_double (x, &e, &m);
1269 return scale10_round_decimal_decoded (e, m, memory, n);
1278 Return the allocated memory - containing the decimal digits in low-to-high
1280 of memory allocation failure. */
1286 void *memory = decode_double (x, &e, &m);
1287 return scale10_round_decimal_decoded (e, m, memory, n);
1820 DCHAR_T *memory; \
1829 memory = (DCHAR_T *) malloc (memory_size); \
1831 memory = (DCHAR_T *) realloc (result, memory_size); \
1832 if (memory == NULL) \
1835 DCHAR_CPY (memory, result, length); \
1836 result = memory; \
2725 /* Convert the string into a piece of temporary memory. */
3013 /* Overflow, would lead to out of memory. */
3017 /* Out of memory. */
3559 /* Overflow, would lead to out of memory. */
3563 /* Out of memory. */
4725 /* Overflow, would lead to out of memory. */
4729 /* Out of memory. */
4847 in format strings in writable memory may crash the program
5178 allocating more memory will not increase maxlen.
5513 /* Shrink the allocated memory if possible. */
5514 DCHAR_T *memory;
5516 memory = (DCHAR_T *) realloc (result, (length + 1) * sizeof (DCHAR_T));
5517 if (memory != NULL)
5518 result = memory;