Lines Matching refs:SampleData
115 struct SampleData {
149 SampleData sampleData[0]; // variable length
153 /* Gets the number of bytes to add to step to the next SampleData object in a motion
157 return sizeof(InputMessage::SampleData) + pointerCount * sizeof(PointerCoords);
160 /* Adds the SampleData stride to the given pointer. */
161 static inline SampleData* sampleDataPtrIncrement(SampleData* ptr, size_t stride) {
162 return reinterpret_cast<InputMessage::SampleData*>(reinterpret_cast<char*>(ptr) + stride);
273 InputMessage::SampleData* mMotionEventSampleDataTail;