| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | DAGDeltaAlgorithm.cpp | 181 for (change_ty Change : Changes) { in DAGDeltaAlgorithmImpl() local 182 Predecessors.try_emplace(Change); in DAGDeltaAlgorithmImpl() 183 Successors.try_emplace(Change); in DAGDeltaAlgorithmImpl() 191 for (change_ty Change : Changes) in DAGDeltaAlgorithmImpl() local 192 if (succ_begin(Change) == succ_end(Change)) in DAGDeltaAlgorithmImpl() 193 Roots.push_back(Change); in DAGDeltaAlgorithmImpl() 198 change_ty Change = Worklist.back(); in DAGDeltaAlgorithmImpl() local 201 std::set<change_ty> &ChangeSuccs = SuccClosure[Change]; in DAGDeltaAlgorithmImpl() 202 for (pred_iterator_ty it = pred_begin(Change), in DAGDeltaAlgorithmImpl() 203 ie = pred_end(Change); it != ie; ++it) { in DAGDeltaAlgorithmImpl() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/SandboxIR/ |
| H A D | PassManager.cpp | 14 bool Change = false; in runOnFunction() local 16 Change |= Pass->runOnFunction(F, A); in runOnFunction() 20 return Change; in runOnFunction() 24 bool Change = false; in runOnRegion() local 26 Change |= Pass->runOnRegion(R, A); in runOnRegion() 30 return Change; in runOnRegion()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIModeRegister.cpp | 87 Status Change; member in BlockData 286 insertSetreg(MBB, InsertionPoint, TII, IPChange.delta(NewInfo->Change)); in processBlockPhase1() 300 NewInfo->Change = NewInfo->Change.merge(Setreg); in processBlockPhase1() 302 NewInfo->Change = NewInfo->Change.mergeUnknown(Mask); in processBlockPhase1() 304 } else if (!NewInfo->Change.isCompatible(InstrMode)) { in processBlockPhase1() 311 if (!IPChange.delta(NewInfo->Change).isCombinable(InstrMode)) { in processBlockPhase1() 317 NewInfo->Require = NewInfo->Change; in processBlockPhase1() 321 IPChange.delta(NewInfo->Change)); in processBlockPhase1() 322 IPChange = NewInfo->Change; in processBlockPhase1() 327 NewInfo->Change = NewInfo->Change.merge(InstrMode); in processBlockPhase1() [all …]
|
| H A D | AMDGPUAttributor.cpp | 400 ChangeStatus Change = ChangeStatus::UNCHANGED; in updateImpl() local 412 Change = Change | clampStateAndIndicateChange(this->getState(), in updateImpl() 422 return Change; in updateImpl() 821 ChangeStatus Change = ChangeStatus::UNCHANGED; in updateImplImpl() local 833 Change |= in updateImplImpl() 845 return Change; in updateImplImpl() 1027 ChangeStatus Change = ChangeStatus::UNCHANGED; in updateImpl() local 1039 Change |= in updateImpl() 1050 return Change; in updateImpl() 1133 ChangeStatus Change = ChangeStatus::UNCHANGED; in updateImpl() local [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | WhitespaceManager.cpp | 22 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 D | WhitespaceManager.h | 89 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 352 void appendNewlineText(std::string &Text, const Change &C); 362 SmallVector<Change, 16> Changes;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86FastTileConfig.cpp | 120 bool Change = false; in configBasicBlock() local 173 Change = true; in configBasicBlock() 177 return Change; in configBasicBlock() 191 bool Change = false; in runOnMachineFunction() local 195 Change |= configBasicBlock(MBB); in runOnMachineFunction() 197 return Change; in runOnMachineFunction()
|
| H A D | X86LowerAMXType.cpp | 1179 bool Change = false; in combineLdSt() local 1195 Change = true; in combineLdSt() 1216 return Change; in combineLdSt() 1220 bool Change = false; in combineAMXcast() local 1252 Change = true; in combineAMXcast() 1265 Change = true; in combineAMXcast() 1277 Change |= combineLdSt(LiveCasts); in combineAMXcast() 1299 Change = true; in combineAMXcast() 1307 Change |= DCEInstruction(I, DeadInst, TLI); in combineAMXcast() 1312 return Change; in combineAMXcast() [all …]
|
| H A D | X86FastPreTileConfig.cpp | 519 bool Change = false; in configBasicBlock() local 531 Change = true; in configBasicBlock() 675 return Change; in configBasicBlock() 700 bool Change = false; in runOnMachineFunction() local 713 Change |= configBasicBlock(*MBB); in runOnMachineFunction() 716 if (Change) in runOnMachineFunction() 720 return Change; in runOnMachineFunction()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | RewriteBuffer.h | 107 void AddInsertDelta(unsigned OrigOffset, int Change) { in AddInsertDelta() argument 108 return Deltas.AddDelta(2 * OrigOffset, Change); in AddInsertDelta() 113 void AddReplaceDelta(unsigned OrigOffset, int Change) { in AddReplaceDelta() argument 114 return Deltas.AddDelta(2 * OrigOffset + 1, Change); in AddReplaceDelta()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SandboxVectorizer/Passes/ |
| H A D | RegionsFromMetadata.cpp | 23 bool Change = false; in runOnFunction() local 25 Change |= RPM.runOnRegion(*R, A); in runOnFunction() 27 return Change; in runOnFunction()
|
| H A D | PackReuse.cpp | 16 return Change; in runOnRegion() 48 Change = true; in runOnRegion() 50 return Change; in runOnRegion()
|
| H A D | SeedCollection.cpp | 40 bool Change = false; in runOnFunction() local 96 Change |= RPM.runOnRegion(Rgn, A); in runOnFunction() 102 return Change; in runOnFunction()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/ |
| H A D | RenamingAction.cpp | 144 AtomicChange Change(SM, Ranges[0].getBegin()); in createRenameReplacements() local 147 Change.replace(SM, CharSourceRange::getCharRange(Range.value()), in createRenameReplacements() 152 Changes.push_back(std::move(Change)); in createRenameReplacements() 214 Expected<std::vector<AtomicChange>> Change = in HandleOneRename() local 216 if (!Change) { in HandleOneRename() 218 << "'! " << llvm::toString(Change.takeError()) << "\n"; in HandleOneRename() 221 convertChangesToFileReplacements(*Change, &FileToReplaces); in HandleOneRename()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/ |
| H A D | Extract.cpp | 151 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/contrib/file/magic/Magdir/ |
| H A D | sysex | 134 >>>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/sys/contrib/openzfs/config/ |
| H A D | kernel-make-request-fn.m4 | 72 dnl # Linux 5.9 API Change 83 dnl # Linux 5.14 API Change: 109 dnl # Linux 6.9 API Change: 151 dnl # Linux 5.7 API Change 170 dnl # CentOS Stream 4.18.0-257 API Change 193 dnl # Linux 4.4 API Change
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
| H A D | InstallNameToolOpts.td | 31 HelpText<"Change rpath path name">; 34 HelpText<"Change dynamic shared library id">; 37 HelpText<"Change dependent shared library install name">;
|
| /freebsd/crypto/openssl/doc/designs/ddd/ |
| H A D | REPORT.md | 73 - Change of method (as for ddd-01-conn-blocking); 98 - Change of method name (as for ddd-01-conn-blocking); 145 - Change of method, this time using method `QUIC_client_thread_method` rather 161 - Change of method name (`QUIC_client_thread_method` was renamed to 180 - Change of method (as for ddd-01-conn-blocking); 189 - Change of method name (as for ddd-01-conn-blocking); 201 - Change of method (as for ddd-01-conn-blocking); 221 - Change of method name (as for ddd-01-conn-blocking); 245 - Change of method (as for ddd-01-conn-blocking); 263 - Change of method name (as for ddd-01-conn-blocking); [all …]
|
| /freebsd/contrib/tcsh/ |
| H A D | ed.inputl.c | 235 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/file/ |
| H A D | RELEASE-PROCEDURE | 19 - Change the "Version" from HEAD to the newly released version 20 - Change the "Date Order" to the current time
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SandboxVectorizer/ |
| H A D | SandboxVectorizer.cpp | 137 bool Change = FPM.runOnFunction(F, A); in runImpl() local 143 return Change; in runImpl()
|
| /freebsd/crypto/openssh/ |
| H A D | sshd_config | 53 # 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 keyboard-interactive authentication. Depending on
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | CFIFixup.cpp | 324 bool Change = false; in runOnMachineFunction() local 339 Change |= in runOnMachineFunction() 343 return Change; in runOnMachineFunction()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/ |
| H A D | AtomicChange.cpp | 150 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()
|