Home
last modified time | relevance | path

Searched refs:startHeight (Results 1 – 25 of 131) sorted by relevance

123456

/dports/games/scummvm/scummvm-2.5.1/engines/twine/menu/
H A Dinterface.cpp57 SWAP(endHeight, startHeight); in drawLine()
91 startHeight = y; in drawLine()
102 endHeight -= startHeight; in drawLine()
114 startHeight = endWidth; in drawLine()
119 startHeight -= endHeight; in drawLine()
120 if (startHeight > 0) { in drawLine()
123 startHeight += var2; in drawLine()
129 startHeight = endWidth; in drawLine()
134 startHeight -= endHeight; in drawLine()
135 if (startHeight < 0) { in drawLine()
[all …]
/dports/graphics/krita/krita-4.4.8/plugins/tools/defaulttool/defaulttool/
H A DShapeResizeStrategy.cpp137 qreal startHeight = m_initialSelectionSize.height(); in handleMouseMove() local
138 if (startHeight < std::numeric_limits<qreal>::epsilon()) { in handleMouseMove()
139 startHeight = std::numeric_limits<qreal>::epsilon(); in handleMouseMove()
159 qreal newHeight = startHeight; in handleMouseMove()
168 newHeight = startHeight - distance.y(); in handleMouseMove()
170 newHeight = startHeight + distance.y(); in handleMouseMove()
190 qreal zoomY = qAbs(startHeight) >= minDocSize.height() ? newHeight / startHeight : 1.0; in handleMouseMove()
195 if (startWidth < startHeight) { in handleMouseMove()
/dports/graphics/wdune/wdune-1.926/lib/VRML97protos/
H A DParticleSourcePROTO.wrl11 field SFFloat startHeight 0
27 # A particle start at "startHeight" and is reused, if its height
68 field SFFloat startHeight IS startHeight
106 // field SFFloat startHeight //
141 internPosition[i].y = startHeight;
164 if (allowedHeightRange[0] > startHeight)
166 print('error: allowedHeightRange[0] must be bigger than startHeight');
169 if (allowedHeightRange[1] < startHeight)
171 print('error: allowedHeightRange[1] must be smaller than startHeight');
/dports/editors/calligra/calligra-3.2.1/plugins/defaultTools/defaulttool/
H A DShapeResizeStrategy.cpp134 qreal startHeight = m_initialSize.height(); in handleMouseMove() local
135 if (startHeight < std::numeric_limits<qreal>::epsilon()) in handleMouseMove()
136 startHeight = std::numeric_limits<qreal>::epsilon(); in handleMouseMove()
154 qreal newHeight = startHeight; in handleMouseMove()
163 newHeight = startHeight - distance.y(); in handleMouseMove()
165 newHeight = startHeight + distance.y(); in handleMouseMove()
187 qreal zoomY = newHeight / startHeight; in handleMouseMove()
191 if ((cornerUsed && startWidth < startHeight) || m_left || m_right) in handleMouseMove()
200 move = QPointF(startWidth / 2.0, startHeight / 2.0); in handleMouseMove()
202 move = QPointF(m_left?startWidth:0, m_top?startHeight:0); in handleMouseMove()
/dports/multimedia/vvdec/vvdec-1.1.2/source/Lib/CommonLib/
H A DAdaptiveLoopFilter.cpp913 const int startHeight = posY - flP1; in deriveClassificationBlk() local
924 ptrdiff_t yoffset = ( i + 1 + startHeight ) * stride - flP1; in deriveClassificationBlk()
1128 const int startHeight = blk.y; in filterBlk() local
1134 Pel* dst = dstLuma.buf + startHeight * dstStride; in filterBlk()
1164 for( int i = 0; i < endHeight - startHeight; i += clsSizeY ) in filterBlk()
1186 …if ((startHeight + i + ii) % vbCTUHeight < vbPos && ((startHeight + i + ii) % vbCTUHeight >= vbPos… in filterBlk()
1196 …else if ((startHeight + i + ii) % vbCTUHeight >= vbPos && ((startHeight + i + ii) % vbCTUHeight <=… in filterBlk()
1206 …bool isNearVBabove = (startHeight + i + ii) % vbCTUHeight < vbPos && ((startHeight + i + ii) % vbC… in filterBlk()
1207 …bool isNearVBbelow = (startHeight + i + ii) % vbCTUHeight >= vbPos && ((startHeight + i + ii) % vb… in filterBlk()
1287 const int startHeight = blkDst.y; in filterBlkCcAlf() local
[all …]
/dports/games/scorched3d/scorched/src/client/console/
H A DConsoleLines.cpp162 void ConsoleLines::drawLines(GLFont2d *font, float startHeight, float totalHeight, float totalWidth) in drawLines() argument
171 glVertex2f(a + 20.0f, startHeight - 4.0f); in drawLines()
172 glVertex2f(a + 24.0f, startHeight - 8.0f); in drawLines()
173 glVertex2f(a + 28.0f, startHeight - 4.0f); in drawLines()
184 float position = startHeight + 20.0f; in drawLines()
/dports/graphics/wdune/wdune-1.926/docs/typical_vrml_examples/ecmascript/
H A Dparticles.wrl69 field SFFloat startHeight 0
105 // field SFFloat startHeight //
134 internPosition[i].y = startHeight;
156 if (allowedHeightRange[0] > startHeight)
158 print('error: allowedHeightRange[0] must be bigger than startHeight');
161 if (allowedHeightRange[1] < startHeight)
163 print('error: allowedHeightRange[1] must be smaller than startHeight');
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/modules/video_render/mac/
H A Dvideo_render_nsopengl.h57 …int SetStreamSettings(int streamId, float startWidth, float startHeight, float stopWidth, float st…
58 …int SetStreamCropSettings(int streamId, float startWidth, float startHeight, float stopWidth, floa…
114 …L* CreateNSGLChannel(int streamID, int zOrder, float startWidth, float startHeight, float stopWidt…
115 … ConfigureNSGLChannel(int channel, int zOrder, float startWidth, float startHeight, float stopWidt…
H A Dvideo_render_agl.h47 int SetStreamSettings(int streamId, float startWidth, float startHeight,
49 int SetStreamCropSettings(int streamId, float startWidth, float startHeight,
94 float startHeight, float stopWidth,
97 float startWidth, float startHeight,
/dports/net-p2p/bitmark-recorder/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/blockchain/
H A Dchain.go1353 if startHeight < 0 {
1355 "be less than zero - got %d", startHeight)
1357 if endHeight < startHeight {
1360 startHeight, endHeight)
1365 if startHeight == endHeight {
1377 if startHeight > latestHeight {
1388 for i := startHeight; i < endHeight; i++ {
1412 if startHeight < 0 {
1415 if startHeight > endHeight {
1417 startHeight, endHeight)
[all …]
/dports/net-p2p/bitmark-cli/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/blockchain/
H A Dchain.go1353 if startHeight < 0 {
1355 "be less than zero - got %d", startHeight)
1357 if endHeight < startHeight {
1360 startHeight, endHeight)
1365 if startHeight == endHeight {
1377 if startHeight > latestHeight {
1388 for i := startHeight; i < endHeight; i++ {
1412 if startHeight < 0 {
1415 if startHeight > endHeight {
1417 startHeight, endHeight)
[all …]
/dports/net-p2p/bitmark/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/blockchain/
H A Dchain.go1353 if startHeight < 0 {
1355 "be less than zero - got %d", startHeight)
1357 if endHeight < startHeight {
1360 startHeight, endHeight)
1365 if startHeight == endHeight {
1377 if startHeight > latestHeight {
1388 for i := startHeight; i < endHeight; i++ {
1412 if startHeight < 0 {
1415 if startHeight > endHeight {
1417 startHeight, endHeight)
[all …]
/dports/net-p2p/bitmark-daemon/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/blockchain/
H A Dchain.go1353 if startHeight < 0 {
1355 "be less than zero - got %d", startHeight)
1357 if endHeight < startHeight {
1360 startHeight, endHeight)
1365 if startHeight == endHeight {
1377 if startHeight > latestHeight {
1388 for i := startHeight; i < endHeight; i++ {
1412 if startHeight < 0 {
1415 if startHeight > endHeight {
1417 startHeight, endHeight)
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/btcsuite/btcd/blockchain/
H A Dchain.go1353 if startHeight < 0 {
1355 "be less than zero - got %d", startHeight)
1357 if endHeight < startHeight {
1360 startHeight, endHeight)
1365 if startHeight == endHeight {
1377 if startHeight > latestHeight {
1388 for i := startHeight; i < endHeight; i++ {
1412 if startHeight < 0 {
1415 if startHeight > endHeight {
1417 startHeight, endHeight)
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/btcsuite/btcd/blockchain/
H A Dchain.go1353 if startHeight < 0 {
1355 "be less than zero - got %d", startHeight)
1357 if endHeight < startHeight {
1360 startHeight, endHeight)
1365 if startHeight == endHeight {
1377 if startHeight > latestHeight {
1388 for i := startHeight; i < endHeight; i++ {
1412 if startHeight < 0 {
1415 if startHeight > endHeight {
1417 startHeight, endHeight)
[all …]
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/editors/notation/
H A DNotationVLayout.cpp666 int startHeight, endHeight; in filter_list_to_array()
681 startHeight = startTopHeight + startOffset; in filter_list_to_array()
686 int midHeight = (startHeight + endHeight) / 2; in filter_list_to_array()
688 startHeight += maxTopHeight - midHeight + 1; in filter_list_to_array()
705 startHeight = startBottomHeight - startOffset; in filter_list_to_array()
710 int midHeight = (startHeight + endHeight) / 2; in filter_list_to_array()
712 startHeight -= midHeight - minBottomHeight + 1; in filter_list_to_array()
718 int y0 = staff.getLayoutYForHeight(startHeight), in filter_list_to_array()
/dports/graphics/qgis/qgis-3.22.3/src/gui/mesh/
H A Dqgsmeshrenderer3daveragingwidget.cpp186 const double startHeight = mHeightStartSpinBox->value(); in averagingMethod() local
188 averaging.reset( new QgsMeshRelativeHeightAveragingMethod( startHeight, endHeight, false ) ); in averagingMethod()
266 whileBlocking( mDepthStartSpinBox )->setValue( averagingMethod->startHeight() ); in syncToLayer()
272 whileBlocking( mHeightStartSpinBox )->setValue( averagingMethod->startHeight() ); in syncToLayer()
/dports/net-p2p/bitmark-recorder/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/wire/
H A Dmsggetcfilters.go74 func NewMsgGetCFilters(filterType FilterType, startHeight uint32,
78 StartHeight: startHeight,
H A Dmsggetcfheaders.go70 func NewMsgGetCFHeaders(filterType FilterType, startHeight uint32,
74 StartHeight: startHeight,
/dports/net-p2p/bitmark-cli/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/wire/
H A Dmsggetcfilters.go74 func NewMsgGetCFilters(filterType FilterType, startHeight uint32,
78 StartHeight: startHeight,
H A Dmsggetcfheaders.go70 func NewMsgGetCFHeaders(filterType FilterType, startHeight uint32,
74 StartHeight: startHeight,
/dports/net-p2p/bitmark/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/wire/
H A Dmsggetcfheaders.go70 func NewMsgGetCFHeaders(filterType FilterType, startHeight uint32,
74 StartHeight: startHeight,
H A Dmsggetcfilters.go74 func NewMsgGetCFilters(filterType FilterType, startHeight uint32,
78 StartHeight: startHeight,
/dports/net-p2p/bitmark-daemon/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/wire/
H A Dmsggetcfilters.go74 func NewMsgGetCFilters(filterType FilterType, startHeight uint32,
78 StartHeight: startHeight,
H A Dmsggetcfheaders.go70 func NewMsgGetCFHeaders(filterType FilterType, startHeight uint32,
74 StartHeight: startHeight,

123456