Searched defs:fuzz (Results 1 - 6 of 6) sorted by relevance

/frameworks/native/libs/input/
H A DInputDevice.cpp176 float flat, float fuzz, float resolution) {
177 MotionRange range = { axis, source, min, max, flat, fuzz, resolution };
175 addMotionRange(int32_t axis, uint32_t source, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/native/include/input/
H A DInputDevice.h71 float fuzz; member in struct:android::InputDeviceInfo::MotionRange
93 float min, float max, float flat, float fuzz, float resolution);
/frameworks/native/services/inputflinger/
H A DEventHub.h87 int32_t fuzz; // error tolerance, eg. fuzz == 4 means value is +/- 4 due to noise member in struct:android::RawAbsoluteAxisInfo
95 fuzz = 0;
H A DInputReader.h1797 float fuzz; // normalized error tolerance member in struct:android::JoystickInputMapper::Axis
1809 float min, float max, float flat, float fuzz, float resolution) {
1820 this->fuzz = fuzz;
1806 initialize(const RawAbsoluteAxisInfo& rawAxisInfo, const AxisInfo& axisInfo, bool explicitlyMapped, float scale, float offset, float highScale, float highOffset, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/base/core/java/android/view/
H A DInputDevice.java689 float min, float max, float flat, float fuzz, float resolution) {
690 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution));
741 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, argument
748 mFuzz = fuzz;
917 description.append(" fuzz=").append(range.mFuzz);
688 addMotionRange(int axis, int source, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp378 int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) {
386 info.fuzz = fuzz;
1445 int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) {
1453 ASSERT_NEAR(fuzz, range->fuzz, EPSILON) << "Axis: " << axis << " Source: " << source;
377 addAbsoluteAxis(int32_t deviceId, int axis, int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) argument
1444 assertMotionRange(const InputDeviceInfo& info, int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) argument

Completed in 1695 milliseconds