Home
last modified time | relevance | path

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

123

/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/apct-tests/perftests/core/src/android/libcore/
DImtConflictPerfTest.java57 C3 c3 = new C3(); in setup() local
58 callF0(c3); in setup()
59 callF19(c3); in setup()
60 callF38(c3); in setup()
61 callF57(c3); in setup()
366 C3 c3 = new C3(); in timeConflictDepth04() local
369 callF0(c3); in timeConflictDepth04()
370 callF19(c3); in timeConflictDepth04()
371 callF38(c3); in timeConflictDepth04()
372 callF57(c3); in timeConflictDepth04()
[all …]
/frameworks/base/core/tests/coretests/src/android/database/sqlite/
DSQLiteConnectionPoolTest.java86 SQLiteConnection c3 = pool.acquireConnection("pragma user_version", 0, null); in testCloseIdleConnections() local
87 assertTrue("New connection should be returned", c1 != c3); in testCloseIdleConnections()
88 assertEquals("New connection should be returned", 1, c3.getConnectionId()); in testCloseIdleConnections()
89 pool.releaseConnection(c3); in testCloseIdleConnections()
/frameworks/minikin/include/minikin/
DConstants.h30 constexpr uint32_t MakeTag(char c1, char c2, char c3, char c4) { in MakeTag() argument
31 return ((uint32_t)c1 << 24) | ((uint32_t)c2 << 16) | ((uint32_t)c3 << 8) | (uint32_t)c4; in MakeTag()
/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/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/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/av/media/module/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/libs/minikin/
DLocale.cpp106 constexpr uint32_t packScript(char c1, char c2, char c3, char c4) { in packScript() argument
110 ((uint32_t)(c3 - REST_LETTER_BASE) << 5) | (uint32_t)(c4 - REST_LETTER_BASE); in packScript()
470 bool Locale::supportsScript(char c1, char c2, char c3, char c4) const { in supportsScript() argument
471 uint32_t packedScript = packScript(c1, c2, c3, c4); in supportsScript()
553 bool LocaleList::hasScript(char c1, char c2, char c3, char c4) const { in hasScript() argument
555 if (locale.supportsScript(c1, c2, c3, c4)) { in hasScript()
DLocale.h126 bool supportsScript(char c1, char c2, char c3, char c4) const;
240 bool hasScript(char c1, char c2, char c3, char c4) const;
/frameworks/native/libs/gui/include/gui/
DDisplayEventReceiver.h51 static inline constexpr uint32_t fourcc(char c1, char c2, char c3, char c4) { in fourcc() argument
54 static_cast<uint32_t>(c3) << 8 | in fourcc()
/frameworks/native/include/binder/
DIBinder.h31 #define B_PACK_CHARS(c1, c2, c3, c4) \ argument
32 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
/frameworks/native/libs/binder/include/binder/
DIBinder.h31 #define B_PACK_CHARS(c1, c2, c3, c4) \ argument
32 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
/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/rs/toolkit/
Dx86.cpp154 __m128i c0, c1, c2, c3; in rsdIntrinsicColorMatrix4x4_K() local
165 c3 = _mm_loadl_epi64((const __m128i *)(coef+12)); in rsdIntrinsicColorMatrix4x4_K()
166 c2 = _mm_unpacklo_epi16(c2, c3); in rsdIntrinsicColorMatrix4x4_K()
210 __m128i c0, c1, c2, c3; in rsdIntrinsicColorMatrix3x3_K() local
221 c3 = _mm_loadl_epi64((const __m128i *)(coef+12)); in rsdIntrinsicColorMatrix3x3_K()
222 c2 = _mm_unpacklo_epi16(c2, c3); in rsdIntrinsicColorMatrix3x3_K()
262 __m128i c0, c1, c2, c3; in rsdIntrinsicColorMatrixDot_K() local
276 c3 = _mm_loadl_epi64((const __m128i *)(coef+12)); in rsdIntrinsicColorMatrixDot_K()
277 c3 = _mm_shufflelo_epi16(c3, 0); in rsdIntrinsicColorMatrixDot_K()
278 c2 = _mm_unpacklo_epi16(c2, c3); in rsdIntrinsicColorMatrixDot_K()
[all …]
/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/libs/systemui/weathereffects/graphics/assets/shaders/
Dsimplex3d.agsl103 vec3 c3 = c0 - offset3 + UNSKEW * 3.;
112 w.w = dot(c3, c3);
125 nc.w = dot(hash(s + offset3), c3);
/frameworks/base/graphics/java/android/graphics/fonts/
DFontVariationAxis.java115 final char c3 = tagString.charAt(2); in makeTag() local
117 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/av/include/media/
DInterpolator.h177 const S c3 = m0 + m1 - 2 * dy; in findY() local
178 mMemo[low->first] = std::make_tuple(c1, c2, c3); in findY()
179 return c0 + c1 * t + (c2 + c3 * t) * t2; in findY()
/frameworks/native/libs/tonemap/
Dtonemap.cpp395 double c3 = y3 / 1.5; in lookupTonemapGain() local
416 targetNits = (1.0 - t) * (1.0 - t) * y2 + 2.0 * (1.0 - t) * t * c3 + in lookupTonemapGain()
445 double c3 = (2392.0 / 4096.0) * 32.0; in OETF_ST2084() local
448 tmp = (c1 + c2 * tmp) / (1.0 + c3 * tmp); in OETF_ST2084()
/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/base/packages/SystemUI/tests/src/com/android/systemui/shade/carrier/
DShadeCarrierGroupControllerTest.java225 c3 = new CarrierTextManager.CarrierTextCallbackInfo( in testUpdateCarrierText_sameLengths() local
230 mCallback.updateCarrierInfo(c3); in testUpdateCarrierText_sameLengths()
266 c3 = new CarrierTextManager.CarrierTextCallbackInfo( in testUpdateCarrierText_differentLength() local
271 mCallback.updateCarrierInfo(c3); in testUpdateCarrierText_differentLength()
/frameworks/compile/slang/tests/P_math_int/
Dmath_int.rscript21 char3 c3;

123