| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/ |
| H A D | test_sk_lookup.c | 30 #define LSW(value, index) \ macro 395 if (LSW(ctx->family, 0) != (v4 ? AF_INET : AF_INET6)) in ctx_narrow_access() 402 if (LSW(ctx->protocol, 0) != IPPROTO_TCP) in ctx_narrow_access() 410 if (LSW(ctx->remote_port, 0) != SRC_PORT) in ctx_narrow_access() 418 if (LSW(ctx->local_port, 0) != DST_PORT) in ctx_narrow_access() 429 if (LSW(ctx->remote_ip4, 0) != ((SRC_IP4 >> 0) & 0xffff) || in ctx_narrow_access() 430 LSW(ctx->remote_ip4, 1) != ((SRC_IP4 >> 16) & 0xffff)) in ctx_narrow_access() 439 if (LSW(ctx->local_ip4, 0) != ((DST_IP4 >> 0) & 0xffff) || in ctx_narrow_access() 440 LSW(ctx->local_ip4, 1) != ((DST_IP4 >> 16) & 0xffff)) in ctx_narrow_access() 447 if (LSW(ctx->remote_ip4, 0) != 0 || LSW(ctx->remote_ip4, 1) != 0) in ctx_narrow_access() [all …]
|
| /OK3568_Linux_fs/kernel/arch/powerpc/boot/ |
| H A D | div64.S | 74 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count 79 or r4,r4,r6 # LSW |= t1 82 or r4,r4,r7 # LSW |= t2 90 srw r6,r4,r6 # t1 = count > 31 ? 0 : LSW >> (32-count) 91 slw r7,r4,r7 # t2 = count < 32 ? 0 : LSW << (count-32) 93 slw r4,r4,r5 # LSW = LSW << count 100 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count 104 or r4,r4,r6 # LSW |= t1 106 or r4,r4,r7 # LSW |= t2
|
| /OK3568_Linux_fs/u-boot/arch/powerpc/lib/ |
| H A D | _lshrdi3.S | 35 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count 39 or r4,r4,r6 # LSW |= t1 41 or r4,r4,r7 # LSW |= t2
|
| H A D | _ashldi3.S | 37 srw r6,r4,r6 # t1 = count > 31 ? 0 : LSW >> (32-count) 38 slw r7,r4,r7 # t2 = count < 32 ? 0 : LSW << (count-32) 40 slw r4,r4,r5 # LSW = LSW << count
|
| H A D | _ashrdi3.S | 35 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count 40 or r4,r4,r6 # LSW |= t1 43 or r4,r4,r7 # LSW |= t2
|
| /OK3568_Linux_fs/kernel/arch/powerpc/kernel/ |
| H A D | misc_32.S | 341 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count 346 or r4,r4,r6 # LSW |= t1 349 or r4,r4,r7 # LSW |= t2 357 srw r6,r4,r6 # t1 = count > 31 ? 0 : LSW >> (32-count) 358 slw r7,r4,r7 # t2 = count < 32 ? 0 : LSW << (count-32) 360 slw r4,r4,r5 # LSW = LSW << count 367 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count 371 or r4,r4,r6 # LSW |= t1 373 or r4,r4,r7 # LSW |= t2
|
| /OK3568_Linux_fs/kernel/drivers/scsi/qla2xxx/ |
| H A D | qla_mbx.c | 612 mcp->mb[1] = LSW(risc_addr); in qla2x00_load_ram() 614 mcp->mb[3] = LSW(req_dma); in qla2x00_load_ram() 616 mcp->mb[7] = LSW(MSD(req_dma)); in qla2x00_load_ram() 620 mcp->mb[5] = LSW(risc_code_size); in qla2x00_load_ram() 623 mcp->mb[4] = LSW(risc_code_size); in qla2x00_load_ram() 681 mcp->mb[2] = LSW(risc_addr); in qla2x00_execute_fw() 726 mcp->mb[1] = LSW(risc_addr); in qla2x00_execute_fw() 874 mcp->mb[3] = LSW(phys_addr); in qla_set_exlogin_mem_cfg() 876 mcp->mb[7] = LSW(MSD(phys_addr)); in qla_set_exlogin_mem_cfg() 878 mcp->mb[9] = LSW(ha->exlogin_size); in qla_set_exlogin_mem_cfg() [all …]
|
| H A D | qla_dbg.c | 122 wrt_reg_word(®->mailbox1, LSW(addr)); in qla27xx_dump_mpi_ram() 126 wrt_reg_word(®->mailbox3, LSW(LSD(dump_dma))); in qla27xx_dump_mpi_ram() 128 wrt_reg_word(®->mailbox7, LSW(MSD(dump_dma))); in qla27xx_dump_mpi_ram() 131 wrt_reg_word(®->mailbox5, LSW(dwords)); in qla27xx_dump_mpi_ram() 202 wrt_reg_word(®->mailbox1, LSW(addr)); in qla24xx_dump_ram() 207 wrt_reg_word(®->mailbox3, LSW(LSD(dump_dma))); in qla24xx_dump_ram() 209 wrt_reg_word(®->mailbox7, LSW(MSD(dump_dma))); in qla24xx_dump_ram() 212 wrt_reg_word(®->mailbox5, LSW(dwords)); in qla24xx_dump_ram() 386 WRT_MAILBOX_REG(ha, reg, 1, LSW(addr)); in qla2xxx_dump_ram() 390 WRT_MAILBOX_REG(ha, reg, 3, LSW(dump_dma)); in qla2xxx_dump_ram() [all …]
|
| H A D | qla_mr.c | 895 ha->rqstq_intr_code = LSW(aenmbx7); in qlafx00_init_fw_ready() 925 ha->rqstq_intr_code = LSW(aenmbx7); in qlafx00_init_fw_ready() 963 ha->rqstq_intr_code = LSW(aenmbx7); in qlafx00_init_fw_ready() 1425 ha->rqstq_intr_code = LSW(aenmbx7); in qlafx00_rescan_isp() 2274 handle = LSW(hindex); in qlafx00_status_entry() 2632 handle = LSW(hindex); in qlafx00_multistatus_entry()
|
| H A D | qla_isr.c | 1719 index = LSW(pkt->handle); in qla2x00_get_sp_from_handle() 2171 data[1] = LSW(iop[1]); in qla24xx_logio_entry() 2879 handle = (uint32_t) LSW(sts->handle); in qla2x00_status_entry()
|
| H A D | qla_iocb.c | 2510 mbx->mb3 = cpu_to_le16(LSW(ha->async_pd_dma)); in qla2x00_adisc_iocb() 2512 mbx->mb7 = cpu_to_le16(LSW(MSD(ha->async_pd_dma))); in qla2x00_adisc_iocb()
|
| H A D | qla_init.c | 1130 mb[3] = LSW(vha->gnl.ldma); in qla24xx_async_gnl() 1132 mb[7] = LSW(MSD(vha->gnl.ldma)); in qla24xx_async_gnl() 1369 mb[3] = LSW(pd_dma); in qla24xx_async_gpdb() 1371 mb[7] = LSW(MSD(pd_dma)); in qla24xx_async_gpdb()
|
| H A D | qla_def.h | 117 #define LSW(x) ((uint16_t)(x)) macro
|
| /OK3568_Linux_fs/kernel/drivers/staging/qlge/ |
| H A D | qlge_mpi.c | 758 mbcp->mbox_in[1] = LSW(addr); in ql_mb_dump_ram() 760 mbcp->mbox_in[3] = LSW(req_dma); in ql_mb_dump_ram() 762 mbcp->mbox_in[5] = LSW(size); in ql_mb_dump_ram() 764 mbcp->mbox_in[7] = LSW(MSD(req_dma)); in ql_mb_dump_ram()
|
| H A D | qlge.h | 78 #define LSW(x) ((u16)(x)) macro
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/qlogic/netxen/ |
| H A D | netxen_nic.h | 1168 #define LSW(x) ((uint16_t)(x)) macro 1207 LSW(addr))); \ 1214 writel(data, (void __iomem *) (bar0 + NX_FW_DUMP_REG2 + LSW(addr)));\ 1215 readl((void __iomem *) (bar0 + NX_FW_DUMP_REG2 + LSW(addr))); \
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/qlogic/qlcnic/ |
| H A D | qlcnic_sriov_common.c | 381 npar_info->max_tx_bw = LSW(cmd.rsp.arg[3]); in qlcnic_sriov_get_vf_vport_info() 385 npar_info->max_tx_mac_filters = LSW(cmd.rsp.arg[4]); in qlcnic_sriov_get_vf_vport_info() 389 npar_info->max_rx_ucast_mac_filters = LSW(cmd.rsp.arg[5]); in qlcnic_sriov_get_vf_vport_info() 393 npar_info->max_rx_lro_flow = LSW(cmd.rsp.arg[6]); in qlcnic_sriov_get_vf_vport_info() 397 npar_info->max_rx_buf_rings = LSW(cmd.rsp.arg[7]); in qlcnic_sriov_get_vf_vport_info() 400 npar_info->max_tx_vlan_keys = LSW(cmd.rsp.arg[8]); in qlcnic_sriov_get_vf_vport_info() 402 npar_info->max_remote_ipv6_addrs = LSW(cmd.rsp.arg[9]); in qlcnic_sriov_get_vf_vport_info()
|
| H A D | qlcnic_sriov_pf.c | 194 npar_info->max_tx_ques = LSW(cmd.rsp.arg[3]); in qlcnic_sriov_get_pf_info() 196 npar_info->max_rx_mcast_mac_filters = LSW(cmd.rsp.arg[4]); in qlcnic_sriov_get_pf_info() 198 npar_info->max_rx_ip_addr = LSW(cmd.rsp.arg[5]); in qlcnic_sriov_get_pf_info() 200 npar_info->max_rx_status_rings = LSW(cmd.rsp.arg[6]); in qlcnic_sriov_get_pf_info() 202 npar_info->max_rx_ques = LSW(cmd.rsp.arg[7]); in qlcnic_sriov_get_pf_info() 204 npar_info->max_local_ipv6_addrs = LSW(cmd.rsp.arg[8]); in qlcnic_sriov_get_pf_info()
|
| H A D | qlcnic_minidump.c | 579 addr = LSW(fl_addr) + FLASH_ROM_DATA; in qlcnic_read_rom() 599 qlcnic_ind_wr(adapter, l1->ctrl_addr, LSW(l1->ctrl_val)); in qlcnic_dump_l1_cache() 627 if (LSW(l2->ctrl_val)) in qlcnic_dump_l2_cache() 629 LSW(l2->ctrl_val)); in qlcnic_dump_l2_cache()
|
| H A D | qlcnic_83xx_hw.h | 347 #define QLCNIC_MBX_RSP(reg) LSW(reg)
|
| H A D | qlcnic_83xx_hw.c | 828 int opcode = LSW(cmd->req.arg[0]); in qlcnic_83xx_poll_for_mbx_completion() 859 opcode = LSW(cmd->req.arg[0]); in qlcnic_83xx_issue_cmd() 1540 mbx_in = (LSW(QLC_83XX_LED_CONFIG) << 16) | in qlcnic_83xx_config_led() 1541 LSW(QLC_83XX_LED_CONFIG); in qlcnic_83xx_config_led() 2340 ahw->module_type = MSB(LSW(data[3])); in qlcnic_83xx_handle_link_aen() 3673 id = LSW(data); in qlcnic_83xx_interrupt_test()
|
| H A D | qlcnic_hw.c | 291 val = bar0 + QLCNIC_FW_DUMP_REG2 + LSW(addr); in qlcnic_read_window_reg() 304 val = bar0 + QLCNIC_FW_DUMP_REG2 + LSW(addr); in qlcnic_write_window_reg()
|
| H A D | qlcnic_hdr.h | 732 #define LSW(x) ((uint16_t)((uint32_t)(x))) macro
|
| H A D | qlcnic_ctx.c | 1424 esw_cfg->vlan_id = LSW(arg1 >> 16); in qlcnic_get_eswitch_port_config()
|
| /OK3568_Linux_fs/device/rockchip/common/images/userdata/userdata_normal/media/ |
| H A D | yuv420_p352x288.yuv | 3403 …*8LH6.6.% !&! "%%$'+%$)+,,9D3&+%!# &*-*#+)"!%% &.+;LSW\\ZXZ^agjjhghijnnjgd… 6674 …OHB91.-,*-...,+*)*,--.-,./-,/++/--2)%,$ !"#$$#$%#%""&"&55,7LSW]UNO[qtsvlbY]\MMI>DH…
|