Home
last modified time | relevance | path

Searched refs:JITTER_HEAP_TAG_POINTER (Results 1 – 2 of 2) sorted by relevance

/dports/editors/poke/poke-1.0/jitter/jitter/
H A Djitter-heap.c158 = JITTER_HEAP_TAG_POINTER(NULL, jitter_heap_thing_tag_terminator); in jitter_heap_initialize_block()
164 = JITTER_HEAP_TAG_POINTER(left_terminator_header, in jitter_heap_initialize_block()
170 = JITTER_HEAP_TAG_POINTER(hole_header, jitter_heap_thing_tag_terminator); in jitter_heap_initialize_block()
328 = JITTER_HEAP_TAG_POINTER (hole, jitter_heap_thing_tag_object); in jitter_heap_allocate_from_block()
337 = JITTER_HEAP_TAG_POINTER (object, object_on_the_right_tag); in jitter_heap_allocate_from_block()
416 = JITTER_HEAP_TAG_POINTER (before_new_hole, jitter_heap_thing_tag_hole); in jitter_heap_free_from_block()
422 = JITTER_HEAP_TAG_POINTER (new_hole, after_new_hole_tag); in jitter_heap_free_from_block()
489 after_hole->thing_on_the_left = JITTER_HEAP_TAG_POINTER (object, in jitter_heap_merge_object_with_hole_on_its_right()
543 = JITTER_HEAP_TAG_POINTER (object, jitter_heap_thing_tag_hole); in jitter_heap_shrink_object_in_block()
549 = JITTER_HEAP_TAG_POINTER (new_hole, thing_on_the_right_tag); in jitter_heap_shrink_object_in_block()
H A Djitter-heap.h210 #define JITTER_HEAP_TAG_POINTER(p, tag) \ macro