Lines Matching defs:utf32_char
12372 uint32_t utf32_char;
12377 utf32_char = (uint32_t)data[pos];
12378 too_large |= utf32_char;
12379 *latin1_output++ = (char)(utf32_char & 0xFF);
12401 uint32_t utf32_char = data[pos];
12402 if ((utf32_char & 0xFFFFFF00) == 0) { // Check if the character can be represented in Latin-1
12403 *latin1_output++ = (char)(utf32_char & 0xFF);
12524 uint32_t utf32_char;
12528 utf32_char = (uint32_t)data[pos];
12540 *latin1_output++ = (char)(utf32_char & 0xFF);