/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
D | omxVCM4P10_TransformDequantLumaDCFromPair.c | 89 int c2 = pData[i+2]; 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() 102 int c2 = pData[i+8]; 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/base/services/core/java/com/android/server/wm/ |
D | Watermark.java | 72 int c2 = mTokens[0].charAt(i+1); in Watermark() local 76 if (c2 >= 'a' && c2 <= 'f') c2 = c2 - 'a' + 10; in Watermark() 77 else if (c2 >= 'A' && c2 <= 'F') c2 = c2 - 'A' + 10; in Watermark() 78 else c2 -= '0'; in Watermark() 79 builder.append((char)(255-((c1*16)+c2))); in Watermark()
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | Gradient_Delegate.java | 196 private int computeColor(int c1, int c2, float percent) { in computeColor() argument 197 int a = computeChannel((c1 >> 24) & 0xFF, (c2 >> 24) & 0xFF, percent); in computeColor() 198 int r = computeChannel((c1 >> 16) & 0xFF, (c2 >> 16) & 0xFF, percent); in computeColor() 199 int g = computeChannel((c1 >> 8) & 0xFF, (c2 >> 8) & 0xFF, percent); in computeColor() 200 int b = computeChannel((c1 ) & 0xFF, (c2 ) & 0xFF, percent); in computeColor() 208 private int computeChannel(int c1, int c2, float percent) { in computeChannel() argument 209 return c1 + (int)((percent * (c2-c1)) + .5); in computeChannel()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | HbpcdUtils.java | 51 Cursor c2 = resolver.query(ArbitraryMccSidMatch.CONTENT_URI, projection2, in getMcc() local 54 if (c2 != null) { in getMcc() 55 int c2Counter = c2.getCount(); in getMcc() 61 Rlog.d(LOG_TAG, "Query Unresolved arbitrary returned the cursor " + c2); in getMcc() 63 c2.moveToFirst(); in getMcc() 64 tmpMcc = c2.getInt(0); in getMcc() 68 c2.close(); in getMcc() 71 c2.close(); in getMcc()
|
/frameworks/rs/ |
D | rsMatrix4x4.cpp | 46 int c2 = (i+3) % 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() 88 int c2 = (i+3) % 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/compile/libbcc/tests/debuginfo/host-tests/ |
D | parameters.cpp | 24 char c2[2]; member 41 s.c2[0] = '0'; in main() 42 s.c2[1] = '1'; in main()
|
/frameworks/minikin/libs/minikin/ |
D | GraphemeBreak.cpp | 75 uint32_t c2 = 0; in isGraphemeBreak() local 79 U16_NEXT(buf, offset_forward, start + count, c2); in isGraphemeBreak() 81 int32_t p2 = tailoredGraphemeClusterBreak(c2); in isGraphemeBreak() 132 if (isEmojiModifier(c2)) { in isGraphemeBreak() 151 if (p1 == U_GCB_ZWJ && isEmoji(c2) && offset_back > start) { in isGraphemeBreak() 198 && u_getIntPropertyValue(c2, UCHAR_GENERAL_CATEGORY) == U_OTHER_LETTER) { in isGraphemeBreak()
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
D | TextViewTest.java | 72 char[] c2 = new char[7]; in testArray() local 73 ((GetChars) newText).getChars(1, 4, c2, 2); in testArray() 74 assertEquals('\0', c2[1]); in testArray() 75 assertEquals(' ', c2[2]); in testArray() 76 assertEquals('W', c2[3]); in testArray() 77 assertEquals('o', c2[4]); in testArray() 78 assertEquals('\0', c2[5]); in testArray()
|
D | SimpleCursorAdapterTest.java | 121 Cursor c2 = createCursor(mFrom, data2); in testChangeCursorLive() local 122 ca.changeCursor(c2); in testChangeCursorLive() 162 Cursor c2 = createCursor(swappedFrom, mData2x2); in testChangeCursorColumns() local 163 ca.changeCursor(c2); in testChangeCursorColumns()
|
/frameworks/rs/cpu_ref/ |
D | rsCpuIntrinsics_x86.cpp | 83 __m128i c0, c2, c4, c6, c8; in rsdIntrinsicConvolve3x3_K() local 91 c2 = _mm_shuffle_epi32(x, 0x55); in rsdIntrinsicConvolve3x3_K() 116 o0 = _mm_add_epi32(o0, _mm_madd_epi16(_mm_unpacklo_epi16(p2, p4), c2)); in rsdIntrinsicConvolve3x3_K() 117 o1 = _mm_add_epi32(o1, _mm_madd_epi16(_mm_unpacklo_epi16(p3, p5), c2)); in rsdIntrinsicConvolve3x3_K() 151 __m128i c0, c1, c2, c3; in rsdIntrinsicColorMatrix4x4_K() local 161 c2 = _mm_loadl_epi64((const __m128i *)(coef+8)); in rsdIntrinsicColorMatrix4x4_K() 163 c2 = _mm_unpacklo_epi16(c2, c3); in rsdIntrinsicColorMatrix4x4_K() 175 x2 = _mm_add_epi32(x2, _mm_madd_epi16(zw, _mm_shuffle_epi32(c2, 0x00))); in rsdIntrinsicColorMatrix4x4_K() 176 y2 = _mm_add_epi32(y2, _mm_madd_epi16(zw, _mm_shuffle_epi32(c2, 0x55))); in rsdIntrinsicColorMatrix4x4_K() 177 z2 = _mm_add_epi32(z2, _mm_madd_epi16(zw, _mm_shuffle_epi32(c2, 0xaa))); in rsdIntrinsicColorMatrix4x4_K() [all …]
|
/frameworks/rs/rsov/compiler/tests/globals/ |
D | mul2.rs | 21 float4 c2; 25 return c1 * in * c2;
|
D | mul2.ll | 18 @c2 = common global <4 x float> zeroinitializer, align 16 29 %1 = load <4 x float>, <4 x float>* @c2, align 16, !tbaa !18 52 !8 = !{!"c2", !"float4"}
|
/frameworks/native/opengl/tests/hwc/ |
D | hwcTestLib.cpp | 164 << this->c2() << ", " in operator string() 309 float c1, c2, c3; in hwcTestParseColor() local 327 in >> c2; in hwcTestParseColor() 329 if ((c2 < 0.0) || (c2 > 1.0)) { return color; } in hwcTestParseColor() 346 || (c2 < 0.0) || (c2 > 1.0) in hwcTestParseColor() 352 return ColorFract(c1, c2, c3); in hwcTestParseColor() 582 pixel |= htonl((uint32_t) round((((1 << attrib->c2Size) - 1) * color.c2())) in hwcTestColor2Pixel() 709 startColor.c2() + (endColor.c2() - startColor.c2()) in hwcTestFillColorHBlend() 844 + ((float) (fromAttrib->c2Max - fromAttrib->c2Min) * color.c2()); in hwcTestColorConvert() 871 float r = color.c1(), g = color.c2(), b = color.c3(); in hwcTestColorConvert() [all …]
|
D | hwcTestLib.h | 56 ColorFract(float c1, float c2, float c3): _c1(c1), _c2(c2), _c3(c3) {}; in ColorFract() argument 58 float c2(void) const { return _c2; } in c2() function
|
/frameworks/native/libs/vr/libbufferhub/ |
D | bufferhub_tests.cpp | 36 std::unique_ptr<BufferConsumer> c2 = in TEST_F() local 38 ASSERT_TRUE(c2.get() != nullptr); in TEST_F() 44 EXPECT_LT(0, RETRY_EINTR(c2->Poll(10))); in TEST_F() 52 EXPECT_LE(0, c2->Acquire(&fence, &context)); in TEST_F() 54 EXPECT_GE(0, RETRY_EINTR(c2->Poll(0))); in TEST_F() 58 EXPECT_EQ(0, c2->Discard()); in TEST_F()
|
/frameworks/base/rs/java/android/renderscript/ |
D | Matrix4f.java | 406 int c2 = (i+3) % 4; in computeCofactor() local 411 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] - in computeCofactor() 412 mMat[c1 + 4*r2] * mMat[c2 + 4*r1])) in computeCofactor() 413 - (mMat[c0 + 4*r1] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r2] - in computeCofactor() 414 mMat[c1 + 4*r2] * mMat[c2 + 4*r0])) in computeCofactor() 415 + (mMat[c0 + 4*r2] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r1] - in computeCofactor() 416 mMat[c1 + 4*r1] * mMat[c2 + 4*r0])); in computeCofactor()
|
/frameworks/rs/support/java/src/android/support/v8/renderscript/ |
D | Matrix4f.java | 407 int c2 = (i+3) % 4; in computeCofactor() local 412 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] - in computeCofactor() 413 mMat[c1 + 4*r2] * mMat[c2 + 4*r1])) in computeCofactor() 414 - (mMat[c0 + 4*r1] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r2] - in computeCofactor() 415 mMat[c1 + 4*r2] * mMat[c2 + 4*r0])) in computeCofactor() 416 + (mMat[c0 + 4*r2] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r1] - in computeCofactor() 417 mMat[c1 + 4*r1] * mMat[c2 + 4*r0])); in computeCofactor()
|
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | apitest.rs | 31 volatile char2 c2; 134 c2 = rsGetElementAt_char2(aChar2, 0); 135 rsSetElementAt_char2(aChar2, c2, 0); 136 c2 = rsGetElementAt_char2(aChar2, 0, 0); 137 rsSetElementAt_char2(aChar2, c2, 0, 0); 138 c2 = rsGetElementAt_char2(aChar2, 0, 0, 0); 139 rsSetElementAt_char2(aChar2, c2, 0, 0, 0); 416 c2 = convert_char2(c2); 417 c2 = convert_char2(uc2); 418 c2 = convert_char2(s2); [all …]
|
/frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/ |
D | apitest.rs | 31 volatile char2 c2; 136 c2 = rsGetElementAt_char2(aChar2, 0); 137 rsSetElementAt_char2(aChar2, c2, 0); 138 c2 = rsGetElementAt_char2(aChar2, 0, 0); 139 rsSetElementAt_char2(aChar2, c2, 0, 0); 140 c2 = rsGetElementAt_char2(aChar2, 0, 0, 0); 141 rsSetElementAt_char2(aChar2, c2, 0, 0, 0); 418 c2 = convert_char2(c2); 419 c2 = convert_char2(uc2); 420 c2 = convert_char2(s2); [all …]
|
/frameworks/native/include/gui/ |
D | DisplayEventReceiver.h | 42 static inline constexpr uint32_t fourcc(char c1, char c2, char c3, char c4) { in fourcc() argument 44 static_cast<uint32_t>(c2) << 16 | in fourcc()
|
/frameworks/base/core/jni/ |
D | android_text_AndroidCharacter.cpp | 166 int c2 = u_charMirror(c1); in mirror() local 168 if (c1 != c2) { in mirror() 169 data[i] = c2; in mirror()
|
/frameworks/av/media/libstagefright/include/ |
D | Utils.h | 31 #define FOURCC(c1, c2, c3, c4) \ argument 32 ((c1) << 24 | (c2) << 16 | (c3) << 8 | (c4))
|
/frameworks/minikin/include/minikin/ |
D | MinikinFont.h | 122 static uint32_t MakeTag(char c1, char c2, char c3, char c4) { in MakeTag() argument 123 return ((uint32_t)c1 << 24) | ((uint32_t)c2 << 16) | in MakeTag()
|
/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/ |
D | UT_script_group2_nochain.java | 67 ScriptGroup.Closure c2 = in run() local 72 ScriptGroup group = builder.create("AddDouble2", c2.getReturn()); in run()
|
/frameworks/native/libs/binder/include/binder/ |
D | IBinder.h | 29 #define B_PACK_CHARS(c1, c2, c3, c4) \ argument 30 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
|