/bionic/libc/upstream-openbsd/lib/libc/string/ |
strspn.c | 1 /* $OpenBSD: strspn.c,v 1.6 2015/08/31 02:53:57 guenther Exp $ */ 37 strspn(const char *s1, const char *s2) function 52 DEF_STRONG(strspn); variable
|
/external/compiler-rt/test/sanitizer_common/TestCases/ |
strspn.c | 10 r = strspn(s1, s2);
|
/external/compiler-rt/test/asan/TestCases/ |
strspn-1.c | 1 // Test string s1 overflow in strspn function 16 r = strspn(s1, s2);
|
strspn-2.c | 1 // Test stopset overflow in strspn function 16 r = strspn(s1, s2);
|
strspn_strict.c | 1 // Test strict_str`ing_checks option in strspn function 18 size_t r = strspn(s1, s2);
|
/external/ltp/testcases/kernel/hotplug/memory_hotplug/ |
commands.c | 165 args = nextarg + strspn(nextarg, whitespace); 179 args = nextarg + strspn(nextarg, whitespace); 572 args = nextarg + strspn(nextarg, whitespace); 654 args += strspn(args, whitespace); 675 args += strspn(args, whitespace); 680 args = nextarg + strspn(nextarg, whitespace); 688 args = nextarg + strspn(nextarg, whitespace); 713 args += strspn(args, whitespace); 718 args = nextarg + strspn(nextarg, whitespace); 746 args += strspn(args, whitespace) [all...] |
/external/curl/lib/ |
curl_path.c | 130 cp += strspn(cp, WHITESPACE); 168 *cpp = cp + i + strspn(cp + i, WHITESPACE); 176 *cpp = end + strspn(end, WHITESPACE);
|
/external/clang/test/CodeGen/ |
libcalls-fno-builtin.c | 6 // RUN: -fno-builtin-strpbrk -fno-builtin-strspn -fno-builtin-strtod -fno-builtin-strtof \ 29 size_t strspn(const char *s1, const char *s2); 102 size_t t17(char *x) { return strspn(x, ""); } 104 // CHECK: strspn
|
/external/u-boot/include/linux/ |
string.h | 15 extern __kernel_size_t strspn(const char *,const char *);
|
/external/u-boot/tools/ |
mingw_support.c | 93 s += strspn(s, delim);
|
/bionic/tests/headers/posix/ |
string_h.c | 66 FUNCTION(strspn, size_t (*f)(const char*, const char*));
|
/external/llvm/tools/llvm-symbolizer/ |
llvm-symbolizer.cpp | 118 pos += strspn(pos, kDelimiters); 136 pos += strspn(pos, kDelimiters);
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-symbolizer/ |
llvm-symbolizer.cpp | 117 pos += strspn(pos, kDelimiters); 135 pos += strspn(pos, kDelimiters);
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
string.h | 57 size_t strspn (const char *s1 , const char *s2);
363 /** The strspn function computes the length of the maximum initial segment of
370 @return The strspn function returns the length of the segment.
372 size_t strspn(const char *S1 , const char *S2);
|
/external/libcxx/test/std/strings/c.strings/ |
cstring.pass.cpp | 45 ASSERT_SAME_TYPE(std::size_t, decltype(std::strspn(cpc, cpc)));
|
/external/selinux/libsemanage/src/ |
utilities.c | 82 off = strspn(str, seps); 84 off += strspn(str + off, seps);
|
/device/linaro/bootloader/edk2/StdLib/LibC/String/ |
Searching.c | 153 /** The strspn function computes the length of the maximum initial segment of
157 @return The strspn function returns the length of the segment.
160 strspn(const char *s1 , const char *s2)
function
|
/external/libcxx/test/std/depr/depr.c.headers/ |
string_h.pass.cpp | 42 static_assert((std::is_same<decltype(strspn(cpc, cpc)), size_t>::value), "");
|
/external/mesa3d/src/compiler/glsl/ |
s_expression.cpp | 46 size_t n = strspn(src, " \v\t\r\n");
|
/external/dtc/ |
dtc-lexer.l | 170 if (*e && e[strspn(e, "UL")]) {
|
checks.c | 246 int n = strspn(node->name, c->data); 257 int n = strspn(node->name, c->data); 304 int n = strspn(prop->name, c->data); 321 int n = strspn(name, c->data); 336 n = strspn(name, c->data);
|
/external/u-boot/lib/ |
string.c | 330 * strspn - Calculate the length of the initial substring of @s which only 335 size_t strspn(const char *s, const char *accept) function 391 sbegin += strspn(sbegin,ct);
|
/external/u-boot/scripts/dtc/ |
dtc-lexer.l | 170 if (*e && e[strspn(e, "UL")]) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
lbaselib.c | 65 s += strspn(s, SPACECHARS); /* skip initial spaces */
77 s += strspn(s, SPACECHARS); /* skip trailing spaces */
|
/external/lua/src/ |
lbaselib.c | 51 s += strspn(s, SPACECHARS); /* skip initial spaces */ 63 s += strspn(s, SPACECHARS); /* skip trailing spaces */
|