Home
last modified time | relevance | path

Searched refs:find (Results 1 – 25 of 566) sorted by relevance

12345678910>>...23

/mirbsd/src/sys/net/
Dpf_osfp.c347 pf_osfp_find(struct pf_osfp_list *list, struct pf_os_fingerprint *find, in pf_osfp_find() argument
355 if (f->_field != find->_field) \ in pf_osfp_find()
358 if (f->_field == 0 || find->_field % f->_field) \ in pf_osfp_find()
364 if (f->fp_tcpopts != find->fp_tcpopts || in pf_osfp_find()
365 f->fp_optcnt != find->fp_optcnt || in pf_osfp_find()
366 f->fp_ttl < find->fp_ttl || in pf_osfp_find()
367 f->fp_ttl - find->fp_ttl > ttldiff || in pf_osfp_find()
369 (find->fp_flags & (PF_OSFP_DF|PF_OSFP_TS0))) in pf_osfp_find()
377 if (find->fp_mss == 0) in pf_osfp_find()
384 if ((find->fp_wsize % find->fp_mss || in pf_osfp_find()
[all …]
/mirbsd/src/gnu/usr.bin/perl/ext/Encode/lib/Encode/
DAlias.pm23 my $find = shift;
24 unless (exists $Alias{$find}) {
25 $Alias{$find} = undef; # Recursion guard
30 if (ref($alias) eq 'Regexp' && $find =~ $alias){
35 DEBUG and warn "$alias", "->", "($find)";
36 $new = $alias->($find);
37 }elsif (lc($find) eq lc($alias)){
41 next if $new eq $find; # avoid (direct) recursion on bugs
45 $Alias{$find} = $enc;
52 unless ($Alias{$find}){
[all …]
/mirbsd/src/usr.bin/vi/docs/internals/
Dcscope.NOTES28 :cscope find create a new Q
48 c: find callers of name
49 d: find all function calls made from name
50 e: find pattern
51 f: find files with name as substring
52 g: find definition of name
53 i: find files #including name
54 s: find all uses of name
55 t: find assignments to name
57 The find command pushes the current location onto the tags stack,
[all …]
/mirbsd/src/gnu/usr.bin/perl/Porting/
Dmanicheck58 my %find;
60 find(sub {
63 $find{$n}++;
69 for (sort keys %find) {
74 push @miss, $_ unless $find{$_};
/mirbsd/src/lib/libc/string/
Dstrstr.c40 strstr(const char *s, const char *find) in strstr() argument
45 if ((c = *find++) != 0) { in strstr()
46 len = strlen(find); in strstr()
52 } while (strncmp(s, find, len) != 0); in strstr()
Dstrcasestr.c43 strcasestr(const char *s, const char *find) in strcasestr() argument
48 if ((c = *find++) != 0) { in strcasestr()
50 len = strlen(find); in strcasestr()
56 } while (strncasecmp(s, find, len) != 0); in strcasestr()
/mirbsd/src/gnu/usr.bin/perl/lib/File/Find/t/
Dfind.t55 find({wanted => sub { ++$::count_commonsense if $_ eq 'commonsense.t'; } },
341 File::Find::find( {wanted => \&wanted_File_Dir_prune}, topdir('fa') );
361 File::Find::find( {wanted => sub { wanted_File_Dir_prune();
362 File::Find::find( {wanted => sub
394 File::Find::find( {wanted => \&wanted_File_Dir, no_chdir => 1},
462 File::Find::find( {wanted => \&noop_wanted,
481 File::Find::find( {wanted => \&noop_wanted,
493 File::Find::find( sub { } , 'fa' ) for @foo;
524 File::Find::find( sub { $true_count++; $_{$_}++; &_; } , 'fa' ) for @foo;
545 File::Find::find( {wanted => \&wanted_File_Dir}, topdir('fa', 'fsl') );
[all …]
Dtaint.t52 find({wanted => sub { $found = 1 if ($_ eq 'commonsense.t') },
277 File::Find::find( {wanted => \&wanted_File_Dir_prune, untaint => 1,
288 eval {File::Find::find( {wanted => \&simple_wanted}, topdir('fa') );};
296 eval {File::Find::find( {wanted => \&simple_wanted, untaint => 1,
308 eval {File::Find::find( {wanted => \&simple_wanted, untaint => 1,
351 File::Find::find( {wanted => \&wanted_File_Dir, follow_fast => 1,
361 eval {File::Find::find( {wanted => \&simple_wanted, follow => 1},
370 eval {File::Find::find( {wanted => \&simple_wanted, follow => 1,
381 eval {File::Find::find( {wanted => \&simple_wanted, untaint => 1,
/mirbsd/src/usr.bin/locate/locate/
Dupdatedb.sh51 : ${find=find}
101 if $find $SEARCHPATHS $excludes -or -print 2>/dev/null |
104 case X"`$find $tmp -size -257c -print`" in
/mirbsd/src/gnu/usr.bin/perl/wince/
Dmakedist.pl38 find({no_chdir=>1,wanted => sub{
62 find({no_chdir=>1,wanted=>sub{push @lfiles, $_ if /\.p[lm]$/}},'.');
81 find({no_chdir=>1,wanted=>sub{push @efiles, $_ if /\.pm$/}},'.');
125 find({no_chdir=>1,wanted=>sub{push @afiles, $_ if /\.(dll|bs)$/}},'.');
/mirbsd/src/gnu/usr.bin/perl/os2/OS2/REXX/t/
Drx_vrexx.t25 $found or print "1..0 # skipped: cannot find $name.DLL\n" and exit;
32 $vinit = DynaLoader::dl_find_symbol($vrexx, "VINIT") or die "find vinit";
34 $vexit = DynaLoader::dl_find_symbol($vrexx, "VEXIT") or die "find vexit";
36 $vmsgbox = DynaLoader::dl_find_symbol($vrexx, "VMSGBOX") or die "find vmsgbox";
38 $vversion= DynaLoader::dl_find_symbol($vrexx, "VGETVERSION") or die "find vgetversion";
/mirbsd/src/libexec/ld.so/
Dutil.h170 _dl_strstr(const char *s, const char *find) in _dl_strstr() argument
174 if ((c = *find++) != 0) { in _dl_strstr()
175 len = _dl_strlen(find); in _dl_strstr()
181 } while (_dl_strncmp(s, find, len) != 0); in _dl_strstr()
/mirbsd/src/etc/
Ddaily51 find -x . \
54 find -x . -type d -mtime +1 ! -path ./vi.recover ! -path ./.X11-unix \
60 find -x . \
63 find -x . -type d -mtime +1 ! -path ./vi.recover ! -path ./.X11-unix \
77 find . ! -name . -mtime +7 -execdir rm -f -- {} \; ; }
/mirbsd/src/scripts/
Dgenhtman.sh41 find * -type f -o -type l | cpio -pdlu $hm/man
43 find * -type f -o -type l | cpio -pdlu $hm/man
49 find * -type f -o -type l | cpio -pdlu $hm/man
83 cd $hr/manDOCS; find . -type f -a ! -name '*.htm' -a ! -name '*.html' \
159 find * -type f -o -type l | cpio -pdlu $hr
/mirbsd/src/gnu/usr.bin/perl/Cross/
Dwarp8 for f in `find lib -name install_me_here`;do
12 for f in `find lib -name install_me_here`;do
/mirbsd/src/usr.bin/find/
DMakefile3 PROG= find
4 SRCS= find.c function.c ls.c main.c misc.c operator.c option.c
/mirbsd/src/gnu/usr.bin/perl/ext/Encode/t/
DCJKT.t16 # unless (PerlIO::Layer->find('perlio')){
57 if (PerlIO::Layer->find('perlio')){
70 if (PerlIO::Layer->find('perlio')){
85 if (PerlIO::Layer->find('perlio')){
/mirbsd/src/gnu/usr.bin/perl/lib/ExtUtils/t/
Dbasic.t134 find( sub {
160 find( sub { $files{$_} = $File::Find::name; }, 'elsewhere' );
182 find( sub {
223 find( sub { $files{$_} = $File::Find::name; }, 'other/elsewhere' );
/mirbsd/src/sys/arch/
DMakefile11 find ${TARCH}/compile -name version | sort | \
15 find ${MACHINE_ARCH}/compile -name version | sort | \
/mirbsd/src/gnu/usr.bin/perl/ext/PerlIO/t/
Dencoding.t9 unless (find PerlIO::Layer 'perlio') {
87 } elsif ($warn =~ /^Cannot find encoding "NoneSuch" at/) {
130 } elsif ($warn =~ /^Cannot find encoding "latin42" at.*line \d+\.$/) {
/mirbsd/src/gnu/usr.bin/perl/lib/
Dfind.pl43 sub find { subroutine
44 &File::Find::find(\&wanted, @_);
/mirbsd/src/gnu/usr.bin/binutils/config/
Dacinclude.m4500 dnl find the IDE library and headers.
568 dnl find libiddetcl.a if it exists
842 dnl Ok, lets find the tcl source trees so we can use the headers
882 dnl find the top level Tcl source directory
890 dnl find the exact Tcl source dir. We do it this way, cause there
919 AC_MSG_ERROR([Can't find any Tcl headers])
937 dnl Ok, lets find the tcl configuration
977 dnl find the top level Tcl source directory
985 dnl find the exact Tcl dir. We do it this way, cause there
1003 dnl to find it, cause our $prefix may not match the compilers.
[all …]
/mirbsd/src/gnu/usr.bin/perl/t/io/
Dbinmode.t16 if (find PerlIO::Layer 'perlio') {
26 if (find PerlIO::Layer 'perlio') {
/mirbsd/src/sys/ddb/
Ddb_sym.c329 char *find, *p; in db_sift() local
335 find = dsa->symstr; /* String we're looking for. */ in db_sift()
340 if ((c = *find++) != 0) { in db_sift()
341 len = strlen(find); in db_sift()
347 } while (strncmp(p, find, len) != 0); in db_sift()
/mirbsd/src/gnu/usr.bin/perl/x2p/
Dfind2perl.PL72 my $find = "find";
222 $find = 'finddepth';
246 $find = 'finddepth';
349 File::Find::$find( {wanted => \\&wanted, follow => 1}, $roots);
361 File::Find::$find({wanted => \\&wanted}, $roots);

12345678910>>...23