Home
last modified time | relevance | path

Searched refs:cdef (Results 1 – 8 of 8) sorted by relevance

/linux/drivers/media/i2c/
H A Dak7375.c75 const struct ak73xx_chipdef *cdef; member
120 const struct ak73xx_chipdef *cdef = dev_vcm->cdef; in ak7375_set_ctrl() local
123 return ak7375_i2c_write(dev_vcm, cdef->reg_position, in ak7375_set_ctrl()
124 ctrl->val << cdef->shift_pos, 2); in ak7375_set_ctrl()
163 const struct ak73xx_chipdef *cdef = dev_vcm->cdef; in ak7375_init_controls() local
168 0, cdef->focus_pos_max, cdef->focus_steps, 0); in ak7375_init_controls()
189 ak7375_dev->cdef = device_get_match_data(&client->dev); in ak7375_probe()
251 const struct ak73xx_chipdef *cdef = ak7375_dev->cdef; in ak7375_vcm_suspend() local
257 for (val = ak7375_dev->focus->val & ~(cdef->ctrl_steps - 1); in ak7375_vcm_suspend()
258 val >= 0; val -= cdef->ctrl_steps) { in ak7375_vcm_suspend()
[all …]
/linux/drivers/media/test-drivers/visl/
H A Dvisl-trace-av1.h148 __entry->f.cdef.damping_minus_3,
149 __entry->f.cdef.bits,
150 __print_array(__entry->f.cdef.y_pri_strength,
151 ARRAY_SIZE(__entry->f.cdef.y_pri_strength),
152 sizeof(__entry->f.cdef.y_pri_strength[0])),
153 __print_array(__entry->f.cdef.y_sec_strength,
154 ARRAY_SIZE(__entry->f.cdef.y_sec_strength),
155 sizeof(__entry->f.cdef.y_sec_strength[0])),
156 __print_array(__entry->f.cdef.uv_pri_strength,
157 ARRAY_SIZE(__entry->f.cdef.uv_pri_strength),
[all …]
/linux/drivers/leds/
H A Dleds-spi-byte.c51 const struct spi_byte_chipdef *cdef; member
66 value = (u8) brightness + led->cdef->off_value; in spi_byte_brightness_set_blocking()
98 led->cdef = device_get_match_data(dev); in spi_byte_probe()
100 led->ldev.max_brightness = led->cdef->max_value - led->cdef->off_value; in spi_byte_probe()
/linux/Documentation/translations/zh_CN/admin-guide/
H A Dbootconfig.rst221 root = 01234567-89ab-cdef-0123-456789abcd
229 root="01234567-89ab-cdef-0123-456789abcd" -- splash
237 root="01234567-89ab-cdef-0123-456789abcd" ro bootconfig -- splash quiet
/linux/Documentation/translations/zh_TW/admin-guide/
H A Dbootconfig.rst221 root = 01234567-89ab-cdef-0123-456789abcd
229 root="01234567-89ab-cdef-0123-456789abcd" -- splash
237 root="01234567-89ab-cdef-0123-456789abcd" ro bootconfig -- splash quiet
/linux/drivers/isdn/capi/
H A Dcapiutil.c39 static _cdef cdef[] = variable
231 #define TYP (cdef[cmsg->par[cmsg->p]].typ)
232 #define OFF (((u8 *)cmsg) + cdef[cmsg->par[cmsg->p]].off)
/linux/drivers/media/v4l2-core/
H A Dv4l2-ctrls-core.c731 static int validate_av1_cdef(struct v4l2_av1_cdef *cdef) in validate_av1_cdef() argument
735 if (cdef->damping_minus_3 > GENMASK(1, 0) || in validate_av1_cdef()
736 cdef->bits > GENMASK(1, 0)) in validate_av1_cdef()
739 for (i = 0; i < 1 << cdef->bits; i++) { in validate_av1_cdef()
740 if (cdef->y_pri_strength[i] > GENMASK(3, 0) || in validate_av1_cdef()
741 cdef->y_sec_strength[i] > 4 || in validate_av1_cdef()
742 cdef->uv_pri_strength[i] > GENMASK(3, 0) || in validate_av1_cdef()
743 cdef->uv_sec_strength[i] > 4) in validate_av1_cdef()
806 ret = validate_av1_cdef(&f->cdef); in validate_av1_frame()
/linux/drivers/media/platform/mediatek/vcodec/decoder/vdec/
H A Dvdec_av1_req_lat_if.c488 struct vdec_av1_slice_cdef cdef; member
1243 static void vdec_av1_slice_setup_cdef(struct vdec_av1_slice_cdef *cdef, in vdec_av1_slice_setup_cdef() argument
1248 cdef->cdef_damping = ctrl_cdef->damping_minus_3 + 3; in vdec_av1_slice_setup_cdef()
1249 cdef->cdef_bits = ctrl_cdef->bits; in vdec_av1_slice_setup_cdef()
1258 cdef->cdef_y_strength[i] = in vdec_av1_slice_setup_cdef()
1261 cdef->cdef_uv_strength[i] = in vdec_av1_slice_setup_cdef()
1383 vdec_av1_slice_setup_cdef(&uh->cdef, &ctrl_fh->cdef); in vdec_av1_slice_setup_uh()