Home
last modified time | relevance | path

Searched refs:_blocks (Results 1 – 25 of 578) sorted by relevance

12345678910>>...24

/dports/math/gap/gap-4.11.0/pkg/semigroups-3.2.3/libsemigroups/src/
H A Duf.cpp36 _blocks(nullptr), in UF()
41 _blocks->reserve(copy._blocks->size()); in UF()
56 _blocks(nullptr), in UF()
64 _blocks(nullptr), in UF()
76 if (_blocks != nullptr) { in ~UF()
78 delete _blocks->at(i); in ~UF()
80 delete _blocks; in ~UF()
97 if (_blocks == nullptr) { in get_blocks()
113 _blocks->at(ii)->reserve(_blocks->at(ii)->size() in get_blocks()
115 _blocks->at(ii)->insert(_blocks->at(ii)->end(), in get_blocks()
[all …]
H A Dblocks.cpp40 : _blocks(blocks), in Blocks()
44 LIBSEMIGROUPS_ASSERT(_blocks->size() != 0); in Blocks()
54 : _blocks(nullptr), in Blocks()
58 if (copy._blocks != nullptr) { in Blocks()
60 _blocks = new std::vector<uint32_t>(*copy._blocks); in Blocks()
74 return (*(this->_blocks) == *(that._blocks) in operator ==()
83 if (((*this->_blocks)[i] != (*that._blocks)[i])) { in operator <()
84 return (*this->_blocks)[i] < (*that._blocks)[i]; in operator <()
109 size_t n = _blocks->size(); in hash_value()
110 for (auto const& index : *_blocks) { in hash_value()
/dports/math/libsemigroups/libsemigroups-1.3.7/src/
H A Duf-old.cpp36 _blocks(nullptr), in UFOld()
41 _blocks->reserve(copy._blocks->size()); in UFOld()
56 _blocks(nullptr), in UFOld()
64 _blocks(nullptr), in UFOld()
76 if (_blocks != nullptr) { in ~UFOld()
78 delete _blocks->at(i); in ~UFOld()
80 delete _blocks; in ~UFOld()
97 if (_blocks == nullptr) { in get_blocks()
113 _blocks->at(ii)->reserve(_blocks->at(ii)->size() in get_blocks()
115 _blocks->at(ii)->insert(_blocks->at(ii)->end(), in get_blocks()
[all …]
H A Dblocks.cpp40 : _blocks(blocks), in Blocks()
44 LIBSEMIGROUPS_ASSERT(_blocks->size() != 0); in Blocks()
54 : _blocks(nullptr), in Blocks()
58 if (copy._blocks != nullptr) { in Blocks()
60 _blocks = new std::vector<uint32_t>(*copy._blocks); in Blocks()
74 return (*(this->_blocks) == *(that._blocks) in operator ==()
83 if (((*this->_blocks)[i] != (*that._blocks)[i])) { in operator <()
84 return (*this->_blocks)[i] < (*that._blocks)[i]; in operator <()
109 size_t n = _blocks->size(); in hash_value()
110 for (auto const& index : *_blocks) { in hash_value()
/dports/multimedia/zoneminder/zoneminder-1.36.5/web/api/lib/Cake/View/
H A DViewBlock.php45 protected $_blocks = array(); variable in ViewBlock
97 if (empty($this->_blocks[$name])) {
120 $this->_blocks[$active] = '';
122 $this->_blocks[$active] .= $content;
144 $this->_blocks[$name] = '';
147 $this->_blocks[$name] = $value . $this->_blocks[$name];
149 $this->_blocks[$name] .= $value;
193 if (!isset($this->_blocks[$name])) {
196 return $this->_blocks[$name];
206 return isset($this->_blocks[$name]);
[all …]
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Razor/Parser/
H A DMarkupRewriter.cs12 private Stack<BlockBuilder> _blocks = new Stack<BlockBuilder>(); field in System.Web.Razor.Parser.MarkupRewriter
26 get { return _blocks.Count > 0 ? _blocks.Peek() : null; }
32 Debug.Assert(_blocks.Count == 1); in Rewrite()
33 return _blocks.Pop().Build(); in Rewrite()
43 _blocks.Peek().Children.Add(newNode); in VisitBlock()
51 _blocks.Push(builder); in VisitBlock()
55 if (_blocks.Count > 1) in VisitBlock()
57 _blocks.Pop(); in VisitBlock()
58 _blocks.Peek().Children.Add(builder.Build()); in VisitBlock()
70 _blocks.Peek().Children.Add(newNode); in VisitSpan()
[all …]
/dports/devel/pear-Horde_Core/Horde_Core-2.31.14/lib/Horde/Core/Block/
H A DCollection.php32 protected $_blocks; variable in Horde_Core_Block_Collection
162 foreach ($this->_blocks as $app => $app_blocks) {
396 return isset($this->_blocks[$app][$block])
397 ? $this->_blocks[$app][$block]['name']
413 if (!isset($this->_blocks[$app][$block])) {
417 if (!isset($this->_blocks[$app][$block]['params'])) {
422 if (isset($this->_blocks[$app][$block]['params']) &&
489 if (isset($this->_blocks)) {
494 $this->_blocks = array();
516 $this->_blocks,
[all …]
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/lib/rfnoc/
H A Dblock_container.cpp37 _blocks.insert(block); in register_block()
45 for (auto it = _blocks.cbegin(); it != _blocks.cend(); ++it) { in find_blocks()
63 _blocks.cbegin(), _blocks.cend(), [block_id](noc_block_base::sptr block) { in has_block()
71 _blocks.cbegin(), _blocks.cend(), [block_id](noc_block_base::sptr block) { in get_block()
74 if (block_itr == _blocks.cend()) { in get_block()
84 for (auto it = _blocks.begin(); it != _blocks.end(); ++it) { in shutdown()
92 for (auto it = _blocks.begin(); it != _blocks.end(); ++it) { in init_props()
/dports/math/gap/gap-4.11.0/pkg/semigroups-3.2.3/libsemigroups/include/
H A Dblocks.hpp63 : _blocks(nullptr), _lookup(nullptr), _nr_blocks(0), _rank(0) {} in Blocks()
127 delete _blocks; in ~Blocks()
172 return (_nr_blocks == 0 ? 0 : _blocks->size()); in degree()
186 LIBSEMIGROUPS_ASSERT(pos < _blocks->size()); in block()
187 return (*_blocks)[pos]; in block()
287 LIBSEMIGROUPS_ASSERT(_blocks != nullptr); in cbegin()
288 return _blocks->cbegin(); in cbegin()
302 LIBSEMIGROUPS_ASSERT(_blocks != nullptr); in cend()
303 return _blocks->cend(); in cend()
307 std::vector<uint32_t>* _blocks; member in libsemigroups::Blocks
/dports/math/libsemigroups/libsemigroups-1.3.7/include/libsemigroups/
H A Dblocks.hpp63 : _blocks(nullptr), _lookup(nullptr), _nr_blocks(0), _rank(0) {} in Blocks()
127 delete _blocks; in ~Blocks()
172 return (_nr_blocks == 0 ? 0 : _blocks->size()); in degree()
186 LIBSEMIGROUPS_ASSERT(pos < _blocks->size()); in block()
187 return (*_blocks)[pos]; in block()
287 LIBSEMIGROUPS_ASSERT(_blocks != nullptr); in cbegin()
288 return _blocks->cbegin(); in cbegin()
302 LIBSEMIGROUPS_ASSERT(_blocks != nullptr); in cend()
303 return _blocks->cend(); in cend()
307 std::vector<uint32_t>* _blocks; member in libsemigroups::Blocks
/dports/games/valyriatear/ValyriaTear-1.1.0/src/engine/video/
H A Dtexture.cpp225 _open_list_head = &_blocks[0]; in FixedTexSheet()
229 _blocks[i].image = nullptr; in FixedTexSheet()
230 _blocks[i].next = &_blocks[i + 1]; in FixedTexSheet()
231 _blocks[i].block_index = i; in FixedTexSheet()
244 if (_blocks != nullptr) { in ~FixedTexSheet()
245 delete[] _blocks; in ~FixedTexSheet()
246 _blocks = nullptr; in ~FixedTexSheet()
453 if (_blocks != nullptr) { in ~VariableTexSheet()
454 delete [] _blocks; in ~VariableTexSheet()
455 _blocks = nullptr; in ~VariableTexSheet()
[all …]
/dports/devel/kdevelop/kdevelop-21.12.3/plugins/qmljs/3rdparty/qtcreator-libs/qmljs/parser/
H A Dqmljsmemorypool_p.h60 : _blocks(0), in MemoryPool()
69 if (_blocks) { in ~MemoryPool()
71 if (char *b = _blocks[i]) in ~MemoryPool()
75 free(_blocks); in ~MemoryPool()
109 _blocks = (char **) realloc(_blocks, sizeof(char *) * _allocatedBlocks); in allocate_helper()
110 Q_CHECK_PTR(_blocks); in allocate_helper()
113 _blocks[index] = 0; in allocate_helper()
116 char *&block = _blocks[_blockCount]; in allocate_helper()
132 char **_blocks;
/dports/games/allacrost/allacrost-1.0.2/src/engine/video/
H A Dtexture.cpp221 _open_list_head = &_blocks[0]; in FixedTexSheet()
225 _blocks[i].image = NULL; in FixedTexSheet()
226 _blocks[i].next = &_blocks[i + 1]; in FixedTexSheet()
227 _blocks[i].block_index = i; in FixedTexSheet()
241 delete[] _blocks; in ~FixedTexSheet()
313 _blocks[block_index].image = NULL; in RemoveTexture()
376 if (_blocks[i].image != NULL) { in GetNumberTextures()
444 delete[] _blocks; in ~VariableTexSheet()
520 if (_blocks[index].image) { in InsertTexture()
525 _blocks[index].image = img; in InsertTexture()
[all …]
/dports/devel/poco/poco-1.10.1-all/Foundation/src/
H A DMemoryPool.cpp35 _blocks.reserve(r); in MemoryPool()
41 _blocks.push_back(new char[_blockSize]); in MemoryPool()
60 for (auto p: _blocks) in clear()
64 _blocks.clear(); in clear()
72 if (_blocks.empty()) in get()
83 char* ptr = _blocks.back(); in get()
84 _blocks.pop_back(); in get()
96 _blocks.push_back(reinterpret_cast<char*>(ptr)); in release()
/dports/devel/qbs/qbs-src-1.21.0/src/lib/corelib/parser/
H A Dqmljsmemorypool_p.h71 : _blocks(nullptr), in MemoryPool()
80 if (_blocks) { in ~MemoryPool()
82 if (char *b = _blocks[i]) in ~MemoryPool()
86 free(_blocks); in ~MemoryPool()
118 _blocks = (char **) realloc(_blocks, sizeof(char *) * _allocatedBlocks); in allocate_helper()
121 _blocks[index] = nullptr; in allocate_helper()
124 char *&block = _blocks[_blockCount]; in allocate_helper()
138 char **_blocks;
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/glsl/
H A Dglslmemorypool.cpp33 : _blocks(nullptr), in MemoryPool()
42 if (_blocks) { in ~MemoryPool()
44 if (char *b = _blocks[i]) in ~MemoryPool()
48 std::free(_blocks); in ~MemoryPool()
68 _blocks = (char **) realloc(_blocks, sizeof(char *) * _allocatedBlocks); in allocate_helper()
71 _blocks[index] = nullptr; in allocate_helper()
74 char *&block = _blocks[_blockCount]; in allocate_helper()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/3rdparty/cplusplus/
H A DMemoryPool.cpp30 : _blocks(nullptr), in MemoryPool()
39 if (_blocks) { in ~MemoryPool()
41 if (char *b = _blocks[i]) in ~MemoryPool()
45 std::free(_blocks); in ~MemoryPool()
65 _blocks = (char **) realloc(_blocks, sizeof(char *) * _allocatedBlocks); in allocate_helper()
68 _blocks[index] = nullptr; in allocate_helper()
71 char *&block = _blocks[_blockCount]; in allocate_helper()
/dports/games/scummvm/scummvm-2.5.1/engines/ultima/nuvie/sound/decoder/wave/
H A Draw.cpp70 assert(_blocks.size() > 0); in RawStream()
83 _curBlock = _blocks.end(); in RawStream()
90 for (RawStreamBlockList::const_iterator i = _blocks.begin(); i != _blocks.end(); ++i) { in RawStream()
219 _curBlock = _blocks.end(); in fillBuffer()
233 if (_blockLeft == 0 && _curBlock != _blocks.end()) { in updateBlockIfNeeded()
240 if (_curBlock != _blocks.end()) { in updateBlockIfNeeded()
247 _curBlock = _blocks.end(); in updateBlockIfNeeded()
258 _curBlock = _blocks.end(); in seek()
267 for (_curBlock = _blocks.begin(); _curBlock != _blocks.end(); ++_curBlock) { in seek()
276 if (_curBlock == _blocks.end()) { in seek()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/audio/decoders/
H A Dvoc.cpp122 BlockList _blocks; member in Audio::__anonee099cb60111::VocStream
156 _length(), _blocks(), _curBlock(_blocks.end()), _blockLeft(0), _buffer() { in VocStream()
211 _curBlock = _blocks.end(); in updateBlockIfNeeded()
253 _curBlock = _blocks.end(); in fillBuffer()
268 _curBlock = _blocks.end(); in seek()
277 for (_curBlock = _blocks.begin(); _curBlock != _blocks.end(); ++_curBlock) { in seek()
301 _curBlock = _blocks.end(); in seek()
378 if (_blocks.size() > 0) { in preProcess()
386 _blocks.erase(lastBlock); in preProcess()
504 _blocks.push_back(block); in preProcess()
[all …]
/dports/games/residualvm/residualvm-0.3.1/audio/decoders/
H A Dvoc.cpp122 BlockList _blocks; member in Audio::__anon0430aa4b0111::VocStream
156 _length(), _blocks(), _curBlock(_blocks.end()), _blockLeft(0), _buffer() { in VocStream()
211 _curBlock = _blocks.end(); in updateBlockIfNeeded()
253 _curBlock = _blocks.end(); in fillBuffer()
268 _curBlock = _blocks.end(); in seek()
277 for (_curBlock = _blocks.begin(); _curBlock != _blocks.end(); ++_curBlock) { in seek()
301 _curBlock = _blocks.end(); in seek()
378 if (_blocks.size() > 0) { in preProcess()
386 _blocks.erase(lastBlock); in preProcess()
504 _blocks.push_back(block); in preProcess()
[all …]
/dports/games/scummvm/scummvm-2.5.1/audio/decoders/
H A Dvoc.cpp122 BlockList _blocks; member in Audio::__anon5fb37ac70111::VocStream
156 _length(), _blocks(), _curBlock(_blocks.end()), _blockLeft(0), _buffer() { in VocStream()
211 _curBlock = _blocks.end(); in updateBlockIfNeeded()
253 _curBlock = _blocks.end(); in fillBuffer()
268 _curBlock = _blocks.end(); in seek()
277 for (_curBlock = _blocks.begin(); _curBlock != _blocks.end(); ++_curBlock) { in seek()
301 _curBlock = _blocks.end(); in seek()
378 if (_blocks.size() > 0) { in preProcess()
386 _blocks.erase(lastBlock); in preProcess()
504 _blocks.push_back(block); in preProcess()
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/qmljs/parser/
H A Dqmljsmemorypool_p.h61 if (_blocks) { in ~MemoryPool()
63 if (char *b = _blocks[i]) in ~MemoryPool()
67 free(_blocks); in ~MemoryPool()
111_blocks = reinterpret_cast<char **>(realloc(_blocks, sizeof(char *) * size_t(_allocatedBlocks))); in allocate_helper()
112 Q_CHECK_PTR(_blocks); in allocate_helper()
115 _blocks[index] = nullptr; in allocate_helper()
118 char *&block = _blocks[_blockCount]; in allocate_helper()
134 char **_blocks = nullptr;
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/qml/common/
H A Dqqmljsmemorypool_p.h76 if (_blocks) { in ~MemoryPool()
78 if (char *b = _blocks[i]) in ~MemoryPool()
82 free(_blocks); in ~MemoryPool()
126_blocks = reinterpret_cast<char **>(realloc(_blocks, sizeof(char *) * size_t(_allocatedBlocks))); in allocate_helper()
127 Q_CHECK_PTR(_blocks); in allocate_helper()
130 _blocks[index] = nullptr; in allocate_helper()
133 char *&block = _blocks[_blockCount]; in allocate_helper()
149 char **_blocks = nullptr;
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/qml/common/
H A Dqqmljsmemorypool_p.h76 if (_blocks) { in ~MemoryPool()
78 if (char *b = _blocks[i]) in ~MemoryPool()
82 free(_blocks); in ~MemoryPool()
126_blocks = reinterpret_cast<char **>(realloc(_blocks, sizeof(char *) * size_t(_allocatedBlocks))); in allocate_helper()
127 Q_CHECK_PTR(_blocks); in allocate_helper()
130 _blocks[index] = nullptr; in allocate_helper()
133 char *&block = _blocks[_blockCount]; in allocate_helper()
149 char **_blocks = nullptr;
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/io_import_dxf/dxfgrabber/
H A Dblockssection.py18 self._blocks = dict()
41 self._blocks[block.name] = block
45 return len(self._blocks)
48 return iter(self._blocks.values())
51 return name in self._blocks
54 return self._blocks[name]
57 return self._blocks.get(name, default)

12345678910>>...24