Searched defs:p4 (Results 1 - 25 of 114) sorted by relevance

12345

/external/clang/test/Analysis/
H A DMalloc+MismatchedDeallocator_intersections.cpp25 int *p4 = new int; local
26 delete p4;
27 int j = *p4; // no-warning
H A DNewDelete+MismatchedDeallocator_intersections.cpp26 int *p4 = (int *)malloc(sizeof(int)); local
27 free(p4);
28 int j = *p4; // no warn
H A DNewDelete-variadic.cpp22 int *p4 = new (x) int[0]; // no warn local
/external/compiler-rt/test/tsan/
H A Daligned_vs_unaligned_race.cc19 u_uint64_t *p4 = reinterpret_cast<u_uint64_t *>(p1 + 1); local
20 (*p4).val++;
/external/testng/src/test/java/test/parameters/
H A DInheritFromSuiteChild1.java18 public void inheritedparameter(String p1, String p2, @Optional("foobar")String p3, String p4) { argument
22 Assert.assertEquals(p4, "c1p4");
H A DInheritFromSuiteChild2.java18 public void inheritedparameter(String p1, String p2, String p3, @Optional("abc")String p4) { argument
22 Assert.assertEquals(p4, "abc");
H A DInheritFromSuiteChild3.java17 public void inheritedparameter(String p1, String p2, String p3, String p4) { argument
21 Assert.assertEquals(p4, "c3p4");
/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.cpp27 // CHECK: const char *p4 = 297_bar;
28 const char *p4 = 0x129_bar; variable
H A Dtrailing-return-0x.cpp73 only<double> p4 = xx.get_nested<double>().h(0L, 1.0, 3.14f); variable
/external/llvm/unittests/ADT/
H A DMakeUniqueTest.cpp34 auto p4 = make_unique<std::tuple<int, int, int, int>>(0, 1, 2, 3); local
35 EXPECT_TRUE((bool)p4);
36 EXPECT_EQ(std::make_tuple(0, 1, 2, 3), *p4);
/external/ltp/testcases/kernel/mem/thp/
H A Dthp02.c50 static void *p, *p2, *p3, *p4; variable
77 p4 = mremap(old_addr, size - ps, size - ps,
79 if (p4 == MAP_FAILED)
81 if (memcmp(p4, p2, size - ps))
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_perf.c49 float p1, p2, p3, p4, p5, p6; local
93 p4 = 100.0 * (float) lp_count.nr_non_empty_4 / (float) total_4;
99 debug_printf("llvmpipe: nr_non_empty_4x4: %9u (%3.0f%% of %u)\n", lp_count.nr_non_empty_4, p4, total_4);
/external/tensorflow/tensorflow/core/common_runtime/gpu/
H A Dpool_allocator_test.cc64 void* p4 = pool.AllocateRaw(4, 4); local
67 EXPECT_NE(nullptr, p4);
70 pool.DeallocateRaw(p4);
/external/webrtc/webrtc/system_wrappers/include/
H A Dref_count.h58 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/Modules/
H A Dusing-decl.cpp82 int conflicting_hidden_using_decl_mixed_4::*p4; member in class:conflicting_hidden_using_decl_mixed_4
/external/valgrind/memcheck/tests/
H A Dleak-cases.c11 // p4 AAA ---> BBB DL / I IL / L
61 Node* p4; variable
/external/clang/test/CodeGen/
H A Dppc64-struct-onefloat.c32 SSf p4 = { { 22.63f } }; local
34 bar(p1, p2, p4, p5);
42 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr inbounds %struct.s4, %struct.s4* %p4, i32 0, i32 0
/external/clang/test/Sema/
H A Denable_if.c100 void *p4 = (void *)isdigit2; local
128 void *p4 = (void*)f2; // expected-error{{address of overloaded function 'f2' is ambiguous}} expected-note@121{{candidate function}} expected-note@122{{candidate function made ineligible by enable_if}} expected-note@123{{candidate function}} local
137 void *p4 = (void*)f3; // expected-error{{address of overloaded function 'f3' does not match required type 'void'}} expected-note@131{{candidate function made ineligible by enable_if}} expected-note@132{{candidate function made ineligible by enable_if}} local
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/
H A D2-2.c88 4: p4 pa4 NULL (16)
99 void p4(void) function
252 ret = pthread_atfork(p4, pa4, NULL);
/external/python/cpython2/Tools/pybench/
H A DInstances.py37 p4 = d(i,i,i) variable in class:CreateInstances.test.e
H A DNewInstances.py46 p4 = d(i,i,i) variable in class:CreateNewInstances.test.e
/external/python/cpython3/Tools/pybench/
H A DInstances.py37 p4 = d(i,i,i) variable in class:CreateInstances.test.e
H A DNewInstances.py46 p4 = d(i,i,i) variable in class:CreateNewInstances.test.e
/external/webrtc/webrtc/base/
H A Dcallback.h203 R operator()(P1 p1, P2 p2, P3 p3, P4 p4) { argument
206 return helper_->Run(p1, p2, p3, p4);
213 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4) = 0;
217 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4) { argument
218 return functor_(p1, p2, p3, p4);
237 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, p
[all...]

Completed in 959 milliseconds

12345