Home
last modified time | relevance | path

Searched refs:newSize (Results 1 – 25 of 10151) sorted by last modified time

12345678910>>...407

/dports/x11-wm/lxqt-panel/lxqt-panel-1.0.0/plugin-sysstat/
H A Dlxqtsysstat.cpp83 QSize newSize = mContent->size(); in realign() local
84 if (mSize != newSize) in realign()
87 mSize = newSize; in realign()
/dports/x11-toolkits/py-Pmw/Pmw-2.0.1/Pmw/Pmw_2_0_1/lib/
H A DPmwBlt.py204 def length(self, newSize=None): argument
205 return self.tk.getint(self.tk.call(self._name, 'length', newSize))
/dports/x11-toolkits/py-Pmw/Pmw-2.0.1/Pmw/Pmw_1_3_3/lib/
H A DPmwBlt.py200 def length(self, newSize=None): argument
201 return self.tk.getint(self.tk.call(self._name, 'length', newSize))
/dports/x11-toolkits/blt/blt2.5/generic/
H A DbltPs.c1191 int newSize; local
1195 (Tcl_GetInt(interp, propArr[1], &newSize) == TCL_OK)) {
1196 pointSize = (double)newSize;
H A DbltVector.c933 int newSize; /* Size of array in elements */ local
940 newSize = 0;
957 newSize = DEF_ARRAY_SIZE;
959 while (newSize < wanted) {
960 newSize += newSize;
964 if (newSize == vPtr->size) {
968 newArr = Blt_Malloc(newSize * sizeof(double));
971 Blt_Itoa(newSize), " elements for vector \"", vPtr->name,
1004 vPtr->size = newSize;
H A DbltGrLine.c1666 int newSize; local
1688 newSize = Round(normalSize * scale);
1695 if (newSize > maxSize) {
1696 newSize = maxSize;
1700 newSize |= 0x01;
1701 return newSize;
1834 int newSize; local
1839 newSize = ((mapPtr->nScreenPts - 1) * 2) + 1;
1840 screenPts = Blt_Malloc(newSize * sizeof(Point2D));
1842 indices = Blt_Malloc(sizeof(int) * newSize);
[all …]
H A DbltGrElem.c467 unsigned int newSize; local
479 newSize = nElem * sizeof(double);
484 elemPtr->x.valueArr = Blt_Malloc(newSize);
485 elemPtr->y.valueArr = Blt_Malloc(newSize);
489 if (newSize > 0) {
/dports/x11-toolkits/irrlicht/irrlicht-1.8.5/source/Irrlicht/
H A DCSoftwareTexture2.cpp104 core::dimension2d<u32> newSize; in regenerateMipMapLevels() local
109 newSize = MipMap[i-1]->getDimension(); in regenerateMipMapLevels()
110 newSize.Width = core::s32_max ( 1, newSize.Width >> SOFTWARE_DRIVER_2_MIPMAPPING_SCALE ); in regenerateMipMapLevels()
111 newSize.Height = core::s32_max ( 1, newSize.Height >> SOFTWARE_DRIVER_2_MIPMAPPING_SCALE ); in regenerateMipMapLevels()
120 MipMap[i] = new CImage(BURNINGSHADER_COLOR_FORMAT, newSize); in regenerateMipMapLevels()
121 if (origSize==newSize) in regenerateMipMapLevels()
129 if (origSize==newSize) in regenerateMipMapLevels()
130 MipMap[i] = new CImage(BURNINGSHADER_COLOR_FORMAT, newSize, mipmapData, false); in regenerateMipMapLevels()
133 MipMap[i] = new CImage(BURNINGSHADER_COLOR_FORMAT, newSize); in regenerateMipMapLevels()
143 MipMap[i] = new CImage(BURNINGSHADER_COLOR_FORMAT, newSize); in regenerateMipMapLevels()
H A DCCubeSceneNode.cpp198 f32 newSize = in->getAttributeAsFloat("Size"); in deserializeAttributes() local
199 newSize = core::max_(newSize, 0.0001f); in deserializeAttributes()
200 if (newSize != Size) in deserializeAttributes()
202 Size = newSize; in deserializeAttributes()
/dports/x11-toolkits/p5-Prima/Prima-1.63/src/
H A DWidget_geometry.c225 Point newSize = sizeActual; in Widget_sizeMin() local
226 if ( sizeActual. x < min. x) newSize. x = min. x; in Widget_sizeMin()
227 if ( sizeActual. y < min. y) newSize. y = min. y; in Widget_sizeMin()
228 if (( newSize. x != sizeActual. x) || ( newSize. y != sizeActual. y)) in Widget_sizeMin()
229 my-> set_size( self, newSize); in Widget_sizeMin()
245 Point newSize = sizeActual; in Widget_sizeMax() local
246 if ( sizeActual. x > max. x) newSize. x = max. x; in Widget_sizeMax()
247 if ( sizeActual. y > max. y) newSize. y = max. y; in Widget_sizeMax()
248 if (( newSize. x != sizeActual. x) || ( newSize. y != sizeActual. y)) in Widget_sizeMax()
249 my-> set_size( self, newSize); in Widget_sizeMax()
/dports/x11-themes/qt5-style-plugins/qtstyleplugins-5.0.0-23-g335dbe/src/plugins/styles/gtk2/
H A Dqgtkstyle.cpp3839 return newSize; in sizeFromContents()
3853 newSize.setWidth(qMax(baseWidth, newSize.width())); in sizeFromContents()
3866 newSize = newSize.expandedTo(minSize); in sizeFromContents()
3879 newSize += QSize(0, 1); in sizeFromContents()
3890 newSize = size; in sizeFromContents()
3916 newSize += QSize(0, 2); in sizeFromContents()
3934 newSize += QSize(1, 1); in sizeFromContents()
3986 newSize = QSize(newSize.width(), sizeReq.height); in sizeFromContents()
3998 newSize.setHeight(qMax(newSize.height() - 4, sizeReq.height)); in sizeFromContents()
4003 newSize.setWidth(newSize.width() + qMax(0, checkSize - 20)); in sizeFromContents()
[all …]
/dports/x11/dxpc/dxpc-3.9.2/
H A DEncodeBuffer.C202 unsigned int newSize = size + size; in growBuffer() local
210 if (newSize - nextDestOffset < minumumFreeSpaceAfterGrow) in growBuffer()
212 newSize = nextDestOffset + minumumFreeSpaceAfterGrow; in growBuffer()
215 unsigned char *newBuffer = new unsigned char[newSize + PREFIX_SIZE] + in growBuffer()
221 size = newSize; in growBuffer()
/dports/x11/innerspace/InnerSpace-0.2.0/NickSpace.bproj/
H A DNickSpaceView.m328 [self newSize:YES];
337 [self newSize:YES];
557 [self newSize:NO];
565 [self newSize:YES];
589 - newSize:(BOOL)freeOld;
774 [self newSize:YES];
783 [self newSize:YES];
792 [self newSize:YES];
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/wtf/
H A Dcontainer_annotations.h16 #define ANNOTATE_NEW_BUFFER(buffer, capacity, newSize) \ argument
20 (buffer) + (newSize)); \
28 #define ANNOTATE_CHANGE_SIZE(buffer, capacity, oldSize, newSize) \ argument
32 (buffer) + (newSize)); \
41 #define ANNOTATE_NEW_BUFFER(buffer, capacity, newSize) argument
43 #define ANNOTATE_CHANGE_SIZE(buffer, capacity, oldSize, newSize) argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/third_party/vulkanmemoryallocator/include/
H A Dvk_mem_alloc.h3215 VkDeviceSize newSize);
6751 VkDeviceSize newSize,
7781 VkDeviceSize newSize);
12128 VkDeviceSize newSize, in Init() argument
12153 m_pMetadata->Init(newSize); in Init()
16472 VkDeviceSize newSize) in ResizeAllocation() argument
16475 if(newSize == 0 || alloc->GetLastUseFrameIndex() == VMA_FRAME_INDEX_LOST) in ResizeAllocation()
16479 if(newSize == alloc->GetSize()) in ResizeAllocation()
18301 VkDeviceSize newSize) in vmaResizeAllocation() argument
18309 return allocator->ResizeAllocation(allocation, newSize); in vmaResizeAllocation()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/third_party/vulkanmemoryallocator/include/
H A Dvk_mem_alloc.h4094 VkDeviceSize newSize);
6281 VkDeviceSize newSize) in Init() argument
6288 m_Metadata.Init(newSize); in Init()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/wtf/
H A Dcontainer_annotations.h15 #define ANNOTATE_NEW_BUFFER(buffer, capacity, newSize) \ argument
19 (buffer) + (newSize)); \
27 #define ANNOTATE_CHANGE_SIZE(buffer, capacity, oldSize, newSize) \ argument
31 (buffer) + (newSize)); \
40 #define ANNOTATE_NEW_BUFFER(buffer, capacity, newSize) argument
42 #define ANNOTATE_CHANGE_SIZE(buffer, capacity, oldSize, newSize) argument
/dports/www/mod_php80/php-8.0.15/sapi/litespeed/
H A Dlsapilib.c601 int *curSize, int newSize ) in allocateEnvList() argument
604 if ( *curSize >= newSize ) in allocateEnvList()
606 if ( newSize > 8192 ) in allocateEnvList()
608 pBuf = (struct LSAPI_key_value_pair *)realloc( *pEnvList, newSize * in allocateEnvList()
613 *curSize = newSize; in allocateEnvList()
/dports/www/firefox-legacy/firefox-52.8.0esr/widget/gtk/
H A DnsWindow.cpp4494 int32_t newSize = newRowBytes * mBounds.height; local
4495 gchar* newBits = new gchar[newSize];
4497 memset(newBits, 0, newSize);
/dports/www/mod_php81/php-8.1.1/sapi/litespeed/
H A Dlsapilib.c611 int *curSize, int newSize ) in allocateEnvList() argument
614 if ( *curSize >= newSize ) in allocateEnvList()
616 if ( newSize > 8192 ) in allocateEnvList()
618 pBuf = (struct LSAPI_key_value_pair *)realloc( *pEnvList, newSize * in allocateEnvList()
623 *curSize = newSize; in allocateEnvList()
/dports/www/e107/e107/e107_handlers/phpthumb/
H A DGdThumb.inc.php1359 $newSize = array
1367 $newSize = $this->calcWidth($width, $height);
1369 if ($this->maxHeight > 0 && $newSize['newHeight'] > $this->maxHeight)
1371 $newSize = $this->calcHeight($newSize['newWidth'], $newSize['newHeight']);
1377 $newSize = $this->calcHeight($width, $height);
1379 if ($this->maxWidth > 0 && $newSize['newWidth'] > $this->maxWidth)
1381 $newSize = $this->calcWidth($newSize['newWidth'], $newSize['newHeight']);
1385 $this->newDimensions = $newSize;
/dports/textproc/clucene/clucene-core-2.3.3.4/src/core/CLucene/store/
H A DIndexInput.cpp275 void BufferedIndexInput::setBufferSize( int32_t newSize ) { in setBufferSize() argument
277 if ( newSize != bufferSize ) { in setBufferSize()
278 bufferSize = newSize; in setBufferSize()
281 uint8_t* newBuffer = _CL_NEWARRAY( uint8_t, newSize ); in setBufferSize()
285 if ( leftInBuffer > newSize ) { in setBufferSize()
286 numToCopy = newSize; in setBufferSize()
/dports/textproc/clucene/clucene-core-2.3.3.4/src/core/CLucene/index/
H A DDocumentsWriter.cpp641 int32_t newSize = this->postingsFreeListDW.length; in writeSegment() local
642 while(newSize > 1.25*this->postingsFreeCountDW) { in writeSegment()
643 newSize = (int32_t) (newSize*0.8); in writeSegment()
645 this->postingsFreeListDW.resize(newSize); in writeSegment()
1538 const int32_t newSize = levelSizeArray[level]; in nextSlice() local
1546 if (nextIndex + newSize >= endIndex) { in nextSlice()
1553 limit = upto+newSize-4; in nextSlice()
1605 const int32_t newSize = levelSizeArray[newLevel]; in allocSlice() local
1608 if (tUpto > BYTE_BLOCK_SIZE-newSize) in allocSlice()
1613 tUpto += newSize; in allocSlice()
H A DDocumentsWriterThreadState.cpp210 _parent->norms.resize(newSize); in init()
273 vectorFieldPointers.resize(newSize); in init()
274 vectorFieldNumbers.resize(newSize); in init()
529 int32_t newSize; in trimFields() local
531 newSize = 1; in trimFields()
955 int32_t newSize; in addNewVector() local
957 newSize = 2; in addNewVector()
1203 const int32_t newMask = newSize-1; in rehashPostings()
1205 ValueArray<Posting*> newHash(newSize); in rehashPostings()
1240 postingsHashSize = newSize; in rehashPostings()
[all …]
/dports/security/nss/nss-3.76.1/nss/lib/ckfw/capi/
H A Dcobject.c520 unsigned int newSize; in ckcapi_CertPopulateModulusExponent() local
525 ptr = nss_ckcapi_DERUnwrap(pkData, size, &newSize, NULL); in ckcapi_CertPopulateModulusExponent()
526 kp->modulus.data = nss_ckcapi_DERUnwrap(ptr, newSize, in ckcapi_CertPopulateModulusExponent()
534 kp->exponent.data = nss_ckcapi_DERUnwrap(newptr, (newptr - ptr) + newSize, in ckcapi_CertPopulateModulusExponent()

12345678910>>...407