Lines Matching defs:buf
165 static void bu21029_touch_report(struct bu21029_ts_data *bu21029, const u8 *buf)
181 x = (buf[0] << 4) | (buf[1] >> 4);
182 y = (buf[2] << 4) | (buf[3] >> 4);
183 z1 = (buf[4] << 4) | (buf[5] >> 4);
184 z2 = (buf[6] << 4) | (buf[7] >> 4);
222 u8 buf[BUF_LEN];
230 sizeof(buf), buf);
234 bu21029_touch_report(bu21029, buf);