Home
last modified time | relevance | path

Searched defs:value (Results 1 – 25 of 5649) sorted by relevance

12345678910>>...226

/kernel/linux/linux-5.10/drivers/gpu/drm/meson/
Dmeson_overlay.c41 #define VD_X_START(value) FIELD_PREP(GENMASK(14, 0), value) argument
42 #define VD_X_END(value) FIELD_PREP(GENMASK(30, 16), value) argument
45 #define VD_Y_START(value) FIELD_PREP(GENMASK(12, 0), value) argument
46 #define VD_Y_END(value) FIELD_PREP(GENMASK(28, 16), value) argument
49 #define VD_COLOR_MAP(value) FIELD_PREP(GENMASK(1, 0), value) argument
52 #define VD_HORZ_Y_C_RATIO(value) FIELD_PREP(GENMASK(22, 21), value) argument
55 #define VD_VERT_INITIAL_PHASE(value) FIELD_PREP(GENMASK(11, 8), value) argument
56 #define VD_VERT_PHASE_STEP(value) FIELD_PREP(GENMASK(7, 1), value) argument
60 #define VD_H_END(value) FIELD_PREP(GENMASK(11, 0), value) argument
61 #define VD_H_START(value) FIELD_PREP(GENMASK(27, 16), \ argument
[all …]
/kernel/linux/linux-5.10/arch/mips/include/asm/
Dunaligned-emul.h8 #define _LoadHW(addr, value, res, type) \ argument
31 #define _LoadW(addr, value, res, type) \ argument
53 #define _LoadW(addr, value, res, type) \ argument
88 #define _LoadHWU(addr, value, res, type) \ argument
113 #define _LoadWU(addr, value, res, type) \ argument
135 #define _LoadDW(addr, value, res) \ argument
157 #define _LoadWU(addr, value, res, type) \ argument
190 #define _LoadDW(addr, value, res) \ argument
242 #define _StoreHW(addr, value, res, type) \ argument
266 #define _StoreW(addr, value, res, type) \ argument
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtw88/
Dtx.h12 #define SET_TX_DESC_TXPKTSIZE(txdesc, value) \ argument
14 #define SET_TX_DESC_OFFSET(txdesc, value) \ argument
16 #define SET_TX_DESC_PKT_OFFSET(txdesc, value) \ argument
18 #define SET_TX_DESC_QSEL(txdesc, value) \ argument
20 #define SET_TX_DESC_BMC(txdesc, value) \ argument
22 #define SET_TX_DESC_RATE_ID(txdesc, value) \ argument
24 #define SET_TX_DESC_DATARATE(txdesc, value) \ argument
26 #define SET_TX_DESC_DISDATAFB(txdesc, value) \ argument
28 #define SET_TX_DESC_USE_RATE(txdesc, value) \ argument
30 #define SET_TX_DESC_SEC_TYPE(txdesc, value) \ argument
[all …]
Dfw.h246 #define SET_PKT_H2C_CATEGORY(h2c_pkt, value) \ argument
248 #define SET_PKT_H2C_CMD_ID(h2c_pkt, value) \ argument
250 #define SET_PKT_H2C_SUB_CMD_ID(h2c_pkt, value) \ argument
252 #define SET_PKT_H2C_TOTAL_LEN(h2c_pkt, value) \ argument
262 #define FW_OFFLOAD_H2C_SET_SEQ_NUM(h2c_pkt, value) \ argument
264 #define GENERAL_INFO_SET_FW_TX_BOUNDARY(h2c_pkt, value) \ argument
267 #define PHYDM_INFO_SET_REF_TYPE(h2c_pkt, value) \ argument
269 #define PHYDM_INFO_SET_RF_TYPE(h2c_pkt, value) \ argument
271 #define PHYDM_INFO_SET_CUT_VER(h2c_pkt, value) \ argument
273 #define PHYDM_INFO_SET_RX_ANT_STATUS(h2c_pkt, value) \ argument
[all …]
/kernel/liteos_m/testsuites/unittest/posix/src/stdlib/
Datoi_test.c75 int value = atoi("2147483647"); variable
91 int value = atoi("-2147483648"); variable
107 int value = atoi("100"); variable
123 int value = atoi("2147483648"); variable
139 int value = atoi("-2147483649"); variable
155 int value = atoi("+100"); variable
171 int value = atoi("-100"); variable
187 int value = atoi("+-100"); variable
203 int value = atoi("12+-100"); variable
219 int value = atoi("21474836470"); variable
Datol_test.c75 const long value = atol("2147483647"); variable
91 const long value = atol("-2147483648"); variable
107 const long value = atol("100"); variable
123 const long value = atol("2147483648"); variable
139 const long value = atol("-2147483649"); variable
155 const long value = atol("+100"); variable
171 const long value = atol("-100"); variable
187 long value = atol("+-100"); variable
203 long value = atol("12+-100"); variable
Datoll_test.c76 long long value = atoll("9223372036854775807"); variable
92 long long value = atoll("-9223372036854775808"); variable
108 long long value = atoll("100"); variable
124 long long value = atoll("9223372036854775808"); variable
140 long long value = atoll("-9223372036854775809"); variable
157 long long value = atoll("+100"); variable
173 long long value = atoll("-100"); variable
189 long long value = atoll("+-100"); variable
205 long long value = atoll("12+-100"); variable
/kernel/linux/linux-4.19/drivers/video/fbdev/riva/
Dnvreg.h34 #define SetBF(mask,value) ((value) << (0?mask)) argument
37 #define MaskAndSetBF(var,mask,value) (var)=(((var)&(~MASKEXPAND(mask)) \ argument
47 #define DEVICE_WRITE(device,reg,value) DEVICE_ACCESS(device,reg)=(value) argument
51 #define DEVICE_DEF(device,mask,value) \ argument
53 #define DEVICE_VALUE(device,mask,value) SetBF(NV_##device##_##mask,value) argument
56 #define PDAC_Write(reg,value) DEVICE_WRITE(PDAC,reg,value) argument
59 #define PDAC_Def(mask,value) DEVICE_DEF(PDAC,mask,value) argument
60 #define PDAC_Val(mask,value) DEVICE_VALUE(PDAC,mask,value) argument
63 #define PFB_Write(reg,value) DEVICE_WRITE(PFB,reg,value) argument
66 #define PFB_Def(mask,value) DEVICE_DEF(PFB,mask,value) argument
[all …]
/kernel/linux/linux-5.10/drivers/video/fbdev/riva/
Dnvreg.h34 #define SetBF(mask,value) ((value) << (0?mask)) argument
37 #define MaskAndSetBF(var,mask,value) (var)=(((var)&(~MASKEXPAND(mask)) \ argument
47 #define DEVICE_WRITE(device,reg,value) DEVICE_ACCESS(device,reg)=(value) argument
51 #define DEVICE_DEF(device,mask,value) \ argument
53 #define DEVICE_VALUE(device,mask,value) SetBF(NV_##device##_##mask,value) argument
56 #define PDAC_Write(reg,value) DEVICE_WRITE(PDAC,reg,value) argument
59 #define PDAC_Def(mask,value) DEVICE_DEF(PDAC,mask,value) argument
60 #define PDAC_Val(mask,value) DEVICE_VALUE(PDAC,mask,value) argument
63 #define PFB_Write(reg,value) DEVICE_WRITE(PFB,reg,value) argument
66 #define PFB_Def(mask,value) DEVICE_DEF(PFB,mask,value) argument
[all …]
/kernel/linux/linux-4.19/arch/mips/cavium-octeon/crypto/
Docteon-crypto.h31 #define write_octeon_64bit_hash_dword(value, index) \ argument
57 #define write_octeon_64bit_block_dword(value, index) \ argument
68 #define octeon_md5_start(value) \ argument
79 #define octeon_sha1_start(value) \ argument
90 #define octeon_sha256_start(value) \ argument
105 #define write_octeon_64bit_hash_sha512(value, index) \ argument
131 #define write_octeon_64bit_block_sha512(value, index) \ argument
142 #define octeon_sha512_start(value) \ argument
153 #define octeon_sha1_start(value) \ argument
164 #define octeon_sha256_start(value) \ argument
[all …]
/kernel/linux/linux-5.10/arch/mips/cavium-octeon/crypto/
Docteon-crypto.h31 #define write_octeon_64bit_hash_dword(value, index) \ argument
57 #define write_octeon_64bit_block_dword(value, index) \ argument
68 #define octeon_md5_start(value) \ argument
79 #define octeon_sha1_start(value) \ argument
90 #define octeon_sha256_start(value) \ argument
105 #define write_octeon_64bit_hash_sha512(value, index) \ argument
131 #define write_octeon_64bit_block_sha512(value, index) \ argument
142 #define octeon_sha512_start(value) \ argument
153 #define octeon_sha1_start(value) \ argument
164 #define octeon_sha256_start(value) \ argument
[all …]
/kernel/linux/linux-4.19/arch/mips/kernel/
Dunaligned.c111 #define _LoadHW(addr, value, res, type) \ argument
134 #define _LoadW(addr, value, res, type) \ argument
156 #define _LoadW(addr, value, res, type) \ argument
191 #define _LoadHWU(addr, value, res, type) \ argument
216 #define _LoadWU(addr, value, res, type) \ argument
238 #define _LoadDW(addr, value, res) \ argument
260 #define _LoadWU(addr, value, res, type) \ argument
293 #define _LoadDW(addr, value, res) \ argument
345 #define _StoreHW(addr, value, res, type) \ argument
369 #define _StoreW(addr, value, res, type) \ argument
[all …]
/kernel/linux/linux-4.19/arch/mips/include/asm/octeon/
Dcvmx-fau.h62 int64_t value:63; member
72 int32_t value:31; member
82 int16_t value:15; member
92 int8_t value:7; member
153 int64_t value) in __cvmx_fau_atomic_address()
171 int64_t value) in cvmx_fau_fetch_and_add64()
186 int32_t value) in cvmx_fau_fetch_and_add32()
201 int16_t value) in cvmx_fau_fetch_and_add16()
214 static inline int8_t cvmx_fau_fetch_and_add8(cvmx_fau_reg_8_t reg, int8_t value) in cvmx_fau_fetch_and_add8()
233 cvmx_fau_tagwait_fetch_and_add64(cvmx_fau_reg_64_t reg, int64_t value) in cvmx_fau_tagwait_fetch_and_add64()
[all …]
/kernel/linux/linux-5.10/arch/mips/include/asm/octeon/
Dcvmx-fau.h62 int64_t value:63; member
72 int32_t value:31; member
82 int16_t value:15; member
92 int8_t value:7; member
153 int64_t value) in __cvmx_fau_atomic_address()
171 int64_t value) in cvmx_fau_fetch_and_add64()
186 int32_t value) in cvmx_fau_fetch_and_add32()
201 int16_t value) in cvmx_fau_fetch_and_add16()
214 static inline int8_t cvmx_fau_fetch_and_add8(cvmx_fau_reg_8_t reg, int8_t value) in cvmx_fau_fetch_and_add8()
233 cvmx_fau_tagwait_fetch_and_add64(cvmx_fau_reg_64_t reg, int64_t value) in cvmx_fau_tagwait_fetch_and_add64()
[all …]
/kernel/linux/linux-4.19/drivers/net/ethernet/sfc/
Dio.h82 static inline void _efx_writeq(struct efx_nic *efx, __le64 value, in _efx_writeq()
93 static inline void _efx_writed(struct efx_nic *efx, __le32 value, in _efx_writed()
104 static inline void efx_writeo(struct efx_nic *efx, const efx_oword_t *value, in efx_writeo()
129 const efx_qword_t *value, unsigned int index) in efx_sram_writeq()
150 static inline void efx_writed(struct efx_nic *efx, const efx_dword_t *value, in efx_writed()
162 static inline void efx_reado(struct efx_nic *efx, efx_oword_t *value, in efx_reado()
181 efx_qword_t *value, unsigned int index) in efx_sram_readq()
201 static inline void efx_readd(struct efx_nic *efx, efx_dword_t *value, in efx_readd()
212 efx_writeo_table(struct efx_nic *efx, const efx_oword_t *value, in efx_writeo_table()
219 static inline void efx_reado_table(struct efx_nic *efx, efx_oword_t *value, in efx_reado_table()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/falcon/
Dio.h67 static inline void _ef4_writeq(struct ef4_nic *efx, __le64 value, in _ef4_writeq()
78 static inline void _ef4_writed(struct ef4_nic *efx, __le32 value, in _ef4_writed()
89 static inline void ef4_writeo(struct ef4_nic *efx, const ef4_oword_t *value, in ef4_writeo()
113 const ef4_qword_t *value, unsigned int index) in ef4_sram_writeq()
133 static inline void ef4_writed(struct ef4_nic *efx, const ef4_dword_t *value, in ef4_writed()
145 static inline void ef4_reado(struct ef4_nic *efx, ef4_oword_t *value, in ef4_reado()
164 ef4_qword_t *value, unsigned int index) in ef4_sram_readq()
184 static inline void ef4_readd(struct ef4_nic *efx, ef4_dword_t *value, in ef4_readd()
195 ef4_writeo_table(struct ef4_nic *efx, const ef4_oword_t *value, in ef4_writeo_table()
202 static inline void ef4_reado_table(struct ef4_nic *efx, ef4_oword_t *value, in ef4_reado_table()
[all …]
/kernel/linux/linux-4.19/drivers/net/ethernet/sfc/falcon/
Dio.h70 static inline void _ef4_writeq(struct ef4_nic *efx, __le64 value, in _ef4_writeq()
81 static inline void _ef4_writed(struct ef4_nic *efx, __le32 value, in _ef4_writed()
92 static inline void ef4_writeo(struct ef4_nic *efx, const ef4_oword_t *value, in ef4_writeo()
117 const ef4_qword_t *value, unsigned int index) in ef4_sram_writeq()
138 static inline void ef4_writed(struct ef4_nic *efx, const ef4_dword_t *value, in ef4_writed()
150 static inline void ef4_reado(struct ef4_nic *efx, ef4_oword_t *value, in ef4_reado()
169 ef4_qword_t *value, unsigned int index) in ef4_sram_readq()
189 static inline void ef4_readd(struct ef4_nic *efx, ef4_dword_t *value, in ef4_readd()
200 ef4_writeo_table(struct ef4_nic *efx, const ef4_oword_t *value, in ef4_writeo_table()
207 static inline void ef4_reado_table(struct ef4_nic *efx, ef4_oword_t *value, in ef4_reado_table()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/
Dio.h84 static inline void _efx_writeq(struct efx_nic *efx, __le64 value, in _efx_writeq()
95 static inline void _efx_writed(struct efx_nic *efx, __le32 value, in _efx_writed()
106 static inline void efx_writeo(struct efx_nic *efx, const efx_oword_t *value, in efx_writeo()
130 const efx_qword_t *value, unsigned int index) in efx_sram_writeq()
150 static inline void efx_writed(struct efx_nic *efx, const efx_dword_t *value, in efx_writed()
162 static inline void efx_reado(struct efx_nic *efx, efx_oword_t *value, in efx_reado()
181 efx_qword_t *value, unsigned int index) in efx_sram_readq()
201 static inline void efx_readd(struct efx_nic *efx, efx_dword_t *value, in efx_readd()
212 efx_writeo_table(struct efx_nic *efx, const efx_oword_t *value, in efx_writeo_table()
219 static inline void efx_reado_table(struct efx_nic *efx, efx_oword_t *value, in efx_reado_table()
[all …]
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dce110/
Ddce110_opp_csc_v.c127 uint32_t value = 0; in program_color_matrix_v() local
145 uint32_t value = 0; in program_color_matrix_v() local
163 uint32_t value = 0; in program_color_matrix_v() local
181 uint32_t value = 0; in program_color_matrix_v() local
199 uint32_t value = 0; in program_color_matrix_v() local
217 uint32_t value = 0; in program_color_matrix_v() local
241 uint32_t value = 0; in program_color_matrix_v() local
259 uint32_t value = 0; in program_color_matrix_v() local
277 uint32_t value = 0; in program_color_matrix_v() local
295 uint32_t value = 0; in program_color_matrix_v() local
[all …]
/kernel/linux/linux-4.19/drivers/gpu/drm/amd/display/dc/dce110/
Ddce110_opp_csc_v.c127 uint32_t value = 0; in program_color_matrix_v() local
145 uint32_t value = 0; in program_color_matrix_v() local
163 uint32_t value = 0; in program_color_matrix_v() local
181 uint32_t value = 0; in program_color_matrix_v() local
199 uint32_t value = 0; in program_color_matrix_v() local
217 uint32_t value = 0; in program_color_matrix_v() local
241 uint32_t value = 0; in program_color_matrix_v() local
259 uint32_t value = 0; in program_color_matrix_v() local
277 uint32_t value = 0; in program_color_matrix_v() local
295 uint32_t value = 0; in program_color_matrix_v() local
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/stmicro/stmmac/
Ddwxgmac2_dma.c13 u32 value = readl(ioaddr + XGMAC_DMA_MODE); in dwxgmac2_dma_reset() local
25 u32 value = readl(ioaddr + XGMAC_DMA_SYSBUS_MODE); in dwxgmac2_dma_init() local
39 u32 value = readl(ioaddr + XGMAC_DMA_CH_CONTROL(chan)); in dwxgmac2_dma_init_chan() local
53 u32 value; in dwxgmac2_dma_init_rx_chan() local
69 u32 value; in dwxgmac2_dma_init_tx_chan() local
83 u32 value = readl(ioaddr + XGMAC_DMA_SYSBUS_MODE); in dwxgmac2_dma_axi() local
145 u32 value = readl(ioaddr + XGMAC_MTL_RXQ_OPMODE(channel)); in dwxgmac2_dma_rx_mode() local
211 u32 value = readl(ioaddr + XGMAC_MTL_TXQ_OPMODE(channel)); in dwxgmac2_dma_tx_mode() local
254 u32 value = readl(ioaddr + XGMAC_DMA_CH_INT_EN(chan)); in dwxgmac2_enable_dma_irq() local
267 u32 value = readl(ioaddr + XGMAC_DMA_CH_INT_EN(chan)); in dwxgmac2_disable_dma_irq() local
[all …]
/kernel/liteos_m/utils/
Dlos_reg.h52 #define READ_UINT8(value, addr) ((value) = *((volatile UINT8 *)(addr))) argument
57 #define READ_UINT16(value, addr) ((value) = *((volatile UINT16 *)(addr))) argument
62 #define READ_UINT32(value, addr) ((value) = *((volatile UINT32 *)(addr))) argument
67 #define READ_UINT64(value, addr) ((value) = *((volatile UINT64 *)(addr))) argument
94 #define WRITE_UINT8(value, addr) (*((volatile UINT8 *)(addr)) = (value)) argument
99 #define WRITE_UINT16(value, addr) (*((volatile UINT16 *)(addr)) = (value)) argument
104 #define WRITE_UINT32(value, addr) (*((volatile UINT32 *)(addr)) = (value)) argument
109 #define WRITE_UINT64(value, addr) (*((volatile UINT64 *)(addr)) = (value)) argument
/kernel/linux/linux-4.19/sound/pci/oxygen/
Doxygen_mixer.c41 struct snd_ctl_elem_value *value) in dac_volume_get()
54 struct snd_ctl_elem_value *value) in dac_volume_put()
74 struct snd_ctl_elem_value *value) in dac_mute_get()
85 struct snd_ctl_elem_value *value) in dac_mute_put()
125 static int upmix_get(struct snd_kcontrol *ctl, struct snd_ctl_elem_value *value) in upmix_get()
195 static int upmix_put(struct snd_kcontrol *ctl, struct snd_ctl_elem_value *value) in upmix_put()
214 struct snd_ctl_elem_value *value) in spdif_switch_get()
289 struct snd_ctl_elem_value *value) in spdif_switch_put()
313 static void oxygen_to_iec958(u32 bits, struct snd_ctl_elem_value *value) in oxygen_to_iec958()
322 static u32 iec958_to_oxygen(struct snd_ctl_elem_value *value) in iec958_to_oxygen()
[all …]
/kernel/linux/linux-5.10/sound/pci/oxygen/
Doxygen_mixer.c29 struct snd_ctl_elem_value *value) in dac_volume_get()
42 struct snd_ctl_elem_value *value) in dac_volume_put()
62 struct snd_ctl_elem_value *value) in dac_mute_get()
73 struct snd_ctl_elem_value *value) in dac_mute_put()
113 static int upmix_get(struct snd_kcontrol *ctl, struct snd_ctl_elem_value *value) in upmix_get()
183 static int upmix_put(struct snd_kcontrol *ctl, struct snd_ctl_elem_value *value) in upmix_put()
202 struct snd_ctl_elem_value *value) in spdif_switch_get()
277 struct snd_ctl_elem_value *value) in spdif_switch_put()
301 static void oxygen_to_iec958(u32 bits, struct snd_ctl_elem_value *value) in oxygen_to_iec958()
310 static u32 iec958_to_oxygen(struct snd_ctl_elem_value *value) in iec958_to_oxygen()
[all …]
/kernel/linux/linux-4.19/include/acpi/
Dacbuffer.h122 #define ACPI_PLD_SET_REVISION(dword,value) ACPI_SET_BITS (dword, 0, ACPI_7BIT_MASK, value) /* … argument
125 #define ACPI_PLD_SET_IGNORE_COLOR(dword,value) ACPI_SET_BITS (dword, 7, ACPI_1BIT_MASK, value) /* … argument
128 #define ACPI_PLD_SET_RED(dword,value) ACPI_SET_BITS (dword, 8, ACPI_8BIT_MASK, value) /* … argument
131 #define ACPI_PLD_SET_GREEN(dword,value) ACPI_SET_BITS (dword, 16, ACPI_8BIT_MASK, value) /*… argument
134 #define ACPI_PLD_SET_BLUE(dword,value) ACPI_SET_BITS (dword, 24, ACPI_8BIT_MASK, value) /*… argument
139 #define ACPI_PLD_SET_WIDTH(dword,value) ACPI_SET_BITS (dword, 0, ACPI_16BIT_MASK, value) /*… argument
142 #define ACPI_PLD_SET_HEIGHT(dword,value) ACPI_SET_BITS (dword, 16, ACPI_16BIT_MASK, value) /… argument
147 #define ACPI_PLD_SET_USER_VISIBLE(dword,value) ACPI_SET_BITS (dword, 0, ACPI_1BIT_MASK, value) /* … argument
150 #define ACPI_PLD_SET_DOCK(dword,value) ACPI_SET_BITS (dword, 1, ACPI_1BIT_MASK, value) /* … argument
153 #define ACPI_PLD_SET_LID(dword,value) ACPI_SET_BITS (dword, 2, ACPI_1BIT_MASK, value) /* … argument
[all …]

12345678910>>...226