Home
last modified time | relevance | path

Searched refs:enforceMalloc (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/internal/
H A Dcstring.d109 import std.internal.memory : enforceMalloc;
118 auto p = cast(CF*) enforceMalloc((str.length + 1) * CF.sizeof);
304 import std.internal.memory : enforceMalloc; in trustedReallocStack()
309 auto ptr = cast(To*) enforceMalloc(newlen * To.sizeof); in trustedReallocStack()
H A Dmemory.d29 void* enforceMalloc()(size_t size) @nogc nothrow pure @safe in enforceMalloc() function
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/
H A Dir.d475 import std.internal.memory : enforceMalloc;
485 auto memory = enforceMalloc(size)[0 .. size];
497 auto memory = enforceMalloc(size)[0 .. size];
988 import std.internal.memory : enforceMalloc;
1018 big = cast(Payload*) enforceMalloc(Payload.sizeof + T.sizeof*size); in this()
1097 auto newbig = cast(Payload*) enforceMalloc(Payload.sizeof + T.sizeof*length); in mutate()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/
H A Darray.d389 import std.internal.memory : enforceMalloc, enforceRealloc;
488 auto newPayloadPtr = cast(T*) enforceMalloc(sz);
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/uni/
H A Dpackage.d1811 import std.internal.memory : enforceMalloc; in alloc()
1818 auto ptr = cast(T*) enforceMalloc(nbytes); in alloc()
7573 import std.internal.memory : enforceMalloc;
7581 auto p = cast(ubyte*) enforceMalloc(raw_cap);
7623 import std.internal.memory : enforceMalloc;
7627 ubyte* p = cast(ubyte*) enforceMalloc(nbytes);
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Drandom.d3131 import std.internal.memory : enforceMalloc; in this()
3136 void* nbuffer = enforceMalloc(nBytesToAlloc); in this()
H A Dtypecons.d6690 import std.internal.memory : enforceMalloc;
6691 _store = cast(Impl*) enforceMalloc(Impl.sizeof);