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

1234567891011>>

/external/python/cpython3/Lib/lib2to3/fixes/
H A Dfix_xrange.py55 p1 = patcomp.compile_pattern(P1) variable in class:FixXrange
68 self.p1.match(node.parent.parent, results) and
/external/skia/gm/
H A Dpoints.cpp41 SkPaint p0, p1, p2, p3; variable
45 p1.setColor(SK_ColorGREEN);
57 canvas->drawPoints(SkCanvas::kLines_PointMode, n, pts, p1);
/external/skia/samplecode/
H A DSamplePoints.cpp47 SkPaint p0, p1, p2, p3; local
51 p1.setColor(SK_ColorGREEN);
63 canvas->drawPoints(SkCanvas::kLines_PointMode, n, pts, p1);
/external/skqp/gm/
H A Dpoints.cpp41 SkPaint p0, p1, p2, p3; variable
45 p1.setColor(SK_ColorGREEN);
57 canvas->drawPoints(SkCanvas::kLines_PointMode, n, pts, p1);
/external/skqp/samplecode/
H A DSamplePoints.cpp47 SkPaint p0, p1, p2, p3; local
51 p1.setColor(SK_ColorGREEN);
63 canvas->drawPoints(SkCanvas::kLines_PointMode, n, pts, p1);
/external/syslinux/com32/lib/
H A Dqsort.c28 char *p1, *p2; local
38 for (i = 0, p1 = base; i < nmemb - gap; i++, p1 += size) {
40 if (compar(p1, p2 = (char *)base + j * size) > 0) {
41 memswap(p1, p2, size);
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dsample_harness.cc53 auto p1 = builder.Parameter(1, param1_literal->shape(), "param1"); local
54 auto add = builder.Add(p1, p0, {0});
/external/tensorflow/tensorflow/core/common_runtime/
H A Dgraph_runner_test.cc60 auto p1 = ops::Placeholder(root.WithOpName("p1"), DT_FLOAT); local
62 auto add = ops::Add(root.WithOpName("add"), p1, p2);
68 std::vector<std::pair<string, Tensor>> inputs = {{"p1:0", p1_data},
98 auto p1 = ops::Placeholder(root.WithOpName("p1"), DT_FLOAT); local
100 auto add = ops::Add(root.WithOpName("add"), p1, p2);
106 std::vector<std::pair<string, Tensor>> inputs = {{"p1:0", p1_data},
/external/tensorflow/tensorflow/core/framework/
H A Dtracking_allocator_test.cc74 void* p1 = ta->AllocateRaw(4, 4); local
75 ta->DeallocateRaw(p1);
91 p1 = ta->AllocateRaw(4, 4);
92 EXPECT_EQ(4, ta->RequestedSize(p1));
93 EXPECT_LE(4, ta->AllocatedSize(p1));
94 EXPECT_EQ(1, ta->AllocationId(p1));
96 ta->DeallocateRaw(p1);
123 void* p1 = ta->AllocateRaw(4, 12); local
124 ta->DeallocateRaw(p1);
149 void* p1 local
[all...]
/external/valgrind/memcheck/tests/
H A Dpartiallydefinedeq.c12 void foo ( int* p1, int* p2, unsigned int * hack ) argument
15 if (*p1 == *p2)
/external/webrtc/webrtc/system_wrappers/include/
H A Dref_count.h52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {} argument
55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {} argument
58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {} argument
61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
62 : T(p1, p2, p3, p4, p5), ref_count_(0) {}
/external/blktrace/
H A Dstrverscmp.c91 const unsigned char *p1 = (const unsigned char *) s1; local
123 if (p1 == p2)
126 c1 = *p1++;
134 c1 = *p1++;
147 while (isdigit (*p1++))
/external/clang/test/Analysis/
H A DNewDelete-custom.cpp23 void *p1 = C::operator new(0); // no warn local
/external/clang/test/Misc/
H A Ddiagnostic-crash.cpp28 NewCallback(T1* obj, R(T2::* member)(P1, P2, A1), const P1& p1, const P2& p2) {} argument
/external/clang/test/Modules/
H A Dusing-decl.cpp80 int conflicting_hidden_using_decl_mixed_1::*p1; member in class:conflicting_hidden_using_decl_mixed_1
/external/clang/test/SemaCXX/
H A Dms-property-error.cpp28 S *p1 = 0; local
31 int j = (p1->x)[223][11][2]; // expected-error {{too many arguments to function call, expected 2, have 3}}
32 (p1->x[23]) = argc; // expected-error {{too few arguments to function call, expected 3, have 2}}
H A Dsourceranges.cpp32 void destruct(foo::A *a1, foo::A *a2, P<int> *p1) { argument
38 p1->~P<int>();
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/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
H A Dcopy.pass.cpp64 char g1, g2, g3, p1, p3; local
67 t.setp(&p1, &p3);
71 wchar_t g1, g2, g3, p1, p3; local
74 t.setp(&p1, &p3);
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
H A Dassign.pass.cpp67 char g1, g2, g3, p1, p3; local
70 t.setp(&p1, &p3);
75 wchar_t g1, g2, g3, p1, p3; local
78 t.setp(&p1, &p3);
H A Dswap.pass.cpp76 char g1, g2, g3, p1, p3; local
79 t.setp(&p1, &p3);
84 wchar_t g1, g2, g3, p1, p3; local
87 t.setp(&p1, &p3);
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.special/
H A Dswap.pass.cpp51 A* p1 = new A(1); local
52 std::unique_ptr<A, Deleter<A> > s1(p1, Deleter<A>(1));
55 assert(s1.get() == p1);
65 assert(s2.get() == p1);
72 A* p1 = new A[3]; local
73 std::unique_ptr<A[], Deleter<A[]> > s1(p1, Deleter<A[]>(1));
76 assert(s1.get() == p1);
83 assert(s2.get() == p1);
/external/libese/libapdu/
H A Dapdu.cpp23 CommandApdu::CommandApdu(const uint8_t cla, const uint8_t ins, const uint8_t p1, const uint8_t p2, argument
43 *it++ = p1;
/external/libmojo/mojo/edk/system/
H A Dshared_buffer_unittest.cc45 MojoHandle p0, p1; local
46 CreateMessagePipe(&p0, &p1);
49 EXPECT_EQ("...", ReadMessageWithHandles(p1, &dupe, 1));
137 MojoHandle p0, p1; local
138 CreateMessagePipe(&p0, &p1);
147 WriteMessageWithHandles(h1, message, &p1, 1);
203 MojoHandle p0, p1; local
204 CreateMessagePipe(&p0, &p1);

Completed in 717 milliseconds

1234567891011>>