Home
last modified time | relevance | path

Searched refs:reverse (Results 1 – 25 of 593) sorted by relevance

12345678910>>...24

/external/toybox/scripts/
Dmkstatus.py26 reverse={} variable
29 try: reverse[j].append(i)
30 except: reverse[j]=[i]
34 if ("ready" in reverse[i]) and ("pending" in reverse[i]): print "barf", i
37 if ("ready" in reverse[i]) or ("pending" in reverse[i]): continue
44 print "all commands=%s" % len(reverse)
58 def categorize(reverse, i, skippy=""): argument
62 if skippy: types = filter(lambda a: a != skippy, reverse[i])
63 else: types = reverse[i]
71 sys.stderr.write("unknown %s %s\n" % (i,reverse[i]))
[all …]
/external/eigen/test/
Darray_reverse.cpp16 template<typename MatrixType> void reverse(const MatrixType& m) in reverse() function
30 MatrixType m1_r = m1.reverse(); in reverse()
70 VectorType v1_r = v1.reverse(); in reverse()
76 MatrixType m1_cr = m1.colwise().reverse(); in reverse()
84 MatrixType m1_rr = m1.rowwise().reverse(); in reverse()
97 m1.reverse()(r, c) = x; in reverse()
112 CALL_SUBTEST_1( reverse(Matrix<float, 1, 1>()) ); in test_array_reverse()
113 CALL_SUBTEST_2( reverse(Matrix2f()) ); in test_array_reverse()
114 CALL_SUBTEST_3( reverse(Matrix4f()) ); in test_array_reverse()
115 CALL_SUBTEST_4( reverse(Matrix4d()) ); in test_array_reverse()
[all …]
/external/guava/guava-tests/test/com/google/common/base/
DConverterTest.java62 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()
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()
133 assertEquals(STR_VAL, converter.reverse().convert(LONG_VAL).value); in testAndThen()
143 assertSame(stringIdentityConverter, stringIdentityConverter.reverse()); in testIdentityConverter()
147 assertSame(STR_VAL, stringIdentityConverter.reverse().convert(STR_VAL)); in testIdentityConverter()
[all …]
/external/droiddriver/src/io/appium/droiddriver/scroll/
DDirection.java31 public LogicalDirection reverse() { in reverse() method
37 public LogicalDirection reverse() { in reverse() method
41 public abstract LogicalDirection reverse(); in reverse() method in Direction.LogicalDirection
48 public PhysicalDirection reverse() { in reverse() method
59 public PhysicalDirection reverse() { in reverse() method
70 public PhysicalDirection reverse() { in reverse() method
81 public PhysicalDirection reverse() { in reverse() method
90 public abstract PhysicalDirection reverse(); in reverse() method in Direction.PhysicalDirection
153 return horizontalForwardDirection().reverse(); in horizontalBackwardDirection()
157 return verticalForwardDirection().reverse(); in verticalBackwardDirection()
[all …]
/external/deqp/modules/gles31/scripts/
Dgen-implicit-conversions.py318 def __init__(self, name, op, in_type, out_type, reverse=False): argument
329 self.reverse = reverse
343 if self.reverse:
351 if self.reverse:
352 expr.reverse()
384 def __init__(self, name, op, in_type, out_type, reverse=False): argument
385 super(ComparisonsCase, self).__init__(name, op, in_type, out_type, reverse)
402 if self.reverse:
421 def __init__(self, name, in_type, out_type, reverse=False, input_in_parens=False): argument
425 self.reverse = reverse
[all …]
/external/skia/src/core/
DSkEdgeClipper.cpp127 bool reverse = sort_increasing_Y(pts, srcPts, 3); in clipMonoQuad() local
139 reverse = !reverse; in clipMonoQuad()
147 this->appendVLine(clip.fLeft, pts[0].fY, pts[2].fY, reverse); in clipMonoQuad()
152 this->appendVLine(clip.fRight, pts[0].fY, pts[2].fY, reverse); in clipMonoQuad()
164 this->appendVLine(clip.fLeft, tmp[0].fY, tmp[2].fY, reverse); in clipMonoQuad()
174 this->appendVLine(clip.fLeft, pts[0].fY, pts[2].fY, reverse); in clipMonoQuad()
187 this->appendQuad(tmp, reverse); in clipMonoQuad()
188 this->appendVLine(clip.fRight, tmp[2].fY, tmp[4].fY, reverse); in clipMonoQuad()
192 this->appendVLine(clip.fRight, pts[0].fY, pts[2].fY, reverse); in clipMonoQuad()
195 this->appendQuad(pts, reverse); in clipMonoQuad()
[all …]
/external/llvm/test/CodeGen/X86/
Dinalloca-invoke.ll5 %frame.reverse = type { %Iter, %Iter }
11 declare void @reverse(%frame.reverse* inalloca align 4)
19 %rev_args = alloca inalloca %frame.reverse, align 4
20 %beg = getelementptr %frame.reverse, %frame.reverse* %rev_args, i32 0, i32 0
21 %end = getelementptr %frame.reverse, %frame.reverse* %rev_args, i32 0, i32 1
43 invoke void @reverse(%frame.reverse* inalloca align 4 %rev_args)
/external/clang/test/SemaTemplate/
Dexample-typelist.cpp49 class reverse { class
50 typedef typename reverse<typename T::tail>::type reversed_tail;
52 typedef typename reverse<typename reversed_tail::tail>::type most_of_tail;
56 typename reverse<cons<typename T::head, most_of_tail> >::type> type;
60 class reverse<cons<Head> > { class
66 class reverse<nil> { class
71 int reverse0[is_same<reverse<unsigned_inttypes>::type,
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/
Dreverse.pass.cpp28 std::reverse(Iter(ia), Iter(ia)); in test()
30 std::reverse(Iter(ia), Iter(ia+sa)); in test()
35 std::reverse(Iter(ib), Iter(ib+sb)); in test()
41 std::reverse(Iter(ic), Iter(ic+sc)); in test()
48 std::reverse(Iter(id), Iter(id+sd)); in test()
/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_graph.h79 EdgeIterator(Graph::Edge *first, int dir, bool reverse) in EdgeIterator() argument
80 : d(dir), rev(reverse) in EdgeIterator()
115 inline EdgeIterator outgoing(bool reverse = false) const;
116 inline EdgeIterator incident(bool reverse = false) const;
207 Graph::EdgeIterator Graph::Node::outgoing(bool reverse) const in outgoing() argument
209 return EdgeIterator(out, 0, reverse); in outgoing()
212 Graph::EdgeIterator Graph::Node::incident(bool reverse) const in incident() argument
214 return EdgeIterator(in, 1, reverse); in incident()
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
Dtokenutil.py99 reverse=False): argument
118 if reverse:
147 def Search(start_token, token_types, distance=None, reverse=False): argument
164 None, distance, reverse)
167 def SearchExcept(start_token, token_types, distance=None, reverse=False): argument
185 None, distance, reverse)
189 reverse=False): argument
208 distance, reverse)
/external/icu/icu4c/source/layout/
DArabicLayoutEngine.cpp107 …ne::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, in adjustGlyphPositions() argument
120 … OpenTypeLayoutEngine::adjustGlyphPositions(chars, offset, count, reverse, glyphStorage, success); in adjustGlyphPositions()
128 adjustMarkGlyphs(&chars[offset], count, reverse, glyphStorage, &filter, success); in adjustGlyphPositions()
176 …Glyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, le_bool /*mirror… in mapCharsToGlyphs() argument
189 if (reverse) { in mapCharsToGlyphs()
194 glyphStorage.allocateGlyphArray(count, reverse, success); in mapCharsToGlyphs()
201 …ne::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, in adjustGlyphPositions() argument
215 adjustMarkGlyphs(&chars[offset], count, reverse, glyphStorage, &filter, success); in adjustGlyphPositions()
/external/eigen/blas/
Dlevel1_cplx_impl.h52 else if(*incx<0 && *incy>0) *res = (vector(x,*n,-*incx).reverse().dot(vector(y,*n,*incy)));
53 else if(*incx>0 && *incy<0) *res = (vector(x,*n,*incx).dot(vector(y,*n,-*incy).reverse()));
54 …else if(*incx<0 && *incy<0) *res = (vector(x,*n,-*incx).reverse().dot(vector(y,*n,-*incy).reverse(…
71 …else if(*incx<0 && *incy>0) *res = (vector(x,*n,-*incx).reverse().cwiseProduct(vector(y,*n,*incy))…
72 …else if(*incx>0 && *incy<0) *res = (vector(x,*n,*incx).cwiseProduct(vector(y,*n,-*incy).reverse())…
73 …if(*incx<0 && *incy<0) *res = (vector(x,*n,-*incx).reverse().cwiseProduct(vector(y,*n,-*incy).reve…
Ddouble.cpp28 …else if(*incx<0 && *incy>0) return (vector(x,*n,-*incx).reverse().cast<double>().cwiseProduct(vect… in BLASFUNC()
29 …turn (vector(x,*n,*incx).cast<double>().cwiseProduct(vector(y,*n,-*incy).reverse().cast<double>())… in BLASFUNC()
30 …x<0 && *incy<0) return (vector(x,*n,-*incx).reverse().cast<double>().cwiseProduct(vector(y,*n,-*in… in BLASFUNC()
Dlevel1_impl.h22 else if(*incx>0 && *incy<0) vector(y,*n,-*incy).reverse() += alpha * vector(x,*n,*incx); in EIGEN_BLAS_FUNC()
23 else if(*incx<0 && *incy>0) vector(y,*n,*incy) += alpha * vector(x,*n,-*incx).reverse(); in EIGEN_BLAS_FUNC()
24 …else if(*incx<0 && *incy<0) vector(y,*n,-*incy).reverse() += alpha * vector(x,*n,-*incx).reverse(); in EIGEN_BLAS_FUNC()
161 else if(*incx>0 && *incy<0) vector(y,*n,-*incy).reverse().swap(vector(x,*n,*incx)); in EIGEN_BLAS_FUNC()
162 else if(*incx<0 && *incy>0) vector(y,*n,*incy).swap(vector(x,*n,-*incx).reverse()); in EIGEN_BLAS_FUNC()
163 else if(*incx<0 && *incy<0) vector(y,*n,-*incy).reverse().swap(vector(x,*n,-*incx).reverse()); in EIGEN_BLAS_FUNC()
/external/llvm/bindings/python/llvm/
Dcore.py227 def __init__(self, module, reverse=False): argument
229 self.reverse = reverse
230 if self.reverse:
242 if self.reverse:
252 return Module.__function_iterator(self, reverse=True)
295 def __init__(self, function, reverse=False): argument
297 self.reverse = reverse
298 if self.reverse:
310 if self.reverse:
320 return Function.__bb_iterator(self, reverse=True)
[all …]
/external/eigen/doc/snippets/
DMatrixBase_reverse.cpp3 cout << "Here is the reverse of m:" << endl << m.reverse() << endl;
5 << m.reverse()(1,0) << endl;
7 m.reverse()(1,0) = 4;
DVectorwise_reverse.cpp3 cout << "Here is the rowwise reverse of m:" << endl << m.rowwise().reverse() << endl;
4 cout << "Here is the colwise reverse of m:" << endl << m.colwise().reverse() << endl;
7 << m.rowwise().reverse()(1,0) << endl;
/external/jetty/src/java/org/eclipse/jetty/util/component/
DAggregateLifeCycle.java99 List<Bean> reverse = new ArrayList<Bean>(_beans); in doStop() local
100 Collections.reverse(reverse); in doStop()
101 for (Bean b:reverse) in doStop()
120 List<Bean> reverse = new ArrayList<Bean>(_beans); in destroy() local
121 Collections.reverse(reverse); in destroy()
122 for (Bean b:reverse) in destroy()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
DX509Principal.java122 boolean reverse, in X509Principal() argument
125 super(reverse, dirName); in X509Principal()
139 boolean reverse, in X509Principal() argument
143 super(reverse, lookUp, dirName); in X509Principal()
/external/libvncserver/x11vnc/misc/
Dinet6to4161 my $reverse = 0; # -r switch (or file named inet4to6)
191 $reverse = 1;
193 $reverse = 1;
225 if (!$reverse) {
261 if ($client && !$reverse && $port == $listen_port) {
312 if (!$reverse) {
/external/guava/guava-tests/test/com/google/common/collect/
DGeneralRangeTest.java196 assertEquals(GeneralRange.all(ORDERING.reverse()), GeneralRange.all(ORDERING).reverse());
197 assertEquals(GeneralRange.downTo(ORDERING.reverse(), 3, CLOSED),
198 GeneralRange.upTo(ORDERING, 3, CLOSED).reverse());
199 assertEquals(GeneralRange.upTo(ORDERING.reverse(), 3, OPEN),
200 GeneralRange.downTo(ORDERING, 3, OPEN).reverse());
201 assertEquals(GeneralRange.range(ORDERING.reverse(), 5, OPEN, 3, CLOSED),
202 GeneralRange.range(ORDERING, 3, CLOSED, 5, OPEN).reverse());
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DGeneralRangeTest.java194 assertEquals(GeneralRange.all(ORDERING.reverse()), GeneralRange.all(ORDERING).reverse());
195 assertEquals(GeneralRange.downTo(ORDERING.reverse(), 3, CLOSED),
196 GeneralRange.upTo(ORDERING, 3, CLOSED).reverse());
197 assertEquals(GeneralRange.upTo(ORDERING.reverse(), 3, OPEN),
198 GeneralRange.downTo(ORDERING, 3, OPEN).reverse());
199 assertEquals(GeneralRange.range(ORDERING.reverse(), 5, OPEN, 3, CLOSED),
200 GeneralRange.range(ORDERING, 3, CLOSED, 5, OPEN).reverse());
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DDerivedGoogleCollectionGenerators.java103 return new SampleElements<Map.Entry<V, K>>(reverse(samples.e0), reverse(samples.e1), in samples()
104 reverse(samples.e2), reverse(samples.e3), reverse(samples.e4)); in samples()
107 private Map.Entry<V, K> reverse(Map.Entry<K, V> entry) { in reverse() method in DerivedGoogleCollectionGenerators.InverseBiMapGenerator
116 entries[i] = reverse((Entry<K, V>) elements[i]); in create()
/external/iptables/extensions/
Dlibxt_rpfilter.man1 Performs a reverse path filter test on a packet.
11 Used to specifiy that the reverse path filter test should match
15 Also use the packets' nfmark value when performing the reverse path route lookup.
23 reverse path filter test, match those that have failed it.
25 Example to log and drop packets failing the reverse path filter test:

12345678910>>...24