Home
last modified time | relevance | path

Searched refs:hs (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/media/libstagefright/codecs/aacdec/
Dps_hybrid_filter_bank_allocation.cpp141 HYBRID *hs; in ps_hybrid_filter_bank_allocation() local
147 hs = (HYBRID *)ptr; in ps_hybrid_filter_bank_allocation()
151 hs->pResolution = (Int32*)ptr; in ps_hybrid_filter_bank_allocation()
158 hs->pResolution[i] = pResolution[i]; in ps_hybrid_filter_bank_allocation()
173 hs->nQmfBands = noBands; in ps_hybrid_filter_bank_allocation()
174 hs->qmfBufferMove = HYBRID_FILTER_LENGTH - 1; in ps_hybrid_filter_bank_allocation()
176 hs->mQmfBufferReal = (Int32 **)ptr; in ps_hybrid_filter_bank_allocation()
179 hs->mQmfBufferImag = (Int32 **)ptr; in ps_hybrid_filter_bank_allocation()
182 tmp = hs->qmfBufferMove; /* HYBRID_FILTER_LENGTH == 13 */ in ps_hybrid_filter_bank_allocation()
186 hs->mQmfBufferReal[i] = ptr; in ps_hybrid_filter_bank_allocation()
[all …]
/frameworks/base/core/java/android/widget/
DTextView.java6842 int hs = mScrollX; in bringPointIntoView() local
6855 if (x - hs < hslack) { in bringPointIntoView()
6856 hs = x - hslack; in bringPointIntoView()
6858 if (x - hs > hspace - hslack) { in bringPointIntoView()
6859 hs = x - (hspace - hslack); in bringPointIntoView()
6864 if (left - hs > 0) in bringPointIntoView()
6865 hs = left; in bringPointIntoView()
6866 if (right - hs < hspace) in bringPointIntoView()
6867 hs = right - hspace; in bringPointIntoView()
6869 if (right - hs < hspace) in bringPointIntoView()
[all …]