Home
last modified time | relevance | path

Searched refs:bd (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/media/libstagefright/codecs/aacdec/
Dcalc_auto_corr.cpp136 Int32 bd, in calc_auto_corr_LC() argument
152 temp1 = (realBuf[ 0][bd]) >> N; in calc_auto_corr_LC()
153 temp3 = (realBuf[-1][bd]) >> N; in calc_auto_corr_LC()
154 temp5 = (realBuf[-2][bd]) >> N; in calc_auto_corr_LC()
172 temp1 = (realBuf[j][bd]) >> N; in calc_auto_corr_LC()
253 Int32 bd, in calc_auto_corr() argument
279 temp1 = realBuf[0 ][bd] >> N; in calc_auto_corr()
280 temp2 = imagBuf[0 ][bd] >> N; in calc_auto_corr()
281 temp3 = realBuf[0-1][bd] >> N; in calc_auto_corr()
282 temp4 = imagBuf[0-1][bd] >> N; in calc_auto_corr()
[all …]
Dcalc_auto_corr.h98 Int32 bd,
107 Int32 bd,
/frameworks/compile/libbcc/runtime/lib/ppc/
Dmultc3.c32 long double bd = __gcc_qmul(b,d); in __multc3() local
36 DD real = { .ld = __gcc_qsub(ac,bd) }; in __multc3()
69 DD bdDD = { .ld = bd }; in __multc3()
/frameworks/base/core/java/android/os/
DBatteryStats.java1956 BitDescription bd = descriptions[i]; in printBitDescriptions() local
1957 if ((diff&bd.mask) != 0) { in printBitDescriptions()
1958 if (bd.shift < 0) { in printBitDescriptions()
1959 pw.print((newval&bd.mask) != 0 ? " +" : " -"); in printBitDescriptions()
1960 pw.print(bd.name); in printBitDescriptions()
1963 pw.print(bd.name); in printBitDescriptions()
1965 int val = (newval&bd.mask)>>bd.shift; in printBitDescriptions()
1966 if (bd.values != null && val >= 0 && val < bd.values.length) { in printBitDescriptions()
1967 pw.print(bd.values[val]); in printBitDescriptions()
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
DNotificationBuilderTest.java395 final BitmapDrawable bd = (BitmapDrawable)getResources().getDrawable(id); in loadBitmap() local
396 return Bitmap.createBitmap(bd.getBitmap()); in loadBitmap()
DNotificationTestList.java874 BitmapDrawable bd = (BitmapDrawable)getResources().getDrawable(resId); in loadBitmap() local
875 return Bitmap.createBitmap(bd.getBitmap()); in loadBitmap()
/frameworks/base/media/java/android/media/videoeditor/
DMediaArtistNativeHelper.java3192 BigDecimal bd = new BigDecimal(apRatio); in getAspectRatio() local
3193 bd = bd.setScale(3, BigDecimal.ROUND_HALF_UP); in getAspectRatio()
3194 apRatio = bd.doubleValue(); in getAspectRatio()