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

1234567891011>>

/external/linux-tools-perf/perf-3.12.0/arch/hexagon/lib/
H A Dmemset.S43 p1 = cmp.gtu(r2, #7) define
55 if p1 jump 2f /* skip byte loop */
72 p1 = cmp.eq(r2, #1) define
78 if p1 jumpr r31
85 p1 = cmp.eq(r2, #2) define
91 if p1 jumpr r31
98 p1 = cmp.eq(r2, #4) define
105 if p1 jumpr r31
111 p1 = cmp.eq(r3, #1) define
127 p1 define
138 p1 = cmp.eq(r2, #4) define
149 p1 = cmp.eq(r2, #2) define
193 p1 = cmp.eq(r2, #1) define
[all...]
/external/llvm/lib/Transforms/Utils/
H A DCmpInstAnalysis.cpp92 bool llvm::PredicatesFoldable(ICmpInst::Predicate p1, ICmpInst::Predicate p2) { argument
93 return (CmpInst::isSigned(p1) == CmpInst::isSigned(p2)) ||
94 (CmpInst::isSigned(p1) && ICmpInst::isEquality(p2)) ||
95 (CmpInst::isSigned(p2) && ICmpInst::isEquality(p1));
/external/llvm/unittests/ADT/
H A DMakeUniqueTest.cpp22 auto p1 = make_unique<int>(5); local
23 EXPECT_TRUE((bool)p1);
24 EXPECT_EQ(5, *p1);
71 auto p1 = make_unique<int[]>(2); local
72 EXPECT_TRUE((bool)p1);
73 EXPECT_EQ(0, p1[0]);
74 EXPECT_EQ(0, p1[1]);
/external/llvm/unittests/Support/
H A DManagedStatic.cpp47 void *p1 = test1::allocate_stack(a1); local
55 free(p1);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_perf.c49 float p1, p2, p3, p4, p5, p6; local
58 p1 = 100.0 * (float) lp_count.nr_empty_64 / (float) total_64;
71 debug_printf("llvmpipe: nr_empty_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_empty_64, p1, total_64);
77 p1 = 100.0 * (float) lp_count.nr_empty_16 / (float) total_16;
84 debug_printf("llvmpipe: nr_empty_16x16: %9u (%3.0f%% of %u)\n", lp_count.nr_empty_16, p1, total_16);
90 p1 = 100.0 * (float) lp_count.nr_empty_4 / (float) total_4;
98 debug_printf("llvmpipe: nr_empty_4x4: %9u (%3.0f%% of %u)\n", lp_count.nr_empty_4, p1, total_4);
/external/pixman/demos/
H A Dgradient-test.c21 pixman_point_fixed_t p1 = { pixman_double_to_fixed (50), 0 }; local
72 src_img = pixman_image_create_linear_gradient (&p1, &p2,
/external/skia/samplecode/
H A DSamplePoints.cpp51 SkPaint p0, p1, p2, p3; local
55 p1.setColor(SK_ColorGREEN);
67 canvas->drawPoints(SkCanvas::kLines_PointMode, n, pts, p1);
/external/skia/tests/
H A DPictureStateTreeTest.cpp18 SkPaint p1, p2; local
19 p1.setStyle(SkPaint::kFill_Style);
20 p1.setARGB(0x80, 0, 0xff, 0);
36 canvas->drawRect(SkRect::MakeWH(100, 50), p1);
47 canvas->drawRect(SkRect::MakeWH(100, 50), p1);
56 canvas->drawRect(SkRect::MakeWH(100, 50), p1);
58 canvas->drawRect(SkRect::MakeXYWH(99, 99, 1, 1), p1);
/external/valgrind/main/memcheck/tests/
H A Dpartiallydefinedeq.c12 void foo ( int* p1, int* p2, unsigned int * hack ) argument
15 if (*p1 == *p2)
/external/webrtc/src/system_wrappers/interface/
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/bison/lib/
H A Dstrverscmp.c63 const unsigned char *p1 = (const unsigned char *) s1; local
95 if (p1 == p2)
98 c1 = *p1++;
106 c1 = *p1++;
119 while (ISDIGIT (*p1++))
/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/bluetooth/bluedroid/test/suite/support/
H A Dproperty.c76 bool property_equals(const bt_property_t *p1, const bt_property_t *p2) { argument
79 if (!p1 || !p2 || p1->type != p2->type) {
91 if (p1->type == BT_PROPERTY_BDNAME && p1->len != p2->len) {
92 const bt_property_t *shorter = p1, *longer = p2;
93 if (p1->len > p2->len) {
95 longer = p1;
100 return p1->len == p2->len && !memcmp(p1
[all...]
/external/chromium_org/chrome/browser/history/
H A Durl_utils.cc52 bool IsPathPrefix(const std::string& p1, const std::string& p2) { argument
53 if (p1.length() > p2.length())
56 first_diff = std::mismatch(p1.begin(), p1.end(), p2.begin());
57 // Necessary condition: |p1| is a string prefix of |p2|.
58 if (first_diff.first != p1.end())
59 return false; // E.g.: (|p1| = "/test", |p2| = "/exam") => false.
61 // |p1| is string prefix.
64 // |p1| is strict string prefix, check full match of last path component.
65 if (!p1
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dthread_aware_callback.h72 void RunOnTargetThread(const P1& p1) { argument
73 InternalRunOnTargetThread(base::Bind(func_, p1));
77 void RunOnTargetThread(const P1& p1, const P2& p2) { argument
78 InternalRunOnTargetThread(base::Bind(func_, p1, p2));
82 void RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3) { argument
83 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3));
87 void RunOnTargetThread(const P1& p1, argument
91 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4));
95 void RunOnTargetThread(const P1& p1, argument
100 InternalRunOnTargetThread(base::Bind(func_, p1, p
[all...]
/external/chromium_org/third_party/skia/gm/
H A Dpoints.cpp45 SkPaint p0, p1, p2, p3; local
49 p1.setColor(SK_ColorGREEN);
61 canvas->drawPoints(SkCanvas::kLines_PointMode, n, pts, p1);
/external/chromium_org/third_party/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/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtcmalloc_large_unittest.cc50 void* p1 = malloc(size); local
51 CHECK(p1 == NULL);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_large_unittest.cc50 void* p1 = malloc(size); local
51 CHECK(p1 == NULL);
/external/chromium_org/third_party/webrtc/base/
H A Drefcount.h40 RefCountedObject(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) { argument
44 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) { argument
48 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4) argument
49 : T(p1, p2, p3, p4), ref_count_(0) {
53 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
54 : T(p1, p2, p3, p4, p5), ref_count_(0) {
/external/chromium_org/ui/gfx/geometry/
H A Drect_f.cc52 RectF BoundingRect(const PointF& p1, const PointF& p2) { argument
53 float rx = std::min(p1.x(), p2.x());
54 float ry = std::min(p1.y(), p2.y());
55 float rr = std::max(p1.x(), p2.x());
56 float rb = std::max(p1.y(), p2.y());
/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/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...]

Completed in 530 milliseconds

1234567891011>>