Searched refs:c32 (Results 1 - 25 of 83) sorted by relevance

1234

/external/clang/test/Misc/
H A Dast-dump-wchar.cpp9 char32_t c32[] = U"test\0\\\"\t\a\b\234\u1234\U0010ffff"; // \ variable
/external/libopus/silk/
H A Dmacros.h43 /* a32 + (b32 * (opus_int32)((opus_int16)(c32))) >> 16 output have to be 32bit int */
44 #define silk_SMLAWB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0x0000FFFF) * (opus_int32)((opus_int16)(c32))) >> 16)))
49 /* a32 + (b32 * (c32 >> 16)) >> 16 */
50 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)) + ((((b32) & 0x0000FFFF) * ((c32) >> 16)) >> 16))
55 /* a32 + (opus_int32)((opus_int16)(b32)) * (opus_int32)((opus_int16)(c32)) output have to be 32bit int */
56 #define silk_SMLABB(a32, b32, c32) ((a3
[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...]
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 DSigProc_FIX.h399 /* a32 + (b32 * c32) output have to be 32bit int */
400 #define silk_MLA(a32, b32, c32) silk_ADD32((a32),((b32) * (c32)))
402 /* a32 + (b32 * c32) output have to be 32bit uint */
403 #define silk_MLA_uint(a32, b32, c32) silk_MLA(a32, b32, c32)
409 #define silk_SMLATT(a32, b32, c32) silk_ADD32((a32),((b32) >> 16) * ((c32) >> 16))
424 #define silk_MLA_ovflw(a32, b32, c32) silk_ADD32_ovflw((a32), (opus_uint32)(b32) * (opus_uint32)(c32))
[all...]
/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/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...]
/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/icu/icu4c/source/common/
H A Dutrie.h206 * if((c32)<=0xd7ff) { (result)=_UTRIE_GET_RAW(trie, data, 0, c32); }
208 #define _UTRIE_GET(trie, data, c32, result, resultType) \
209 if((uint32_t)(c32)<=0xffff) { \
211 (result)=_UTRIE_GET_FROM_BMP(trie, data, c32); \
212 } else if((uint32_t)(c32)<=0x10ffff) { \
214 UChar __lead16=U16_LEAD(c32); \
215 _UTRIE_GET_FROM_PAIR(trie, data, __lead16, c32, result, resultType); \
333 * @param c32 (UChar32, in) the input code point
336 #define UTRIE_GET16(trie, c32, resul
[all...]
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/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/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/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/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/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/skia/src/svg/
H A DSkSVGDevice.cpp154 const uint32_t* c32 = reinterpret_cast<const uint32_t*>(text);
156 this->appendUnichar(c32[i]);
/external/jpeg/
H A Dconfig.sub240 convex-c32)
241 basic_machine=c32-convex
/external/libvpx/libvpx/vp8/encoder/ppc/
H A Dfdct_altivec.asm81 vspltw v9, \Codd, 0 ;# v9 = c20 c30 or c22 c32 ""
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
H A Ddxgi.idl339 uuid(54ec77fa-1377-44e6-8c32-88fd5f44c84c)
/external/cmockery/cmockery_0_1_2/
H A Dconfig.sub446 convex-c32)
447 basic_machine=c32-convex
/external/google-tv-pairing-protocol/cpp/
H A Dconfig.sub493 convex-c32)
494 basic_machine=c32-convex
/external/libexif/
H A Dconfig.sub499 convex-c32)
500 basic_machine=c32-convex
/external/libmtp/
H A Dconfig.sub470 convex-c32)
471 basic_machine=c32-convex

Completed in 8308 milliseconds

1234