Home
last modified time | relevance | path

Searched refs:maxShift (Results 1 – 4 of 4) sorted by relevance

/external/aac/libSBRdec/src/
Dsbrdec_drc.cpp201 int col, int numQmfSubSamples, int maxShift) { in sbrDecoder_drcApplySlot() argument
360 if (hDrcData->prevFact_exp < maxShift) { in sbrDecoder_drcApplySlot()
361 drcFact1_mag >>= maxShift - hDrcData->prevFact_exp; in sbrDecoder_drcApplySlot()
363 if (fact_exp < maxShift) { in sbrDecoder_drcApplySlot()
364 drcFact2_mag >>= maxShift - fact_exp; in sbrDecoder_drcApplySlot()
476 if (fact_exp < maxShift) { in sbrDecoder_drcApplySlot()
477 drcFact_mag >>= maxShift - fact_exp; in sbrDecoder_drcApplySlot()
513 int maxShift = 0; in sbrDecoder_drcApply() local
524 if (hDrcData->prevFact_exp > maxShift) { in sbrDecoder_drcApply()
525 maxShift = hDrcData->prevFact_exp; in sbrDecoder_drcApply()
[all …]
Dsbr_dec.cpp773 int maxShift = 0; in sbr_dec() local
776 if (hSbrDec->sbrDrcChannel.prevFact_exp > maxShift) { in sbr_dec()
777 maxShift = hSbrDec->sbrDrcChannel.prevFact_exp; in sbr_dec()
779 if (hSbrDec->sbrDrcChannel.currFact_exp > maxShift) { in sbr_dec()
780 maxShift = hSbrDec->sbrDrcChannel.currFact_exp; in sbr_dec()
782 if (hSbrDec->sbrDrcChannel.nextFact_exp > maxShift) { in sbr_dec()
783 maxShift = hSbrDec->sbrDrcChannel.nextFact_exp; in sbr_dec()
792 outScalefactor = maxShift - (8); in sbr_dec()
825 rQmfImag, i, synQmfRight->no_col, maxShift); in sbr_dec()
830 maxShift); in sbr_dec()
Dsbrdec_drc.h143 int col, int numQmfSubSamples, int maxShift);
/external/llvm-project/mlir/lib/Transforms/Utils/
DLoopUtils.cpp332 uint64_t maxShift = *std::max_element(shifts.begin(), shifts.end()); in affineForOpBodySkew() local
333 if (maxShift >= numChildOps) { in affineForOpBodySkew()
342 std::vector<std::vector<Operation *>> sortedOpGroups(maxShift + 1); in affineForOpBodySkew()