Lines Matching defs:allocated

335   mp_limb_t *limbs; /* Bits in little-endian order, allocated with malloc().  */
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
867 Return the allocated memory in case of success, NULL in case of memory
955 Return the allocated memory in case of success, NULL in case of memory
1038 Return the allocated memory - containing the decimal digits in low-to-high
1260 Return the allocated memory - containing the decimal digits in low-to-high
1278 Return the allocated memory - containing the decimal digits in low-to-high
1774 size_t allocated;
1802 allocated = *lengthp;
1807 allocated = 0;
1811 result is either == resultbuf or == NULL or malloc-allocated.
1814 /* Ensures that allocated >= needed. Aborts through a jump to
1817 if ((needed) > allocated) \
1822 allocated = (allocated > 0 ? xtimes (allocated, 2) : 12); \
1823 if ((needed) > allocated) \
1824 allocated = (needed); \
1825 memory_size = xtimes (allocated, sizeof (DCHAR_T)); \
2064 size_t converted_len = allocated - length;
2192 size_t converted_len = allocated - length;
2320 size_t converted_len = allocated - length;
3372 if (count >= allocated - length)
4558 if (count >= allocated - length)
4909 size_t maxlen = allocated - length;
5134 xsum (xtimes (allocated, 2), 12);
5170 /* Handle overflow of the allocated buffer.
5198 xtimes (allocated, 2));
5362 if (count > allocated - length)
5367 xmax (xsum (length, count), xtimes (allocated, 2));
5373 /* Here count <= allocated - length. */
5395 if (xsum (count, pad) > allocated - length)
5401 xtimes (allocated, 2));
5411 /* Here count + pad <= allocated - length. */
5473 /* Here still count <= allocated - length. */
5511 if (result != resultbuf && length + 1 < allocated)
5513 /* Shrink the allocated memory if possible. */