Home
last modified time | relevance | path

Searched full:updates (Results 1 – 25 of 1796) sorted by relevance

12345678910>>...72

/freebsd-src/contrib/dialog/package/debian/
H A Dchangelog3 * maintenance updates
9 * maintenance updates
15 * maintenance updates
21 * maintenance updates
27 * maintenance updates
33 * maintenance updates
39 * maintenance updates
45 * maintenance updates
51 * maintenance updates
57 * maintenance updates
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDomTreeUpdater.h46 /// These methods provide APIs for submitting updates to the DominatorTree and in DomTreeUpdater()
51 /// 1. Eager UpdateStrategy: Updates are submitted and then flushed in isLazy()
53 /// 2. Lazy UpdateStrategy: Updates are submitted but only flushed when you
55 /// when you submit a bunch of updates multiple times which can then
56 /// add up to a large number of updates between two queries on the
57 /// DominatorTree. The incremental updater can reschedule the updates or in hasDomTree()
59 /// process depending on the number of updates.
H A DMemorySSAUpdater.h12 // automatically updates the MemorySSA IR to be correct.
120 /// Apply CFG updates, analogous with the DT edge updates. By default, the
122 /// update the DT with the same updates.
123 void applyUpdates(ArrayRef<CFGUpdate> Updates, DominatorTree &DT,
125 /// Apply CFG insert updates, analogous with the DT edge updates.
126 void applyInsertUpdates(ArrayRef<CFGUpdate> Updates, DominatorTree &DT);
185 /// which will perform all the necessary MSSA updates. If these APIs are used,
/freebsd-src/usr.sbin/freebsd-update/
H A Dfreebsd-update.831 .Nd fetch and install binary updates to FreeBSD
50 updates to the
53 .Sh BINARY UPDATES AVAILABILITY
54 Binary updates are not available for every single
58 In general, binary updates are available for ALPHA, BETA, RC, and RELEASE
85 Security Team only builds updates for releases shipped in binary form by the
163 all available binary updates.
165 Sleep a random amount of time between 1 and 3600 seconds, then download updates
169 If updates are downloaded, an email will be sent (to root or a different
176 machines will simultaneously attempt to fetch updates.
[all …]
H A Dfreebsd-update.sh51 -s server -- Server from which to fetch updates
60 fetch -- Fetch updates from server
61 cron -- Sleep rand(3600) seconds, fetch updates, and send an
62 email if updates were found
64 updatesready -- Check if there are fetched updates ready to install
65 install -- Install downloaded updates or upgrades
66 rollback -- Uninstall most recently installed updates
144 # Set the name of the server (pool) from which to fetch updates
245 # Add to the list of paths under which updates will be ignored.
259 # Add to the list of paths within which updates wil
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Analysis/
H A DDomTreeUpdater.cpp54 // The DT and PDT require the nodes related to updates in isSelfDominance()
230 applyUpdates(ArrayRef<DominatorTree::UpdateType> Updates) applyUpdates() argument
250 applyUpdatesPermissive(ArrayRef<DominatorTree::UpdateType> Updates) applyUpdatesPermissive() argument
/freebsd-src/share/man/man4/
H A Dffs.478 .Ss Soft Updates
81 The soft updates feature tracks writes to the disk
86 To create a new file system with the soft updates
101 It is possible to enable soft updates on an
109 Soft updates can also add journaling that reduces the time spent by
117 To create a new file system with both the soft updates
118 and soft updates journaling enabled,
130 It is possible to enable soft updates journaling on an
138 This flag automatically enables the soft updates feature
144 already exists before enabling the soft updates journaling.
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUUnifyDivergentExitNodes.cpp161 std::vector<DominatorTree::UpdateType> Updates; in unifyReturnBlockSet() local
162 Updates.reserve(ReturningBlocks.size()); in unifyReturnBlockSet()
172 Updates.emplace_back(DominatorTree::Insert, BB, NewRetBlock); in unifyReturnBlockSet()
176 DTU.applyUpdates(Updates); in unifyReturnBlockSet()
177 Updates.clear(); in unifyReturnBlockSet()
207 std::vector<DominatorTree::UpdateType> Updates; in run() local
242 Updates.emplace_back(DominatorTree::Insert, BB, DummyReturnBB); in run()
249 Updates.reserve(Updates.size() + 2 * Successors.size() + 2); in run()
253 Updates in run()
[all...]
/freebsd-src/contrib/ldns/drill/
H A DChangeLog.22-nov-200546 * big configure.ac and Makefile.in updates (made more general)
57 * configure.ac updates
58 * secure resolving updates (still doesn't work)
72 * Numerous smaller updates in documentation
79 * build updates
97 * lots of various updates
103 * --trace updates
104 * --chase updates
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DIndirectBrExpandPass.cpp178 SmallVector<DominatorTree::UpdateType, 8> Updates; in runImpl() local
180 Updates.reserve(IndirectBrSuccs.size()); in runImpl()
184 Updates.push_back({DominatorTree::Delete, IBr->getParent(), SuccBB}); in runImpl()
190 assert(Updates.size() == IndirectBrSuccs.size() && in runImpl()
192 DTU->applyUpdates(Updates); in runImpl()
216 SmallVector<DominatorTree::UpdateType, 8> Updates; in runImpl()
225 Updates.reserve(IndirectBrSuccs.size()); in runImpl()
227 Updates.push_back({DominatorTree::Delete, IBr->getParent(), SuccBB}); in runImpl()
228 assert(Updates.size() == IndirectBrSuccs.size() && in runImpl()
244 Updates in runImpl()
215 SmallVector<DominatorTree::UpdateType, 8> Updates; runImpl() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Support/
H A DCFGDiff.h28 // also equivalent to applying updates in reverse.
53 // a getChildren method to get a Node's children based on the additional updates
65 // By default, it is assumed that, given a CFG and a set of updates, we wish
66 // to apply these updates as given. If UpdatedAreReverseApplied is set, the
67 // updates will be applied in reverse: deleted edges are considered re-added
71 // Keep the list of legalized updates for a deterministic order of updates
72 // when using a GraphDiff for incremental updates in the DominatorTree.
95 GraphDiff(ArrayRef<cfg::Update<NodePtr>> Updates,
97 cfg::LegalizeUpdates<NodePtr>(Updates, LegalizedUpdates, InverseGraph);
114 assert(!LegalizedUpdates.empty() && "No updates to apply!"); in popUpdateForIncrementalUpdates()
H A DBinaryStreamReader.h45 /// Updates the stream's offset to point after the newly read data.
53 /// depends on the implementation of the underlying stream. Updates the
62 /// buffer into \p Dest. Updates the stream's offset to point after the newly
103 /// on the implementation of the underlying stream. Updates the stream's
118 /// on the implementation of the underlying stream. Updates the stream's
126 /// equivalent to calling getUnderlyingStream().slice(Offset). Updates the
135 /// Updates the stream's offset to point after the newly read object. Never
144 /// Updates the stream's offset to point after the newly read object. Never
154 /// Updates the stream's offset to point after the newly read object. Whether
171 /// type T can be safely treated in this manner. Updates the stream's offset
[all …]
H A DGenericDomTree.h201 ArrayRef<typename DomTreeT::UpdateType> Updates);
531 /// This function should be used when there were multiple CFG updates after
532 /// the last dominator tree update. It takes care of performing the updates
535 /// The functions expects the sequence of updates to be balanced. Eg.:
545 /// The applyUpdates function can reorder the updates and remove redundant
551 /// updates on reverse edges internally (so there's no need to swap the
553 /// The type of updates is the same for DomTreeBase<T> and PostDomTreeBase<T>
556 /// \param Updates An ordered sequence of updates to perform. The current CFG
557 /// and the reverse of these updates provide
[all...]
H A DCFGUpdate.h56 // LegalizeUpdates function simplifies updates assuming a graph structure.
58 // a) It removes redundant updates, which makes it easier to reverse-apply
60 // b) It optimizes away updates that cancel each other out, as the end result
69 // of updates contains multiple updates of the same kind and we assert for
98 // of work needed to perform the series of updates.
/freebsd-src/share/man/man5/
H A Dfreebsd-update.conf.557 these are part of updates downloaded.
72 part of updates downloaded.
213 updates to paths which start with a string matching one of
226 when installing updates if these have been modified locally.
229 of the RSA key which will be trusted to sign updates.
237 updates to paths which start with a string matching one of
244 server or server pool from which updates will be downloaded.
265 updates to paths which start with a string matching one of
275 in which temporary files and downloaded updates will be stored.
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp64 SmallVectorImpl<DominatorTree::UpdateType> *Updates, in detachDeadBlocks() argument
72 if (Updates && UniqueSuccessors.insert(Succ).second) in detachDeadBlocks()
73 Updates->push_back({DominatorTree::Delete, BB, Succ}); in detachDeadBlocks()
92 "applying corresponding DTU updates."); in detachDeadBlocks()
112 SmallVector<DominatorTree::UpdateType, 4> Updates; in DeleteDeadBlocks() local
113 detachDeadBlocks(BBs, DTU ? &Updates : nullptr, KeepOneInputPHIs); in DeleteDeadBlocks()
116 DTU->applyUpdates(Updates); in DeleteDeadBlocks()
157 MemDep->removeInstruction(PN); // Memdep updates AA itself. in FoldSingleEntryPHINodes()
238 assert(!DTU && "cannot use both DT and DTU for updates"); in MergeBlockIntoPredecessor()
249 std::vector<DominatorTree::UpdateType> Updates; in MergeBlockIntoPredecessor() local
903 SmallVector<DominatorTree::UpdateType, 3> Updates; ehAwareSplitEdge() local
1042 SmallVector<DominatorTree::UpdateType, 8> Updates; SplitBlockImpl() local
1149 SmallVector<DominatorTree::UpdateType, 8> Updates; UpdateAnalysisInformation() local
1646 SmallVector<DominatorTree::UpdateType, 8> Updates; SplitBlockAndInsertIfThenElse() local
2141 SmallVector<DominatorTree::UpdateType, 16> Updates; CreateControlFlowHub() local
[all...]
/freebsd-src/usr.sbin/rpc.yppasswdd/
H A Drpc.yppasswdd.865 template file and then updates the NIS
76 These updates are typically done using
121 sophisticated updates on the NIS passwd maps.
262 is invoked with this flag, it will perform map updates in place.
278 updates for the super-user on the NIS master server.
282 flag will cause it to log informational messages for all updates.
299 ports from successfully submitting password updates.
350 This is not a problem for password updates since the plaintext password
/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/limits/
H A Dsnapshot_count.ksh26 # 3. Verify 'zfs rename' updates counts across different hierarchies
27 # 4. Verify 'zfs promote' updates counts across different hierarchies
69 # 3. Verify 'zfs rename' updates counts across different hierarchies
78 # 4. Verify 'zfs promote' updates counts across different hierarchies
/freebsd-src/sys/contrib/openzfs/include/sys/
H A Dmntent.h60 #define MNTOPT_DIRSYNC "dirsync" /* do dir updates synchronously */
71 #define MNTOPT_RELATIME "relatime" /* allow relative time updates */
72 #define MNTOPT_NORELATIME "norelatime" /* do not allow relative time updates */
73 #define MNTOPT_STRICTATIME "strictatime" /* strict access time updates */
74 #define MNTOPT_NOSTRICTATIME "nostrictatime" /* No strict access time updates */
/freebsd-src/include/protocols/
H A Drouted.h149 * If changes occur between updates, dynamic updates containing only changes
151 * between MIN_WAITTIME and MAX_WAITTIME, and no additional dynamic updates
155 * After EXPIRE_TIME without updates, the entry is marked invalid,
160 #define MIN_WAITTIME 2 /* min sec until next flash updates */
/freebsd-src/share/man/man9/
H A Dscheduler.9196 It updates the group's estimated CPU time and then adjusts the priority via
201 function updates all process priorities.
202 First, it updates statistics that track how long processes have been in various
204 Secondly, it updates the estimated CPU time for the current process such
213 Thirdly, it updates the %CPU estimate used by utilities such as
H A Dvm_map_entry_resize_free.9138 updates both the new entry and the previous entry, and that
140 updates the previous entry.
151 function updates the free space variables in the given
183 which updates both the new entry and the previous entry.
/freebsd-src/contrib/netbsd-tests/fs/tmpfs/
H A Dt_times.sh35 "manipulating it updates times correctly"
69 "manipulating it updates times correctly"
94 "manipulating it updates times correctly"
115 atf_set "descr" "Tests that linking to an existing file updates" \
137 atf_set "descr" "Tests that renaming an existing file updates" \
/freebsd-src/usr.sbin/cpucontrol/
H A Dcpucontrol.889 It can also be used to apply CPU firmware updates.
137 Apply CPU firmware updates.
141 and apply all firmware updates available for this CPU.
188 To perform firmware updates on CPU 0 from images located at
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.h73 /// Callback routine which updates the current list of loaded modules based
79 /// Helper method for RendezvousBreakpointHit. Updates LLDB's current set
83 /// Updates the load address of every allocatable section in \p module.
122 /// Checks to see if the target module has changed, updates the target

12345678910>>...72