/linux-6.1.9/drivers/staging/media/deprecated/saa7146/common/ |
D | saa7146_video.c | 15 (((vv->video_status & STATUS_CAPTURE) != 0) && (vv->video_fh == fh)) 18 (((vv->video_status & STATUS_OVERLAY) != 0) && (vv->video_fh == fh)) 99 struct saa7146_vv *vv = dev->vv_data; in saa7146_start_preview() local 106 if (vv->ov.fh == NULL) { in saa7146_start_preview() 119 if (vv->video_fh == fh) { in saa7146_start_preview() 132 fmt.fmt.win = vv->ov.win; in saa7146_start_preview() 135 saa7146_res_free(vv->video_fh, RESOURCE_DMA1_HPS|RESOURCE_DMA2_CLP); in saa7146_start_preview() 138 vv->ov.win = fmt.fmt.win; in saa7146_start_preview() 141 vv->ov.win.w.width, vv->ov.win.w.height, in saa7146_start_preview() 142 vv->ov.win.w.left, vv->ov.win.w.top, in saa7146_start_preview() [all …]
|
D | saa7146_vbi.c | 8 struct saa7146_vv *vv = dev->vv_data; in vbi_workaround() local 98 add_wait_queue(&vv->vbi_wq, &wait); in vbi_workaround() 109 remove_wait_queue(&vv->vbi_wq, &wait); in vbi_workaround() 137 struct saa7146_vv *vv = dev->vv_data; in saa7146_set_vbi_capture() local 142 unsigned long e_wait = vv->current_hps_sync == SAA7146_HPS_SYNC_PORT_A ? CMD_E_FID_A : CMD_E_FID_B; in saa7146_set_vbi_capture() 143 unsigned long o_wait = vv->current_hps_sync == SAA7146_HPS_SYNC_PORT_A ? CMD_O_FID_A : CMD_O_FID_B; in saa7146_set_vbi_capture() 209 struct saa7146_vv *vv = dev->vv_data; in buffer_activate() local 215 mod_timer(&vv->vbi_dmaq.timeout, jiffies+BUFFER_TIMEOUT); in buffer_activate() 294 struct saa7146_vv *vv = dev->vv_data; in buffer_queue() local 298 saa7146_buffer_queue(dev, &vv->vbi_dmaq, buf); in buffer_queue() [all …]
|
D | saa7146_hlp.c | 22 static void calculate_hxo_and_hyo(struct saa7146_vv *vv, u32* hps_h_scale, u32* hps_ctrl) in calculate_hxo_and_hyo() argument 26 hyo = vv->standard->v_offset; in calculate_hxo_and_hyo() 27 hxo = vv->standard->h_offset; in calculate_hxo_and_hyo() 341 struct saa7146_vv *vv = dev->vv_data; in calculate_clipping_registers_rect() local 342 __le32 *clipping = vv->d_clipping.cpu_addr; in calculate_clipping_registers_rect() 344 int width = vv->ov.win.w.width; in calculate_clipping_registers_rect() 345 int height = vv->ov.win.w.height; in calculate_clipping_registers_rect() 346 int clipcount = vv->ov.nclips; in calculate_clipping_registers_rect() 366 x[i] = vv->ov.clips[i].c.left; in calculate_clipping_registers_rect() 367 y[i] = vv->ov.clips[i].c.top; in calculate_clipping_registers_rect() [all …]
|
D | saa7146_fops.c | 13 struct saa7146_vv *vv = dev->vv_data; in saa7146_res_get() local 17 bit, vv->resources); in saa7146_res_get() 23 if (vv->resources & bit) { in saa7146_res_get() 25 vv->resources, bit); in saa7146_res_get() 31 vv->resources |= bit; in saa7146_res_get() 32 DEB_D("res: get 0x%02x, cur:0x%02x\n", bit, vv->resources); in saa7146_res_get() 39 struct saa7146_vv *vv = dev->vv_data; in saa7146_res_free() local 44 vv->resources &= ~bits; in saa7146_res_free() 45 DEB_D("res: put 0x%02x, cur:0x%02x\n", bits, vv->resources); in saa7146_res_free() 469 struct saa7146_vv *vv; in saa7146_vv_init() local [all …]
|
/linux-6.1.9/lib/raid6/ |
D | int.uc | 62 unative_t vv; 64 vv = (v << 1) & NBYTES(0xfe); 65 return vv; 74 unative_t vv; 76 vv = v & NBYTES(0x80); 77 vv = (vv << 1) - (vv >> 7); /* Overflow on the top bit is OK */ 78 return vv;
|
/linux-6.1.9/arch/m68k/lib/ |
D | muldi3.c | 85 DIunion uu, vv; in __muldi3() local 88 vv.ll = v; in __muldi3() 90 w.ll = __umulsidi3 (uu.s.low, vv.s.low); in __muldi3() 91 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3() 92 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()
|
/linux-6.1.9/arch/microblaze/lib/ |
D | muldi3.c | 50 const DWunion vv = {.ll = v}; in __muldi3() local 51 DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)}; in __muldi3() 53 w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high in __muldi3() 54 + (unsigned long) uu.s.high * (unsigned long) vv.s.low); in __muldi3()
|
/linux-6.1.9/lib/ |
D | muldi3.c | 52 const DWunion vv = {.ll = v}; in __muldi3() local 53 DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)}; in __muldi3() 55 w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high in __muldi3() 56 + (unsigned long) uu.s.high * (unsigned long) vv.s.low); in __muldi3()
|
/linux-6.1.9/lib/mpi/ |
D | mpi-add.c | 136 MPI vv = mpi_copy(v); in mpi_sub() local 137 vv->sign = !vv->sign; in mpi_sub() 138 mpi_add(w, u, vv); in mpi_sub() 139 mpi_free(vv); in mpi_sub()
|
/linux-6.1.9/drivers/staging/media/deprecated/saa7146/av7110/ |
D | av7110_v4l.c | 219 struct saa7146_vv *vv = dev->vv_data; in av7110_dvb_c_switch() local 226 if ((vv->video_status & STATUS_OVERLAY) != 0) { in av7110_dvb_c_switch() 227 vv->ov_suspend = vv->video_fh; in av7110_dvb_c_switch() 228 …err = saa7146_stop_preview(vv->video_fh); /* side effect: video_status is now 0, video_fh is NULL … in av7110_dvb_c_switch() 231 vv->ov_suspend = NULL; in av7110_dvb_c_switch() 303 if (vv->ov_suspend != NULL) { in av7110_dvb_c_switch() 304 saa7146_start_preview(vv->ov_suspend); in av7110_dvb_c_switch() 305 vv->ov_suspend = NULL; in av7110_dvb_c_switch()
|
/linux-6.1.9/drivers/media/i2c/ccs/ |
D | ccs-data.c | 136 struct ccs_data_block_version *vv; in ccs_data_parse_version() local 150 vv = ccsdata->version; in ccs_data_parse_version() 151 vv->version_major = ((u16)v->static_data_version_major[0] << 8) + in ccs_data_parse_version() 153 vv->version_minor = ((u16)v->static_data_version_minor[0] << 8) + in ccs_data_parse_version() 155 vv->date_year = ((u16)v->year[0] << 8) + v->year[1]; in ccs_data_parse_version() 156 vv->date_month = v->month; in ccs_data_parse_version() 157 vv->date_day = v->day; in ccs_data_parse_version()
|
/linux-6.1.9/drivers/media/usb/dvb-usb/ |
D | digitv.c | 26 u8 cmd, u8 vv, u8 *wbuf, int wlen, u8 *rbuf, int rlen) in digitv_ctrl_msg() argument 40 st->sndbuf[1] = vv; in digitv_ctrl_msg()
|
/linux-6.1.9/tools/perf/Documentation/ |
D | perf.txt | 23 -vv::
|
D | perf-intel-pt.txt | 274 perf_event_attr is displayed if the -vv option is used e.g. 588 The snapshot size is displayed if the option -vv is used e.g. 620 The mmap size and auxtrace mmap size are displayed if the -vv option is used e.g. 803 $ perf record -vv -e intel_pt//u uname
|
/linux-6.1.9/tools/testing/selftests/ftrace/ |
D | ftracetest | 88 --verbose|-v|-vv|-vvv)
|
/linux-6.1.9/Documentation/devicetree/bindings/display/xlnx/ |
D | xlnx,zynqmp-dpsub.yaml | 26 vv
|
/linux-6.1.9/drivers/staging/media/deprecated/saa7146/saa7146/ |
D | mxb.c | 590 struct saa7146_vv *vv = dev->vv_data; in vidioc_s_frequency() local 613 vv->vbi_fieldcount = 0; in vidioc_s_frequency()
|
/linux-6.1.9/drivers/scsi/lpfc/ |
D | lpfc_nportdisc.c | 535 vid = be32_to_cpu(sp->un.vv.vid); in lpfc_rcv_plogi() 536 flag = be32_to_cpu(sp->un.vv.flags); in lpfc_rcv_plogi() 1414 vid = be32_to_cpu(sp->un.vv.vid); in lpfc_cmpl_plogi_plogi_issue() 1415 flag = be32_to_cpu(sp->un.vv.flags); in lpfc_cmpl_plogi_plogi_issue()
|
D | lpfc_els.c | 2245 sp->un.vv.vid = cpu_to_be32(LPFC_VV_EMLX_ID); in lpfc_issue_els_plogi() 2246 sp->un.vv.flags = cpu_to_be32(LPFC_VV_SUPPRESS_RSP); in lpfc_issue_els_plogi() 5576 sp->un.vv.vid = cpu_to_be32(LPFC_VV_EMLX_ID); in lpfc_els_rsp_acc() 5577 sp->un.vv.flags = in lpfc_els_rsp_acc()
|
D | lpfc_hw.h | 529 } vv; member
|
/linux-6.1.9/drivers/staging/media/ipu3/include/uapi/ |
D | intel-ipu3.h | 1934 __u32 vv:8; member
|
/linux-6.1.9/drivers/message/fusion/ |
D | mptbase.c | 3079 u32 vv; in GetIocFacts() local 3193 vv = ((63 / (sz * 4)) + 1) & 0x03; in GetIocFacts() 3194 ioc->NB_for_64_byte_frame = vv; in GetIocFacts() 3203 ioc->name, vv, shiftFactor, r)); in GetIocFacts()
|
/linux-6.1.9/Documentation/networking/device_drivers/ethernet/intel/ |
D | ice.rst | 187 # lspci -vv -s af:00.0 | grep -i Serial 193 # lspci -vv -s af:00.0 | grep -i Serial | awk '{print $7}' | sed s/-//g
|
/linux-6.1.9/drivers/net/ethernet/mellanox/mlxsw/ |
D | reg.h | 1919 MLXSW_ITEM32(reg, sfmr, vv, 0x10, 31, 1);
|