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

12345

/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;
/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 uint64_t *p4 = reinterpret_cast<uint64_t *>(p1 + 1); local
20 (*p4)++;
/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/chromium_org/base/
H A Dbind.h238 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4) { argument
286 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4));
301 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, argument
354 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4, p5));
370 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, argument
427 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4, p5, p6));
444 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, argument
505 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4, p5, p6,
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsyscall.h53 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7) { argument
59 (intptr_t)p4,
73 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6) { argument
79 (intptr_t)p4,
87 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { argument
93 (intptr_t)p4,
100 static inline intptr_t Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4) { argument
101 return Call(nr, p0, p1, p2, p3, p4, 0, 0, 0);
145 intptr_t p4,
H A Dsyscall.cc265 intptr_t p4,
282 const intptr_t args[8] = {p0, p1, p2, p3, p4, p5, p6, p7};
288 const intptr_t args[6] = {p0, p1, p2, p3, p4, p5};
260 Call(int nr, intptr_t p0, intptr_t p1, intptr_t p2, intptr_t p3, intptr_t p4, intptr_t p5, intptr_t p6, intptr_t p7) argument
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/webrtc/system_wrappers/interface/
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/chromium_org/v8/test/mjsunit/es6/debug-promises/
H A Devents.js64 var p4 = p3.then(); // event variable
98 assertAsync(result[4].promise === p4, "result[4].promise");
/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/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/webrtc/src/system_wrappers/interface/
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/chromium_org/ppapi/shared_impl/
H A Dthread_aware_callback.h90 const P4& p4) {
91 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4));
98 const P4& p4,
100 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4, p5));
87 RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3, const P4& p4) argument
95 RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) argument
H A Dproxy_lock.h151 const P4& p4) {
153 return function(p1, p2, p3, p4);
161 const P4& p4,
164 return function(p1, p2, p3, p4, p5);
147 CallWhileUnlocked(ReturnType (function)A1, A2, A3, A4), const P1& p1, const P2& p2, const P3& p3, const P4& p4) argument
157 CallWhileUnlocked(ReturnType (function)A1, A2, A3, A4, A5), const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) argument
/external/chromium_org/third_party/webrtc/base/
H A Drefcount.h48 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4) argument
49 : T(p1, p2, p3, p4), ref_count_(0) {
53 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
54 : T(p1, p2, p3, p4, p5), ref_count_(0) {
H A Dcallback.h204 R operator()(P1 p1, P2 p2, P3 p3, P4 p4) { argument
207 return helper_->Run(p1, p2, p3, p4);
214 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4) = 0;
218 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4) { argument
219 return functor_(p1, p2, p3, p4);
238 R operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) { argument
241 return helper_->Run(p1, p2, p3, p4, p5);
248 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) = 0;
252 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) { argument
253 return functor_(p1, p2, p3, p4, p
[all...]
/external/valgrind/main/memcheck/tests/
H A Dleak-cases.c11 // p4 AAA ---> BBB DL / I IL / L
61 Node* p4; variable
/external/ceres-solver/include/ceres/internal/
H A Dmanual_constructor.h139 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4) { argument
140 new(space()) Type(p1, p2, p3, p4);
144 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
146 new(space()) Type(p1, p2, p3, p4, p5);
151 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
153 new(space()) Type(p1, p2, p3, p4, p5, p6);
158 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
160 new(space()) Type(p1, p2, p3, p4, p5, p6, p7);
165 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
167 new(space()) Type(p1, p2, p3, p4, p
172 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
180 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
189 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/chromium_org/base/memory/
H A Dmanual_constructor.h80 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4) { argument
81 new(space_.void_data()) Type(p1, p2, p3, p4);
85 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
87 new(space_.void_data()) Type(p1, p2, p3, p4, p5);
92 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
94 new(space_.void_data()) Type(p1, p2, p3, p4, p5, p6);
99 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
101 new(space_.void_data()) Type(p1, p2, p3, p4, p5, p6, p7);
106 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
108 new(space_.void_data()) Type(p1, p2, p3, p4, p
[all...]
/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 %struct.s4* %p4, i32 0, i32 0

Completed in 1981 milliseconds

12345