Lines Matching refs:realloc
28 * @tc.desc: Verify realloc process success when first args is null second args is 50.
33 void *ret = realloc(NULL, RELLOCTLEN);
39 * @tc.desc: Verify realloc process success when first args is null second args is 0.
44 void *ret = realloc(NULL, 0);
50 * @tc.desc: Verify realloc process fail when first args is null second args is -100.
55 void *ret = realloc(NULL, INVALIDLEN);
61 * @tc.desc: Verify realloc process success when first args is not null second args is 200
67 void *ret = realloc(cptr, RELLOCTLEN + RELLOCTLEN);
73 * @tc.desc: Verify realloc process success when first args is not null second args is 100
79 void *ret = realloc(cptr, RELLOCTLEN);
85 * @tc.desc: Verify realloc process success when first args is not null second args is 50
91 void *ret = realloc(cptr, RELLOCTLEN / 2);