• Home
  • Raw
  • Download

Lines Matching full:allocated

196  * @param size Size in bytes for the memory block to be allocated
197 * @return Pointer to the allocated block, or `NULL` if the block cannot
198 * be allocated
208 * @param size Size in bytes for the memory block to be allocated
209 * @return Pointer to the allocated block, or `NULL` if it cannot be allocated
217 * The allocated memory will have size `size * nmemb` bytes.
221 * @return Pointer to the allocated block, or `NULL` if the block cannot
222 * be allocated
230 * The allocated memory will have size `size * nmemb` bytes.
234 * @return Pointer to the allocated block, or `NULL` if the block cannot
235 * be allocated
256 * @param ptr Pointer to a memory block already allocated with
258 * @param size Size in bytes of the memory block to be allocated or
280 * @param[in,out] ptr Pointer to a pointer to a memory block already allocated
283 * @param[in] size Size in bytes for the memory block to be allocated or
288 * @warning Unlike av_malloc(), the allocated memory is not guaranteed to be
316 * @param ptr Pointer to a memory block already allocated with
324 * @warning Unlike av_malloc(), the allocated memory is not guaranteed to be
337 * allocated with av_realloc(), or a pointer to `NULL`.
344 * @warning Unlike av_malloc(), the allocated memory is not guaranteed to be
352 * If the given buffer is `NULL`, then a new uninitialized buffer is allocated.
370 * @param[in,out] ptr Already allocated buffer, or `NULL`
372 * updated to the new allocated size, in particular 0
402 * @param[in,out] ptr Pointer to pointer to an already allocated buffer.
406 * updated to the new allocated size, in particular 0
417 * Like av_fast_malloc(), but all newly allocated space is initially cleared.
423 * @param[in,out] ptr Pointer to pointer to an already allocated buffer.
427 * updated to the new allocated size, in particular 0
435 * Free a memory block which has been allocated with a function of av_malloc()
448 * Free a memory block which has been allocated with a function of av_malloc()
474 * @return Pointer to a newly-allocated string containing a
475 * copy of `s` or `NULL` if the string cannot be allocated
486 * @return Pointer to a newly-allocated string containing a
487 * substring of `s` or `NULL` if the string cannot be allocated
496 * @return Pointer to a newly allocated buffer containing a
497 * copy of `p` or `NULL` if the buffer cannot be allocated
527 * allocated array, the first one storing the pointer to the value in the
533 * allocated memory. Since only pointers are stored, the function does not need
598 * allocated structure.
646 * allocated but left uninitialized.
648 * @return Pointer to the data of the element to copy in the newly allocated
677 * Set the maximum size that may be allocated in one block.