HomeSort by: relevance | last modified time | path
    Searched refs:Realloc (Results 1 - 5 of 5) sorted by relevancy

  /src/bin/csh/
alloc.c 63 Realloc(void *p, size_t n)
67 if ((ptr = realloc(p, n)) == NULL) {
csh.h 88 #define xrealloc(p, i) Realloc(p, i)
extern.h 316 void *Realloc(void *, size_t);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common.h 453 Realloc(new_capacity);
478 Realloc(new_size);
511 void Realloc(uptr new_capacity) {
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 346 TEST(MemorySanitizer, Realloc) {
347 S4 *x = (int*)Ident(realloc(0, sizeof(S4)));
350 x = (int*)Ident(realloc(x, 2 * sizeof(S4)));
353 x = (int*)Ident(realloc(x, 3 * sizeof(S4)));
357 x[2] = 1; // Init this here. Check that after realloc it is poisoned again.
358 x = (int*)Ident(realloc(x, 2 * sizeof(S4)));
361 x = (int*)Ident(realloc(x, 3 * sizeof(S4)));

Completed in 16 milliseconds