Searched refs:find (Results 251 - 275 of 773) sorted by relevance

<<11121314151617181920>>

/freebsd-9.3-release/sys/netinet/
H A Din_mcast.c319 struct ip_msource find; local
335 find.ims_haddr = ntohl(psa->sin.sin_addr.s_addr);
336 ims = RB_FIND(ip_msource_tree, &imf->imf_sources, &find);
581 struct ip_msource find; local
586 find.ims_haddr = ntohl(naddr);
587 ims = RB_FIND(ip_msource_tree, &inm->inm_srcs, &find);
597 nims->ims_haddr = find.ims_haddr;
628 struct ip_msource find; local
638 find.ims_haddr = ntohl(psin->sin_addr.s_addr);
639 ims = RB_FIND(ip_msource_tree, &imf->imf_sources, &find);
700 struct ip_msource find; local
829 struct ip_msource find; local
[all...]
/freebsd-9.3-release/contrib/amd/include/
H A Dam_defs.h1346 # error Cannot find either memset or bzero!
1354 # error Cannot find either memmove or bcopy!
1380 # error Cannot find either seteuid or setresuid!
1404 # error Could not find definition for struct mntent or struct mnttab!
/freebsd-9.3-release/contrib/bind9/bin/named/include/named/
H A Dlwdclient.h70 dns_adbfind_t *find; member in struct:ns_lwdclient
/freebsd-9.3-release/contrib/libstdc++/include/ext/
H A Dpod_char_traits.h132 find(const char_type* __s, size_t __n, const char_type& __a) function in struct:char_traits
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DSetVector.h121 std::find(vector_.begin(), vector_.end(), X);
/freebsd-9.3-release/contrib/llvm/include/llvm/Analysis/
H A DSparsePropagation.h153 DenseMap<Value*, LatticeVal>::const_iterator I = ValueState.find(V);
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DFunctionLoweringInfo.h194 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
H A DLiveVariables.h96 I = std::find(Kills.begin(), Kills.end(), MI);
H A DScheduleDAGInstrs.h252 DenseMap<MachineInstr*, SUnit*>::const_iterator I = MISUnitMap.find(MI);
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DOcamlGCPrinter.cpp53 SymName.append(MId.begin(), std::find(MId.begin(), MId.end(), '.'));
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DLatencyPriorityQueue.cpp135 std::vector<SUnit *>::iterator I = std::find(Queue.begin(), Queue.end(), SU);
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp176 // If it's the first relocation in this section, find its SectionID
363 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
384 GlobalSymbolTable.find(SymbolName);
398 // since symbol lookup won't necessarily find a handy, in-range,
510 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(Name);
521 i = ExternalSymbolRelocations.find(Name);
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DDataExtractor.cpp123 StringRef::size_type pos = Data.find('\0', offset);
/freebsd-9.3-release/contrib/llvm/lib/Support/Unix/
H A DSignals.inc168 if (std::find(IntSigs, IntSigsEnd, Sig) != IntSigsEnd) {
239 std::find(FilesToRemove.rbegin(), FilesToRemove.rend(), Filename);
/freebsd-9.3-release/contrib/llvm/lib/TableGen/
H A DTGLexer.cpp308 PrintError(getLoc(), "Could not find include file '" + Filename + "'");
312 DependenciesMapTy::const_iterator Found = Dependencies.find(IncludedFile);
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/
H A DA15SDOptimizer.cpp214 if (DeadInstr.find(Def) != DeadInstr.end())
236 if (DeadInstr.find(&*II) == DeadInstr.end()) {
379 if (Reached.find(MI) != Reached.end())
596 // COPY and PHI nodes to find it.
645 if (Replacements.find(MI) != Replacements.end())
670 // to find.
H A DARMMachineFunctionInfo.h220 DenseMap<unsigned, unsigned>::const_iterator I = CPEClones.find(CloneIdx);
/freebsd-9.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp104 if (TT.find("linux") == std::string::npos)
/freebsd-9.3-release/contrib/llvm/lib/Target/NVPTX/
H A DNVVMReflect.cpp182 if (VarMap.find(ReflectArg) != VarMap.end()) {
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/
H A DSITypeRewriter.cpp126 Name = Name.replace(Name.find(VecTypeName), VecTypeName.length(), TypeName);
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86PadShortFunction.cpp172 = VisitedBBs.find(MBB);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp268 = ModulesByFile.find(File);
292 IdentifierIndexTable::iterator Known = Table.find(Name);
310 llvm::StringMap<unsigned>::iterator Known = UnresolvedModules.find(Name);
383 = ModuleFiles.find(File);
774 // If we can't find the module file, skip it.
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCheckerRegistry.cpp47 // Use a binary search to find the possible start of the package.
53 // If we didn't even find a possible package, give up.
68 packageSizes.find(opt.getName());
H A DSymbolManager.cpp353 SymbolDependTy::iterator I = SymbolDependencies.find(Primary);
366 SymbolDependTy::const_iterator I = SymbolDependencies.find(Primary);
374 SymbolMapTy::iterator LI = TheLiving.find(sym);
383 if (TheLiving.find(*I) != TheLiving.end())
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Tooling/
H A DFileMatchTrie.cpp76 /// \brief Tries to find the node under this \c FileMatchTrieNode that best
84 /// To find the best matching node for a given path 'p', the
109 Children.find(Element);

Completed in 256 milliseconds

<<11121314151617181920>>