HomeSort by relevance Sort by last modified time
    Searched refs:c1 (Results 701 - 725 of 1154) sorted by null

<<21222324252627282930>>

  /external/icu4c/common/
ucase.cpp 316 int32_t c1, c2; local
320 c1=*s++;
325 c1-=c2;
326 if(c1!=0) {
327 return c1; /* return difference result */
    [all...]
  /external/icu4c/test/cintltst/
crestst.c 771 int32_t c1=0; local
812 T_FileStream_read(stream,&c1,1);
813 if(c!=c1){
817 c1 = T_FileStream_peek(stream);
818 if(c!=c1){
    [all...]
  /external/opencv/cv/src/
cvsubdivision2d.cpp 662 double a0, b0, c0, a1, b1, c1; local
672 icvCreateCenterNormalLine( edge1, &a1, &b1, &c1 );
674 icvIntersectLines3( &a0, &b0, &c0, &a1, &b1, &c1, &virt_point );
692 icvCreateCenterNormalLine( edge1, &a1, &b1, &c1 );
694 icvIntersectLines3( &a0, &b0, &c0, &a1, &b1, &c1, &virt_point );
cvgeometry.cpp 147 double *a1, double *b1, double *c1, CvPoint2D32f * point )
154 point->x = (float) ((b0[0] * c1[0] - b1[0] * c0[0]) * det);
155 point->y = (float) ((a1[0] * c0[0] - a0[0] * c1[0]) * det);
  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.cpp 233 char c1 = tolower(iv.c_str()[2 + 2 * i]); local
235 if (!isxdigit(c1) || !isxdigit(c2)) {
239 uint8_t nibble1 = isdigit(c1) ? c1 - '0' : c1 - 'a' + 10;
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
UtilityUnitTests.java 443 final Cursor c1 = new MatrixCursorWithCachedColumns(new String[] {"col"}); local
444 final Cursor c2 = new CursorWrapper(c1);
450 assertFalse(TextUtils.isEmpty(Utility.dumpCursor(c1)));
456 c1.close();
457 assertFalse(TextUtils.isEmpty(Utility.dumpCursor(c1)));
  /packages/apps/Exchange/src/com/android/exchange/service/
EasCalendarSyncHandler.java 147 final Cursor c1 = mContentResolver.query(Calendars.CONTENT_URI, local
154 if (c1 != null) {
156 if (c1.moveToFirst()) {
157 id = c1.getLong(CALENDAR_ID_COLUMN);
168 c1.close();
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
SelfAdjointEigenSolver.h 501 // The characteristic equation is x^3 - c2*x^2 + c1*x - c0 = 0. The
505 Scalar c1 = m(0,0)*m(1,1) - m(1,0)*m(1,0) + m(0,0)*m(2,2) - m(2,0)*m(2,0) + m(1,1)*m(2,2) - m(2,1)*m(2,1); local
511 Scalar a_over_3 = (c1 - c2*c2_over_3)*s_inv3;
515 Scalar half_b = Scalar(0.5)*(c0 + c2_over_3*(Scalar(2)*c2_over_3*c2_over_3 - c1));
  /external/icu4c/test/perf/dicttrieperf/
dicttrieperf.cpp 192 int32_t c1=(uint8_t)*s1++; local
194 cmp=c1-c2;
195 if(cmp!=0 || c1==0) { // different or done
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 230 float c1, c2, c3, c4; local
231 c1 = p1;
236 return (float) (((c4 * u + c3) * u + c2) * u + c1);
    [all...]
  /external/libyuv/files/source/
compare.cc 497 const int64 c1 = (cc1 * count * count) >> 12; local
502 const int64 ssim_n = (2 * sum_a_x_sum_b + c1) *
508 const int64 ssim_d = (sum_a_sq + sum_b_sq + c1) *
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
debug.cpp 368 __libcpp_db::swap(void* c1, void* c2)
371 size_t hc = hash<void*>()(c1) % static_cast<size_t>(__cend_ - __cbeg_);
374 while (p1->__c_ != c1)
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndbdic.c 562 NJ_UINT8 c1 = 0, c2 = 0; local
627 c1 = *byomi;
629 c = (NJ_UINT16)((c1 << 8) | c2);
632 c1 = *byomi;
646 if (c1 == *wkc) {
656 } else if (c1 < *wkc) {
1993 NJ_UINT8 c1 = 0, c2 = 0; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
tstnorm.cpp 640 UChar32 c1, c2; local
651 c1=iter.previous();
654 c1=iter.current();
657 c1=iter.next();
662 if(c1!=c2) {
668 "got c1=U+%04lx != expected c2=U+%04lx",
669 name, history, c1, c2);
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
enc_sse2.c 164 const __m128i c1 = _mm_mulhi_epi16(in1, k2); local
167 const __m128i c4 = _mm_sub_epi16(c1, c2);
222 const __m128i c1 = _mm_mulhi_epi16(T1, k2); local
225 const __m128i c4 = _mm_sub_epi16(c1, c2);
437 const __m128i c1 = _mm_madd_epi16(b23, k5352_2217); local
439 const __m128i d1 = _mm_add_epi32(c1, k12000_plus_one);
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrRedBlackTree.h 802 // child and c1 be its non-implicit child. c1 must be black because
804 // of x rooted at c0 and c1 will have different black-heights.
806 // So we know x is black and has one implicit black child, c0. c1
807 // must be red, otherwise the subtree at c1 will have a different
810 // replace x with c1, making c1 black, preserves all red-black tree
812 Node* c1 = x->fChildren[c]; local
815 fFirst = c1;
822 fLast = c1;
    [all...]
  /external/dnsmasq/src/
rfc1035.c 149 unsigned char c1 = *cp, c2 = *p; local
151 if (c1 == 0)
156 if (c1 >= 'A' && c1 <= 'Z')
157 c1 += 'a' - 'A';
161 if (c1 != c2)
    [all...]
  /external/expat/lib/
xmltok.c 926 char c1 = *s1++; local
928 if (ASCII_a <= c1 && c1 <= ASCII_z)
929 c1 += ASCII_A - ASCII_a;
932 if (c1 != c2)
934 if (!c1)
    [all...]
  /external/icu4c/test/intltest/
tstnorm.cpp 641 UChar32 c1, c2; local
652 c1=iter.previous();
655 c1=iter.current();
658 c1=iter.next();
663 if(c1!=c2) {
669 "got c1=U+%04lx != expected c2=U+%04lx",
670 name, history, c1, c2);
    [all...]
  /external/skia/src/gpu/
GrRedBlackTree.h 802 // child and c1 be its non-implicit child. c1 must be black because
804 // of x rooted at c0 and c1 will have different black-heights.
806 // So we know x is black and has one implicit black child, c0. c1
807 // must be red, otherwise the subtree at c1 will have a different
810 // replace x with c1, making c1 black, preserves all red-black tree
812 Node* c1 = x->fChildren[c]; local
815 fFirst = c1;
822 fLast = c1;
    [all...]
  /external/valgrind/main/helgrind/
hg_intercepts.c     [all...]
  /external/webp/src/dsp/
enc_sse2.c 164 const __m128i c1 = _mm_mulhi_epi16(in1, k2); local
167 const __m128i c4 = _mm_sub_epi16(c1, c2);
222 const __m128i c1 = _mm_mulhi_epi16(T1, k2); local
225 const __m128i c4 = _mm_sub_epi16(c1, c2);
437 const __m128i c1 = _mm_madd_epi16(b23, k5352_2217); local
439 const __m128i d1 = _mm_add_epi32(c1, k12000_plus_one);
    [all...]
  /frameworks/base/core/java/android/text/
TextUtils.java 921 char c1 = text.charAt(offset - 2); local
923 if (c1 >= '\uD800' && c1 <= '\uDBFF')
958 char c1 = text.charAt(offset + 1); local
960 if (c1 >= '\uDC00' && c1 <= '\uDFFF')
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarReport.java 477 GrammarAST c1 = blockAST.findFirstType(ANTLRParser.SYN_SEMPRED); local
479 if ( c1!=null || c2!=null ) return true;
  /external/chromium/base/
bind_unittest.cc 229 Callback<int(int)> c1 = Bind(&Sum, 32, 16, 8, 4, 2); local
230 EXPECT_EQ(75, c1.Run(13));

Completed in 783 milliseconds

<<21222324252627282930>>