Searched defs:c4 (Results 1 - 11 of 11) sorted by relevance

/frameworks/av/include/media/stagefright/foundation/
H A DByteUtils.h25 constexpr int FOURCC(unsigned char c1, unsigned char c2, unsigned char c3, unsigned char c4) { argument
26 return ((c1) << 24 | (c2) << 16 | (c3) << 8 | (c4));
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DByteUtils.h25 constexpr int FOURCC(unsigned char c1, unsigned char c2, unsigned char c3, unsigned char c4) { argument
26 return ((c1) << 24 | (c2) << 16 | (c3) << 8 | (c4));
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DByteUtils.h25 constexpr int FOURCC(unsigned char c1, unsigned char c2, unsigned char c3, unsigned char c4) { argument
26 return ((c1) << 24 | (c2) << 16 | (c3) << 8 | (c4));
/frameworks/minikin/tests/unittest/
H A DFontUtilsTest.cpp24 constexpr uint32_t MakeTag(char c1, char c2, char c3, char c4) { argument
25 return ((uint32_t)c1 << 24) | ((uint32_t)c2 << 16) | ((uint32_t)c3 << 8) | (uint32_t)c4;
/frameworks/native/include/gui/
H A DDisplayEventReceiver.h42 static inline constexpr uint32_t fourcc(char c1, char c2, char c3, char c4) { argument
46 static_cast<uint32_t>(c4);
/frameworks/native/libs/gui/include/gui/
H A DDisplayEventReceiver.h42 static inline constexpr uint32_t fourcc(char c1, char c2, char c3, char c4) { argument
46 static_cast<uint32_t>(c4);
/frameworks/minikin/include/minikin/
H A DMinikinFont.h156 static uint32_t MakeTag(char c1, char c2, char c3, char c4) { argument
157 return ((uint32_t)c1 << 24) | ((uint32_t)c2 << 16) | ((uint32_t)c3 << 8) | (uint32_t)c4;
/frameworks/minikin/libs/minikin/
H A DLocale.cpp93 constexpr uint32_t packScript(char c1, char c2, char c3, char c4) { argument
97 ((uint32_t)(c3 - REST_LETTER_BASE) << 5) | (uint32_t)(c4 - REST_LETTER_BASE);
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_x86.cpp83 __m128i c0, c2, c4, c6, c8; local
93 c4 = _mm_shuffle_epi32(x, 0x00);
119 o0 = _mm_add_epi32(o0, _mm_madd_epi16(_mm_unpacklo_epi16(p5, p6), c4));
120 o1 = _mm_add_epi32(o1, _mm_madd_epi16(_mm_unpacklo_epi16(p6, p7), c4));
414 __m128i c0, c1, c2, c3, c4; local
423 c4 = _mm_set1_epi32(param[4]); /* -208 */
447 G = _mm_add_epi32(G, mullo_epi32(V, c4));
476 __m128i c0, c1, c2, c3, c4; local
485 c4 = _mm_set1_epi32(param[4]); /* -208 */
509 G = _mm_add_epi32(G, mullo_epi32(V, c4));
538 __m128i c0, c1, c2, c3, c4; local
601 __m128i c0, c2, c4, c6, c8, c10, c12; local
[all...]
/frameworks/rs/rsov/driver/
H A DrsovRuntimeStubs.cpp898 void rsDebug(const char *s, const char4 *c4) { argument
899 char4 c = *c4;
920 void rsDebug(const char *s, const uchar4 *c4) { argument
921 uchar4 c = *c4;
939 void rsDebug(const char *s, const short4 *c4) { argument
940 short4 c = *c4;
960 void rsDebug(const char *s, const ushort4 *c4) { argument
961 ushort4 c = *c4;
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp1266 void rsDebug(const char *s, const char4 *c4) { argument
1267 char4 c = *c4;
1285 void rsDebug(const char *s, const uchar4 *c4) { argument
1286 uchar4 c = *c4;
1304 void rsDebug(const char *s, const short4 *c4) { argument
1305 short4 c = *c4;
1323 void rsDebug(const char *s, const ushort4 *c4) { argument
1324 ushort4 c = *c4;

Completed in 206 milliseconds