/external/eigen/Eigen/src/SparseCore/ |
SparseTranspose.h | 39 EIGEN_STRONG_INLINE InnerIterator(const TransposeImpl& trans, typename TransposeImpl<MatrixType,Sparse>::Index outer) 40 : Base(trans.derived().nestedExpression(), outer) 52 EIGEN_STRONG_INLINE ReverseInnerIterator(const TransposeImpl& xpr, typename TransposeImpl<MatrixType,Sparse>::Index outer) 53 : Base(xpr.derived().nestedExpression(), outer)
|
MappedSparseMatrix.h | 68 const Index outer = IsRowMajor ? row : col; local 71 Index start = m_outerIndex[outer]; 72 Index end = m_outerIndex[outer+1]; 87 const Index outer = IsRowMajor ? row : col; local 90 Index start = m_outerIndex[outer]; 91 Index end = m_outerIndex[outer+1]; 119 InnerIterator(const MappedSparseMatrix& mat, Index outer) 121 m_outer(outer), 122 m_id(mat.outerIndexPtr()[outer]), 124 m_end(mat.outerIndexPtr()[outer+1] [all...] |
SparseBlock.h | 47 inline InnerIterator(const SparseInnerVectorSet& xpr, Index outer) 48 : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 58 inline ReverseInnerIterator(const SparseInnerVectorSet& xpr, Index outer) 59 : MatrixType::ReverseInnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 73 inline SparseInnerVectorSet(const MatrixType& matrix, Index outer) 74 : m_matrix(matrix), m_outerStart(outer), m_outerSize(Size) 77 eigen_assert( (outer>=0) && (outer<matrix.outerSize()) ) [all...] |
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())
|
/external/skia/tests/ |
StrokeTest.cpp | 30 SkRect outer(r); 31 outer.outset(width/2, width/2); 44 REPORTER_ASSERT(reporter, equal(outer, fillPath.getBounds())); 52 REPORTER_ASSERT(reporter, equal(nested[0], outer));
|
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/dataclass/ |
OuterClass_InnerClass_Delegate.java | 27 public static int get(OuterClass outer, InnerClass inner, int a, long b) {
|
/external/chromium_org/v8/test/mjsunit/ |
debug-evaluate-closure.js | 40 assertEquals("outer bar", exec_state.frame(0).evaluate("outer").value()); 42 assertEquals("baz outer", exec_state.frame(1).evaluate("baz").value()); 45 exec_state.frame(0).evaluate("outer = 'outer foo'"); 47 exec_state.frame(1).evaluate("baz = 'baz outer foo'"); 57 var outer = "outer"; variable 58 var baz = "baz outer"; 71 outer = "outer bar" [all...] |
debug-stepout-scope-part8.js | 67 with ({x: 'outer'}) { 76 with ({x: 'outer'}) { 86 with ({x: 'outer'}) { 97 with ({x: 'outer'}) { 109 with ({x: 'outer'}) { 118 with ({x: 'outer'}) { 131 with ({x: 'outer'}) { 141 with ({x: 'outer'}) { 152 with ({x: 'outer'}) { 165 with ({x: 'outer'}) { [all...] |
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
BlockOfDynamicSparseMatrix.h | 32 inline InnerIterator(const SparseInnerVectorSet& xpr, Index outer) 33 : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 47 inline SparseInnerVectorSet(const MatrixType& matrix, Index outer) 48 : m_matrix(matrix), m_outerStart(outer), m_outerSize(Size) 51 eigen_assert( (outer>=0) && (outer<matrix.outerSize()) );
|
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...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
armVCM4P2_BlockMatch_Half.c | 75 OMX_INT outer, inner, count, index; local 95 for (outer = 0, count = 0,index = 0; 96 outer < BlockSize; 97 outer++, index += refWidth - BlockSize) 150 for (outer = 0, count = 0, candSAD = 0,index = 0; 151 outer < BlockSize; 152 outer++, index += refWidth - BlockSize)
|
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
hmac.py | 39 self.outer = digestmod.new() 51 self.outer.update(_strxor(key, opad)) 73 other.outer = self.outer.copy() 83 h = self.outer.copy()
|
/external/skia/gm/ |
testimagefilters.cpp | 37 SkImageFilter* outer = new SkOffsetImageFilter(SkIntToScalar(16), SkIntToScalar(16)); local 39 SkAutoUnref aur0(outer); 41 return new SkComposeImageFilter(outer, inner); 52 SkImageFilter* outer = new SkOffsetImageFilter(SkIntToScalar(16), SkIntToScalar(16)); local 54 SkAutoUnref aur0(outer); 56 SkImageFilter* compose = new SkComposeImageFilter(outer, inner); 69 SkImageFilter* outer = new SkOffsetImageFilter(SkIntToScalar(16), SkIntToScalar(16)); local 71 SkAutoUnref aur0(outer); 73 SkImageFilter* compose = new SkComposeImageFilter(outer, inner);
|
/frameworks/base/services/java/com/android/server/wm/ |
BlackFrame.java | 103 pw.print(prefix); pw.print("Outer: "); mOuterRect.printShortString(pw); 115 public BlackFrame(SurfaceSession session, Rect outer, Rect inner, int layer, int layerStack, 121 mOuterRect = new Rect(outer); 124 if (outer.top < inner.top) { 126 outer.left, outer.top, inner.right, inner.top, layerStack); 128 if (outer.left < inner.left) { 130 outer.left, inner.top, inner.left, outer.bottom, layerStack); 132 if (outer.bottom > inner.bottom) [all...] |
/external/chromium_org/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/compiler-rt/BlocksRuntime/tests/ |
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/ |
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/chromium_org/third_party/skia/src/doc/ |
SkDocument.cpp | 29 SkRect outer = SkRect::MakeWH(width, height); local 33 if (!inner.intersect(outer)) { 37 inner = outer;
|
/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 | 29 SkRect outer = SkRect::MakeWH(width, height); local 33 if (!inner.intersect(outer)) { 37 inner = outer;
|
/packages/apps/Camera2/src/com/android/camera/crop/ |
BoundedRect.java | 26 * outer, rotated rectangle. 30 private RectF outer; field in class:BoundedRect 36 outer = new RectF(outerRect); 46 outer = new RectF(outerRect); 56 outer.set(outerRect); 95 r.set(outer); 103 return new RectF(outer); 118 float[] outerCorners = CropMath.getCornersFromRect(outer); 129 if (!CropMath.inclusiveContains(outer, correctedInnerX, correctedInnerY)) { 144 if (!CropMath.inclusiveContains(outer, correctedInnerX, correctedInnerY)) [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/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()
|