Searched defs:f2 (Results 1 - 14 of 14) sorted by relevance

/frameworks/compile/libbcc/tests/debuginfo/host-tests/
H A Dlocals.cpp8 // CHECK: s = {f = 0.00100000005, f2 = {10000, 100.5}}
18 float f2[2]; member in struct:float_struct
41 s.f2[0] = 1e4f;
42 s.f2[1] = 100.5f;
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dlsp_az.cpp461 Word32 f1[6], f2[6];
465 Get_lsp_pol (&lsp[1], f2);
470 f2[i] = L_sub (f2[i], f2[i - 1]); // f2[i] -= f2[i-1];
476 t0 = L_add (f1[i], f2[i]); // f1[i] + f2[i]
478 t0 = L_sub (f1[i], f2[
518 Word32 f2[6]; local
[all...]
H A Daz_lsp.cpp57 4. Used NC in the definition of f1 and f2 arrays.
357 f2[i] = a[i] - a[11-i] + f2[i-1] ; i=1,...,5
389 Word16 f1[M / 2 + 1], f2[M / 2 + 1];
397 * f2[0] = 1.0; *
402 * f2[i+1] = a[i+1] - a[M-i] + f2[i] ; *
407 f2[0] = 1024; // f2[0] = 1.0
425 // f2[
584 Word16 f2[NC + 1]; local
[all...]
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Disp_az.cpp142 int32 f1[NC16k + 1], f2[NC16k]; local
159 Get_isp_pol_16kHz(&isp[1], f2, nc - 1);
162 f2[i] = shl_int32(f2[i], 2);
168 Get_isp_pol(&isp[1], f2, nc - 1);
177 f2[i] -= f2[i - 2]; /* f2[i] -= f2[i-2]; */
188 /* f2[
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Disp_az.c47 Word32 f1[NC16k + 1], f2[NC16k]; local
66 Get_isp_pol_16kHz(&isp[1], f2, (nc - 1));
69 f2[i] = f2[i] << 2;
72 Get_isp_pol(&isp[1], f2, (nc - 1));
80 f2[i] = vo_L_sub(f2[i], f2[i - 2]); /* f2[i] -= f2[
[all...]
H A Daz_isp.c70 Word16 f1[NC + 1], f2[NC]; local
80 * f2[i] = a[i] - a[M-i]; *
85 * f2[i] += f2[i-2]; *
91 f2[i] = vo_round(t0 - (a[M - i] << 15)); /* =(a[i]-a[M-i])/2 */
95 f2[i] = add1(f2[i], f2[i - 2]);
109 ip = 0; /* indicator for f1 or f2 */
170 coef = f2;
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DarmVCM4P10_FwdTransformResidual4x4.c50 int f2 = e0 - e2; local
54 pDst[i+2] = (OMX_S16)f2;
63 int f2 = pDst[i+8]; local
67 int g2 = f1 + f2;
68 int g3 = f1 - f2;
H A DarmVCM4P10_TransformResidual4x4.c51 int f2 = e1 - e2; local
55 pDst[i+2] = (OMX_S16)f2;
64 int f2 = pDst[i+8]; local
66 int g0 = f0 + f2;
67 int g1 = f0 - f2;
/frameworks/native/libs/ui/
H A DFence.cpp73 const sp<Fence>& f2) {
79 if (f1->isValid() && f2->isValid()) {
80 result = sync_merge(name.string(), f1->mFenceFd, f2->mFenceFd);
83 } else if (f2->isValid()) {
84 result = sync_merge(name.string(), f2->mFenceFd, f2->mFenceFd);
91 name.string(), f1->mFenceFd, f2->mFenceFd,
72 merge(const String8& name, const sp<Fence>& f1, const sp<Fence>& f2) argument
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java87 FactoryMerger(Factory<T> f1, Factory<T> f2) { argument
89 mF2 = f2;
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java155 FactoryMerger(Factory f1, Factory2 f12, Factory f2, Factory2 f22) { argument
157 mF2 = f2;
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_cl.c519 float2 f2 = convert_float2(p); local
520 return pow(v, f2);
/frameworks/rs/cpu_ref/
H A DrsCpuRuntimeStubs.cpp69 static void SC_debugFv2(const char *s, float f1, float f2) { argument
70 ALOGD("float x2 %s {%f, %f}", s, f1, f2);
72 static void SC_debugFv3(const char *s, float f1, float f2, float f3) { argument
73 ALOGD("float x3 %s {%f, %f, %f}", s, f1, f2, f3);
75 static void SC_debugFv4(const char *s, float f1, float f2, float f3, float f4) { argument
76 ALOGD("float x4 %s {%f, %f, %f, %f}", s, f1, f2, f3, f4);
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp1291 static void SC_debugFv2(const char *s, float f1, float f2) { argument
1292 ALOGD("%s {%f, %f}", s, f1, f2);
1294 static void SC_debugFv3(const char *s, float f1, float f2, float f3) { argument
1295 ALOGD("%s {%f, %f, %f}", s, f1, f2, f3);
1297 static void SC_debugFv4(const char *s, float f1, float f2, float f3, float f4) { argument
1298 ALOGD("%s {%f, %f, %f, %f}", s, f1, f2, f3, f4);
1433 void rsDebug(const char *s, float f1, float f2) { argument
1434 SC_debugFv2(s, f1, f2);
1437 void rsDebug(const char *s, float f1, float f2, float f3) { argument
1438 SC_debugFv3(s, f1, f2, f
1441 rsDebug(const char *s, float f1, float f2, float f3, float f4) argument
[all...]

Completed in 467 milliseconds