Lines Matching defs:pointer
70 /* In this case we simply store the pointer, since it fits anyway. */
84 * @return pointer to the end of the region
143 * @return pointer to allocated memory block - if allocation is successful,
304 * pointer to the allocated memory block, if allocation is successful
354 * pointer to allocated memory block, otherwise
372 * pointer to the allocated memory block, otherwise
393 * @return pointer to the preceeding block
489 jmem_heap_free_block_internal (void *ptr, /**< pointer to beginning of data space of the block */
537 * @return pointer to the reallocated region
566 jmem_heap_free_block (void *ptr, /**< pointer to beginning of data space of the block */
576 * Check whether the pointer points to the heap
581 * @return true - if pointer points to the heap,
585 jmem_is_heap_pointer (const void *pointer) /**< pointer */
588 return ((uint8_t *) pointer >= JERRY_HEAP_CONTEXT (area)
589 && (uint8_t *) pointer <= (JERRY_HEAP_CONTEXT (area) + JMEM_HEAP_AREA_SIZE));
591 JERRY_UNUSED (pointer);