HomeSort by relevance Sort by last modified time
    Searched refs:p2 (Results 126 - 150 of 1664) sorted by null

1 2 3 4 56 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
param_eq.pass.cpp 29 P p2(b, b+4, p);
30 assert(p1 == p2);
38 P p2(b, b+4, p);
39 assert(p1 != p2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
param_eq.pass.cpp 29 P p2(b, b+4, p);
30 assert(p1 == p2);
38 P p2(b, b+4, p);
39 assert(p1 != p2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/
swap.pass.cpp 37 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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.spec/
swap.pass.cpp 37 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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
owner_before_shared_ptr.pass.cpp 22 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/
inet_aton.c 14 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;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
syn_filt.c 43 Word16 *yy, *p1, *p2; local
55 p2 = &yy[i-1];
57 L_tmp -= vo_mult32((*p1++), (*p2--));
58 L_tmp -= vo_mult32((*p1++), (*p2--));
59 L_tmp -= vo_mult32((*p1++), (*p2--));
60 L_tmp -= vo_mult32((*p1++), (*p2--));
61 L_tmp -= vo_mult32((*p1++), (*p2--));
62 L_tmp -= vo_mult32((*p1++), (*p2--));
63 L_tmp -= vo_mult32((*p1++), (*p2--));
64 L_tmp -= vo_mult32((*p1++), (*p2--))
99 Word16 *p1, *p2, *p3; local
    [all...]
  /external/libnfc-nci/src/hal/include/
nfc_hal_target.h 176 #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),(UINTPTR)(p3),(UINTPTR)(p4),
    [all...]
  /frameworks/minikin/libs/minikin/
GraphemeBreak.cpp 46 int32_t p2 = u_getIntPropertyValue(c2, UCHAR_GRAPHEME_CLUSTER_BREAK); local
48 if (p1 == U_GCB_CR && p2 == U_GCB_LF) {
56 if (p2 == U_GCB_CONTROL || p2 == U_GCB_CR || p2 == U_GCB_LF) {
67 if (p1 == U_GCB_L && (p2 == U_GCB_L || p2 == U_GCB_V || p2 == U_GCB_LV || p2 == U_GCB_LVT)) {
71 if ((p1 == U_GCB_LV || p1 == U_GCB_V) && (p2 == U_GCB_V || p2 == U_GCB_T))
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.tycho.p2.tools.shared/0.20.0/
org.eclipse.tycho.p2.tools.shared-0.20.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.p2.tools.shared/0.18.1/
org.eclipse.tycho.p2.tools.shared-0.18.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.metadata.repository_1.2.100.v20130327-2119.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.metadata.repository_1.2.100.v20130327-2119.jar 
  /external/chromium_org/third_party/libjingle/source/talk/base/
refcount.h 56 template<typename P1, typename P2>
57 RefCountedObject(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {
60 template<typename P1, typename P2, typename P3>
61 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {
64 template<typename P1, typename P2, typename P3, typename P4>
65 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4
    [all...]
  /external/chromium_org/third_party/webrtc/base/
refcount.h 39 template<typename P1, typename P2>
40 RefCountedObject(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {
43 template<typename P1, typename P2, typename P3>
44 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {
47 template<typename P1, typename P2, typename P3, typename P4>
48 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
ref_count.h 51 template<typename P1, typename P2>
52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {}
54 template<typename P1, typename P2, typename P3>
55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {}
57 template<typename P1, typename P2, typename P3, typename P4>
58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {
    [all...]
  /external/clang/test/CodeGen/
may-alias.c 22 void test1(struct Test1MA *p1, struct Test1 *p2) {
28 p2->x = 3;
  /external/clang/test/CodeGenCXX/
sparcv9-abi.cpp 23 notpod p2; local
25 f2(p2);
  /external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/
release.pass.cpp 27 A* p2 = ap.release(); local
28 assert(p2 == p);
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
owner_less.pass.cpp 40 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/
new-cpp.cpp 20 s* p2 = new (std::nothrow) s; local
24 delete p2;
  /external/webrtc/src/system_wrappers/interface/
ref_count.h 51 template<typename P1, typename P2>
52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {}
54 template<typename P1, typename P2, typename P3>
55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {}
57 template<typename P1, typename P2, typename P3, typename P4>
58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/
release.pass.cpp 27 A* p2 = ap.release(); local
28 assert(p2 == p);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
owner_less.pass.cpp 40 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/icu/icu4c/source/common/
sharedobject.h 69 T *p2 = new T(*p); local
70 if(p2 == NULL) { return NULL; }
72 ptr = p2;
73 p2->addRef();
74 return p2;

Completed in 1043 milliseconds

1 2 3 4 56 7 8 91011>>