Home
last modified time | relevance | path

Searched full:accuracy (Results 1 – 25 of 620) sorted by relevance

12345678910>>...25

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/geoclue/
H A Dgeocluetypes.cpp42 const QDBusArgument &dbus_argument_helper(const QDBusArgument &arg, Accuracy &accuracy) in dbus_argument_helper() argument
47 accuracy.m_level = static_cast<Accuracy::Level>(level); in dbus_argument_helper()
48 arg >> accuracy.m_horizontal; in dbus_argument_helper()
49 arg >> accuracy.m_vertical; in dbus_argument_helper()
57 QDBusArgument &operator<<(QDBusArgument &arg, const Accuracy &accuracy) in operator <<() argument
60 arg << qint32(accuracy.level()); in operator <<()
61 arg << accuracy.horizontal(); in operator <<()
62 arg << accuracy.vertical(); in operator <<()
68 const QDBusArgument &operator>>(const QDBusArgument &arg, Accuracy &accuracy) in operator >>() argument
70 return dbus_argument_helper(arg, accuracy); in operator >>()
H A Dqgeopositioninfosource_geocluemaster.cpp84 qDBusRegisterMetaType<Accuracy>(); in QGeoPositionInfoSourceGeoclueMaster()
136 double altitude, Accuracy accuracy) in updatePosition() argument
147 m_lastPositionFromSatellite = accuracy.level() == Accuracy::Detailed; in updatePosition()
149 if (!qIsNaN(accuracy.horizontal())) in updatePosition()
150 m_lastPosition.setAttribute(QGeoPositionInfo::HorizontalAccuracy, accuracy.horizontal()); in updatePosition()
151 if (!qIsNaN(accuracy.vertical())) in updatePosition()
152 m_lastPosition.setAttribute(QGeoPositionInfo::VerticalAccuracy, accuracy.vertical()); in updatePosition()
311 disconnect(m_pos, SIGNAL(PositionChanged(qint32,qint32,double,double,double,Accuracy)), in stopUpdates()
312 this, SLOT(positionChanged(qint32,qint32,double,double,double,Accuracy))); in stopUpdates()
351 … QDBusPendingReply<qint32, qint32, double, double, double, Accuracy> reply = m_pos->GetPosition(); in requestUpdate()
[all …]
H A Dgeocluetypes.h46 class Accuracy
59 Accuracy() in Accuracy() function
73 friend const QDBusArgument &dbus_argument_helper(const QDBusArgument &arg, Accuracy &accuracy);
76 Q_DECLARE_METATYPE(Accuracy)
82 Q_DECLARE_TYPEINFO(Accuracy, Q_MOVABLE_TYPE);
84 QDBusArgument &operator<<(QDBusArgument &arg, const Accuracy &accuracy);
85 const QDBusArgument &operator>>(const QDBusArgument &arg, Accuracy &accuracy);
H A Dorg.freedesktop.Geoclue.Position.xml11 <arg name="accuracy" type="(idd)" direction="out"/>
12 <annotation name="org.qtproject.QtDBus.QtTypeName.Out5" value="Accuracy"/>
20 <arg name="accuracy" type="(idd)"/>
21 <annotation name="org.qtproject.QtDBus.QtTypeName.Out5" value="Accuracy"/>
H A Dqgeopositioninfosource_geocluemaster.h87 double altitude, const Accuracy &accuracy);
106 double longitude, double altitude, Accuracy accuracy);
/OK3568_Linux_fs/buildroot/package/libmad/
H A DConfig.in13 prompt "Speed vs. accuracy"
19 Keep optimizations balanced between speed and accuracy.
22 bool "Optimize for speed over accuracy"
24 Compromise accuracy for speed.
27 bool "Optimize for accuracy over speed"
29 Compromise speed for accuracy.
36 Use the subband synthesis optimization, with reduced accuracy.
/OK3568_Linux_fs/kernel/arch/x86/math-emu/
H A DREADME72 based upon getting good accuracy with reasonable speed.
225 ----------------------- Accuracy of wm-FPU-emu -----------------------
228 The accuracy of the emulator is in almost all cases equal to or better
237 The following table compares the emulator accuracy for the sqrt(),
240 would be 64 bits. The reduced Turbo C accuracy of cos() and tan() for
243 accurate to 64 bits can result in a relative accuracy in cos() of
260 ** The accuracy for exp() and log() is low because the FPU (emulator)
274 consequence, the accuracy of these functions for large arguments has
276 FPU). There is also now no degradation of accuracy for fcos and fptan
278 definition of accuracy has changed slightly from that used for the
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/hisilicon/kirin/kirin960/
H A Ddw_drm_dsi.c163 u32 accuracy = 0; in get_dsi_phy_ctrl() local
332 accuracy = 10; in get_dsi_phy_ctrl()
333 ui = 10 * 1000000000UL * accuracy / lane_clock; in get_dsi_phy_ctrl()
338 clk_post = 600 * accuracy + 52 * ui + mipi->clk_post_adjust * ui; in get_dsi_phy_ctrl()
344 clk_t_hs_exit = 1000 * accuracy + mipi->clk_t_hs_exit_adjust * ui; in get_dsi_phy_ctrl()
351 clk_t_hs_trial = 600 * accuracy + 3 * unit_tx_byte_clk_hs + in get_dsi_phy_ctrl()
360 ((380 * accuracy + mipi->clk_t_hs_prepare_adjust * ui) <= in get_dsi_phy_ctrl()
361 (950 * accuracy - 8 * ui)) ? in get_dsi_phy_ctrl()
362 (380 * accuracy + mipi->clk_t_hs_prepare_adjust * ui) : in get_dsi_phy_ctrl()
363 (950 * accuracy - 8 * ui); in get_dsi_phy_ctrl()
[all …]
/OK3568_Linux_fs/buildroot/package/fftw/
H A DConfig.in23 bool "optimise for speed over accuracy"
25 Optimise for fast math functions, at the expense of accuracy.
28 the results. Say 'n' (the default) if accuracy is of utmost
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/clock/
H A Dfixed-clock.yaml22 clock-accuracy:
23 description: accuracy of clock in ppb (parts per billion).
42 clock-accuracy = <100>;
/OK3568_Linux_fs/external/rknn-toolkit2/examples/functions/hybrid_quant/
H A Dstep2.py29 # Accuracy analysis
30 print('--> Accuracy analysis')
33 print('Accuracy analysis failed!')
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/geoclue2/
H A Dqgeopositioninfosource_geoclue2.cpp118 const auto accuracy = m_manager.property("AvailableAccuracyLevel").toUInt(&ok); in supportedPositioningMethods() local
124 switch (accuracy) { in supportedPositioningMethods()
426 const auto accuracy = location.accuracy(); in handleNewLocation() local
427 // We assume that an accuracy as 0.0 means that it comes from a sattelite. in handleNewLocation()
428 m_lastPositionFromSatellite = qFuzzyCompare(accuracy, 0.0); in handleNewLocation()
430 m_lastPosition.setAttribute(QGeoPositionInfo::HorizontalAccuracy, accuracy); in handleNewLocation()
H A Dorg.freedesktop.GeoClue2.Location.xml35 Accuracy:
37 The accuracy of the location fix, in meters.
39 <property name="Accuracy" type="d" access="read"/>
H A Dorg.freedesktop.GeoClue2.Client.xml71 The level of accuracy requested by client, as
74 Please keep in mind that the actual accuracy of location information is
76 and/or how much accuracy user agrees to be confortable with.
/OK3568_Linux_fs/kernel/drivers/clk/
H A Dclk-fixed-rate.c145 u32 accuracy = 0; in _of_fixed_clk_setup() local
151 of_property_read_u32(node, "clock-accuracy", &accuracy); in _of_fixed_clk_setup()
156 0, rate, accuracy); in _of_fixed_clk_setup()
/OK3568_Linux_fs/external/rknn-toolkit2/examples/functions/mmse/
H A Dtest.py54 # Accuracy analysis
55 print('--> Accuracy analysis')
58 print('Accuracy analysis failed!')
/OK3568_Linux_fs/kernel/drivers/iio/temperature/
H A DKconfig23 high accuracy digital temperature measurement system.
68 tristate "MLX90632 contact-less infrared sensor with medical accuracy"
73 MLX90632 contact-less infrared sensor with medical accuracy
/OK3568_Linux_fs/external/rknn-toolkit2/examples/functions/board_test/
H A Dtest.py105 # Accuracy analysis
106 print('--> Accuracy analysis')
109 print('Accuracy analysis failed!')
/OK3568_Linux_fs/external/rknn-toolkit2/examples/functions/accuracy_analysis/
H A Dtest.py104 # Accuracy analysis
105 print('--> Accuracy analysis')
108 print('Accuracy analysis failed!')
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/android/src/
H A Djnipositioning.cpp239 //horizontal accuracy in positionInfoFromJavaLocation()
244 jfloat accuracy = jniEnv->CallFloatMethod(location, mid); in positionInfoFromJavaLocation() local
245 if (accuracy != 0.0) in positionInfoFromJavaLocation()
247 info.setAttribute(QGeoPositionInfo::HorizontalAccuracy, qreal(accuracy)); in positionInfoFromJavaLocation()
251 //vertical accuracy in positionInfoFromJavaLocation()
258 jfloat accuracy = jniEnv->CallFloatMethod(location, mid); in positionInfoFromJavaLocation() local
259 if (accuracy != 0.0) in positionInfoFromJavaLocation()
261 info.setAttribute(QGeoPositionInfo::VerticalAccuracy, qreal(accuracy)); in positionInfoFromJavaLocation()
/OK3568_Linux_fs/buildroot/package/liquid-dsp/
H A DConfig.in20 bool "optimize for speed over accuracy"
22 Optimize for speed over accuracy.
/OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/
H A DNIST-PD13 ACCURACY. NIST does not warrant or make any representations regarding the use
15 correctness, accuracy, reliability or usefulness of this software.
/OK3568_Linux_fs/kernel/drivers/clk/at91/
H A Dclk-main.c39 unsigned long accuracy; member
240 return osc->accuracy; in clk_main_rc_osc_recalc_accuracy()
254 u32 frequency, u32 accuracy) in at91_clk_register_main_rc_osc() argument
277 osc->accuracy = accuracy; in at91_clk_register_main_rc_osc()
/OK3568_Linux_fs/u-boot/arch/arm/dts/
H A Dzynqmp-clk.dtsi53 clock-accuracy = <100>;
60 clock-accuracy = <100>;
73 clock-accuracy = <0x64>;
/OK3568_Linux_fs/kernel/Documentation/timers/
H A Dtimekeeping.rst46 When the wall-clock accuracy of the clock source isn't satisfactory, there
125 between accuracy compared to the clock source, you may sacrifice accuracy
135 jiffy frequency for the architecture. This will affect scheduling accuracy

12345678910>>...25