Home
last modified time | relevance | path

Searched refs:isascii (Results 1 – 25 of 83) sorted by relevance

1234

/external/llvm/test/Transforms/InstCombine/
Disascii-1.ll1 ; 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)
Dtoascii-1.ll9 ; Check isascii(c) -> c & 0x7f.
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/
DIsDigit.ll7 declare i32 @isascii(i32)
18 %tmp = call i32 @isascii( i32 %rslt ) ; <i32> [#uses=1]
/external/freetype/src/tools/ftrandom/
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()
/external/libcxx/src/
Dlocale.cpp794 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/
D2009-01-15-dbg_declare.ll8 define i32 @isascii(i32 %_c) nounwind {
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
Dtoy.cpp232 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/
Dutil-print.c695 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/
Di386_lex.l121 error (0, 0, (isascii (ch) in invalid_char()
/external/elfutils/libasm/
Dasm_addstrz.c88 else if (! isascii (*str)) in asm_addstrz()
/external/syslinux/com32/include/
Dctype.h49 __ctype_inline int isascii(int __c) in isascii() function
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp268 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/
Dtoy-jit.cpp253 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/
Dtoy.cpp250 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/
Dtoy.cpp275 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/
Dascii.py56 def isascii(c): return 0 <= _ctoi(c) <= 127 # ? function
/external/python/cpython2/Lib/curses/
Dascii.py56 def isascii(c): return _ctoi(c) <= 127 # ? function
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
Dtoy.cpp283 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/
Dtoy.cpp295 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/
Dtoy.cpp295 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/
Dzdump.c37 #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/
Dtoy.cpp295 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/
Dlabel_support.c37 if (!isascii(**ptr)) { in read_spec_entry()
/external/dnsmasq/src/
Dutil.c125 else if (isascii(c) && iscntrl(c)) in check_name()
129 else if (!isascii(c)) in check_name()
/external/llvm/test/CodeGen/X86/
Dragreedy-bug.ll53 %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

1234