Lines Matching refs:octet
2034 unsigned char octet; in yaml_emitter_write_double_quoted_scalar() local
2039 octet = string.pointer[0]; in yaml_emitter_write_double_quoted_scalar()
2040 width = (octet & 0x80) == 0x00 ? 1 : in yaml_emitter_write_double_quoted_scalar()
2041 (octet & 0xE0) == 0xC0 ? 2 : in yaml_emitter_write_double_quoted_scalar()
2042 (octet & 0xF0) == 0xE0 ? 3 : in yaml_emitter_write_double_quoted_scalar()
2043 (octet & 0xF8) == 0xF0 ? 4 : 0; in yaml_emitter_write_double_quoted_scalar()
2044 value = (octet & 0x80) == 0x00 ? octet & 0x7F : in yaml_emitter_write_double_quoted_scalar()
2045 (octet & 0xE0) == 0xC0 ? octet & 0x1F : in yaml_emitter_write_double_quoted_scalar()
2046 (octet & 0xF0) == 0xE0 ? octet & 0x0F : in yaml_emitter_write_double_quoted_scalar()
2047 (octet & 0xF8) == 0xF0 ? octet & 0x07 : 0; in yaml_emitter_write_double_quoted_scalar()
2049 octet = string.pointer[k]; in yaml_emitter_write_double_quoted_scalar()
2050 value = (value << 6) + (octet & 0x3F); in yaml_emitter_write_double_quoted_scalar()