HomeSort by relevance Sort by last modified time
    Searched refs:c2 (Results 651 - 675 of 1127) sorted by null

<<21222324252627282930>>

  /external/icu4c/common/
ucnv_io.cpp 492 char c1, c2; local
520 while ((c2 = *name2++) != 0) {
521 type = GET_CHAR_TYPE(c2);
538 c2 = (char)type; /* lowercased letter */
542 break; /* deliver c2 */
546 if ((c1|c2)==0) {
551 rc = (int)(unsigned char)c1 - (int)(unsigned char)c2;
    [all...]
unisetspan.cpp 484 UChar c=*s, c2; local
485 if(c>=0xd800 && c<=0xdbff && length>=2 && U16_IS_TRAIL(c2=s[1])) {
486 return set.contains(U16_GET_SUPPLEMENTARY(c, c2)) ? 2 : -2;
493 UChar c=s[length-1], c2; local
494 if(c>=0xdc00 && c<=0xdfff && length>=2 && U16_IS_LEAD(c2=s[length-2])) {
495 return set.contains(U16_GET_SUPPLEMENTARY(c2, c)) ? 2 : -2;
    [all...]
  /external/icu4c/test/intltest/
calregts.cpp 2731 Calendar *c2 = Calendar::createInstance("ja_JP_TRADITIONAL",status); local
    [all...]
  /external/v8/test/mjsunit/
string-replace.js 154 replaceTest("0a1b2cx", short, /(x)(?=(.))/g, function r(m, c1, c2, i, s) {
158 assertEquals(["a","b","c"][ctr], c2, "replace(/(x)(?=(.))/g,func(..,c2,..))");
  /external/valgrind/main/none/tests/s390x/
cu41.stdout.exp 47 UTF8: c2 80 df bf
163 UTF8: c2 80 df bf c2 81 df be c4 80 cc b3 d5 95 da aa
  /ndk/sources/host-tools/nawk-20071023/
b.c 290 int i, c, c2; local
306 c2 = *p++;
307 if (c2 == '\\')
308 c2 = quoted((char **) &p);
309 if (c > c2) { /* empty; ignore */
314 while (c < c2) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
concept_check.hpp 687 c.swap(c2);
692 C c, c2;
824 c2(n, t),
837 ignore_unused_variable_warning(c2);
999 c2(first, last),
1009 ignore_unused_variable_warning(c2);
  /bionic/libc/upstream-netbsd/libc/regex/
regcomp.c 160 static int samesets(struct re_guts *g, int c1, int c2);
1615 int c2; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testtree.py 581 c2=CommonTree(CommonToken(103))
582 r0.addChild(c2)
590 self.failUnlessEqual(r0, c2.parent)
591 self.failUnlessEqual(2, c2.childIndex)
605 c2=CommonTree(CommonToken(103))
606 r0.addChild(c2)
618 self.failUnlessEqual(2, c2.childIndex)
633 c2=CommonTree(CommonToken(103))
634 r0.addChild(c2)
646 self.failUnlessEqual(3, c2.childIndex
    [all...]
  /external/llvm/test/MC/ARM/
diagnostics.s 148 mrc p14, #8, r1, c1, c2, #4
149 mrc p14, #1, r1, c1, c2, #8
150 mrc2 p14, #8, r1, c1, c2, #4
151 mrc2 p14, #0, r1, c1, c2, #9
399 mrc2lo p14, #0, r1, c1, c2, #4
  /external/chromium_org/third_party/simplejson/
_speedups.c 643 Py_UNICODE c2 = 0; local
655 c2 <<= 4;
660 c2 |= (digit - '0'); break;
663 c2 |= (digit - 'a' + 10); break;
666 c2 |= (digit - 'A' + 10); break;
672 if ((c2 & 0xfc00) != 0xdc00) {
676 c = 0x10000 + (((c - 0xd800) << 10) | (c2 - 0xdc00));
838 Py_UNICODE c2 = 0; local
850 c2 <<= 4;
855 c2 |= (digit - '0'); break
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 90 int c1, c2; local
101 c2 = (x2 < 0) + (x2 > right) * 2 + (y2 < 0) * 4 + (y2 > bottom) * 8;
103 if( (c1 & c2) == 0 && (c1 | c2) != 0 )
114 if( c2 & 12 )
116 a = c2 < 8 ? 0 : bottom;
119 c2 = (x2 < 0) + (x2 > right) * 2;
121 if( (c1 & c2) == 0 && (c1 | c2) != 0 )
130 if( c2 )
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
trie2test.c 278 UChar32 prevCP, c, c2; local
305 U16_NEXT(s, sIndex, length, c2);
316 if(c!=c2) {
318 testName, (long)c, (long)c2);
330 U16_PREV(s, 0, sIndex, c2);
341 if(c!=c2) {
343 testName, c, c2);
    [all...]
citertst.c 427 UCollator *c1, *c2, *c3; local
476 c2 = ucol_openRules(rule, u_strlen(rule), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
478 if (c2 == NULL || U_FAILURE(status))
485 iter=ucol_openElements(c2, source, u_strlen(source), &status);
493 ucol_close(c2);
919 int32_t c1, c2; local
926 c2 = ucol_next(i2, &status);
928 if (c1 != c2)
930 log_err("Error in iteration %d assetEqual between\n %d and %d, they are not equal\n", count, c1, c2);
    [all...]
  /external/icu4c/test/cintltst/
trie2test.c 278 UChar32 prevCP, c, c2; local
305 U16_NEXT(s, sIndex, length, c2);
316 if(c!=c2) {
318 testName, (long)c, (long)c2);
330 U16_PREV(s, 0, sIndex, c2);
341 if(c!=c2) {
343 testName, c, c2);
    [all...]
utf8tst.c 415 UChar32 c, c2, expected; local
457 U8_GET(input, 0, j, -1, c2);
458 if(c2!=c) {
459 log_err("U8_NEXT(from %d)=U+%04x != U+%04x=U8_GET(at %d)\n", i0, c, c2, j);
461 U8_GET_OR_FFFD(input, 0, j, -1, c2);
463 if(c2!=expected) {
464 log_err("U8_NEXT_OR_FFFD(from %d)=U+%04x != U+%04x=U8_GET_OR_FFFD(at %d)\n", i0, expected, c2, j);
    [all...]
citertst.c 427 UCollator *c1, *c2, *c3; local
476 c2 = ucol_openRules(rule, u_strlen(rule), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status);
478 if (c2 == NULL || U_FAILURE(status))
485 iter=ucol_openElements(c2, source, u_strlen(source), &status);
493 ucol_close(c2);
919 int32_t c1, c2; local
926 c2 = ucol_next(i2, &status);
928 if (c1 != c2)
930 log_err("Error in iteration %d assetEqual between\n %d and %d, they are not equal\n", count, c1, c2);
    [all...]
  /external/opencv/cvaux/src/
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/llvm/bindings/ocaml/llvm/
llvm.mli 823 (** [const_add c1 c2] returns the constant sum of two constants.
827 (** [const_nsw_add c1 c2] returns the constant sum of two constants with no
832 (** [const_nuw_add c1 c2] returns the constant sum of two constants with no
837 (** [const_fadd c1 c2] returns the constant sum of two constant floats.
841 (** [const_sub c1 c2] returns the constant difference, [c1 - c2], of two
845 (** [const_nsw_sub c1 c2] returns the constant difference of two constants with
850 (** [const_nuw_sub c1 c2] returns the constant difference of two constants with
855 (** [const_fsub c1 c2] returns the constant difference, [c1 - c2], of tw
    [all...]
  /hardware/samsung_slsi/exynos5/libhwc/
hwc.cpp 251 static inline bool gsc_dst_cfg_changed(exynos_gsc_img &c1, exynos_gsc_img &c2)
253 return c1.x != c2.x ||
254 c1.y != c2.y ||
255 c1.w != c2.w ||
256 c1.h != c2.h ||
257 c1.format != c2.format ||
258 c1.rot != c2.rot ||
259 c1.cacheable != c2.cacheable ||
260 c1.drmMode != c2.drmMode;
263 static inline bool gsc_src_cfg_changed(exynos_gsc_img &c1, exynos_gsc_img &c2)
    [all...]
  /art/runtime/verifier/
reg_type.cc 898 mirror::Class* c2 = incoming_type.GetClass(); local
900 DCHECK(c2 != NULL && !c2->IsPrimitive());
901 mirror::Class* join_class = ClassJoin(c1, c2);
904 } else if (c2 == join_class && !incoming_type.IsPreciseReference()) {
  /external/chromium_org/third_party/opus/src/src/
analysis.c 192 void tonality_analysis(TonalityAnalysisState *tonal, AnalysisInfo *info_out, const CELTMode *celt_mode, const void *x, int len, int offset, int c1, int c2, int C, int lsb_depth, downmix_func downmix)
237 downmix(x, &tonal->inmem[tonal->mem_fill], IMIN(len, ANALYSIS_BUF_SIZE-tonal->mem_fill), offset, c1, c2, C);
263 downmix(x, &tonal->inmem[240], remaining, offset+ANALYSIS_BUF_SIZE-tonal->mem_fill, c1, c2, C);
622 int analysis_frame_size, int frame_size, int c1, int c2, int C, opus_int32 Fs,
636 tonality_analysis(analysis, NULL, celt_mode, analysis_pcm, IMIN(480, pcm_len), offset, c1, c2, C, lsb_depth, downmix);
  /external/jpeg/
jdmarker.c 937 int c, c2; local
941 INPUT_BYTE(cinfo, c2, return FALSE);
942 if (c != 0xFF || c2 != (int) M_SOI)
943 ERREXIT2(cinfo, JERR_NO_SOI, c, c2);
945 cinfo->unread_marker = c2;
    [all...]
  /external/qemu/distrib/jpeg-6b/
jdmarker.c 929 int c, c2; local
933 INPUT_BYTE(cinfo, c2, return FALSE);
934 if (c != 0xFF || c2 != (int) M_SOI)
935 ERREXIT2(cinfo, JERR_NO_SOI, c, c2);
937 cinfo->unread_marker = c2;
    [all...]
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 

Completed in 1962 milliseconds

<<21222324252627282930>>