Searched defs:c2 (Results 1 - 19 of 19) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_TransformDequantLumaDCFromPair.c89 int c2 = pData[i+2]; local
91 pData[i+0] = (OMX_S16)(c0+c1+c2+c3);
92 pData[i+1] = (OMX_S16)(c0+c1-c2-c3);
93 pData[i+2] = (OMX_S16)(c0-c1-c2+c3);
94 pData[i+3] = (OMX_S16)(c0-c1+c2-c3);
102 int c2 = pData[i+8]; local
104 pData[i+0] = (OMX_S16)(c0+c1+c2+c3);
105 pData[i+4] = (OMX_S16)(c0+c1-c2-c3);
106 pData[i+8] = (OMX_S16)(c0-c1-c2+c3);
107 pData[i+12] = (OMX_S16)(c0-c1+c2
[all...]
/frameworks/compile/libbcc/tests/debuginfo/host-tests/
H A Dparameters.cpp13 // CHECK: {c = 97 'a', c2 = "01"}
24 char c2[2]; member in struct:char_struct
41 s.c2[0] = '0';
42 s.c2[1] = '1';
/frameworks/minikin/libs/minikin/
H A DGraphemeBreak.cpp85 uint32_t c2 = 0; local
88 U16_NEXT(buf, offset, start + count, c2);
90 int32_t p2 = tailoredGraphemeClusterBreak(c2);
149 && u_getIntPropertyValue(c2, UCHAR_GENERAL_CATEGORY) == U_OTHER_LETTER) {
153 if (c1 == 0x200D && isEmoji(c2) && offset_back > start) {
167 if (isEmojiModifier(c2)) {
/frameworks/base/core/jni/
H A Dandroid_text_AndroidCharacter.cpp166 int c2 = u_charMirror(c1); local
168 if (c1 != c2) {
169 data[i] = c2;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DGradient_Delegate.java193 * Returns the color between c1, and c2, based on the percent of the distance
194 * between c1 and c2.
196 private int computeColor(int c1, int c2, float percent) { argument
197 int a = computeChannel((c1 >> 24) & 0xFF, (c2 >> 24) & 0xFF, percent);
198 int r = computeChannel((c1 >> 16) & 0xFF, (c2 >> 16) & 0xFF, percent);
199 int g = computeChannel((c1 >> 8) & 0xFF, (c2 >> 8) & 0xFF, percent);
200 int b = computeChannel((c1 ) & 0xFF, (c2 ) & 0xFF, percent);
208 private int computeChannel(int c1, int c2, float percent) { argument
209 return c1 + (int)((percent * (c2-c1)) + .5);
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.h56 ColorFract(float c1, float c2, float c3): _c1(c1), _c2(c2), _c3(c3) {}; argument
58 float c2(void) const { return _c2; } function in class:ColorFract
H A DhwcTestLib.cpp164 << this->c2() << ", "
309 float c1, c2, c3; local
327 in >> c2; local
329 if ((c2 < 0.0) || (c2 > 1.0)) { return color; }
346 || (c2 < 0.0) || (c2 > 1.0)
352 return ColorFract(c1, c2, c3);
582 pixel |= htonl((uint32_t) round((((1 << attrib->c2Size) - 1) * color.c2()))
709 startColor.c2()
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/
H A DUtils.java216 public static <T extends Comparable> int compare(Comparable<T> c1, T c2) { argument
218 return c2 == null ? 0 : -1;
219 } else if (c2 == null) {
222 return c1.compareTo(c2);
/frameworks/minikin/include/minikin/
H A DMinikinFont.h130 static uint32_t MakeTag(char c1, char c2, char c3, char c4) { argument
131 return ((uint32_t)c1 << 24) | ((uint32_t)c2 << 16) |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DUtils.java214 public static <T extends Comparable> int compare(Comparable<T> c1, T c2) { argument
216 return c2 == null ? 0 : -1;
218 else if (c2 == null) {
222 return c1.compareTo(c2);
/frameworks/rs/
H A DrsMatrix4x4.cpp46 int c2 = (i+3) % 4; local
52 (m[c0 + 4*r0] * (m[c1 + 4*r1] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r1]))
53 - (m[c0 + 4*r1] * (m[c1 + 4*r0] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r0]))
54 + (m[c0 + 4*r2] * (m[c1 + 4*r0] * m[c2 + 4*r1] - m[c1 + 4*r1] * m[c2 + 4*r0]));
88 int c2 = (i+3) % 4; local
93 float minor = (m[c0 + 4*r0] * (m[c1 + 4*r1] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2
[all...]
/frameworks/av/services/mediaresourcemanager/test/
H A DResourceManagerService_test.cpp124 void verifyClients(bool c1, bool c2, bool c3) { argument
130 EXPECT_EQ(c2, client2->reclaimed());
270 verifyClients(true /* c1 */, false /* c2 */, true /* c3 */);
274 verifyClients(false /* c1 */, true /* c2 */, false /* c3 */);
292 verifyClients(true /* c1 */, true /* c2 */, true /* c3 */);
311 verifyClients(false /* c1 */, true /* c2 */, false /* c3 */);
315 verifyClients(true /* c1 */, false /* c2 */, false /* c3 */);
319 verifyClients(false /* c1 */, false /* c2 */, true /* c3 */);
336 verifyClients(true /* c1 */, false /* c2 */, false /* c3 */);
340 verifyClients(false /* c1 */, true /* c2 */, fals
[all...]
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java599 * a smiley and <code>c2</code> could be the first character of
603 private static boolean isSmileyBreak(char c1, char c2) { argument
612 switch (c2) {
/frameworks/native/opengl/libagl/
H A Dprimitives.cpp31 int32_t* it, int32_t c0, int32_t c1, int32_t c2);
304 int32_t c0, int32_t c1, int32_t c2) const
307 int32_t dc02 = c2 - c0;
332 GGLfixed c0, GGLfixed c1, GGLfixed c2) const
335 const GGLfixed dc02 = c2 - c0;
348 int32_t c0, int32_t c1, int32_t c2) const
352 int32_t dc02 = (c2 - c0)>>s;
363 int32_t c0, int32_t c1, int32_t c2) const
365 ::iterators0032(this, it, c0, c1, c2);
369 int32_t c0, int32_t c1, int32_t c2) cons
653 const GGLcolor c2 = v2->color.v[i] * 255; local
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp383 char c2 = tolower(iv.c_str()[3 + 2 * i]); local
384 if (!isxdigit(c1) || !isxdigit(c2)) {
389 uint8_t nibble2 = isdigit(c2) ? c2 - '0' : c2 - 'a' + 10;
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_x86.cpp83 __m128i c0, c2, c4, c6, c8; local
91 c2 = _mm_shuffle_epi32(x, 0x55);
116 o0 = _mm_add_epi32(o0, _mm_madd_epi16(_mm_unpacklo_epi16(p2, p4), c2));
117 o1 = _mm_add_epi32(o1, _mm_madd_epi16(_mm_unpacklo_epi16(p3, p5), c2));
151 __m128i c0, c1, c2, c3; local
161 c2 = _mm_loadl_epi64((const __m128i *)(coef+8));
163 c2 = _mm_unpacklo_epi16(c2, c3);
175 x2 = _mm_add_epi32(x2, _mm_madd_epi16(zw, _mm_shuffle_epi32(c2, 0x00)));
176 y2 = _mm_add_epi32(y2, _mm_madd_epi16(zw, _mm_shuffle_epi32(c2,
207 __m128i c0, c1, c2, c3; local
259 __m128i c0, c1, c2, c3; local
414 __m128i c0, c1, c2, c3, c4; local
476 __m128i c0, c1, c2, c3, c4; local
538 __m128i c0, c1, c2, c3, c4; local
601 __m128i c0, c2, c4, c6, c8, c10, c12; local
[all...]
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp1195 void rsDebug(const char *s, const char2 *c2) { argument
1196 char2 c = *c2;
1214 void rsDebug(const char *s, const uchar2 *c2) { argument
1215 uchar2 c = *c2;
1233 void rsDebug(const char *s, const short2 *c2) { argument
1234 short2 c = *c2;
1252 void rsDebug(const char *s, const ushort2 *c2) { argument
1253 ushort2 c = *c2;
/frameworks/native/services/inputflinger/
H A DInputReader.cpp4790 int32_t c2 = signExtendNybble(in.orientation & 0x0f); local
4791 if (c1 != 0 || c2 != 0) {
4792 orientation = atan2f(c1, c2) * 0.5f;
4793 float confidence = hypotf(c1, c2);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 857 milliseconds