Searched defs:c32 (Results 1 - 16 of 16) sorted by relevance

/external/clang/test/Misc/
H A Dast-dump-wchar.cpp9 char32_t c32[] = U"test\0\\\"\t\a\b\234\u1234\U0010ffff"; // \ variable
/external/icu/icu4c/source/test/intltest/
H A Dtokiter.cpp86 UChar32 c32 = line.unescapeAt(pos); local
87 if (c32 < 0) {
91 token.append(c32);
H A Dutxttest.cpp1025 UChar32 c32 = utext_char32At(ut, i); local
1026 TEST_ASSERT(c32 == c32Map[i]);
1033 UChar32 c32 = utext_next32From(ut, i); local
1034 TEST_ASSERT(c32 == c32Map[i]);
1042 UChar32 c32 = utext_previous32From(ut, i); local
1043 TEST_ASSERT(c32 == pr32Map[i]);
1058 UChar32 c32; local
1060 U16_GET(buf, 0, extractedLen-extractedLen, extractedLen, c32);
1061 TEST_ASSERT(c32 == c32Map[i]);
1095 UChar32 c32 local
1103 UChar32 c32 = utext_next32From(ut, i); local
1111 UChar32 c32 = utext_previous32From(ut, i); local
1127 UChar32 c32; local
1163 UChar32 c32 = utext_char32At(ut, i); local
1171 UChar32 c32 = utext_next32From(ut, i); local
1179 UChar32 c32 = utext_previous32From(ut, i); local
1195 UChar32 c32; local
[all...]
H A Drbbitst.cpp932 UChar32 c32 = utext_current32(textToBreak); local
933 if (c32 < 0) {
936 utf16Index += U16_LENGTH(c32);
/external/libpng/contrib/tools/
H A Dchecksum-icc.c23 uLong c32 = crc32(0, NULL, 0); local
40 c32 = crc32(c32, &b, 1);
51 (unsigned long)a32, (unsigned long)c32,
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
H A Dutf_sanity_check.pass.cpp40 F32_8::intern_type c32; local
77 assert(f32_8.in(mbs, c8, c_c8p, c_c8p, &c32, &c32+1, c32p) == F32_8::ok);
86 assert(c32p-&c32 == 1);
87 assert(c32 == c32x);
118 assert(f32_16.in(mbs, c16c, c_c16cp, c_c16cp, &c32, &c32+1, c32p) == F32_8::ok);
123 assert(c32p-&c32 == 1);
124 assert(c32 == c32x);
/external/clang/test/Sema/
H A Dattr-mode.c27 typedef _Complex double c32 __attribute((mode(SC))); typedef
28 int c32_test[sizeof(c32) == 8 ? 1 : -1];
/external/clang/test/SemaCXX/
H A Dconstexpr-printing.cpp86 constexpr char32_t c32 = get(U"test\0\\\"\t\a\b\234\u1234\U0010ffff"); // \ member in struct:V
H A Dcxx98-compat.cpp141 char32_t c32 = 0; // expected-warning {{'char32_t' type specifier is incompatible with C++98}} variable
/external/icu/icu4c/source/io/
H A Dustdio.c620 ufile_getch32(UFILE *f, UChar32 *c32) argument
625 *c32 = U_EOF;
635 *c32 = *(str->fPos)++;
636 if (U_IS_LEAD(*c32)) {
639 *c32 = U16_GET_SUPPLEMENTARY(*c32, c16);
643 *c32 = U_EOF;
/external/icu/icu4c/source/tools/toolutil/
H A Ducbuf.c376 UChar32 c32,c1,c2; local
413 c32 = u_unescapeAt(_charAt, &offset, length, (void*)buf);
416 * to c32 or not
418 if(c32==0xFFFFFFFF){
431 }else if(c32!=c2 || (c32==0x0075 && c2==0x0075 && c1==0x005C) /* for \u0075 c2=0x0075 and c32==0x0075*/){
444 return c32;
/external/libopus/silk/
H A DMacroCount.h69 static OPUS_INLINE opus_int32 silk_MLA(opus_int32 a32, opus_int32 b32, opus_int32 c32){ argument
72 ret = a32 + b32 * c32;
77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ argument
80 ret = a32 + b32 * c32;
92 static OPUS_INLINE opus_int32 silk_SMLAWB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ argument
95 ret = ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0x0000FFFF) * (opus_int32)((opus_int16)(c32))) >> 16)));
107 static OPUS_INLINE opus_int32 silk_SMLAWT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ argument
110 ret = a32 + ((b32 >> 16) * (c32 >> 16)) + (((b32 & 0x0000FFFF) * ((c32 >> 1
122 silk_SMLABB(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
138 silk_SMLABT(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
154 silk_SMLATT(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
190 silk_SMLAL(opus_int64 a64, opus_int32 b32, opus_int32 c32) argument
615 silk_SMLAWW(opus_int32 a32, opus_int32 b32, opus_int32 c32) argument
[all...]
H A DMacroDebug.h289 static OPUS_INLINE opus_int32 silk_MLA_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line){ argument
291 ret = a32 + b32 * c32;
292 if ( (opus_int64)ret != (opus_int64)a32 + (opus_int64)b32 * (opus_int64)c32 )
294 fprintf (stderr, "silk_MLA(%d, %d, %d) in %s: line %d\n", a32, b32, c32, file, line);
304 static OPUS_INLINE opus_int32 silk_MLA_uint_(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32, char *file, int line){ argument
306 ret = a32 + b32 * c32;
307 if ( (opus_int64)ret != (opus_int64)a32 + (opus_int64)b32 * (opus_int64)c32 )
309 fprintf (stderr, "silk_MLA_uint(%d, %d, %d) in %s: line %d\n", a32, b32, c32, file, line);
334 static OPUS_INLINE opus_int32 silk_SMLAWB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line){ argument
336 ret = silk_ADD32( a32, silk_SMULWB( b32, c32 ) );
364 silk_SMLAWT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
401 silk_SMLABB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
417 silk_SMLABT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
433 silk_SMLATT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
479 silk_SMLAWW_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file, int line) argument
[all...]
/external/icu/icu4c/source/common/
H A Dustring.cpp1379 UChar32 c32; local
1388 c32 = (UChar32)u_unescapeAt(_charPtr_charAt, &lenParsed, (int32_t)uprv_strlen(src), (void*)src);
1393 if (dest != NULL && U16_LENGTH(c32) <= (destCapacity - i)) {
1394 U16_APPEND_UNSAFE(dest, i, c32);
1396 i += U16_LENGTH(c32);
/external/icu/icu4c/source/i18n/
H A Duregex.cpp1466 UChar32 c32; local
1467 U16_GET(replacementText, 0, replIdx, replacementLength, c32);
1468 if (u_isdigit(c32)) {
1475 U16_GET(replacementText, 0, replIdx, replacementLength, c32);
1476 if (u_isdigit(c32) == FALSE) {
1480 int32_t digitVal = u_charDigitValue(c32);
1492 } else if (c32 == LEFTBRACKET) {
1496 while (U_SUCCESS(*status) && c32 != RIGHTBRACKET) {
1501 U16_NEXT(replacementText, replIdx, replacementLength, c32);
1502 if ((c32 >
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 540 milliseconds