Searched defs:flat (Results 1 - 10 of 10) sorted by relevance

/frameworks/native/opengl/libs/EGL/
H A DBlobCache_test.cpp284 uint8_t* flat = new uint8_t[size]; local
285 ASSERT_EQ(OK, mBC->flatten(flat, size));
286 ASSERT_EQ(OK, mBC2->unflatten(flat, size));
287 delete[] flat;
332 uint8_t* flat = new uint8_t[size]; local
333 ASSERT_EQ(OK, mBC->flatten(flat, size));
334 delete[] flat;
354 uint8_t* flat = new uint8_t[size]; local
355 // ASSERT_EQ(BAD_VALUE, mBC->flatten(flat, size));
358 delete[] flat;
366 uint8_t* flat = new uint8_t[size]; local
383 uint8_t* flat = new uint8_t[size]; local
402 uint8_t* flat = new uint8_t[size]; local
421 uint8_t* flat = new uint8_t[size]; local
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/include/
H A Dpvmp3decoder_api.h81 flat = 0, enumerator in enum:__anon590
/frameworks/native/libs/input/
H A DInputDevice.cpp186 float flat, float fuzz, float resolution) {
187 MotionRange range = { axis, source, min, max, flat, fuzz, resolution };
185 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.h70 float flat; member in struct:android::InputDeviceInfo::MotionRange
95 float min, float max, float flat, float fuzz, float resolution);
/frameworks/native/services/vr/virtual_touchpad/
H A DEvdevInjector.cpp132 int32_t fuzz, int32_t flat) {
135 abs_type, min, max, fuzz, flat);
153 uidev_.absflat[abs_type] = flat;
131 ConfigureAbs(uint16_t abs_type, int32_t min, int32_t max, int32_t fuzz, int32_t flat) argument
/frameworks/native/services/inputflinger/
H A DEventHub.h86 int32_t flat; // center flat position, eg. flat == 8 means center is between -8 and 8 member in struct:android::RawAbsoluteAxisInfo
94 flat = 0;
H A DInputReader.h1929 float flat; // normalized flat region size member in struct:android::JoystickInputMapper::Axis
1942 float min, float max, float flat, float fuzz, float resolution) {
1952 this->flat = flat;
1939 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.java741 float min, float max, float flat, float fuzz, float resolution) {
742 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution));
819 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, argument
825 mFlat = flat;
884 * Gets the extent of the center flat position with respect to this axis.
886 * For example, a flat value of 8 means that the center position is between -8 and +8.
889 * @return The extent of the center flat position.
998 description.append(" flat=").append(range.mFlat);
740 addMotionRange(int axis, int source, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/native/libs/binder/
H A DParcel.cpp204 const sp<IBinder>& /*binder*/, const flat_binder_object& flat, Parcel* out)
206 return out->writeObject(flat, false);
298 BpBinder* /*proxy*/, const flat_binder_object& /*flat*/,
307 const flat_binder_object* flat = in.readObject(false); local
309 if (flat) {
310 switch (flat->type) {
312 *out = reinterpret_cast<IBinder*>(flat->cookie);
313 return finish_unflatten_binder(NULL, *flat, in);
315 *out = proc->getStrongProxyForHandle(flat->handle);
317 static_cast<BpBinder*>(out->get()), *flat, i
203 finish_flatten_binder( const sp<IBinder>& , const flat_binder_object& flat, Parcel* out) argument
326 const flat_binder_object* flat = in.readObject(false); local
542 flat_binder_object* flat local
2133 const flat_binder_object* flat = readObject(true); local
2326 const flat_binder_object* flat local
2397 const flat_binder_object* flat local
2418 const flat_binder_object* flat local
2432 const flat_binder_object* flat local
2619 const flat_binder_object* flat local
2729 const flat_binder_object* flat local
[all...]
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp400 int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) {
407 info.flat = flat;
1489 int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) {
1496 ASSERT_NEAR(flat, range->flat, EPSILON) << "Axis: " << axis << " Source: " << source;
399 addAbsoluteAxis(int32_t deviceId, int axis, int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) argument
1488 assertMotionRange(const InputDeviceInfo& info, int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) argument

Completed in 2831 milliseconds