Home
last modified time | relevance | path

Searched refs:c2 (Results 1 – 25 of 67) sorted by relevance

123

/frameworks/base/services/core/java/com/android/server/wm/
DWatermark.java72 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/layoutlib/bridge/src/android/graphics/
DGradient_Delegate.java196 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/
DHbpcdUtils.java51 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/
DrsMatrix4x4.cpp46 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/base/core/java/android/bluetooth/
DBluetoothCodecStatus.java76 BluetoothCodecConfig[] c2) { in sameCapabilities() argument
78 return (c2 == null); in sameCapabilities()
80 if (c2 == null) { in sameCapabilities()
83 if (c1.length != c2.length) { in sameCapabilities()
86 return Arrays.asList(c1).containsAll(Arrays.asList(c2)); in sameCapabilities()
/frameworks/compile/libbcc/tests/debuginfo/host-tests/
Dparameters.cpp24 char c2[2]; member
41 s.c2[0] = '0'; in main()
42 s.c2[1] = '1'; in main()
/frameworks/minikin/libs/minikin/
DGraphemeBreak.cpp77 uint32_t c2 = 0; in isGraphemeBreak() local
81 U16_NEXT(buf, offset_forward, start + count, c2); in isGraphemeBreak()
83 int32_t p2 = tailoredGraphemeClusterBreak(c2); in isGraphemeBreak()
134 if (isEmojiModifier(c2)) { in isGraphemeBreak()
153 if (p1 == U_GCB_ZWJ && isEmoji(c2) && offset_back > start) { in isGraphemeBreak()
200 u_getIntPropertyValue(c2, UCHAR_GENERAL_CATEGORY) == U_OTHER_LETTER) { in isGraphemeBreak()
/frameworks/ml/nn/runtime/test/specs/V1_0/
Dconcat_float_3.mod.py41 for c2 in range(col2):
42 output_values[r * output_col + col1 + c2] = input2_values[r * col2 + c2]
Dconcat_quant8_3.mod.py41 for c2 in range(col2):
42 output_values[r * output_col + col1 + c2] = input2_values[r * col2 + c2]
/frameworks/ml/nn/runtime/test/specs/V1_1/
Dconcat_float_3_relaxed.mod.py42 for c2 in range(col2):
43 output_values[r * output_col + col1 + c2] = input2_values[r * col2 + c2]
/frameworks/rs/cpu_ref/
DrsCpuIntrinsics_x86.cpp83 __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/native/opengl/tests/hwc/
DhwcTestLib.cpp164 << 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 …]
DhwcTestLib.h56 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/rs/rsov/compiler/tests/globals/
Dmul2.rs21 float4 c2;
25 return c1 * in * c2;
Dmul2.ll20 @c2 = common global <4 x float> zeroinitializer, align 16
31 %1 = load <4 x float>, <4 x float>* @c2, align 16, !tbaa !18
54 !8 = !{!"c2", !"float4"}
/frameworks/native/libs/vr/libbufferhub/
Dbuffer_hub-test.cpp58 std::unique_ptr<BufferConsumer> c2 = in TEST_F() local
60 ASSERT_TRUE(c2.get() != nullptr); in TEST_F()
70 EXPECT_EQ(c2->buffer_state_bit() & kProducerStateBit, 0U); in TEST_F()
72 EXPECT_NE(c2->buffer_state_bit(), 0U); in TEST_F()
73 EXPECT_EQ(c2->buffer_state_bit() & (c2->buffer_state_bit() - 1), 0U); in TEST_F()
75 EXPECT_EQ(c->buffer_state_bit() & c2->buffer_state_bit(), 0U); in TEST_F()
80 EXPECT_EQ(0, RETRY_EINTR(c2->Poll(kPollTimeoutMs))); in TEST_F()
87 EXPECT_EQ(1, RETRY_EINTR(c2->Poll(kPollTimeoutMs))); in TEST_F()
94 EXPECT_EQ(1, RETRY_EINTR(c2->Poll(kPollTimeoutMs))); in TEST_F()
96 EXPECT_EQ(0, c2->Acquire(&fence, &context)); in TEST_F()
[all …]
/frameworks/base/core/tests/coretests/src/android/database/sqlite/
DSQLiteConnectionPoolTest.java80 SQLiteConnection c2 = pool.acquireConnection("pragma user_version", 0, null); in testCloseIdleConnections() local
81 assertTrue("Returned connection should be the same", c1 == c2); in testCloseIdleConnections()
82 pool.releaseConnection(c2); in testCloseIdleConnections()
/frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/
Dapitest.rs47 volatile char2 c2;
152 c2 = rsGetElementAt_char2(aChar2, 0);
153 rsSetElementAt_char2(aChar2, c2, 0);
154 c2 = rsGetElementAt_char2(aChar2, 0, 0);
155 rsSetElementAt_char2(aChar2, c2, 0, 0);
156 c2 = rsGetElementAt_char2(aChar2, 0, 0, 0);
157 rsSetElementAt_char2(aChar2, c2, 0, 0, 0);
434 c2 = convert_char2(c2);
435 c2 = convert_char2(uc2);
436 c2 = convert_char2(s2);
[all …]
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dapitest.rs31 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/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dapitest.rs49 volatile char2 c2;
154 c2 = rsGetElementAt_char2(aChar2, 0);
155 rsSetElementAt_char2(aChar2, c2, 0);
156 c2 = rsGetElementAt_char2(aChar2, 0, 0);
157 rsSetElementAt_char2(aChar2, c2, 0, 0);
158 c2 = rsGetElementAt_char2(aChar2, 0, 0, 0);
159 rsSetElementAt_char2(aChar2, c2, 0, 0, 0);
436 c2 = convert_char2(c2);
437 c2 = convert_char2(uc2);
438 c2 = convert_char2(s2);
[all …]
/frameworks/base/rs/java/android/renderscript/
DMatrix4f.java406 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/
DMatrix4f.java407 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/base/core/tests/coretests/src/android/widget/
DTextViewTest.java91 char[] c2 = new char[7]; in testArray() local
92 ((GetChars) newText).getChars(1, 4, c2, 2); in testArray()
93 assertEquals('\0', c2[1]); in testArray()
94 assertEquals(' ', c2[2]); in testArray()
95 assertEquals('W', c2[3]); in testArray()
96 assertEquals('o', c2[4]); in testArray()
97 assertEquals('\0', c2[5]); in testArray()
DSimpleCursorAdapterTest.java121 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/av/media/libstagefright/foundation/include/media/stagefright/foundation/
DByteUtils.h25 constexpr int FOURCC(unsigned char c1, unsigned char c2, unsigned char c3, unsigned char c4) { in FOURCC() argument
26 return ((c1) << 24 | (c2) << 16 | (c3) << 8 | (c4)); in FOURCC()

123