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

1 2 3 4 5

  /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/r16/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)
  /external/syslinux/com32/include/
string.h 26 __extern size_t strcspn(const char *, const char *);
  /external/toybox/toys/lsb/
seq.c 53 if (dp++) TT.precision = maxof(TT.precision, strcspn(dp, "eE"));
  /external/mesa3d/src/compiler/glsl/
s_expression.cpp 51 n = strcspn(src, "\n");
65 size_t n = strcspn(src, "( \v\t\r\n);");
  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 59 #define strcspn(_ss,_rr) VG_(strcspn)((_ss),(_rr)) macro
  /toolchain/binutils/binutils-2.27/gold/testsuite/
plugin_test.c 613 p += strcspn(p, " ");
617 p += strcspn(p, " ");
622 p += strcspn(p, " ");
627 p += strcspn(p, " ");
632 p += strcspn(p, " ");
637 p += strcspn(p, " ");
643 p += strcspn(p, "]");
649 p += strcspn(p, " ");
  /bionic/tests/headers/posix/
string_h.c 52 FUNCTION(strcspn, size_t (*f)(const char*, const char*));
  /external/syslinux/gpxe/src/include/
string.h 35 size_t __pure strcspn(const char *s, const char *reject) __nonnull;
  /external/toybox/toys/pending/
groupadd.c 97 if (s[strcspn(s, ":/\n")] || strlen(s) > LOGIN_NAME_MAX)
  /device/linaro/bootloader/edk2/StdLib/Include/
string.h 54 size_t strcspn (const char *s1, const char *s2);
329 /** The strcspn function computes the length of the maximum initial segment of
336 @return The strcspn function returns the length of the segment.
338 size_t strcspn(const char *S1, const char *S2);
  /external/dtc/tests/
supernode_atdepth_offset.c 64 p = p+1 + strcspn(p+1, "/");
  /external/kmod/testsuite/
delete_module.c 66 modnamelen = strcspn(p, ":");
  /external/libmtp/examples/
connect.c 44 sepp = argument + strcspn(argument, ",");
  /external/syslinux/gpxe/src/core/
stringextra.c 132 * strcspn - Calculate the length of the initial substring of @s which only
137 size_t strcspn(const char *s, const char *reject) function
  /hardware/google/av/codec2/vndk/util/
C2ParamUtils.cpp 183 size_t endPos = strcspn(value + pos, " ,=") + pos;
188 endPos += strcspn(value + endPos, ",");

Completed in 456 milliseconds

1 2 3 4 5