HomeSort by: relevance | last modified time | path
    Searched refs:find (Results 1 - 25 of 2530) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/string/
strnstr.c 49 * Find the first occurrence of find in s, where the search is limited to the
53 strnstr(const char *s, const char *find, size_t slen)
58 if ((c = *find++) != '\0') {
59 len = strlen(find);
67 } while (strncmp(s, find, len) != 0);
strcasestr.c 46 * Find the first occurrence of find in s, ignore case.
49 strcasestr(const char *s, const char *find)
55 _DIAGASSERT(find != NULL);
57 if ((c = *find++) != 0) {
59 len = strlen(find);
65 } while (strncasecmp(s, find, len) != 0);
  /src/external/bsd/mdocml/dist/
compat_strcasestr.c 44 * Find the first occurrence of find in s, ignore case.
47 strcasestr(const char *s, const char *find)
52 if ((c = *find++) != 0) {
54 len = strlen(find);
60 } while (strncasecmp(s, find, len) != 0);
  /src/external/ibm-public/postfix/dist/mantools/
check-double-cc 8 find src -name '*.[hc]' | xargs cat | comment | mantools/deroff | mantools/find-double | grep -F -vxf proto/stop.double-cc
check-double-history 7 sed '1,/^2022/d' HISTORY | mantools/find-double | grep -F -vxf proto/stop.double-history
  /src/sbin/gpt/
remove.c 79 struct gpt_find find; local
81 memset(&find, 0, sizeof(find));
82 find.msg = "removed";
86 if (gpt_add_find(gpt, &find, ch) == -1)
92 return gpt_change_ent(gpt, &find, change, NULL);
  /src/external/bsd/libpcap/
libpcap2netbsd 63 find $r -type d -name "CVS" -print | xargs rm -r
69 find $r -type f -print | xargs chmod u+rw,go+r
70 find $r -type d -print | xargs chmod u+rwx,go+rx
  /src/external/bsd/openldap/
openldap2netbsd 53 find "$d" -name '*.[chly]' -print | while read c; do
72 find . -type f -print | xargs chmod u+rw,go+r
73 find . -type d -print | xargs chmod u+rwx,go+rx
  /src/external/bsd/openpam/
openpam2netbsd 60 find $r -type d -name "CVS" -print | xargs rm -r
66 find $r -type f -print | xargs chmod u+rw,go+r
67 find $r -type d -print | xargs chmod u+rwx,go+rx
  /src/external/bsd/tcpdump/
tcpdump2netbsd 73 find . -type d -name "CVS" -print | xargs rm -r
81 find . -type f -print | xargs chmod u+rw,go+r
82 find . -type d -print | xargs chmod u+rwx,go+rx
  /src/external/gpl3/gcc/dist/contrib/header-tools/
replace-header 12 find = ""
18 elif x[0:2] == "-f" and find == "":
19 find = x[2:]
28 if find == "":
38 print "Replacing '"+find+"' with"+string
42 src = find_replace_include (find, replace, src)
  /src/external/gpl3/gcc.old/dist/contrib/header-tools/
replace-header 12 find = ""
18 elif x[0:2] == "-f" and find == "":
19 find = x[2:]
28 if find == "":
38 print "Replacing '"+find+"' with"+string
42 src = find_replace_include (find, replace, src)
  /src/common/lib/libc/string/
strstr.c 53 * Find the first occurrence of find in s.
56 strstr(const char *s, const char *find)
61 if ((c = *find++) != 0) {
62 len = strlen(find);
68 } while (strncmp(s, find, len) != 0);
  /src/tests/usr.bin/find/
Makefile 5 TESTSDIR= ${TESTSBASE}/usr.bin/find
  /src/usr.bin/find/
Makefile 6 PROG= find
7 SRCS= find.c function.c ls.c main.c misc.c operator.c option.c
  /src/crypto/external/bsd/heimdal/dist/
autogen.sh 7 find . \( -name '*-private.h' -o -name '*-protos.h' \) | xargs rm -f
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.aa/
aa.exp 21 set tests [lsort [find $srcdir/$subdir *.d]]
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.betterc/
betterc.exp 21 set tests [lsort [find $srcdir/$subdir *.d]]
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.gc/
gc.exp 21 set tests [lsort [find $srcdir/$subdir *.d]]
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.hash/
hash.exp 21 set tests [lsort [find $srcdir/$subdir *.d]]
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.init_fini/
init_fini.exp 21 set tests [lsort [find $srcdir/$subdir *.d]]
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.lifetime/
lifetime.exp 21 set tests [lsort [find $srcdir/$subdir *.d]]
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.traits/
traits.exp 21 set tests [lsort [find $srcdir/$subdir *.d]]
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.typeinfo/
typeinfo.exp 21 set tests [lsort [find $srcdir/$subdir *.d]]
  /src/external/gpl3/gcc/dist/libcc1/
compiler.hh 37 // Find the compiler. BASE is the base name of the compiler, see
41 virtual char *find (const char *base, std::string &compiler) const;
59 char *find (const char *base, std::string &compiler) const override;
73 char *find (const char *base, std::string &compiler) const override;

Completed in 25 milliseconds

1 2 3 4 5 6 7 8 91011>>