/external/libevent/ |
evutil.c | 2046 char c1, c2; local 2060 char c1, c2; local [all...] |
/external/libjpeg-turbo/ |
jdmarker.c | 945 int c, c2; local 949 INPUT_BYTE(cinfo, c2, return FALSE); 950 if (c != 0xFF || c2 != (int) M_SOI) 951 ERREXIT2(cinfo, JERR_NO_SOI, c, c2); 953 cinfo->unread_marker = c2; [all...] |
/external/libweave/third_party/chromium/base/ |
bind_unittest.cc | 271 Callback<int(int,int)> c2 = Bind(&Sum, 32, 16, 8, 4); local 272 EXPECT_EQ(85, c2.Run(13, 12)); 301 Callback<int(int,int)> c2 = Bind(c3, 4); local 302 EXPECT_EQ(85, c2.Run(13, 12)); 304 Callback<int(int)> c1 = Bind(c2, 2);
|
/external/llvm/lib/Support/ |
regcomp.c | 1278 samesets(struct re_guts *g, int c1, int c2) 1284 unsigned uc2 = (uch)c2; 1300 int c2; local 1311 for (c2 = c+1; c2 <= CHAR_MAX; c2++) 1312 if (cats[c2] == 0 && samesets(g, c, c2)) 1313 cats[c2] = cat; [all...] |
/external/lzma/CPP/7zip/Archive/7z/ |
7zUpdate.cpp | 79 size_t c2 = a2.GetCapacity();
80 RINOZ_COMP(c1, c2);
86 static int CompareCoders(const CCoderInfo &c1, const CCoderInfo &c2)
88 RINOZ_COMP(c1.NumInStreams, c2.NumInStreams);
89 RINOZ_COMP(c1.NumOutStreams, c2.NumOutStreams);
90 RINOZ_COMP(c1.MethodID, c2.MethodID);
91 return CompareBuffers(c1.Props, c2.Props);
228 char c2 = ext[pos++];
local 229 if (c2 == 0 && (c == 0 || c == ' '))
231 if (c != c2)
[all...] |
/external/lzma/CPP/7zip/UI/Common/ |
Update.cpp | 425 wchar_t c2 = s2[i];
local 426 if (c1 == 0 || c2 == 0)
428 if (c1 == c2)
430 if (!g_CaseSensitive && (MyCharUpper(c1) == MyCharUpper(c2)))
432 if (IsCharDirLimiter(c1) && IsCharDirLimiter(c2))
[all...] |
/external/mesa3d/src/mesa/math/ |
m_matrix.c | 1269 GLfloat c2 = DOT3(m+4,m+4); local [all...] |
/external/opencv/cv/src/ |
cvsurf.cpp | 315 double c2 = 1./(sigma*sigma*2), gs = 0; local 321 double val = exp(-(x*x+y*y)*c2);
|
/external/opencv/cvaux/src/ |
cveigenobjects.cpp | 91 double x, y, c, s, c2, s2, a; local 109 c2 = c * c; 147 A1[p] = (float) (App * c2 + Aqq * s2 - a); 148 A2[q] = (float) (App * s2 + Aqq * c2 + a); [all...] |
cvlmeds.cpp | 199 double p, q, D, c1, c2, b1, b2, ro1, ro2, fi1, fi2, tt; local 214 c2 = c1; 228 c2 = q / 2 - sqrt( D ); 233 ro2 = fabs( c2 ); 235 fi2 = CV_PI * (1 - SIGN( c2 )) / 2; 252 c2 = tt + p / (3. * tt); 272 x[i][1] = sin( fi1 / 3. + 2 * CV_PI * (i % 3) / 3. ) * c2; [all...] |
/external/opencv3/3rdparty/libjpeg/ |
jdmarker.c | 1060 int c, c2; local 1064 INPUT_BYTE(cinfo, c2, return FALSE); 1065 if (c != 0xFF || c2 != (int) M_SOI) 1066 ERREXIT2(cinfo, JERR_NO_SOI, c, c2); 1068 cinfo->unread_marker = c2; [all...] |
/external/opencv3/3rdparty/libwebp/dsp/ |
dec_sse2.c | 87 const __m128i c2 = _mm_mulhi_epi16(in3, k1); local 89 const __m128i c4 = _mm_sub_epi16(c1, c2); 145 const __m128i c2 = _mm_mulhi_epi16(T3, k1); local 147 const __m128i c4 = _mm_sub_epi16(c1, c2); 533 // q1 = f3 e3 d3 c3 b3 a3 93 83 f2 e2 d2 c2 b2 a2 92 82 541 // q0 = f2 e2 d2 c2 b2 a2 92 82 72 62 52 42 32 22 12 02 570 // q1 = f3 f2 e3 e2 d3 d2 c3 c2 b3 b2 a3 a2 93 92 83 82 582 // q1 = f3 f2 f1 f0 e3 e2 e1 e0 d3 d2 d1 d0 c3 c2 c1 c0 [all...] |
/external/opencv3/3rdparty/openexr/Imath/ |
ImathMatrix.h | 662 const int c0, const int c1, const int c2) const; 2907 int c2 = 2 + (c < 3 ? 1 : 0); local [all...] |
/external/opencv3/modules/core/src/ |
mathfuncs.cpp | 105 float a, c, c2; local 109 c2 = c*c; 110 a = (((atan2_p7*c2 + atan2_p5)*c2 + atan2_p3)*c2 + atan2_p1)*c; 115 c2 = c*c; 116 a = 90.f - (((atan2_p7*c2 + atan2_p5)*c2 + atan2_p3)*c2 + atan2_p1)*c; [all...] |
/external/opencv3/modules/objdetect/src/ |
detection_based_tracker.cpp | 941 Point2f c2; local 957 Point2f c2; local [all...] |
/external/pdfium/third_party/libjpeg/ |
fpdfapi_jdmarker.c | 962 int c, c2; local 966 INPUT_BYTE(cinfo, c2, return FALSE); 967 if (c != 0xFF || c2 != (int) M_SOI) 968 ERREXIT2(cinfo, JERR_NO_SOI, c, c2); 970 cinfo->unread_marker = c2; [all...] |
/external/pdfium/third_party/libopenjpeg20/ |
dwt.c | 777 OPJ_FLOAT32 c2; local 782 c2 = fl[1] * c; 791 fw[-3] = tmp2 + c2;
|
/external/v8/test/cctest/compiler/ |
test-run-machops.cc | 747 int32_t c2 = 0xcd3e9c8b; local 748 int result = m.Call(0, c1, c2); 749 CHECK_EQ(c2, result); 750 result = m.Call(1, c1, c2); 802 int32_t c2 = 0x5a1207da; local 803 int result = m.Call(0, c1, c2); 805 result = m.Call(1, c1, c2); 806 CHECK_EQ(c2, result); [all...] |
/external/v8/test/unittests/compiler/ |
scheduler-unittest.cc | 1058 Node* c2 = graph()->NewNode(&kMockCall, ok1); local [all...] |
/external/valgrind/VEX/priv/ |
guest_s390_helpers.c | 2183 IRExpr *c1, *c2; local 2196 IRExpr *c1, *c2; local 2209 IRExpr *c1, *c2; local [all...] |
/external/valgrind/coregrind/ |
m_libcbase.c | 339 UChar c2 = (UChar)VG_(tolower)(*s2); local 340 if (c1 < c2) return -1; 341 if (c1 > c2) return 1; 343 /* c1 == c2 */ 370 UChar c2; local 373 c2 = (UChar)VG_(tolower)(*s2); 374 if (c1 < c2) return -1; 375 if (c1 > c2) return 1; 377 /* c1 == c2 */
|
vgdb.c | 597 unsigned char csum, c1, c2; local 637 c2 = fromhex (readchar (fromfd)); 639 if (csum == (c1 << 4) + c2) 643 (c1 << 4) + c2, csum, buf); [all...] |
/external/valgrind/coregrind/m_scheduler/ |
scheduler.c | 2110 HChar c2 = (arg[0] >> 16) & 0xff; local [all...] |
/external/webp/src/dsp/ |
lossless_sse2.c | 25 uint32_t c2) { 29 const __m128i C2 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c2), zero); 31 const __m128i V2 = _mm_sub_epi16(V1, C2); 38 uint32_t c2) { 42 const __m128i B0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c2), zero); 330 const __m128i c2 = _mm_srli_si128(c0, 8); local 333 _mm_storel_epi64((__m128i*)(dst + 6), c2);
|
/external/zlib/src/contrib/minizip/ |
unzip.c | 354 char c2=*(fileName2++); local 357 if ((c2>='a') && (c2<='z')) 358 c2 -= 0x20; 360 return ((c2=='\0') ? 0 : -1); 361 if (c2=='\0') 363 if (c1<c2) 365 if (c1>c2) [all...] |