| /third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
| H A D | polar_coordinates.hpp | 9 /// @brief Conversion from Euclidean space to polar space and revert. 27 /// Convert Euclidean to Polar coordinates, x is the xz distance, y, the latitude and z the longitude. 31 GLM_FUNC_DECL tvec3<T, P> polar( 34 /// Convert Polar to Euclidean coordinates. 39 tvec2<T, P> const & polar);
|
| H A D | polar_coordinates.inl | 7 GLM_FUNC_QUALIFIER tvec3<T, P> polar 25 tvec2<T, P> const & polar 28 T const latitude(polar.x); 29 T const longitude(polar.y);
|
| /third_party/python/Doc/library/ |
| H A D | cmath.rst | 41 Conversions to and from polar coordinates 51 *Polar coordinates* give an alternative way to represent a complex 52 number. In polar coordinates, a complex number *z* is defined by the 59 rectangular coordinates to polar coordinates and back. 82 .. function:: polar(x) 84 Return the representation of *x* in polar coordinates. Returns a 86 phase of *x*. ``polar(x)`` is equivalent to ``(abs(x), 92 Return the complex number *x* with polar coordinates *r* and *phi*.
|
| /base/sensors/sensor/vibration_convert/core/algorithm/conversion/include/ |
| H A D | conversion_fft.h | 51 * @brief How to run the FFT - with or without polar conversion 110 * @return a vector of magnitudes (assuming the FFT was calcuated with polar conversion) 120 * @return Return a vector of magnitudes in decibels (assuming the FFT was calcuated with polar conversion). 130 * @return Return a vector of phases (assuming the FFT was calcuated with polar conversion)
|
| /third_party/python/Lib/test/ |
| H A D | cmath_testcases.txt | 2362 -- rect: Conversion from polar coordinates to rectangular coordinates -- 2459 -- polar: Conversion from rectangular coordinates to polar coordinates -- 2462 -- For cmath.polar, we can use the same testcase syntax as for the 2468 -- imaginary parts of polar (as cabs and carg, respectively, which in turn 2472 polar0100 polar 1.4e308 1.4e308 -> inf 0.78539816339744828 overflow 2475 polar1000 polar 0.0 0.0 -> 0.0 0.0 2476 polar1001 polar 0.0 -0.0 -> 0.0 -0.0 2477 polar1002 polar -0.0 0.0 -> 0.0 3.1415926535897931 2478 polar1003 polar [all...] |
| H A D | test_cmath.py | 6 from cmath import phase, polar, rect, pi namespace 354 """Wrapped version of polar that returns a complex number instead of 356 return complex(*polar(z)) 369 elif fn == 'polar': 450 self.check_polar(polar) 454 # Issue #24489: check a previously set C errno doesn't disturb polar() 459 return polar(z)
|
| /third_party/ffmpeg/libavfilter/ |
| H A D | avf_avectorscope.c | 40 POLAR, enumerator 85 { "polar", "", 0, AV_OPT_TYPE_CONST, {.i64=POLAR}, 0, 0, TFLAGS, "mode" }, 246 s->prev_y = s->hh = s->mode == POLAR ? s->h - 1 : s->h / 2; in config_output()
|
| H A D | af_aiir.c | 1542 { "pr", "Z-plane zeros/poles (polar radians)", 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, AF, "format" }, 1543 { "pd", "Z-plane zeros/poles (polar degrees)", 0, AV_OPT_TYPE_CONST, {.i64=3}, 0, 0, AF, "format" },
|
| /third_party/python/Modules/clinic/ |
| H A D | cmathmodule.c.h | 703 "polar($module, z, /)\n" 706 "Convert a complex from rectangular coordinates to polar coordinates.\n" 711 {"polar", (PyCFunction)cmath_polar, METH_O, cmath_polar__doc__}, 736 "Convert from polar coordinates to rectangular coordinates.");
|
| /kernel/linux/linux-5.10/drivers/spi/ |
| H A D | spi-mt7621.c | 81 u32 polar = 0; in mt7621_spi_set_cs() local 97 polar = BIT(cs); in mt7621_spi_set_cs() 98 mt7621_spi_write(rs, MT7621_SPI_POLAR, polar); in mt7621_spi_set_cs()
|
| /kernel/linux/linux-6.6/drivers/spi/ |
| H A D | spi-mt7621.c | 82 u32 polar = 0; in mt7621_spi_set_cs() local 98 polar = BIT(cs); in mt7621_spi_set_cs() 99 mt7621_spi_write(rs, MT7621_SPI_POLAR, polar); in mt7621_spi_set_cs()
|
| /drivers/hdf_core/framework/model/input/driver/ |
| H A D | input_config.h | 102 uint8_t wordMode; // 0, 1 , 2, 3 polar & phase
|
| /kernel/linux/linux-5.10/drivers/media/tuners/ |
| H A D | tda18250_priv.h | 84 #define R47_LNAPOL 0x47 /* LNA polar casc */
|
| /kernel/linux/linux-6.6/drivers/media/tuners/ |
| H A D | tda18250_priv.h | 84 #define R47_LNAPOL 0x47 /* LNA polar casc */
|
| /kernel/linux/linux-5.10/Documentation/arm/nwfpe/ |
| H A D | todo.rst | 8 POL{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - polar angle (arctan2)
|
| H A D | netwinder-fpe.rst | 129 POL{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - polar angle (arctan2)
|
| /kernel/linux/linux-6.6/Documentation/arch/arm/nwfpe/ |
| H A D | todo.rst | 8 POL{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - polar angle (arctan2)
|
| H A D | netwinder-fpe.rst | 129 POL{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - polar angle (arctan2)
|
| /third_party/python/Modules/ |
| H A D | cmathmodule.c | 1024 cmath.polar 1029 Convert a complex from rectangular coordinates to polar coordinates. 1069 Convert from polar coordinates to rectangular coordinates. 1126 cmath.isfinite = cmath.polar 1139 cmath.isnan = cmath.polar 1152 cmath.isinf = cmath.polar
|
| /third_party/skia/third_party/externals/freetype/src/base/ |
| H A D | fttrigon.c | 21 * functions as well as transformations between Cartesian and polar
|
| /kernel/linux/linux-5.10/arch/arm/nwfpe/ |
| H A D | fpopcode.h | 107 | 1 | 1 | 0 | 0 | POL | Polar angle (ArcTan2) | Fd := arctan2(Fn,Fm) |
|
| /kernel/linux/linux-6.6/arch/arm/nwfpe/ |
| H A D | fpopcode.h | 107 | 1 | 1 | 0 | 0 | POL | Polar angle (ArcTan2) | Fd := arctan2(Fn,Fm) |
|
| /third_party/tzdata/ |
| H A D | antarctica | 152 # (French Institute for Polar Research and Technology).
|
| /third_party/vk-gl-cts/android/cts/main/vk-master-2022-03-01/ |
| H A D | graphicsfuzz.txt | 203 dEQP-VK.graphicsfuzz.spv-stable-sampler-polar-simple-O-access-chain
|
| /device/board/hisilicon/hispark_taurus/camera/libs/liteos_a/ |
| H A D | libdriver_adapter.z.so | _fini _init __cxa_finalize __deregister_frame_info __register_frame_info dnvqe_cache_process_frame dnvqe_cache_process_write_in_buf hi_dnvqe_create hi_dnvqe_destroy hi_dnvqe_get_config hi_dnvqe_get_version hi_dnvqe_process_frame hi_dnvqe_read_frame hi_dnvqe_write_frame dnvqe_create dnvqe_destroy dnvqe_process_frame RES_resampler_create RES_resampler_destory ... |