Searched defs:p5 (Results 1 - 25 of 75) sorted by relevance

123

/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/clang/test/SemaCXX/
H A Dcxx11-ast-print.cpp29 // CHECK: const char *p5 = 1.0E+12_baz;
30 const char *p5 = 1e12_baz; variable
H A Drval-references-examples.cpp73 unique_ptr<int> p5 = p; // expected-error{{call to deleted constructor of 'unique_ptr<int>'}} local
H A Derr_reference_bind_drops_quals.cpp12 ptr& p5 = vp; // expected-error {{drops 'volatile' qualifier}} local
/external/llvm/unittests/ADT/
H A DMakeUniqueTest.cpp38 auto p5 = make_unique<std::tuple<int, int, int, int, int>>(0, 1, 2, 3, 4); local
39 EXPECT_TRUE((bool)p5);
40 EXPECT_EQ(std::make_tuple(0, 1, 2, 3, 4), *p5);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_perf.c49 float p1, p2, p3, p4, p5, p6; local
61 p5 = 100.0 * (float) lp_count.nr_shade_opaque_64 / (float) total_64;
66 debug_printf("llvmpipe: nr_shade_opaque_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_shade_opaque_64, p5, total_64);
/external/webrtc/webrtc/system_wrappers/include/
H A Dref_count.h61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
62 : T(p1, p2, p3, p4, p5), ref_count_(0) {}
/external/valgrind/memcheck/tests/
H A Dleak-cases.c12 // p5 -?-> AAA (y)DR, (n)DL / P
62 Node* p5; variable
78 p5 = mk(NULL); // Case 5: 16/1 possibly lost (ok)
79 p5++;
/external/clang/test/CodeGen/
H A Dppc64-struct-onefloat.c33 SSd p5 = { { 19.47 } }; local
34 bar(p1, p2, p4, p5);
45 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr inbounds %struct.s5, %struct.s5* %p5, i32 0, i32 0
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/
H A D2-2.c89 5: p5 NULL c5 (32)
104 void p5(void) function
259 ret = pthread_atfork(p5, NULL, c5);
/external/python/cpython2/Tools/pybench/
H A DInstances.py38 p5 = d(3,i,3) variable in class:CreateInstances.test.e
H A DNewInstances.py47 p5 = d(3,i,3) variable in class:CreateNewInstances.test.e
/external/python/cpython3/Tools/pybench/
H A DInstances.py38 p5 = d(3,i,3) variable in class:CreateInstances.test.e
H A DNewInstances.py47 p5 = d(3,i,3) variable in class:CreateNewInstances.test.e
/external/webrtc/webrtc/base/
H A Dcallback.h237 R operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) { argument
240 return helper_->Run(p1, p2, p3, p4, p5);
247 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) = 0;
251 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) { argument
252 return functor_(p1, p2, p3, p4, p5);
H A Drefcount.h53 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
54 : T(p1, p2, p3, p4, p5), ref_count_(0) {
59 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6) argument
60 : T(p1, p2, p3, p4, p5, p6), ref_count_(0) {
65 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7) argument
66 : T(p1, p2, p3, p4, p5, p6, p7), ref_count_(0) {
71 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8) argument
72 : T(p1, p2, p3, p4, p5, p6, p7, p8), ref_count_(0) {
78 P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8, P9 p9)
79 : T(p1, p2, p3, p4, p5, p
77 RefCountedObject( P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8, P9 p9) argument
84 RefCountedObject( P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8, P9 p9, P10 p10) argument
92 RefCountedObject( P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8, P9 p9, P10 p10, P11 p11) argument
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
H A Dp5-cxx0x.cpp109 decltype(make<decltype(make<4, false>())>()) *p5; // ok member in namespace:RequireCompleteType
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dtemplates.cpp100 namespace p5 { namespace
/external/clang/test/CXX/lex/lex.charset/
H A Dp2-cxx11.cpp38 const char32_t *p5 = U"\u0000\u0012\u004e\u007f\u0080\u009f\u00a0\ud799\ue000"; variable
/external/clang/test/Headers/
H A Dstddefneeds.cpp48 ptrdiff_t p5; variable
/external/skia/gm/
H A Dpolygons.cpp44 SkPoint p5[] = {{0, 0}, {20, 20}, {0, 40}, {60, 20}}; // concave polygon with 4 edges variable
64 { p5, SK_ARRAY_COUNT(p5) },
/external/skqp/gm/
H A Dpolygons.cpp44 SkPoint p5[] = {{0, 0}, {20, 20}, {0, 40}, {60, 20}}; // concave polygon with 4 edges variable
64 { p5, SK_ARRAY_COUNT(p5) },
/external/tensorflow/tensorflow/core/lib/gtl/
H A Dmanual_constructor.h184 const T5& p5) {
185 new (space_) Type(p1, p2, p3, p4, p5);
191 const T5& p5, const T6& p6) {
192 new (space_) Type(p1, p2, p3, p4, p5, p6);
198 const T5& p5, const T6& p6, const T7& p7) {
199 new (space_) Type(p1, p2, p3, p4, p5, p6, p7);
205 const T5& p5, const T6& p6, const T7& p7, const T8& p8) {
206 new (space_) Type(p1, p2, p3, p4, p5, p6, p7, p8);
212 const T5& p5, const T6& p6, const T7& p7, const T8& p8,
214 new (space_) Type(p1, p2, p3, p4, p5, p
183 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5) argument
190 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6) argument
197 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7) argument
204 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8) argument
211 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9) argument
219 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9, const T10& p10) argument
228 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9, const T10& p10, const T11& p11) argument
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp6.cpp72 auto S::*p5 = &S::g; // expected-error {{incompatible initializer of type '<overloaded function type>'}} member in class:S::S
/external/guava/guava/src/com/google/common/cache/
H A DStriped64.java97 volatile long p0, p1, p2, p3, p4, p5, p6; field in class:Striped64.Cell

Completed in 2675 milliseconds

123