Home
last modified time | relevance | path

Searched refs:Complex (Results 1 – 25 of 118) sorted by relevance

12345

/third_party/python/Doc/library/
Dnumbers.rst5 :synopsis: Numeric abstract base classes (Complex, Real, Integral, etc.).
25 .. class:: Complex
48 To :class:`Complex`, :class:`Real` adds the operations that work on real
55 Real also provides defaults for :func:`complex`, :attr:`~Complex.real`,
56 :attr:`~Complex.imag`, and :meth:`~Complex.conjugate`.
110 those. You can add ``MyFoo`` between :class:`Complex` and
113 class MyFoo(Complex): ...
147 elif isinstance(other, Complex):
154 of :class:`Complex`. I'll refer to all of the above code that doesn't
157 of :class:`Complex` (``a : A <: Complex``), and ``b : B <:
[all …]
/third_party/python/Lib/test/
Dtest_abstract_numbers.py6 from numbers import Complex, Real, Rational, Integral
11 self.assertTrue(issubclass(int, Complex))
31 self.assertTrue(issubclass(complex, Complex))
/third_party/gstreamer/gstplugins_base/tests/examples/fft/
Dfftrange.c33 GstFFT ##_T_ ##Complex *fdata; \
40 fdata = g_new (GstFFT ##_T_ ##Complex, num_freq); \
76 GstFFT ##_T_ ##Complex *fdata; \
83 fdata = g_new (GstFFT ##_T_ ##Complex, num_freq); \
/third_party/python/Lib/
Dnumbers.py32 class Complex(Number): class
144 Complex.register(complex)
147 class Real(Complex):
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Dmpg123audiodec.c75 static gdouble magnitude##ffttag (const GstFFT##ffttag##Complex *c) \
84 const GstFFT##ffttag##Complex *v, int elements) \
98 static gboolean is_zero_except_##ffttag (const GstFFT##ffttag##Complex *v, \
121 GstFFT##ffttag##Complex *fftdata; \
127 fftdata = g_new (GstFFT##ffttag##Complex, num_samples / 2 + 1); \
/third_party/protobuf/js/compatibility_tests/v3.0.0/
Dmessage_test.js107 var foo = new proto.jspb.test.Complex(data1);
108 var bar = new proto.jspb.test.Complex(data2);
140 var foo = new proto.jspb.test.Complex([
143 var bar = new proto.jspb.test.Complex([
163 var msg = new proto.jspb.test.OuterMessage.Complex();
384 var c1a = new proto.jspb.test.Complex(data1);
385 var c1b = new proto.jspb.test.Complex(data1);
386 var c2 = new proto.jspb.test.Complex(data2);
387 var c3 = new proto.jspb.test.Complex(data3);
776 var message = new proto.jspb.test.Complex(data);
Dtest.proto92 message Complex { message
104 // Make sure this doesn't conflict with the other Complex message.
105 message Complex { message
/third_party/protobuf/js/
Dmessage_test.js157 var foo = new proto.jspb.test.Complex(data1);
158 var bar = new proto.jspb.test.Complex(data2);
192 var foo = new proto.jspb.test.Complex([
196 var bar = new proto.jspb.test.Complex([
218 var msg = new proto.jspb.test.OuterMessage.Complex();
364 var c1a = new proto.jspb.test.Complex(data1);
365 var c1b = new proto.jspb.test.Complex(data1);
366 var c2 = new proto.jspb.test.Complex(data2);
367 var c3 = new proto.jspb.test.Complex(data3);
810 var message = new proto.jspb.test.Complex(data);
Dtest.proto92 message Complex { message
105 // Make sure this doesn't conflict with the other Complex message.
106 message Complex { message
/third_party/protobuf/js/compatibility_tests/v3.1.0/
Dmessage_test.js107 var foo = new proto.jspb.test.Complex(data1);
108 var bar = new proto.jspb.test.Complex(data2);
140 var foo = new proto.jspb.test.Complex([
143 var bar = new proto.jspb.test.Complex([
163 var msg = new proto.jspb.test.OuterMessage.Complex();
340 var c1a = new proto.jspb.test.Complex(data1);
341 var c1b = new proto.jspb.test.Complex(data1);
342 var c2 = new proto.jspb.test.Complex(data2);
343 var c3 = new proto.jspb.test.Complex(data3);
728 var message = new proto.jspb.test.Complex(data);
Dtest.proto92 message Complex { message
104 // Make sure this doesn't conflict with the other Complex message.
105 message Complex { message
/third_party/python/Doc/c-api/
Dcomplex.rst5 Complex Number Objects
16 Complex Numbers as C Structures
79 Complex Numbers as Python Objects
/third_party/libffi/doc/
Dlibffi.info275 * Complex:: Complex types.
276 * Complex Type Example:: Complex type example.
548 File: libffi.info, Node: Type Example, Next: Complex, Prev: Arrays Unions Enums, Up: Types
596 File: libffi.info, Node: Complex, Next: Complex Type Example, Prev: Type Example, Up: Types
598 2.3.6 Complex Types
628 The section *note Complex Type Example:: shows a way to determine the
636 File: libffi.info, Node: Complex Type Example, Prev: Complex, Up: Types
638 2.3.7 Complex Type Example
962 * ffi_type <2>: Complex. (line 15)
963 * ffi_type <3>: Complex. (line 15)
[all …]
/third_party/rust/crates/cxx/tests/ui/
Dextern_type_lifetime_bound.rs4 type Complex<'a, 'b: 'a>; typedef
Dextern_type_lifetime_bound.stderr4 4 | type Complex<'a, 'b: 'a>;
/third_party/libffi/testsuite/libffi.complex/
Dcomplex_defs_double.inc2 /* Complex base type. */
Dcomplex_defs_longdouble.inc2 /* Complex base type. */
Dcomplex_defs_float.inc2 /* Complex base type. */
/third_party/skia/third_party/externals/spirv-cross/shaders/comp/
Dgenerate_height.comp85 // Complex multiply to rotate our frequency samples.
88 … b = vec2(b.x, -b.y); // Complex conjugate since we picked a frequency with the opposite direction.
/third_party/skia/resources/sksl/runtime_errors/
DIllegalRecursionComplex.rts3 // Complex recursion spanning several functions with overloads, etc.
/third_party/gstreamer/gstplugins_base/tests/check/elements/
Daudioresample.c1067 static gdouble magnitude##ffttag (const GstFFT##ffttag##Complex *c) \
1075 static gdouble find_main_frequency_spot_##ffttag (const GstFFT##ffttag##Complex *v, \
1090 static gboolean is_zero_except_##ffttag (const GstFFT##ffttag##Complex *v, int elements, \
1111 GstFFT##ffttag##Complex *in, *out; \
1120 in = g_new (GstFFT##ffttag##Complex, insamples / 2 + 1); \
1121 out = g_new (GstFFT##ffttag##Complex, outsamples / 2 + 1); \
/third_party/rust/crates/bindgen/bindgen/ir/
Dty.rs317 TypeKind::Complex(..) | in safe_canonical_type()
463 TypeKind::Complex(..) => "Complex", in kind_name()
553 TypeKind::Complex(_) | in self_template_params()
609 Complex(FloatKind), enumerator
1287 TypeKind::Complex(_) | in trace()
/third_party/lzma/DOC/
D7zFormat.txt245 4: Is Complex Coder
251 if (Is Complex Coder)
/third_party/gstreamer/gstreamer/tests/benchmarks/
Dcomplexity.gnuplot21 set title "Complex Pipeline Performance: N Forks per Tee, 1024 Elements"
/third_party/vk-gl-cts/doc/testspecs/GLES3/
Dfunctional.shaders.switch.txt27 + Complex constant expressions as case labels

12345