Home
last modified time | relevance | path

Searched full:lsw (Results 1 – 25 of 87) sorted by relevance

1234

/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/
H A Dtest_sk_lookup.c30 #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 Ddiv64.S74 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/kernel/arch/x86/math-emu/
H A Dpoly_sin.c68 accumulator.lsw = accumulator.midw = accumulator.msw = 0; in poly_sine()
78 argSqrd.lsw = 0; in poly_sine()
83 argTo4.lsw = argSqrd.lsw; in poly_sine()
132 argSqrd.lsw = 0; in poly_sine()
136 argTo4.lsw = argSqrd.lsw; in poly_sine()
158 accumulator.lsw |= 1; /* A zero accumulator here would cause problems */ in poly_sine()
175 adj = accumulator.lsw; /* temp save */ in poly_sine()
176 accumulator.lsw -= fix_up; in poly_sine()
177 if (accumulator.lsw > adj) in poly_sine()
220 accumulator.lsw = accumulator.midw = accumulator.msw = 0; in poly_cos()
[all …]
H A Dpoly_atan.c83 Numer.lsw = Denom.lsw = 0; in poly_atan()
89 Numer.lsw = Denom.lsw = 0; in poly_atan()
105 (argSignif.lsw == 0) && (argSignif.midw == 0) && in poly_atan()
113 Numer.lsw = Denom.lsw = argSignif.lsw; in poly_atan()
131 argSq.lsw = argSignif.lsw; in poly_atan()
136 argSqSq.lsw = argSq.lsw; in poly_atan()
141 accumulatore.lsw = argSq.lsw; in poly_atan()
151 accumulator.msw = accumulator.midw = accumulator.lsw = 0; in poly_atan()
H A Dpoly_l2.c55 accumulator.msw = accumulator.midw = accumulator.lsw = 0; in poly_l2()
66 expon_accum.midw = expon_accum.lsw = 0; in poly_l2()
79 yaccum.lsw = 0; in poly_l2()
116 yaccum.lsw = 0; in poly_l2p1()
190 Numer.lsw = Denom.lsw = 0; in log2_kernel()
204 argSignif.lsw = Numer.lsw; in log2_kernel()
219 arg_signif.lsw = argSignif.lsw; in log2_kernel()
222 accumulator.lsw = argSignif.lsw; in log2_kernel()
227 if (accumulator.lsw & 0x80000000) in log2_kernel()
230 accumulator.msw = accumulator.midw = accumulator.lsw = 0; in log2_kernel()
[all …]
H A Dpoly_tan.c73 accum.lsw = 0; in poly_tan()
92 argSignif.lsw = accum.lsw; in poly_tan()
97 argSignif.lsw = 0; in poly_tan()
109 argSq.lsw = accum.lsw; in poly_tan()
112 argSqSq.lsw = argSq.lsw; in poly_tan()
116 accumulatoro.msw = accumulatoro.midw = accumulatoro.lsw = 0; in poly_tan()
126 accumulatore.msw = accumulatore.midw = accumulatore.lsw = 0; in poly_tan()
148 accum.lsw = 0; in poly_tan()
175 fix_up.lsw = 0; in poly_tan()
201 accumulatoro.lsw = accumulatoro.midw = 0; in poly_tan()
H A Dpoly_2xm1.c70 argSignif.lsw = 0; in poly_2xm1()
94 accumulator.lsw = accumulator.midw = accumulator.msw = 0; in poly_2xm1()
117 Denom.lsw = accumulator.lsw; in poly_2xm1()
124 if (Denom.lsw & 0x80000000) in poly_2xm1()
126 (Denom.lsw) <<= 1; in poly_2xm1()
/OK3568_Linux_fs/kernel/arch/powerpc/kernel/
H A Dmisc_32.S341 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/u-boot/arch/powerpc/lib/
H A D_lshrdi3.S35 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.S37 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.S35 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/drivers/scsi/qla2xxx/
H A Dqla_mbx.c612 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 …]
/OK3568_Linux_fs/kernel/drivers/clocksource/
H A Dbcm_kona_timer.c70 kona_timer_get_counter(void __iomem *timer_base, uint32_t *msw, uint32_t *lsw) in kona_timer_get_counter() argument
88 *lsw = readl(timer_base + KONA_GPTIMER_STCLO_OFFSET); in kona_timer_get_counter()
114 uint32_t lsw, msw; in kona_timer_set_next_event() local
118 ret = kona_timer_get_counter(timers.tmr_regs, &msw, &lsw); in kona_timer_set_next_event()
123 writel(lsw + clc, timers.tmr_regs + KONA_GPTIMER_STCM0_OFFSET); in kona_timer_set_next_event()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/regulator/
H A Drichtek,rtmv20-regulator.yaml120 lsw:
131 - lsw
152 lsw {
153 regulator-name = "rtmv20,lsw";
/OK3568_Linux_fs/u-boot/drivers/net/
H A Dxilinx_ll_temac_mdio.c75 out_be32(&regs->lsw, in ll_temac_local_mdio_read()
82 return in_be32(&regs->lsw) & LSW_REGDAT_MASK; in ll_temac_local_mdio_read()
94 out_be32(&regs->lsw, (value & LSW_REGDAT_MASK)); in ll_temac_local_mdio_write()
97 out_be32(&regs->lsw, in ll_temac_local_mdio_write()
H A Dxilinx_ll_temac.h56 u32 lsw; /* Least Significant Word Data */ member
109 /* Most, Least Significant Word Data Register (msw, lsw), [1] p46 */
113 /* LSW Data Register for PHY addresses (lsw), [1] p66 */
119 /* LSW Data Register for PHY data (lsw), [1] p66 */
/OK3568_Linux_fs/kernel/drivers/net/ethernet/aquantia/atlantic/
H A Daq_hw_utils.c56 /* Most of 64-bit registers are in LSW, MSW form.
58 reading LSW first locks MSW, to overcome LSW overflow
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/
H A Dfdlibm.h276 __uint32_t lsw; member
289 __uint32_t lsw; member
303 (ix1) = ew_u.parts.lsw; \
321 (i) = gl_u.parts.lsw; \
330 iw_u.parts.lsw = (ix1); \
350 sl_u.parts.lsw = (v); \
H A Dieeefp.h45 unsigned long lsw; member
86 unsigned long lsw;
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/
H A Dfdlibm.h276 __uint32_t lsw; member
289 __uint32_t lsw; member
303 (ix1) = ew_u.parts.lsw; \
321 (i) = gl_u.parts.lsw; \
330 iw_u.parts.lsw = (ix1); \
350 sl_u.parts.lsw = (v); \
H A Dieeefp.h45 unsigned long lsw; member
86 unsigned long lsw;
/OK3568_Linux_fs/kernel/fs/afs/
H A Dprotocol_yfs.h61 __be32 lsw; member
66 return ((u64)ntohl(x.msw) << 32) | ntohl(x.lsw); in xdr_to_u64()
71 return (struct yfs_xdr_u64){ .msw = htonl(x >> 32), .lsw = htonl(x) }; in u64_to_xdr()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/aquantia/atlantic/hw_atl/
H A Dhw_atl_llh.h115 /* set interrupt auto mask lsw */
133 /* set interrupt mask clear lsw */
137 /* set interrupt mask set lsw */
143 /* set interrupt status clear lsw */
147 /* get interrupt status lsw */
238 /* set rx dma descriptor base address lsw */
280 /* set tx dma descriptor base address lsw */
387 /* set l2 unicast destination address lsw */
/OK3568_Linux_fs/kernel/arch/openrisc/include/asm/
H A Dthread_info.h91 * - pending work-to-be-done flags are in LSW
118 /* For OpenRISC, this is anything in the LSW other than syscall trace */
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/hive_isp_css_include/host/
H A Disp_public.h167 /*! Concatenate the LSW and MSW into a double precision word
169 \param x0[in] Integer containing the LSW

1234