Searched refs:set (Results 651 - 675 of 1536) sorted by relevance

<<21222324252627282930>>

/freebsd-11-stable/sys/dev/mmc/
H A Dmmc_subr.c152 mmc_switch(device_t busdev, device_t dev, uint16_t rca, uint8_t set, argument
166 set;
/freebsd-11-stable/usr.sbin/pwd_mkdb/
H A Dpwd_mkdb.c104 sigset_t set; local
174 sigemptyset(&set);
175 sigaddset(&set, SIGTSTP);
176 sigaddset(&set, SIGHUP);
177 sigaddset(&set, SIGINT);
178 sigaddset(&set, SIGQUIT);
179 sigaddset(&set, SIGTERM);
180 (void)sigprocmask(SIG_BLOCK, &set, (sigset_t *)NULL);
584 /* If YP enabled, set flag. */
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_signal.c239 l_sigset_t set, oset; local
251 LINUX_SIGEMPTYSET(set);
252 set.__mask = mask;
256 args->mask ? &set : NULL,
271 l_sigset_t set, oset; local
285 error = copyin(args->mask, &set, sizeof(l_sigset_t));
291 args->mask ? &set : NULL,
394 return (copyout(&lset, args->set, args->sigsetsize));
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_fw_private.h144 PROTO_LAYER2 = 0x4, /* set for layer 2 */
287 uint8_t set; /* rule set (0..31) */ member in struct:ip_fw
357 uint8_t set; /* set object belongs to */ member in struct:named_object
514 uint8_t set; /* rule set (0..31) */ member in struct:ip_fw_rule0
563 uint32_t set; /* table set */ member in struct:tid_info
613 * Sets handler callback. Handles moving and swaping set o
[all...]
/freebsd-11-stable/share/mk/
H A Dsrc.lua.mk37 # appropriately set.
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Core/
H A DReplacement.h29 #include <set>
163 /// replacement in a set of replacements.
192 // A new replacement, which is to expected be added into a set of
196 // An existing replacement in a replacements set that is causing problem.
206 /// Maintains a set of replacements that are conflict-free.
211 using ReplacementsImpl = std::set<Replacement>;
221 /// Adds a new replacement \p R to the current set of replacements.
298 // Returns a set of replacements that is equivalent to the current
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPIChecker.cpp51 State = State->set<RequestMap>(MR, Request::State::Nonblocking);
81 State = State->set<RequestMap>(ReqRegion, Request::State::Wait);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DTrustNonnullChecker.cpp122 State = State->set<NonNullImplicationMap>(RetS, ArgS);
126 State = State->set<NullImplicationMap>(ArgS, RetS);
H A DSimpleStreamChecker.cpp132 State = State->set<StreamMap>(FileDesc, StreamState::getOpened());
158 State = State->set<StreamMap>(FileDesc, StreamState::getClosed());
273 // This checker should be enabled regardless of how language options are set.
H A DTaint.cpp90 ProgramStateRef NewState = State->set<TaintMap>(Sym, Kind);
139 ProgramStateRef NewState = State->set<DerivedSymTaint>(ParentSym, Regs);
H A DNonNullParamChecker.cpp55 AttrNonNull.set(0, NumArgs);
62 AttrNonNull.set(IdxAST);
H A DVirtualCallChecker.cpp175 // Enter a constructor, set the corresponding memregion be true.
181 State = State->set<CtorDtorMap>(Reg, ObjectState::CtorCalled);
189 // Enter a Destructor, set the corresponding memregion be true.
195 State = State->set<CtorDtorMap>(Reg, ObjectState::DtorCalled);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBlockRanges.h15 #include <set>
40 using RegisterSet = std::set<RegisterRef>;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.h18 #include <set>
205 typedef std::set<lldb::tid_t> ThreadStopSet;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIntervalIterator.h23 // IOwnMem member to be set, and the intervals to not be deleted.
44 #include <set>
91 std::set<BasicBlock *> Visited;
196 // the successor set of an interval up to date.
210 if (!Int->isSuccessor(NodeHeader)) // Add only if not already in set
217 if (!Int->isSuccessor(NodeHeader)) // Add only if not already in set
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfo.cpp12 #include <set>
48 std::set<dw_offset_t> cus_with_data;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.cpp45 // Register dependencies for all symbols contained in this set.
116 auto InternalSymbols = std::make_shared<std::set<StringRef>>();
161 std::set<StringRef> &InternalSymbols) {
170 // For all resolved symbols that are not already in the responsibilty set:
182 // already in the responsibility set.
226 // we need to remove them from the resolved set.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600ControlFlowFinalizer.cpp42 #include <set>
297 std::set<unsigned> &DstRegs) const {
338 std::set<unsigned> DstRegs;
495 void CounterPropagateAddr(const std::set<MachineInstr *> &MIs,
520 std::vector<std::pair<unsigned, std::set<MachineInstr *>>> LoopStack;
574 std::pair<unsigned, std::set<MachineInstr *>> Pair(CfCount,
575 std::set<MachineInstr *>());
584 std::pair<unsigned, std::set<MachineInstr *>> Pair =
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DCachePruning.cpp24 #include <set>
36 /// set membership, so must take into account all fields.
163 LLVM_DEBUG(dbgs() << "No pruning settings set, exit early\n");
204 std::set<FileInfo> FileInfos;
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp21 #include <set>
128 assert(Last && "set First without Last");
218 typedef std::set<Record*> RecordSet;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp38 void set(unsigned recordID, unsigned abbrevID) { function in class:__anon528::AbbreviationMap
40 && "Abbreviation already set.");
46 "Abbreviation not set.");
260 /// The set of constructed record abbreviations.
441 Abbrevs.set(RECORD_VERSION, Stream.EmitBlockInfoAbbrev(BLOCK_META, Abbrev));
464 Abbrevs.set(RECORD_DIAG, Stream.EmitBlockInfoAbbrev(BLOCK_DIAG, Abbrev));
472 Abbrevs.set(RECORD_CATEGORY, Stream.EmitBlockInfoAbbrev(BLOCK_DIAG, Abbrev));
478 Abbrevs.set(RECORD_SOURCE_RANGE,
487 Abbrevs.set(RECORD_DIAG_FLAG, Stream.EmitBlockInfoAbbrev(BLOCK_DIAG,
498 Abbrevs.set(RECORD_FILENAM
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFindingAction.cpp32 #include <set>
153 // methods to the USR set.
175 std::set<std::string> USRSet;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DWholeProgramDevirt.h22 #include <set>
202 // IsAfter is set, look for an offset before the object, otherwise look for an
241 /// are added to the \p ExportedGUIDs set. For any local devirtualized targets
247 ModuleSummaryIndex &Summary, std::set<GlobalValue::GUID> &ExportedGUIDs,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProfWriter.h25 #include <set>
127 inline void stablizeNameTable(std::set<StringRef> &V);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymtab.h219 uint32_t value, std::set<const char *> &class_contexts,
225 const std::set<const char *> &class_contexts);

Completed in 196 milliseconds

<<21222324252627282930>>