Home
last modified time | relevance | path

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

123

/Linux-v5.10/tools/testing/selftests/bpf/progs/
Dtest_sk_lookup.c30 #define LSW(value, index) \ macro
391 if (LSW(ctx->family, 0) != (v4 ? AF_INET : AF_INET6)) in ctx_narrow_access()
398 if (LSW(ctx->protocol, 0) != IPPROTO_TCP) in ctx_narrow_access()
405 if (LSW(ctx->remote_port, 0) == 0) in ctx_narrow_access()
413 if (LSW(ctx->local_port, 0) != DST_PORT) in ctx_narrow_access()
422 if (LSW(ctx->remote_ip4, 0) == 0 && LSW(ctx->remote_ip4, 1) == 0) in ctx_narrow_access()
431 if (LSW(ctx->local_ip4, 0) != ((DST_IP4 >> 0) & 0xffff) || in ctx_narrow_access()
432 LSW(ctx->local_ip4, 1) != ((DST_IP4 >> 16) & 0xffff)) in ctx_narrow_access()
439 if (LSW(ctx->remote_ip4, 0) != 0 || LSW(ctx->remote_ip4, 1) != 0) in ctx_narrow_access()
445 if (LSW(ctx->local_ip4, 0) != 0 || LSW(ctx->local_ip4, 1) != 0) in ctx_narrow_access()
[all …]
/Linux-v5.10/arch/powerpc/boot/
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
/Linux-v5.10/arch/x86/math-emu/
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()
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 …]
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 …]
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()
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()
Ddiv_small.S37 movl (%esi),%eax /* Get the num lsw */
/Linux-v5.10/arch/powerpc/kernel/
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
/Linux-v5.10/drivers/clocksource/
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()
/Linux-v5.10/Documentation/devicetree/bindings/regulator/
Drichtek,rtmv20-regulator.yaml120 lsw:
131 - lsw
152 lsw {
153 regulator-name = "rtmv20,lsw";
/Linux-v5.10/drivers/scsi/qla2xxx/
Dqla_mbx.c604 mcp->mb[1] = LSW(risc_addr); in qla2x00_load_ram()
606 mcp->mb[3] = LSW(req_dma); in qla2x00_load_ram()
608 mcp->mb[7] = LSW(MSD(req_dma)); in qla2x00_load_ram()
612 mcp->mb[5] = LSW(risc_code_size); in qla2x00_load_ram()
615 mcp->mb[4] = LSW(risc_code_size); in qla2x00_load_ram()
673 mcp->mb[2] = LSW(risc_addr); in qla2x00_execute_fw()
715 mcp->mb[1] = LSW(risc_addr); in qla2x00_execute_fw()
863 mcp->mb[3] = LSW(phys_addr); in qla_set_exlogin_mem_cfg()
865 mcp->mb[7] = LSW(MSD(phys_addr)); in qla_set_exlogin_mem_cfg()
867 mcp->mb[9] = LSW(ha->exlogin_size); in qla_set_exlogin_mem_cfg()
[all …]
/Linux-v5.10/drivers/net/ethernet/aquantia/atlantic/
Daq_hw_utils.c56 /* Most of 64-bit registers are in LSW, MSW form.
58 reading LSW first locks MSW, to overcome LSW overflow
/Linux-v5.10/fs/afs/
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()
/Linux-v5.10/drivers/net/ethernet/aquantia/atlantic/hw_atl/
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 */
/Linux-v5.10/arch/openrisc/include/asm/
Dthread_info.h91 * - pending work-to-be-done flags are in LSW
116 /* For OpenRISC, this is anything in the LSW other than syscall trace */
/Linux-v5.10/drivers/staging/media/atomisp/pci/hive_isp_css_include/host/
Disp_public.h167 /*! Concatenate the LSW and MSW into a double precision word
169 \param x0[in] Integer containing the LSW
/Linux-v5.10/arch/m68k/ifpsp060/src/
Dilsp.S300 swap %d6 # get u3 to lsw position
340 # Now calculate an estimate of the quotient words (msw first, then lsw).
363 swap %d6 # in lsw position
458 mulu.w %d5, %d6 # %d6 <- lsw*lsw
459 mulu.w %d3, %d5 # %d5 <- msw-dest*lsw-source
460 mulu.w %d4, %d2 # %d2 <- msw-source*lsw-dest
465 add.w %d5, %d6 # add msw of l*l to lsw of m*l product
467 add.w %d2, %d6 # add in lsw of other m*l product
471 clr.w %d2 # lsw of two mixed products used,
/Linux-v5.10/arch/c6x/include/asm/
Dthread_info.h77 * - pending work-to-be-done flags are in LSW
/Linux-v5.10/arch/hexagon/include/asm/
Dthread_info.h88 * - pending work-to-be-done flags are in LSW
/Linux-v5.10/arch/arc/include/asm/
Dthread_info.h74 * - pending work-to-be-done flags are in LSW
/Linux-v5.10/arch/nios2/include/asm/
Dthread_info.h79 * - pending work-to-be-done flags are in LSW
/Linux-v5.10/arch/arm/nwfpe/
Dfpa11_cpdt.c142 put_user(val.i[1], &pMem[1]); /* lsw */ in storeDouble()
145 put_user(val.i[0], &pMem[1]); /* lsw */ in storeDouble()
/Linux-v5.10/drivers/regulator/
Drtmv20-regulator.c115 .name = "rtmv20,lsw",
116 .of_match = of_match_ptr("lsw"),
/Linux-v5.10/arch/microblaze/include/asm/
Dthread_info.h101 * - pending work-to-be-done flags are in LSW

123