Home
last modified time | relevance | path

Searched refs:_currentSize (Results 1 – 24 of 24) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime.Serialization.Formatters/src/System/Runtime/Serialization/
H A DObjectIDGenerator.cs23 internal int _currentSize; field in System.Runtime.Serialization.ObjectIDGenerator
31 _currentSize = s_sizes[0]; in ObjectIDGenerator()
32 _ids = new long[_currentSize * NumBins]; in ObjectIDGenerator()
33 _objs = new object[_currentSize * NumBins]; in ObjectIDGenerator()
45 int hashIncrement = (1 + ((hashcode & 0x7FFFFFFF) % (_currentSize - 2))); in FindElement()
48 int pos = ((hashcode & 0x7FFFFFFF) % _currentSize) * NumBins; in FindElement()
92 if (_currentCount > (_currentSize * NumBins) / 2) in GetId()
134 for (int currSize = _currentSize; i < s_sizes.Length && s_sizes[i] <= currSize; i++) ; in Rehash()
140 _currentSize = s_sizes[i]; in Rehash()
142 long[] newIds = new long[_currentSize * NumBins]; in Rehash()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/query/
H A Dlru_key_value.h64 LRUKeyValue(size_t maxSize) : _maxSize(maxSize), _currentSize(0){}; in LRUKeyValue()
102 _currentSize--; in add()
107 _currentSize++; in add()
111 if (_currentSize > _maxSize) { in add()
117 _currentSize--; in add()
118 invariant(_currentSize == _maxSize); in add()
170 _currentSize--; in remove()
183 _currentSize = 0; in clear()
197 return _currentSize; in size()
218 size_t _currentSize; variable
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/util/
H A Dqueue.h102 _currentSize += tSize; in pushAllNonBlocking()
131 return _currentSize; in size()
153 _currentSize = 0; in clear()
165 _currentSize -= _getSize(t); in tryPop()
182 _currentSize -= _getSize(t); in blockingPop()
209 _currentSize -= _getSize(t); in blockingPop()
261 while (_currentSize + size > _maxSize) { in _waitForSpace_inlock()
269 _currentSize += objSize; in pushImpl_inlock()
277 size_t _currentSize = 0; variable
/dports/misc/visp/visp-3.4.0/modules/core/src/image/
H A DvpFont.cpp97 if (height == static_cast<unsigned int>(_currentSize.y)) { in Resize()
105 _currentSize.y = static_cast<int>(height); in Resize()
116 …ymbols[i].image.resize(static_cast<unsigned int>(_currentSize.y), static_cast<unsigned int>(_curre… in Resize()
130 return _currentSize.y; in Height()
145 curr.x += _currentSize.x; in Measure()
147 size.y = std::max(size.y, curr.y + _currentSize.y); in Measure()
150 curr.y += _currentSize.y; in Measure()
277 Point _originalSize, _currentSize, _originalIndent, _currentIndent; member in vpFont::Impl
290 Rect current(curr, curr + _currentSize); in CreateAlpha()
298 curr.x += _currentSize.x; in CreateAlpha()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/other-licenses/7zstub/src/7zip/Common/
H A DStreamObjects.cpp62 if (_currentPos != _currentSize) in Read()
64 size_t curSize = _currentSize - _currentPos; in Read()
79 _currentSize = realProcessedSize; in Read()
H A DStreamObjects.h108 size_t _currentSize; variable
126 _currentSize = 0; in Init()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/tgcalls/tgcalls/platform/darwin/
H A DVideoCaptureView.mm66 CGSize _currentSize;
90 _currentSize = CGSizeZero;
178 if (!CGSizeEqualToSize(size, _currentSize)) {
179 _currentSize = size;
H A DGLVideoViewMac.mm298 CGSize _currentSize;
355 if (!CGSizeEqualToSize(size, strongSelf->_currentSize)) {
356 strongSelf->_currentSize = size;
410 if (self.bounds.size.width > 0.0f && _currentSize.width > 0) {
412 NSSize size = _currentSize;
415 size = aspectFilled(frameSize, _currentSize);
417 size = aspectFitted(frameSize, _currentSize);
419 size = aspectFilled(frameSize, _currentSize);
H A DVideoMetalView.mm77 CGSize _currentSize; field
113 _currentSize = CGSizeZero;
123 if (!CGSizeEqualToSize(size, strongSelf->_currentSize)) {
124 strongSelf->_currentSize = size;
149 if (!CGSizeEqualToSize(size, cloneView->_currentSize)) {
150 cloneView->_currentSize = size;
H A DVideoSampleBufferViewMac.mm78 CGSize _currentSize;
106 _currentSize = CGSizeZero;
116 if (!CGSizeEqualToSize(size, strongSelf->_currentSize)) {
117 strongSelf->_currentSize = size;
H A DVideoMetalViewMac.mm88 CGSize _currentSize;
122 _currentSize = CGSizeZero;
135 if (!CGSizeEqualToSize(size, strongSelf->_currentSize)) {
136 strongSelf->_currentSize = size;
H A DGLVideoView.mm113 CGSize _currentSize;
211 if (!CGSizeEqualToSize(size, strongSelf->_currentSize)) {
212 strongSelf->_currentSize = size;
276 CGSize contentSize = scaleToFillSize(_currentSize, self.bounds.size);
H A DVideoSampleBufferView.mm498 CGSize _currentSize;
526 _currentSize = CGSizeZero;
646 if (!CGSizeEqualToSize(size, _currentSize)) {
647 _currentSize = size;
/dports/sysutils/squashfs-tools/CPP/7zip/Archive/7z/
H A D7zFolderInStream.cpp49 RINOK(streamGetSize->GetSize(&_currentSize)); in OpenStream()
119 *value = _currentSize; in GetSubStreamSize()
H A D7zFolderInStream.h26 UInt64 _currentSize; variable
/dports/archivers/ppmd-7z/p7zip_9.04/CPP/7zip/Archive/7z/
H A D7zFolderInStream.cpp57 RINOK(streamGetSize->GetSize(&_currentSize)); in OpenStream()
126 *value = _currentSize; in GetSubStreamSize()
H A D7zFolderInStream.h37 UInt64 _currentSize; variable
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osg/
H A DImage.cpp59 _currentSize(0) in DataIterator()
70 _currentSize(0) in DataIterator()
81 _currentSize = 0; in operator ++()
105 _currentSize = 0; in operator ++()
126 _currentSize = 0; in operator ++()
141 _currentSize = 0; in assign()
150 _currentSize = _image->getTotalSizeInBytesIncludingMipmaps(); in assign()
167 _currentSize = 0; in assign()
182 _currentSize = rowWidthInBytes; in assign()
191 _currentSize = 0; in assign()
[all …]
/dports/deskutils/xchm/xchm-1.23/src/
H A Dchmlistctrl.h121 int _currentSize; variable
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osg/
H A DImage.cpp59 _currentSize(0) in DataIterator()
70 _currentSize(0) in DataIterator()
81 _currentSize = 0; in operator ++()
105 _currentSize = 0; in operator ++()
126 _currentSize = 0; in operator ++()
141 _currentSize = 0; in assign()
150 _currentSize = _image->getTotalSizeInBytesIncludingMipmaps(); in assign()
167 _currentSize = 0; in assign()
182 _currentSize = rowWidthInBytes; in assign()
191 _currentSize = 0; in assign()
[all …]
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/include/osg/
H A DImage352 unsigned int size() const { return _currentSize; }
364 unsigned int _currentSize;
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/include/osg/
H A DImage392 unsigned int size() const { return _currentSize; }
404 unsigned int _currentSize;
/dports/www/dojo/dojo-release-1.12.2/dojox/layout/
H A DExpandoPane.js.map7 …"splitter","myid","forEach","dijit","registry","toArray","w","child","_currentSize","getContentBox…
/dports/www/dojo/dojo-release-1.12.2/dojox/image/
H A DLightbox.js.map7 …orderExtents","titleSize","_lastTitleSize","_lastSize","_scaleToFit","_currentSize","_sizeAnim","f…