Home
last modified time | relevance | path

Searched refs:alignedAllocate (Results 1 – 25 of 106) sorted by relevance

12345

/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/src/std/experimental/allocator/building_blocks/
H A Dbucketizer.d96 void[] alignedAllocate(size_t bytes, uint alignment) in Bucketizer()
102 auto result = a.alignedAllocate(actual, alignment); in Bucketizer()
309 auto b = a.alignedAllocate(100, 16);
311 assert(a.alignedAllocate(42, 16) is null);
312 assert(a.alignedAllocate(0, 16) is null);
331 auto b = a.alignedAllocate(1, 4);
H A Dallocator_list.d231 void[] alignedAllocate(size_t s, uint theAlignment) in alignedAllocate() function
684 auto b1 = a.alignedAllocate(1024 * 8192, 1024);
690 b1 = a.alignedAllocate(0, 1024);
712 auto b1 = a.alignedAllocate(0, 1);
715 b1 = a.alignedAllocate(1, 0);
718 b1 = a.alignedAllocate(0, 0);
733 auto b0 = a.alignedAllocate(1, 1024);
738 auto b1 = a.alignedAllocate(1024 * 4096, 1024);
743 auto b2 = a.alignedAllocate(1024, 128);
934 b3 = a.alignedAllocate(70 * pageSize, alignment);
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/src/std/experimental/allocator/
H A Dmallocator.d227 return alignedAllocate(bytes, alignment); in allocate()
238 void[] alignedAllocate(size_t bytes, uint a) shared in version()
270 void[] alignedAllocate(size_t bytes, uint a) shared in version()
344 auto p = alignedAllocate(s, a); in version()
368 auto buffer = AlignedMallocator.instance.alignedAllocate(1024 * 1024 * 4,
379 void[] s = AlignedMallocator.instance.alignedAllocate(16, 32); in version()
/dports/math/blaze/blaze-3.8/blaze/util/
H A DMemory.h82 inline byte_t* alignedAllocate( size_t size, size_t alignment ) function
162 return reinterpret_cast<T*>( alignedAllocate( size*sizeof(T), alignment ) );
193 byte_t* const raw( alignedAllocate( size*sizeof(T)+headersize, alignment ) );
/dports/lang/gcc11/gcc-11.2.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dquantizer.d88 void[] alignedAllocate(size_t n, uint) in Quantizer()
90 auto result = parent.alignedAllocate(goodAllocSize(n)); in Quantizer()
174 b = alignedAllocate(s); in Quantizer()
H A Dsegregator.d49 void[] alignedAllocate(size_t, uint); in Segregator()
144 void[] alignedAllocate(size_t s, uint a) in Segregator()
147 ? _small.alignedAllocate(s, a) in Segregator()
148 : _large.alignedAllocate(s, a); in Segregator()
H A Dfallback_allocator.d70 void[] alignedAllocate(size_t s, uint a) in FallbackAllocator()
74 auto result = primary.alignedAllocate(s, a); in FallbackAllocator()
79 auto result = fallback.alignedAllocate(s, a); in FallbackAllocator()
164 auto b1 = to.alignedAllocate(newSize, a); in FallbackAllocator()
/dports/lang/gcc10/gcc-10.3.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dquantizer.d88 void[] alignedAllocate(size_t n, uint) in Quantizer()
90 auto result = parent.alignedAllocate(goodAllocSize(n)); in Quantizer()
174 b = alignedAllocate(s); in Quantizer()
H A Dsegregator.d49 void[] alignedAllocate(size_t, uint); in Segregator()
144 void[] alignedAllocate(size_t s, uint a) in Segregator()
147 ? _small.alignedAllocate(s, a) in Segregator()
148 : _large.alignedAllocate(s, a); in Segregator()
/dports/lang/gcc11-devel/gcc-11-20211009/libphobos/src/std/experimental/allocator/building_blocks/
H A Dquantizer.d88 void[] alignedAllocate(size_t n, uint) in Quantizer()
90 auto result = parent.alignedAllocate(goodAllocSize(n)); in Quantizer()
174 b = alignedAllocate(s); in Quantizer()
H A Dsegregator.d49 void[] alignedAllocate(size_t, uint); in Segregator()
144 void[] alignedAllocate(size_t s, uint a) in Segregator()
147 ? _small.alignedAllocate(s, a) in Segregator()
148 : _large.alignedAllocate(s, a); in Segregator()
/dports/devel/avr-gcc/gcc-10.2.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dquantizer.d88 void[] alignedAllocate(size_t n, uint) in Quantizer()
90 auto result = parent.alignedAllocate(goodAllocSize(n)); in Quantizer()
174 b = alignedAllocate(s); in Quantizer()
H A Dsegregator.d49 void[] alignedAllocate(size_t, uint); in Segregator()
144 void[] alignedAllocate(size_t s, uint a) in Segregator()
147 ? _small.alignedAllocate(s, a) in Segregator()
148 : _large.alignedAllocate(s, a); in Segregator()
/dports/lang/gcc9-devel/gcc-9-20211007/libphobos/src/std/experimental/allocator/building_blocks/
H A Dquantizer.d88 void[] alignedAllocate(size_t n, uint) in Quantizer()
90 auto result = parent.alignedAllocate(goodAllocSize(n)); in Quantizer()
174 b = alignedAllocate(s); in Quantizer()
H A Dsegregator.d49 void[] alignedAllocate(size_t, uint); in Segregator()
144 void[] alignedAllocate(size_t s, uint a) in Segregator()
147 ? _small.alignedAllocate(s, a) in Segregator()
148 : _large.alignedAllocate(s, a); in Segregator()
/dports/lang/gcc9/gcc-9.4.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dquantizer.d88 void[] alignedAllocate(size_t n, uint) in Quantizer()
90 auto result = parent.alignedAllocate(goodAllocSize(n)); in Quantizer()
174 b = alignedAllocate(s); in Quantizer()
H A Dsegregator.d49 void[] alignedAllocate(size_t, uint); in Segregator()
144 void[] alignedAllocate(size_t s, uint a) in Segregator()
147 ? _small.alignedAllocate(s, a) in Segregator()
148 : _large.alignedAllocate(s, a); in Segregator()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dquantizer.d88 void[] alignedAllocate(size_t n, uint) in Quantizer()
90 auto result = parent.alignedAllocate(goodAllocSize(n)); in Quantizer()
174 b = alignedAllocate(s); in Quantizer()
H A Dsegregator.d49 void[] alignedAllocate(size_t, uint); in Segregator()
144 void[] alignedAllocate(size_t s, uint a) in Segregator()
147 ? _small.alignedAllocate(s, a) in Segregator()
148 : _large.alignedAllocate(s, a); in Segregator()
/dports/lang/gcc10-devel/gcc-10-20211008/libphobos/src/std/experimental/allocator/building_blocks/
H A Dquantizer.d88 void[] alignedAllocate(size_t n, uint) in Quantizer()
90 auto result = parent.alignedAllocate(goodAllocSize(n)); in Quantizer()
174 b = alignedAllocate(s); in Quantizer()
H A Dsegregator.d49 void[] alignedAllocate(size_t, uint); in Segregator()
144 void[] alignedAllocate(size_t s, uint a) in Segregator()
147 ? _small.alignedAllocate(s, a) in Segregator()
148 : _large.alignedAllocate(s, a); in Segregator()
/dports/lang/gcc9-aux/gcc-9.1.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dquantizer.d88 void[] alignedAllocate(size_t n, uint) in Quantizer()
90 auto result = parent.alignedAllocate(goodAllocSize(n)); in Quantizer()
174 b = alignedAllocate(s); in Quantizer()
H A Dsegregator.d49 void[] alignedAllocate(size_t, uint); in Segregator()
144 void[] alignedAllocate(size_t s, uint a) in Segregator()
147 ? _small.alignedAllocate(s, a) in Segregator()
148 : _large.alignedAllocate(s, a); in Segregator()
/dports/lang/gcc11/gcc-11.2.0/libphobos/src/std/experimental/allocator/
H A Dmallocator.d216 return alignedAllocate(bytes, alignment); in allocate()
227 void[] alignedAllocate(size_t bytes, uint a) shared in version()
250 void[] alignedAllocate(size_t bytes, uint a) shared in version()
330 auto buffer = AlignedMallocator.instance.alignedAllocate(1024 * 1024 * 4,
/dports/lang/gcc10/gcc-10.3.0/libphobos/src/std/experimental/allocator/
H A Dmallocator.d216 return alignedAllocate(bytes, alignment); in allocate()
227 void[] alignedAllocate(size_t bytes, uint a) shared in version()
250 void[] alignedAllocate(size_t bytes, uint a) shared in version()
330 auto buffer = AlignedMallocator.instance.alignedAllocate(1024 * 1024 * 4,

12345