Home
last modified time | relevance | path

Searched refs:fullScale (Results 1 – 25 of 62) sorted by relevance

123

/dports/net-im/ruqola/ruqola-1.6.1/src/widgets/misc/
H A Davatarcachemanager.cpp75 QPixmap fullScale(fm.horizontalAdvance(emoticon.unicode()), size.height()); in makeAvatarEmojiPixmap() local
77 fullScale.fill(Qt::white); in makeAvatarEmojiPixmap()
78 QPainter painter(&fullScale); in makeAvatarEmojiPixmap()
80 painter.drawText(fullScale.rect(), Qt::AlignCenter, emoticon.unicode()); in makeAvatarEmojiPixmap()
81 downScaled = fullScale.scaledToHeight(maxHeight * dpr, Qt::SmoothTransformation); in makeAvatarEmojiPixmap()
106 QPixmap fullScale; in makeAvatarUrlPixmap() local
107 if (!fullScale.load(iconUrl.toLocalFile())) { in makeAvatarUrlPixmap()
111 downScaled = fullScale.scaledToHeight(maxHeight * dpr, Qt::SmoothTransformation); in makeAvatarUrlPixmap()
/dports/math/vtk8/VTK-8.2.0/Rendering/Volume/Testing/Cxx/
H A DTestGPURayCastCompositeBinaryMask1.cxx41 const double fullScale = 100.0; in TestGPURayCastCompositeBinaryMask1() local
67 image[index] = static_cast<unsigned short>( fullScale * z / cz); in TestGPURayCastCompositeBinaryMask1()
90 colors->AddHSVPoint(0.0*fullScale, 0.0, 0.5, 0.5); in TestGPURayCastCompositeBinaryMask1()
91 colors->AddHSVPoint(1.0*fullScale, 2.0/3.0, 0.5, 0.5); in TestGPURayCastCompositeBinaryMask1()
94 opacities->AddPoint(0.0*fullScale, 0.6); in TestGPURayCastCompositeBinaryMask1()
95 opacities->AddPoint(1.0*fullScale, 0.6); in TestGPURayCastCompositeBinaryMask1()
/dports/math/vtk9/VTK-9.1.0/Rendering/Volume/Testing/Cxx/
H A DTestGPURayCastCompositeBinaryMask1.cxx43 const double fullScale = 100.0; in TestGPURayCastCompositeBinaryMask1() local
67 image[index] = static_cast<unsigned short>(fullScale * z / cz); in TestGPURayCastCompositeBinaryMask1()
90 colors->AddHSVPoint(0.0 * fullScale, 0.0, 0.5, 0.5); in TestGPURayCastCompositeBinaryMask1()
91 colors->AddHSVPoint(1.0 * fullScale, 2.0 / 3.0, 0.5, 0.5); in TestGPURayCastCompositeBinaryMask1()
94 opacities->AddPoint(0.0 * fullScale, 0.6); in TestGPURayCastCompositeBinaryMask1()
95 opacities->AddPoint(1.0 * fullScale, 0.6); in TestGPURayCastCompositeBinaryMask1()
/dports/editors/calligra/calligra-3.2.1/stage/plugins/pageeffects/iriswipe/
H A DKPrIrisWipeEffectStrategyBase.cpp85 qreal fullScale = findMaxScaling( data ); in paintStep() local
115 matrix.scale( ( fullScale - currPos )*scaleStep, ( fullScale - currPos )*scaleStep ); in paintStep()
131 qreal fullScale = findMaxScaling( data ); in next() local
153 … matrix.scale( ( fullScale - lastPos - 3 )*scaleStep, ( fullScale - lastPos - 3 )*scaleStep ); in next()
/dports/games/endless-sky/endless-sky-0.9.14/source/
H A DCollisionSet.cpp223 const uint64_t fullScale = CELL_SIZE * scale; in Line() local
231 rx = fullScale - rx; in Line()
233 ry = fullScale - ry; in Line()
279 rx = fullScale; in Line()
280 ry = fullScale; in Line()
295 rx = fullScale; in Line()
303 ry = fullScale; in Line()
/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/runtimerender/res/effectlib/
H A DfuncsampleAreaGlossyDefault.glsllib40 vec2 fullScale = (UVmax - UVmin);
41 float intensity = (hitScale.x * hitScale.y) / max(fullScale.x * fullScale.y, 0.0001);
H A DsampleArea.glsllib147 vec2 fullScale = (UVmax - UVmin);
148 float intensity = ( hitScale.x * hitScale.y ) / max( fullScale.x * fullScale.y, 0.0001 );
/dports/comms/rtl-433/rtl_433-21.12/src/
H A Dsdr.c85 double fullScale; member
747 double fullScale; in soapysdr_show_device_info() local
828 … native_stream_format = SoapySDRDevice_getNativeStreamFormat(dev, direction, channel, &fullScale); in soapysdr_show_device_info()
829 …tf(stderr, "Found native stream format: %s (full scale: %.1f)\n", native_stream_format, fullScale); in soapysdr_show_device_info()
857 …ve_format = SoapySDRDevice_getNativeStreamFormat(dev->soapy_dev, SOAPY_SDR_RX, 0, &dev->fullScale); in sdr_open_soapy()
884 dev->fullScale = 32768.0; // assume max for SOAPY_SDR_CS16 in sdr_open_soapy()
974 if (dev->fullScale >= 2047.0 && dev->fullScale <= 2048.0) { in soapysdr_read_loop()
978 else if (dev->fullScale < 32767.0) { in soapysdr_read_loop()
979 int upscale = 32768 / dev->fullScale; in soapysdr_read_loop()
/dports/misc/soapysdr/SoapySDR-soapy-sdr-0.8.1/apps/
H A DSoapyRateTest.cpp150 double fullScale(0.0); in SoapySDRRateTest() local
151 const auto format = device->getNativeStreamFormat(direction, channels.front(), fullScale); in SoapySDRRateTest()
H A DSoapySDRProbe.cpp207 double fullScale = 0.0; in probeChannel() local
208 std::string native = device->getNativeStreamFormat(dir, chan, fullScale); in probeChannel()
209 ss << " Native format: " << native << " [full-scale=" << fullScale << "]" << std::endl; in probeChannel()
/dports/misc/py-SoapySDR/SoapySDR-soapy-sdr-0.8.1/apps/
H A DSoapyRateTest.cpp150 double fullScale(0.0); in SoapySDRRateTest() local
151 const auto format = device->getNativeStreamFormat(direction, channels.front(), fullScale); in SoapySDRRateTest()
H A DSoapySDRProbe.cpp207 double fullScale = 0.0; in probeChannel() local
208 std::string native = device->getNativeStreamFormat(dir, chan, fullScale); in probeChannel()
209 ss << " Native format: " << native << " [full-scale=" << fullScale << "]" << std::endl; in probeChannel()
/dports/www/firefox-legacy/firefox-52.8.0esr/toolkit/components/thumbnails/
H A DPageThumbUtils.jsm148 * fullScale - request that a non-downscaled image be returned.
155 let fullScale = aArgs ? aArgs.fullScale : false;
164 if (fullScale) {
181 intermediateHeight >= contentHeight) || fullScale) {
192 // this is twice the thumbnail size, for fullScale images this is at
/dports/comms/soapyremote/SoapyRemote-soapy-remote-0.5.2/client/
H A DStreaming.cpp45 …teDevice::getNativeStreamFormat(const int direction, const size_t channel, double &fullScale) const in getNativeStreamFormat()
57 unpacker & fullScale; in getNativeStreamFormat() local
78 double fullScale = 0.0; in getStreamArgsInfo() local
81 formatArg.value = this->getNativeStreamFormat(direction, channel, fullScale); in getStreamArgsInfo()
90 scaleArg.value = std::to_string(fullScale); in getStreamArgsInfo()
/dports/comms/soapyairspy/SoapyAirspy-soapy-airspy-0.2.0/
H A DStreaming.cpp43 …Airspy::getNativeStreamFormat(const int direction, const size_t channel, double &fullScale) const { in getNativeStreamFormat()
44 fullScale = 32767; in getNativeStreamFormat()
/dports/lang/spidermonkey78/firefox-78.9.0/toolkit/components/thumbnails/
H A DPageThumbUtils.jsm199 * fullScale - request that a non-downscaled image be returned.
203 let fullScale = aArgs ? aArgs.fullScale : false;
212 if (fullScale) {
231 fullScale
246 // this is twice the thumbnail size, for fullScale images this is at
H A DPageThumbs.jsm194 * fullScale - request that a non-downscaled image be returned.
199 fullScale: aArgs ? aArgs.fullScale : false,
280 * fullScale - request that a non-downscaled image be returned.
293 let fullScale = aArgs ? aArgs.fullScale : false;
294 let scale = fullScale
311 thumbnail.width = fullScale ? contentWidth : aWidth;
312 thumbnail.height = fullScale ? contentHeight : aHeight;
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/components/thumbnails/
H A DPageThumbUtils.jsm176 * fullScale - request that a non-downscaled image be returned.
183 let fullScale = aArgs ? aArgs.fullScale : false;
192 if (fullScale) {
209 intermediateHeight >= contentHeight) || fullScale) {
220 // this is twice the thumbnail size, for fullScale images this is at
/dports/www/firefox/firefox-99.0/toolkit/components/thumbnails/
H A DPageThumbUtils.jsm206 * fullScale - request that a non-downscaled image be returned.
214 let fullScale = aArgs ? aArgs.fullScale : false;
223 if (fullScale) {
242 fullScale
257 // this is twice the thumbnail size, for fullScale images this is at
H A DPageThumbs.jsm220 * fullScale - request that a non-downscaled image be returned.
233 fullScale: aArgs ? aArgs.fullScale : false,
320 * fullScale - request that a non-downscaled image be returned.
370 let fullScale = aArgs ? aArgs.fullScale : false;
371 let scale = fullScale
385 thumbnail.width = fullScale ? contentWidth : aWidth;
386 thumbnail.height = fullScale ? contentHeight : aHeight;
/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/components/thumbnails/
H A DPageThumbUtils.jsm206 * fullScale - request that a non-downscaled image be returned.
214 let fullScale = aArgs ? aArgs.fullScale : false;
223 if (fullScale) {
242 fullScale
257 // this is twice the thumbnail size, for fullScale images this is at
H A DPageThumbs.jsm219 * fullScale - request that a non-downscaled image be returned.
229 fullScale: aArgs ? aArgs.fullScale : false,
315 * fullScale - request that a non-downscaled image be returned.
362 let fullScale = aArgs ? aArgs.fullScale : false;
363 let scale = fullScale
376 thumbnail.width = fullScale ? contentWidth : aWidth;
377 thumbnail.height = fullScale ? contentHeight : aHeight;
/dports/www/firefox-esr/firefox-91.8.0/toolkit/components/thumbnails/
H A DPageThumbUtils.jsm206 * fullScale - request that a non-downscaled image be returned.
214 let fullScale = aArgs ? aArgs.fullScale : false;
223 if (fullScale) {
242 fullScale
257 // this is twice the thumbnail size, for fullScale images this is at
H A DPageThumbs.jsm219 * fullScale - request that a non-downscaled image be returned.
229 fullScale: aArgs ? aArgs.fullScale : false,
315 * fullScale - request that a non-downscaled image be returned.
362 let fullScale = aArgs ? aArgs.fullScale : false;
363 let scale = fullScale
376 thumbnail.width = fullScale ? contentWidth : aWidth;
377 thumbnail.height = fullScale ? contentHeight : aHeight;
/dports/comms/soapyredpitaya/SoapyRedPitaya-soapy-redpitaya-0.1.1/
H A DSoapyRedPitaya.cpp132 string getNativeStreamFormat(const int direction, const size_t channel, double &fullScale) const in getNativeStreamFormat()
134 fullScale = 1.0; in getNativeStreamFormat()

123