Searched refs:v2 (Results 226 - 250 of 303) sorted by relevance

1234567891011>>

/linux-master/include/crypto/
H A Daria.h332 static inline u32 make_u32(u8 v0, u8 v1, u8 v2, u8 v3) argument
334 return ((u32)v0 << 24) | ((u32)v1 << 16) | ((u32)v2 << 8) | ((u32)v3);
/linux-master/arch/powerpc/crypto/
H A Dpoly1305-p10le_64.S517 vmulouw 2, 29, 4 # v2 = rr2
871 # v0 = (r0, s1), v1 = (r1, r0), v2 = s1, v3 = r0
/linux-master/drivers/media/pci/tw68/
H A Dtw68-video.c679 int v2 = tw_readb(TW68_MVSN); local
689 if (0 != (v2 & (1 << 2)))
/linux-master/drivers/gpu/drm/radeon/
H A Datombios_dp.c82 PROCESS_AUX_CHANNEL_TRANSACTION_PARAMETERS_V2 v2; member in union:aux_channel_transaction
113 args.v2.ucHPD_ID = chan->rec.hpd;
H A Dtrinity_dpm.c1629 struct _ATOM_PPLIB_STATE_V2 v2; member in union:pplib_power_state
1722 non_clock_array_index = power_state->v2.nonClockInfoIndex;
1736 idx = (u8 *)&power_state->v2.clockInfoIndex[0];
1737 for (j = 0; j < power_state->v2.ucNumDPMLevels; j++) {
1754 power_state_offset += 2 + power_state->v2.ucNumDPMLevels;
H A Dsumo_dpm.c1387 struct _ATOM_PPLIB_STATE_V2 v2; member in union:pplib_power_state
1491 non_clock_array_index = power_state->v2.nonClockInfoIndex;
1505 idx = (u8 *)&power_state->v2.clockInfoIndex[0];
1506 for (j = 0; j < power_state->v2.ucNumDPMLevels; j++) {
1522 power_state_offset += 2 + power_state->v2.ucNumDPMLevels;
/linux-master/arch/arm64/boot/dts/freescale/
H A DMakefile104 dtb-$(CONFIG_ARCH_MXC) += imx8dx-colibri-iris-v2.dtb
230 dtb-$(CONFIG_ARCH_MXC) += imx8qxp-colibri-iris-v2.dtb
/linux-master/scripts/dtc/include-prefixes/arm64/freescale/
H A DMakefile104 dtb-$(CONFIG_ARCH_MXC) += imx8dx-colibri-iris-v2.dtb
230 dtb-$(CONFIG_ARCH_MXC) += imx8qxp-colibri-iris-v2.dtb
/linux-master/drivers/gpu/drm/amd/display/dc/dcn10/
H A Ddcn10_link_encoder.c1406 #define AUX_REG_UPDATE_2(reg, f1, v1, f2, v2) \
1409 FN(reg, f2), v2)
/linux-master/fs/nfs/
H A Dinternal.h608 const struct nfs_write_verifier *v2)
610 return memcmp(v1->data, v2->data, sizeof(v1->data));
607 nfs_write_verifier_cmp(const struct nfs_write_verifier *v1, const struct nfs_write_verifier *v2) argument
H A Dnfs4client.c524 static bool nfs4_same_verifier(nfs4_verifier *v1, nfs4_verifier *v2) argument
526 return memcmp(v1->data, v2->data, sizeof(v1->data)) == 0;
/linux-master/drivers/message/fusion/
H A Dmptscsih.c192 dma_addr_t v2; local
244 v2 = sg_dma_address(sg);
245 ioc->add_sge(psge, sgflags | thisxfer, v2);
266 v2 = sg_dma_address(sg);
267 ioc->add_sge(psge, sgflags | thisxfer, v2);
/linux-master/drivers/net/wireless/realtek/rtw88/
H A Dmain.c2313 u8 v2 = rtw_read8(rtwdev, reg2->addr + i); local
2315 rtw_write8(rtwdev, reg1->addr + i, v2);
2324 u32 v1, v2; local
2327 v2 = rtw_read32_mask(rtwdev, reg2->addr, reg2->mask);
2329 rtw_write32_mask(rtwdev, reg1->addr, reg1->mask, v2);
/linux-master/drivers/gpu/drm/amd/pm/swsmu/smu13/
H A Dsmu_v13_0.c305 const struct smc_firmware_header_v2_0 *v2; local
307 v2 = (const struct smc_firmware_header_v2_0 *) adev->pm.fw->data;
309 ppt_offset_bytes = le32_to_cpu(v2->ppt_offset_bytes);
310 *size = le32_to_cpu(v2->ppt_size_bytes);
311 *table = (uint8_t *)v2 + ppt_offset_bytes;
/linux-master/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/
H A Dphy.c18 #define READ_NEXT_PAIR(array_table, v1, v2, i) \
22 v2 = array_table[i+1]; \
1839 u32 v2 = array_table[i + 1]; local
1854 hw, v1, v2)) {
1868 set_reg(hw, v1, v2);
1984 u32 v1, v2, v3, v4, v5, v6; local
2001 v2 = array[i+1];
2028 _rtl8821ae_store_tx_power_by_rate(hw, v1, v2, v3,
2035 v2 = array[i+1];
2036 while (v2 !
[all...]
/linux-master/lib/
H A Dtest_bpf.c543 static bool __bpf_alu_result(u64 *res, u64 v1, u64 v2, u8 op) argument
548 *res = v2;
551 *res = v1 & v2;
554 *res = v1 | v2;
557 *res = v1 ^ v2;
560 *res = v1 << v2;
563 *res = v1 >> v2;
566 *res = v1 >> v2;
567 if (v2 > 0 && v1 > S64_MAX)
568 *res |= ~0ULL << (64 - v2);
2273 __bpf_match_jmp_cond(s64 v1, s64 v2, u8 op) argument
[all...]
/linux-master/drivers/media/pci/saa7134/
H A Dsaa7134-video.c1150 int v2 = saa_readb(SAA7134_STATUS_VIDEO2); local
1154 if (0 != (v2 & 0x40))
1156 if (0 != (v2 & 0x0e))
/linux-master/drivers/net/wireless/ath/wil6210/
H A Dtxrx.c1553 struct wil_ring *v, *v2; local
1592 v2 = &wil->ring_tx[i];
1594 if (!v2->va || txdata2->mid != vif->mid)
1610 wil_tx_ring(wil, vif, v2, skb2);
/linux-master/sound/usb/
H A Dformat.c9 #include <linux/usb/audio-v2.h>
29 * @fmt: the format type descriptor (v1/v2) or AudioStreaming descriptor (v3)
542 * on the audioformat table (audio class v2 and v3).
698 * audio class v2 uses class specific EP0 range requests for that.
/linux-master/drivers/net/ethernet/sun/
H A Dniu.c4078 u64 v0, u64 v1, u64 v2)
4085 lp->v2 = v2;
4123 if (v2) {
4124 if (v2 & 0x01ef) {
4129 if (v2 & 0x0210) {
4200 u64 v0, u64 v1, u64 v2)
4205 lp->v2 = v2;
4217 u64 v0, v1, v2; local
4077 niu_slowpath_interrupt(struct niu *np, struct niu_ldg *lp, u64 v0, u64 v1, u64 v2) argument
4199 niu_schedule_napi(struct niu *np, struct niu_ldg *lp, u64 v0, u64 v1, u64 v2) argument
[all...]
/linux-master/drivers/net/wireless/intel/iwlwifi/fw/
H A Dfile.h13 /* v1/v2 uCode file layout */
33 } v2; member in union:iwl_ucode_header::__anon1119
133 * the v1/v2 style header by first four bytes being
238 * @IWL_UCODE_TLV_API_SCAN_OFFLOAD_CHANS: This ucode supports v2 of
241 * @IWL_UCODE_TLV_API_MBSSID_HE: This ucode supports v2 of
/linux-master/drivers/net/wireless/intel/iwlwifi/fw/api/
H A Dscan.h756 } v2; /* SCAN_CHANNEL_CONFIG_API_S_VER_2 member in union:iwl_scan_channel_cfg_umac::__anon1105
/linux-master/fs/ceph/
H A Dmds_client.c4476 struct ceph_mds_cap_reconnect v2; member in union:__anon26
4530 rec.v2.cap_id = cpu_to_le64(cap->cap_id);
4531 rec.v2.wanted = cpu_to_le32(__ceph_caps_wanted(ci));
4532 rec.v2.issued = cpu_to_le32(cap->issued);
4533 rec.v2.snaprealm = cpu_to_le64(ci->i_snap_realm->ino);
4534 rec.v2.pathbase = cpu_to_le64(pathbase);
4535 rec.v2.flock_len = (__force __le32)
4569 if (rec.v2.flock_len) {
4609 rec.v2.flock_len = cpu_to_le32(struct_len);
4611 struct_len += sizeof(u32) + pathlen + sizeof(rec.v2);
[all...]
/linux-master/drivers/video/fbdev/mmp/hw/
H A Dmmp_ctrl.h304 #define CFG_CKEY_V2(v2) ((v2)<<24)
/linux-master/arch/s390/crypto/
H A Dchacha-s390.S59 #define XA2 %v2
442 #define C0 %v2

Completed in 705 milliseconds

1234567891011>>