/Linux-v5.4/arch/x86/kvm/vmx/ |
D | vmcs12.c | 7 #define FIELD(number, name) [ROL16(number, 6)] = VMCS12_OFFSET(name) macro 9 FIELD(number, name), \ 13 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id), 14 FIELD(POSTED_INTR_NV, posted_intr_nv), 15 FIELD(GUEST_ES_SELECTOR, guest_es_selector), 16 FIELD(GUEST_CS_SELECTOR, guest_cs_selector), 17 FIELD(GUEST_SS_SELECTOR, guest_ss_selector), 18 FIELD(GUEST_DS_SELECTOR, guest_ds_selector), 19 FIELD(GUEST_FS_SELECTOR, guest_fs_selector), 20 FIELD(GUEST_GS_SELECTOR, guest_gs_selector), [all …]
|
D | ops.h | 15 asmlinkage void vmread_error(unsigned long field, bool fault); 16 void vmwrite_error(unsigned long field, unsigned long value); 22 static __always_inline void vmcs_check16(unsigned long field) in vmcs_check16() argument 24 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000, in vmcs_check16() 25 "16-bit accessor invalid for 64-bit field"); in vmcs_check16() 26 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001, in vmcs_check16() 27 "16-bit accessor invalid for 64-bit high field"); in vmcs_check16() 28 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000, in vmcs_check16() 29 "16-bit accessor invalid for 32-bit high field"); in vmcs_check16() 30 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000, in vmcs_check16() [all …]
|
/Linux-v5.4/drivers/scsi/aic7xxx/ |
D | aic79xx.reg | 102 field DST_MODE 0x70 103 field SRC_MODE 0x07 117 field HWERRINT 0x80 118 field BRKADRINT 0x40 119 field SWTMINT 0x20 120 field PCIINT 0x10 121 field SCSIINT 0x08 122 field SEQINT 0x04 123 field CMDCMPLT 0x02 124 field SPLTINT 0x01 [all …]
|
D | aic7xxx.reg | 71 field TEMODE 0x80 72 field ENSELO 0x40 73 field ENSELI 0x20 74 field ENRSELI 0x10 75 field ENAUTOATNO 0x08 76 field ENAUTOATNI 0x04 77 field ENAUTOATNP 0x02 78 field SCSIRSTO 0x01 88 field DFON 0x80 89 field DFPEXP 0x40 [all …]
|
D | queue.h | 127 #define SLIST_FOREACH(var, head, field) \ argument 130 (var) = SLIST_NEXT((var), field)) 136 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument 137 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \ 138 SLIST_NEXT((slistelm), field) = (elm); \ 141 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument 142 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \ 146 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument 148 #define SLIST_REMOVE(head, elm, type, field) do { \ argument 150 SLIST_REMOVE_HEAD((head), field); \ [all …]
|
/Linux-v5.4/arch/arm/mach-sa1100/include/mach/ |
D | bitfield.h | 29 * The macro "Fld" encodes a bit field, given its size and its shift value 35 * field's mask is cumbersome and might break the assembler (255-character 39 * Size Size of the bit field, in number of bits. 40 * Shft Shift value of the bit field with respect to bit 0. 43 * Fld Encoded bit field. 55 * bit field. 58 * Field Encoded bit field (using the macro "Fld"). 61 * FSize Size of the bit field, in number of bits. 62 * FShft Shift value of the bit field with respect to bit 0. 63 * FMsk Mask for the bit field. [all …]
|
/Linux-v5.4/arch/arm/mach-pxa/include/mach/ |
D | bitfield.h | 30 * The macro "Fld" encodes a bit field, given its size and its shift value 36 * field's mask is cumbersome and might break the assembler (255-character 40 * Size Size of the bit field, in number of bits. 41 * Shft Shift value of the bit field with respect to bit 0. 44 * Fld Encoded bit field. 56 * bit field. 59 * Field Encoded bit field (using the macro "Fld"). 62 * FSize Size of the bit field, in number of bits. 63 * FShft Shift value of the bit field with respect to bit 0. 64 * FMsk Mask for the bit field. [all …]
|
/Linux-v5.4/Documentation/media/uapi/v4l/ |
D | field-order.rst | 13 Field Order 20 odd and even field are transmitted, and due to a small delay between 30 object on screen may well move between one field and the next. For 32 which field of a frame is older, the *temporal order*. 34 When the driver provides or accepts images field by field rather than 37 even) fields, the *spatial order*: The first line of the top field is 39 field is the second line of that frame. 42 whether a frame commences with the top or bottom field is pointless. Any 48 Counter to intuition the top field is not necessarily the older field. 49 Whether the older field contains the top or bottom lines is a convention [all …]
|
/Linux-v5.4/arch/unicore32/include/mach/ |
D | regs-dmac.h | 57 #define DMAC_CHANNEL(ch) FIELD(1, 1, (ch)) 59 #define DMAC_CONTROL_SIZE_BYTE(v) (FIELD((v), 12, 14) | \ 60 FIELD(0, 3, 9) | FIELD(0, 3, 6)) 61 #define DMAC_CONTROL_SIZE_HWORD(v) (FIELD((v) >> 1, 12, 14) | \ 62 FIELD(1, 3, 9) | FIELD(1, 3, 6)) 63 #define DMAC_CONTROL_SIZE_WORD(v) (FIELD((v) >> 2, 12, 14) | \ 64 FIELD(2, 3, 9) | FIELD(2, 3, 6)) 65 #define DMAC_CONTROL_DI FIELD(1, 1, 13) 66 #define DMAC_CONTROL_SI FIELD(1, 1, 12) 67 #define DMAC_CONTROL_BURST_1BYTE (FIELD(0, 3, 3) | FIELD(0, 3, 0)) [all …]
|
D | regs-pm.h | 78 #define PM_PMCR_SFB FIELD(1, 1, 0) 79 #define PM_PMCR_IFB FIELD(1, 1, 1) 80 #define PM_PMCR_CFBSYS FIELD(1, 1, 2) 81 #define PM_PMCR_CFBDDR FIELD(1, 1, 3) 82 #define PM_PMCR_CFBVGA FIELD(1, 1, 4) 83 #define PM_PMCR_CFBDIVBCLK FIELD(1, 1, 5) 88 #define PM_PWER_GPIOHIGH FIELD(1, 1, 8) 92 #define PM_PWER_RTC FIELD(1, 1, 31) 94 #define PM_PCGR_BCLK64DDR FIELD(1, 1, 0) 95 #define PM_PCGR_BCLK64VGA FIELD(1, 1, 1) [all …]
|
D | regs-sdc.h | 73 #define SDC_CCR_CLKEN FIELD(1, 1, 2) 77 #define SDC_CCR_PDIV(v) FIELD((v), 8, 8) 82 #define SDC_SRR_ENABLE FIELD(0, 1, 0) 86 #define SDC_SRR_DISABLE FIELD(1, 1, 0) 95 #define SDC_COMMAND_RESTYPE_NONE FIELD(0, 2, 0) 99 #define SDC_COMMAND_RESTYPE_LONG FIELD(1, 2, 0) 103 #define SDC_COMMAND_RESTYPE_SHORT FIELD(2, 2, 0) 107 #define SDC_COMMAND_RESTYPE_SHORTBUSY FIELD(3, 2, 0) 111 #define SDC_COMMAND_DATAREADY FIELD(1, 1, 2) 112 #define SDC_COMMAND_CMDEN FIELD(1, 1, 3) [all …]
|
D | regs-umal.h | 136 #define UMAL_CFG1_TXENABLE FIELD(1, 1, 0) 137 #define UMAL_CFG1_RXENABLE FIELD(1, 1, 2) 138 #define UMAL_CFG1_TXFLOWCTL FIELD(1, 1, 4) 139 #define UMAL_CFG1_RXFLOWCTL FIELD(1, 1, 5) 140 #define UMAL_CFG1_CONFLPBK FIELD(1, 1, 8) 141 #define UMAL_CFG1_RESET FIELD(1, 1, 31) 147 #define UMAL_CFG2_FULLDUPLEX FIELD(1, 1, 0) 148 #define UMAL_CFG2_CRCENABLE FIELD(1, 1, 1) 149 #define UMAL_CFG2_PADCRC FIELD(1, 1, 2) 150 #define UMAL_CFG2_LENGTHCHECK FIELD(1, 1, 4) [all …]
|
/Linux-v5.4/drivers/gpu/drm/amd/amdgpu/ |
D | navi10_sdma_pkt_open.h | 76 /*define for op field*/ 82 /*define for sub_op field*/ 93 /*define for op field*/ 99 /*define for sub_op field*/ 105 /*define for encrypt field*/ 111 /*define for tmz field*/ 117 /*define for backwards field*/ 123 /*define for broadcast field*/ 130 /*define for count field*/ 137 /*define for dst_sw field*/ [all …]
|
D | tonga_sdma_pkt_open.h | 53 /*define for op field*/ 59 /*define for sub_op field*/ 70 /*define for op field*/ 76 /*define for sub_op field*/ 82 /*define for broadcast field*/ 89 /*define for count field*/ 96 /*define for dst_sw field*/ 102 /*define for dst_ha field*/ 108 /*define for src_sw field*/ 114 /*define for src_ha field*/ [all …]
|
D | vega10_sdma_pkt_open.h | 68 /*define for op field*/ 74 /*define for sub_op field*/ 86 /*define for op field*/ 92 /*define for sub_op field*/ 98 /*define for encrypt field*/ 104 /*define for tmz field*/ 110 /*define for broadcast field*/ 117 /*define for count field*/ 124 /*define for dst_sw field*/ 130 /*define for src_sw field*/ [all …]
|
D | iceland_sdma_pkt_open.h | 53 /*define for op field*/ 59 /*define for sub_op field*/ 70 /*define for op field*/ 76 /*define for sub_op field*/ 82 /*define for broadcast field*/ 89 /*define for count field*/ 96 /*define for dst_sw field*/ 102 /*define for dst_ha field*/ 108 /*define for src_sw field*/ 114 /*define for src_ha field*/ [all …]
|
/Linux-v5.4/arch/s390/include/asm/ |
D | scsw.h | 231 * scsw_key - return scsw key field 234 * Return the value of the key field of the specified scsw, regardless of 246 * scsw_eswf - return scsw eswf field 249 * Return the value of the eswf field of the specified scsw, regardless of 261 * scsw_cc - return scsw cc field 264 * Return the value of the cc field of the specified scsw, regardless of 276 * scsw_ectl - return scsw ectl field 279 * Return the value of the ectl field of the specified scsw, regardless of 291 * scsw_pno - return scsw pno field 294 * Return the value of the pno field of the specified scsw, regardless of [all …]
|
/Linux-v5.4/include/linux/ |
D | bitfield.h | 51 _pfx "value too large for the field"); \ 59 * FIELD_FIT() - check if value fits in the field 60 * @_mask: shifted mask defining the field's length and position 61 * @_val: value to test against the field 73 * @_mask: shifted mask defining the field's length and position 74 * @_val: value to put in the field 87 * @_mask: shifted mask defining the field's length and position 90 * FIELD_GET() extracts the field specified by @_mask from the 103 static __always_inline u64 field_multiplier(u64 field) in field_multiplier() argument 105 if ((field | (field - 1)) & ((field | (field - 1)) + 1)) in field_multiplier() [all …]
|
/Linux-v5.4/include/net/ |
D | snmp.h | 52 /* mibs[] must be first field of struct ipstats_mib */ 121 #define __SNMP_INC_STATS(mib, field) \ argument 122 __this_cpu_inc(mib->mibs[field]) 124 #define SNMP_INC_STATS_ATOMIC_LONG(mib, field) \ argument 125 atomic_long_inc(&mib->mibs[field]) 127 #define SNMP_INC_STATS(mib, field) \ argument 128 this_cpu_inc(mib->mibs[field]) 130 #define SNMP_DEC_STATS(mib, field) \ argument 131 this_cpu_dec(mib->mibs[field]) 133 #define __SNMP_ADD_STATS(mib, field, addend) \ argument [all …]
|
/Linux-v5.4/drivers/gpu/drm/amd/powerplay/hwmgr/ |
D | smu_helper.h | 97 extern uint32_t phm_set_field_to_u32(u32 offset, u32 original_data, u32 field, u32 size); 124 #define PHM_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT argument 125 #define PHM_FIELD_MASK(reg, field) reg##__##field##_MASK argument 127 #define PHM_SET_FIELD(origval, reg, field, fieldval) \ argument 128 (((origval) & ~PHM_FIELD_MASK(reg, field)) | \ 129 (PHM_FIELD_MASK(reg, field) & ((fieldval) << PHM_FIELD_SHIFT(reg, field)))) 131 #define PHM_GET_FIELD(value, reg, field) \ argument 132 (((value) & PHM_FIELD_MASK(reg, field)) >> \ 133 PHM_FIELD_SHIFT(reg, field)) 138 #define PHM_READ_FIELD(device, reg, field) \ argument [all …]
|
/Linux-v5.4/drivers/infiniband/hw/mlx5/ |
D | cong.c | 93 static u32 mlx5_get_cc_param_val(void *field, int offset) in mlx5_get_cc_param_val() argument 97 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 100 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 103 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 106 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 109 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 112 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 115 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 118 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() 121 return MLX5_GET(cong_control_r_roce_ecn_rp, field, in mlx5_get_cc_param_val() [all …]
|
/Linux-v5.4/drivers/xen/xen-pciback/ |
D | conf_space.c | 45 const struct config_field *field = entry->field; in DEFINE_PCI_CONFIG() local 49 switch (field->size) { in DEFINE_PCI_CONFIG() 51 if (field->u.b.read) in DEFINE_PCI_CONFIG() 52 ret = field->u.b.read(dev, offset, (u8 *) value, in DEFINE_PCI_CONFIG() 56 if (field->u.w.read) in DEFINE_PCI_CONFIG() 57 ret = field->u.w.read(dev, offset, (u16 *) value, in DEFINE_PCI_CONFIG() 61 if (field->u.dw.read) in DEFINE_PCI_CONFIG() 62 ret = field->u.dw.read(dev, offset, value, entry->data); in DEFINE_PCI_CONFIG() 73 const struct config_field *field = entry->field; in conf_space_write() local 75 switch (field->size) { in conf_space_write() [all …]
|
/Linux-v5.4/tools/lib/traceevent/Documentation/ |
D | libtraceevent-field_find.txt | 7 Search for a field in an event. 22 These functions search for a field with given name in an event. The field 23 returned can be used to find the field content from within a data record. 25 The _tep_find_common_field()_ function searches for a common field with _name_ 28 The _tep_find_field()_ function searches for an event specific field with 31 The _tep_find_any_field()_ function searches for any field with _name_ in the 37 functions return a pointer to the found field, or NULL in case there is no field 48 struct tep_format_field *field; 56 field = tep_find_common_field(event, "common_pid"); 57 if (field == NULL) { [all …]
|
/Linux-v5.4/kernel/trace/ |
D | trace_output.c | 29 struct bputs_entry *field; in trace_print_bputs_msg_only() local 31 trace_assign_type(field, entry); in trace_print_bputs_msg_only() 33 trace_seq_puts(s, field->str); in trace_print_bputs_msg_only() 42 struct bprint_entry *field; in trace_print_bprintk_msg_only() local 44 trace_assign_type(field, entry); in trace_print_bprintk_msg_only() 46 trace_seq_bprintf(s, field->fmt, field->buf); in trace_print_bprintk_msg_only() 55 struct print_entry *field; in trace_print_printk_msg_only() local 57 trace_assign_type(field, entry); in trace_print_printk_msg_only() 59 trace_seq_puts(s, field->buf); in trace_print_printk_msg_only() 420 * @entry: The trace entry field from the ring buffer [all …]
|
/Linux-v5.4/sound/soc/codecs/ |
D | tscs42xx.h | 121 /* Field Offsets */ 124 /* Field Masks */ 127 /* Field Values */ 144 /* Field Offsets */ 147 /* Field Masks */ 150 /* Field Values */ 167 /* Field Offsets */ 170 /* Field Masks */ 173 /* Field Values */ 192 /* Field Offsets */ [all …]
|