/external/llvm/test/Transforms/InstCombine/ |
D | strcspn-1.ll | 1 ; Test that the strcspn library call simplifier works correctly. 11 declare i64 @strcspn(i8*, i8*) 13 ; Check strcspn(s, "") -> strlen(s). 19 %ret = call i64 @strcspn(i8* %str, i8* %pat) 25 ; Check strcspn("", s) -> 0. 31 %ret = call i64 @strcspn(i8* %str, i8* %pat) 36 ; Check strcspn(s1, s2), where s1 and s2 are constants. 43 %ret = call i64 @strcspn(i8* %str, i8* %pat) 53 %ret = call i64 @strcspn(i8* %str, i8* %pat) 54 ; CHECK-NEXT: %ret = call i64 @strcspn(i8* %str, i8* %pat)
|
D | strcspn-2.ll | 1 ; Test that the strcspn library call simplifier works correctly. 9 declare double @strcspn(i8*, i8*) 11 ; Check that strcspn functions with the wrong prototype aren't simplified. 17 %ret = call double @strcspn(i8* %str, i8* %pat) 18 ; CHECK-NEXT: call double @strcspn
|
D | disable-simplify-libcalls.ll | 39 declare i64 @strcspn(i8*, i8*) 245 %ret = call i64 @strcspn(i8* %x, i8* %y) 247 ; CHECK: call i64 @strcspn
|
/external/avahi/avahi-daemon/ |
D | static-hosts.c | 198 s[strcspn(s, "#\r\n")] = 0; in static_hosts_load() 205 len = strcspn(s, " \t"); in static_hosts_load() 213 len = strcspn(s, " \t"); in static_hosts_load()
|
D | ini-file-parser.c | 62 s[strcspn(s, "\r\n")] = 0; in avahi_ini_file_load() 161 size_t n, l = strcspn(t, ","); in avahi_split_csv()
|
/external/avahi/avahi-core/ |
D | domain-util.c | 41 s[strcspn(s, ".")] = 0; in strip_bad_chars() 74 p[strcspn(p, "\"")] = 0; in load_lsb_distrib_id()
|
/external/llvm/test/Transforms/LoopUnswitch/ |
D | 2007-07-12-ExitDomInfo.ll | 20 …%tmp31 = call i32 @strcspn( i8* null, i8* getelementptr ([3 x i8], [3 x i8]* @str3, i64 0, i64 0) … 45 declare i32 @strcspn(i8*, i8*)
|
/external/valgrind/coregrind/m_demangle/ |
D | vg_libciface.h | 59 #define strcspn(_ss,_rr) VG_(strcspn)((_ss),(_rr)) macro
|
/external/avahi/avahi-compat-howl/include/salt/ |
D | platform.h | 175 # define sw_strcspn(ARG1, ARG2) strcspn(ARG1, ARG2) 212 # define sw_strcspn(ARG1, ARG2) strcspn(ARG1, ARG2) 230 # define sw_strcspn(ARG1, ARG2) strcspn(ARG1, ARG2) 256 # define sw_strcspn(ARG1, ARG2) strcspn(ARG1, ARG2)
|
/external/compiler-rt/test/sanitizer_common/TestCases/ |
D | strcspn.c | 10 r = strcspn(s1, s2); in main()
|
/external/mesa3d/src/glsl/ |
D | s_expression.cpp | 50 n = strcspn(src, "\n"); in skip_whitespace() 64 size_t n = strcspn(src, "( \v\t\r\n);"); in read_atom()
|
/external/compiler-rt/test/asan/TestCases/ |
D | strcspn-1.c | 16 r = strcspn(s1, s2); in main()
|
D | strcspn-2.c | 16 r = strcspn(s1, s2); in main()
|
D | strcspn_strict.c | 19 size_t r = strcspn(s1, s2); in main()
|
/external/llvm/tools/llvm-symbolizer/ |
D | llvm-symbolizer.cpp | 126 int name_length = strcspn(pos, kDelimiters); in parseCommand() 135 int offset_length = strcspn(pos, kDelimiters); in parseCommand()
|
/external/libcxx/include/ |
D | cstring | 43 size_t strcspn(const char* s1, const char* s2); 86 using ::strcspn;
|
/external/ltrace/ |
D | options.c | 291 size_t s = strcspn(expr, &"-+@"[operators ? 0 : 2]); in parse_filter() 310 s = strcspn(next, &"-+"[operators ? 0 : 2]); in parse_filter() 464 size_t len = strcspn(tok, ":"); in parse_colon_separated_list()
|
/external/toybox/toys/pending/ |
D | groupadd.c | 97 if (s[strcspn(s, ":/\n")] || strlen(s) > LOGIN_NAME_MAX) in groupadd_main()
|
D | useradd.c | 54 if (s[strcspn(s, ":/\n")] || strlen(s) > LOGIN_NAME_MAX)
|
/external/toybox/scripts/ |
D | config2help.c | 341 int ff = strcspn(from, " ]"), tt = strcspn(to, " ]"); in main()
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | string_h.pass.cpp | 39 static_assert((std::is_same<decltype(strcspn(cpc, cpc)), size_t>::value), ""); in main()
|
/external/libmtp/examples/ |
D | connect.c | 60 sepp = argument + strcspn(argument, ","); in split_arg()
|
/external/libcxx/test/std/strings/c.strings/ |
D | cstring.pass.cpp | 41 static_assert((std::is_same<decltype(std::strcspn(cpc, cpc)), std::size_t>::value), ""); in main()
|
/external/skia/src/gpu/gl/ |
D | GrGLExtensions.cpp | 58 size_t length = strcspn(in, " "); in eat_space_sep_strings()
|
/external/libdaemon/libdaemon/ |
D | dpid.c | 134 txt[strcspn(txt, "\r\n")] = 0; in daemon_pid_file_is_running()
|