Home
last modified time | relevance | path

Searched refs:alignedReallocate (Results 1 – 25 of 90) sorted by relevance

1234

/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/src/std/experimental/allocator/
H A Dmallocator.d307 return alignedReallocate(b, newSize, alignment); in reallocate()
319 bool alignedReallocate(ref void[] b, size_t s, uint a) shared in version()
336 bool alignedReallocate(ref void[] b, size_t s, uint a) shared in version()
381 AlignedMallocator.instance.alignedReallocate(s, 32, 32); in version()
385 AlignedMallocator.instance.alignedReallocate(s, 4, 32); in version()
387 AlignedMallocator.instance.alignedReallocate(s, 128, 32); in version()
392 AlignedMallocator.instance.alignedReallocate(c, 32, 32); in version()
398 assert(!AlignedMallocator.instance.alignedReallocate(c, size_t.max, 4096)); in version()
H A Dcommon.d383 bool alignedReallocate(Allocator)(ref Allocator alloc,
442 assert(alignedReallocate(a1, b, b.length, alignment));
447 alignedReallocate(a1, b, b.length, alignment + 1);
453 assert(alignedReallocate(a2, b, b.length + 1, alignment));
459 alignedReallocate(a2, b, b.length + 1, alignment + 1);
531 assert(a.alignedReallocate(b3, 2, 512)); in version()
664 if (a.alignedReallocate(b3, 1, 256)) in version()
668 assert(a.alignedReallocate(b3, 2, 512)); in version()
/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/src/std/experimental/allocator/building_blocks/
H A Dbucketizer.d157 bool alignedReallocate(ref void[] b, size_t size, uint a) in Bucketizer()
176 return common.alignedReallocate(this, b, size, a); in Bucketizer()
334 assert(a.alignedReallocate(b, 11, 4));
337 assert(a.alignedReallocate(b, 21, 16));
340 assert(a.alignedReallocate(b, 22, 16));
343 assert(a.alignedReallocate(b, 101, 16));
346 assert(a.alignedReallocate(b, 0, 16));
H A Dsegregator.d75 bool alignedReallocate(ref void[] b, size_t s, uint a); in Segregator()
201 bool alignedReallocate(ref void[] b, size_t s, uint a) in Segregator()
207 return _small.alignedReallocate(b, s, a); in Segregator()
213 return _large.alignedReallocate(b, s, a); in Segregator()
216 return .alignedReallocate(this, b, s, a); in Segregator()
429 assert(a.alignedReallocate(b, 256, 512));
431 assert(a.alignedReallocate(b, 42, 512));
516 assert((() nothrow @nogc => a.alignedReallocate(b, 100, 8))());
H A Dnull_allocator.d44 bool alignedReallocate(ref void[] b, size_t, uint) shared in alignedReallocate() function
83 assert(!a.alignedReallocate(b, 42, 0));
/dports/lang/gcc11/gcc-11.2.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dsegregator.d72 bool alignedReallocate(ref void[] b, size_t s); in Segregator()
204 return _small.alignedReallocate(b, s); in Segregator()
210 return _large.alignedReallocate(b, s); in Segregator()
213 return .alignedReallocate(this, b, s); in Segregator()
H A Dnull_allocator.d39 bool alignedReallocate(ref void[] b, size_t, uint) shared in alignedReallocate() function
76 assert(!NullAllocator.instance.alignedReallocate(b, 42, 0));
H A Dfallback_allocator.d154 bool alignedReallocate(ref void[] b, size_t newSize, uint a) in FallbackAllocator()
179 return primary.alignedReallocate(b, newSize, a) in FallbackAllocator()
185 return fallback.alignedReallocate(b, newSize, a) in FallbackAllocator()
/dports/lang/gcc10/gcc-10.3.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dsegregator.d72 bool alignedReallocate(ref void[] b, size_t s); in Segregator()
204 return _small.alignedReallocate(b, s); in Segregator()
210 return _large.alignedReallocate(b, s); in Segregator()
213 return .alignedReallocate(this, b, s); in Segregator()
H A Dnull_allocator.d39 bool alignedReallocate(ref void[] b, size_t, uint) shared in alignedReallocate() function
76 assert(!NullAllocator.instance.alignedReallocate(b, 42, 0));
H A Dfallback_allocator.d154 bool alignedReallocate(ref void[] b, size_t newSize, uint a) in FallbackAllocator()
179 return primary.alignedReallocate(b, newSize, a) in FallbackAllocator()
185 return fallback.alignedReallocate(b, newSize, a) in FallbackAllocator()
/dports/lang/gcc11-devel/gcc-11-20211009/libphobos/src/std/experimental/allocator/building_blocks/
H A Dsegregator.d72 bool alignedReallocate(ref void[] b, size_t s); in Segregator()
204 return _small.alignedReallocate(b, s); in Segregator()
210 return _large.alignedReallocate(b, s); in Segregator()
213 return .alignedReallocate(this, b, s); in Segregator()
H A Dnull_allocator.d39 bool alignedReallocate(ref void[] b, size_t, uint) shared in alignedReallocate() function
76 assert(!NullAllocator.instance.alignedReallocate(b, 42, 0));
/dports/devel/avr-gcc/gcc-10.2.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dsegregator.d72 bool alignedReallocate(ref void[] b, size_t s); in Segregator()
204 return _small.alignedReallocate(b, s); in Segregator()
210 return _large.alignedReallocate(b, s); in Segregator()
213 return .alignedReallocate(this, b, s); in Segregator()
H A Dnull_allocator.d39 bool alignedReallocate(ref void[] b, size_t, uint) shared in alignedReallocate() function
76 assert(!NullAllocator.instance.alignedReallocate(b, 42, 0));
/dports/lang/gcc9-devel/gcc-9-20211007/libphobos/src/std/experimental/allocator/building_blocks/
H A Dsegregator.d72 bool alignedReallocate(ref void[] b, size_t s); in Segregator()
204 return _small.alignedReallocate(b, s); in Segregator()
210 return _large.alignedReallocate(b, s); in Segregator()
213 return .alignedReallocate(this, b, s); in Segregator()
H A Dnull_allocator.d39 bool alignedReallocate(ref void[] b, size_t, uint) shared in alignedReallocate() function
76 assert(!NullAllocator.instance.alignedReallocate(b, 42, 0));
/dports/lang/gcc9/gcc-9.4.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dsegregator.d72 bool alignedReallocate(ref void[] b, size_t s); in Segregator()
204 return _small.alignedReallocate(b, s); in Segregator()
210 return _large.alignedReallocate(b, s); in Segregator()
213 return .alignedReallocate(this, b, s); in Segregator()
H A Dnull_allocator.d39 bool alignedReallocate(ref void[] b, size_t, uint) shared in alignedReallocate() function
76 assert(!NullAllocator.instance.alignedReallocate(b, 42, 0));
/dports/lang/gcc10-devel/gcc-10-20211008/libphobos/src/std/experimental/allocator/building_blocks/
H A Dsegregator.d72 bool alignedReallocate(ref void[] b, size_t s); in Segregator()
204 return _small.alignedReallocate(b, s); in Segregator()
210 return _large.alignedReallocate(b, s); in Segregator()
213 return .alignedReallocate(this, b, s); in Segregator()
H A Dnull_allocator.d39 bool alignedReallocate(ref void[] b, size_t, uint) shared in alignedReallocate() function
76 assert(!NullAllocator.instance.alignedReallocate(b, 42, 0));
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dsegregator.d72 bool alignedReallocate(ref void[] b, size_t s); in Segregator()
204 return _small.alignedReallocate(b, s); in Segregator()
210 return _large.alignedReallocate(b, s); in Segregator()
213 return .alignedReallocate(this, b, s); in Segregator()
H A Dnull_allocator.d39 bool alignedReallocate(ref void[] b, size_t, uint) shared in alignedReallocate() function
76 assert(!NullAllocator.instance.alignedReallocate(b, 42, 0));
/dports/lang/gcc9-aux/gcc-9.1.0/libphobos/src/std/experimental/allocator/building_blocks/
H A Dsegregator.d72 bool alignedReallocate(ref void[] b, size_t s); in Segregator()
204 return _small.alignedReallocate(b, s); in Segregator()
210 return _large.alignedReallocate(b, s); in Segregator()
213 return .alignedReallocate(this, b, s); in Segregator()
H A Dnull_allocator.d39 bool alignedReallocate(ref void[] b, size_t, uint) shared in alignedReallocate() function
76 assert(!NullAllocator.instance.alignedReallocate(b, 42, 0));

1234