Searched refs:newRes (Results 1 – 4 of 4) sorted by relevance
243 int32_t newRes; in WebRtcIsacfix_DecLogisticMulti2() local283 newRes = (inSqrt / res + res) >> 1; in WebRtcIsacfix_DecLogisticMulti2()286 res = newRes; in WebRtcIsacfix_DecLogisticMulti2()287 newRes = (inSqrt / res + res) >> 1; in WebRtcIsacfix_DecLogisticMulti2()288 } while (newRes != res && i-- > 0); in WebRtcIsacfix_DecLogisticMulti2()290 tmpARSpecQ8 = (uint16_t)newRes; in WebRtcIsacfix_DecLogisticMulti2()
297 int32_t res, in_sqrt, newRes; in CalcRootInvArSpec() local366 newRes = (in_sqrt / res + res) >> 1; in CalcRootInvArSpec()369 res = newRes; in CalcRootInvArSpec()370 newRes = (in_sqrt / res + res) >> 1; in CalcRootInvArSpec()371 } while (newRes != res && i-- > 0); in CalcRootInvArSpec()373 CurveQ8[k] = (int16_t)newRes; in CalcRootInvArSpec()385 newRes = (in_sqrt / res + res) >> 1; in CalcRootInvArSpec()388 res = newRes; in CalcRootInvArSpec()389 newRes = (in_sqrt / res + res) >> 1; in CalcRootInvArSpec()390 } while (newRes != res && i-- > 0); in CalcRootInvArSpec()[all …]
279 int32_t newRes; in WebRtcIsac_DecodeSpec() local318 newRes = (in_sqrt / res + res) >> 1; in WebRtcIsac_DecodeSpec()320 res = newRes; in WebRtcIsac_DecodeSpec()321 newRes = (in_sqrt / res + res) >> 1; in WebRtcIsac_DecodeSpec()322 } while (newRes != res && i-- > 0); in WebRtcIsac_DecodeSpec()324 invARSpecQ8[k] = (int16_t)newRes; in WebRtcIsac_DecodeSpec()406 int32_t newRes; in WebRtcIsac_EncodeSpec() local571 newRes = (in_sqrt / res + res) >> 1; in WebRtcIsac_EncodeSpec()573 res = newRes; in WebRtcIsac_EncodeSpec()574 newRes = (in_sqrt / res + res) >> 1; in WebRtcIsac_EncodeSpec()[all …]
188 auto newRes = b.create<mhlo::TupleOp>(whileOp.getLoc(), loopOut); in MatchAndRewrite() local189 whileOp.replaceAllUsesWith(newRes.getOperation()); in MatchAndRewrite()