/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
D | omxVCM4P10_TransformDequantLumaDCFromPair.c | 87 int c0 = pData[i+0]; in InvTransformDC4x4() local 91 pData[i+0] = (OMX_S16)(c0+c1+c2+c3); in InvTransformDC4x4() 92 pData[i+1] = (OMX_S16)(c0+c1-c2-c3); in InvTransformDC4x4() 93 pData[i+2] = (OMX_S16)(c0-c1-c2+c3); in InvTransformDC4x4() 94 pData[i+3] = (OMX_S16)(c0-c1+c2-c3); in InvTransformDC4x4() 100 int c0 = pData[i+0]; in InvTransformDC4x4() local 104 pData[i+0] = (OMX_S16)(c0+c1+c2+c3); in InvTransformDC4x4() 105 pData[i+4] = (OMX_S16)(c0+c1-c2-c3); in InvTransformDC4x4() 106 pData[i+8] = (OMX_S16)(c0-c1-c2+c3); in InvTransformDC4x4() 107 pData[i+12] = (OMX_S16)(c0-c1+c2-c3); in InvTransformDC4x4()
|
/frameworks/av/media/libstagefright/codecs/avc/common/src/ |
D | deblock.cpp | 1090 int C0, c0, dif, AbsDelta, tmp, tmp1; in EdgeLoop_Luma_horizontal() local 1207 c0 = C0 = clipTable[Strng]; in EdgeLoop_Luma_horizontal() 1208 if (ap < 0) c0++; in EdgeLoop_Luma_horizontal() 1209 if (aq < 0) c0++; in EdgeLoop_Luma_horizontal() 1213 tmp = dif + c0; in EdgeLoop_Luma_horizontal() 1214 if ((uint)tmp > (uint)c0 << 1) in EdgeLoop_Luma_horizontal() 1217 dif = (tmp & (c0 << 1)) - c0; in EdgeLoop_Luma_horizontal() 1279 int C0, c0, dif, AbsDelta, Strng, tmp, tmp1; in EdgeLoop_Luma_vertical() local 1422 c0 = C0 = clipTable[Strng]; in EdgeLoop_Luma_vertical() 1423 if (ap < 0) c0++; in EdgeLoop_Luma_vertical() [all …]
|
/frameworks/minikin/libs/minikin/ |
D | GraphemeBreak.cpp | 155 uint32_t c0 = 0; in isGraphemeBreak() local 156 U16_PREV(buf, start, offset_back, c0); in isGraphemeBreak() 157 if (c0 == 0xFE0F && offset_back > start) { in isGraphemeBreak() 159 U16_PREV(buf, start, offset_back, c0); in isGraphemeBreak() 161 if (isEmoji(c0)) { in isGraphemeBreak()
|
/frameworks/rs/cpu_ref/ |
D | rsCpuIntrinsics_x86.cpp | 83 __m128i c0, c2, c4, c6, c8; in rsdIntrinsicConvolve3x3_K() local 90 c0 = _mm_shuffle_epi32(x, 0x00); in rsdIntrinsicConvolve3x3_K() 113 o0 = _mm_madd_epi16(_mm_unpacklo_epi16(p0, p1), c0); in rsdIntrinsicConvolve3x3_K() 114 o1 = _mm_madd_epi16(_mm_unpacklo_epi16(p1, p2), c0); in rsdIntrinsicConvolve3x3_K() 151 __m128i c0, c1, c2, c3; in rsdIntrinsicColorMatrix4x4_K() local 157 c0 = _mm_loadl_epi64((const __m128i *)(coef+0)); in rsdIntrinsicColorMatrix4x4_K() 159 c0 = _mm_unpacklo_epi16(c0, c1); in rsdIntrinsicColorMatrix4x4_K() 170 x2 = _mm_madd_epi16(xy, _mm_shuffle_epi32(c0, 0x00)); in rsdIntrinsicColorMatrix4x4_K() 171 y2 = _mm_madd_epi16(xy, _mm_shuffle_epi32(c0, 0x55)); in rsdIntrinsicColorMatrix4x4_K() 172 z2 = _mm_madd_epi16(xy, _mm_shuffle_epi32(c0, 0xaa)); in rsdIntrinsicColorMatrix4x4_K() [all …]
|
/frameworks/rs/ |
D | rsMatrix4x4.cpp | 44 int c0 = (i+1) % 4; in inverse() local 52 (m[c0 + 4*r0] * (m[c1 + 4*r1] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r1])) in inverse() 53 - (m[c0 + 4*r1] * (m[c1 + 4*r0] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r0])) in inverse() 54 + (m[c0 + 4*r2] * (m[c1 + 4*r0] * m[c2 + 4*r1] - m[c1 + 4*r1] * m[c2 + 4*r0])); in inverse() 86 int c0 = (i+1) % 4; in inverseTranspose() local 93 … float minor = (m[c0 + 4*r0] * (m[c1 + 4*r1] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r1])) in inverseTranspose() 94 … - (m[c0 + 4*r1] * (m[c1 + 4*r0] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r0])) in inverseTranspose() 95 … + (m[c0 + 4*r2] * (m[c1 + 4*r0] * m[c2 + 4*r1] - m[c1 + 4*r1] * m[c2 + 4*r0])); in inverseTranspose()
|
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
D | BitmapTest.java | 197 int c0 = colors[i]; in testSetPixelsWithNonOpaqueAlpha() local 207 int a0 = Color.alpha(c0); in testSetPixelsWithNonOpaqueAlpha() 211 int r0 = Color.red(c0); in testSetPixelsWithNonOpaqueAlpha() 216 int g0 = Color.green(c0); in testSetPixelsWithNonOpaqueAlpha() 221 int b0 = Color.blue(c0); in testSetPixelsWithNonOpaqueAlpha() 228 android.util.Log.d("skia", "original " + Integer.toHexString(c0) + in testSetPixelsWithNonOpaqueAlpha()
|
/frameworks/native/opengl/libagl/ |
D | primitives.cpp | 31 int32_t* it, int32_t c0, int32_t c1, int32_t c2); 304 int32_t c0, int32_t c1, int32_t c2) const in iteratorsScale() argument 306 int32_t dc01 = c1 - c0; in iteratorsScale() 307 int32_t dc02 = c2 - c0; in iteratorsScale() 308 const int A = gglClz(abs(c0)); in iteratorsScale() 312 c0 <<= scale; in iteratorsScale() 316 c0 >>= -scale; in iteratorsScale() 323 int32_t c = c0 - (gglMulAddx(dcdx, m_x0, in iteratorsScale() 332 GGLfixed c0, GGLfixed c1, GGLfixed c2) const in iterators1616() argument 334 const GGLfixed dc01 = c1 - c0; in iterators1616() [all …]
|
D | context.h | 554 int32_t c0, int32_t c1, int32_t c2) const; 557 GGLfixed c0, GGLfixed c1, GGLfixed c2) const; 560 int32_t c0, int32_t c1, int32_t c2) const; 563 int32_t c0, int32_t c1, int32_t c2) const;
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
D | UT_script_group2_pointwise.java | 57 ScriptGroup.Closure c0 = in run() local 65 c0.getReturn()); in run()
|
D | UT_script_group2_float.java | 58 ScriptGroup.Closure c0 = in run() local 70 c0.getReturn(), in run()
|
D | UT_script_group2_nochain.java | 58 ScriptGroup.Closure c0 = in run() local
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
D | UT_script_group2_pointwise.java | 55 ScriptGroup.Closure c0 = in run() local 63 c0.getReturn()); in run()
|
D | UT_script_group2_float.java | 58 ScriptGroup.Closure c0 = in run() local 70 c0.getReturn(), in run()
|
D | UT_script_group2_nochain.java | 56 ScriptGroup.Closure c0 = in run() local
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
D | Matrix4f.java | 405 int c0 = (i+1) % 4; in computeCofactor() local 412 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] - in computeCofactor() 414 - (mMat[c0 + 4*r1] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r2] - in computeCofactor() 416 + (mMat[c0 + 4*r2] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r1] - in computeCofactor()
|
/frameworks/base/rs/java/android/renderscript/ |
D | Matrix4f.java | 404 int c0 = (i+1) % 4; in computeCofactor() local 411 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] - in computeCofactor() 413 - (mMat[c0 + 4*r1] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r2] - in computeCofactor() 415 + (mMat[c0 + 4*r2] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r1] - in computeCofactor()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
D | ModelInterpreter.java | 472 char c0; in onCHLD() local 476 c0 = command.charAt(6); in onCHLD() 482 success = mSimulatedCallState.onChld(c0, c1); in onCHLD()
|
D | SimulatedGsmCallState.java | 392 onChld(char c0, char c1) { in onChld() argument 404 switch (c0) { in onChld()
|
/frameworks/av/services/audioflinger/ |
D | AudioResamplerSinc.cpp | 601 int32_t c0 = coefs[0]; in interpolate() local 603 int32_t sinc = mulAdd(lerp, (c1-c0)<<1, c0); in interpolate()
|
/frameworks/base/core/tests/coretests/src/android/os/ |
D | AidlTest.java | 304 char[] c0 = new char[]{'a'}; in testArrays() local 307 char[] cr = mRemote.charArray(c0, c1, c2); in testArrays()
|
/frameworks/base/docs/html-intl/intl/ru/training/material/ |
D | drawables.jd | 117 c0,3.53,3.793,6.257,9,11.5
|
/frameworks/base/docs/html-intl/intl/zh-tw/training/material/ |
D | drawables.jd | 117 c0,3.53,3.793,6.257,9,11.5
|
/frameworks/base/docs/html-intl/intl/zh-cn/training/material/ |
D | drawables.jd | 117 c0,3.53,3.793,6.257,9,11.5
|
/frameworks/base/docs/html-intl/intl/ja/training/material/ |
D | drawables.jd | 117 c0,3.53,3.793,6.257,9,11.5
|
/frameworks/base/docs/html-intl/intl/ko/training/material/ |
D | drawables.jd | 117 c0,3.53,3.793,6.257,9,11.5
|