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

12345

/external/clang/test/Misc/
H A Dast-dump-wchar.cpp9 char32_t c32[] = U"test\0\\\"\t\a\b\234\u1234\U0010ffff"; // \ variable
/external/chromium_org/third_party/opus/src/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/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/chromium_org/third_party/icu/source/test/intltest/
H A Dtokiter.cpp86 UChar32 c32 = line.unescapeAt(pos); local
87 if (c32 < 0) {
91 token.append(c32);
H A Dutxttest.cpp1021 UChar32 c32 = utext_char32At(ut, i); local
1022 TEST_ASSERT(c32 == c32Map[i]);
1029 UChar32 c32 = utext_next32From(ut, i); local
1030 TEST_ASSERT(c32 == c32Map[i]);
1038 UChar32 c32 = utext_previous32From(ut, i); local
1039 TEST_ASSERT(c32 == pr32Map[i]);
1054 UChar32 c32; local
1056 U16_GET(buf, 0, extractedLen-extractedLen, extractedLen, c32);
1057 TEST_ASSERT(c32 == c32Map[i]);
1091 UChar32 c32 local
1099 UChar32 c32 = utext_next32From(ut, i); local
1107 UChar32 c32 = utext_previous32From(ut, i); local
1123 UChar32 c32; local
1159 UChar32 c32 = utext_char32At(ut, i); local
1167 UChar32 c32 = utext_next32From(ut, i); local
1175 UChar32 c32 = utext_previous32From(ut, i); local
1191 UChar32 c32; local
[all...]
/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.cpp1023 UChar32 c32 = utext_char32At(ut, i); local
1024 TEST_ASSERT(c32 == c32Map[i]);
1031 UChar32 c32 = utext_next32From(ut, i); local
1032 TEST_ASSERT(c32 == c32Map[i]);
1040 UChar32 c32 = utext_previous32From(ut, i); local
1041 TEST_ASSERT(c32 == pr32Map[i]);
1056 UChar32 c32; local
1058 U16_GET(buf, 0, extractedLen-extractedLen, extractedLen, c32);
1059 TEST_ASSERT(c32 == c32Map[i]);
1093 UChar32 c32 local
1101 UChar32 c32 = utext_next32From(ut, i); local
1109 UChar32 c32 = utext_previous32From(ut, i); local
1125 UChar32 c32; local
1161 UChar32 c32 = utext_char32At(ut, i); local
1169 UChar32 c32 = utext_next32From(ut, i); local
1177 UChar32 c32 = utext_previous32From(ut, i); local
1193 UChar32 c32; local
[all...]
/external/libcxx/test/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/chromium_org/third_party/icu/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/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/chromium_org/third_party/icu/source/io/
H A Dustdio.c617 ufile_getch32(UFILE *f, UChar32 *c32) argument
622 *c32 = U_EOF;
632 *c32 = *(str->fPos)++;
633 if (U_IS_LEAD(*c32)) {
636 *c32 = U16_GET_SUPPLEMENTARY(*c32, c16);
640 *c32 = U_EOF;
/external/icu/icu4c/source/io/
H A Dustdio.c617 ufile_getch32(UFILE *f, UChar32 *c32) argument
622 *c32 = U_EOF;
632 *c32 = *(str->fPos)++;
633 if (U_IS_LEAD(*c32)) {
636 *c32 = U16_GET_SUPPLEMENTARY(*c32, c16);
640 *c32 = U_EOF;
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ducbuf.c377 UChar32 c32,c1,c2; local
414 c32 = u_unescapeAt(_charAt, &offset, length, (void*)buf);
417 * to c32 or not
419 if(c32==0xFFFFFFFF){
432 }else if(c32!=c2 || (c32==0x0075 && c2==0x0075 && c1==0x005C) /* for \u0075 c2=0x0075 and c32==0x0075*/){
445 return c32;
/external/icu/icu4c/source/tools/toolutil/
H A Ducbuf.c377 UChar32 c32,c1,c2; local
414 c32 = u_unescapeAt(_charAt, &offset, length, (void*)buf);
417 * to c32 or not
419 if(c32==0xFFFFFFFF){
432 }else if(c32!=c2 || (c32==0x0075 && c2==0x0075 && c1==0x005C) /* for \u0075 c2=0x0075 and c32==0x0075*/){
445 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

Completed in 6956 milliseconds

12345