Searched defs:outer (Results 1 - 25 of 179) sorted by relevance

12345678

/external/clang/test/CodeGen/
H A Dlineno-dbginfo.c4 // CHECK: !DIGlobalVariable(name: "outer",
8 int outer = 42; variable
H A Dalias.c71 int outer(int a) { return inner(a); } function
72 // CHECKCC: define arm_aapcs_vfpcc i32 @outer(i32 %a) [[NUW]] {
/external/python/cpython2/Lib/test/
H A Dwarning_tests.py5 def outer(message, stacklevel=1): function
/external/valgrind/none/tests/amd64-linux/
H A Dbug345887.c33 static void outer(void) function
40 outer();
/external/valgrind/none/tests/amd64-solaris/
H A Dcoredump_single_thread.c37 static void outer(void) function
44 outer();
H A Dcoredump_single_thread_sse.c56 static void outer(void) function
63 outer();
/external/valgrind/none/tests/x86-linux/
H A Dbug345887.c24 static void outer(void) function
31 outer();
/external/valgrind/none/tests/x86-solaris/
H A Dcoredump_single_thread_sse.c64 static void outer(void) function
71 outer();
H A Dcoredump_single_thread.c43 static void outer(void) function
50 outer();
/external/clang/test/PCH/
H A Dcxx-variadic-templates.h20 template<typename...Ts> struct outer { struct
25 template struct outer<int, int>;
/external/clang/test/SemaCXX/
H A Dattr-cxx0x.cpp27 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/compiler-rt/test/BlocksRuntime/
H A Drecursive-block.c35 /*__block*/ voidVoid outer = ^{ local
39 //printf("outer looks like: %s\n", _Block_dump(outer));
40 voidVoid result = Block_copy(outer);
/external/javassist/src/main/javassist/
H A DCtNewNestedClass.java40 private static void updateInnerEntry(int mod, String name, CtClass clazz, boolean outer) { argument
53 if (outName != null && outer)
/external/skia/bench/
H A DBlurRectsBench.cpp18 BlurRectsBench(SkRect outer, SkRect inner, SkScalar radius) { argument
20 fOuter = outer;
56 BlurRectsNinePatchBench(SkRect outer, SkRect inner, SkScalar radius) argument
57 : INHERITED(outer, inner, radius) {
66 BlurRectsNonNinePatchBench(SkRect outer, SkRect inner, SkScalar radius) argument
67 : INHERITED(outer, inner, radius) {
/external/skia/gm/
H A Dblurs.cpp88 SkRect outer = SkRect::MakeXYWH(10.125f, 10.125f, 100.125f, 100); local
91 path.addRect(outer, SkPath::kCW_Direction);
106 SkRect outer = SkRect::MakeXYWH(10, 110, 100, 100); local
109 path.addRect(outer, SkPath::kCW_Direction);
/external/skia/src/core/
H A DSkDocument.cpp28 SkRect outer = SkRect::MakeWH(width, height); local
32 if (!inner.intersect(outer)) {
36 inner = outer;
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp8-0x.cpp7 struct outer { struct in namespace:PR10127
23 operator decltype(outer::middle::inner()) ();
24 operator decltype(outer::middle())::inner2 ();
25 operator decltype(outer())::middle::inner3 ();
26 str(int (decltype(outer::middle::inner())::*n)(),
27 int (decltype(outer::middle())::inner::*o)(),
28 int (decltype(outer())::middle::inner::*p)());
31 decltype(outer::middle::inner()) a;
33 a.decltype(outer::middle())::mfunc(); // expected-error{{'PR10127::outer
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp6.cpp45 Outer<int, int> outer; // expected-note{{instantiation}} variable
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-member.cpp22 // CHECK-SAME: variable: %"struct.outer<foo>::inner"* @x
63 struct outer { struct
70 void func(outer<foo>::inner);
80 outer<foo>::inner x;
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationCoordinatesTests.cpp97 float* const outer = &curTessLevelCase.outer[0]; local
100 for (int j = 0; j < 4; ++j) outer[j] = static_cast<float>(getClampedRoundedTessLevel(spacingMode, outer[j]));
104 if (outer[0] > 1.0f || outer[1] > 1.0f || outer[2] > 1.0f)
112 if (outer[0] > 1.0f || outer[1] > 1.0f || outer[
140 int outer[3]; local
[all...]
/external/eigen/Eigen/src/Core/
H A DStride.h22 * 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 * \tparam _OuterStrideAtCompileTime the outer stride, or Dynamic if you want to specify it at runtime.
72 : m_outer(other.outer()), m_inner(other.inner())
75 /** \returns the outer stride */
77 inline Index outer() const { return m_outer.value(); } function in class:Eigen::Stride
98 /** \brief Convenience specialization of Stride to specify only an outer stride
H A DSwap.h55 void assignPacketByOuterInner(Index outer, Index inner) argument
57 Index row = Base::rowIndexByOuterInner(outer, inner);
58 Index col = Base::colIndexByOuterInner(outer, inner);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_nir_tcs_workarounds.c97 nir_ssa_def *outer = load_output(b, 4, 1, 0); local
100 nir_ior(b, nir_bany(b, nir_flt(b, nir_imm_float(b, 1.0f), outer)),
/external/v8/src/compiler/
H A Djs-context-specialization.cc76 Node* outer = NodeProperties::GetOuterContext(node, &depth); local
79 if (!NodeProperties::GetSpecializationContext(outer, context())
82 // the load by folding-in the outer context node.
83 return SimplifyJSLoadContext(node, outer, depth);
125 Node* outer = NodeProperties::GetOuterContext(node, &depth); local
128 if (!NodeProperties::GetSpecializationContext(outer, context())
131 // the load by folding-in the outer context node.
132 return SimplifyJSStoreContext(node, outer, depth);
/external/eigen/Eigen/src/SparseCore/
H A DSparseCwiseUnaryOp.h56 EIGEN_STRONG_INLINE InnerIterator(const unary_evaluator& unaryOp, Index outer) argument
57 : Base(unaryOp.m_argImpl,outer), m_functor(unaryOp.m_functor)
106 EIGEN_STRONG_INLINE InnerIterator(const unary_evaluator& unaryOp, Index outer) argument
107 : Base(unaryOp.m_argImpl,outer), m_functor(unaryOp.m_functor)

Completed in 2929 milliseconds

12345678