Home
last modified time | relevance | path

Searched refs:c3 (Results 1 – 25 of 35) sorted by relevance

12

/frameworks/base/telephony/common/com/android/internal/telephony/
DHbpcdUtils.java77 Cursor c3 = resolver.query(MccSidConflicts.CONTENT_URI, projection3, in getMcc() local
84 if (c3 != null) { in getMcc()
85 int c3Counter = c3.getCount(); in getMcc()
88 Log.w(LOG_TAG, "something wrong, get more results for 1 conflict SID: " + c3); in getMcc()
90 if (DBG) Log.d(LOG_TAG, "Query conflict sid returned the cursor " + c3); in getMcc()
91 c3.moveToFirst(); in getMcc()
92 tmpMcc = c3.getInt(0); in getMcc()
103 c3.close(); in getMcc()
106 c3.close(); in getMcc()
/frameworks/base/core/tests/coretests/src/android/database/sqlite/
DSQLiteConnectionPoolTest.java85 SQLiteConnection c3 = pool.acquireConnection("pragma user_version", 0, null); in testCloseIdleConnections() local
86 assertTrue("New connection should be returned", c1 != c3); in testCloseIdleConnections()
87 assertEquals("New connection should be returned", 1, c3.getConnectionId()); in testCloseIdleConnections()
88 pool.releaseConnection(c3); in testCloseIdleConnections()
/frameworks/native/opengl/tests/hwc/
DhwcTestLib.cpp165 << this->c3() << ']'; in operator string()
309 float c1, c2, c3; in hwcTestParseColor() local
334 in >> c3; in hwcTestParseColor()
336 if ((c3 < 0.0) || (c3 > 1.0)) { return color; } in hwcTestParseColor()
347 || (c3 < 0.0) || (c3 > 1.0)) { return color; } in hwcTestParseColor()
352 return ColorFract(c1, c2, c3); in hwcTestParseColor()
585 pixel |= htonl((uint32_t) round((((1 << attrib->c3Size) - 1) * color.c3())) in hwcTestColor2Pixel()
711 startColor.c3() + (endColor.c3() - startColor.c3()) in hwcTestFillColorHBlend()
846 + ((float) (fromAttrib->c3Max - fromAttrib->c3Min) * color.c3()); 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
59 float c3(void) const { return _c3; } in c3() function
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/
DQSCarrierGroupTest.java88 c3 = new CarrierTextController.CarrierTextCallbackInfo( in testUpdateCarrierText_sameLengths() local
93 spiedCarrierGroup.updateCarrierInfo(c3); in testUpdateCarrierText_sameLengths()
136 c3 = new CarrierTextController.CarrierTextCallbackInfo( in testUpdateCarrierText_differentLength() local
141 spiedCarrierGroup.updateCarrierInfo(c3); in testUpdateCarrierText_differentLength()
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dapitest.rscript32 volatile char3 c3;
140 c3 = rsGetElementAt_char3(aChar3, 0);
141 rsSetElementAt_char3(aChar3, c3, 0);
142 c3 = rsGetElementAt_char3(aChar3, 0, 0);
143 rsSetElementAt_char3(aChar3, c3, 0, 0);
144 c3 = rsGetElementAt_char3(aChar3, 0, 0, 0);
145 rsSetElementAt_char3(aChar3, c3, 0, 0, 0);
382 c3.x = *(char*)rsGetElementAt(aChar3, 0);
383 c3.y = *(char*)rsGetElementAt(aChar3, 0, 0);
384 c3.z = *(char*)rsGetElementAt(aChar3, 0, 0, 0);
[all …]
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dapitest.rscript50 volatile char3 c3;
160 c3 = rsGetElementAt_char3(aChar3, 0);
161 rsSetElementAt_char3(aChar3, c3, 0);
162 c3 = rsGetElementAt_char3(aChar3, 0, 0);
163 rsSetElementAt_char3(aChar3, c3, 0, 0);
164 c3 = rsGetElementAt_char3(aChar3, 0, 0, 0);
165 rsSetElementAt_char3(aChar3, c3, 0, 0, 0);
402 c3.x = *(char*)rsGetElementAt(aChar3, 0);
403 c3.y = *(char*)rsGetElementAt(aChar3, 0, 0);
404 c3.z = *(char*)rsGetElementAt(aChar3, 0, 0, 0);
[all …]
/frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/
Dapitest.rscript48 volatile char3 c3;
158 c3 = rsGetElementAt_char3(aChar3, 0);
159 rsSetElementAt_char3(aChar3, c3, 0);
160 c3 = rsGetElementAt_char3(aChar3, 0, 0);
161 rsSetElementAt_char3(aChar3, c3, 0, 0);
162 c3 = rsGetElementAt_char3(aChar3, 0, 0, 0);
163 rsSetElementAt_char3(aChar3, c3, 0, 0, 0);
400 c3.x = *(char*)rsGetElementAt(aChar3, 0);
401 c3.y = *(char*)rsGetElementAt(aChar3, 0, 0);
402 c3.z = *(char*)rsGetElementAt(aChar3, 0, 0, 0);
[all …]
/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()
/frameworks/minikin/include/minikin/
DMinikinFont.h74 static uint32_t MakeTag(char c1, char c2, char c3, char c4) { in MakeTag() argument
75 return ((uint32_t)c1 << 24) | ((uint32_t)c2 << 16) | ((uint32_t)c3 << 8) | (uint32_t)c4; in MakeTag()
/frameworks/native/libs/gui/include/gui/
DDisplayEventReceiver.h42 static inline constexpr uint32_t fourcc(char c1, char c2, char c3, char c4) { in fourcc() argument
45 static_cast<uint32_t>(c3) << 8 | in fourcc()
/frameworks/native/libs/binder/include/binder/
DIBinder.h28 #define B_PACK_CHARS(c1, c2, c3, c4) \ argument
29 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
/frameworks/native/include/binder/
DIBinder.h28 #define B_PACK_CHARS(c1, c2, c3, c4) \ argument
29 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
/frameworks/rs/cpu_ref/
DrsCpuIntrinsics_x86.cpp151 __m128i c0, c1, c2, c3; in rsdIntrinsicColorMatrix4x4_K() local
162 c3 = _mm_loadl_epi64((const __m128i *)(coef+12)); in rsdIntrinsicColorMatrix4x4_K()
163 c2 = _mm_unpacklo_epi16(c2, c3); in rsdIntrinsicColorMatrix4x4_K()
207 __m128i c0, c1, c2, c3; in rsdIntrinsicColorMatrix3x3_K() local
218 c3 = _mm_loadl_epi64((const __m128i *)(coef+12)); in rsdIntrinsicColorMatrix3x3_K()
219 c2 = _mm_unpacklo_epi16(c2, c3); in rsdIntrinsicColorMatrix3x3_K()
259 __m128i c0, c1, c2, c3; in rsdIntrinsicColorMatrixDot_K() local
273 c3 = _mm_loadl_epi64((const __m128i *)(coef+12)); in rsdIntrinsicColorMatrixDot_K()
274 c3 = _mm_shufflelo_epi16(c3, 0); in rsdIntrinsicColorMatrixDot_K()
275 c2 = _mm_unpacklo_epi16(c2, c3); in rsdIntrinsicColorMatrixDot_K()
[all …]
/frameworks/base/services/tests/servicestests/assets/KeyStoreRecoveryControllerTest/pem/
Dvalid-cert.pem83 36:fd:01:1f:34:0b:ce:a0:c4:60:16:88:2d:c3:1f:
97 76:4b:13:5c:ec:62:a5:c3:bf:7d:72:5f:0e:cb:38:
109 7a:fc:18:6d:54:47:31:59:b2:f4:36:aa:ce:c3:fc:
110 60:55:c8:a8:5b:c3:5d:10:85:4b:2f:e0:32:4a:0d:
127 81:f8:dc:bf:fa:a6:41:26:2b:d4:04:6b:c3:07:a0:
184 de:aa:de:98:5a:dc:ba:59:c3:62:9f:45:9c:89:1d:f7:bc:61:
191 8c:4c:26:0e:2b:f7:83:f9:66:62:90:c3:a2:7b:2b:c7:9b:6b:
202 f8:b7:e9:44:7e:37:1f:25:e3:3f:51:c3:65:86:60:13:70:c1:
/frameworks/base/graphics/java/android/graphics/fonts/
DFontVariationAxis.java114 final char c3 = tagString.charAt(2); in makeTag() local
116 return (c1 << 24) | (c2 << 16) | (c3 << 8) | c4; in makeTag()
/frameworks/minikin/tests/unittest/
DFontUtilsTest.cpp24 constexpr uint32_t MakeTag(char c1, char c2, char c3, char c4) { in MakeTag() argument
25 return ((uint32_t)c1 << 24) | ((uint32_t)c2 << 16) | ((uint32_t)c3 << 8) | (uint32_t)c4; in MakeTag()
/frameworks/layoutlib/bridge/src/android/view/shadow/
DTriangleBuffer.java180 int c3 = dy31 * x3 - dx31 * y3; in triangleZBuffMin() local
189 c3++; in triangleZBuffMin()
193 int cy3 = c3 + dx31 * (miny << 4) - dy31 * (minx << 4); in triangleZBuffMin()
/frameworks/av/include/media/
DInterpolator.h183 const S c3 = m0 + m1 - 2 * dy; in findY() local
184 mMemo[low->first] = std::make_tuple(c1, c2, c3); in findY()
185 return c0 + c1 * t + (c2 + c3 * t) * t2; in findY()
/frameworks/native/libs/vr/libbufferhub/
Dbuffer_hub-test.cpp775 std::unique_ptr<ConsumerBuffer> c3 = in TEST_F() local
777 ASSERT_TRUE(c3.get() != nullptr); in TEST_F()
778 const uint32_t client_state_mask3 = c3->client_state_mask(); in TEST_F()
781 EXPECT_LT(0, RETRY_EINTR(PollBufferEvent(c3))); in TEST_F()
782 EXPECT_EQ(0, c3->AcquireAsync(&meta, &invalid_fence)); in TEST_F()
786 EXPECT_EQ(0, c3->ReleaseAsync(&meta, LocalHandle())); in TEST_F()
801 EXPECT_GE(0, RETRY_EINTR(PollBufferEvent(c3))); in TEST_F()
802 EXPECT_EQ(-EBUSY, c3->AcquireAsync(&meta, &invalid_fence)); in TEST_F()
/frameworks/compile/slang/tests/P_math_int/
Dmath_int.rscript21 char3 c3;
/frameworks/minikin/libs/minikin/
DLocale.cpp94 constexpr uint32_t packScript(char c1, char c2, char c3, char c4) { in packScript() argument
98 ((uint32_t)(c3 - REST_LETTER_BASE) << 5) | (uint32_t)(c4 - REST_LETTER_BASE); in packScript()
/frameworks/rs/driver/
DrsdRuntimeStubs.cpp1261 void rsDebug(const char *s, const char3 *c3) { argument
1262 char3 c = *c3;
1280 void rsDebug(const char *s, const uchar3 *c3) { argument
1281 uchar3 c = *c3;
1299 void rsDebug(const char *s, const short3 *c3) { argument
1300 short3 c = *c3;
1318 void rsDebug(const char *s, const ushort3 *c3) { argument
1319 ushort3 c = *c3;
/frameworks/rs/tests/cpp_api/typecheck/
Dkernels.rscript26 char3 c3;
/frameworks/av/services/mediaresourcemanager/test/
DResourceManagerService_test.cpp192 void verifyClients(bool c1, bool c2, bool c3) { in verifyClients() argument
199 EXPECT_EQ(c3, client3->reclaimed()); in verifyClients()

12