Home
last modified time | relevance | path

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

12345

/frameworks/av/media/codec2/hidl/1.1/utils/include/codec2/hidl/1.1/
Dtypes.h34 namespace c2 {
37 using ::android::hardware::media::c2::V1_0::BaseBlock;
38 using ::android::hardware::media::c2::V1_0::Block;
39 using ::android::hardware::media::c2::V1_0::Buffer;
40 using ::android::hardware::media::c2::V1_0::FieldDescriptor;
41 using ::android::hardware::media::c2::V1_0::FieldId;
42 using ::android::hardware::media::c2::V1_0::FieldSupportedValues;
43 using ::android::hardware::media::c2::V1_0::FieldSupportedValuesQuery;
44 using ::android::hardware::media::c2::V1_0::FieldSupportedValuesQueryResult;
45 using ::android::hardware::media::c2::V1_0::FrameData;
[all …]
DConfigurable.h26 namespace c2 {
30 using ::android::hardware::media::c2::V1_0::utils::ConfigurableC2Intf;
31 using ::android::hardware::media::c2::V1_0::utils::ParameterCache;
32 using ::android::hardware::media::c2::V1_0::utils::CachedConfigurable;
DInputSurfaceConnection.h26 namespace c2 {
30 using ::android::hardware::media::c2::V1_0::utils::InputSurfaceConnection;
DInputBufferManager.h26 namespace c2 {
30 using ::android::hardware::media::c2::V1_0::utils::InputBufferManager;
DComponentInterface.h26 namespace c2 {
30 using ::android::hardware::media::c2::V1_0::utils::ComponentInterface;
DOutputBufferQueue.h26 namespace c2 {
30 using ::android::hardware::media::c2::V1_0::utils::OutputBufferQueue;
/frameworks/av/media/codec2/hidl/1.1/utils/
DAndroid.bp19 "android.hardware.media.c2@1.0",
20 "android.hardware.media.c2@1.1",
39 "android.hardware.media.c2@1.0",
40 "android.hardware.media.c2@1.1",
82 "android.hardware.media.c2@1.0",
83 "android.hardware.media.c2@1.1",
114 "android.hardware.media.c2@1.0",
115 "android.hardware.media.c2@1.1",
131 "android.hardware.media.c2@1.0",
132 "android.hardware.media.c2@1.1",
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DWatermark.java75 int c2 = mTokens[0].charAt(i+1); in Watermark() local
79 if (c2 >= 'a' && c2 <= 'f') c2 = c2 - 'a' + 10; in Watermark()
80 else if (c2 >= 'A' && c2 <= 'F') c2 = c2 - 'A' + 10; in Watermark()
81 else c2 -= '0'; in Watermark()
82 builder.append((char)(255-((c1*16)+c2))); in Watermark()
/frameworks/base/telephony/common/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 Log.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/av/media/codec2/hidl/client/
DAndroid.bp11 "android.hardware.media.c2@1.0",
12 "android.hardware.media.c2@1.1",
33 "android.hardware.media.c2@1.0",
34 "android.hardware.media.c2@1.1",
/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/av/media/codec2/hidl/1.0/utils/
DAndroid.bp19 "android.hardware.media.c2@1.0",
37 "android.hardware.media.c2@1.0",
78 "android.hardware.media.c2@1.0",
108 "android.hardware.media.c2@1.0",
123 "android.hardware.media.c2@1.0",
134 "android.hardware.media.c2@1.0",
/frameworks/layoutlib/bridge/src/android/graphics/
DGradient_Delegate.java212 private int computeColor(int c1, int c2, float percent) { in computeColor() argument
213 int a = computeChannel((c1 >> 24) & 0xFF, (c2 >> 24) & 0xFF, percent); in computeColor()
214 int r = computeChannel((c1 >> 16) & 0xFF, (c2 >> 16) & 0xFF, percent); in computeColor()
215 int g = computeChannel((c1 >> 8) & 0xFF, (c2 >> 8) & 0xFF, percent); in computeColor()
216 int b = computeChannel((c1 ) & 0xFF, (c2 ) & 0xFF, percent); in computeColor()
224 private int computeChannel(int c1, int c2, float percent) { in computeChannel() argument
225 return c1 + (int)((percent * (c2-c1)) + .5); in computeChannel()
/frameworks/base/core/tests/coretests/src/android/service/controls/
DControlProviderServiceTest.java260 private static boolean equals(Control c1, Control c2) { in equals() argument
261 if (c1 == c2) return true; in equals()
262 if (c1 == null || c2 == null) return false; in equals()
263 return Objects.equals(c1.getControlId(), c2.getControlId()) in equals()
264 && c1.getDeviceType() == c2.getDeviceType() in equals()
265 && Objects.equals(c1.getTitle(), c2.getTitle()) in equals()
266 && Objects.equals(c1.getSubtitle(), c2.getSubtitle()) in equals()
267 && Objects.equals(c1.getStructure(), c2.getStructure()) in equals()
268 && Objects.equals(c1.getZone(), c2.getZone()) in equals()
269 && Objects.equals(c1.getAppIntent(), c2.getAppIntent()) in equals()
[all …]
/frameworks/av/media/codec2/hidl/services/
DAndroid.bp33 name: "android.hardware.media.c2@1.1-default-service",
37 init_rc: ["android.hardware.media.c2@1.1-default-service.rc"],
49 required: ["android.hardware.media.c2@1.1-default-seccomp_policy"],
64 name: "android.hardware.media.c2@1.1-default-seccomp_policy",
71 src: "seccomp_policy/android.hardware.media.c2@1.1-default-arm.policy",
74 src: "seccomp_policy/android.hardware.media.c2@1.1-default-arm64.policy",
77 src: "seccomp_policy/android.hardware.media.c2@1.1-default-x86.policy",
80 src: "seccomp_policy/android.hardware.media.c2@1.1-default-x86_64.policy",
/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/av/media/codec2/hidl/client/include/codec2/hidl/
Dclient.h66 namespace android::hardware::media::c2::V1_0 {
76 namespace android::hardware::media::c2::V1_1 {
103 typedef ::android::hardware::media::c2::V1_0::IConfigurable Base;
138 typedef ::android::hardware::media::c2::V1_0::IComponentStore Base1_0;
139 typedef ::android::hardware::media::c2::V1_1::IComponentStore Base1_1;
268 typedef ::android::hardware::media::c2::V1_0::IComponentInterface Base;
318 typedef ::android::hardware::media::c2::V1_0::IComponent Base1_0;
319 typedef ::android::hardware::media::c2::V1_1::IComponent Base1_1;
442 typedef ::android::hardware::media::c2::V1_0::IInputSurface Base;
444 typedef ::android::hardware::media::c2::V1_0::IInputSurfaceConnection
[all …]
/frameworks/base/core/java/android/bluetooth/
DBluetoothCodecStatus.java78 BluetoothCodecConfig[] c2) { in sameCapabilities() argument
80 return (c2 == null); in sameCapabilities()
82 if (c2 == null) { in sameCapabilities()
85 if (c1.length != c2.length) { in sameCapabilities()
88 return Arrays.asList(c1).containsAll(Arrays.asList(c2)); in sameCapabilities()
/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_2/
Dconcat_float16_3.mod.py41 for c2 in range(col2):
42 output_values[r * output_col + col1 + c2] = input2_values[r * col2 + c2]
/frameworks/minikin/libs/minikin/
DGraphemeBreak.cpp78 uint32_t c2 = 0; in isGraphemeBreak() local
82 U16_NEXT(buf, offset_forward, start + count, c2); in isGraphemeBreak()
84 int32_t p2 = tailoredGraphemeClusterBreak(c2); in isGraphemeBreak()
129 u_hasBinaryProperty(c2, UCHAR_EXTENDED_PICTOGRAPHIC)) { in isGraphemeBreak()
181 u_getIntPropertyValue(c2, UCHAR_GENERAL_CATEGORY) == U_OTHER_LETTER) { in isGraphemeBreak()
/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/native/libs/vr/libbufferhub/
Dbuffer_hub-test.cpp64 std::unique_ptr<ConsumerBuffer> c2 = in TEST_F() local
66 ASSERT_TRUE(c2.get() != nullptr); in TEST_F()
71 EXPECT_EQ(c2->client_state_mask(), kFirstClientBitMask << 2); in TEST_F()
76 EXPECT_EQ(0, RETRY_EINTR(PollBufferEvent(c2))); in TEST_F()
84 EXPECT_EQ(1, RETRY_EINTR(PollBufferEvent(c2))); in TEST_F()
89 EXPECT_EQ(1, RETRY_EINTR(PollBufferEvent(c2))); in TEST_F()
91 EXPECT_EQ(0, c2->Acquire(&fence)); in TEST_F()
92 EXPECT_EQ(0, RETRY_EINTR(PollBufferEvent(c2))); in TEST_F()
97 EXPECT_EQ(0, c2->Discard()); in TEST_F()
103 EXPECT_EQ(0, RETRY_EINTR(PollBufferEvent(c2))); in TEST_F()
[all …]
/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 …]

12345