• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/

Lines Matching defs:memory

1 /* vsprintf with automatic memory allocation.
278 Return the allocated memory in case of success, NULL in case of memory
350 Return the allocated memory in case of success, NULL in case of memory
401 The room for q[j] can be allocated at the memory location of r[n+j].
751 Return the allocated memory - containing the decimal digits in low-to-high
753 of memory allocation failure. */
806 Return the allocated memory in case of success, NULL in case of memory
816 /* Allocate memory for result. */
891 Return the allocated memory in case of success, NULL in case of memory
901 /* Allocate memory for result. */
974 Return the allocated memory - containing the decimal digits in low-to-high
976 of memory allocation failure. */
978 scale10_round_decimal_decoded (int e, mpn_t m, void *memory, int n)
993 if (memory == NULL)
1019 free (memory);
1115 free (memory);
1142 free (memory);
1181 free (memory);
1196 Return the allocated memory - containing the decimal digits in low-to-high
1198 of memory allocation failure. */
1204 void *memory = decode_long_double (x, &e, &m);
1205 return scale10_round_decimal_decoded (e, m, memory, n);
1214 Return the allocated memory - containing the decimal digits in low-to-high
1216 of memory allocation failure. */
1222 void *memory = decode_double (x, &e, &m);
1223 return scale10_round_decimal_decoded (e, m, memory, n);
1490 DCHAR_T *memory; \
1499 memory = (DCHAR_T *) malloc (memory_size); \
1501 memory = (DCHAR_T *) realloc (result, memory_size); \
1502 if (memory == NULL) \
1505 DCHAR_CPY (memory, result, length); \
1506 result = memory; \
2159 /* Overflow, would lead to out of memory. */
2163 /* Out of memory. */
2701 /* Overflow, would lead to out of memory. */
2705 /* Out of memory. */
3859 /* Overflow, would lead to out of memory. */
3863 /* Out of memory. */
4019 in format strings in writable memory may crash the program
4292 allocating more memory will not increase maxlen.
4627 /* Shrink the allocated memory if possible. */
4628 DCHAR_T *memory;
4630 memory = (DCHAR_T *) realloc (result, (length + 1) * sizeof (DCHAR_T));
4631 if (memory != NULL)
4632 result = memory;