Searched defs:point (Results 1 - 15 of 15) sorted by relevance

/drivers/net/wireless/ath/ath5k/
H A Deeprom.c720 u8 pier, point, idx; local
769 for (point = 0; point < pd->pd_points; point++) {
772 pd->pd_pwr[point] = 2 * pcinfo->pwr[point];
775 pd->pd_step[point] = pcinfo->pcdac[point];
908 unsigned int pier, pdg, point; local
933 /* One more point fo
1200 unsigned int pier, pdg, point; local
[all...]
/drivers/input/touchscreen/
H A Dauo-pixcir-ts.c135 struct auo_point_t *point)
160 point[i].coord_x =
162 point[i].coord_y =
165 if (point[i].coord_x > pdata->x_max ||
166 point[i].coord_y > pdata->y_max) {
168 point[i].coord_x, point[i].coord_y);
169 point[i].coord_x = point[i].coord_y = 0;
173 point[
134 auo_pixcir_collect_data(struct auo_pixcir_ts *ts, struct auo_point_t *point) argument
185 struct auo_point_t point[AUO_PIXCIR_REPORT_POINTS]; local
[all...]
H A Dzforce_ts.c338 struct zforce_point point; local
350 point.coord_x =
352 point.coord_y =
355 if (point.coord_x > pdata->x_max ||
356 point.coord_y > pdata->y_max) {
358 point.coord_x, point.coord_y);
359 point.coord_x = point.coord_y = 0;
362 point
[all...]
/drivers/net/wireless/p54/
H A Deeprom.c287 for (j = 0; j < ARRAY_SIZE(pda->point); j++) {
288 struct pda_channel_output_limit_point_longbow *point = local
289 &pda->point[j];
291 rawpower, le16_to_cpu(point->val_qpsk));
293 rawpower, le16_to_cpu(point->val_bpsk));
295 rawpower, le16_to_cpu(point->val_16qam));
297 rawpower, le16_to_cpu(point->val_64qam));
H A Deeprom.h69 struct pda_channel_output_limit_point_longbow point[3]; member in struct:pda_channel_output_limit_longbow
/drivers/net/ethernet/toshiba/
H A Dps3_gelic_wireless.c311 struct iw_point *point = &iwreq->data; local
317 point->length = sizeof(struct iw_range);
1102 pr_debug("%s: flag=%#x point=%p len=%d extra=%p\n", __func__,
/drivers/staging/lustre/lustre/llite/
H A Drw.c85 * point.
380 static int index_in_window(unsigned long index, unsigned long point, argument
383 unsigned long start = point - before, end = point + after;
385 if (start > point)
387 if (end < point)
/drivers/staging/rtl8723au/hal/
H A Dodm.c1537 u32 GetPSDData(struct dm_odm_t *pDM_Odm, unsigned int point, u8 initial_gain_psd) argument
1541 /* Set DCO frequency index, offset = (40MHz/SamplePts)*point */
1542 ODM_SetBBReg(pDM_Odm, 0x808, 0x3FF, point);
/drivers/hwmon/
H A Df71882fg.c98 #define F71882FG_REG_POINT_PWM(pwm, point) (0xAA + (point) + (16 * (pwm)))
99 #define F71882FG_REG_POINT_TEMP(pwm, point) (0xA6 + (point) + (16 * (pwm)))
330 /* PWM and Auto point control */
1166 int nr, reg, point; local
1225 for (point = 0; point < 5; point++) {
1226 data->pwm_auto_point_pwm[nr][point]
1906 int point = to_sensor_dev_attr_2(devattr)->nr; local
1927 int point = to_sensor_dev_attr_2(devattr)->nr; local
1961 int point = to_sensor_dev_attr_2(devattr)->nr; local
1980 int point = to_sensor_dev_attr_2(devattr)->nr; local
2106 int point = to_sensor_dev_attr_2(devattr)->nr; local
2118 int point = to_sensor_dev_attr_2(devattr)->nr; local
[all...]
H A Dit87.c1114 int point = sensor_attr->index; local
1117 pwm_from_reg(data, data->auto_pwm[nr][point]));
1127 int point = sensor_attr->index; local
1134 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
1135 it87_write_value(data, IT87_REG_AUTO_PWM(nr, point),
1136 data->auto_pwm[nr][point]);
1148 int point = sensor_attr->index; local
1150 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->auto_temp[nr][point]));
1160 int point = sensor_attr->index; local
1167 data->auto_temp[nr][point]
[all...]
H A Dnct6775.c2751 int point = sattr->index; local
2762 if (point == data->auto_pwm_num) {
2770 data->auto_pwm[nr][point] = val;
2771 if (point < data->auto_pwm_num) {
2773 NCT6775_AUTO_PWM(data, nr, point),
2774 data->auto_pwm[nr][point]);
2817 int point = sattr->index; local
2823 return sprintf(buf, "%d\n", data->auto_temp[nr][point] * 1000);
2833 int point = sattr->index; local
2844 data->auto_temp[nr][point]
[all...]
/drivers/input/mouse/
H A Dalps.c333 struct alps_bitmap_point *point; local
336 point = low;
341 point->start_bit = i;
342 point->num_bits = 0;
345 point->num_bits++;
348 point = high;
1502 * My guess that 0xE9 (GetInfo) is here as a sync point.
/drivers/video/fbdev/riva/
H A Driva_hw.h374 U032 point; /* y_x S16_S16 in pixels 4- 7*/ member in struct:__anon7225::__anon7229
/drivers/video/fbdev/
H A Dtridentfb.c181 #define point(x, y) ((y) << 16 | (x)) macro
213 writemmr(par, DST1, point(x, y));
214 writemmr(par, DST2, point(x + w - 1, y + h - 1));
226 writemmr(par, DST1, point(x, y));
227 writemmr(par, DST2, point(x + w - 1, y + h - 1));
236 u32 s1 = point(x1, y1);
237 u32 s2 = point(x1 + w - 1, y1 + h - 1);
238 u32 d1 = point(x2, y2);
239 u32 d2 = point(x2 + w - 1, y2 + h - 1);
314 writemmr(par, OLDDIM, point(
[all...]
/drivers/mmc/host/
H A Dvub300.c1832 int point = MAXREGMASK & register_point; local
1834 &vub300->fn[Function].reg[point];

Completed in 1093 milliseconds