Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/codecs/amrwb/src/
Dweight_amrwb_lpc.cpp124 int32 roundFactor = 0x00004000L; in weight_amrwb_lpc() local
129 ap[i] = (int16)(fxp_mac_16by16(a[i], fac, roundFactor) >> 15); in weight_amrwb_lpc()
130 fac = (int16)(fxp_mac_16by16(fac, gamma, roundFactor) >> 15); in weight_amrwb_lpc()
132 ap[i] = (int16)(fxp_mac_16by16(a[i], fac, roundFactor) >> 15); in weight_amrwb_lpc()
/frameworks/base/core/java/android/text/format/
DFormatter.java158 final int roundFactor; in formatBytes() local
161 roundFactor = 1; in formatBytes()
164 roundFactor = 100; in formatBytes()
168 roundFactor = 10; in formatBytes()
171 roundFactor = 100; in formatBytes()
176 roundFactor = 1; in formatBytes()
179 roundFactor = 100; in formatBytes()
193 : (((long) Math.round(result * roundFactor)) * mult / roundFactor); in formatBytes()