Home
last modified time | relevance | path

Searched refs:isprint (Results 1 - 25 of 97) sorted by relevance

1234

/third_party/musl/libc-test/src/functionalext/supplement/ctype/
H A Disprint.c29 int ret = isprint(32); in isprint_0100()
40 int ret = isprint(63); in isprint_0200()
51 int ret = isprint(126); in isprint_0300()
63 int ret = isprint(20); in isprint_0400()
76 int ret = isprint((char)i); in isprint_0500()
/third_party/musl/porting/uniproton/kernel/src/ctype/
H A Disprint.c2 #undef isprint macro
4 int isprint(int c) in isprint() function
11 return isprint(c); in __isprint_l()
/third_party/musl/porting/liteos_m/kernel/src/ctype/
H A Disprint.c2 #undef isprint macro
4 int isprint(int c) in isprint() function
11 return isprint(c); in __isprint_l()
/third_party/musl/src/ctype/
H A Disprint.c2 #undef isprint macro
8 int isprint(int c) in isprint() function
23 return isprint(c); in __isprint_l()
/third_party/pcre2/pcre2/src/
H A Dpcre2_dftables.c281 if (isprint(i-8)) (void)fprintf(f, " %c -", i-8); in main()
283 if (isprint(i-1)) (void)fprintf(f, " %c ", i-1); in main()
292 if (isprint(i-8)) (void)fprintf(f, " %c -", i-8); in main()
294 if (isprint(i-1)) (void)fprintf(f, " %c ", i-1); in main()
/third_party/musl/porting/linux/user/include/
H A Dctype.h17 int isprint(int);
35 #define isprint(a) (0 ? isprint(a) : ((unsigned)(a)-0x20) < 0x5f) macro
/third_party/musl/porting/liteos_a/kernel/include/
H A Dctype.h17 int isprint(int);
35 #define isprint(a) (0 ? isprint(a) : ((unsigned)(a)-0x20) < 0x5f) macro
/third_party/musl/porting/uniproton/kernel/include/
H A Dctype.h17 int isprint(int);
35 #define isprint(a) (0 ? isprint(a) : ((unsigned)(a)-0x20) < 0x5f) macro
/third_party/musl/porting/liteos_m/kernel/include/
H A Dctype.h17 int isprint(int);
35 #define isprint(a) (0 ? isprint(a) : ((unsigned)(a)-0x20) < 0x5f) macro
/third_party/musl/include/
H A Dctype.h17 int isprint(int);
35 #define isprint(a) (0 ? isprint(a) : ((unsigned)(a)-0x20) < 0x5f) macro
/third_party/ltp/testcases/kernel/syscalls/madvise/
H A Dmadvise09.c122 ptr, isprint(ptr[0]) ? ptr[0] : ' ', ptr[0]); in check_page_baaa()
130 ptr, isprint(ptr[i]) ? ptr[i] : ' ', in check_page_baaa()
147 ptr, isprint(ptr[i]) ? ptr[i] : ' ', ptr[i], i, in check_page()
148 isprint(val) ? val : ' ', val); in check_page()
/third_party/json/tests/thirdparty/Fuzzer/
H A DFuzzerUtil.cpp65 if (!isspace(NewX) && !isprint(NewX)) in ToASCII()
77 if (!(isprint(Data[i]) || isspace(Data[i]))) return false; in IsASCII()
100 if (!isprint(V) && !isspace(V)) return false; in ParseOneDictionaryEntry()
/third_party/eudev/src/shared/
H A Dprocess-util.c77 r[len++] = isprint(c) ? c : ' '; in get_process_cmdline()
95 if (isprint(c)) { in get_process_cmdline()
/third_party/python/Lib/curses/
H A Dascii.py62 def isprint(c): return 32 <= _ctoi(c) <= 126 function
93 elif isprint(bits & 0x7f):
/third_party/ltp/testcases/kernel/io/direct_io/
H A Ddiotest_routines.c147 isprint(buf1[i]) ? buf1[1] : '.'); in filecmp()
150 isprint(buf2[i]) ? buf2[i] : '.'); in filecmp()
/third_party/node/deps/v8/src/regexp/
H A Dregexp-bytecodes.cc27 PrintF("%c", std::isprint(b) ? b : '.'); in RegExpBytecodeDisassembleSingle()
/third_party/optimized-routines/string/test/
H A Dstringtest.h19 if (isprint (c)) in quotechar()
/third_party/ltp/testcases/cve/
H A Dmeltdown.c333 isprint(ret) ? ret : ' '); in run()
352 " match: %d", addr, ret, isprint(ret) ? ret : ' ', in run()
/third_party/musl/libc-test/src/api/
H A Dctype.c13 {int(*p)(int) = isprint;} in f()
/third_party/node/deps/v8/src/parsing/
H A Dliteral-buffer.h85 return iscntrl(code_unit) || isprint(code_unit); in IsValidAscii()
/third_party/node/deps/v8/src/regexp/experimental/
H A Dexperimental-bytecode.cc16 if (c < 128 && std::isprint(c)) { in PrintAsciiOrHex()
/third_party/openssl/test/
H A Dctype_internal_test.c45 && TEST_int_eq(isprint(n) != 0, ossl_isprint(n) != 0) in test_ctype_chars()
/third_party/backends/backend/
H A Depson2-io.c72 isprint(s[k]) ? s[k] : '.'); in e2_send()
164 isprint(s[k]) ? s[k] : '.'); in e2_recv()
/third_party/mesa3d/src/gallium/frontends/glx/xlib/
H A Dglx_usefont.c64 (char) (isprint(font->default_char) ? font->default_char : ' '), in dump_font_struct()
316 sprintf(s, isprint(c) ? "%c> " : "\\%03o> ", c); in glXUseXFont()
/third_party/mesa3d/src/glx/
H A Dxfont.c68 (char) (isprint(font->default_char) ? font->default_char : ' '), in dump_font_struct()
317 sprintf(s, isprint(c) ? "%c> " : "\\%03o> ", c); in DRI_glXUseXFont()

Completed in 9 milliseconds

1234