Searched refs:strlen (Results 1 - 25 of 5632) sorted by relevance

1234567891011>>

/macosx-10.10/dtrace-147/test/tst/common/strlen/
H A Dtst.strlen1.d31 * Test the strlen() subroutine.
33 * SECTION: Actions and Subroutines/strlen()
38 /strlen("I like DTrace") == 13/
/macosx-10.10/Libc-1044.1.2/string/
H A Dstrcat.c28 const size_t dstlen = strlen(dst);
29 const size_t srclen = strlen(src);
H A Dstrcpy.c28 const size_t length = strlen(src);
/macosx-10.10/ntp-92/include/
H A Dntp_sprintf.h6 # define SPRINTF(x) strlen(sprintf/**/x)
7 # define SNPRINTF(x) strlen(snprintf/**/x)
8 # define VSNPRINTF(x) strlen(vsnprintf/**/x)
/macosx-10.10/ruby-106/ruby/missing/
H A Dstrchr.c5 size_t strlen(const char*);
10 if (c == 0) return (char *)s + strlen(s);
24 if (c == 0) return (char *)s + strlen(s);
H A Dstrstr.c5 size_t strlen(const char*);
14 hend = haystack + strlen(haystack) - strlen(needle) + 1;
/macosx-10.10/bash-94.1.2/bash-3.2/lib/intl/
H A Dos2compat.c59 size_t sl = strlen (root);
60 _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1);
62 memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1);
73 size_t sl = strlen (root);
74 _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1);
76 memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1);
87 size_t sl = strlen (root);
88 _nlos2_localedir = (char *) malloc (sl + strlen (LOCALEDIR) + 1);
90 memcpy (_nlos2_localedir + sl, LOCALEDIR, strlen (LOCALEDIR) + 1);
96 if (strlen (_nlos2_localedi
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Dsavestring.c36 return ((char *)strcpy ((char *)xmalloc (1 + strlen (s)), (s)));
/macosx-10.10/groff-38/groff/src/libs/libgroff/
H A Dstrsave.cpp27 char *p = new char[strlen(s) + 1];
/macosx-10.10/libiconv-42/libiconv/srclib/
H A Dxstrdup.c32 return strcpy (xmalloc (strlen (string) + 1), string);
/macosx-10.10/xnu-2782.1.97/libsyscall/wrappers/string/
H A Dstrcpy.c29 const size_t length = strlen(src);
/macosx-10.10/bind9-45.101/bind9/bin/tests/
H A Dhash_test.c69 memcpy(buffer, s, strlen(s));
70 isc_sha1_update(&sha1, buffer, strlen(s));
76 memcpy(buffer, s, strlen(s));
77 isc_sha1_update(&sha1, buffer, strlen(s));
83 memcpy(buffer, s, strlen(s));
84 isc_sha224_update(&sha224, buffer, strlen(s));
90 memcpy(buffer, s, strlen(s));
91 isc_sha224_update(&sha224, buffer, strlen(s));
97 memcpy(buffer, s, strlen(s));
98 isc_md5_update(&md5, buffer, strlen(
[all...]
/macosx-10.10/zsh-61/zsh/Src/
H A Dstring.c39 t = (char *) zhalloc(strlen((char *)s) + 1);
52 t = (char *)zalloc(strlen((char *)s) + 1);
83 size_t l1 = strlen(s1);
84 size_t l2 = strlen(s2);
86 ptr = (char *)zalloc(l1 + l2 + strlen(s3) + 1);
98 size_t l1 = strlen(s1);
99 size_t l2 = strlen(s2);
101 ptr = (char *)zhalloc(l1 + l2 + strlen(s3) + 1);
116 size_t l1 = strlen(s1);
118 ptr = (char *)zhalloc(l1 + strlen(s
[all...]
/macosx-10.10/xnu-2782.1.97/tools/tests/libMicro/
H A Dstrlen.c57 " [-n causes unaligned strlen]\n"
58 "notes: measures strlen()\n",
90 int l = strlen(demo);
115 ts->ts_fakegcc += strlen(src);
116 ts->ts_fakegcc += strlen(src);
117 ts->ts_fakegcc += strlen(src);
118 ts->ts_fakegcc += strlen(src);
119 ts->ts_fakegcc += strlen(src);
120 ts->ts_fakegcc += strlen(src);
121 ts->ts_fakegcc += strlen(sr
[all...]
/macosx-10.10/Heimdal-398.1.2/appl/login/
H A Dtty.c47 if (strncmp (res, _PATH_DEV, strlen(_PATH_DEV)) == 0)
48 res += strlen(_PATH_DEV);
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dstpcpy.c26 @var{dst} + strlen(@var{src}).
35 extern size_t strlen (const char *);
41 const size_t len = strlen (src);
H A Dstpncpy.c26 and padding with zeros if necessary. If @var{len} < strlen(@var{src})
28 strlen(@var{src}).
37 extern size_t strlen (const char *);
43 size_t n = strlen (src);
H A Dstrdup.c15 extern size_t strlen (const char*);
22 size_t len = strlen (s) + 1;
H A Dstrstr.c27 extern size_t strlen (const char *);
33 const size_t len = strlen (s2);
/macosx-10.10/ntp-92/libntp/
H A Dauthusekey.c29 len = strlen((const char *)cp);
33 MD5auth_setkey(keyno, keytype, str, (int)strlen((const char *)str));
H A Dstrstr.c42 alen = strlen(a);
43 blen = strlen(b);
/macosx-10.10/apr-32/apr-util/apr-util/test/
H A Dteststrmatch.c56 match = apr_strmatch(pattern, input1, strlen(input1));
59 match = apr_strmatch(pattern, input2, strlen(input2));
62 match = apr_strmatch(pattern_onechar, input1, strlen(input1));
65 match = apr_strmatch(pattern_zero, input1, strlen(input1));
68 match = apr_strmatch(pattern_nocase, input1, strlen(input1));
71 match = apr_strmatch(pattern, input3, strlen(input3));
74 match = apr_strmatch(pattern, input4, strlen(input4));
77 match = apr_strmatch(pattern, input5, strlen(input5));
80 match = apr_strmatch(pattern, input6, strlen(input6));
/macosx-10.10/libauto-186/tests/
H A Dlookfor.c28 if (strlen(name) > 500) {
56 if (strlen(errormsg) == 0)
57 return strlen(buffer) == 0;
/macosx-10.10/uucp-11/uucp/unix/
H A Dapp3.c18 cdir1 = strlen (zdir1);
19 cdir2 = strlen (zdir2);
20 cfile = strlen (zfile);
/macosx-10.10/BerkeleyDB-21/db/clib/
H A Dstrdup.c54 len = strlen(str) + 1;

Completed in 162 milliseconds

1234567891011>>