HomeSort by relevance Sort by last modified time
    Searched refs:PRINTABLE (Results 1 - 3 of 3) sorted by null

  /external/pcre/dist2/src/
pcre2_printint.c 116 if (PRINTABLE(c)) fprintf(f, "%c", (char)c);
210 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c);
220 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c);
687 if (PRINTABLE(i)) fprintf(f, "%c", i);
693 if (PRINTABLE(j)) fprintf(f, "%c", j);
pcre2test.c 222 /* The macro PRINTABLE determines whether to print an output character as-is or
228 #define PRINTABLE(c) ((c) >= 64 && (c) < 255)
230 #define PRINTABLE(c) ((c) >= 32 && (c) < 127)
233 #define PRINTOK(c) ((use_tables != NULL && c < 256)? isprint(c) : PRINTABLE(c))
    [all...]
pcre2_compile.c 56 #define PRINTABLE(c) ((c) >= 64 && (c) < 255)
58 #define PRINTABLE(c) ((c) >= 32 && (c) < 127)
    [all...]

Completed in 91 milliseconds