Searched refs:reverse (Results 51 - 75 of 268) sorted by relevance

1234567891011

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopPass.cpp99 for (Loop *I : reverse(*L))
142 // Populate the loop queue in reverse program order. There is no clear need to
143 // process sibling loops in either forward or reverse order. There may be some
148 // Note that LoopInfo::iterator visits loops in reverse program
151 for (Loop *L : reverse(*LI))
H A DCGSCCPassManager.cpp424 for (SCC &NewC : llvm::reverse(make_range(std::next(NewSCCRange.begin()),
600 // The RC worklist is in reverse postorder, so we enqueue the new ones in
605 for (RefSCC *NewRC : llvm::reverse(make_range(std::next(NewRefSCCs.begin()),
727 // Enqueue in reverse order as we pop off the back of the worklist.
728 for (SCC &MovedC : llvm::reverse(make_range(RC->begin() + InitialSCCIndex,
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_strings.lua105 assert(string.reverse"" == "")
106 assert(string.reverse"\0\1\2\3" == "\3\2\1\0")
107 assert(string.reverse"\0001234" == "4321\0")
/freebsd-13-stable/contrib/ofed/opensm/opensm/
H A Dosm_mesh.c1029 "no reverse link\n");
1406 int *reverse; local
1411 reverse = malloc(num_switches * sizeof(int));
1413 if (!comp || !reverse || !switches) {
1428 reverse[comp[i].index] = i;
1436 reverse[s->node->links[j]->switch_id];
1447 if (reverse)
1448 free(reverse);
/freebsd-13-stable/contrib/ncurses/ncurses/base/
H A Dlib_color.c990 int reverse,
994 CallDriver_4(SP_PARM, td_docolor, old_pair, pair, reverse, outc);
1052 if (reverse) {
1072 _nc_do_color(int old_pair, int pair, int reverse, NCURSES_OUTC outc) argument
1078 reverse,
987 _nc_do_color(NCURSES_SP_DCLx int old_pair, int pair, int reverse, NCURSES_SP_OUTC outc) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DSourceManager.cpp266 Stream *s, uint32_t count, bool reverse, const SymbolContextList *bp_locs) {
281 if (reverse && m_last_line == 1)
290 if (reverse) {
291 // If this is the first time we've done a reverse, then back up one
265 DisplayMoreWithLineNumbers( Stream *s, uint32_t count, bool reverse, const SymbolContextList *bp_locs) argument
/freebsd-13-stable/contrib/subversion/subversion/include/
H A Dsvn_diff.h1091 * If the @a hunk is being interpreted in reverse (i.e. the reverse
1286 * Indicates whether the patch is being interpreted in reverse.
1289 svn_boolean_t reverse;
1293 * forward merges and one for reverse merges.
1356 * If @a reverse is TRUE, invert the patch while parsing it.
1366 svn_boolean_t reverse,
1281 svn_boolean_t reverse; member in struct:svn_patch_t
/freebsd-13-stable/contrib/bmake/mk/
H A Ddirdeps-options.mk43 # TARGET_SPEC_VAR (in reverse order) before using MK_FOO.
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DASTSelection.cpp423 for (const auto &Parent : llvm::reverse(Parents)) {
441 for (const auto &Parent : llvm::reverse(Parents)) {
/freebsd-13-stable/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_iter.c173 boolean_t reverse)
185 col->sc_reverse = reverse;
172 zfs_add_sort_column(zfs_sort_column_t **sc, const char *name, boolean_t reverse) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp181 // - walkForwards: Iterate over SeenInsts in reverse order, so we visit
242 for (auto &It : reverse(SeenInsts)) {
513 for (auto &I : reverse(ConvertedInsts))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/XRay/
H A DProfile.cpp147 auto RootToLeafPath = reverse(P);
359 transform(reverse(TSD), std::back_inserter(Path),
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDirectiveEmitter.cpp154 for (auto Ns : llvm::reverse(Namespaces))
371 for (auto Ns : llvm::reverse(Namespaces))
/freebsd-13-stable/share/mk/
H A Ddirdeps-options.mk44 # TARGET_SPEC_VAR (in reverse order) before using MK_FOO.
/freebsd-13-stable/crypto/openssl/apps/
H A DCA.pl.in63 } reverse grep($$args_ref[$_] =~ /$arg_prefix/, 0..$#$args_ref);
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DSymbolTable.cpp253 // definitions in the reverse order.
254 for (VersionDefinition &v : llvm::reverse(config->versionDefinitions))
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationReplayServer.cpp202 // We want to manipulate the vector like a stack so we need to reverse the
204 std::reverse(m_packet_history.begin(), m_packet_history.end());
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DScopeInfo.cpp212 llvm::find(llvm::reverse(Uses->second), WeakUseTy(E, true));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DContinuationRecordBuilder.cpp221 // sequence that we return to the caller contains the records in reverse
232 for (uint32_t Offset : reverse(SO)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFixIrreducible.cpp279 // match. So we discover the headers using the reverse of the block order.
282 for (auto BB : reverse(Blocks)) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAutomaton.h67 /// traversed path is stored in reverse order with the latest state as the
149 std::reverse(P.begin(), P.end());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUAnnotateKernelFeatures.cpp230 for (auto *Node : reverse(NodeList)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerGlobalDtors.cpp165 for (auto Dtor : reverse(AssociatedAndMore.second))
H A DWebAssemblyRegStackify.cpp697 Worklist.push_back(reverse(Range));
718 Worklist.push_back(reverse(Range));
727 Worklist.back() = reverse(Instr->explicit_uses());
835 // Iterate through the inputs in reverse order, since we'll be pulling
980 for (MachineOperand &MO : reverse(MI.explicit_uses())) {
/freebsd-13-stable/usr.bin/tail/
H A Dreverse.c37 static char sccsid[] = "@(#)reverse.c 8.1 (Berkeley) 6/6/93";
67 * reverse -- display input in reverse order by line.
85 reverse(FILE *fp, const char *fn, enum STYLE style, off_t off, struct stat *sbp) function
111 * r_reg -- display a regular file in reverse order by line.
186 * r_buf -- display a non-regular file in reverse order by line.
189 * doubly linked list of buffers and then displays them in reverse order.
244 * Now print the lines in reverse order

Completed in 195 milliseconds

1234567891011