Home
last modified time | relevance | path

Searched refs:out8 (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/test/cintltst/
Dcustrtrn.c683 char out8[10]; in Test_UChar_UTF8_API() local
686 …(err=U_ZERO_ERROR, u_strToUTF8(out8, UPRV_LENGTHOF(out8), NULL, withLead16, UPRV_LENGTHOF(withLead… in Test_UChar_UTF8_API()
687 …(err=U_ZERO_ERROR, u_strToUTF8(out8, UPRV_LENGTHOF(out8), NULL, withTrail16, -1, &err), err!=U_INV… in Test_UChar_UTF8_API()
742 out8[0]=(char)0xf5; in Test_UChar_UTF8_API()
744 u_strToUTF8WithSub(out8, UPRV_LENGTHOF(out8), &u8DestLen, in Test_UChar_UTF8_API()
749 0!=uprv_memcmp((const char *)withTrail8SubFFFD, out8, u8DestLen+1) || in Test_UChar_UTF8_API()
757 out8[0]=(char)0xf5; in Test_UChar_UTF8_API()
759 u_strToUTF8WithSub(out8, UPRV_LENGTHOF(out8), &u8DestLen, in Test_UChar_UTF8_API()
764 0!=uprv_memcmp((const char *)withTrail8Sub1A, out8, u8DestLen+1) || in Test_UChar_UTF8_API()
772 out8[0]=(char)0xf5; in Test_UChar_UTF8_API()
[all …]
/external/webp/src/dsp/
Denc_sse2.c814 __m128i out0, out8; in DoQuantizeBlock() local
874 out8 = _mm_packs_epi32(out_08, out_12); in DoQuantizeBlock()
878 out8 = _mm_min_epi16(out8, max_coeff_2047); in DoQuantizeBlock()
883 out8 = _mm_xor_si128(out8, sign8); in DoQuantizeBlock()
885 out8 = _mm_sub_epi16(out8, sign8); in DoQuantizeBlock()
889 in8 = _mm_mullo_epi16(out8, q8); in DoQuantizeBlock()
904 outZ8 = _mm_shufflelo_epi16(out8, _MM_SHUFFLE(3, 0, 2, 1)); in DoQuantizeBlock()