Searched refs:reverse (Results 26 - 50 of 268) sorted by relevance

1234567891011

/freebsd-13-stable/usr.sbin/lpr/pac/
H A Dpac.c73 static int reverse; /* Reverse sort order */ variable
162 reverse++;
419 return(reverse ? -r : r);
/freebsd-13-stable/contrib/subversion/subversion/libsvn_diff/
H A Ddiff_tree.c511 svn_diff_tree_processor_t *reverse; local
516 reverse = svn_diff__tree_processor_create(rb, result_pool);
518 reverse->dir_opened = reverse_dir_opened;
519 reverse->dir_added = reverse_dir_added;
520 reverse->dir_deleted = reverse_dir_deleted;
521 reverse->dir_changed = reverse_dir_changed;
522 reverse->dir_closed = reverse_dir_closed;
524 reverse->file_opened = reverse_file_opened;
525 reverse->file_added = reverse_file_added;
526 reverse
[all...]
/freebsd-13-stable/contrib/bmake/mk/
H A Dldorder.mk23 # Due to the nature of make, the result will be in the reverse order
25 # So we need to reverse it before use.
61 # and finally we need to reverse the order of content
H A Dmeta2deps.py154 def sort_unique(list, cmp=None, key=None, reverse=False):
155 list.sort(cmp, key, reverse)
276 self.srctops.sort(reverse=True)
277 self.objroots.sort(reverse=True)
329 # these entries provide for reverse DIRDEPS lookup
/freebsd-13-stable/lib/libc/stdlib/
H A Dmerge.c258 #define reverse(bot, top) { \ macro
320 reverse(f1, f2-size);
325 reverse (f1, f2-size);
/freebsd-13-stable/contrib/tcpdump/
H A Dsmbutil.c439 int reverse = 0; local
491 reverse = !reverse;
508 x = reverse ? EXTRACT_16BITS(buf) :
519 x = reverse ? EXTRACT_32BITS(buf) :
530 x = reverse ? EXTRACT_64BITS(buf) :
543 x1 = reverse ? EXTRACT_32BITS(buf) :
545 x2 = reverse ? EXTRACT_32BITS(buf + 4) :
567 x = reverse ? EXTRACT_16BITS(buf) :
578 x = reverse
[all...]
/freebsd-13-stable/contrib/cortex-strings/scripts/
H A Dplot.py75 variants.reverse()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DDebugLoc.cpp107 for (const DILocation *MD : reverse(InlinedAtLocations))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAnalysisManager.cpp92 // cache and so we walk the preorder list in reverse to form a valid
94 for (Loop *L : reverse(PreOrderLoops)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DARMException.cpp109 for (const GlobalValue *GV : reverse(TypeInfos)) {
/freebsd-13-stable/usr.bin/ul/
H A Dul.c95 static void reverse(void);
233 reverse();
251 reverse();
454 reverse(void) function
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp549 for (auto &MI : reverse(*Header)) {
962 for (auto &MBB : reverse(MF)) {
964 for (auto &MI : reverse(MBB)) {
1003 for (auto &MBB : reverse(MF)) {
1005 for (auto &MI : reverse(MBB)) {
1294 for (auto &MBB : reverse(MF)) {
1295 for (auto &MI : reverse(MBB)) {
1338 for (auto X : reverse(Stack)) {
1368 for (MachineBasicBlock &MBB : reverse(MF)) {
1369 for (MachineInstr &MI : reverse(MB
[all...]
H A DWebAssemblyExceptionInfo.cpp83 std::reverse(WE->getSubExceptions().begin(), WE->getSubExceptions().end());
H A DWebAssemblyExceptionInfo.h100 std::reverse(Blocks.begin() + From, Blocks.end());
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dvarmod-subst.exp36 1 two 3 reverse solidus
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp161 // Sorts the CFGs blocks using a reverse post-order depth-first traversal.
179 // Performs a reverse topological traversal, starting from the exit block and
182 // before their post-dominator (because it's a reverse topological traversal).
234 // achieved visiting the nodes in reverse topological order.
318 for (auto *Block : Blocks.reverse()) {
329 for (auto *Block : Blocks.reverse()) {
/freebsd-13-stable/crypto/openssl/apps/
H A Dpasswd.c51 int reverse, size_t pw_maxlen, passwd_modes mode);
68 {"reverse", OPT_REVERSE, '-', "Switch table columns"},
93 int passed_salt = 0, quiet = 0, table = 0, reverse = 0; local
130 reverse = 1;
260 quiet, table, reverse, pw_maxlen, mode))
284 table, reverse, pw_maxlen, mode))
776 int reverse, size_t pw_maxlen, passwd_modes mode)
843 if (table && !reverse)
845 else if (table && reverse)
774 do_passwd(int passed_salt, char **salt_p, char **salt_malloc_p, char *passwd, BIO *out, int quiet, int table, int reverse, size_t pw_maxlen, passwd_modes mode) argument
/freebsd-13-stable/usr.bin/tail/
H A Dtail.c105 * number of characters in reverse order. Finally, the default for
182 * If displaying in reverse, don't permit follow option, and convert
247 reverse(fp, fn, style, off, &sb);
270 reverse(stdin, fn, style, off, &sb);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DSourceManager.h137 size_t DisplayMoreWithLineNumbers(Stream *s, uint32_t count, bool reverse,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValuePathMappings.cpp183 // Sort and then erase in reverse so indexes are always valid
185 for (auto index : llvm::reverse(remove_indexes))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DDynamicLibrary.cpp83 for (void *Handle : llvm::reverse(Handles)) {
/freebsd-13-stable/share/mk/
H A Dmeta2deps.py155 def sort_unique(list, cmp=None, key=None, reverse=False):
156 list.sort(cmp, key, reverse)
277 self.srctops.sort(reverse=True)
278 self.objroots.sort(reverse=True)
330 # these entries provide for reverse DIRDEPS lookup
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DDominators.h293 auto RChildren = reverse(children<NodePtr>(N));
323 auto RChildren = reverse(children<NodePtr>(N));
H A DThreadSafetyUtil.h206 llvm::iterator_range<reverse_iterator> reverse() {
210 llvm::iterator_range<const_reverse_iterator> reverse() const {
/freebsd-13-stable/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_check.c165 static char *reverse(const char *src) function
320 if ((reversed = reverse(newpass))) {

Completed in 164 milliseconds

1234567891011