HomeSort by relevance Sort by last modified time
    Searched refs:strspn (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /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);
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
cstring 62 using ::strspn;
  /external/ltp/testcases/kernel/hotplug/memory_hotplug/
commands.c 168 args = nextarg + strspn(nextarg, whitespace);
182 args = nextarg + strspn(nextarg, whitespace);
575 args = nextarg + strspn(nextarg, whitespace);
657 args += strspn(args, whitespace);
678 args += strspn(args, whitespace);
683 args = nextarg + strspn(nextarg, whitespace);
691 args = nextarg + strspn(nextarg, whitespace);
716 args += strspn(args, whitespace);
721 args = nextarg + strspn(nextarg, whitespace);
749 args += strspn(args, whitespace)
    [all...]
  /external/curl/lib/
curl_path.c 128 cp += strspn(cp, WHITESPACE);
166 *cpp = cp + i + strspn(cp + i, WHITESPACE);
174 *cpp = end + strspn(end, WHITESPACE);
  /external/syslinux/com32/lib/
strspn.c 2 * strspn, strcspn
45 size_t strspn(const char *s, const char *accept) function
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pcrt32.h 34 #define _fstrspn strspn
  /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/syslinux/gpxe/src/core/
stringextra.c 105 * strspn - Calculate the length of the initial substring of @s which only
110 size_t strspn(const char *s, const char *accept) function
191 sbegin += strspn(sbegin,ct);
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue6506.go 32 x = C.strspn(nil, nil)
  /prebuilts/go/linux-x86/misc/cgo/test/
issue6506.go 32 x = C.strspn(nil, nil)
  /external/syslinux/com32/include/
string.h 42 __extern size_t strspn(const char *, const char *);
  /toolchain/binutils/binutils-2.27/gold/testsuite/
plugin_test.c 610 p += strspn(p, " ");
614 p += strspn(p, " ");
618 p += strspn(p, " ");
623 p += strspn(p, " ");
628 p += strspn(p, " ");
633 p += strspn(p, " ");
638 p += strspn(p, " ");
644 p += strspn(p, "] ");
650 p += strspn(p, " ");
  /device/google/wahoo/power-libperfmgr/
power-helper.c 108 char *key = line + strspn(line, " \t");
151 size_t begin = strspn(line, " \t");
  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 65 #define strspn(_ss,_aa) VG_(strspn)((_ss),(_aa)) macro
  /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/syslinux/gpxe/src/include/
string.h 34 size_t __pure strspn(const char *s, const char *accept) __nonnull;
  /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/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), "");

Completed in 785 milliseconds

1 2 3 4