Home | History | Annotate | Download | only in tests

Lines Matching full:200

122     ptr = (char*)realloc(ptr, 200);
124 ASSERT_LE(200U, malloc_usable_size(ptr));
129 memset(ptr, 0x45, 200);
134 for (size_t i = 0; i < 200; i++) {
156 ptr = (char *)realloc(ptr, 200);
158 ASSERT_LE(200U, malloc_usable_size(ptr));
167 char *ptr = (char *)malloc(200);
169 ASSERT_LE(200U, malloc_usable_size(ptr));
170 memset(ptr, 67, 200);
183 char *ptr = (char *)malloc(200);
185 ASSERT_LE(200U, malloc_usable_size(ptr));
186 memset(ptr, 0x23, 200);
225 ptr = (char *)realloc(ptr, 200);
227 ASSERT_LE(200U, malloc_usable_size(ptr));
236 char *ptr = (char *)calloc(1, 200);
238 ASSERT_LE(200U, malloc_usable_size(ptr));
251 char *ptr = (char *)calloc(1, 200);
253 ASSERT_LE(200U, malloc_usable_size(ptr));