Home
last modified time | relevance | path

Searched full:find (Results 1 – 25 of 4395) sorted by relevance

12345678910>>...176

/freebsd/sys/netpfil/pf/
H A Dpf_osfp.c347 /* Find a fingerprint in the list */
349 pf_osfp_find(struct pf_osfp_list *list, struct pf_os_fingerprint *find, in pf_osfp_find() argument
357 if (f->_field != find->_field) \ in pf_osfp_find()
360 if (f->_field == 0 || find->_field % f->_field) \ in pf_osfp_find()
366 if (f->fp_tcpopts != find->fp_tcpopts || in pf_osfp_find()
367 f->fp_optcnt != find->fp_optcnt || in pf_osfp_find()
368 f->fp_ttl < find->fp_ttl || in pf_osfp_find()
369 f->fp_ttl - find->fp_ttl > ttldiff || in pf_osfp_find()
371 (find->fp_flags & (PF_OSFP_DF|PF_OSFP_TS0))) in pf_osfp_find()
379 if (find->fp_mss == 0) in pf_osfp_find()
[all …]
/freebsd/crypto/openssh/regress/
H A Dsshsig.sh178 trace "$tid: key type $t find-principals with valid lifespan"
179 ${SSHKEYGEN} -vvv -Y find-principals -s $sigfile \
182 fail "failed find-principals for $t key with valid expiry interval"
184 trace "$tid: key type $t find principals with not-yet-valid lifespan"
185 ${SSHKEYGEN} -vvv -Y find-principals -s $sigfile \
188 fail "failed find-principals for $t not-yet-valid key"
190 trace "$tid: key type $t find-principals with expired lifespan"
191 ${SSHKEYGEN} -vvv -Y find-principals -s $sigfile \
194 fail "failed find-principals for $t with expired key"
196 trace "$tid: key type $t find-principals with expired lifespan (now)"
[all …]
H A Dkeygen-knownhosts.sh61 fail "didn't find $_name"
76 # Find key
80 check_find host-a "simple find"
82 # find CA key
85 check_find host-c "find CA key"
87 # find revoked key
90 check_find host-d "find revoked key"
92 # find key with wildcard
95 check_find host-e.somedomain "find wildcard key"
97 # find key among multiple hosts
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dinterval_map_test.cpp24 EXPECT_TRUE(M.find(0) == M.end()); in TEST()
35 EXPECT_EQ(M.find(7), M.begin()); in TEST()
36 EXPECT_EQ(M.find(8), M.end()); in TEST()
53 EXPECT_EQ(M1.find(7), M1.find(8)); // 7 and 8 should point to same range. in TEST()
65 EXPECT_NE(M2.find(7), M2.find(8)); // 7 and 8 should be different ranges. in TEST()
82 EXPECT_EQ(M1.find(7), M1.find(8)); // 7 and 8 should point to same range. in TEST()
110 EXPECT_NE(M1.find(7), M1.find(9)); in TEST()
117 EXPECT_EQ(M1.find(7), M1.find(8)); // 7, 8, and 9 should point to same range. in TEST()
118 EXPECT_EQ(M1.find(8), M1.find(9)); in TEST()
132 EXPECT_NE(M2.find(7), M2.find(8)); // All keys should map to different ranges. in TEST()
[all …]
H A Dinterval_set_test.cpp24 EXPECT_TRUE(S.find(0) == S.end()); in TEST()
35 EXPECT_EQ(S.find(7), S.begin()); in TEST()
36 EXPECT_EQ(S.find(8), S.end()); in TEST()
48 EXPECT_EQ(S.find(7), S.find(8)); // 7 and 8 should point to same range. in TEST()
60 EXPECT_EQ(S.find(7), S.find(8)); // 7 and 8 should point to same range. in TEST()
71 EXPECT_NE(S.find(7), S.find(9)); in TEST()
78 EXPECT_EQ(S.find(7), S.find(8)); // 7, 8, and 9 should point to same range. in TEST()
79 EXPECT_EQ(S.find(8), S.find(9)); in TEST()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVDuplicatesTracker.h148 if (find(V, MF).isValid()) in add()
165 Register find(KeyTy V, const MachineFunction *MF) const { in find() function
166 auto iter = Storage.find(V); in find()
169 auto iter2 = Map.find(MF); in find()
255 Register find(const Type *Ty, const MachineFunction *MF) { in find() function
256 return TT.find(unifyPtrType(Ty), MF); in find()
259 Register find(const Type *PointeeTy, unsigned AddressSpace, in find() function
261 return ST.find( in find()
265 Register find(const Constant *C, const MachineFunction *MF) { in find() function
266 return CT.find(const_cast<Constant *>(C), MF); in find()
[all …]
H A DSPIRVGlobalRegistry.h125 Register find(const MachineInstr *MI, MachineFunction *MF) { in find() function
126 return DT.find(MI, MF); in find()
129 Register find(const Constant *C, MachineFunction *MF) { in find() function
130 return DT.find(C, MF); in find()
133 Register find(const GlobalVariable *GV, MachineFunction *MF) { in find() function
134 return DT.find(GV, MF); in find()
137 Register find(const Function *F, MachineFunction *MF) { in find() function
138 return DT.find(F, MF); in find()
153 // Find a record in the map of function return pointer types.
155 auto It = FunResPointerTypes.find(ArgF); in findReturnType()
[all …]
/freebsd/sbin/ipf/libipf/
H A Dinterror.c39 { 11, "cannot find rule function" },
40 { 12, "cannot find rule group" },
62 { 34, "could not find function" },
66 { 38, "group map cannot find it's hash table" },
103 { 75, "cannot find tunable name to delete" },
105 { 77, "could not find tunable" },
110 { 82, "could not find token to delete" },
121 { 93, "could not find token for generic iterator" },
160 { 132, "cannot find source lookup pool" },
162 { 134, "cannot find destination lookup pool" },
[all …]
/freebsd/usr.bin/find/
H A Dfind.135 .Nm find
154 .Ql find -s
156 .Ql "find | sort"
160 .Ql find -s
166 .Ql "find | sort"
330 GNU find implements this as a primary in mistaken emulation of
473 This is a GNU find extension.
523 command can be used to find out the types of file systems
537 for compatibility with GNU find.
538 GNU find imposes a restriction that
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/
H A Dhistory_common.kshlib70 # Run the command as the specified user, and find the new history.
82 log_fail "Didn't find \"$histcmd\" in pool history"
117 log_note "Couldn't find long information for \"$cmd\""
142 log_note "Didn't find hold on $ds with $tag"
171 log_note "Didn't find rollback clone swap in pool history"
176 log_note "Didn't find rollback destroy in pool history"
197 log_note "Didn't find inherit history for $ds"
247 log_note "Couldn't find $code in $NEW_HISTORY"
256 log_note "Couldn't find $code in $NEW_HISTORY"
268 log_note "Couldn't find $code in $NEW_HISTORY"
[all …]
/freebsd/tests/sys/cddl/zfs/tests/acl/trivial/
H A Dzfs_acl_find_001_pos.ksh36 # Verifies ability to find files with attribute with -xattr flag and using
56 log_assert "Verifies ability to find files with attribute with" \
71 ff=$(usr_exec $FIND $INI_DIR -type f -name ${f##*/} \
74 log_fail "find file containing attribute fail."
76 log_note "find $f by '-xattr'."
82 fa=$(usr_exec $FIND $INI_DIR -type f -name ${f##*/} \
85 log_fail "find file attribute fail"
90 log_note "find all attribute files of $f"
96 log_pass "find files with -xattr passed."
H A Dzfs_acl_find_002_neg.ksh36 # Verifies ability to find files with attribute with -xattr flag and using
79 ff=$(usr_exec $FIND $INI_DIR -type f -name ${f##*/} \
82 log_fail "find not containing attribute should fail."
87 fa=$(usr_exec $FIND $INI_DIR -type f -name ${f##*/} \
90 log_fail "find file attribute should fail."
94 log_note "Failed to find $f and its attribute file as expected."
102 log_pass "find files which have no attrabute files with -xattr passed."
/freebsd/lib/libc/string/
H A Dstrcasestr.c45 * Find the first occurrence of find in s, ignore case.
48 strcasestr_l(const char *s, const char *find, locale_t locale) in strcasestr_l() argument
54 if ((c = *find++) != 0) { in strcasestr_l()
56 len = strlen(find); in strcasestr_l()
62 } while (strncasecmp_l(s, find, len, locale) != 0); in strcasestr_l()
68 strcasestr(const char *s, const char *find) in strcasestr() argument
70 return strcasestr_l(s, find, __get_locale()); in strcasestr()
H A Dwcsstr.c38 * Find the first occurrence of find in s.
41 wcsstr(const wchar_t * __restrict s, const wchar_t * __restrict find) in wcsstr() argument
46 if ((c = *find++) != L'\0') { in wcsstr()
47 len = wcslen(find); in wcsstr()
53 } while (wcsncmp(s, find, len) != 0); in wcsstr()
/freebsd/sys/tools/syscalls/tools/
H A Dutil.lua118 return type:find("*") or type:find("caddr_t") or type:find(default)
122 return type:find("[*][*]") or type:find("[*][ ]*const[ ]*[*]")
125 -- Find types that are always 64-bits wide.
127 return type:find("^dev_t[ ]*$") or type:find("^id_t[ ]*$") or
128 type:find("^off_t[ ]*$")
160 if abiprefix ~= "" and funcname:find("^" .. abiprefix) then
/freebsd/crypto/heimdal/lib/sl/
H A Dslc-gram.y284 find(struct assignment *as, const char *name) in find() function
326 a = find(as, "name"); in gen_command()
332 b = find(as, "argument"); in gen_command()
337 b = find(as, "help"); in gen_command()
365 lopt = find(as, "long"); in make_name()
367 lopt = find(as, "name"); in make_name()
371 type = find(as, "type"); in make_name()
478 type = find(tmp->u.assignment, "type"); in gen_options()
498 name = find(as, "name"); in gen_wrapper()
501 arg = find(as, "argument"); in gen_wrapper()
[all …]
/freebsd/contrib/tcpdump/cmake/Modules/
H A DFindCRYPTO.cmake2 # Try to find libcrypto.
23 # So the only way to find openssl is to get the value of
51 # Find the line that begins with "PKG_CONFIG_PATH: ", and extract
79 # Use pkg-config to find libcrypto.
89 # Did pkg-config find it?
102 # Find the libraries and add their full paths.
107 # Try to find this library, so we get its full path.
164 # Try to find the openss/evp.h header.
172 # Try to find the library.
/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Diidesc.c74 iidesc_find_t *find = arg2; in iidesc_cmp() local
75 iidesc_t *tgt = find->iif_tgt; in iidesc_cmp()
81 find->iif_ret = src; in iidesc_cmp()
89 iidesc_find_t find; in iidesc_add() local
91 find.iif_tgt = new; in iidesc_add()
92 find.iif_ret = NULL; in iidesc_add()
94 (void) hash_match(hash, new, iidesc_cmp, &find); in iidesc_add()
96 if (find.iif_ret != NULL) { in iidesc_add()
97 iidesc_t *old = find.iif_ret; in iidesc_add()
/freebsd/sys/libkern/
H A Dstrstr.c39 * Find the first occurrence of find in s.
42 strstr(const char *s, const char *find) in strstr() argument
47 if ((c = *find++) != 0) { in strstr()
48 len = strlen(find); in strstr()
54 } while (strncmp(s, find, len) != 0); in strstr()
H A Dstrnstr.c42 * Find the first occurrence of find in s, where the search is limited to the
46 strnstr(const char *s, const char *find, size_t slen) in strnstr() argument
51 if ((c = *find++) != '\0') { in strnstr()
52 len = strlen(find); in strnstr()
60 } while (strncmp(s, find, len) != 0); in strnstr()
/freebsd/contrib/atf/test-programs/
H A Dsrcdir_test.sh35 atf_set "descr" "Checks that the program can find its files if" \
48 atf_check -s eq:0 -o ignore -e empty grep "Cannot find datafile" res
55 atf_set "descr" "Checks that the program can find its files if" \
71 atf_check -s eq:0 -o ignore -e empty grep "Cannot find datafile" res
81 atf_check -s eq:0 -o ignore -e empty grep "Cannot find datafile" res
88 atf_set "descr" "Checks that the program can find its files when" \
102 atf_check -s eq:0 -o ignore -e empty grep "Cannot find datafile" res
130 atf_check -s eq:0 -o ignore -e empty grep "Cannot find datafile" res
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DUnixSignals.cpp116 collection::iterator signal = m_signals.find(signo); in AddSignalCode()
125 collection::iterator pos = m_signals.find(signo); in AddSignalCode()
132 const auto pos = m_signals.find(signo); in RemoveSignal()
145 collection::const_iterator pos = m_signals.find(signo); in GetSignalDescription()
151 pos->second.m_codes.find(*code); in GetSignalDescription()
191 return m_signals.find(signo) != m_signals.end(); in GetSignalDescription()
223 collection::const_iterator pos = m_signals.find(current_signal); in GetFirstSignalNumber()
238 const auto pos = m_signals.find(signo); in GetNextSignalNumber()
250 collection::const_iterator pos = m_signals.find(signo); in GetSignalInfo()
257 collection::iterator pos = m_signals.find(sign in GetShouldSuppress()
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseSet.h91 /// clear() and iteration as fast as a vector. The find(), insert(), and
107 /// When SparseT is uint32_t, find() only touches 2 cache lines, but the sparse
110 /// When SparseT is uint8_t (the default), find() touches up to 2+[N/256] cache
195 // Sparse does not need to be cleared, see find().
199 /// findIndex - Find an element by its index.
201 /// @param Idx A valid index to find.
220 /// find - Find an element by its key.
222 /// @param Key A valid key to find.
225 iterator find(cons
[all...]
/freebsd/lib/libfigpar/
H A Dstring_m.c43 strcount(const char *source, const char *find) in strcount() argument
50 if (source == NULL || find == NULL) in strcount()
53 /* Cache the length of find element */ in strcount()
54 flen = strlen(find); in strcount()
60 if (strncmp(p, find, flen) == 0) { /* found an instance */ in strcount()
71 * Replaces all occurrences of `find' in `source' with `replace'.
76 * replacement string is greater than the length of the find string, the result
88 replaceall(char *source, const char *find, const char *replace) in replaceall() argument
103 if (find == NULL) in replaceall()
108 flen = strlen(find); in replaceall()
[all …]
/freebsd/contrib/netbsd-tests/usr.bin/find/
H A Dt_find.sh33 atf_set "descr" "Test that 'find -empty' does not error out " \
46 -e not-empty -x "find /var -empty -type d"
51 atf_set "descr" "Test that find(1) with -exit works (PR bin/44973)"
56 -s exit:0 -x "find /etc -type f -exit"
61 atf_set "descr" "Test exit status from 'find -exit'"
66 atf_check -o ignore -e ignore -s exit:$num -x "find / -exit $num"

12345678910>>...176