Home
last modified time | relevance | path

Searched refs:xx (Results 1 – 18 of 18) sorted by relevance

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
Dpvmp3_dequantize_sample.cpp154 int32 power_1_third(int32 xx) in power_1_third() argument
157 if (xx <= 512) in power_1_third()
159 return (power_one_third[xx] >> 1); in power_1_third()
163 if (xx >> 15) in power_1_third()
169 int32 x = xx; in power_1_third()
170 int32 m = 22 - pvmp3_normalize(xx); in power_1_third()
172 xx >>= m; in power_1_third()
173xx = (power_one_third[xx]) + (((power_one_third[xx+1] - power_one_third[xx]) >> m) * (x & ((1 << m… in power_1_third()
174 return (fxp_mul32_Q30(xx, two_cubic_roots[m])); in power_1_third()
Dpvmp3_dequantize_sample.h89 int32 power_1_third(int32 xx);
/frameworks/wilhelm/tools/hashgen/
Dfrag3.c14 const struct SLInterfaceID_ *xx = SL_IID_array; in main() local
16 for (MPH = 0; MPH < MPH_MAX; ++MPH, ++xx) { in main()
17 if (!memcmp(x, xx, 16)) { in main()
/frameworks/native/libs/ui/
DColorSpace.cpp44 float xx = std::abs(x); in absRcpResponse() local
45 return std::copysign(xx >= d * c ? (std::pow(xx, 1.0f / g) - b) / a : xx / c, x); in absRcpResponse()
49 float xx = std::abs(x); in absResponse() local
50 return std::copysign(xx >= d ? std::pow(a * xx + b, g) : c * xx, x); in absResponse()
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
DQuaternion.java134 double xx = x[1] * x[1]; in matrix() local
151 m[5] = 1 - 2 * (xx + zz); in matrix()
156 m[10] = 1 - 2 * (xx + yy); in matrix()
/frameworks/rs/cpu_ref/
DrsCpuIntrinsics_neon_Blur.S1330 .ifc \ra,xx
1331 .ifc \rb,xx
1364 ifneeded \macro \nextmacro, 13, 12, xx, xx, \step, \label
1365 ifneeded \macro \nextmacro, 12, 11, xx, xx, \step, \label
1366 ifneeded \macro \nextmacro, 11, 10, xx, xx, \step, \label
1367 ifneeded \macro \nextmacro, 10, 9, xx, xx, \step, \label
1368 ifneeded \macro \nextmacro, 9, 8, xx, xx, \step, \label
1369 ifneeded \macro \nextmacro, 8, 7, xx, xx, \step, \label
1370 ifneeded \macro \nextmacro, 7, 6, xx, xx, \step, \label
1371 ifneeded \macro \nextmacro, 6, 5, xx, xx, \step, \label
[all …]
DrsCpuIntrinsics_advsimd_Blur.S1359 .ifc \ra,xx
1360 .ifc \rb,xx
1392 ifneeded \macro \nextmacro, 13, 12, xx, xx, \step, \label
1393 ifneeded \macro \nextmacro, 12, 11, xx, xx, \step, \label
1394 ifneeded \macro \nextmacro, 11, 10, xx, v17.16b, \step, \label
1514 .macro prefill step=1, max_r=25, label=xx
/frameworks/rs/driver/runtime/
Drs_quaternion.c33 float xx = q->x * q->x; in rsQuaternionGetMatrixUnit() local
47 m->m[5] = 1.0f - 2.0f * ( xx + zz ); in rsQuaternionGetMatrixUnit()
51 m->m[10] = 1.0f - 2.0f * ( xx + yy ); in rsQuaternionGetMatrixUnit()
/frameworks/rs/script_api/
Drs_quaternion.spec75 float xx = q->x * q->x;
89 m->m[5] = 1.0f - 2.0f * ( xx + zz );
93 m->m[10] = 1.0f - 2.0f * ( xx + yy );
Drs_value_types.spec67 v2 = v4.xx; // Valid<br/>
/frameworks/native/opengl/libs/ETC1/
Detc1.cpp277 int xx = bx + x; in etc_average_colors_subblock() local
278 int i = xx + 4 * y; in etc_average_colors_subblock()
361 int xx = bx + x; in etc_encode_subblock_helper() local
362 int i = xx + 4 * y; in etc_encode_subblock_helper()
365 &pCompressed->low, y + xx * 4, pModifierTable); in etc_encode_subblock_helper()
/frameworks/compile/slang/tests/F_reflection3264_foreach_mismatch/
Dreflection3264_foreach_mismatch.rscript133 void xx(const int *a, const float *b) { }
138 void xx(const int *a, const void *b) { }
Dstderr.txt.expect9 reflection3264_foreach_mismatch.rscript:133:6: error: foreach kernel 'xx' has 0 usrData parameters …
/frameworks/native/libs/math/include/math/
Dmat3.h347 const U xx = x*q.x; in TMat33() local
357 m_value[1] = col_type( xy-zw, 1-xx-zz, yz+xw); // NOLINT in TMat33()
358 m_value[2] = col_type( xz+yw, yz-xw, 1-xx-yy); // NOLINT in TMat33()
Dmat4.h400 const U xx = x*q.x; in TMat44() local
410 m_value[1] = col_type( xy-zw, 1-xx-zz, yz+xw, 0); // NOLINT in TMat44()
411 m_value[2] = col_type( xz+yw, yz-xw, 1-xx-yy, 0); // NOLINT in TMat44()
/frameworks/av/media/libstagefright/
DRemoteMediaExtractor.cpp68 String8 xx = pMetaData.toString(); in RemoteMediaExtractor() local
/frameworks/rs/script_api/include/
Drs_quaternion.rsh92 float xx = q->x * q->x;
106 m->m[5] = 1.0f - 2.0f * ( xx + zz );
110 m->m[10] = 1.0f - 2.0f * ( xx + yy );
Drs_value_types.rsh69 * v2 = v4.xx; // Valid