Home
last modified time | relevance | path

Searched refs:IsASCII (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerUtil.h35 bool IsASCII(const Unit &U);
37 bool IsASCII(const uint8_t *Data, size_t Size);
H A DFuzzerUtil.cpp74 bool IsASCII(const Unit &U) { return IsASCII(U.data(), U.size()); } in IsASCII() function
76 bool IsASCII(const uint8_t *Data, size_t Size) { in IsASCII() function
H A DFuzzerLoop.cpp548 assert(IsASCII(U)); in WriteToOutputCorpus()
/freebsd-12.1/lib/libedit/
H A Dchartype.h85 #define IsASCII(x) (x < 0x100) macro
140 #define IsASCII(x) isascii((unsigned char)x) macro
H A Dchartype.c378 else if (IsASCII(c) && Iscntrl(c)) in ct_chr_class()
/freebsd-12.1/contrib/compiler-rt/lib/asan/
H A Dasan_globals.cc275 static bool IsASCII(unsigned char c) { return /*0x00 <= c &&*/ c <= 0x7F; } in IsASCII() function
293 if (c == '\0' || !IsASCII(c)) return; in PrintGlobalNameIfASCII()