Searched refs:p2 (Results 76 - 100 of 1006) sorted by relevance

1234567891011>>

/external/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
H A Dparam_eq.pass.cpp29 P p2(b, b+4, p);
30 assert(p1 == p2);
38 P p2(b, b+4, p);
39 assert(p1 != p2);
/external/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
H A Dparam_eq.pass.cpp29 P p2(b, b+4, p);
30 assert(p1 == p2);
38 P p2(b, b+4, p);
39 assert(p1 != p2);
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/
H A Dswap.pass.cpp37 std::shared_ptr<A> p2(ptr2);
38 p1.swap(p2);
41 assert(p2.use_count() == 1);
42 assert(p2.get() == ptr1);
55 std::shared_ptr<A> p2; local
56 p1.swap(p2);
59 assert(p2.use_count() == 1);
60 assert(p2.get() == ptr1);
73 std::shared_ptr<A> p2(ptr2);
74 p1.swap(p2);
91 std::shared_ptr<A> p2; local
[all...]
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.spec/
H A Dswap.pass.cpp37 std::shared_ptr<A> p2(ptr2);
38 swap(p1, p2);
41 assert(p2.use_count() == 1);
42 assert(p2.get() == ptr1);
55 std::shared_ptr<A> p2; local
56 swap(p1, p2);
59 assert(p2.use_count() == 1);
60 assert(p2.get() == ptr1);
73 std::shared_ptr<A> p2(ptr2);
74 swap(p1, p2);
91 std::shared_ptr<A> p2; local
[all...]
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
H A Downer_before_shared_ptr.pass.cpp22 const std::shared_ptr<int> p2 = p1; local
25 const std::weak_ptr<int> w2(p2);
27 assert(!w1.owner_before(p2));
30 assert(w3.owner_before(p1) == w3.owner_before(p2));
/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;
36 matched = sscanf(cp, "%u.%u%n", &p1, &p2, &consumed);
39 in_addr_t host_order_addr = (p1 << 24) | p2;
/external/libnfc-nci/src/hal/include/
H A Dnfc_hal_target.h176 #define NCI_TRACE_2(l,t,m,p1,p2) LogMsg(TRACE_CTRL_GENERAL | (l) | TRACE_ORG_STACK | (t),(m),(UINTPTR)(p1), \
177 (UINTPTR)(p2))
178 #define NCI_TRACE_3(l,t,m,p1,p2,p3) LogMsg(TRACE_CTRL_GENERAL | (l) | TRACE_ORG_STACK | (t),(m),(UINTPTR)(p1), \
179 (UINTPTR)(p2),(UINTPTR)(p3))
180 #define NCI_TRACE_4(l,t,m,p1,p2,p3,p4) LogMsg(TRACE_CTRL_GENERAL | (l) | TRACE_ORG_STACK | (t),(m),(UINTPTR)(p1), \
181 (UINTPTR)(p2),(UINTPTR)(p3),(UINTPTR)(p4))
182 #define NCI_TRACE_5(l,t,m,p1,p2,p3,p4,p5) LogMsg(TRACE_CTRL_GENERAL | (l) | TRACE_ORG_STACK | (t),(m),(UINTPTR)(p1), \
183 (UINTPTR)(p2),(UINTPTR)(p3),(UINTPTR)(p4), \
185 #define NCI_TRACE_6(l,t,m,p1,p2,p3,p4,p5,p6) LogMsg(TRACE_CTRL_GENERAL | (l) | TRACE_ORG_STACK | (t),(m),(UINTPTR)(p1), \
186 (UINTPTR)(p2),(UINTPT
[all...]
/external/chromium_org/third_party/webrtc/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/clang/test/CodeGen/
H A Dmay-alias.c22 void test1(struct Test1MA *p1, struct Test1 *p2) { argument
28 p2->x = 3;
/external/clang/test/CodeGenCXX/
H A Dsparcv9-abi.cpp23 notpod p2; local
25 f2(p2);
/external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/
H A Drelease.pass.cpp27 A* p2 = ap.release(); local
28 assert(p2 == p);
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
H A Downer_less.pass.cpp40 const std::shared_ptr<int> p2 = p1; local
43 const std::weak_ptr<int> w2(p2);
50 assert(!cs(p1, p2));
51 assert(!cs(p2, p1));
53 assert(cs(p3, p1) == cs(p3, p2));
56 assert(!cs(p2, w1));
69 assert(!cs(w1, p2));
72 assert(cs(w3, p1) == cs(w3, p2));
/external/valgrind/main/massif/tests/
H A Dnew-cpp.cpp20 s* p2 = new (std::nothrow) s; local
24 delete 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/chromium_org/media/base/
H A Dgmock_callback_support.h33 // The RunCallback<N>(p1, p2, ..., p_k) action invokes Run() method on the N-th
34 // (0-based) argument of the mock function, with arguments p1, p2, ..., p_k.
77 AND_3_VALUE_PARAMS(p0, p1, p2)) {
78 return ::std::tr1::get<k>(args).Run(p0, p1, p2);
83 AND_4_VALUE_PARAMS(p0, p1, p2, p3)) {
84 return ::std::tr1::get<k>(args).Run(p0, p1, p2, p3);
89 AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)) {
90 return ::std::tr1::get<k>(args).Run(p0, p1, p2, p3, p4);
95 AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)) {
96 return ::std::tr1::get<k>(args).Run(p0, p1, p2, p
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.operations_2.0.0.v20100510.jar ... eclipse/equinox/ org/eclipse/equinox/internal/ org/eclipse/equinox/internal/p2/ org/eclipse/equinox/internal/p2/operations/ org/eclipse/equinox/internal ...
H A Dorg.eclipse.equinox.p2.metadata.repository_1.1.0.v20100513.jar ... eclipse/equinox/ org/eclipse/equinox/internal/ org/eclipse/equinox/internal/p2/ org/eclipse/equinox/internal/p2/metadata/ org/eclipse/equinox/internal
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar ... eclipse/equinox/ org/eclipse/equinox/internal/ org/eclipse/equinox/internal/p2/ org/eclipse/equinox/internal/p2/metadata/ org/eclipse/equinox/internal ...
H A Dorg.eclipse.equinox.p2.garbagecollector_1.0.100.v20100503.jar ... eclipse/equinox/ org/eclipse/equinox/internal/ org/eclipse/equinox/internal/p2/ org/eclipse/equinox/internal/p2/garbagecollector/ org/eclipse/equinox/internal ...
H A Dorg.eclipse.equinox.p2.updatechecker_1.1.101.R36x_v20100823.jar ... eclipse/equinox/ org/eclipse/equinox/internal/ org/eclipse/equinox/internal/p2/ org/eclipse/equinox/internal/p2/updatechecker/ org/eclipse/equinox/internal ...
/external/ceres-solver/include/ceres/internal/
H A Dscoped_ptr.h109 void swap(scoped_ptr& p2) { argument
111 ptr_ = p2.ptr_;
112 p2.ptr_ = tmp;
136 template <class C2> bool operator==(scoped_ptr<C2> const& p2) const;
137 template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const;
146 inline void swap(scoped_ptr<C>& p1, scoped_ptr<C>& p2) { argument
147 p1.swap(p2);
151 inline bool operator==(const C* p1, const scoped_ptr<C>& p2) { argument
152 return p1 == p2.get();
156 inline bool operator==(const C* p1, const scoped_ptr<const C>& p2) { argument
161 operator !=(const C* p1, const scoped_ptr<C>& p2) argument
166 operator !=(const C* p1, const scoped_ptr<const C>& p2) argument
243 swap(scoped_array& p2) argument
274 swap(scoped_array<C>& p1, scoped_array<C>& p2) argument
279 operator ==(const C* p1, const scoped_array<C>& p2) argument
284 operator ==(const C* p1, const scoped_array<const C>& p2) argument
289 operator !=(const C* p1, const scoped_array<C>& p2) argument
294 operator !=(const C* p1, const scoped_array<const C>& p2) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/mips/dspr2/
H A Dloopfilter_filters_dspr2.c50 uint32_t p2,
66 /* mask |= (abs(p3 - p2) > limit) */
67 "subu_s.qb %[c], %[p3], %[p2] \n\t"
68 "subu_s.qb %[r_k], %[p2], %[p3] \n\t"
73 /* mask |= (abs(p2 - p1) > limit) */
74 "subu_s.qb %[c], %[p2], %[p1] \n\t"
75 "subu_s.qb %[r_k], %[p1], %[p2] \n\t"
119 : [limit] "r" (limit), [p3] "r" (p3), [p2] "r" (p2),
355 uint32_t pm1, p0, p1, p2, p local
43 vp8_filter_mask_vec_mips( uint32_t limit, uint32_t flimit, uint32_t p1, uint32_t p0, uint32_t p3, uint32_t p2, uint32_t q0, uint32_t q1, uint32_t q2, uint32_t q3, uint32_t thresh, uint32_t *hev, uint32_t *mask ) argument
565 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
682 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1032 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1643 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1788 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1915 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
2125 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
[all...]
/external/libvpx/libvpx/vp8/common/mips/dspr2/
H A Dloopfilter_filters_dspr2.c50 uint32_t p2,
66 /* mask |= (abs(p3 - p2) > limit) */
67 "subu_s.qb %[c], %[p3], %[p2] \n\t"
68 "subu_s.qb %[r_k], %[p2], %[p3] \n\t"
73 /* mask |= (abs(p2 - p1) > limit) */
74 "subu_s.qb %[c], %[p2], %[p1] \n\t"
75 "subu_s.qb %[r_k], %[p1], %[p2] \n\t"
119 : [limit] "r" (limit), [p3] "r" (p3), [p2] "r" (p2),
355 uint32_t pm1, p0, p1, p2, p local
43 vp8_filter_mask_vec_mips( uint32_t limit, uint32_t flimit, uint32_t p1, uint32_t p0, uint32_t p3, uint32_t p2, uint32_t q0, uint32_t q1, uint32_t q2, uint32_t q3, uint32_t thresh, uint32_t *hev, uint32_t *mask ) argument
565 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
682 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1032 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1643 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1788 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
1915 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
2125 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
[all...]
/external/eigen/demos/opengl/
H A Dtrackball.cpp40 bool Trackball::mapToSphere(const Vector2i& p2, Vector3f& v3) argument
42 if ((p2.x() >= 0) && (p2.x() <= int(mpCamera->vpWidth())) &&
43 (p2.y() >= 0) && (p2.y() <= int(mpCamera->vpHeight())) )
45 double x = (double)(p2.x() - 0.5*mpCamera->vpWidth()) / (double)mpCamera->vpWidth();
46 double y = (double)(0.5*mpCamera->vpHeight() - p2.y()) / (double)mpCamera->vpHeight();
/external/chromium-trace/trace-viewer/src/tracing/
H A Dtrace_model_settings_test.js30 var p2 = model.getOrCreateProcess(2);
32 p2.name = 'Renderer';
35 assertFalse(settings.hasUniqueSettingKey(p2));
41 var p2 = model.getOrCreateProcess(2);
44 p2.name = 'Renderer';
47 assertTrue(settings.hasUniqueSettingKey(p2));
53 var p2 = model.getOrCreateProcess(2);
55 var t2 = p2.getOrCreateThread(2);
57 p2.name = 'Renderer';
68 var p2
[all...]

Completed in 2188 milliseconds

1234567891011>>