Home
last modified time | relevance | path

Searched refs:_startIdx (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dbitmapped_block.d123 private size_t _startIdx; member
216 while (_startIdx < _control.rep.length in adjustStartIdx()
217 && _control.rep[_startIdx] == ulong.max) in adjustStartIdx()
219 ++_startIdx; in adjustStartIdx()
271 foreach (i; _startIdx .. _control.rep.length) in allocate()
279 if (i == _startIdx) in allocate()
428 foreach (i; _startIdx .. _control.rep.length) in smallAlloc()
460 if (_startIdx == _control._rep.length) in hugeAlloc()
465 auto i = _control.findZeros(blocks, _startIdx * 64); in hugeAlloc()
598 if (_startIdx > wordIdx) _startIdx = wordIdx; in deallocate()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dbitmapped_block.d74 private size_t _startIdx; in BitmappedBlockImpl() local
229 while (_startIdx < _control.rep.length && _control.rep[_startIdx] == ulong.max) in BitmappedBlockImpl()
235 auto localStart = _startIdx + 1; in BitmappedBlockImpl()
236 _startIdx = localStart; in BitmappedBlockImpl()
240 ++_startIdx; in BitmappedBlockImpl()
312 foreach (i; _startIdx .. _control.rep.length) in BitmappedBlockImpl()
328 if (i == _startIdx) in BitmappedBlockImpl()
547 foreach (i; _startIdx .. _control.rep.length) in BitmappedBlockImpl()
602 if (_startIdx == _control._rep.length) in BitmappedBlockImpl()
608 auto i = (cast(BitVector)_control).findZeros(blocks, _startIdx * 64); in BitmappedBlockImpl()
[all …]