Home
last modified time | relevance | path

Searched defs:c32 (Results 1 – 25 of 98) sorted by relevance

1234

/aosp_15_r20/external/libopus/silk/
H A Dmacros.h51 #define silk_SMLAWB(a32, b32, c32) ((opus_int32)((a32) + (((b32) * (opus_int64)((opus_int16)(… argument
53 #define silk_SMLAWB(a32, b32, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))… argument
65 #define silk_SMLAWT(a32, b32, c32) ((opus_int32)((a32) + (((b32) * ((opus_int64)(c32) >> 16))… argument
67 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)) + ((((b32) & 0x00… argument
74 #define silk_SMLABB(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * (opus_int32)(… argument
80 #define silk_SMLABT(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * ((c32) >> 16)) argument
83 #define silk_SMLAL(a64, b32, c32) (silk_ADD64((a64), ((opus_int64)(b32) * (opus_int64)(c32))… argument
94 #define silk_SMLAWW(a32, b32, c32) ((opus_int32)((a32) + (((opus_int64)(b32) * (c32)) >> 16))) argument
96 #define silk_SMLAWW(a32, b32, c32) silk_MLA(silk_SMLAWB((a32), (b32), (c32)), (b32), silk_RSH… argument
H A DMacroCount.h69 static OPUS_INLINE opus_int32 silk_MLA(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_MLA()
77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ in silk_MLA_uint()
92 static OPUS_INLINE opus_int32 silk_SMLAWB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWB()
107 static OPUS_INLINE opus_int32 silk_SMLAWT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWT()
122 static OPUS_INLINE opus_int32 silk_SMLABB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLABB()
138 static OPUS_INLINE opus_int32 silk_SMLABT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLABT()
154 static OPUS_INLINE opus_int32 silk_SMLATT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLATT()
190 static OPUS_INLINE opus_int64 silk_SMLAL(opus_int64 a64, opus_int32 b32, opus_int32 c32){ in silk_SMLAL()
607 static OPUS_INLINE opus_int32 silk_SMLAWW(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWW()
H A DMacroDebug.h289 static OPUS_INLINE opus_int32 silk_MLA_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *file,… in silk_MLA_()
304 static OPUS_INLINE opus_int32 silk_MLA_uint_(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32, cha… in silk_MLA_uint_()
334 static OPUS_INLINE opus_int32 silk_SMLAWB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLAWB_()
364 static OPUS_INLINE opus_int32 silk_SMLAWT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLAWT_()
401 static OPUS_INLINE opus_int32 silk_SMLABB_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLABB_()
417 static OPUS_INLINE opus_int32 silk_SMLABT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLABT_()
433 static OPUS_INLINE opus_int32 silk_SMLATT_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLATT_()
479 static OPUS_INLINE opus_int32 silk_SMLAWW_(opus_int32 a32, opus_int32 b32, opus_int32 c32, char *fi… in silk_SMLAWW_()
H A DSigProc_FIX.h433 #define silk_MLA(a32, b32, c32) silk_ADD32((a32),((b32) * (c32))) argument
436 #define silk_MLA_uint(a32, b32, c32) silk_MLA(a32, b32, c32) argument
442 #define silk_SMLATT(a32, b32, c32) silk_ADD32((a32),((b32) >> 16) * ((c32) >> 16)) argument
474 #define silk_SMLABB_ovflw(a32, b32, c32) (silk_ADD32_ovflw((a32) , ((opus_int32)((opus_int16)(b3… argument
/aosp_15_r20/external/cronet/third_party/icu/source/test/intltest/
H A Dutxttest.cpp1033 UChar32 c32 = utext_char32At(ut, i); in ErrorTest() local
1041 UChar32 c32 = utext_next32From(ut, i); in ErrorTest() local
1050 UChar32 c32 = utext_previous32From(ut, i); in ErrorTest() local
1066 UChar32 c32; in ErrorTest() local
1103 UChar32 c32 = utext_char32At(ut, i); in ErrorTest() local
1111 UChar32 c32 = utext_next32From(ut, i); in ErrorTest() local
1119 UChar32 c32 = utext_previous32From(ut, i); in ErrorTest() local
1135 UChar32 c32; in ErrorTest() local
1171 UChar32 c32 = utext_char32At(ut, i); in ErrorTest() local
1179 UChar32 c32 = utext_next32From(ut, i); in ErrorTest() local
[all …]
H A Dtokiter.cpp88 UChar32 c32 = line.unescapeAt(pos); in nextToken() local
/aosp_15_r20/external/icu/icu4c/source/test/intltest/
H A Dutxttest.cpp1031 UChar32 c32 = utext_char32At(ut, i); in ErrorTest() local
1039 UChar32 c32 = utext_next32From(ut, i); in ErrorTest() local
1048 UChar32 c32 = utext_previous32From(ut, i); in ErrorTest() local
1064 UChar32 c32; in ErrorTest() local
1101 UChar32 c32 = utext_char32At(ut, i); in ErrorTest() local
1109 UChar32 c32 = utext_next32From(ut, i); in ErrorTest() local
1117 UChar32 c32 = utext_previous32From(ut, i); in ErrorTest() local
1133 UChar32 c32; in ErrorTest() local
1169 UChar32 c32 = utext_char32At(ut, i); in ErrorTest() local
1177 UChar32 c32 = utext_next32From(ut, i); in ErrorTest() local
[all …]
H A Dtokiter.cpp88 UChar32 c32 = line.unescapeAt(pos); in nextToken() local
/aosp_15_r20/bionic/libc/bionic/
H A Dc16rtomb.cpp48 char32_t c32 = (c16 & ~0xd800) << 10; in c16rtomb() local
62 char32_t c32 = ((mbstate_get_byte(state, 3) << 16) | in c16rtomb() local
H A Dmbrtoc16.cpp40 static size_t begin_surrogate(char32_t c32, char16_t* pc16, in begin_surrogate()
95 char32_t c32; in mbrtoc16() local
H A Dc32rtomb.cpp35 size_t c32rtomb(char* s, char32_t c32, mbstate_t* ps) { in c32rtomb()
/aosp_15_r20/prebuilts/runtime/mainline/i18n/sdk/common_os/include/external/icu/icu4c/source/common/
H A Dutrie.h209 #define _UTRIE_GET(trie, data, c32, result, resultType) UPRV_BLOCK_MACRO_BEGIN { \ argument
338 #define UTRIE_GET16(trie, c32, result) _UTRIE_GET(trie, index, c32, result, uint16_t) argument
349 #define UTRIE_GET32(trie, c32, result) _UTRIE_GET(trie, data32, c32, result, uint32_t) argument
/aosp_15_r20/external/icu/icu4c/source/common/
H A Dutrie.h209 #define _UTRIE_GET(trie, data, c32, result, resultType) UPRV_BLOCK_MACRO_BEGIN { \ argument
338 #define UTRIE_GET16(trie, c32, result) _UTRIE_GET(trie, index, c32, result, uint16_t) argument
349 #define UTRIE_GET32(trie, c32, result) _UTRIE_GET(trie, data32, c32, result, uint32_t) argument
/aosp_15_r20/prebuilts/runtime/mainline/i18n/test-exports/android/include/external/icu/icu4c/source/common/
H A Dutrie.h209 #define _UTRIE_GET(trie, data, c32, result, resultType) UPRV_BLOCK_MACRO_BEGIN { \ argument
338 #define UTRIE_GET16(trie, c32, result) _UTRIE_GET(trie, index, c32, result, uint16_t) argument
349 #define UTRIE_GET32(trie, c32, result) _UTRIE_GET(trie, data32, c32, result, uint32_t) argument
/aosp_15_r20/external/cronet/third_party/icu/source/common/
H A Dutrie.h209 #define _UTRIE_GET(trie, data, c32, result, resultType) UPRV_BLOCK_MACRO_BEGIN { \ argument
338 #define UTRIE_GET16(trie, c32, result) _UTRIE_GET(trie, index, c32, result, uint16_t) argument
349 #define UTRIE_GET32(trie, c32, result) _UTRIE_GET(trie, data32, c32, result, uint32_t) argument
/aosp_15_r20/prebuilts/runtime/mainline/i18n/test-exports/linux_glibc/include/external/icu/icu4c/source/common/
H A Dutrie.h209 #define _UTRIE_GET(trie, data, c32, result, resultType) UPRV_BLOCK_MACRO_BEGIN { \ argument
338 #define UTRIE_GET16(trie, c32, result) _UTRIE_GET(trie, index, c32, result, uint16_t) argument
349 #define UTRIE_GET32(trie, c32, result) _UTRIE_GET(trie, data32, c32, result, uint32_t) argument
/aosp_15_r20/prebuilts/runtime/mainline/i18n/test-exports/linux_bionic/include/external/icu/icu4c/source/common/
H A Dutrie.h209 #define _UTRIE_GET(trie, data, c32, result, resultType) UPRV_BLOCK_MACRO_BEGIN { \ argument
338 #define UTRIE_GET16(trie, c32, result) _UTRIE_GET(trie, index, c32, result, uint16_t) argument
349 #define UTRIE_GET32(trie, c32, result) _UTRIE_GET(trie, data32, c32, result, uint32_t) argument
/aosp_15_r20/external/icu/libicu/cts_headers/
H A Dutrie.h209 #define _UTRIE_GET(trie, data, c32, result, resultType) UPRV_BLOCK_MACRO_BEGIN { \ argument
338 #define UTRIE_GET16(trie, c32, result) _UTRIE_GET(trie, index, c32, result, uint16_t) argument
349 #define UTRIE_GET32(trie, c32, result) _UTRIE_GET(trie, data32, c32, result, uint32_t) argument
/aosp_15_r20/external/musl/src/multibyte/
H A Dc32rtomb.c4 size_t c32rtomb(char *restrict s, char32_t c32, mbstate_t *restrict ps) in c32rtomb()
/aosp_15_r20/external/clang/test/Misc/
H A Dast-dump-wchar.cpp9 char32_t c32[] = U"test\0\\\"\t\a\b\234\u1234\U0010ffff"; // \ variable
/aosp_15_r20/external/trusty/musl/src/multibyte/
Dc32rtomb.c4 size_t c32rtomb(char *restrict s, char32_t c32, mbstate_t *restrict ps) in c32rtomb()
/aosp_15_r20/external/icu/icu4c/source/test/fuzzer/
H A Duprop_fuzzer.cpp15 UChar32 c32; in LLVMFuzzerTestOneInput() local
/aosp_15_r20/external/skia/docs/examples/
H A DDither_b.cpp9 SkCanvas c32(bm32); in draw() local
/aosp_15_r20/external/musl/src/string/
H A Dmemset.c40 u32 c32 = ((u32)-1)/255 * (unsigned char)c; in memset() local
/aosp_15_r20/external/trusty/musl/src/string/
Dmemset.c40 u32 c32 = ((u32)-1)/255 * (unsigned char)c; in memset() local

1234