Home
last modified time | relevance | path

Searched refs:part2Size (Results 1 – 6 of 6) sorted by path

/dports/games/jin/jin-2.14.1/src/free/util/
H A DPipedStreams.java357 int part2Size = amountToWrite-part1Size > 0 ? amountToWrite - part1Size : 0; local
360 System.arraycopy(arr, offset + part1Size, buf, 0, part2Size);
455 int part2Size = amountToRead-part1Size > 0 ? amountToRead-part1Size : 0; in read() local
458 System.arraycopy(buf, 0, arr, offset + part1Size, part2Size); in read()
/dports/graphics/pear-Image_Graph/Image_Graph-0.8.0/Graph/Layout/
H A DHorizontal.php135 $part2Size = $this->_part2->_getAutoSize();
137 if (($part1Size !== false) and ($part2Size !== false)) {
138 $width = $this->_fillWidth() * $part1Size / ($part1Size + $part2Size);
141 } elseif ($part2Size !== false) {
142 $width = -$part2Size;
H A DVertical.php70 $part2Size = $this->_part2->_getAutoSize();
72 if (($part1Size !== false) and ($part2Size !== false)) {
73 $height = $this->_fillHeight() * $part1Size / ($part1Size + $part2Size);
76 } elseif ($part2Size !== false) {
77 $height = -$part2Size;
/dports/graphics/qgis/qgis-3.22.3/src/core/geometry/
H A Dqgscircularstring.cpp947 const int part2Size = size - index; in splitCurveAtVertex() local
948 if ( part2Size < 2 ) in splitCurveAtVertex()
951 QVector< double > x2( part2Size ); in splitCurveAtVertex()
952 QVector< double > y2( part2Size ); in splitCurveAtVertex()
953 QVector< double > z2( useZ ? part2Size : 0 ); in splitCurveAtVertex()
954 QVector< double > m2( useM ? part2Size : 0 ); in splitCurveAtVertex()
H A Dqgslinestring.cpp863 const int part2Size = size - index; in splitCurveAtVertex() local
864 if ( part2Size < 2 ) in splitCurveAtVertex()
867 QVector< double > x2( part2Size ); in splitCurveAtVertex()
868 QVector< double > y2( part2Size ); in splitCurveAtVertex()
869 QVector< double > z2( useZ ? part2Size : 0 ); in splitCurveAtVertex()
870 QVector< double > m2( useM ? part2Size : 0 ); in splitCurveAtVertex()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/mtproto/details/
H A Dmtproto_tls_socket.cpp556 const auto part2Size = ReadPartLength(data, parts1Size - kLengthSize); in checkHelloParts12() local
558 + part2Size in checkHelloParts12()