/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/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/freetype/src/tools/ftrandom/ |
D | ftrandom.c | 96 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()
|
/external/libcxx/src/ |
D | locale.cpp | 794 return isascii(c) ? (ctype<char>::classic_table()[c] & m) != 0 : false; in do_is() 801 *vec = static_cast<mask>(isascii(*low) ? in do_is() 810 if (isascii(*low) && (ctype<char>::classic_table()[*low] & m)) in do_scan_is() 819 if (!(isascii(*low) && (ctype<char>::classic_table()[*low] & m))) in do_scan_not() 828 return isascii(c) ? _DefaultRuneLocale.__mapupper[c] : c; in do_toupper() 831 return isascii(c) ? ctype<char>::__classic_upper_table()[c] : c; in do_toupper() 833 return (isascii(c) && iswlower_l(c, _LIBCPP_GET_C_LOCALE)) ? c-L'a'+L'A' : c; in do_toupper() 842 *low = isascii(*low) ? _DefaultRuneLocale.__mapupper[*low] : *low; in do_toupper() 845 *low = isascii(*low) ? ctype<char>::__classic_upper_table()[*low] in do_toupper() 848 *low = (isascii(*low) && islower_l(*low, _LIBCPP_GET_C_LOCALE)) ? (*low-L'a'+L'A') : *low; in do_toupper() [all …]
|
/external/swiftshader/third_party/LLVM/test/DebugInfo/ |
D | 2009-01-15-dbg_declare.ll | 8 define i32 @isascii(i32 %_c) nounwind {
|
/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/tcpdump/ |
D | util-print.c | 695 if (!isascii(*(pptr + idx))) { in fetch_token() 733 if (!isascii(*(pptr + idx)) || !isprint(*(pptr + idx))) { in fetch_token() 794 } else if (!isascii(*(pptr+idx)) || in print_txt_line()
|
/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/syslinux/com32/include/ |
D | ctype.h | 49 __ctype_inline int isascii(int __c) in isascii() function
|
/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/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/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/python/cpython3/Lib/curses/ |
D | ascii.py | 56 def isascii(c): return 0 <= _ctoi(c) <= 127 # ? function
|
/external/python/cpython2/Lib/curses/ |
D | ascii.py | 56 def isascii(c): return _ctoi(c) <= 127 # ? function
|
/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/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 | 37 #ifndef isascii 38 #define isascii(x) 1 macro 298 while (isascii((unsigned char) *cp) && isalpha((unsigned char) *cp)) in abbrok() 308 if (isascii((unsigned char) *cp) && in abbrok()
|
/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/selinux/libselinux/src/ |
D | label_support.c | 37 if (!isascii(**ptr)) { in read_spec_entry()
|
/external/dnsmasq/src/ |
D | util.c | 125 else if (isascii(c) && iscntrl(c)) in check_name() 129 else if (!isascii(c)) in check_name()
|
/external/llvm/test/CodeGen/X86/ |
D | ragreedy-bug.ll | 53 %isascii.i.i224 = icmp sgt i8 %6, -1 54 br i1 %isascii.i.i224, label %cond.true.i.i, label %cond.false.i.i, !prof !181 75 %isascii.i.i213225 = icmp sgt i8 %9, -1 76 br i1 %isascii.i.i213225, label %cond.true.i.i217, label %cond.false.i.i219, !prof !181
|