Home | History | Annotate | Download | only in ceres

Lines Matching full:xxxxxx

2706 //   8 - 11 bits       110xxxxx 10xxxxxx
2707 // 12 - 16 bits 1110xxxx 10xxxxxx 10xxxxxx
2708 // 17 - 21 bits 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
2745 str[1] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx
2749 str[2] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx
2750 str[1] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx
2754 str[3] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx
2755 str[2] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx
2756 str[1] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx
8314 char name_template[] = "/tmp/captured_stream.XXXXXX";