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

1234567891011>>

/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/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/
/freebsd-10.1-release/contrib/libarchive/libarchive/test/
H A Dtest_archive_api_feature.c41 assertEqualMem(buff, archive_version_string(), strlen(buff));
42 if (strlen(buff) < strlen(archive_version_string())) {
43 p = archive_version_string() + strlen(buff);
/freebsd-10.1-release/contrib/groff/src/libs/libgroff/
H A Dstrsave.cpp27 char *p = new char[strlen(s) + 1];
/freebsd-10.1-release/contrib/texinfo/lib/
H A Dxstrdup.c32 return strcpy (xmalloc (strlen (string) + 1), string);
/freebsd-10.1-release/contrib/ntp/tests/ntpd/
H A Drc_cmdlength.c23 length = strlen(command1);
27 length = strlen(command2);
31 length = strlen(command3);
35 length = strlen(command4);
/freebsd-10.1-release/contrib/binutils/libiberty/
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);
/freebsd-10.1-release/contrib/gcclibs/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);
H A Dstrndup.c36 extern size_t strlen (const char*);
44 size_t len = strlen (s);
/freebsd-10.1-release/contrib/tcp_wrappers/
H A Dsetenv.c30 if ((cp = malloc(strlen(name) + strlen(value) + 2)) == 0)
/freebsd-10.1-release/crypto/heimdal/appl/login/
H A Dtty.c47 if (strncmp (res, _PATH_DEV, strlen(_PATH_DEV)) == 0)
48 res += strlen(_PATH_DEV);
/freebsd-10.1-release/contrib/texinfo/makeinfo/
H A Dfloat.c50 num_len = strlen (new->number);
59 unsigned len = strlen (new->number) + 21; /* that's 64 bits */
74 if (strlen (new->section) == 0)
88 int l = strlen (chapter);
93 if (strlen (temp->id) > 0 && STREQ (text_expansion (temp->type), type))
146 char *s = xmalloc (strlen (temp->type) + strlen (temp->number) + 2);
192 int command_len = sizeof ("@ ") + strlen (command) + strlen (float_type);
220 if (strlen (tem
[all...]
/freebsd-10.1-release/contrib/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));
/freebsd-10.1-release/contrib/libarchive/tar/test/
H A Dtest_print_longpath.c43 sizeof(buff) - strlen(buff) -1);
44 strncat(buff, "/", sizeof(buff) - strlen(buff) -1);
46 strncat(buff, "\n", sizeof(buff) - strlen(buff) -1);
/freebsd-10.1-release/contrib/opie/libopie/
H A Dpasscheck.c41 int len = strlen(secret);
/freebsd-10.1-release/contrib/sendmail/libsm/
H A Dstrrevcmp.c38 i1 = strlen(s1) - 1;
39 i2 = strlen(s2) - 1;
80 i1 = strlen(s1) - 1;
81 i2 = strlen(s2) - 1;
/freebsd-10.1-release/crypto/heimdal/lib/roken/
H A Dstrdup.c42 char *t = malloc(strlen(old)+1);
H A Dstrlcat.c48 len = strlen(dst);
55 return len + strlen(src);
H A Dverify.c53 if(strlen(pw->pw_passwd) == 0 && strlen(password) == 0)
/freebsd-10.1-release/contrib/ntp/sntp/libopts/compat/
H A Dstrdup.c16 cp = (char *) AGALOC((unsigned) (strlen(s)+1), "strdup");
/freebsd-10.1-release/lib/libc/rpc/
H A Drpcdname.c57 if ((int) strlen(temp) > 0) {
58 default_domain = (char *)malloc((strlen(temp)+(unsigned)1));
/freebsd-10.1-release/lib/libkse/thread/
H A Dthr_info.c106 __sys_write(fd, s, strlen(s));
120 __sys_write(fd, s, strlen(s));
129 __sys_write(fd, s, strlen(s));
156 __sys_write(fd, s, strlen(s));
163 __sys_write(fd, s, strlen(s));
169 __sys_write(fd, s, strlen(s));
176 __sys_write(fd, s, strlen(s));
180 __sys_write(fd, s, strlen(s));
183 __sys_write(fd, s, strlen(s));
186 __sys_write(fd, s, strlen(
[all...]

Completed in 171 milliseconds

1234567891011>>