Home
last modified time | relevance | path

Searched refs:field (Results 401 – 425 of 2410) sorted by relevance

1...<<11121314151617181920>>...97

/openbmc/linux/drivers/media/platform/sunxi/sun8i-di/
H A Dsun8i-di.c79 if (ctx->field) { in deinterlace_device_run()
186 DEINTERLACE_FIELD_CTRL_FIELD_CNT(ctx->field)); in deinterlace_device_run()
253 ctx->field = ctx->first_field; in deinterlace_irq()
262 ctx->field = !ctx->first_field; in deinterlace_irq()
419 if (f->fmt.pix.field != V4L2_FIELD_NONE) in deinterlace_try_fmt_vid_cap()
420 f->fmt.pix.field = V4L2_FIELD_NONE; in deinterlace_try_fmt_vid_cap()
435 f->fmt.pix.field != V4L2_FIELD_INTERLACED) in deinterlace_try_fmt_vid_out()
436 f->fmt.pix.field = V4L2_FIELD_INTERLACED; in deinterlace_try_fmt_vid_out()
601 ctx->field = ctx->first_field; in deinterlace_start_streaming()
722 ctx->src_fmt.field = V4L2_FIELD_INTERLACED; in deinterlace_open()
[all …]
/openbmc/linux/Documentation/admin-guide/cgroup-v1/
H A Dblkio-controller.rst141 third field specifies the disk time allocated to group in
147 third field specifies the number of sectors transferred by the
154 device, third field specifies the operation type and the fourth field
161 device, third field specifies the operation type and the fourth field
174 specify the major and minor number of the device, third field
175 specifies the operation type and the fourth field specifies the
190 minor number of the device, third field specifies the operation type
191 and the fourth field specifies the io_wait_time in ns.
242 and minor number of the device and third field specifies the number
287 device, third field specifies the operation type and the fourth field
[all …]
/openbmc/linux/include/linux/
H A Dhiddev.h43 void hiddev_hid_event(struct hid_device *hid, struct hid_field *field,
51 static inline void hiddev_hid_event(struct hid_device *hid, struct hid_field *field, in hiddev_hid_event() argument
/openbmc/u-boot/arch/arm/mach-davinci/
H A Dpinmux.c42 if (pins[i].field >= PIN_MUX_NUM_FIELDS || in davinci_configure_pin_mux()
49 const int offset = pins[i].field * PIN_MUX_FIELD_SIZE; in davinci_configure_pin_mux()
/openbmc/qemu/docs/sphinx-static/
H A Dtheme_overrides.css81 .rst-content table.field-list th.field-name {
85 .rst-content table.field-list td.field-body {
122 caption, .wy-table caption, .rst-content table.field-list caption {
/openbmc/qemu/hw/net/
H A Dvmxnet3.c81 #define VMXNET3_READ_TX_QUEUE_DESCR8(_d, dpa, field) \ argument
87 #define VMXNET3_READ_TX_QUEUE_DESCR32(_d, dpa, field) \ argument
93 #define VMXNET3_READ_TX_QUEUE_DESCR64(_d, dpa, field) \ argument
99 #define VMXNET3_READ_RX_QUEUE_DESCR64(_d, dpa, field) \ argument
102 #define VMXNET3_READ_RX_QUEUE_DESCR32(_d, dpa, field) \ argument
112 #define VMXNET3_READ_DRV_SHARED64(_d, shpa, field) \ argument
115 #define VMXNET3_READ_DRV_SHARED32(_d, shpa, field) \ argument
121 #define VMXNET3_READ_DRV_SHARED16(_d, shpa, field) \ argument
124 #define VMXNET3_READ_DRV_SHARED8(_d, shpa, field) \ argument
127 #define VMXNET3_READ_DRV_SHARED(_d, shpa, field, b, l) \ argument
[all …]
/openbmc/linux/tools/perf/util/
H A Dsort.c2567 struct tep_format_field *field = hde->field; in update_dynamic_len() local
2668 field = hde->field; in __sort__hde_entry()
2717 field = hde->field; in __sort__hde_cmp()
2725 offset += field->offset + field->size; in __sort__hde_cmp()
2731 size = field->size; in __sort__hde_cmp()
2753 return hde_a->field == hde_b->field; in __sort__hde_equal()
2788 hde->field = field; in __alloc_dynamic_entry()
2864 *field = field_name; in parse_field_name()
2937 while (field) { in add_evsel_fields()
2942 field = field->next; in add_evsel_fields()
[all …]
/openbmc/pldm/libpldmresponder/examples/fru/
H A DCpu_General.json15 // D-Bus property to read and populate the FRU field
25 // D-Bus property to read and populate the FRU field
H A DBoard_General.json15 // D-Bus property to read and populate the FRU field
25 // D-Bus property to read and populate the FRU field
/openbmc/u-boot/doc/device-tree-bindings/gpio/
H A Dsnps,creg-gpio.txt18 - gpio-first-shift: Shift (in bits) of the first GPIO field in register
20 - gpio-activate-val: Value should be set in corresponding field to set
22 - gpio-deactivate-val: Value should be set in corresponding field to set
/openbmc/bmcweb/http/
H A Dhttp_request.hpp59 void addHeader(boost::beast::http::field key, std::string_view value) in addHeader()
88 std::string_view getHeaderValue(boost::beast::http::field key) const in getHeaderValue()
93 void clearHeader(boost::beast::http::field key) in clearHeader()
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/
H A Dwidgets.py252 for field in self.queryset.model.search_allowed_fields:
253 query = Q(**{field + '__icontains': st})
339 field = col['field_name']
340 if not field:
341 field = col['static_data_name']
342 if not field:
374 if "__" in field:
375 for subfield in field.split("__"):
/openbmc/linux/tools/lib/bpf/
H A Dlibbpf_internal.h316 #define OPTS_HAS(opts, field) \ argument
317 ((opts) && opts->sz >= offsetofend(typeof(*(opts)), field))
318 #define OPTS_GET(opts, field, fallback_value) \ argument
319 (OPTS_HAS(opts, field) ? (opts)->field : fallback_value)
320 #define OPTS_SET(opts, field, value) \ argument
322 if (OPTS_HAS(opts, field)) \
323 (opts)->field = value; \
/openbmc/linux/drivers/media/pci/saa7134/
H A Dsaa7134-video.c744 vbuf->field = dev->field; in buffer_prepare()
1043 f->fmt.pix.field = dev->field; in saa7134_g_fmt_vid_cap()
1061 enum v4l2_field field; in saa7134_try_fmt_vid_cap() local
1068 field = f->fmt.pix.field; in saa7134_try_fmt_vid_cap()
1072 if (V4L2_FIELD_ANY == field) { in saa7134_try_fmt_vid_cap()
1077 switch (field) { in saa7134_try_fmt_vid_cap()
1083 field = V4L2_FIELD_INTERLACED; in saa7134_try_fmt_vid_cap()
1087 f->fmt.pix.field = field; in saa7134_try_fmt_vid_cap()
1122 dev->field = f->fmt.pix.field; in saa7134_s_fmt_vid_cap()
1838 enum v4l2_field field; in saa7134_irq_video_done() local
[all …]
/openbmc/linux/drivers/dma/lgm/
H A Dlgm-dma.c265 u32 field; member
1201 hw_ds->field &= ~DESC_SOP; in ldma_prep_slave_sg()
1204 hw_ds->field &= ~DESC_EOP; in ldma_prep_slave_sg()
1209 hw_ds->field &= ~DESC_SOP; in ldma_prep_slave_sg()
1212 hw_ds->field &= ~DESC_EOP; in ldma_prep_slave_sg()
1215 hw_ds->field &= ~DESC_SOP; in ldma_prep_slave_sg()
1217 hw_ds->field &= ~DESC_EOP; in ldma_prep_slave_sg()
1220 hw_ds->field &= ~DESC_SOP; in ldma_prep_slave_sg()
1223 hw_ds->field &= ~DESC_EOP; in ldma_prep_slave_sg()
1234 hw_ds->field &= ~DESC_C; in ldma_prep_slave_sg()
[all …]
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
H A Dmain.h59 #define GFIELD(val, field) \ argument
60 (((val) >> field ## _S) & field ## _M)
61 #define SFIELD(val, field, bits) \ argument
62 (((val) & (~(field ## _M << field ## _S))) | \
63 ((unsigned)(bits) << field ## _S))
/openbmc/linux/drivers/media/common/saa7146/
H A Dsaa7146_fops.c89 if (vv->video_fmt.field == V4L2_FIELD_ALTERNATE) in saa7146_buffer_finish()
90 buf->vb.field = vv->last_field; in saa7146_buffer_finish()
91 else if (vv->video_fmt.field == V4L2_FIELD_ANY) in saa7146_buffer_finish()
92 buf->vb.field = (vv->video_fmt.height > vv->standard->v_max_out / 2) in saa7146_buffer_finish()
96 buf->vb.field = vv->video_fmt.field; in saa7146_buffer_finish()
301 fmt->field = V4L2_FIELD_INTERLACED; in saa7146_vv_init()
/openbmc/linux/drivers/media/test-drivers/vimc/
H A Dvimc-sensor.c40 .field = V4L2_FIELD_NONE,
115 vsensor->mbus_format.height, vsensor->mbus_format.field); in vimc_sensor_tpg_s_format()
120 tpg_s_field(&vsensor->tpg, vsensor->mbus_format.field, false); in vimc_sensor_tpg_s_format()
142 if (fmt->field == V4L2_FIELD_ANY || fmt->field == V4L2_FIELD_ALTERNATE) in vimc_sensor_adjust_fmt()
143 fmt->field = fmt_default.field; in vimc_sensor_adjust_fmt()
/openbmc/linux/drivers/hid/
H A Dhid-microsoft.c161 static int ms_surface_dial_quirk(struct hid_input *hi, struct hid_field *field, in ms_surface_dial_quirk() argument
183 struct hid_field *field, struct hid_usage *usage, in ms_input_mapping() argument
200 int ret = ms_surface_dial_quirk(hi, field, usage, bit, max); in ms_input_mapping()
210 struct hid_field *field, struct hid_usage *usage, in ms_input_mapped() argument
222 static int ms_event(struct hid_device *hdev, struct hid_field *field, in ms_event() argument
229 if (!(hdev->claimed & HID_CLAIMED_INPUT) || !field->hidinput || in ms_event()
233 input = field->hidinput->input; in ms_event()
/openbmc/linux/kernel/trace/
H A Dtrace_kprobe.c1074 const char *field; in __kprobe_event_gen_cmd_start() local
1076 field = va_arg(args, const char *); in __kprobe_event_gen_cmd_start()
1077 if (!field) in __kprobe_event_gen_cmd_start()
1085 arg.str = field; in __kprobe_event_gen_cmd_start()
1125 const char *field; in __kprobe_event_add_fields() local
1127 field = va_arg(args, const char *); in __kprobe_event_add_fields()
1128 if (!field) in __kprobe_event_add_fields()
1136 arg.str = field; in __kprobe_event_add_fields()
1446 (u8 *)&field[1], field) < 0) in print_kprobe_event()
1481 (u8 *)&field[1], field) < 0) in print_kretprobe_event()
[all …]
H A Dtrace_mmiotrace.c168 struct trace_mmiotrace_rw *field; in mmio_print_rw() local
175 trace_assign_type(field, entry); in mmio_print_rw()
176 rw = &field->rw; in mmio_print_rw()
213 struct trace_mmiotrace_map *field; in mmio_print_map() local
220 trace_assign_type(field, entry); in mmio_print_map()
221 m = &field->map; in mmio_print_map()
/openbmc/linux/tools/testing/selftests/net/
H A Drxtimestamp.c231 #define VALIDATE(field) \ in do_recv() argument
233 if (expected.field != actual.field) { \ in do_recv()
234 if (expected.field) \ in do_recv()
235 error(0, 0, "Expected " #field " to be set."); \ in do_recv()
238 "Expected " #field " to not be set."); \ in do_recv()
/openbmc/linux/tools/objtool/include/objtool/
H A Delf.h221 #define __get_reloc_field(reloc, field) \ argument
224 ((Elf32_Rela *)reloc_rel(reloc))->field : \
225 ((Elf64_Rela *)reloc_rel(reloc))->field; \
228 #define __set_reloc_field(reloc, field, val) \ argument
231 ((Elf32_Rela *)reloc_rel(reloc))->field = val; \
233 ((Elf64_Rela *)reloc_rel(reloc))->field = val; \
/openbmc/openbmc/poky/scripts/lib/build_perf/
H A Dreport.py67 for field in rusage_fields:
68 if 'time' in field:
69 rusage[field] = float(subel.attrib[field])
71 rusage[field] = int(subel.attrib[field])
/openbmc/linux/net/tls/
H A Dtls.h47 #define __TLS_INC_STATS(net, field) \ argument
48 __SNMP_INC_STATS((net)->mib.tls_statistics, field)
49 #define TLS_INC_STATS(net, field) \ argument
50 SNMP_INC_STATS((net)->mib.tls_statistics, field)
51 #define TLS_DEC_STATS(net, field) \ argument
52 SNMP_DEC_STATS((net)->mib.tls_statistics, field)

1...<<11121314151617181920>>...97