Home
last modified time | relevance | path

Searched refs:isascii (Results 1 - 25 of 45) sorted by relevance

12

/third_party/musl/porting/linux/user/include/
H A Dctype.h63 int isascii(int);
68 #define isascii(a) (0 ? isascii(a) : (unsigned)(a) < 128) macro
/third_party/musl/porting/liteos_a/kernel/include/
H A Dctype.h63 int isascii(int);
68 #define isascii(a) (0 ? isascii(a) : (unsigned)(a) < 128) macro
/third_party/musl/porting/uniproton/kernel/include/
H A Dctype.h63 int isascii(int);
67 #define isascii(a) (0 ? isascii(a) : (unsigned)(a) < 128) macro
/third_party/musl/porting/liteos_m/kernel/include/
H A Dctype.h63 int isascii(int);
67 #define isascii(a) (0 ? isascii(a) : (unsigned)(a) < 128) macro
/third_party/musl/include/
H A Dctype.h63 int isascii(int);
68 #define isascii(a) (0 ? isascii(a) : (unsigned)(a) < 128) macro
/third_party/musl/porting/uniproton/kernel/src/ctype/
H A Disascii.c2 #undef isascii macro
4 int isascii(int c) in isascii() function
/third_party/musl/porting/liteos_m/kernel/src/ctype/
H A Disascii.c2 #undef isascii macro
4 int isascii(int c) in isascii() function
/third_party/musl/src/ctype/
H A Disascii.c2 #undef isascii macro
4 int isascii(int c) in isascii() function
/third_party/musl/libc-test/src/functionalext/supplement/ctype/
H A Disascii.c32 EXPECT_EQ("isascii_0100", isascii(ascii[i]), ONREXPECT); in isascii_0100()
36 EXPECT_EQ("isascii_0100", isascii(not_ascii[i]), CMPFLAG); in isascii_0100()
/third_party/mesa3d/src/freedreno/decode/
H A Dutil.h107 #define is_ok_ascii(c) (isascii(c) && ((c == '\t') || !iscntrl(c)))
173 printf("%c", (isascii(c) && !iscntrl(c)) ? c : '.'); in dump_hex_ascii()
189 printf("%c", (isascii(c) && !iscntrl(c)) ? c : '.'); in dump_hex_ascii()
H A Dpgmdump2.c162 printf("%c", (isascii(c) && !iscntrl(c)) ? c : '.'); in dump_unknown()
172 if ((d < state->sz) && isascii(state->buf[d]) && in dump_unknown()
173 (strlen(&state->buf[d]) > 2) && isascii(state->buf[d + 1])) in dump_unknown()
/third_party/bounds_checking_function/src/
H A Dsecinput.h135 #ifndef isascii
136 #define isascii(c) (((unsigned char)(c)) <= 0x7f) macro
/third_party/skia/third_party/externals/freetype/src/tools/ftrandom/
H A Dftrandom.c96 unsigned int isascii: 1; member
273 item->isbinary = item->isascii = item->ishex = false; in figurefiletype()
307 item->isascii = true; in figurefiletype()
473 else if ( item->isascii ) in copyfont()
/third_party/musl/src/stdio/
H A Dungetwc.c27 if (isascii(c)) *--f->rpos = c; in ungetwc()
H A Dfputwc.c16 if (isascii(c)) { in __fputwc_unlocked()
/third_party/musl/libc-test/src/api/
H A Dctype.c7 {int(*p)(int) = isascii;} in f()
/third_party/elfutils/libasm/
H A Dasm_addstrz.c88 else if (! isascii (*str)) in asm_addstrz()
/third_party/openssl/test/
H A Dctype_internal_test.c30 if (!TEST_int_eq(isascii((unsigned char)n) != 0, ossl_isascii(n) != 0)) in test_ctype_chars()
/third_party/musl/Benchmark/musl/
H A Dlibc_ctype.cpp183 benchmark::DoNotOptimize(isascii(ch)); in Bm_function_Isascii_yes()
192 benchmark::DoNotOptimize(isascii(ch)); in Bm_function_Isascii_no()
/third_party/icu/icu4c/source/tools/tzcode/
H A Dzdump.c39 #ifndef isascii
40 #define isascii(x) 1 macro
41 #endif /* !defined isascii */
292 while (isascii((unsigned char) *cp) && isalpha((unsigned char) *cp)) in abbrok()
302 if (isascii((unsigned char) *cp) && in abbrok()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H A Dzdump.c37 #ifndef isascii
38 #define isascii(x) 1 macro
39 #endif /* !defined isascii */
298 while (isascii((unsigned char) *cp) && isalpha((unsigned char) *cp)) in abbrok()
308 if (isascii((unsigned char) *cp) && in abbrok()
/third_party/python/Lib/urllib/
H A Dparse.py179 if port.isdigit() and port.isascii():
422 if not netloc or netloc.isascii():
487 if i > 0 and url[0].isascii() and url[0].isalpha():
1159 if port.isdigit() and port.isascii():
/third_party/python/Lib/curses/
H A Dascii.py56 def isascii(c): return 0 <= _ctoi(c) <= 127 # ? function
/third_party/python/Lib/encodings/
H A D__init__.py64 if c.isascii():
/third_party/selinux/libselinux/src/
H A Dlabel_support.c37 if (!isascii(**ptr)) { in read_spec_entry()

Completed in 12 milliseconds

12