Home | History | Annotate | Download | only in tests

Lines Matching full:realloc

59   // Memalign and then realloc the pointer a couple of times.
67 ptr = (char*)realloc(ptr, 200);
76 ptr = (char*)realloc(ptr, 300);
84 ptr = (char*)realloc(ptr, 250);
96 // Realloc to a larger size, malloc is used for the original allocation.
102 ptr = (char *)realloc(ptr, 200);
113 // Realloc to a smaller size, malloc is used for the original allocation.
119 ptr = (char *)realloc(ptr, 100);
136 ptr = (char *)realloc(ptr, 100);
143 ptr = (char*)realloc(ptr, 50);
150 ptr = (char*)realloc(ptr, 150);
158 ptr = (char*)realloc(ptr, 425);
168 // Realloc to a larger size, calloc is used for the original allocation.
173 ptr = (char *)realloc(ptr, 200);
184 // Realloc to a smaller size, calloc is used for the original allocation.
189 ptr = (char *)realloc(ptr, 100);
205 ptr = (char *)realloc(ptr, 100);
212 ptr = (char*)realloc(ptr, 50);
219 ptr = (char*)realloc(ptr, 150);
227 ptr = (char*)realloc(ptr, 425);