HomeSort by relevance Sort by last modified time
    Searched full:py_complex (Results 1 - 25 of 52) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
complexobject.h 12 } Py_complex;
24 PyAPI_FUNC(Py_complex) c_sum(Py_complex, Py_complex);
25 PyAPI_FUNC(Py_complex) c_diff(Py_complex, Py_complex);
26 PyAPI_FUNC(Py_complex) c_neg(Py_complex);
27 PyAPI_FUNC(Py_complex) c_prod(Py_complex, Py_complex);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
complexobject.h 12 } Py_complex;
24 PyAPI_FUNC(Py_complex) c_sum(Py_complex, Py_complex);
25 PyAPI_FUNC(Py_complex) c_diff(Py_complex, Py_complex);
26 PyAPI_FUNC(Py_complex) c_neg(Py_complex);
27 PyAPI_FUNC(Py_complex) c_prod(Py_complex, Py_complex);
    [all...]
  /external/python/cpython2/Include/
complexobject.h 12 } Py_complex;
24 PyAPI_FUNC(Py_complex) c_sum(Py_complex, Py_complex);
25 PyAPI_FUNC(Py_complex) c_diff(Py_complex, Py_complex);
26 PyAPI_FUNC(Py_complex) c_neg(Py_complex);
27 PyAPI_FUNC(Py_complex) c_prod(Py_complex, Py_complex)
    [all...]
  /external/python/cpython3/Include/
complexobject.h 13 } Py_complex;
17 PyAPI_FUNC(Py_complex) _Py_c_sum(Py_complex, Py_complex);
18 PyAPI_FUNC(Py_complex) _Py_c_diff(Py_complex, Py_complex);
19 PyAPI_FUNC(Py_complex) _Py_c_neg(Py_complex);
20 PyAPI_FUNC(Py_complex) _Py_c_prod(Py_complex, Py_complex)
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
complexobject.h 12 } Py_complex;
24 PyAPI_FUNC(Py_complex) c_sum(Py_complex, Py_complex);
25 PyAPI_FUNC(Py_complex) c_diff(Py_complex, Py_complex);
26 PyAPI_FUNC(Py_complex) c_neg(Py_complex);
27 PyAPI_FUNC(Py_complex) c_prod(Py_complex, Py_complex)
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
complexobject.h 12 } Py_complex;
24 PyAPI_FUNC(Py_complex) c_sum(Py_complex, Py_complex);
25 PyAPI_FUNC(Py_complex) c_diff(Py_complex, Py_complex);
26 PyAPI_FUNC(Py_complex) c_neg(Py_complex);
27 PyAPI_FUNC(Py_complex) c_prod(Py_complex, Py_complex)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
complexobject.h 12 } Py_complex;
24 PyAPI_FUNC(Py_complex) c_sum(Py_complex, Py_complex);
25 PyAPI_FUNC(Py_complex) c_diff(Py_complex, Py_complex);
26 PyAPI_FUNC(Py_complex) c_neg(Py_complex);
27 PyAPI_FUNC(Py_complex) c_prod(Py_complex, Py_complex)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
complexobject.h 12 } Py_complex;
24 PyAPI_FUNC(Py_complex) c_sum(Py_complex, Py_complex);
25 PyAPI_FUNC(Py_complex) c_diff(Py_complex, Py_complex);
26 PyAPI_FUNC(Py_complex) c_neg(Py_complex);
27 PyAPI_FUNC(Py_complex) c_prod(Py_complex, Py_complex)
    [all...]
  /external/python/cpython3/Modules/clinic/
cmathmodule.c.h 14 static Py_complex
15 cmath_acos_impl(PyObject *module, Py_complex z);
21 Py_complex z;
22 Py_complex _return_value;
56 static Py_complex
57 cmath_acosh_impl(PyObject *module, Py_complex z);
63 Py_complex z;
64 Py_complex _return_value;
98 static Py_complex
99 cmath_asin_impl(PyObject *module, Py_complex z)
    [all...]
  /external/python/cpython2/Doc/c-api/
complex.rst 24 .. c:type:: Py_complex
34 } Py_complex;
37 .. c:function:: Py_complex _Py_c_sum(Py_complex left, Py_complex right)
39 Return the sum of two complex numbers, using the C :c:type:`Py_complex`
43 .. c:function:: Py_complex _Py_c_diff(Py_complex left, Py_complex right)
46 :c:type:`Py_complex` representation
    [all...]
  /external/python/cpython3/Doc/c-api/
complex.rst 24 .. c:type:: Py_complex
34 } Py_complex;
37 .. c:function:: Py_complex _Py_c_sum(Py_complex left, Py_complex right)
39 Return the sum of two complex numbers, using the C :c:type:`Py_complex`
43 .. c:function:: Py_complex _Py_c_diff(Py_complex left, Py_complex right)
46 :c:type:`Py_complex` representation
    [all...]
  /external/python/cpython3/Objects/
complexobject.c 13 static Py_complex c_1 = {1., 0.};
15 Py_complex
16 _Py_c_sum(Py_complex a, Py_complex b)
18 Py_complex r;
24 Py_complex
25 _Py_c_diff(Py_complex a, Py_complex b)
27 Py_complex r;
33 Py_complex
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
complexobject.c 31 static Py_complex c_1 = {1., 0.};
33 Py_complex
34 c_sum(Py_complex a, Py_complex b)
36 Py_complex r;
42 Py_complex
43 c_diff(Py_complex a, Py_complex b)
45 Py_complex r;
51 Py_complex
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
complexobject.c 31 static Py_complex c_1 = {1., 0.};
33 Py_complex
34 c_sum(Py_complex a, Py_complex b)
36 Py_complex r;
42 Py_complex
43 c_diff(Py_complex a, Py_complex b)
45 Py_complex r;
51 Py_complex
    [all...]
  /external/python/cpython2/Objects/
complexobject.c 31 static Py_complex c_1 = {1., 0.};
33 Py_complex
34 c_sum(Py_complex a, Py_complex b)
36 Py_complex r;
42 Py_complex
43 c_diff(Py_complex a, Py_complex b)
45 Py_complex r;
51 Py_complex
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cmathmodule.c 51 static Py_complex c_asinh(Py_complex);
52 static Py_complex c_atanh(Py_complex);
53 static Py_complex c_cosh(Py_complex);
54 static Py_complex c_sinh(Py_complex);
55 static Py_complex c_sqrt(Py_complex);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cmathmodule.c 51 static Py_complex c_asinh(Py_complex);
52 static Py_complex c_atanh(Py_complex);
53 static Py_complex c_cosh(Py_complex);
54 static Py_complex c_sinh(Py_complex);
55 static Py_complex c_sqrt(Py_complex);
    [all...]
  /external/python/cpython2/Modules/
cmathmodule.c 51 static Py_complex c_asinh(Py_complex);
52 static Py_complex c_atanh(Py_complex);
53 static Py_complex c_cosh(Py_complex);
54 static Py_complex c_sinh(Py_complex);
55 static Py_complex c_sqrt(Py_complex);
    [all...]
  /external/python/cpython3/Modules/
cmathmodule.c 24 type = "Py_complex"
100 static Py_complex
103 Py_complex r;
121 static Py_complex
124 Py_complex r;
133 static Py_complex cmath_asinh_impl(PyObject *, Py_complex);
134 static Py_complex cmath_atanh_impl(PyObject *, Py_complex);
135 static Py_complex cmath_cosh_impl(PyObject *, Py_complex)
    [all...]
  /external/python/cpython2/Doc/data/
refcounts.dat 136 PyComplex_AsCComplex:Py_complex:::
143 PyComplex_FromCComplex::Py_complex v::
    [all...]
  /external/python/cpython3/Doc/data/
refcounts.dat 136 PyComplex_AsCComplex:Py_complex:::
143 PyComplex_FromCComplex::Py_complex v::
    [all...]
  /external/python/cpython3/Python/
modsupport.c 301 *((Py_complex *)va_arg(*p_va, Py_complex *)));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
modsupport.c 388 *((Py_complex *)va_arg(*p_va, Py_complex *)));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
modsupport.c 388 *((Py_complex *)va_arg(*p_va, Py_complex *)));
  /external/python/cpython2/Python/
modsupport.c 414 *((Py_complex *)va_arg(*p_va, Py_complex *)));

Completed in 1094 milliseconds

1 2 3