HomeSort by relevance Sort by last modified time
    Searched refs:outer (Results 51 - 75 of 780) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skia/gm/
testimagefilters.cpp 37 SkImageFilter* outer = SkOffsetImageFilter::Create(SkIntToScalar(16), SkIntToScalar(16)); local
39 SkAutoUnref aur0(outer);
41 return SkComposeImageFilter::Create(outer, inner);
52 SkImageFilter* outer = SkOffsetImageFilter::Create(SkIntToScalar(16), SkIntToScalar(16)); local
54 SkAutoUnref aur0(outer);
56 SkImageFilter* compose = SkComposeImageFilter::Create(outer, inner);
69 SkImageFilter* outer = SkOffsetImageFilter::Create(SkIntToScalar(16), SkIntToScalar(16)); local
71 SkAutoUnref aur0(outer);
73 SkImageFilter* compose = SkComposeImageFilter::Create(outer, inner);
  /external/eigen/Eigen/src/SparseCore/
MappedSparseMatrix.h 70 const Index outer = IsRowMajor ? row : col; local
73 Index start = m_outerIndex[outer];
74 Index end = m_outerIndex[outer+1];
89 const Index outer = IsRowMajor ? row : col; local
92 Index start = m_outerIndex[outer];
93 Index end = m_outerIndex[outer+1];
121 InnerIterator(const MappedSparseMatrix& mat, Index outer)
123 m_outer(outer),
124 m_id(mat.outerIndexPtr()[outer]),
126 m_end(mat.outerIndexPtr()[outer+1]
    [all...]
SparseDiagonalProduct.h 115 const SparseDiagonalProductType& expr, Index outer)
116 : Base(expr.rhs()*(expr.lhs().diagonal().coeff(outer)), outer)
136 const SparseDiagonalProductType& expr, Index outer)
137 : Base(expr.rhs().innerVector(outer) .cwiseProduct(expr.lhs().diagonal()), 0), m_outer(outer)
140 inline Index outer() const { return m_outer; } function in class:Eigen::internal::sparse_diagonal_product_inner_iterator_selector
153 const SparseDiagonalProductType& expr, Index outer)
154 : Base(expr.lhs()*expr.rhs().diagonal().coeff(outer), outer)
178 inline Index outer() const { return m_outer; } function in class:Eigen::internal::sparse_diagonal_product_inner_iterator_selector
    [all...]
SparseMatrix.h 175 const Index outer = IsRowMajor ? row : col; local
177 Index end = m_innerNonZeros ? m_outerIndex[outer] + m_innerNonZeros[outer] : m_outerIndex[outer+1];
178 return m_data.atInRange(m_outerIndex[outer], end, inner);
193 const Index outer = IsRowMajor ? row : col; local
196 Index start = m_outerIndex[outer];
197 Index end = m_innerNonZeros ? m_outerIndex[outer] + m_innerNonZeros[outer] : m_outerIndex[outer+1]
839 const Index outer = IsRowMajor ? row : col; local
887 inline Index outer() const { return m_outer; } function in class:Eigen::SparseMatrix::InnerIterator
920 inline Index outer() const { return m_outer; } function in class:Eigen::SparseMatrix::ReverseInnerIterator
1123 const Index outer = IsRowMajor ? row : col; local
1155 const Index outer = IsRowMajor ? row : col; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
BlackFrame.java 109 pw.print(prefix); pw.print("Outer: "); mOuterRect.printShortString(pw);
121 public BlackFrame(SurfaceSession session, Rect outer, Rect inner, int layer, int layerStack,
127 mOuterRect = new Rect(outer);
130 if (outer.top < inner.top) {
132 outer.left, outer.top, inner.right, inner.top, layerStack);
134 if (outer.left < inner.left) {
136 outer.left, inner.top, inner.left, outer.bottom, layerStack);
138 if (outer.bottom > inner.bottom)
    [all...]
  /external/skia/include/core/
SkPathEffect.h 182 and the the outer pathEffect (e.g. outer(inner(path)))
183 The reference counts for outer and inner are both incremented in the constructor,
186 static SkPathEffect* Create(SkPathEffect* outer, SkPathEffect* inner) {
187 if (!outer) {
191 return SkSafeRef(outer);
193 return new SkComposePathEffect(outer, inner);
207 SkComposePathEffect(SkPathEffect* outer, SkPathEffect* inner) : INHERITED(outer, inner) {}
  /external/v8/test/mjsunit/
debug-stepout-scope-part8.js 65 with ({x: 'outer'}) {
74 with ({x: 'outer'}) {
84 with ({x: 'outer'}) {
95 with ({x: 'outer'}) {
107 with ({x: 'outer'}) {
116 with ({x: 'outer'}) {
129 with ({x: 'outer'}) {
139 with ({x: 'outer'}) {
150 with ({x: 'outer'}) {
163 with ({x: 'outer'}) {
    [all...]
  /external/v8/test/mjsunit/regress/
regress-2261.js 69 function outer(x) { function
73 assertEquals(1, outer(1));
74 assertEquals(1, outer(1));
75 %OptimizeFunctionOnNextCall(outer);
76 assertEquals(1, outer(1));
78 assertEquals(1, outer(1));
103 function outer(x) {
107 assertEquals(21, outer(1));
108 assertEquals(21, outer(1));
109 %OptimizeFunctionOnNextCall(outer);
    [all...]
  /external/v8/test/mjsunit/compiler/
inline-arguments.js 174 function outer(x, y) { function
178 %OptimizeFunctionOnNextCall(outer);
180 assertEquals(2, outer(1, 2));
196 function outer(x, y) {
200 assertEquals(2, outer(1, 2));
201 assertEquals(2, outer(1, 2));
202 assertEquals(2, outer(1, 2));
203 %OptimizeFunctionOnNextCall(outer);
204 assertEquals(2, outer(1, 2));
234 function outer(x,y)
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
RandomSetter.h 224 const Index outer = (it->first >> m_keyBitsOffset) + outerOffset; local
226 if (prevOuter!=outer)
228 for (Index j=prevOuter+1;j<=outer;++j)
230 prevOuter = outer;
232 mp_target->insertBackByOuterInner(outer, inner) = it->second.value;
247 const Index outer = it->first & keyBitsMask; local
248 ++positions[outer];
271 const Index outer = it->first & keyBitsMask; local
276 Index posStart = mp_target->outerIndexPtr()[outer];
277 Index i = (positions[outer]++) - 1
295 const Index outer = SetterRowMajor ? row : col; local
    [all...]
  /external/clang/test/Index/
print-type.cpp 1 namespace outer { namespace
17 Bar(outer::Foo<bool>* foo) { }
60 // CHECK: Namespace=outer:1:11 (Definition) [type=] [typekind=Invalid] [isPOD=0]
70 // CHECK: StructDecl=Bar:16:8 (Definition) [type=outer::inner::Bar] [typekind=Record] [isPOD=0] [nbFields=3]
71 // CHECK: CXXConstructor=Bar:17:3 (Definition) [type=void (outer::Foo<bool> *){{.*}}] [typekind=FunctionProto] [canonicaltype=void (outer::Foo<bool> *){{.*}}] [canonicaltypekind=FunctionProto] [resulttype=void] [resulttypekind=Void] [args= [outer::Foo<bool> *] [Pointer]] [isPOD=0]
72 // CHECK: ParmDecl=foo:17:25 (Definition) [type=outer::Foo<bool> *] [typekind=Pointer] [canonicaltype=outer::Foo<bool> *] [canonicaltypekind=Pointer] [isPOD=1] [pointeetype=outer::Foo<bool>] [pointeekind=Unexposed
    [all...]
  /external/compiler-rt/test/BlocksRuntime/
recursive-block.c 35 /*__block*/ voidVoid outer = ^{ local
39 //printf("outer looks like: %s\n", _Block_dump(outer));
40 voidVoid result = Block_copy(outer);
  /external/eigen/Eigen/src/Core/
CoreIterators.h 34 EIGEN_STRONG_INLINE InnerIterator(const Derived& expr, Index outer)
35 : m_expression(expr), m_inner(0), m_outer(outer), m_end(expr.innerSize())
DenseCoeffsBase.h 64 EIGEN_STRONG_INLINE Index rowIndexByOuterInner(Index outer, Index inner) const
68 : int(Derived::Flags)&RowMajorBit ? outer
72 EIGEN_STRONG_INLINE Index colIndexByOuterInner(Index outer, Index inner) const
77 : outer;
101 EIGEN_STRONG_INLINE CoeffReturnType coeffByOuterInner(Index outer, Index inner) const
103 return coeff(rowIndexByOuterInner(outer, inner),
104 colIndexByOuterInner(outer, inner));
218 EIGEN_STRONG_INLINE PacketReturnType packetByOuterInner(Index outer, Index inner) const
220 return packet<LoadMode>(rowIndexByOuterInner(outer, inner),
221 colIndexByOuterInner(outer, inner))
    [all...]
  /external/clang/test/SemaCXX/
attr-cxx0x.cpp 27 template <typename... A> struct outer { struct
31 outer<int>::inner<short, double> mismatched_packs; // expected-note {{in instantiation of}}
45 static_assert(alignof(outer<int,char>::inner<double,short>) == alignof(int) * alignof(double), "template's alignment is wrong");
nested-name-spec-locations.cpp 8 namespace outer { namespace
21 namespace outer_alias = outer;
25 using outer::inner::X0<
35 using outer::inner::X0<
81 typedef typename outer::inner::X0<
  /external/skia/src/doc/
SkDocument.cpp 27 SkRect outer = SkRect::MakeWH(width, height); local
31 if (!inner.intersect(outer)) {
35 inner = outer;
  /external/gemmlowp/internal/
pack_neon.h 212 for (int outer = 0; outer < 2; outer++) {
216 src_lines_intertwined_4x[2 * cell + outer].val[inner]);
222 src_lines_intertwined_4x[2 * cell + outer].val[inner]);
230 for (int outer = 0; outer < 2; outer++) {
232 int i = 2 * outer + inner;
236 src_lines_intertwined_4x[2 * cell + outer].val[inner])
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
BoundedRect.java 28 * outer, rotated rectangle.
32 private RectF outer; field in class:BoundedRect
38 outer = new RectF(outerRect);
48 outer = new RectF(outerRect);
58 outer.set(outerRect);
97 r.set(outer);
105 return new RectF(outer);
120 float[] outerCorners = CropMath.getCornersFromRect(outer);
131 if (!CropMath.inclusiveContains(outer, correctedInnerX, correctedInnerY)) {
146 if (!CropMath.inclusiveContains(outer, correctedInnerX, correctedInnerY))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
hmac.py 49 self.outer = self.digest_cons()
72 self.outer.update(key.translate(trans_5C))
94 other.outer = self.outer.copy()
102 h = self.outer.copy()
  /prebuilts/gdb/linux-x86/lib/python2.7/
hmac.py 49 self.outer = self.digest_cons()
72 self.outer.update(key.translate(trans_5C))
94 other.outer = self.outer.copy()
102 h = self.outer.copy()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
hmac.py 49 self.outer = self.digest_cons()
72 self.outer.update(key.translate(trans_5C))
94 other.outer = self.outer.copy()
102 h = self.outer.copy()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
hmac.py 49 self.outer = self.digest_cons()
72 self.outer.update(key.translate(trans_5C))
94 other.outer = self.outer.copy()
102 h = self.outer.copy()
  /external/skia/src/effects/
SkColorMatrix.cpp 39 const SkScalar outer[20], const SkScalar inner[20]) {
43 if (outer == result || inner == result) {
52 target[index++] = outer[j + 0] * inner[i + 0] +
53 outer[j + 1] * inner[i + 5] +
54 outer[j + 2] * inner[i + 10] +
55 outer[j + 3] * inner[i + 15];
57 target[index++] = outer[j + 0] * inner[4] +
58 outer[j + 1] * inner[9] +
59 outer[j + 2] * inner[14] +
60 outer[j + 3] * inner[19]
    [all...]
  /external/skia/samplecode/
SamplePathEffects.cpp 40 SkPathEffect* outer = SkPath1DPathEffect::Create(path, 12, phase, local
44 return outer;
48 SkPathEffect* pe = SkComposePathEffect::Create(outer, inner);
49 outer->unref();
62 SkPathEffect* outer = SkPath1DPathEffect::Create( local
66 SkPathEffect* pe = SkComposePathEffect::Create(outer, inner);
67 outer->unref();

Completed in 1198 milliseconds

1 23 4 5 6 7 8 91011>>