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

1 2 3 4 5 6 7 8 910

  /bionic/libc/upstream-openbsd/lib/libc/string/
strcspn.c 1 /* $OpenBSD: strcspn.c,v 1.6 2015/08/31 02:53:57 guenther Exp $ */
40 strcspn(const char *s1, const char *s2) function
59 DEF_STRONG(strcspn); variable
  /external/compiler-rt/test/sanitizer_common/TestCases/
strcspn.c 10 r = strcspn(s1, s2);
  /external/compiler-rt/test/asan/TestCases/
strcspn-1.c 1 // Test string s1 overflow in strcspn function
16 r = strcspn(s1, s2);
strcspn-2.c 1 // Test stopset overflow in strcspn function
16 r = strcspn(s1, s2);
strcspn_strict.c 1 // Test strict_string_checks option in strcspn function
19 size_t r = strcspn(s1, s2);
  /prebuilts/ndk/r10/sources/cxx-stl/gabi++/include/
cstring 54 using ::strcspn;
  /prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/gabi++/include/
cstring 54 using ::strcspn;
  /prebuilts/ndk/r10/sources/cxx-stl/system/include/
cstring 54 using ::strcspn;
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/include/
cstring 54 using ::strcspn;
  /prebuilts/ndk/r11/sources/cxx-stl/system/include/
cstring 54 using ::strcspn;
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/include/
cstring 54 using ::strcspn;
  /prebuilts/ndk/r13/sources/cxx-stl/system/include/
cstring 54 using ::strcspn;
  /external/mesa3d/src/util/
debug.c 43 for (; n = strcspn(s, ", "), *s; s += MAX2(1, n)) {
  /external/syslinux/com32/lib/
strspn.c 2 * strspn, strcspn
50 size_t strcspn(const char *s, const char *reject) function
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pcrt32.h 20 #define _fstrcspn strcspn
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue6506.go 31 x = C.strcspn(nil, nil)
  /prebuilts/go/linux-x86/misc/cgo/test/
issue6506.go 31 x = C.strcspn(nil, nil)
  /toolchain/binutils/binutils-2.25/gold/testsuite/
plugin_test.c 604 p += strcspn(p, " ");
608 p += strcspn(p, " ");
613 p += strcspn(p, " ");
618 p += strcspn(p, " ");
623 p += strcspn(p, " ");
628 p += strcspn(p, " ");
634 p += strcspn(p, "]");
640 p += strcspn(p, " ");
  /development/ndk/platforms/android-9/include/
string.h 78 extern size_t strcspn(const char *, const char *);
  /external/syslinux/com32/include/
string.h 26 __extern size_t strcspn(const char *, const char *);
  /prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/include/
string.h 78 extern size_t strcspn(const char *, const char *);
  /prebuilts/ndk/r10/platforms/android-12/arch-mips/usr/include/
string.h 78 extern size_t strcspn(const char *, const char *);
  /prebuilts/ndk/r10/platforms/android-12/arch-x86/usr/include/
string.h 78 extern size_t strcspn(const char *, const char *);
  /prebuilts/ndk/r10/platforms/android-13/arch-arm/usr/include/
string.h 78 extern size_t strcspn(const char *, const char *);
  /prebuilts/ndk/r10/platforms/android-13/arch-mips/usr/include/
string.h 78 extern size_t strcspn(const char *, const char *);

Completed in 3448 milliseconds

1 2 3 4 5 6 7 8 910