HomeSort by relevance Sort by last modified time
    Searched refs:p3 (Results 1 - 25 of 519) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
owner_before_shared_ptr.pass.cpp 23 const std::shared_ptr<int> p3(new int);
26 assert(p1.owner_before(p3) || p3.owner_before(p1));
27 assert(p3.owner_before(p1) == p3.owner_before(p2));
owner_before_weak_ptr.pass.cpp 23 const std::shared_ptr<int> p3(new int);
26 const std::weak_ptr<int> w3(p3);
29 assert(p1.owner_before(w3) || p3.owner_before(w1));
30 assert(p3.owner_before(w1) == p3.owner_before(w2));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
owner_before_shared_ptr.pass.cpp 23 const std::shared_ptr<int> p3(new int);
26 assert(p1.owner_before(p3) || p3.owner_before(p1));
27 assert(p3.owner_before(p1) == p3.owner_before(p2));
owner_before_weak_ptr.pass.cpp 23 const std::shared_ptr<int> p3(new int);
26 const std::weak_ptr<int> w3(p3);
29 assert(p1.owner_before(w3) || p3.owner_before(w1));
30 assert(p3.owner_before(w1) == p3.owner_before(w2));
  /external/chromium_org/third_party/icu/source/test/perf/ubrkperf/
UBrkPerf.pl 45 my $p3; # Latest
50 $p3 = $ICUPathLatest."/ubrkperf/$WindowsPlatform/Release/ubrkperf.exe";
54 $p3 = $ICUPathLatest."/ubrkperf/ubrkperf";
80 "TestForwardChar", ["$p1 $m1 TestICUForward", "$p2 $m1 TestICUForward", "$p3 $m1 TestICUForward"],
81 "TestForwardWord", ["$p1 $m2 TestICUForward", "$p2 $m2 TestICUForward", "$p3 $m2 TestICUForward"],
82 "TestForwardLine", ["$p1 $m3 TestICUForward", "$p2 $m3 TestICUForward", "$p3 $m3 TestICUForward"],
83 "TestForwardSentence", ["$p1 $m4 TestICUForward", "$p2 $m4 TestICUForward", "$p3 $m4 TestICUForward"],
85 "TestIsBoundChar", ["$p1 $m1 TestICUIsBound", "$p2 $m1 TestICUIsBound", "$p3 $m1 TestICUIsBound"],
86 "TestIsBoundWord", ["$p1 $m2 TestICUIsBound", "$p2 $m2 TestICUIsBound", "$p3 $m2 TestICUIsBound"],
87 "TestIsBoundLine", ["$p1 $m3 TestICUIsBound", "$p2 $m3 TestICUIsBound", "$p3 $m3 TestICUIsBound"]
    [all...]
  /external/icu/icu4c/source/test/perf/ubrkperf/
UBrkPerf.pl 45 my $p3; # Latest
50 $p3 = $ICUPathLatest."/ubrkperf/$WindowsPlatform/Release/ubrkperf.exe";
54 $p3 = $ICUPathLatest."/ubrkperf/ubrkperf";
80 "TestForwardChar", ["$p1 $m1 TestICUForward", "$p2 $m1 TestICUForward", "$p3 $m1 TestICUForward"],
81 "TestForwardWord", ["$p1 $m2 TestICUForward", "$p2 $m2 TestICUForward", "$p3 $m2 TestICUForward"],
82 "TestForwardLine", ["$p1 $m3 TestICUForward", "$p2 $m3 TestICUForward", "$p3 $m3 TestICUForward"],
83 "TestForwardSentence", ["$p1 $m4 TestICUForward", "$p2 $m4 TestICUForward", "$p3 $m4 TestICUForward"],
85 "TestIsBoundChar", ["$p1 $m1 TestICUIsBound", "$p2 $m1 TestICUIsBound", "$p3 $m1 TestICUIsBound"],
86 "TestIsBoundWord", ["$p1 $m2 TestICUIsBound", "$p2 $m2 TestICUIsBound", "$p3 $m2 TestICUIsBound"],
87 "TestIsBoundLine", ["$p1 $m3 TestICUIsBound", "$p2 $m3 TestICUIsBound", "$p3 $m3 TestICUIsBound"]
    [all...]
  /external/libcxx/test/language.support/support.exception/propagation/
exception_ptr.pass.cpp 30 std::exception_ptr p3 = nullptr; local
31 assert(p3 == nullptr);
32 p3 = nullptr;
33 assert(p3 == nullptr);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/propagation/
exception_ptr.pass.cpp 30 std::exception_ptr p3 = nullptr; local
31 assert(p3 == nullptr);
32 p3 = nullptr;
33 assert(p3 == nullptr);
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/
lt.pass.cpp 27 const std::shared_ptr<int> p3(ptr2, do_nothing);
29 assert(!(p2 < p3) && !(p3 < p2));
eq.pass.cpp 28 const std::shared_ptr<int> p3(ptr2, do_nothing);
30 assert(p2 == p3);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/
lt.pass.cpp 27 const std::shared_ptr<int> p3(ptr2, do_nothing);
29 assert(!(p2 < p3) && !(p3 < p2));
eq.pass.cpp 28 const std::shared_ptr<int> p3(ptr2, do_nothing);
30 assert(p2 == p3);
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
owner_less.pass.cpp 41 const std::shared_ptr<int> p3(new int);
44 const std::weak_ptr<int> w3(p3);
52 assert(cs(p1 ,p3) || cs(p3, p1));
53 assert(cs(p3, p1) == cs(p3, p2));
57 assert(cs(p1, w3) || cs(p3, w1));
58 assert(cs(p3, w1) == cs(p3, w2));
71 assert(cs(w1, p3) || cs(w3, p1))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
owner_less.pass.cpp 41 const std::shared_ptr<int> p3(new int);
44 const std::weak_ptr<int> w3(p3);
52 assert(cs(p1 ,p3) || cs(p3, p1));
53 assert(cs(p3, p1) == cs(p3, p2));
57 assert(cs(p1, w3) || cs(p3, w1));
58 assert(cs(p3, w1) == cs(p3, w2));
71 assert(cs(w1, p3) || cs(w3, p1))
    [all...]
  /art/test/700-LoadArgRegs/src/
Main.java 9 static void testI3(int p1, int p2, int p3) {
10 System.out.println(p1+", "+p2+", "+p3);
12 static void testI4(int p1, int p2, int p3, int p4) {
13 System.out.println(p1+", "+p2+", "+p3+", "+p4);
15 static void testI5(int p1, int p2, int p3, int p4, int p5) {
16 System.out.println(p1+", "+p2+", "+p3+", "+p4+", "+p5);
18 static void testI6(int p1, int p2, int p3, int p4, int p5, int p6) {
19 System.out.println(p1+", "+p2+", "+p3+", "+p4+", "+p5+", "+p6);
21 static void testI7(int p1, int p2, int p3, int p4, int p5, int p6, int p7) {
22 System.out.println(p1+", "+p2+", "+p3+", "+p4+", "+p5+", "+p6+", "+p7)
    [all...]
  /external/libcxx/test/utilities/utility/pairs/pairs.pair/
piecewise.pass.cpp 28 typedef std::pair<P1, P2> P3;
29 P3 p3(std::piecewise_construct, std::tuple<int, int*>(3, nullptr),
31 assert(p3.first == P1(3, nullptr));
32 assert(p3.second == P2(nullptr, 4));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
piecewise.pass.cpp 28 typedef std::pair<P1, P2> P3;
29 P3 p3(std::piecewise_construct, std::tuple<int, int*>(3, nullptr),
31 assert(p3.first == P1(3, nullptr));
32 assert(p3.second == P2(nullptr, 4));
  /external/libnfc-nci/src/include/
bt_trace.h 170 UINT32 p3);
172 UINT32 p3, UINT32 p4);
174 UINT32 p3, UINT32 p4, UINT32 p5);
176 UINT32 p3, UINT32 p4, UINT32 p5, UINT32 p6);
593 #define BT_TRACE_3(l,t,m,p1,p2,p3) LogMsg_3(TRACE_CTRL_GENERAL | (l) | TRACE_ORG_STACK | (t),(m),(UINT32)(p1), \
594 (UINT32)(p2),(UINT32)(p3))
595 #define BT_TRACE_4(l,t,m,p1,p2,p3,p4) LogMsg_4(TRACE_CTRL_GENERAL | (l) | TRACE_ORG_STACK | (t),(m),(UINT32)(p1), \
596 (UINT32)(p2),(UINT32)(p3),(UINT32)(p4))
597 #define BT_TRACE_5(l,t,m,p1,p2,p3,p4,p5) LogMsg_5(TRACE_CTRL_GENERAL | (l) | TRACE_ORG_STACK | (t),(m),(UINT32)(p1), \
598 (UINT32)(p2),(UINT32)(p3),(UINT32)(p4),
    [all...]
  /external/compiler-rt/test/asan/TestCases/
atexit_stats.cc 15 int *p3 = (int*)malloc(9000000); variable
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/mips/dspr2/
loopfilter_filters_dspr2.c 49 uint32_t p3,
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"
119 : [limit] "r" (limit), [p3] "r" (p3), [p2] "r" (p2),
355 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
362 p3 = 0;
386 p3 = *((uint32_t *)(s3));
389 /* if (p1 - p4 == 0) and (p2 - p3 == 0
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/
loopfilter_filters_dspr2.c 49 uint32_t p3,
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"
119 : [limit] "r" (limit), [p3] "r" (p3), [p2] "r" (p2),
355 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
362 p3 = 0;
386 p3 = *((uint32_t *)(s3));
389 /* if (p1 - p4 == 0) and (p2 - p3 == 0
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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/mips/dspr2/
loopfilter_filters_dspr2.c 49 uint32_t p3,
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"
119 : [limit] "r" (limit), [p3] "r" (p3), [p2] "r" (p2),
355 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; local
362 p3 = 0;
386 p3 = *((uint32_t *)(s3));
389 /* if (p1 - p4 == 0) and (p2 - p3 == 0
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/libnfc-nci/src/hal/include/
nfc_hal_target.h 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), \
192 #define HAL_TRACE_ERROR3(m,p1,p2,p3) {if (nfc_hal_cb.trace_level >= BT_TRACE_LEVEL_ERROR) NCI_TRACE_3(TRACE_LAYER_HAL, TRACE_TYPE_ERROR, m,p1,p2,p3);}
    [all...]
  /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;
  /external/chromium_org/third_party/WebKit/public/platform/
WebFloatQuad.h 54 WebFloatQuad(const WebFloatPoint& p0, const WebFloatPoint& p1, const WebFloatPoint& p2, const WebFloatPoint& p3)
59 p[3] = p3;
69 p[2] = q.p3();

Completed in 944 milliseconds

1 2 3 4 5 6 7 8 91011>>