HomeSort by relevance Sort by last modified time
    Searched refs:p0 (Results 51 - 75 of 404) sorted by null

1 23 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/
param_assign.pass.cpp 26 param_type p0(.75, 6);
28 p = p0;
param_copy.pass.cpp 26 param_type p0(10, .125);
27 param_type p = p0;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/
param_assign.pass.cpp 26 param_type p0(.75, 6);
28 p = p0;
param_copy.pass.cpp 26 param_type p0(10, .125);
27 param_type p = p0;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/
param_assign.pass.cpp 26 param_type p0(.75, 6);
28 p = p0;
param_copy.pass.cpp 26 param_type p0(10, .125);
27 param_type p = p0;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/
param_assign.pass.cpp 26 param_type p0(5, 10);
28 p = p0;
param_copy.pass.cpp 26 param_type p0(5, 10);
27 param_type p = p0;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/
param_assign.pass.cpp 26 param_type p0(5, 10);
28 p = p0;
param_copy.pass.cpp 26 param_type p0(5, 10);
27 param_type p = p0;
  /ndk/tests/build/test-stlport_static-exception-force-rebuild/jni/
alias1.cpp 12 int *p0 = &i_glob; variable
25 throw &p0;
  /ndk/tests/device/test-stlport_shared-exception/jni/
alias1.cpp 12 int *p0 = &i_glob; variable
25 throw &p0;
  /ndk/tests/device/test-stlport_static-exception/jni/
alias1.cpp 12 int *p0 = &i_glob; variable
25 throw &p0;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_DeBlockPixel.c 55 int p3, p2, p1, p0, q0, q1, q2, q3; local
66 p0 = pQ0[-1*Step];
72 if (armAbs(p0-q0)>=alpha || armAbs(p1-p0)>=beta || armAbs(q1-q0)>=beta)
75 p3, p2, p1, p0, q0, q1, q2, q3, alpha, beta);
79 ap = armAbs(p2 - p0);
102 delta = (((q0-p0)<<2) + (p1-q1) + 4) >> 3;
105 pQ0[-1*Step] = (OMX_U8)armClip(0, 255, p0 + delta);
110 delta = (p2 + ((p0+q0+1)>>1) - (p1<<1))>>1;
117 delta = (q2 + ((p0+q0+1)>>1) - (q1<<1))>>1
    [all...]
  /frameworks/native/services/surfaceflinger/Effects/
Daltonizer.cpp 90 const vec3 p0 = cross(lms_w, lms_b); // protanopia/deuteranopia local
98 -p0.y / p0.x, 1.0000, 0.0000, 0,
99 -p0.z / p0.x, 0.0000, 1.0000, 0,
103 const mat4 lms2lmsd( 1.0000, -p0.x / p0.y, 0.0000, 0,
105 0.0000, -p0.z / p0.y, 1.0000, 0,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/
copy_assign.fail.cpp 25 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
28 p = p0;
35 f = p0.get_future();
46 std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
49 p = p0;
56 f = p0.get_future();
67 std::promise<void> p0(std::allocator_arg, test_allocator<void>());
70 p = p0;
77 f = p0.get_future();
copy_ctor.fail.cpp 25 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
26 std::promise<int> p(p0);
33 f = p0.get_future();
44 std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
45 std::promise<int&> p(p0);
52 f = p0.get_future();
63 std::promise<void> p0(std::allocator_arg, test_allocator<void>());
64 std::promise<void> p(p0);
71 f = p0.get_future();
move_assign.pass.cpp 26 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
29 p = std::move(p0);
36 f = p0.get_future();
47 std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
50 p = std::move(p0);
57 f = p0.get_future();
68 std::promise<void> p0(std::allocator_arg, test_allocator<void>());
71 p = std::move(p0);
78 f = p0.get_future();
move_ctor.pass.cpp 26 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
27 std::promise<int> p(std::move(p0));
34 f = p0.get_future();
45 std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
46 std::promise<int&> p(std::move(p0));
53 f = p0.get_future();
64 std::promise<void> p0(std::allocator_arg, test_allocator<void>());
65 std::promise<void> p(std::move(p0));
72 f = p0.get_future();
swap.pass.cpp 27 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
30 p.swap(p0);
35 f = p0.get_future();
41 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
44 swap(p, p0);
49 f = p0.get_future();
55 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
58 p.swap(p0);
63 f = p0.get_future();
69 std::promise<int> p0(std::allocator_arg, test_allocator<int>())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasGradient.cpp 37 CanvasGradient::CanvasGradient(const FloatPoint& p0, const FloatPoint& p1)
38 : m_gradient(Gradient::create(p0, p1))
43 CanvasGradient::CanvasGradient(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1)
44 : m_gradient(Gradient::create(p0, r0, p1, r1))
  /external/chromium_org/v8/src/ia32/
simulator-ia32.h 38 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
39 (entry(p0, p1, p2, p3, p4))
47 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6, p7, p8) \
48 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7, p8))
  /external/chromium_org/v8/src/x64/
simulator-x64.h 38 // TODO(X64): Don't pass p0, since it isn't used?
39 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
40 (entry(p0, p1, p2, p3, p4))
47 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6, p7, p8) \
48 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7, p8))
  /external/v8/src/ia32/
simulator-ia32.h 38 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
39 (entry(p0, p1, p2, p3, p4))
47 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6, p7) \
48 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7))
  /external/v8/src/x64/
simulator-x64.h 38 // TODO(X64): Don't pass p0, since it isn't used?
39 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
40 (entry(p0, p1, p2, p3, p4))
47 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6, p7) \
48 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7))

Completed in 361 milliseconds

1 23 4 5 6 7 8 91011>>