Lines Matching refs:c

94 uint32_t c = *ptr;  in print_char()  local
103 one_code_unit = c < 0x80; in print_char()
105 one_code_unit = (c & 0xfc00) != 0xd800; in print_char()
107 one_code_unit = (c & 0xfffff800u) != 0xd800u; in print_char()
116 if (PRINTABLE(c)) fprintf(f, "%c", (char)c); in print_char()
117 else if (c < 0x80) fprintf(f, "\\x%02x", c); in print_char()
118 else fprintf(f, "\\x{%02x}", c); in print_char()
135 if ((c & 0xc0) != 0xc0) in print_char()
137 fprintf(f, "\\X{%x}", c); /* Invalid starting byte */ in print_char()
143 int a = PRIV(utf8_table4)[c & 0x3f]; /* Number of additional bytes */ in print_char()
145 c = (c & PRIV(utf8_table3)[a]) << s; in print_char()
150 fprintf(f, "\\X{%x}", c); /* Invalid secondary byte */ in print_char()
154 c |= (ptr[i] & 0x3f) << s; in print_char()
156 fprintf(f, "\\x{%x}", c); in print_char()
167 fprintf(f, "\\X{%x}", c); in print_char()
170 c = (((c & 0x3ff) << 10) | (ptr[1] & 0x3ff)) + 0x10000; in print_char()
171 fprintf(f, "\\x{%x}", c); in print_char()
180 fprintf(f, "\\X{%x}", c); in print_char()
209 uint32_t c = *ptr++; in print_custring() local
210 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c); in print_custring()
219 uint32_t c = *ptr++; in print_custring_bylen() local
220 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c); in print_custring_bylen()
320 uint32_t c; in pcre2_printint() local
425 c = GET2(code, 1); in pcre2_printint()
426 if (c == RREF_ANY) in pcre2_printint()
429 fprintf(f, " Cond recurse %d", c); in pcre2_printint()
618 c = code[1 + 4*LINK_SIZE]; in pcre2_printint()
619 fprintf(f, " %s %c", OP_names[*code], c); in pcre2_printint()
623 if (c == PRIV(callout_start_delims)[i]) in pcre2_printint()
625 c = PRIV(callout_end_delims)[i]; in pcre2_printint()
628 fprintf(f, "%c %d %d %d", c, GET(code, 1 + 3*LINK_SIZE), GET(code, 1), in pcre2_printint()