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

1 2 3 4

  /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);
  /external/mesa3d/src/util/
debug.c 43 for (; n = strcspn(s, ", "), *s; s += MAX2(1, n)) {
  /external/toybox/toys/lsb/
seq.c 52 if (dp++) TT.precision = maxof(TT.precision, strcspn(dp, "eE"));
  /external/u-boot/include/linux/
string.h 82 * strcspn() - find span of string without given characters
91 size_t strcspn(const char *s, const char *reject);
  /external/mesa3d/src/compiler/glsl/
s_expression.cpp 51 n = strcspn(src, "\n");
65 size_t n = strcspn(src, "( \v\t\r\n);");
  /bionic/tests/headers/posix/
string_h.c 52 FUNCTION(strcspn, size_t (*f)(const char*, const char*));
  /external/toybox/toys/pending/
groupadd.c 97 if (s[strcspn(s, ":/\n")] || strlen(s) > LOGIN_NAME_MAX)
useradd.c 54 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/libcxx/test/std/strings/c.strings/
cstring.pass.cpp 42 ASSERT_SAME_TYPE(std::size_t, decltype(std::strcspn(cpc, cpc)));
  /external/libmtp/examples/
connect.c 44 sepp = argument + strcspn(argument, ",");
  /external/openssh/
sshlogin.c 109 time_string[strcspn(time_string, "\n")] = '\0';
readpass.c 106 buf[strcspn(buf, "\r\n")] = '\0';
  /frameworks/av/media/codec2/vndk/util/
C2ParamUtils.cpp 183 size_t endPos = strcspn(value + pos, " ,=") + pos;
188 endPos += strcspn(value + endPos, ",");
  /build/kati/
fileutil.cc 167 if (strcspn(pat, "?*[\\") != strlen(pat)) {
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
Searching.c 81 /** The strcspn function computes the length of the maximum initial segment of
85 @return The strcspn function returns the length of the segment.
88 strcspn(const char *s1, const char *s2) function
  /external/libcxx/test/std/depr/depr.c.headers/
string_h.pass.cpp 39 static_assert((std::is_same<decltype(strcspn(cpc, cpc)), size_t>::value), "");
  /external/skia/src/gpu/gl/
GrGLExtensions.cpp 62 size_t length = strcspn(in, " ");
  /external/skqp/src/gpu/gl/
GrGLExtensions.cpp 62 size_t length = strcspn(in, " ");

Completed in 3716 milliseconds

1 2 3 4