Home
last modified time | relevance | path

Searched +full:- +full:- +full:reverse (Results 1 – 25 of 1183) sorted by relevance

12345678910>>...48

/external/eigen/test/
Darray_reverse.cpp4 // Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
16 template<typename MatrixType> void reverse(const MatrixType& m) in reverse() function
29 MatrixType m1_r = m1.reverse(); in reverse()
30 // Verify that MatrixBase::reverse() works in reverse()
33 VERIFY_IS_APPROX(m1_r(i, j), m1(rows - 1 - i, cols - 1 - j)); in reverse()
37 Reverse<MatrixType> m1_rd(m1); in reverse()
38 // Verify that a Reverse default (in both directions) of an expression works in reverse()
41 VERIFY_IS_APPROX(m1_rd(i, j), m1(rows - 1 - i, cols - 1 - j)); in reverse()
45 Reverse<MatrixType, BothDirections> m1_rb(m1); in reverse()
46 // Verify that a Reverse in both directions of an expression works in reverse()
[all …]
/external/eigen/Eigen/src/Core/
DReverse.h4 // Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
6 // Copyright (C) 2009-2010 Gael Guennebaud <gael.guennebaud@inria.fr>
20 struct traits<Reverse<MatrixType, Direction> >
49 /** \class Reverse
52 * \brief Expression of the reverse of a vector or matrix
54 * \tparam MatrixType the type of the object of which we are taking the reverse
55 …* \tparam Direction defines the direction of the reverse operation, can be Vertical, Horizontal, o…
57 * This class represents an expression of the reverse of a vector.
58 * It is the return type of MatrixBase::reverse() and VectorwiseOp::reverse()
61 * \sa MatrixBase::reverse(), VectorwiseOp::reverse()
[all …]
/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.reverse/
Dadaptor.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 // std::views::reverse
30 // views::reverse(x) is equivalent to x.base() if x is a reverse_view in test()
35 std::same_as<BidirRange> auto result = std::views::reverse(reversed); in test()
42 std::same_as<BidirRange> auto result = std::views::reverse(std::views::reverse(view)); in test()
48 // views::reverse(x) is equivalent to subrange{end, begin, size} if x is a in test()
49 // sized subrange over reverse iterators in test()
60 std::same_as<Subrange> auto result = std::views::reverse(subrange); in test()
[all …]
/external/python/bumble/bumble/
Dcrypto.py1 # Copyright 2021-2022 Google LLC
7 # https://www.apache.org/licenses/LICENSE-2.0
15 # -----------------------------------------------------------------------------
18 # See Bluetooth spec Vol 3, Part H - 2.2 CRYPTOGRAPHIC TOOLBOX
19 # -----------------------------------------------------------------------------
21 # -----------------------------------------------------------------------------
23 # -----------------------------------------------------------------------------
43 # -----------------------------------------------------------------------------
45 # -----------------------------------------------------------------------------
49 # -----------------------------------------------------------------------------
[all …]
/external/deqp/android/cts/main/vk-main-2022-03-01/
Dmemory.txt1 dEQP-VK.memory.binding.priority_dynamic.aliasing.suballocated.buffer_1048577
2 dEQP-VK.memory.binding.priority_dynamic.aliasing.suballocated.buffer_257
3 dEQP-VK.memory.binding.priority_dynamic.aliasing.suballocated.buffer_33
4 dEQP-VK.memory.binding.priority_dynamic.aliasing.suballocated.buffer_4087
5 dEQP-VK.memory.binding.priority_dynamic.aliasing.suballocated.buffer_8095
6 dEQP-VK.memory.binding.priority_dynamic.aliasing.suballocated.image_257_257
7 dEQP-VK.memory.binding.priority_dynamic.aliasing.suballocated.image_257_33
8 dEQP-VK.memory.binding.priority_dynamic.aliasing.suballocated.image_257_8
9 dEQP-VK.memory.binding.priority_dynamic.aliasing.suballocated.image_33_257
10 dEQP-VK.memory.binding.priority_dynamic.aliasing.suballocated.image_33_33
[all …]
/external/rust/crates/gdbstub/src/target/ext/base/
Dreverse_exec.rs1 //! Support for reverse debugging targets.
5 /// Target Extension - Reverse continue for targets.
10 /// [Reverse continue] the target.
12 /// Reverse continue allows the target to run backwards until it reaches the
15 /// [Reverse continue]: https://sourceware.org/gdb/current/onlinedocs/gdb/Reverse-Execution.html
16 fn reverse_cont(&mut self) -> Result<(), Self::Error>; in reverse_cont()
23 /// Target Extension - Reverse stepping for targets.
28 /// [Reverse step] the specified `Tid`.
32 /// Reverse stepping allows the target to run backwards by one "step" -
35 /// [Reverse step]: https://sourceware.org/gdb/current/onlinedocs/gdb/Reverse-Execution.html
[all …]
/external/sdv/vsomeip/third_party/boost/proto/doc/reference/functional/fusion/
Dreverse.xml1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
8 -->
9 <header name="boost/proto/functional/fusion/reverse.hpp">
10 …<para>Includes Proto callable <computeroutput><classname>boost::proto::functional::reverse</classn…
16 <!-- proto::functional::reverse -->
17 <struct name="reverse">
19 <computeroutput>fusion::reverse()</computeroutput> algorithm on its argument.
24 <computeroutput>fusion::reverse()</computeroutput> algorithm on its argument. This is
26 <computeroutput>reverse(_)</computeroutput>, which reverses the order of the children
[all …]
/external/deqp/modules/gles31/scripts/
Dgen-implicit-conversions.py1 # -*- coding: utf-8 -*-
3 #-------------------------------------------------------------------------
5 # --------------------------------------
13 # http://www.apache.org/licenses/LICENSE-2.0
21 #-------------------------------------------------------------------------
340 def __init__(self, name, op, in_type, out_type, reverse=False): argument
343 "-": operator.sub,
351 self.reverse = reverse
365 if self.reverse:
373 if self.reverse:
[all …]
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_math_ops_test.py7 # http://www.apache.org/licenses/LICENSE-2.0
38 u = np.exp(x - m)
44 eps = 1e-5
63 eps = 1e-5
64 x_list = [[-500, -501, -502], [1729, 1729]]
79 eps = 1e-5
94 def _cumsum_slow(rt, axis=0, exclusive=False, reverse=False, name=None): argument
97 reverse=reverse, name=name)
109 reverse=True),
112 reverse=True,
[all …]
/external/tensorflow/tensorflow/lite/kernels/
Dreverse.cc7 http://www.apache.org/licenses/LICENSE-2.0
27 namespace reverse { namespace
45 if (input->type != kTfLiteInt32 && input->type != kTfLiteFloat32 && in Prepare()
46 input->type != kTfLiteUInt8 && input->type != kTfLiteInt8 && in Prepare()
47 input->type != kTfLiteInt16 && input->type != kTfLiteInt64 && in Prepare()
48 input->type != kTfLiteBool) { in Prepare()
49 TF_LITE_KERNEL_LOG(context, "Type '%s' is not supported by reverse.", in Prepare()
50 TfLiteTypeGetName(input->type)); in Prepare()
54 if (axis->type != kTfLiteInt32) { in Prepare()
55 TF_LITE_KERNEL_LOG(context, "Axis Type '%s' is not supported by reverse.", in Prepare()
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/control_flow/
Dscan_ops_test.py7 # http://www.apache.org/licenses/LICENSE-2.0
35 slice(None, None, -1) if i == axis else slice(None) for i in range(length)
40 def handle_options(func, x, axis, exclusive, reverse): argument
46 if reverse:
52 slice(0, -1) if i == axis else slice(None) for i in range(length)
64 if reverse:
76 def _compare(self, x, axis, exclusive, reverse): argument
77 np_out = handle_options(np.cumsum, x, axis, exclusive, reverse)
79 tf_out = math_ops.cumsum(x, axis, exclusive, reverse).eval()
85 for reverse in [True, False]:
[all …]
/external/llvm/test/CodeGen/X86/
Dinalloca-invoke.ll1 ; RUN: llc < %s -mtriple=i686-pc-win32 | FileCheck %s
5 %frame.reverse = type { %Iter, %Iter }
12 declare void @reverse(%frame.reverse* inalloca align 4)
20 %rev_args = alloca inalloca %frame.reverse, align 4
21 %beg = getelementptr %frame.reverse, %frame.reverse* %rev_args, i32 0, i32 0
22 %end = getelementptr %frame.reverse, %frame.reverse* %rev_args, i32 0, i32 1
45 invoke void @reverse(%frame.reverse* inalloca align 4 %rev_args)
/external/chromium-trace/catapult/third_party/polymer/components/iron-flex-layout/
Diron-flex-layout-classes.html1 <!--
9 -->
11 <!--
17 <link rel="import" href="../iron-flex-layout/iron-flex-layout-classes.html">
18 <style is="custom-style" include="iron-flex iron-flex-alignment"></style>
20 <div class="layout horizontal layout-start">
25 - iron-flex
26 - iron-flex-reverse
27 - iron-flex-alignment
28 - iron-flex-factors
[all …]
/external/mtools/
Dmatch.c1 /* Copyright 1986-1992 Emmet P. Gray.
2 * Copyright 1996-1998,2001,2002,2008,2009 Alain Knaff.
18 * Do shell-style pattern matching for '?', '\', '[..]', and '*' wildcards.
37 static int is_in_range(wchar_t ch, const wchar_t **p, int *reverse) { in is_in_range() argument
41 *reverse = 1; in is_in_range()
44 *reverse=0; in is_in_range()
49 if(*(++(*p)) == '-') { in is_in_range()
52 /* Last "-" in range designates itself */ in is_in_range()
53 if(ch == first || ch == '-') in is_in_range()
73 int reverse; in parse_range() local
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/iron-flex-layout/classes/
Diron-flex-layout.html1 <!--
9 -->
11 <link rel="import" href="iron-shadow-flex-layout.html">
14 …his file is deprecated. Please use `iron-flex-layout/iron-flex-layout-classes.html`, and one of th…
24 .layout.horizontal-reverse,
26 .layout.vertical-reverse {
27 display: -ms-flexbox;
28 display: -webkit-flex;
33 display: -ms-inline-flexbox;
34 display: -webkit-inline-flex;
[all …]
Diron-shadow-flex-layout.html1 <!--
9 -->
12 …his file is deprecated. Please use `iron-flex-layout/iron-flex-layout-classes.html`, and one of th…
22 html /deep/ .layout.horizontal-reverse,
24 html /deep/ .layout.vertical-reverse {
25 display: -ms-flexbox;
26 display: -webkit-flex;
31 display: -ms-inline-flexbox;
32 display: -webkit-inline-flex;
33 display: inline-flex;
[all …]
/external/toybox/scripts/
Dmkstatus.py24 stuff,blah=readit(["sed","-n", 's/<span id=\\([a-z_]*\\)>/\\1 /;t good;d;:good;h;:loop;n;s@</span>@…
26 blah,stuff["shell"]=readit(["sed", "-n", "s/.*NEWTOY[(]\\([^,]*\\).*TOYFLAG_NOFORK.*/\\1/p", "toys/…
27 blah,pending=readit(["/bin/bash", "-c", "sed -n 's/[^ \\t].*TOY(\\([^,]*\\),.*/\\1/p' toys/pending/…
28 version=readit(["./toybox","--version"])[-1][-1]
32 # Create reverse mappings: reverse["command"] gives list of categories it's in
33 reverse={} variable
36 try: reverse[j].append(i)
37 except: reverse[j]=[i]
38 print "all commands=%s" % len(reverse)
47 if not i in reverse: unknowns.append(i)
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/paper-styles/classes/
Dshadow-layout.html1 <!--
9 -->
12 …his file is deprecated. Please use `iron-flex-layout/iron-flex-layout-classes.html`, and one of th…
22 html /deep/ .layout.horizontal-reverse,
24 html /deep/ .layout.vertical-reverse {
25 display: -ms-flexbox;
26 display: -webkit-flex;
31 display: -ms-inline-flexbox;
32 display: -webkit-inline-flex;
33 display: inline-flex;
[all …]
/external/sdv/vsomeip/third_party/boost/proto/include/boost/proto/functional/fusion/
Dreverse.hpp2 /// \file reverse.hpp
3 /// Proto callables Fusion reverse
12 #include <boost/fusion/include/reverse.hpp>
18 /// \c fusion::reverse() algorithm on its argument.
21 /// \c fusion::reverse() algorithm on its argument. This is
22 /// useful for defining a CallableTransform like \c reverse(_)
25 struct reverse struct
39 : fusion::result_of::reverse<Seq>
43 typename fusion::result_of::reverse<Seq>::type
46 // Work around a const-correctness issue in Fusion in operator ()()
[all …]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
DCounterComparator.java5 * http://www.eclipse.org/legal/epl-2.0
7 * SPDX-License-Identifier: EPL-2.0
10 * Marc R. Hoffmann - initial API and implementation
27 private static final long serialVersionUID = -3777463066252746748L;
60 private final boolean reverse; field in CounterComparator
66 private CounterComparator(final CounterValue value, final boolean reverse) { in CounterComparator() argument
68 this.reverse = reverse; in CounterComparator()
73 return reverse ? -cmp : cmp; in compare()
77 * Creates a new version of this comparator that sorts in reverse order.
79 * @return reverse comparator
[all …]
/external/guava/guava-tests/test/com/google/common/base/
DConverterTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
62 assertEquals(STR_VAL, STR_TO_LONG.reverse().convert(LONG_VAL)); in testConverter()
80 Converter<Long, String> reverseConverter = STR_TO_LONG.reverse(); in testReverse()
83 assertEquals(LONG_VAL, reverseConverter.reverse().convert(STR_VAL)); in testReverse()
88 assertSame(STR_TO_LONG, reverseConverter.reverse()); in testReverse()
90 assertEquals("string2long.reverse()", reverseConverter.toString()); in testReverse()
93 .addEqualityGroup(STR_TO_LONG, STR_TO_LONG.reverse().reverse()) in testReverse()
94 .addEqualityGroup(STR_TO_LONG.reverse(), STR_TO_LONG.reverse()) in testReverse()
100 assertEquals(converter, converter.reverse().reverse()); in testReverseReverse()
138 assertEquals(STR_VAL, converter.reverse().convert(LONG_VAL).value); in testAndThen()
[all …]
/external/guava/android/guava-tests/test/com/google/common/base/
DConverterTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
62 assertEquals(STR_VAL, STR_TO_LONG.reverse().convert(LONG_VAL)); in testConverter()
80 Converter<Long, String> reverseConverter = STR_TO_LONG.reverse(); in testReverse()
83 assertEquals(LONG_VAL, reverseConverter.reverse().convert(STR_VAL)); in testReverse()
88 assertSame(STR_TO_LONG, reverseConverter.reverse()); in testReverse()
90 assertEquals("string2long.reverse()", reverseConverter.toString()); in testReverse()
93 .addEqualityGroup(STR_TO_LONG, STR_TO_LONG.reverse().reverse()) in testReverse()
94 .addEqualityGroup(STR_TO_LONG.reverse(), STR_TO_LONG.reverse()) in testReverse()
100 assertEquals(converter, converter.reverse().reverse()); in testReverseReverse()
138 assertEquals(STR_VAL, converter.reverse().convert(LONG_VAL).value); in testAndThen()
[all …]
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/Dialect/mhlo/canonicalize/
Dreverse.mlir1 // RUN: mlir-hlo-opt %s -pass-pipeline='func.func(canonicalize)' | FileCheck %s
3 // CHECK-LABEL: func @noop
4 // CHECK-SAME: (%[[ARG0:.*]]: tensor<1x2xf32>)
5 func.func @noop(%arg0: tensor<1x2xf32>) -> tensor<1x2xf32> {
6 …%0 = "mhlo.reverse"(%arg0) {dimensions = dense<[]> : tensor<0xi64>} : (tensor<1x2xf32>) -> tensor<…
11 // CHECK-LABEL: func @dim1
12 // CHECK-SAME: (%[[ARG0:.*]]: tensor
13 func.func @dim1(%arg0: tensor<9x1x2x1x42xf32>) -> tensor<9x1x2x1x42xf32> {
14 …%0 = "mhlo.reverse"(%arg0) {dimensions = dense<[1,3]> : tensor<2xi64>} : (tensor<9x1x2x1x42xf32>)
19 // CHECK-LABEL: @noop_reverse_dynamic_shape
[all …]
/external/sdv/vsomeip/third_party/boost/mpl/doc/src/refmanual/
Dreverse.rst1 .. Algorithms/Transformation Algorithms//reverse |100
3 reverse title
7 --------
9 .. parsed-literal::
15 struct reverse
23 -----------
25 Returns a reversed copy of the original sequence. ``reverse`` is a synonym for
31 ------
33 .. parsed-literal::
35 #include <boost/mpl/reverse.hpp>
[all …]
/external/cronet/third_party/libc++/src/test/std/algorithms/alg.modifying.operations/alg.reverse/
Dranges.reverse.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 // constexpr I ranges::reverse(I first, S last);
18 // constexpr borrowed_iterator_t<R> ranges::reverse(R&& r);
30 concept HasReverseIt = requires (Iter first, Sent last) { std::ranges::reverse(first, last); };
40 concept HasReverseR = requires (Range range) { std::ranges::reverse(range); };
52 …std::same_as<Iter> decltype(auto) ret = std::ranges::reverse(Iter(val.data()), Sent(Iter(val.data(… in test()
59 std::same_as<Iter> decltype(auto) ret = std::ranges::reverse(range); in test()
98 …[[maybe_unused]] std::same_as<std::ranges::dangling> auto ret = std::ranges::reverse(std::array {1… in test()
[all …]

12345678910>>...48