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

1 23 4 5 6 7 8 91011>>

  /external/skia/tests/
PathOpsThreeWayTest.cpp 47 for (int outer = 0; outer < testCount - 1; ++outer) {
48 const Curve& oTest = testSet.tests[outer];
49 for (int inner = outer + 1; inner < testCount; ++inner) {
  /external/skqp/tests/
PathOpsThreeWayTest.cpp 47 for (int outer = 0; outer < testCount - 1; ++outer) {
48 const Curve& oTest = testSet.tests[outer];
49 for (int inner = outer + 1; inner < testCount; ++inner) {
  /external/deqp/external/openglcts/modules/glesext/tessellation_shader/
esextcTessellationShaderVertexSpacing.cpp 195 _tess_edge new_edge(run.outer[1], run.outer[1], 1.0f);
216 * converts it into a set of edges that define the outer and inner quad.
243 /* Data set is expected to describe an outer and inner rectangles. We will execute the quad extraction
246 * - first iteration will determine all coordinates that are part of the outer quad;
325 /* Note: If any of the outer tessellation level is 1, at least
352 * Note: for inner quad, we need to subtract 2 segments connecting outer and inner coordinates */
371 tl_tr_edge.outermost_tess_level = run.outer[3];
372 tr_br_edge.outermost_tess_level = run.outer[2];
373 br_bl_edge.outermost_tess_level = run.outer[1]
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
protobufwireadapter.cc 173 OuterMessage outer; local
176 if (!outer.ParseFromString(string)) {
177 LOG(ERROR) << "Error parsing outer message";
182 if (outer.status() != OuterMessage_Status_STATUS_OK) {
183 LOG(ERROR) << "Got error message: " << outer.status();
185 switch (outer.status()) {
197 LOG(INFO) << "Parsing message type: " << outer.type();
199 switch (outer.type()) {
201 ParseConfigurationMessage(outer.payload());
204 ParseConfigurationAckMessage(outer.payload())
365 OuterMessage outer; local
388 OuterMessage outer; local
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseDiagonalProduct.h 70 InnerIterator(const sparse_diagonal_product_evaluator &xprEval, Index outer)
71 : SparseXprInnerIterator(xprEval.m_sparseXprImpl, outer),
72 m_coeff(xprEval.m_diagCoeffImpl.coeff(outer))
105 InnerIterator(const sparse_diagonal_product_evaluator &xprEval, Index outer)
106 : m_sparseIter(xprEval.m_sparseXprEval, outer), m_diagCoeffNested(xprEval.m_diagCoeffNested)
111 inline Index outer() const { return m_sparseIter.outer(); } function in class:Eigen::internal::sparse_diagonal_product_evaluator::InnerIterator
112 inline Index col() const { return SparseXprType::IsRowMajor ? m_sparseIter.index() : m_sparseIter.outer(); }
113 inline Index row() const { return SparseXprType::IsRowMajor ? m_sparseIter.outer() : m_sparseIter.index(); }
SparseCompressedBase.h 157 InnerIterator(const SparseCompressedBase& mat, Index outer)
158 : m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(outer)
167 m_id = mat.outerIndexPtr()[outer];
169 m_end = mat.outerIndexPtr()[outer+1];
171 m_end = m_id + mat.innerNonZeroPtr()[outer];
193 inline Index outer() const { return m_outer.value(); } function in class:Eigen::SparseCompressedBase::InnerIterator
210 template<typename T> InnerIterator(const SparseMatrixBase<T>&, Index outer);
217 ReverseInnerIterator(const SparseCompressedBase& mat, Index outer)
218 : m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(outer)
227 m_start = mat.outerIndexPtr()[outer];
253 inline Index outer() const { return m_outer.value(); } function in class:Eigen::SparseCompressedBase::ReverseInnerIterator
322 const Index outer = Derived::IsRowMajor ? row : col; local
    [all...]
SparseMatrix.h 192 const Index outer = IsRowMajor ? row : col; local
194 Index end = m_innerNonZeros ? m_outerIndex[outer] + m_innerNonZeros[outer] : m_outerIndex[outer+1];
195 return m_data.atInRange(m_outerIndex[outer], end, StorageIndex(inner));
210 const Index outer = IsRowMajor ? row : col; local
213 Index start = m_outerIndex[outer];
214 Index end = m_innerNonZeros ? m_outerIndex[outer] + m_innerNonZeros[outer] : m_outerIndex[outer+1]
888 const Index outer = IsRowMajor ? row : col; local
1133 const Index outer = IsRowMajor ? row : col; local
1285 const Index outer = IsRowMajor ? row : col; local
    [all...]
  /external/eigen/Eigen/src/Core/
Assign_MKL.h 94 for(Index outer = 0; outer < outerSize; ++outer) { \
95 const EIGENTYPE *src_ptr = src.IsRowMajor ? &(src.nestedExpression().coeffRef(outer,0)) : \
96 &(src.nestedExpression().coeffRef(0, outer)); \
97 EIGENTYPE *dst_ptr = dst.IsRowMajor ? &(dst.coeffRef(outer,0)) : &(dst.coeffRef(0, outer)); \
156 for(Index outer = 0; outer < outerSize; ++outer) { \
    [all...]
  /external/python/cpython3/Lib/test/
test_frame.py 18 def outer(self, **kwargs): member in class:ClearTest
38 exc = self.outer(c=c)
106 exc = self.outer(c=c)
119 def outer(): function in function:FrameLocalsTest.make_frames
128 outer()
138 f, outer, inner = self.make_frames()
139 outer_locals = outer.f_locals
147 f, outer, inner = self.make_frames()
148 outer.clear()
150 self.assertEqual(outer.f_locals, {}
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
BlackFrame.java 104 pw.print(prefix); pw.print("Outer: "); mOuterRect.printShortString(pw);
117 Rect outer, Rect inner, int layer, DisplayContent dc,
125 mOuterRect = new Rect(outer);
128 if (outer.top < inner.top) {
130 outer.left, outer.top, inner.right, inner.top, dc);
132 if (outer.left < inner.left) {
134 outer.left, inner.top, inner.left, outer.bottom, dc);
136 if (outer.bottom > inner.bottom)
    [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/skqp/src/core/
SkColorFilter.cpp 107 str->append(SkStringPrintf("SkComposeColorFilter: outer(%s) inner(%s)", outerS.c_str(),
144 SkComposeColorFilter(sk_sp<SkColorFilter> outer, sk_sp<SkColorFilter> inner,
146 : fOuter(std::move(outer))
159 auto outer = xformer->apply(fOuter.get()); variable
161 if (outer != fOuter || inner != fInner) {
162 return SkColorFilter::MakeComposeFilter(outer, inner);
177 sk_sp<SkColorFilter> outer(buffer.readColorFilter());
179 return MakeComposeFilter(std::move(outer), std::move(inner));
182 sk_sp<SkColorFilter> SkColorFilter::MakeComposeFilter(sk_sp<SkColorFilter> outer,
184 if (!outer) {
    [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) (converting constructor) [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=Elaborated
    [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/skia/gm/
drrect_small_inner.cpp 17 auto outer = SkRRect::MakeOval(SkRect::MakeXYWH(0, 0, 2 * kOuterRadius, 2 * kOuterRadius)); local
34 canvas->drawDRRect(outer, inner, paint);
  /external/skqp/gm/
drrect_small_inner.cpp 17 auto outer = SkRRect::MakeOval(SkRect::MakeXYWH(0, 0, 2 * kOuterRadius, 2 * kOuterRadius)); local
34 canvas->drawDRRect(outer, inner, paint);
  /external/skia/include/core/
SkMaskFilter.h 26 * the outer filter to the result of the inner's. Returns nullptr on failure.
28 static sk_sp<SkMaskFilter> MakeCompose(sk_sp<SkMaskFilter> outer, sk_sp<SkMaskFilter> inner);
SkColorFilter.h 104 static sk_sp<SkColorFilter> MakeComposeFilter(sk_sp<SkColorFilter> outer,
106 return outer ? outer->makeComposed(inner) : inner;
  /frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/dataclass/
OuterClass_InnerClass_Delegate.java 31 public static int get(OuterClass outer, InnerClass inner, int a, long b) {
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue20029.go 17 outer:
21 continue outer
  /prebuilts/go/linux-x86/test/fixedbugs/
issue20029.go 17 outer:
21 continue 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");
  /external/perfetto/src/base/
string_splitter.cc 38 StringSplitter::StringSplitter(StringSplitter* outer, char delimiter)
40 Initialize(outer->cur_token(), outer->cur_token_size() + 1);
  /external/gemmlowp/internal/
pack_neon.h 75 for (int outer = 0; outer < 2; outer++) {
79 src_lines_intertwined_4x[2 * cell + outer].val[inner]);
85 src_lines_intertwined_4x[2 * cell + outer].val[inner]);
93 for (int outer = 0; outer < 2; outer++) {
95 int i = 2 * outer + inner;
99 src_lines_intertwined_4x[2 * cell + outer].val[inner])
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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()

Completed in 1506 milliseconds

1 23 4 5 6 7 8 91011>>