Searched refs:find (Results 76 - 100 of 2004) sorted by relevance

1234567891011>>

/freebsd-current/tests/sys/opencrypto/
H A Dblake2_test.c78 struct crypt_find_op find; local
80 find.crid = -1;
81 strlcpy(find.name, devname, sizeof(find.name));
82 ATF_REQUIRE(ioctl(fd, CIOCFINDDEV, &find) != -1);
83 return (find.crid);
/freebsd-current/tools/test/stress2/misc/
H A Dumountf6.sh56 ./$0 find &
67 if [ $1 = find ]; then
70 find ${mntpoint}* -type f > /dev/null 2>&1
H A Dumountf4.sh56 ./$0 find &
67 if [ $1 = find ]; then
70 find ${mntpoint}* -type f > /dev/null 2>&1
H A Dcrossmp7.sh75 ./$0 find &
87 if [ $1 = find ]; then
89 find /stress2_tank -type f > /dev/null 2>&1
H A Dcrossmp.sh58 ./$0 find &
70 if [ $1 = find ]; then
72 find ${mntpoint}* -type f > /dev/null 2>&1
H A Dcrossmp2.sh57 ./$0 find &
62 if [ $1 = find ]; then
64 find ${mntpoint}* -maxdepth 1 -type f > \
H A Dunionfs17.sh70 n=`find $mp1/stressX | wc -l`
71 [ $n -eq 1 ] && s=0 || { find $mp1/stressX -ls | head -12; s=1; }
/freebsd-current/contrib/kyua/utils/cmdline/
H A Dcommands_map_test.cpp119 ATF_REQUIRE(cmd1 == commands.find("cmd1"));
120 ATF_REQUIRE(cmd2 == commands.find("cmd2"));
130 ATF_REQUIRE(NULL == commands.find("cmd2"));
/freebsd-current/contrib/elftoolchain/libpe/
H A Dlibpe_rich.c37 memfind(char *s, const char *find, size_t slen, size_t flen) argument
45 if (s[i] != find[0])
49 if (memcmp(&s[i + 1], &find[1], flen - 1) == 0)
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dfunc-id-helper.cpp22 auto CacheIt = CachedNames.find(FuncId);
27 auto It = FunctionAddresses.find(FuncId);
55 auto It = FunctionAddresses.find(FuncId);
H A Dxray-registry.cpp35 auto It = getCommands().find(SC);
/freebsd-current/contrib/llvm-project/clang/lib/AST/Interp/
H A DRecord.cpp31 auto It = FieldMap.find(FD);
37 auto It = BaseMap.find(FD);
51 auto It = VirtualBaseMap.find(FD);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveStacks.h70 SS2IntervalMap::iterator I = S2IMap.find(Slot);
77 SS2IntervalMap::const_iterator I = S2IMap.find(Slot);
87 S2RCMap.find(Slot);
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DSymbolTable.h64 Symbol *find(llvm::CachedHashStringRef name);
65 Symbol *find(StringRef name) { return find(llvm::CachedHashStringRef(name)); } function in class:lld::macho::SymbolTable
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DSolution.h46 SelectionsMap::const_iterator sItr = selections.find(nodeId);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.h53 auto It = Functions.find(FunctionId);
63 auto It = Functions.find(FunctionId);
70 auto It = Functions.find(FunctionId);
123 auto It = Traces.find(InputSha1);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTaskTimer.cpp26 auto it = m_thread_timers.find(tid);
/freebsd-current/lib/csu/riscv/
H A Dcrti.S36 # this puts __global_pointer$ into .dynsym, so symlook_obj can now find that
/freebsd-current/tools/tools/nanobsd/Files/root/
H A Dsave_cfg36 for filename in "$@" `find * -type f`
96 for filename in "$@" `find * -type f`
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DPassInstrumentation.cpp34 size_t Pos = PassID.find('<');
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DUnixSignals.cpp116 collection::iterator signal = m_signals.find(signo);
125 collection::iterator pos = m_signals.find(signo);
132 const auto pos = m_signals.find(signo);
145 collection::const_iterator pos = m_signals.find(signo);
151 pos->second.m_codes.find(*code);
191 return m_signals.find(signo) != m_signals.end();
223 collection::const_iterator pos = m_signals.find(current_signal);
238 const auto pos = m_signals.find(signo);
250 collection::const_iterator pos = m_signals.find(signo);
257 collection::iterator pos = m_signals.find(sign
[all...]
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkUtilRegistry.cpp34 auto It = getCommands().find(SC);
/freebsd-current/usr.sbin/periodic/etc/security/
H A D900.tcpwrap45 find ${LOG} -name 'messages.*' -mtime -2 |
/freebsd-current/contrib/jemalloc/
H A DFREEBSD-upgrade111 find . -name '*.orig' -delete
140 find . -name '*.orig' -delete
141 find . -name '*.rej' -delete
162 find . -name '*.orig' -delete
/freebsd-current/contrib/kyua/utils/text/
H A Dtemplates.cpp185 const types_map::const_iterator iter = _types.find(words[0]);
261 /// until we find the matching closing endif or endloop construct.
460 const std::string::size_type open_pos = in_line.find(
466 const std::string::size_type close_pos = in_line.find(
548 PRE(_vectors.find(name) == _vectors.end());
564 PRE(_variables.find(name) != _variables.end());
565 _variables.erase(_variables.find(name));
580 PRE(_variables.find(name) == _variables.end());
595 PRE(_variables.find(name) == _variables.end());
596 PRE(_vectors.find(nam
[all...]

Completed in 338 milliseconds

1234567891011>>