/external/llvm/test/Transforms/InstCombine/ |
D | isascii-1.ll | 1 ; Test that the isascii library call simplifier works correctly. 7 declare i32 @isascii(i32) 9 ; Check isascii(c) -> c <u 128. 13 %ret = call i32 @isascii(i32 127) 20 %ret = call i32 @isascii(i32 128) 27 %ret = call i32 @isascii(i32 %x)
|
D | toascii-1.ll | 9 ; Check isascii(c) -> c & 0x7f.
|
/external/openssh/openbsd-compat/ |
D | inet_aton.c | 114 if (isascii(c) && isdigit(c)) { in inet_aton() 117 } else if (base == 16 && isascii(c) && isxdigit(c)) { in inet_aton() 141 if (c != '\0' && (!isascii(c) || !isspace(c))) in inet_aton()
|
D | fmt_scaled.c | 84 while (isascii((unsigned char)*p) && isspace((unsigned char)*p)) in scan_scaled() 111 for (; isascii((unsigned char)*p) && in scan_scaled()
|
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/ |
D | IsDigit.ll | 7 declare i32 @isascii(i32) 18 %tmp = call i32 @isascii( i32 %rslt ) ; <i32> [#uses=1]
|
/external/swiftshader/third_party/LLVM/test/DebugInfo/ |
D | 2009-01-15-dbg_declare.ll | 8 define i32 @isascii(i32 %_c) nounwind {
|
/external/libcxx/src/ |
D | locale.cpp | 777 return isascii(c) ? (ctype<char>::classic_table()[c] & m) != 0 : false; in do_is() 784 *vec = static_cast<mask>(isascii(*low) ? in do_is() 793 if (isascii(*low) && (ctype<char>::classic_table()[*low] & m)) in do_scan_is() 802 if (!(isascii(*low) && (ctype<char>::classic_table()[*low] & m))) in do_scan_not() 811 return isascii(c) ? _DefaultRuneLocale.__mapupper[c] : c; in do_toupper() 814 return isascii(c) ? ctype<char>::__classic_upper_table()[c] : c; in do_toupper() 816 return (isascii(c) && iswlower_l(c, _LIBCPP_GET_C_LOCALE)) ? c-L'a'+L'A' : c; in do_toupper() 825 *low = isascii(*low) ? _DefaultRuneLocale.__mapupper[*low] : *low; in do_toupper() 828 *low = isascii(*low) ? ctype<char>::__classic_upper_table()[*low] in do_toupper() 831 *low = (isascii(*low) && islower_l(*low, _LIBCPP_GET_C_LOCALE)) ? (*low-L'a'+L'A') : *low; in do_toupper() [all …]
|
/external/elfutils/libcpu/ |
D | i386_lex.l | 121 error (0, 0, (isascii (ch) in invalid_char()
|
/external/elfutils/libasm/ |
D | asm_addstrz.c | 88 else if (! isascii (*str)) in asm_addstrz()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 232 if (!isascii(CurTok)) in GetTokPrecedence() 391 if (!isascii(CurTok) || CurTok == '(' || CurTok == ',') in ParseUnary() 465 if (!isascii(CurTok)) in ParsePrototype() 474 if (!isascii(CurTok)) in ParsePrototype()
|
/external/syslinux/com32/include/ |
D | ctype.h | 49 __ctype_inline int isascii(int __c) in isascii() function
|
/external/tcpdump/ |
D | util-print.c | 682 if (!isascii(*(pptr + idx))) { in fetch_token() 720 if (!isascii(*(pptr + idx)) || !isprint(*(pptr + idx))) { in fetch_token() 781 } else if (!isascii(*(pptr+idx)) || in print_txt_line()
|
/external/bison/m4/ |
D | mbswidth.m4 | 13 AC_CHECK_FUNCS_ONCE([isascii mbsinit])
|
/external/python/cpython2/Lib/curses/ |
D | ascii.py | 56 def isascii(c): return _ctoi(c) <= 127 # ? function
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 253 if (!isascii(CurTok)) in GetTokPrecedence() 459 if (!isascii(CurTok) || CurTok == '(' || CurTok == ',') in ParseUnary() 533 if (!isascii(CurTok)) in ParsePrototype() 542 if (!isascii(CurTok)) in ParsePrototype()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 250 if (!isascii(CurTok)) in GetTokPrecedence() 456 if (!isascii(CurTok) || CurTok == '(' || CurTok == ',') in ParseUnary() 530 if (!isascii(CurTok)) in ParsePrototype() 539 if (!isascii(CurTok)) in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 268 if (!isascii(CurTok)) in GetTokPrecedence() 474 if (!isascii(CurTok) || CurTok == '(' || CurTok == ',') in ParseUnary() 548 if (!isascii(CurTok)) in ParsePrototype() 557 if (!isascii(CurTok)) in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 275 if (!isascii(CurTok)) in GetTokPrecedence() 458 if (!isascii(CurTok) || CurTok == '(' || CurTok == ',') in ParseUnary() 537 if (!isascii(CurTok)) in ParsePrototype() 546 if (!isascii(CurTok)) in ParsePrototype()
|
/external/selinux/libselinux/src/ |
D | label_support.c | 37 if (!isascii(**ptr)) { in read_spec_entry()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | toy.cpp | 295 if (!isascii(CurTok)) in GetTokPrecedence() 529 if (!isascii(CurTok) || CurTok == '(' || CurTok == ',') in ParseUnary() 608 if (!isascii(CurTok)) in ParsePrototype() 617 if (!isascii(CurTok)) in ParsePrototype()
|
/external/icu/icu4c/source/tools/tzcode/ |
D | zdump.c | 36 #ifndef isascii 37 #define isascii(x) 1 macro 297 while (isascii((unsigned char) *cp) && isalpha((unsigned char) *cp)) in abbrok() 307 if (isascii((unsigned char) *cp) && in abbrok()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | toy.cpp | 283 if (!isascii(CurTok)) in GetTokPrecedence() 517 if (!isascii(CurTok) || CurTok == '(' || CurTok == ',') in ParseUnary() 596 if (!isascii(CurTok)) in ParsePrototype() 605 if (!isascii(CurTok)) in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | toy.cpp | 295 if (!isascii(CurTok)) in GetTokPrecedence() 529 if (!isascii(CurTok) || CurTok == '(' || CurTok == ',') in ParseUnary() 608 if (!isascii(CurTok)) in ParsePrototype() 617 if (!isascii(CurTok)) in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | toy.cpp | 295 if (!isascii(CurTok)) in GetTokPrecedence() 529 if (!isascii(CurTok) || CurTok == '(' || CurTok == ',') in ParseUnary() 608 if (!isascii(CurTok)) in ParsePrototype() 617 if (!isascii(CurTok)) in ParsePrototype()
|
/external/dnsmasq/src/ |
D | util.c | 125 else if (isascii(c) && iscntrl(c)) in check_name() 129 else if (!isascii(c)) in check_name()
|