Searched defs:p1 (Results 76 - 100 of 455) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dtrailing-return-0x.cpp44 only<double> p1 = i(1.0); variable
/external/deqp/framework/opengl/simplereference/
H A DsglrContextUtil.cpp31 void drawQuad (sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1) argument
36 drawQuadWithVaoBuffers(ctx, program, p0, p1);
40 drawQuadWithClientPointers(ctx, program, p0, p1);
44 void drawQuadWithVaoBuffers (sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1) argument
47 float hz = (p0.z() + p1.z()) * 0.5f;
51 p0.x(), p1.y(), hz, 1.0f,
52 p1.x(), p0.y(), hz, 1.0f,
53 p1.x(), p1.y(), p1
114 drawQuadWithClientPointers(sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1) argument
[all...]
/external/eigen/test/eigen2/
H A Deigen2_parametrizedline.cpp30 VectorType p1 = VectorType::Random(dim); local
41 VERIFY_IS_APPROX( (l0.projection(p1)-p1).norm(), l0.distance(p1) );
42 VERIFY_IS_MUCH_SMALLER_THAN( l0.distance(l0.projection(p1)), RealScalar(1) );
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
H A DBIHTriangle.java45 public BIHTriangle(Vector3f p1, Vector3f p2, Vector3f p3) { argument
46 pointa.set(p1);
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DOCTTriangle.java45 public OCTTriangle(Vector3f p1, Vector3f p2, Vector3f p3, int index, int geomIndex) { argument
46 pointa.set(p1);
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
H A Dcopy.pass.cpp62 char g1, g2, g3, p1, p3; local
65 t.setp(&p1, &p3);
69 wchar_t g1, g2, g3, p1, p3; local
72 t.setp(&p1, &p3);
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
H A Dassign.pass.cpp65 char g1, g2, g3, p1, p3; local
68 t.setp(&p1, &p3);
73 wchar_t g1, g2, g3, p1, p3; local
76 t.setp(&p1, &p3);
H A Dswap.pass.cpp75 char g1, g2, g3, p1, p3; local
78 t.setp(&p1, &p3);
83 wchar_t g1, g2, g3, p1, p3; local
86 t.setp(&p1, &p3);
/external/skia/tests/
H A DColorTest.cpp26 SkPMColor p1 = SkPreMultiplyColor(c1); local
29 // function, however, we can promise that p0 -> c1 -> p1 : p0 == p1
30 REPORTER_ASSERT(reporter, p0 == p1);
/external/valgrind/massif/tests/
H A Doverloaded-new.cpp49 s* p1 = new s; local
53 delete p1;
/external/valgrind/memcheck/tests/
H A Dleak-cases.c8 // p1 ---> AAA DR / R
58 Node* p1; variable
70 p1 = mk(NULL); // Case 1: 16/1 still reachable
H A Dvarinfo3.c40 void bar ( char* p1, char* p2, char* p3, char* p4 ) argument
42 croak(p1);
/external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DCipher_ImplTest.java43 private Provider p1; field in class:Cipher_ImplTest
55 p1 = new MyProvider1();
57 Security.insertProviderAt(p1, 1);
103 assertSame("Case1:", p1, c.getProvider());
105 Security.removeProvider(p1.getName());
/external/ceres-solver/include/ceres/internal/
H A Dmanual_constructor.h124 inline void Init(const T1& p1) { argument
125 new(space()) Type(p1);
129 inline void Init(const T1& p1, const T2& p2) { argument
130 new(space()) Type(p1, p2);
134 inline void Init(const T1& p1, const T2& p2, const T3& p3) { argument
135 new(space()) Type(p1, p2, p3);
139 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4) { argument
140 new(space()) Type(p1, p2, p3, p4);
144 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
146 new(space()) Type(p1, p
151 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6) argument
158 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7) argument
165 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8) argument
172 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9) argument
180 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9, const T10& p10) argument
189 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9, const T10& p10, const T11& p11) argument
[all...]
/external/clang/test/Analysis/inlining/
H A Dinline-defensive-checks.cpp70 void test(int *p1, int *p2) { argument
71 idc(p1);
72 Foo f(p1);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp7.cpp7 auto v1 = 0, *p1 = &v1; local
/external/clang/test/CodeGen/
H A Dppc64-struct-onefloat.c30 Sf p1 = { 22.63f }; local
34 bar(p1, p2, p4, p5);
38 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s1, %struct.s1* %p1, i32 0, i32 0
/external/clang/test/PCH/
H A Dtypes.c58 proto p1; variable
59 float p1(float x, float y, ...) { function
62 proto *p2 = p1;
/external/clang/test/Sema/
H A Dvla.c64 void pr23151(int (*p1)[*]) // expected-error {{variable length array must be bound in function definition}} argument
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DParametrizedLine.h53 /** Constructs a parametrized line going from \a p0 to \a p1. */
54 static inline ParametrizedLine Through(const VectorType& p0, const VectorType& p1) argument
55 { return ParametrizedLine(p0, (p1-p0).normalized()); }
/external/jetty/src/java/org/eclipse/jetty/util/
H A DURIUtil.java403 * @param p1 URI path segment (should be encoded)
407 public static String addPaths(String p1, String p2) argument
409 if (p1==null || p1.length()==0)
411 if (p1!=null && p2==null)
412 return p1;
416 return p1;
418 int split=p1.indexOf(';');
420 split=p1.indexOf('?');
422 return p2+p1;
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_points.c58 const GLfloat p1 = ctx->Point.Params[1]; local
66 const GLfloat q = p0 + dist * (p1 + dist * p2);
/external/skia/experimental/StrokePathRenderer/
H A DGrStrokePathRenderer.cpp24 static IntersectionType intersection(const SkPoint& p1, const SkPoint& p2, argument
29 SkScalar x1 = p1.x(), x2 = p2.x(), x3 = p3.x(), x4 = p4.x();
30 SkScalar y1 = p1.y(), y2 = p2.y(), y3 = p3.y(), y4 = p4.y();
/external/v8/src/compiler/
H A Djs-builtin-reducer-unittest.cc121 Node* p1 = Parameter(t1, 1); local
125 UndefinedConstant(), p0, p1);
133 IsPhi(kMachNone, p1, p0,
136 IsBranch(IsNumberLessThan(p0, p1),
157 Node* p1 = Parameter(t1, 1); local
161 UndefinedConstant(), p0, p1);
166 EXPECT_THAT(r.replacement(), IsInt32Mul(p0, p1));
/external/v8/test/cctest/compiler/
H A Dcodegen-tester.cc298 Node* p1 = m.Parameter(1);
313 n1 = p1;
376 Node* p1 = m.Parameter(1); local
377 CHECK_NE(NULL, p1);
381 CHECK_EQ(p1, m.Parameter(1));
502 Node* p1 = m.Parameter(1); local
504 USE(p1);
516 Node* p1 = m.Parameter(1); local
517 m.Return(p1);

Completed in 2772 milliseconds

1234567891011>>