Searched refs:props (Results 151 - 175 of 392) sorted by relevance

1234567891011>>

/linux-master/drivers/infiniband/hw/vmw_pvrdma/
H A Dpvrdma_verbs.h349 struct ib_device_attr *props,
352 struct ib_port_attr *props);
360 struct ib_device_modify *props);
362 int mask, struct ib_port_modify *props);
/linux-master/lib/xz/
H A Dxz_private.h122 * big enough, and XZ_OPTIONS_ERROR if props indicates something that this
126 uint8_t props);
H A Dxz_dec_lzma2.c832 static bool lzma_props(struct xz_dec_lzma2 *s, uint8_t props) argument
834 if (props > (4 * 5 + 4) * 9 + 8)
838 while (props >= 9 * 5) {
839 props -= 9 * 5;
846 while (props >= 9) {
847 props -= 9;
851 s->lzma.lc = props;
1165 XZ_EXTERN enum xz_ret xz_dec_lzma2_reset(struct xz_dec_lzma2 *s, uint8_t props) argument
1168 if (props > 39)
1171 s->dict.size = 2 + (props
[all...]
/linux-master/drivers/media/usb/dvb-usb/
H A Ddib0700.h67 const struct dvb_usb_device_properties *props,
H A Dm920x.c81 if (d->props.rc.legacy.rc_query || d->props.rc.core.rc_query) {
92 for (i = 0; i < d->props.num_adapters; i++)
93 flags |= d->adapter[i].props.fe[0].caps;
97 for (i = 0; i < d->props.num_adapters; i++) {
98 epi = d->adapter[i].props.fe[0].stream.endpoint - 0x81;
200 for (i = 0; i < d->props.rc.legacy.rc_map_size; i++)
201 if (rc5_data(&d->props.rc.legacy.rc_map_table[i]) == rc_state[1]) {
202 *event = d->props.rc.legacy.rc_map_table[i].keycode;
351 int ep = adap->props
472 m920x_identify_state(struct usb_device *udev, const struct dvb_usb_device_properties *props, const struct dvb_usb_device_description **desc, int *cold) argument
[all...]
/linux-master/drivers/gpu/drm/renesas/rcar-du/
H A Drcar_du_drv.h116 } props; member in struct:rcar_du_device
/linux-master/include/media/
H A Dv4l2-fwnode.h378 * @props: pointer to &struct v4l2_fwnode_device_properties where to store the
390 struct v4l2_fwnode_device_properties *props);
/linux-master/drivers/infiniband/sw/rdmavt/
H A Dsrq.c46 srq_init_attr->attr.max_sge > dev->dparms.props.max_srq_sge ||
48 srq_init_attr->attr.max_wr > dev->dparms.props.max_srq_wr)
90 if (dev->n_srqs_allocated == dev->dparms.props.max_srq) {
140 if ((attr->max_wr > dev->dparms.props.max_srq_wr) ||
/linux-master/drivers/gpu/drm/i915/gt/
H A Dselftest_engine_heartbeat.c395 engine->props.heartbeat_interval_ms = 0;
405 engine->props.heartbeat_interval_ms =
411 engine->props.heartbeat_interval_ms = 0;
427 engine->props.heartbeat_interval_ms =
/linux-master/drivers/hid/
H A Dhid-picolcd_lcd.c73 ldev->props.max_contrast = 0x0ff;
/linux-master/drivers/infiniband/hw/efa/
H A Defa_verbs.c210 struct ib_device_attr *props,
227 memset(props, 0, sizeof(*props));
228 props->max_mr_size = dev_attr->max_mr_pages * PAGE_SIZE;
229 props->page_size_cap = dev_attr->page_size_cap;
230 props->vendor_id = dev->pdev->vendor;
231 props->vendor_part_id = dev->pdev->device;
232 props->hw_ver = dev->pdev->subsystem_device;
233 props->max_qp = dev_attr->max_qp;
234 props
209 efa_query_device(struct ib_device *ibdev, struct ib_device_attr *props, struct ib_udata *udata) argument
284 efa_query_port(struct ib_device *ibdev, u32 port, struct ib_port_attr *props) argument
[all...]
/linux-master/net/netfilter/
H A Dxt_policy.c43 return MATCH_ADDR(saddr, smask, &x->props.saddr) &&
46 MATCH(mode, x->props.mode) &&
48 MATCH(reqid, x->props.reqid);
/linux-master/drivers/thermal/intel/int340x_thermal/
H A Dint3406_thermal.c37 #define ACPI_TO_RAW(v, d) (d->raw_bd->props.max_brightness * v / 100)
38 #define RAW_TO_ACPI(v, d) (v * 100 / d->raw_bd->props.max_brightness)
75 acpi_level = RAW_TO_ACPI(d->raw_bd->props.brightness, d);
/linux-master/net/xfrm/
H A Dxfrm_input.c247 if (x->props.flags & XFRM_STATE_DECAP_DSCP)
249 if (!(x->props.flags & XFRM_STATE_NOECN))
284 if (x->props.flags & XFRM_STATE_DECAP_DSCP)
286 if (!(x->props.flags & XFRM_STATE_NOECN))
341 switch (x->props.mode) {
367 switch (x->props.family) {
435 switch (x->props.mode) {
440 if (x->props.family == AF_INET)
442 if (x->props.family == AF_INET6)
494 family = x->props
[all...]
H A Dxfrm_replay.c17 if (!(x->props.flags & XFRM_STATE_ESN))
107 !(x->props.extra_flags & XFRM_SA_XFLAG_OSEQ_MAY_WRAP)) {
127 if (!x->props.replay_window)
137 if (diff >= x->props.replay_window) {
169 if (!x->props.replay_window)
175 if (diff < x->props.replay_window)
199 !(x->props.extra_flags & XFRM_SA_XFLAG_OSEQ_MAY_WRAP)) {
635 !(x->props.extra_flags & XFRM_SA_XFLAG_OSEQ_MAY_WRAP)) {
675 !(x->props.extra_flags & XFRM_SA_XFLAG_OSEQ_MAY_WRAP)) {
780 if (x->props
[all...]
/linux-master/drivers/input/touchscreen/
H A Deeti_ts.c30 struct touchscreen_properties props; member in struct:eeti_ts
61 touchscreen_report_pos(eeti->input, &eeti->props, x, y, false);
195 touchscreen_parse_properties(input, false, &eeti->props);
H A Dcy8ctma140.c46 struct touchscreen_properties props; member in struct:cy8ctma140
87 touchscreen_report_pos(ts->input, &ts->props, x, y, true);
237 touchscreen_parse_properties(input, true, &ts->props);
/linux-master/drivers/video/backlight/
H A Das3711_bl.c225 struct backlight_properties props = {.type = BACKLIGHT_RAW,}; local
229 props.max_brightness = max_brightness;
235 &as3711_bl_ops, &props);
241 bl->props.brightness = props.max_brightness;
/linux-master/drivers/power/supply/
H A Dmp2629_charger.c129 static struct mp2629_prop props[] = { variable in typeref:struct:mp2629_prop
182 val->intval = rval * props[fld].step + props[fld].min;
193 if (val->intval < props[fld].min || val->intval > props[fld].max)
196 rval = (val->intval - props[fld].min) / props[fld].step;
/linux-master/drivers/gpu/drm/
H A Ddrm_property.c148 * @props: enumeration lists with property values
164 const struct drm_prop_enum_list *props,
178 props[i].type,
179 props[i].name);
195 * @props: enumeration lists with property bitflags
196 * @num_props: size of the @props array
212 const struct drm_prop_enum_list *props,
226 if (!(supported_bits & (1ULL << props[i].type)))
230 props[i].type,
231 props[
162 drm_property_create_enum(struct drm_device *dev, u32 flags, const char *name, const struct drm_prop_enum_list *props, int num_values) argument
210 drm_property_create_bitmask(struct drm_device *dev, u32 flags, const char *name, const struct drm_prop_enum_list *props, int num_props, uint64_t supported_bits) argument
[all...]
/linux-master/drivers/mtd/nand/raw/
H A Dqcom_nandc.c207 #define dev_cmd_reg_addr(nandc, reg) ((nandc)->props->dev_cmd_reg_start + (reg))
358 * @props: properties of current NAND controller,
403 const struct qcom_nandc_props *props; member in struct:qcom_nand_controller
616 if (!nandc->props->is_bam)
682 if (!nandc->props->is_bam)
778 if (nandc->props->qpic_v2 && qcom_nandc_is_last_cw(ecc, cw))
783 if (nandc->props->qpic_v2 && qcom_nandc_is_last_cw(ecc, cw))
844 if (!nandc->props->qpic_v2)
1124 if (nandc->props->is_bam)
1168 if (nandc->props
[all...]
/linux-master/drivers/infiniband/hw/irdma/
H A Dverbs.c8 * @props: returning device attributes
12 struct ib_device_attr *props,
23 memset(props, 0, sizeof(*props));
24 addrconf_addr_eui48((u8 *)&props->sys_image_guid,
26 props->fw_ver = (u64)irdma_fw_major_ver(&rf->sc_dev) << 32 |
28 props->device_cap_flags = IB_DEVICE_MEM_WINDOW |
30 props->kernel_cap_flags = IBK_LOCAL_DMA_LKEY;
31 props->vendor_id = pcidev->vendor;
32 props
11 irdma_query_device(struct ib_device *ibdev, struct ib_device_attr *props, struct ib_udata *udata) argument
72 irdma_query_port(struct ib_device *ibdev, u32 port, struct ib_port_attr *props) argument
[all...]
/linux-master/drivers/platform/x86/
H A Dapple-gmux.c784 struct backlight_properties props; local
860 memset(&props, 0, sizeof(props));
861 props.type = BACKLIGHT_PLATFORM;
870 props.max_brightness = MMIO_GMUX_MAX_BRIGHTNESS;
872 props.max_brightness = gmux_read32(gmux_data, GMUX_PORT_MAX_BRIGHTNESS);
884 if (WARN_ON(props.max_brightness > GMUX_MAX_BRIGHTNESS))
885 props.max_brightness = GMUX_MAX_BRIGHTNESS;
888 gmux_data, &gmux_bl_ops, &props);
895 bdev->props
[all...]
/linux-master/drivers/net/ethernet/intel/ixgbevf/
H A Dipsec.c31 sam->family = xs->props.family;
33 if (xs->props.family == AF_INET6)
279 if (xs->props.mode != XFRM_MODE_TRANSPORT) {
320 if (xs->props.family == AF_INET6)
330 if (rsa.xs->props.family == AF_INET6)
438 if (xs->props.family == AF_INET) {
515 * as the static value found in xs->props.trailer_len (21).
/linux-master/drivers/iio/afe/
H A Diio-rescale.c486 .props = rescale_current_sense_amplifier_props,
490 .props = rescale_current_sense_shunt_props,
494 .props = rescale_voltage_divider_props,
498 .props = rescale_temp_sense_rtd_props,
502 .props = rescale_temp_transducer_props,
556 ret = rescale->cfg->props(dev, rescale);

Completed in 484 milliseconds

1234567891011>>