Searched defs:cx (Results 26 - 38 of 38) sorted by relevance

12

/drivers/media/video/cx18/
H A Dcx18-mailbox.c119 static void dump_mb(struct cx18 *cx, struct cx18_mailbox *mb, char *name) argument
217 static void cx18_mdl_send_to_alsa(struct cx18 *cx, struct cx18_stream *s, argument
232 cx->pcm_announce_callback(cx->alsa, buf->buf,
240 cx->pcm_announce_callback(cx->alsa, buf->buf, buf->bytesused);
244 static void epu_dma_done(struct cx18 *cx, struct cx18_in_work_order *order) argument
255 s = cx18_handle_to_stream(cx, handle);
315 if (cx->pcm_announce_callback != NULL) {
316 cx18_mdl_send_to_alsa(cx,
338 epu_debug(struct cx18 *cx, struct cx18_in_work_order *order) argument
349 epu_cmd(struct cx18 *cx, struct cx18_in_work_order *order) argument
378 free_in_work_order(struct cx18 *cx, struct cx18_in_work_order *order) argument
387 struct cx18 *cx = order->cx; local
397 mb_ack_irq(struct cx18 *cx, struct cx18_in_work_order *order) argument
433 epu_dma_done_irq(struct cx18 *cx, struct cx18_in_work_order *order) argument
459 epu_debug_irq(struct cx18 *cx, struct cx18_in_work_order *order) argument
480 epu_cmd_irq(struct cx18 *cx, struct cx18_in_work_order *order) argument
512 alloc_in_work_order_irq(struct cx18 *cx) argument
535 cx18_api_epu_cmd_irq(struct cx18 *cx, int rpu) argument
595 cx18_api_call(struct cx18 *cx, u32 cmd, int args, u32 data[]) argument
752 cx18_api(struct cx18 *cx, u32 cmd, int args, u32 data[]) argument
759 struct cx18 *cx = s->cx; local
778 struct cx18 *cx = s->cx; local
837 cx18_vapi_result(struct cx18 *cx, u32 data[MAX_MB_ARGUMENTS], u32 cmd, int args, ...) argument
850 cx18_vapi(struct cx18 *cx, u32 cmd, int args, ...) argument
[all...]
H A Dcx18-streams.c117 struct cx18 *cx = s->cx; local
133 buf->tvnorm != cx->std) {
138 buf->tvnorm = cx->std;
160 buf->tvnorm = cx->std;
192 struct cx18 *cx = s->cx; local
194 *size = 2 * cx->cxhdl.width * cx->cxhdl.height;
214 struct cx18 *cx local
248 cx18_stream_init(struct cx18 *cx, int type) argument
306 cx18_prep_dev(struct cx18 *cx, int type) argument
385 cx18_streams_setup(struct cx18 *cx) argument
409 cx18_reg_dev(struct cx18 *cx, int type) argument
478 cx18_streams_register(struct cx18 *cx) argument
500 cx18_streams_cleanup(struct cx18 *cx, int unregister) argument
559 struct cx18 *cx = s->cx; local
667 cx18_stream_rotate_idx_mdls(struct cx18 *cx) argument
697 struct cx18 *cx = s->cx; local
792 struct cx18 *cx = s->cx; local
966 cx18_stop_all_captures(struct cx18 *cx) argument
982 struct cx18 *cx = s->cx; local
1033 cx18_find_handle(struct cx18 *cx) argument
1047 cx18_handle_to_stream(struct cx18 *cx, u32 handle) argument
[all...]
H A Dcx18-driver.c297 static void cx18_iounmap(struct cx18 *cx) argument
299 if (cx == NULL)
303 if (cx->enc_mem != NULL) {
305 iounmap(cx->enc_mem);
306 cx->enc_mem = NULL;
310 static void cx18_eeprom_dump(struct cx18 *cx, unsigned char *eedata, int len) argument
325 void cx18_read_eeprom(struct cx18 *cx, struct tveeprom *tv) argument
332 c.adapter = &cx->i2c_adap[0];
339 switch (cx->card->type) {
348 cx18_eeprom_dump(cx, eedat
359 cx18_process_eeprom(struct cx18 *cx) argument
450 cx18_parse_std(struct cx18 *cx) argument
532 cx18_process_options(struct cx18 *cx) argument
694 cx18_create_in_workq(struct cx18 *cx) argument
706 cx18_init_in_work_orders(struct cx18 *cx) argument
721 cx18_init_struct1(struct cx18 *cx) argument
778 cx18_init_struct2(struct cx18 *cx) argument
803 cx18_setup_pci(struct cx18 *cx, struct pci_dev *pci_dev, const struct pci_device_id *pci_id) argument
849 cx18_init_subdevs(struct cx18 *cx) argument
901 struct cx18 *cx; local
1151 cx18_init_on_first_open(struct cx18 *cx) argument
1251 cx18_cancel_in_work_orders(struct cx18 *cx) argument
1258 cx18_cancel_out_work_orders(struct cx18 *cx) argument
1269 struct cx18 *cx = to_cx18(v4l2_dev); local
[all...]
H A Dcx18-av-core.c30 int cx18_av_write(struct cx18 *cx, u16 addr, u8 value) argument
35 u32 x = cx18_read_reg(cx, reg);
38 cx18_write_reg(cx, x, reg);
42 int cx18_av_write_expect(struct cx18 *cx, u16 addr, u8 value, u8 eval, u8 mask) argument
46 u32 x = cx18_read_reg(cx, reg);
49 cx18_write_reg_expect(cx, x, reg,
54 int cx18_av_write4(struct cx18 *cx, u16 addr, u32 value) argument
56 cx18_write_reg(cx, value, 0xc40000 + addr);
61 cx18_av_write4_expect(struct cx18 *cx, u16 addr, u32 value, u32 eval, u32 mask) argument
63 cx18_write_reg_expect(cx, valu
67 cx18_av_write4_noretry(struct cx18 *cx, u16 addr, u32 value) argument
73 cx18_av_read(struct cx18 *cx, u16 addr) argument
81 cx18_av_read4(struct cx18 *cx, u16 addr) argument
86 cx18_av_and_or(struct cx18 *cx, u16 addr, unsigned and_mask, u8 or_value) argument
94 cx18_av_and_or4(struct cx18 *cx, u16 addr, u32 and_mask, u32 or_value) argument
102 cx18_av_init(struct cx18 *cx) argument
131 struct cx18 *cx = v4l2_get_subdevdata(sd); local
288 cx18_av_std_setup(struct cx18 *cx) argument
533 input_change(struct cx18 *cx) argument
581 struct cx18 *cx = v4l2_get_subdevdata(sd); local
586 set_input(struct cx18 *cx, enum cx18_av_video_input vid_input, enum cx18_av_audio_input aud_input) argument
763 struct cx18 *cx = v4l2_get_subdevdata(sd); local
771 struct cx18 *cx = v4l2_get_subdevdata(sd); local
778 struct cx18 *cx = v4l2_get_subdevdata(sd); local
815 struct cx18 *cx = v4l2_get_subdevdata(sd); local
860 struct cx18 *cx = v4l2_get_subdevdata(sd); local
923 struct cx18 *cx = v4l2_get_subdevdata(sd); local
952 struct cx18 *cx = v4l2_get_subdevdata(sd); local
1022 struct cx18 *cx = v4l2_get_subdevdata(sd); local
1035 log_video_status(struct cx18 *cx) argument
1077 log_audio_status(struct cx18 *cx) argument
1228 struct cx18 *cx = v4l2_get_subdevdata(sd); local
1255 struct cx18 *cx = v4l2_get_subdevdata(sd); local
1271 struct cx18 *cx = v4l2_get_subdevdata(sd); local
1340 cx18_av_probe(struct cx18 *cx) argument
[all...]
H A Dcx18-ioctl.c152 struct cx18 *cx = id->cx; local
153 struct cx18_stream *s = &cx->streams[id->type];
156 pixfmt->width = cx->cxhdl.width;
157 pixfmt->height = cx->cxhdl.height;
176 struct cx18 *cx = fh2id(fh)->cx; local
183 vbifmt->start[0] = cx->vbi.start[0];
184 vbifmt->start[1] = cx->vbi.start[1];
185 vbifmt->count[0] = vbifmt->count[1] = cx
195 struct cx18 *cx = fh2id(fh)->cx; local
225 struct cx18 *cx = id->cx; local
254 struct cx18 *cx = fh2id(fh)->cx; local
274 struct cx18 *cx = id->cx; local
312 struct cx18 *cx = id->cx; local
342 struct cx18 *cx = id->cx; local
372 struct cx18 *cx = fh2id(fh)->cx; local
422 cx18_cxc(struct cx18 *cx, unsigned int cmd, void *arg) argument
442 struct cx18 *cx = fh2id(fh)->cx; local
454 struct cx18 *cx = fh2id(fh)->cx; local
468 struct cx18 *cx = id->cx; local
482 struct cx18 *cx = fh2id(fh)->cx; local
489 struct cx18 *cx = fh2id(fh)->cx; local
497 struct cx18 *cx = fh2id(fh)->cx; local
508 struct cx18 *cx = fh2id(fh)->cx; local
517 struct cx18 *cx = fh2id(fh)->cx; local
533 struct cx18 *cx = id->cx; local
543 struct cx18 *cx = fh2id(fh)->cx; local
574 struct cx18 *cx = fh2id(fh)->cx; local
583 struct cx18 *cx = id->cx; local
612 struct cx18 *cx = fh2id(fh)->cx; local
624 struct cx18 *cx = id->cx; local
638 struct cx18 *cx = fh2id(fh)->cx; local
647 struct cx18 *cx = id->cx; local
683 struct cx18 *cx = id->cx; local
694 struct cx18 *cx = fh2id(fh)->cx; local
711 struct cx18 *cx = fh2id(fh)->cx; local
832 struct cx18 *cx = fh2id(fh)->cx; local
879 struct cx18 *cx = id->cx; local
898 struct cx18 *cx = id->cx; local
919 struct cx18 *cx = id->cx; local
937 struct cx18 *cx = id->cx; local
951 struct cx18 *cx = id->cx; local
964 struct cx18 *cx = id->cx; local
977 struct cx18 *cx = id->cx; local
991 struct cx18 *cx = id->cx; local
1051 struct cx18 *cx = fh2id(fh)->cx; local
1083 struct cx18 *cx = fh2id(fh)->cx; local
1127 struct cx18 *cx = fh2id(fh)->cx; local
1150 struct cx18 *cx = id->cx; local
[all...]
H A Dcx18-driver.h176 v4l2_info(&cx->v4l2_dev, " " type ": " fmt , ## args); \
190 v4l2_info(&cx->v4l2_dev, " " type ": " fmt , ## args); \
202 #define CX18_ERR(fmt, args...) v4l2_err(&cx->v4l2_dev, fmt , ## args)
203 #define CX18_WARN(fmt, args...) v4l2_warn(&cx->v4l2_dev, fmt , ## args)
204 #define CX18_INFO(fmt, args...) v4l2_info(&cx->v4l2_dev, fmt , ## args)
312 u32 id; /* index into cx->scb->cpu_mdl[] of 1st cx18_mdl_ent */
363 struct cx18 *cx; member in struct:cx18_in_work_order
378 struct cx18 *cx; /* for ease of use */ member in struct:cx18_stream
431 struct cx18 *cx; member in struct:cx18_open_id
567 struct cx18 *cx; member in struct:cx18_i2c_algo_callback_data
700 cx18_raw_vbi(const struct cx18 *cx) argument
[all...]
/drivers/mtd/maps/
H A Dvmu-flash.c361 unsigned char cx; local
402 cx = vmu_flash_read_char(from + index, &retval, mtd);
406 return cx;
408 memset(buf + index, cx, 1);
/drivers/staging/omapdrm/
H A Domap_fb.c270 int cx = max(0, x - crtc->x); local
272 int cw = w + (x - crtc->x) - cx;
275 omap_connector_flush(connector, cx, cy, cw, ch);
/drivers/cpufreq/
H A Dlonghaul.c71 static struct acpi_processor_cx *cx; variable in typeref:struct:acpi_processor_cx
327 do_powersaver(cx->address, mults_index, dir);
889 cx = &pr->power.states[ACPI_STATE_C3];
890 if (cx->address > 0 && cx->latency <= 1000)
/drivers/net/plip/
H A Dplip.c487 unsigned int cx; local
491 cx = nibble_timeout;
500 if (--cx == 0)
508 cx = nibble_timeout;
517 if (--cx == 0)
706 unsigned int cx; local
715 cx = nibble_timeout;
720 if (--cx == 0)
729 cx = nibble_timeout;
734 if (--cx
752 unsigned int cx; local
[all...]
/drivers/s390/crypto/
H A Dzcrypt_api.c936 int inl, c, cx; local
944 cx = len%16;
945 if (cx) {
946 sprintcl(m, addr+inl, cx);
947 inl += cx;
/drivers/s390/char/
H A Dtty3270.c80 unsigned int cx, cy; /* Current output position. */ member in struct:tty3270
969 if (line->len <= tp->cx) {
970 while (line->len < tp->cx) {
979 cell = line->cells + tp->cx;
1098 tp->cx = 0;
1144 while (line->len < tp->cx) {
1150 if (n > tp->view.cols - tp->cx)
1151 n = tp->view.cols - tp->cx;
1152 k = min_t(int, line->len - tp->cx, tp->view.cols - tp->cx
1333 tty3270_goto_xy(struct tty3270 *tp, int cx, int cy) argument
[all...]
/drivers/media/video/cx23885/
H A Dcx23885.h323 struct cx23885_dev *cx; member in struct:cx23885_kernel_ir

Completed in 632 milliseconds

12