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

1 2 34 5 6 7 8 91011>>

  /external/skia/tests/
PathOpsQuadIntersectionTest.cpp 325 static void oneOffTest1(skiatest::Reporter* reporter, size_t outer, size_t inner) {
326 const SkDQuad& quad1 = testSet[outer];
339 __FUNCTION__, static_cast<int>(outer), static_cast<int>(inner),
345 outer, inner, tt1, xy1.fX, xy1.fY, tt2);
351 for (size_t outer = 0; outer < testSetCount - 1; ++outer) {
352 for (size_t inner = outer + 1; inner < testSetCount; ++inner) {
353 oneOffTest1(reporter, outer, inner);
518 int outer = 0 local
    [all...]
  /external/v8/test/mjsunit/es6/regress/
regress-3683.js 60 // Nested let-bound for loops, outer continue
74 outer: for (let x = 0; x < 10;) {
79 if (y == 2) continue outer;
  /external/v8/test/mjsunit/regress/
regress-4027.js 15 function Outer() {
16 this.outer_name = "outer";
23 function SetOuter(outer, value) {
24 outer.inner = value;
33 var outer1 = new Outer();
34 var outer2 = new Outer();
35 var outer3 = new Outer();
regress-97116.js 35 %DeoptimizeFunction(outer);
39 function outer(should_deopt) { function
47 outer(false);
48 outer(false);
49 %OptimizeFunctionOnNextCall(outer);
50 outer(true);
regress-97116b.js 35 %DeoptimizeFunction(outer);
39 function outer(should_deopt) { function
47 outer(false);
48 outer(false);
49 %OptimizeFunctionOnNextCall(outer);
50 outer(true);
  /external/skia/bench/
RectoriBench.cpp 40 SkRect outer(inner);
41 // outer is always outset either 2x or 4x the blur radius (we go with 2x)
42 outer.outset(2*blurSigma, 2*blurSigma);
46 p.addRect(outer);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_BlockMatch_Integer.c 98 OMX_INT outer, inner, count,index; local
156 for (outer = 0, count = 0, index = 0, candSAD = 0;
157 outer < BlockSize;
158 outer++, index += refWidth - BlockSize)
  /external/skia/src/core/
SkStrokerPriv.cpp 94 static void BluntJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal,
103 SkTSwap<SkPath*>(outer, inner);
107 outer->lineTo(pivot.fX + after.fX, pivot.fY + after.fY);
111 static void RoundJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal,
127 SkTSwap<SkPath*>(outer, inner);
140 outer->conicTo(conics[i].fPts[1], conics[i].fPts[2], conics[i].fW);
149 static void MiterJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal,
174 SkTSwap<SkPath*>(outer, inner);
220 outer->setLastPt(pivot.fX + mid.fX, pivot.fY + mid.fY);
222 outer->lineTo(pivot.fX + mid.fX, pivot.fY + mid.fY)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
StdAttributeList.java 72 outer: {
76 break outer; local
  /dalvik/dx/src/com/android/dx/cf/iface/
StdAttributeList.java 72 outer: {
76 break outer; local
  /external/clang/test/FixIt/
typo.cpp 103 namespace outer { namespace
104 namespace inner { // expected-note{{'outer::inner' declared here}} \
105 // expected-note{{namespace 'outer::inner' defined here}} \
111 using namespace outr::inner; // expected-error{{no namespace named 'inner' in namespace 'outr'; did you mean 'outer::inner'?}}
114 outr::inner::i = 3; // expected-error{{no member named 'inner' in namespace 'outr'; did you mean 'outer::inner'?}}
115 outer::innr::i = 4; // expected-error{{no member named 'innr' in namespace 'outer'; did you mean 'inner'?}}
  /external/eigen/Eigen/src/Core/
Assign.h 138 outer = Index / Derived1::InnerSizeAtCompileTime, enumerator in enum:Eigen::internal::assign_DefaultTraversal_CompleteUnrolling::__anon10931
144 dst.copyCoeffByOuterInner(outer, inner, src);
158 static EIGEN_STRONG_INLINE void run(Derived1 &dst, const Derived2 &src, typename Derived1::Index outer)
160 dst.copyCoeffByOuterInner(outer, Index, src);
161 assign_DefaultTraversal_InnerUnrolling<Derived1, Derived2, Index+1, Stop>::run(dst, src, outer);
199 outer = Index / Derived1::InnerSizeAtCompileTime, enumerator in enum:Eigen::internal::assign_innervec_CompleteUnrolling::__anon10932
206 dst.template copyPacketByOuterInner<Derived2, Aligned, JointAlignment>(outer, inner, src);
221 static EIGEN_STRONG_INLINE void run(Derived1 &dst, const Derived2 &src, typename Derived1::Index outer)
223 dst.template copyPacketByOuterInner<Derived2, Aligned, Aligned>(outer, Index, src);
225 Index+packet_traits<typename Derived1::Scalar>::size, Stop>::run(dst, src, outer);
    [all...]
Stride.h 22 * It holds two values: the inner stride and the outer stride.
27 * The outer stride is the pointer increment between two consecutive rows of a row-major matrix or
34 * \param _OuterStrideAtCompileTime the outer stride, or Dynamic if you want to specify it at runtime.
69 : m_outer(other.outer()), m_inner(other.inner())
72 /** \returns the outer stride */
73 inline Index outer() const { return m_outer.value(); } function in class:Eigen::Stride
94 /** \brief Convenience specialization of Stride to specify only an outer stride
  /external/eigen/Eigen/src/SparseCore/
SparseCwiseUnaryOp.h 41 EIGEN_STRONG_INLINE InnerIterator(const CwiseUnaryOpImpl& unaryOp, typename CwiseUnaryOpImpl::Index outer)
42 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
64 EIGEN_STRONG_INLINE ReverseInnerIterator(const CwiseUnaryOpImpl& unaryOp, typename CwiseUnaryOpImpl::Index outer)
65 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
105 EIGEN_STRONG_INLINE InnerIterator(const CwiseUnaryViewImpl& unaryOp, typename CwiseUnaryViewImpl::Index outer)
106 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
127 EIGEN_STRONG_INLINE ReverseInnerIterator(const CwiseUnaryViewImpl& unaryOp, typename CwiseUnaryViewImpl::Index outer)
128 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
SparseCwiseBinaryOp.h 77 EIGEN_STRONG_INLINE InnerIterator(const CwiseBinaryOpImpl& binOp, typename Lhs::Index outer)
78 : Base(binOp.derived(),outer)
107 EIGEN_STRONG_INLINE sparse_cwise_binary_op_inner_iterator_selector(const CwiseBinaryXpr& xpr, Index outer)
108 : m_lhsIter(xpr.lhs(),outer), m_rhsIter(xpr.rhs(),outer), m_functor(xpr.functor())
172 EIGEN_STRONG_INLINE sparse_cwise_binary_op_inner_iterator_selector(const CwiseBinaryXpr& xpr, Index outer)
173 : m_lhsIter(xpr.lhs(),outer), m_rhsIter(xpr.rhs(),outer), m_functor(xpr.functor())
226 EIGEN_STRONG_INLINE sparse_cwise_binary_op_inner_iterator_selector(const CwiseBinaryXpr& xpr, Index outer)
227 : m_rhs(xpr.rhs()), m_lhsIter(xpr.lhs(),outer), m_functor(xpr.functor()), m_outer(outer
    [all...]
SparseVector.h 137 inline void startVec(Index outer)
139 EIGEN_UNUSED_VARIABLE(outer);
140 eigen_assert(outer==0);
143 inline Scalar& insertBackByOuterInner(Index outer, Index inner)
145 EIGEN_UNUSED_VARIABLE(outer);
146 eigen_assert(outer==0);
160 Index outer = IsColVector ? col : row; local
161 eigen_assert(outer==0);
351 InnerIterator(const SparseVector& vec, Index outer=0)
354 EIGEN_UNUSED_VARIABLE(outer);
    [all...]
SparseBlock.h 32 inline InnerIterator(const BlockType& xpr, Index outer)
33 : XprType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
44 inline ReverseInnerIterator(const BlockType& xpr, Index outer)
45 : XprType::ReverseInnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
108 inline InnerIterator(const BlockType& xpr, Index outer)
109 : SparseMatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
119 inline ReverseInnerIterator(const BlockType& xpr, Index outer)
491 inline Index outer() const { return Base::outer() - (IsRowMajor ? m_block.m_startRow.value() : m_block.m_startCol.value()); } function in class:Eigen::BlockImpl::InnerIterator
514 inline Index outer() const { return Base::outer() - (IsRowMajor ? m_block.m_startRow.value() : m_block.m_startCol.value()); } function in class:Eigen::BlockImpl::ReverseInnerIterator
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
StringTokenIterator.java 85 outer: while (idx < _text.length()) {
89 break outer; local
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
StringTokenIterator.java 81 outer: while (idx < _text.length()) {
85 break outer; local
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
StringTokenIterator.java 81 outer: while (idx < _text.length()) {
85 break outer; local
  /external/javassist/src/main/javassist/
CtNewNestedClass.java 40 private static void updateInnerEntry(int mod, String name, CtClass clazz, boolean outer) {
53 if (outName != null && outer)
  /external/skia/gm/
shapes.cpp 130 const SkRRect& outer = fShapes[i]; variable
132 float s = 0.95f * SkTMin(outer.rect().width() / inner.rect().width(),
133 outer.rect().height() / inner.rect().height());
135 float dx = (rand.nextF() - 0.5f) * (outer.rect().width() - s * inner.rect().width());
136 float dy = (rand.nextF() - 0.5f) * (outer.rect().height() - s * inner.rect().height());
137 innerXform.setTranslate(outer.rect().centerX() + dx, outer.rect().centerY() + dy);
149 canvas->drawDRRect(outer, xformedInner, paint);
  /external/webrtc/webrtc/libjingle/xmpp/
xmppstanzaparser.h 41 ParseHandler(XmppStanzaParser * outer) : outer_(outer) {}
  /external/skia/experimental/SkV8Example/js/
gears.js 14 var outer = r;
16 pathLike.moveTo(Math.sin(-2*dTq)*outer, Math.cos(-2*dTq)*outer);
18 pathLike.lineTo(Math.sin(dT*i-dTq)*outer, Math.cos(dT*i-dTq)*outer);
21 pathLike.lineTo(Math.sin(dT*(i+1)+dTq)*outer, Math.cos(dT*(i+1)+dTq)*outer);
  /external/v8/test/mjsunit/compiler/
property-refs.js 31 return o.outer.x | o.outer.inner.y;
35 o.outer.x = x;
36 o.outer.inner.y = y;
41 outer: {

Completed in 1476 milliseconds

1 2 34 5 6 7 8 91011>>