Searched refs:find (Results 1 - 25 of 184) sorted by relevance

12345678

/barrelfish-master/lib/libc/string/
H A Dstrstr.c42 * Find the first occurrence of find in s.
45 strstr(const char *s, const char *find) argument
50 if ((c = *find++) != '\0') {
51 len = strlen(find);
57 } while (strncmp(s, find, len) != 0);
H A Dstrcasestr.c46 * Find the first occurrence of find in s, ignore case.
49 strcasestr_l(const char *s, const char *find, locale_t locale) argument
55 if ((c = *find++) != 0) {
57 len = strlen(find);
63 } while (strncasecmp_l(s, find, len, locale) != 0);
69 strcasestr(const char *s, const char *find) argument
71 return strcasestr_l(s, find, __get_locale());
H A Dstrnstr.c43 * Find the first occurrence of find in s, where the search is limited to the
47 strnstr(const char *s, const char *find, size_t slen) argument
52 if ((c = *find++) != '\0') {
53 len = strlen(find);
61 } while (strncmp(s, find, len) != 0);
H A Dwcsstr.c44 * Find the first occurrence of find in s.
47 wcsstr(const wchar_t * __restrict s, const wchar_t * __restrict find) argument
52 if ((c = *find++) != L'\0') {
53 len = wcslen(find);
59 } while (wcsncmp(s, find, len) != 0);
/barrelfish-master/lib/openssl-1.0.0d/util/
H A DfixNT.sh11 /bin/rm -f `find . -name '*.$$$' -print` 2>/dev/null >/dev/null
13 perl -pi -e 's/\015//' `find . -type 'f' -print |grep -v '.obj$' |grep -v '.der$' |grep -v '.gz'`
H A Dperlpath.pl7 require "find.pl";
10 &find(".");
/barrelfish-master/tools/harness/tests/
H A Dboottest.py6 # If you do not find this file, copies can be found by writing to:
46 if line.find(self.grub_boot) > -1 or \
47 line.find(self.hagfish_boot) > -1:
/barrelfish-master/usr/skb/programs/
H A Dplat_fvp.pl6 % If you do not find this file, copies can be found by writing to:
H A Dplat_qemu.pl6 % If you do not find this file, copies can be found by writing to:
H A Dplat_VE_A15x1.pl6 % If you do not find this file, copies can be found by writing to:
H A Dplat_VE_A15x2.pl6 % If you do not find this file, copies can be found by writing to:
H A Dplat_PandaboardES.pl6 % If you do not find this file, copies can be found by writing to:
H A Dloaddata.pl6 % If you do not find this file, copies can be found by writing to:
H A Dplat_zynq7.pl6 % If you do not find this file, copies can be found by writing to:
H A Dplat_VE_A9x4.pl6 % If you do not find this file, copies can be found by writing to:
H A Dplat_VE_A9x1.pl6 % If you do not find this file, copies can be found by writing to:
H A Dplat_cn88xx.pl6 % If you do not find this file, copies can be found by writing to:
H A Dplat_VE_A15x4.pl6 % If you do not find this file, copies can be found by writing to:
H A Dplat_apm88xxxx.pl6 % If you do not find this file, copies can be found by writing to:
H A Dplat_imx8x.pl6 % If you do not find this file, copies can be found by writing to:
/barrelfish-master/usr/slideshow/
H A Dmakeslides.sh8 # If you do not find this file, copies can be found by writing to:
26 find talk | cpio -o > talk_ramfs.cpio
/barrelfish-master/tools/
H A Darm-mkbootelf.sh8 # If you do not find this file, copies can be found by writing to:
30 echo Failed to find kernel :- \"${KERNEL}\"
/barrelfish-master/usr/eclipseclp/lib_tcl/
H A Dtkgetdir.tcl354 set id [.dirsel.f2.cv find withtag current]
357 set id [.dirsel.f2.cv find above $id]
368 set id [.dirsel.f2.cv find withtag current]
371 set id [.dirsel.f2.cv find above $id]
378 set id [.dirsel.f2.cv find withtag current]
381 set id [.dirsel.f2.cv find above $id]
392 set id [.dirsel.f2.cv find withtag current]
/barrelfish-master/lib/acpica/generate/linux/
H A Dlibacpica.sh254 files=`find . -name "*.h"`
288 files=`find . -name "*.[ch]" | cut -c3-`
293 find . -name "*~" | xargs rm -f
345 all_files=`find $linux`
351 f=`find $acpica/source -name \`basename $t\``
/barrelfish-master/lib/openssl-1.0.0d/shlib/
H A Dsolaris-sc4.sh13 find . -name \*.o -print > allobjs

Completed in 187 milliseconds

12345678