Searched refs:ifactor (Results 1 - 3 of 3) sorted by relevance

/external/libvpx/libvpx/vp8/common/
H A Dmfqe.c175 int ifactor; local
180 ifactor = (sad << MFQE_PRECISION) / thr;
181 ifactor >>= (qdiff >> 5);
183 if (ifactor) {
185 uvd_stride, blksize, ifactor);
/external/tensorflow/tensorflow/contrib/integrate/python/ops/
H A Dodes.py220 ifactor=10.0,
231 factor = math_ops.maximum(1 / ifactor,
298 ifactor=10.0,
310 y0, t, rtol, atol, safety, ifactor, dfactor, max_num_steps
316 ifactor = ops.convert_to_tensor(ifactor, dtype=t.dtype, name='ifactor')
354 dt_next = _optimal_step_size(dt, error_ratio, safety, ifactor, dfactor)
470 * ifactor: maximum factor by which the adaptive step may be increased
/external/libvpx/libvpx/vp9/common/
H A Dvp9_mfqe.c184 int ifactor = weight * sad * vdiff / (sad_thr * vdiff_thr); local
185 // When ifactor equals weight, no MFQE is done.
186 if (ifactor > weight) {
187 ifactor = weight;
190 uvd_stride, bs, ifactor);

Completed in 143 milliseconds