Home
last modified time | relevance | path

Searched refs:mThreshold (Results 1 – 25 of 93) sorted by relevance

1234

/dports/graphics/kooka/kooka-3ed25fb9a1a62b88240a4f0f403b1ad49cf0adeb/libkookascan/
H A Dsizeindicator.cpp37 mThreshold = thresh; in SizeIndicator()
56 mThreshold = thresh; in setThreshold()
93 } else if (mSizeInByte < mThreshold) { in paintEvent()
94 int t = w * (1.0 - (double(mSizeInByte - DEFAULT_SMALL) / (mThreshold - DEFAULT_SMALL))); in paintEvent()
101 int t = w * (1.0 - (double(mSizeInByte - mThreshold) / (mCritical - mThreshold))); in paintEvent()
/dports/games/passage/Passage_v4_UnixSource/minorGems/graphics/filters/
H A DThresholdFilter.h47 double mThreshold;
53 : mThreshold( inThreshold ) { in ThresholdFilter()
60 mThreshold = inThreshold; in setThreshold()
70 if( inChannel[i] >= mThreshold ) { in apply()
/dports/games/cultivation/Cultivation_8_UnixSource/minorGems/graphics/filters/
H A DThresholdFilter.h47 double mThreshold;
53 : mThreshold( inThreshold ) { in ThresholdFilter()
60 mThreshold = inThreshold; in setThreshold()
70 if( inChannel[i] >= mThreshold ) { in apply()
/dports/lang/spidermonkey60/firefox-60.9.0/dom/media/webaudio/
H A DDynamicsCompressorNode.cpp22 mThreshold, mKnee, mRatio, mAttack, mRelease)
39 mThreshold(-24.f), in DynamicsCompressorNodeEngine()
54 mThreshold.InsertEvent<int64_t>(aEvent); in RecvTimelineEvent()
91 mThreshold.GetValueAtTime(pos)); in ProcessBlock()
155 AudioParamTimeline mThreshold; member in mozilla::dom::DynamicsCompressorNodeEngine
166 mThreshold(new AudioParam(this, DynamicsCompressorNodeEngine::THRESHOLD, in DynamicsCompressorNode()
203 audioNode->Threshold()->SetValue(aOptions.mThreshold); in Create()
211 amount += mThreshold->SizeOfIncludingThis(aMallocSizeOf); in SizeOfExcludingThis()
/dports/www/firefox-esr/firefox-91.8.0/dom/media/webaudio/
H A DDynamicsCompressorNode.cpp20 mThreshold, mKnee, mRatio, mAttack, mRelease)
37 mThreshold(-24.f), in DynamicsCompressorNodeEngine()
52 mThreshold.InsertEvent<int64_t>(aEvent); in RecvTimelineEvent()
89 mThreshold.GetValueAtTime(pos)); in ProcessBlock()
153 AudioParamTimeline mThreshold; member in mozilla::dom::DynamicsCompressorNodeEngine
165 mThreshold = CreateAudioParam(DynamicsCompressorNodeEngine::THRESHOLD, in DynamicsCompressorNode()
197 audioNode->Threshold()->SetInitialValue(aOptions.mThreshold); in Create()
205 amount += mThreshold->SizeOfIncludingThis(aMallocSizeOf); in SizeOfExcludingThis()
/dports/lang/spidermonkey78/firefox-78.9.0/dom/media/webaudio/
H A DDynamicsCompressorNode.cpp21 mThreshold, mKnee, mRatio, mAttack, mRelease)
38 mThreshold(-24.f), in DynamicsCompressorNodeEngine()
53 mThreshold.InsertEvent<int64_t>(aEvent); in RecvTimelineEvent()
90 mThreshold.GetValueAtTime(pos)); in ProcessBlock()
154 AudioParamTimeline mThreshold; member in mozilla::dom::DynamicsCompressorNodeEngine
166 CreateAudioParam(mThreshold, DynamicsCompressorNodeEngine::THRESHOLD, in DynamicsCompressorNode()
198 audioNode->Threshold()->SetValue(aOptions.mThreshold); in Create()
206 amount += mThreshold->SizeOfIncludingThis(aMallocSizeOf); in SizeOfExcludingThis()
/dports/www/firefox/firefox-99.0/dom/media/webaudio/
H A DDynamicsCompressorNode.cpp20 mThreshold, mKnee, mRatio, mAttack, mRelease)
37 mThreshold(-24.f), in DynamicsCompressorNodeEngine()
52 mThreshold.InsertEvent<int64_t>(aEvent); in RecvTimelineEvent()
89 mThreshold.GetValueAtTime(pos)); in ProcessBlock()
153 AudioParamTimeline mThreshold; member in mozilla::dom::DynamicsCompressorNodeEngine
165 mThreshold = CreateAudioParam(DynamicsCompressorNodeEngine::THRESHOLD, in DynamicsCompressorNode()
197 audioNode->Threshold()->SetInitialValue(aOptions.mThreshold); in Create()
205 amount += mThreshold->SizeOfIncludingThis(aMallocSizeOf); in SizeOfExcludingThis()
/dports/mail/thunderbird/thunderbird-91.8.0/dom/media/webaudio/
H A DDynamicsCompressorNode.cpp20 mThreshold, mKnee, mRatio, mAttack, mRelease)
37 mThreshold(-24.f), in DynamicsCompressorNodeEngine()
52 mThreshold.InsertEvent<int64_t>(aEvent); in RecvTimelineEvent()
89 mThreshold.GetValueAtTime(pos)); in ProcessBlock()
153 AudioParamTimeline mThreshold; member in mozilla::dom::DynamicsCompressorNodeEngine
165 mThreshold = CreateAudioParam(DynamicsCompressorNodeEngine::THRESHOLD, in DynamicsCompressorNode()
197 audioNode->Threshold()->SetInitialValue(aOptions.mThreshold); in Create()
205 amount += mThreshold->SizeOfIncludingThis(aMallocSizeOf); in SizeOfExcludingThis()
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/media/webaudio/
H A DDynamicsCompressorNode.cpp22 mThreshold,
43 , mThreshold(-24.f) in DynamicsCompressorNodeEngine()
69 mThreshold.InsertEvent<int64_t>(aEvent); in RecvTimelineEvent()
109 mThreshold.GetValueAtTime(pos)); in ProcessBlock()
177 AudioParamTimeline mThreshold; member in mozilla::dom::DynamicsCompressorNodeEngine
190 , mThreshold(new AudioParam(this, DynamicsCompressorNodeEngine::THRESHOLD, in DynamicsCompressorNode()
216 amount += mThreshold->SizeOfIncludingThis(aMallocSizeOf); in SizeOfExcludingThis()
/dports/lang/spidermonkey60/firefox-60.9.0/image/
H A DAnimationFrameBuffer.cpp13 : mThreshold(0), in AnimationFrameBuffer()
23 MOZ_ASSERT(mThreshold == 0); in Initialize()
29 mThreshold = aThreshold; in Initialize()
50 if (mThreshold < minThreshold) { in Initialize()
51 mThreshold = minThreshold; in Initialize()
79 if (mInsertIndex == mThreshold) { in Insert()
H A DAnimationFrameBuffer.h122 bool MayDiscard() const { return mFrames.Length() > mThreshold; } in MayDiscard()
156 size_t Threshold() const { return mThreshold; } in Threshold()
170 size_t mThreshold; variable
/dports/misc/openvdb/openvdb-9.0.0/openvdb_houdini/openvdb_houdini/
H A DSOP_OpenVDB_Noise.cc85 NoiseSettings() : mMaskMode(0), mOffset(0.0), mThreshold(0.0), in NoiseSettings()
89 float mOffset, mThreshold, mFallOff; member
382 if (result < settings.mThreshold) { in applyNoise()
385 alpha = static_cast<float>(result >= settings.mThreshold + settings.mFallOff ? in applyNoise()
386 1.0f : (result - settings.mThreshold) / settings.mFallOff); in applyNoise()
406 if (result > settings.mThreshold) { in applyNoise()
409 alpha = static_cast<float>(result <= settings.mThreshold - settings.mFallOff ? in applyNoise()
410 1.0f : (settings.mThreshold - result) / settings.mFallOff); in applyNoise()
441 if (result > settings.mThreshold && c > 0.9) continue;//next voxel in applyNoise()
443 1.0f : (settings.mThreshold - result) / settings.mFallOff); in applyNoise()
[all …]
/dports/graphics/qgis/qgis-3.22.3/src/core/
H A Dqgssimplifymethod.h52 void setThreshold( float threshold ) { mThreshold = threshold; } in setThreshold()
54 inline float threshold() const { return mThreshold; } in threshold()
70 float mThreshold = 1; variable
H A Dqgsvectorsimplifymethod.h74 void setThreshold( float threshold ) { mThreshold = threshold; } in setThreshold()
76 inline float threshold() const { return mThreshold; } in threshold()
96 float mThreshold; variable
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/
H A Dqgssimplifymethod.h52 void setThreshold( float threshold ) { mThreshold = threshold; } in setThreshold()
54 inline float threshold() const { return mThreshold; } in threshold()
70 float mThreshold = 1; variable
H A Dqgsvectorsimplifymethod.h74 void setThreshold( float threshold ) { mThreshold = threshold; } in setThreshold()
76 inline float threshold() const { return mThreshold; } in threshold()
96 float mThreshold; variable
/dports/audio/audacity/audacity-Audacity-3.1.3/src/effects/
H A DCompressor.cpp94 mThreshold = 0.25; in BEGIN_EVENT_TABLE()
399 mThreshold = DB_TO_LINEAR(mThresholdDB); in NewTrackPass1()
412 mLastLevel = mThreshold; in NewTrackPass1()
467 mLastLevel = mThreshold; in TwoBufferProcessPass1()
590 if(last < mThreshold) in Follow()
591 last = mThreshold; in Follow()
603 if(last < mThreshold) in Follow()
604 last = mThreshold; in Follow()
615 if(last < mThreshold) in Follow()
616 last = mThreshold; in Follow()
[all …]
H A DDistortion.cpp174 mThreshold = DB_TO_LINEAR(mParams.mThreshold_dB); in BEGIN_EVENT_TABLE()
347 mThreshold = DB_TO_LINEAR(mParams.mThreshold_dB); in LoadFactoryPreset()
523 mThreshold = DB_TO_LINEAR(mParams.mThreshold_dB); in TransferDataFromWindow()
652 mThreshold = std::max(MIN_Threshold_Linear, mThreshold); in OnThresholdSlider()
1030 double lowThresh = 1 - mThreshold; in HardClip()
1031 double highThresh = 1 + mThreshold; in HardClip()
1035 mTable[n] = - mThreshold; in HardClip()
1037 mTable[n] = mThreshold; in HardClip()
1041 mMakeupGain = 1.0 / mThreshold; in HardClip()
1047 double threshold = 1 + mThreshold; in SoftClip()
[all …]
/dports/net/messagelib/messagelib-21.12.3/messageviewer/src/antispam/
H A Dantispamconfig.h50 , mThreshold(threshold) in SpamAgent()
82 return mThreshold; in thresholdPattern()
96 QRegExp mThreshold; variable
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/mesquite/QualityImprover/OptSolvers/
H A DNonGradient.hpp84 return(mThreshold); in getThreshold()
104 mThreshold = threshold; in setThreshold()
155 double mThreshold;// stop if 2(heightMax-heightMin) member in MBMesquite::NonGradient
/dports/misc/mnn/MNN-1.2.0/backupcode/cpubackend/
H A DCPUThreshold.hpp17 CPUThreshold(Backend *b, float threshold) : Execution(b), mThreshold(threshold) { in CPUThreshold()
24 float mThreshold; member in MNN::CPUThreshold
/dports/audio/faust/faust-2.37.3/architecture/smartKeyboard/android/app/oboe/apps/OboeTester/app/src/main/cpp/analyzer/
H A DGlitchAnalyzer.h159 if (peak > mThreshold) { in processInputFrame()
175 if (mMagnitude > mThreshold) { in processInputFrame()
215 } else if (mMagnitude < mThreshold) { in processInputFrame()
336 double mThreshold = 0.005; variable
/dports/www/firefox-esr/firefox-91.8.0/image/
H A DAnimationFrameBuffer.cpp16 : AnimationFrameBuffer(aBatch, aStartFrame), mThreshold(aThreshold) { in AnimationFrameRetainedBuffer()
25 if (mThreshold < minThreshold) { in AnimationFrameRetainedBuffer()
26 mThreshold = minThreshold; in AnimationFrameRetainedBuffer()
37 MOZ_ASSERT(mFrames.Length() < mThreshold); in InsertInternal()
42 return mSize < mThreshold; in InsertInternal()
/dports/lang/spidermonkey78/firefox-78.9.0/image/
H A DAnimationFrameBuffer.cpp16 : AnimationFrameBuffer(aBatch, aStartFrame), mThreshold(aThreshold) { in AnimationFrameRetainedBuffer()
25 if (mThreshold < minThreshold) { in AnimationFrameRetainedBuffer()
26 mThreshold = minThreshold; in AnimationFrameRetainedBuffer()
37 MOZ_ASSERT(mFrames.Length() < mThreshold); in InsertInternal()
42 return mSize < mThreshold; in InsertInternal()
/dports/www/firefox/firefox-99.0/image/
H A DAnimationFrameBuffer.cpp16 : AnimationFrameBuffer(aBatch, aStartFrame), mThreshold(aThreshold) { in AnimationFrameRetainedBuffer()
25 if (mThreshold < minThreshold) { in AnimationFrameRetainedBuffer()
26 mThreshold = minThreshold; in AnimationFrameRetainedBuffer()
37 MOZ_ASSERT(mFrames.Length() < mThreshold); in InsertInternal()
42 return mSize < mThreshold; in InsertInternal()

1234