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

Lines Matching defs:memory

1 /* vsprintf with automatic memory allocation.
277 Return the allocated memory in case of success, NULL in case of memory
349 Return the allocated memory in case of success, NULL in case of memory
400 The room for q[j] can be allocated at the memory location of r[n+j].
750 Return the allocated memory - containing the decimal digits in low-to-high
752 of memory allocation failure. */
805 Return the allocated memory in case of success, NULL in case of memory
815 /* Allocate memory for result. */
890 Return the allocated memory in case of success, NULL in case of memory
900 /* Allocate memory for result. */
973 Return the allocated memory - containing the decimal digits in low-to-high
975 of memory allocation failure. */
977 scale10_round_decimal_decoded (int e, mpn_t m, void *memory, int n)
992 if (memory == NULL)
1018 free (memory);
1114 free (memory);
1141 free (memory);
1180 free (memory);
1195 Return the allocated memory - containing the decimal digits in low-to-high
1197 of memory allocation failure. */
1203 void *memory = decode_long_double (x, &e, &m);
1204 return scale10_round_decimal_decoded (e, m, memory, n);
1213 Return the allocated memory - containing the decimal digits in low-to-high
1215 of memory allocation failure. */
1221 void *memory = decode_double (x, &e, &m);
1222 return scale10_round_decimal_decoded (e, m, memory, n);
1489 DCHAR_T *memory; \
1498 memory = (DCHAR_T *) malloc (memory_size); \
1500 memory = (DCHAR_T *) realloc (result, memory_size); \
1501 if (memory == NULL) \
1504 DCHAR_CPY (memory, result, length); \
1505 result = memory; \
2158 /* Overflow, would lead to out of memory. */
2162 /* Out of memory. */
2700 /* Overflow, would lead to out of memory. */
2704 /* Out of memory. */
3858 /* Overflow, would lead to out of memory. */
3862 /* Out of memory. */
4018 in format strings in writable memory may crash the program
4291 allocating more memory will not increase maxlen.
4626 /* Shrink the allocated memory if possible. */
4627 DCHAR_T *memory;
4629 memory = (DCHAR_T *) realloc (result, (length + 1) * sizeof (DCHAR_T));
4630 if (memory != NULL)
4631 result = memory;