Home
last modified time | relevance | path

Searched refs:Change (Results 1 – 25 of 213) sorted by relevance

123456789

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp182 for (change_ty Change : Changes) { in DAGDeltaAlgorithmImpl() local
183 Predecessors.insert(std::make_pair(Change, std::vector<change_ty>())); in DAGDeltaAlgorithmImpl()
184 Successors.insert(std::make_pair(Change, std::vector<change_ty>())); in DAGDeltaAlgorithmImpl()
192 for (change_ty Change : Changes) in DAGDeltaAlgorithmImpl() local
193 if (succ_begin(Change) == succ_end(Change)) in DAGDeltaAlgorithmImpl()
194 Roots.push_back(Change); in DAGDeltaAlgorithmImpl()
199 change_ty Change = Worklist.back(); in DAGDeltaAlgorithmImpl() local
202 std::set<change_ty> &ChangeSuccs = SuccClosure[Change]; in DAGDeltaAlgorithmImpl()
203 for (pred_iterator_ty it = pred_begin(Change), in DAGDeltaAlgorithmImpl()
204 ie = pred_end(Change); it != ie; ++it) { in DAGDeltaAlgorithmImpl()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIModeRegister.cpp87 Status Change; member in BlockData
287 insertSetreg(MBB, InsertionPoint, TII, IPChange.delta(NewInfo->Change)); in processBlockPhase1()
301 NewInfo->Change = NewInfo->Change.merge(Setreg); in processBlockPhase1()
303 NewInfo->Change = NewInfo->Change.mergeUnknown(Mask); in processBlockPhase1()
305 } else if (!NewInfo->Change.isCompatible(InstrMode)) { in processBlockPhase1()
312 if (!IPChange.delta(NewInfo->Change).isCombinable(InstrMode)) { in processBlockPhase1()
318 NewInfo->Require = NewInfo->Change; in processBlockPhase1()
322 IPChange.delta(NewInfo->Change)); in processBlockPhase1()
323 IPChange = NewInfo->Change; in processBlockPhase1()
328 NewInfo->Change = NewInfo->Change.merge(InstrMode); in processBlockPhase1()
[all …]
H A DAMDGPUAttributor.cpp346 ChangeStatus Change = ChangeStatus::UNCHANGED; in updateImpl() local
358 Change = Change | clampStateAndIndicateChange(this->getState(), in updateImpl()
368 return Change; in updateImpl()
705 ChangeStatus Change = ChangeStatus::UNCHANGED; in updateImplImpl() local
717 Change |= in updateImplImpl()
727 return Change; in updateImplImpl()
849 ChangeStatus Change = ChangeStatus::UNCHANGED; in updateImpl() local
873 Change |= clampStateAndIndicateChange(this->getState(), CallerRangeState); in updateImpl()
882 return Change; in updateImpl()
1068 ChangeStatus Change = A.run(); in runImpl() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DWhitespaceManager.cpp22 bool WhitespaceManager::Change::IsBeforeInFile::operator()( in operator ()()
23 const Change &C1, const Change &C2) const { in operator ()()
34 WhitespaceManager::Change::Change(const FormatToken &Tok, in Change() function in clang::format::WhitespaceManager::Change
60 Changes.push_back(Change(Tok, /*CreateReplacement=*/true, Tok.WhitespaceRange, in replaceWhitespace()
70 Changes.push_back(Change(Tok, /*CreateReplacement=*/false, in addUntouchableToken()
96 Change(Tok, /*CreateReplacement=*/true, in replaceWhitespaceInToken()
107 llvm::sort(Changes, Change::IsBeforeInFile(SourceMgr)); in generateReplacements()
131 Change *LastOutsideTokenChange = &Changes[0]; in calculateLineBreakInformation()
233 const WhitespaceManager::Change *LastBlockComment = nullptr; in calculateLineBreakInformation()
234 for (auto &Change : Changes) { in calculateLineBreakInformation() local
[all …]
H A DWhitespaceManager.h89 struct Change { struct
94 bool operator()(const Change &C1, const Change &C2) const; argument
109 Change(const FormatToken &Tok, bool CreateReplacement,
159 const Change *StartOfBlockComment; argument
362 SmallVector<Change, 16> Changes;
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastTileConfig.cpp110 bool Change = false; in configBasicBlock() local
160 Change = true; in configBasicBlock()
164 return Change; in configBasicBlock()
178 bool Change = false; in runOnMachineFunction() local
182 Change |= configBasicBlock(MBB); in runOnMachineFunction()
184 return Change; in runOnMachineFunction()
H A DX86LowerAMXType.cpp998 bool Change = false; in combineLdSt() local
1014 Change = true; in combineLdSt()
1036 return Change; in combineLdSt()
1040 bool Change = false; in combineAMXcast() local
1072 Change = true; in combineAMXcast()
1085 Change = true; in combineAMXcast()
1097 Change |= combineLdSt(LiveCasts); in combineAMXcast()
1119 Change = true; in combineAMXcast()
1127 Change |= DCEInstruction(I, DeadInst, TLI); in combineAMXcast()
1132 return Change; in combineAMXcast()
[all …]
H A DX86FastPreTileConfig.cpp508 bool Change = false; in configBasicBlock() local
520 Change = true; in configBasicBlock()
652 return Change; in configBasicBlock()
677 bool Change = false; in runOnMachineFunction() local
690 Change |= configBasicBlock(*MBB); in runOnMachineFunction()
693 if (Change) in runOnMachineFunction()
697 return Change; in runOnMachineFunction()
/freebsd/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h104 void AddInsertDelta(unsigned OrigOffset, int Change) { in AddInsertDelta() argument
105 return Deltas.AddDelta(2*OrigOffset, Change); in AddInsertDelta()
110 void AddReplaceDelta(unsigned OrigOffset, int Change) { in AddReplaceDelta() argument
111 return Deltas.AddDelta(2*OrigOffset+1, Change); in AddReplaceDelta()
/freebsd/contrib/llvm-project/llvm/lib/SandboxIR/
H A DTracker.cpp151 void Tracker::track(std::unique_ptr<IRChangeBase> &&Change) { in track() argument
153 Changes.push_back(std::move(Change)); in track()
165 for (auto &Change : reverse(Changes)) in revert() local
166 Change->revert(); in revert()
173 for (auto &Change : Changes) in accept() local
174 Change->accept(); in accept()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DRenamingAction.cpp153 AtomicChange Change(SM, Ranges[0].getBegin()); in createRenameReplacements() local
156 Change.replace(SM, CharSourceRange::getCharRange(Range.value()), in createRenameReplacements()
161 Changes.push_back(std::move(Change)); in createRenameReplacements()
223 Expected<std::vector<AtomicChange>> Change = in HandleOneRename() local
225 if (!Change) { in HandleOneRename()
227 << "'! " << llvm::toString(Change.takeError()) << "\n"; in HandleOneRename()
230 convertChangesToFileReplacements(*Change, &FileToReplaces); in HandleOneRename()
/freebsd/contrib/file/magic/Magdir/
H A Dsysex134 >>>4 byte 0x20 SNDP (Sound Parameter Change)
139 >>>4 byte 0x21 MULP (Multi Parameter Change)
144 >>>4 byte 0x22 DRMP (Drum Map Parameter Change)
149 >>>4 byte 0x23 PATP (Sequencer Pattern Parameter Change)
154 >>>4 byte 0x24 GLBP (Global Parameter Parameter Change)
158 >>>4 byte 0x27 MODP (Mode Parameter Parameter Change)
163 >>>4 byte 0x20 SNDP (Sound Parameter Change)
168 >>>4 byte 0x21 MULP (Multi Parameter Change)
173 >>>4 byte 0x22 DRMP (Drum Map Parameter Change)
178 >>>4 byte 0x24 GLBP (Global Parameter Parameter Change)
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/
H A DExtract.cpp151 AtomicChange Change(SM, ExtractedDeclLocation); in createSourceReplacements() local
171 auto Err = Change.insert(SM, ExtractedDeclLocation, OS.str()); in createSourceReplacements()
187 auto Err = Change.replace( in createSourceReplacements()
195 return AtomicChanges{std::move(Change)}; in createSourceReplacements()
/freebsd/sys/contrib/openzfs/config/
H A Dkernel-make-request-fn.m471 dnl # Linux 5.9 API Change
82 dnl # Linux 5.14 API Change:
108 dnl # Linux 6.9 API Change:
150 dnl # Linux 5.7 API Change
169 dnl # CentOS Stream 4.18.0-257 API Change
192 dnl # Linux 4.4 API Change
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCFIFixup.cpp178 bool Change = false; in runOnMachineFunction()
227 Change = true;
232 Change = true;
239 return Change;
160 bool Change = false; runOnMachineFunction() local
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DInstallNameToolOpts.td31 HelpText<"Change rpath path name">;
34 HelpText<"Change dynamic shared library id">;
37 HelpText<"Change dependent shared library install name">;
/freebsd/crypto/openssh/
H A Dsshd_config53 # Change to yes if you don't trust ~/.ssh/known_hosts for
59 # Change to yes to enable built-in password authentication.
64 # Change to no to disable PAM authentication
/freebsd/contrib/tcsh/
H A Ded.inputl.c235 Char *Change; in Inputl() local
238 Change = Strsave(InputBuf); in Inputl()
239 cleanup_push(Change, xfree); in Inputl()
240 *Strchr(Change, '\n') = '\0'; in Inputl()
244 printprompt(2, short2str(Change)); in Inputl()
245 cleanup_until(Change); in Inputl()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp150 for (const auto &Change : Changes) { in createReplacementsForHeaders() local
151 for (llvm::StringRef Header : Change.getInsertedHeaders()) { in createReplacementsForHeaders()
164 for (const std::string &Header : Change.getRemovedHeaders()) { in createReplacementsForHeaders()
186 for (const auto &Change : Changes) in combineReplacementsInChanges() local
187 for (const auto &R : Change.getReplacements()) in combineReplacementsInChanges()
/freebsd/contrib/file/
H A DRELEASE-PROCEDURE19 - Change the "Version" from HEAD to the newly released version
20 - Change the "Date Order" to the current time
/freebsd/usr.sbin/bsdinstall/scripts/
H A Dwlanconfig65 --yes-label Change \
194 if f_yesno "Change regdomain/country ($DEF_REGDOMAIN/$DEF_COUNTRY)?"
/freebsd/sys/dev/mps/mpi/
H A Dmpi2_history.txt31 Fusion-MPT MPI 2.0 Header File Change History
269 * 06-26-07 02.00.02 Added IR Configuration Change List Event.
280 * for SAS Initiator Device Status Change Event data.
281 * Modified Reason Code defines for SAS Topology Change
312 * Added four new IR Configuration Change List Event data
315 * Change Event data.
318 * Added Multiplexing Status Change bit to the PhyStatus
319 * field of the SAS Topology Change List event data.
332 * Added two new reason codes for SAS Device Status Change
/freebsd/contrib/libpcap/ChmodBPF/
H A DStartupParameters.plist2 Description = "Change BPF permissions";
/freebsd/contrib/libedit/
H A DChangeLog3 Change default mappings:
/freebsd/bin/sh/tests/expansion/
H A Dcmdsubst8.08 # Change tabs to spaces.

123456789