Lines Matching refs:lfp
168 C2LargeFrame::output *lfp = C2LargeFrame::output::From(param.get()); in tryReconfigure() local
169 if (lfp == nullptr) { in tryReconfigure()
183 if (lfp->maxSize < maxInputSize.value) { in tryReconfigure()
184 lfp->maxSize = maxInputSize.value; in tryReconfigure()
187 lfp->maxSize = in tryReconfigure()
188 (lfp->maxSize > MAX_SUPPORTED_SIZE) ? MAX_SUPPORTED_SIZE : in tryReconfigure()
189 (lfp->maxSize < 0) ? 0 : lfp->maxSize; in tryReconfigure()
190 lfp->thresholdSize = in tryReconfigure()
191 (lfp->thresholdSize > MAX_SUPPORTED_SIZE) ? MAX_SUPPORTED_SIZE : in tryReconfigure()
192 (lfp->thresholdSize < 0) ? 0 : lfp->thresholdSize; in tryReconfigure()
194 if ((currentConfig.maxSize == lfp->maxSize) in tryReconfigure()
195 && (currentConfig.thresholdSize == lfp->thresholdSize)) { in tryReconfigure()
201 (currentConfig.maxSize == 0 && lfp->maxSize != 0) in tryReconfigure()
202 || (currentConfig.maxSize != 0 && lfp->maxSize == 0); in tryReconfigure()
205 << " MaxSize: " << lfp->maxSize in tryReconfigure()
206 << " ThresholdSize: " << lfp->thresholdSize; in tryReconfigure()
210 std::vector<C2Param*> config{lfp}; in tryReconfigure()
214 << " MaxSize: " << lfp->maxSize in tryReconfigure()
215 << " ThresholdSize: " << lfp->thresholdSize; in tryReconfigure()
219 << lfp->maxSize in tryReconfigure()
220 << " ThresholdSize " << lfp->thresholdSize; in tryReconfigure()