Searched refs:pureRealloc (Results 1 – 5 of 5) sorted by relevance
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/root/ |
| H A D | rmem.d | 82 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 D | test19421.d | 9 p = pureRealloc(p, 2); in main()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/ |
| H A D | memory.d | 1056 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 D | mallocator.d | 52 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 D | outbuffer.d | 26 pragma(mangle, "realloc") void* pureRealloc(void* ptr, size_t size); 189 auto p = cast(ubyte*) pureRealloc(data.ptr, size); in reserve()
|