Lines Matching refs:POINTER
43 typedef void *POINTER;
50 typedef char *POINTER;
56 typedef char *POINTER; typedef
71 typedef void *POINTER; typedef
82 #define NIL ((POINTER) 0)
97 static POINTER (*real_morecore) ();
100 static POINTER virtual_break_value;
104 static POINTER break_value;
145 POINTER start;
147 POINTER end;
149 POINTER bloc_start;
151 POINTER free;
177 POINTER *variable;
178 POINTER data;
180 POINTER new_data; /* tmporarily used for relocation */
198 POINTER address; in find_heap()
229 static POINTER
231 POINTER address; in obtain()
261 POINTER new = (*real_morecore)(0);
271 POINTER bloc_start = (POINTER) MEM_ROUNDUP ((POINTER)(new_heap + 1));
364 POINTER *ptr; in find_bloc()
403 new_bloc->variable = (POINTER *) NIL;
444 POINTER address;
596 POINTER address;
724 POINTER
729 POINTER address;
742 POINTER new_bloc_start;
746 address = (POINTER) ROUNDUP (virtual_break_value);
754 address = (POINTER) ROUNDUP (h->start);
766 address = (POINTER) ROUNDUP (virtual_break_value);
768 address = (POINTER) ROUNDUP (last_heap->start);
772 new_bloc_start = (POINTER) MEM_ROUNDUP ((char *)address + get);
827 = (POINTER) MEM_ROUNDUP ((char *)first_heap->bloc_start - excess);
841 first_heap->start = (POINTER) ((char *)virtual_break_value + size);
845 virtual_break_value = (POINTER) ((char *)address + size);
862 POINTER
864 POINTER *ptr; in r_alloc()
889 register POINTER *ptr; in r_alloc_free()
911 POINTER
913 POINTER *ptr; in r_re_alloc()
961 extern POINTER (*__morecore) ();
985 first_heap->end = (POINTER) ROUNDUP (first_heap->start); in r_alloc_init()
1017 assert (last_heap->end <= (POINTER) sbrk (0)); in r_alloc_check()
1018 assert ((POINTER) first_heap < first_heap->start); in r_alloc_check()
1025 assert ((POINTER) ROUNDUP (h->end) == h->end); in r_alloc_check()
1026 assert ((POINTER) MEM_ROUNDUP (h->start) == h->start); in r_alloc_check()
1027 assert ((POINTER) MEM_ROUNDUP (h->bloc_start) == h->bloc_start); in r_alloc_check()
1033 assert (h->start <= (POINTER)h && (POINTER)(h+1) <= h->bloc_start); in r_alloc_check()
1048 assert ((POINTER) MEM_ROUNDUP (b->data) == b->data); in r_alloc_check()