Home
last modified time | relevance | path

Searched refs:pureRealloc (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/root/
H A Drmem.d82 return check(pureRealloc(p, size)); in xrealloc()
96 return check(pureRealloc(p, size)); in xrealloc_noscan()
304 pragma(mangle, "realloc") void* pureRealloc(void* ptr, size_t size) @system;
/netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.betterc/
H A Dtest19421.d9 p = pureRealloc(p, 2); in main()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/
H A Dmemory.d1056 void* pureRealloc()(void* ptr, size_t size) @system pure @nogc nothrow in pureRealloc() function
1087 scope(failure) p = pureRealloc(p, 0); in fun()
1088 p = pureRealloc(p, n *= 2); in fun()
1106 x = pureRealloc(x, 10); // normal reallocation
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/
H A Dmallocator.d52 import core.memory : pureRealloc; in reallocate()
61 auto p = cast(ubyte*) pureRealloc(b.ptr, s); in reallocate()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/common/
H A Doutbuffer.d26 pragma(mangle, "realloc") void* pureRealloc(void* ptr, size_t size);
189 auto p = cast(ubyte*) pureRealloc(data.ptr, size); in reserve()