Home
last modified time | relevance | path

Searched refs:pureMalloc (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/array/
H A Dcasting.d29 import core.memory : pureMalloc; in onArrayCastError()
34 char* msg = cast(char *)pureMalloc(msgLength); in onArrayCastError()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/root/
H A Drmem.d44 return size ? check(pureMalloc(size)) : null; in xmalloc()
52 return size ? check(pureMalloc(size)) : null; in xmalloc_noscan()
298 pragma(mangle, "malloc") void* pureMalloc(size_t size) @trusted;
/netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.betterc/
H A Dtest19421.d8 auto p = pureMalloc(1); in main()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/
H A Dmemory.d1040 void* pureMalloc()(size_t size) @trusted pure @nogc nothrow in pureMalloc() function
1085 void* p = pureMalloc(n); in fun()
1102 void* x = pureMalloc(10); // normal allocation
1120 void* z = pureMalloc(size_t.max & ~255); // won't affect `errno`
H A Dlifetime.d2667 import core.memory : pureMalloc;
2669 void* p = pureMalloc(init.length);
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/
H A Dmallocator.d33 import core.memory : pureMalloc; in allocate()
35 auto p = pureMalloc(bytes); in allocate()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/
H A Dbacktracking.d12 import core.memory : pureMalloc, pureFree;
609 auto mem = pureMalloc(initialMemory(re))[0 .. initialMemory(re)]; in matchImpl()
638 auto mem = pureMalloc(initialMemory(re))[0 .. initialMemory(re)]; in matchImpl()
980 auto mem = pureMalloc(initialMemory(re))[0 .. initialMemory(re)]; in ctGenGroup()
1470 import core.memory : pureMalloc, pureFree; in ctGenRegEx()
H A Dir.d889 import core.memory : pureMalloc; in mallocArray()
890 return (cast(T*) pureMalloc(len * T.sizeof))[0 .. len]; in mallocArray()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/common/
H A Doutbuffer.d25 pragma(mangle, "malloc") void* pureMalloc(size_t);
180 auto p = cast(ubyte*) pureMalloc(size); in reserve()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dtypecons.d5357 import core.memory : pureMalloc;
5371 _store = cast(Impl*) pureMalloc(Impl.sizeof);
5385 _store = cast(Impl*) pureMalloc(Impl.sizeof);
H A Duni.d6889 auto p = cast(ubyte*) pureMalloc(raw_cap); in this()
6934 ubyte* p = cast(ubyte*) pureMalloc(nbytes); in convertToBig()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/
H A Dsorting.d3127 import core.memory : pureMalloc; in trustedMalloc()
3131 T[] result = (cast(T*) pureMalloc(nbytes))[0 .. len]; in trustedMalloc()