Searched defs:p3 (Results 1 - 25 of 192) sorted by relevance

12345678

/external/chromium_org/v8/test/mjsunit/es6/debug-promises/
H A Dthrow-eventually-caught.js22 var p3 = p2.catch(function() { }); variable
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2593.js32 p3 = { x : 1 };
33 p2.__proto__ = p3
/external/compiler-rt/test/asan/TestCases/
H A Datexit_stats.cc15 int *p3 = (int*)malloc(9000000); variable
/external/libcxx/test/language.support/support.exception/propagation/
H A Dexception_ptr.pass.cpp30 std::exception_ptr p3 = nullptr; local
31 assert(p3 == nullptr);
32 p3 = nullptr;
33 assert(p3 == nullptr);
/external/chromium_org/v8/test/webkit/
H A Dcyclic-prototypes.js29 var o3 = { p3: 3 };
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Dinet_aton.c14 unsigned int p1 = 0, p2 = 0, p3 = 0, p4 = 0; local
16 int matched = sscanf(cp, "%u.%u.%u.%u%n", &p1, &p2, &p3, &p4,
20 if ((p1 | p2 | p3 | p4) <= UCHAR_MAX) {
21 in_addr_t host_order_addr = (p1 << 24) | (p2 << 16) | (p3 << 8) | p4;
27 matched = sscanf(cp, "%u.%u.%u%n", &p1, &p2, &p3, &consumed);
29 if ((p1 | p2) <= UCHAR_MAX && p3 <= USHRT_MAX) {
30 in_addr_t host_order_addr = (p1 << 24) | (p2 << 16) | p3;
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dsmart_pointer_test.cc44 Ptr<Foo> p3; local
45 p3 = p1;
48 EXPECT_EQ(size_t(3), p3->ref_count_);
54 EXPECT_EQ(size_t(2), p3->ref_count_);
57 p3.Release();
59 EXPECT_EQ(NULL, p3.p_);
/external/clang/test/Analysis/
H A DMalloc+MismatchedDeallocator_intersections.cpp23 int *p3 = new int; // no-warning local
H A DNewDelete+MismatchedDeallocator_intersections.cpp24 int *p3 = (int *)malloc(sizeof(int)); // no warn local
H A DNewDelete-variadic.cpp20 int *p3 = new (x) int; // no warn local
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.create/
H A Dmake_unique.array.pass.cpp40 auto p3 = std::make_unique<foo[]>(7); local
42 assert ( p3[i].get () == 3 );
/external/sfntly/cpp/src/test/
H A Dsmart_pointer_test.cc44 Ptr<Foo> p3; local
45 p3 = p1;
48 EXPECT_EQ(size_t(3), p3->ref_count_);
54 EXPECT_EQ(size_t(2), p3->ref_count_);
57 p3.Release();
59 EXPECT_EQ(NULL, p3.p_);
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_TimeZone.java74 public int getOffset(int p1, int p2, int p3, int p4, int p5, int p6) { argument
/external/chromium_org/base/
H A Dbind.h181 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3) { argument
225 new BindState(internal::MakeRunnable(functor), p1, p2, p3));
238 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4) { argument
286 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4));
301 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, argument
354 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4, p5));
370 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, argument
427 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4, p5, p6));
444 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, argument
505 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p
[all...]
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsyscall.h53 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7) { argument
58 (intptr_t)p3,
73 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6) { argument
78 (intptr_t)p3,
87 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { argument
92 (intptr_t)p3,
100 static inline intptr_t Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4) { argument
101 return Call(nr, p0, p1, p2, p3, p4, 0, 0, 0);
105 static inline intptr_t Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3) { argument
106 return Call(nr, p0, p1, p2, p3,
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_perf.c49 float p1, p2, p3, p4, p5, p6; local
60 p3 = 100.0 * (float) lp_count.nr_partially_covered_64 / (float) total_64;
70 debug_printf("llvmpipe: nr_partially_covered_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_64, p3, total_64);
79 p3 = 100.0 * (float) lp_count.nr_partially_covered_16 / (float) total_16;
83 debug_printf("llvmpipe: nr_partially_covered_16x16: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_16, p3, total_16);
92 p3 = 100.0 * (float) lp_count.nr_partially_covered_4 / (float) total_4;
97 debug_printf("llvmpipe: nr_partially_covered_4x4: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_4, p3, total_4);
/external/chromium_org/third_party/skia/samplecode/
H A DSamplePoints.cpp51 SkPaint p0, p1, p2, p3; local
57 p3.setColor(SK_ColorWHITE);
69 canvas->drawPoints(SkCanvas::kPoints_PointMode, n, pts, p3);
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dref_count.h55 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/clang/test/Analysis/diagnostics/
H A Dderef-track-symbolic-region.cpp33 int *p3 = p2; // expected-note {{'p3' initialized to a null pointer value}} local
34 return *p3; // expected-warning {{Dereference of null pointer}}
/external/clang/test/SemaCXX/
H A Dcxx11-ast-print.cpp25 // CHECK: const char *p3 = u8"bar3"_foo;
26 const char *p3 = u8"bar3"_foo; variable
/external/llvm/unittests/ADT/
H A DMakeUniqueTest.cpp30 auto p3 = make_unique<std::tuple<int, int, int>>(0, 1, 2); local
31 EXPECT_TRUE((bool)p3);
32 EXPECT_EQ(std::make_tuple(0, 1, 2), *p3);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_perf.c49 float p1, p2, p3, p4, p5, p6; local
60 p3 = 100.0 * (float) lp_count.nr_partially_covered_64 / (float) total_64;
70 debug_printf("llvmpipe: nr_partially_covered_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_64, p3, total_64);
79 p3 = 100.0 * (float) lp_count.nr_partially_covered_16 / (float) total_16;
83 debug_printf("llvmpipe: nr_partially_covered_16x16: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_16, p3, total_16);
92 p3 = 100.0 * (float) lp_count.nr_partially_covered_4 / (float) total_4;
97 debug_printf("llvmpipe: nr_partially_covered_4x4: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_4, p3, total_4);
/external/skia/samplecode/
H A DSamplePoints.cpp51 SkPaint p0, p1, p2, p3; local
57 p3.setColor(SK_ColorWHITE);
69 canvas->drawPoints(SkCanvas::kPoints_PointMode, n, pts, p3);
/external/webrtc/src/system_wrappers/interface/
H A Dref_count.h55 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/chromium_org/base/win/
H A Dscoped_comptr_unittest.cc90 Ptr p3 = p2; local
93 p3 = p2;

Completed in 8204 milliseconds

12345678