Home
last modified time | relevance | path

Searched refs:l (Results 1 – 25 of 1296) sorted by relevance

12345678910>>...52

/linux/arch/openrisc/kernel/
H A Dentry.S140 l.rfe
224 l.nop
257 l.nop
263 l.j 1f
399 l.nop
442 l.nop
445 l.nop
525 l.nop
546 l.nop
573 l.nop
[all …]
H A Dhead.S270 l.rfe
356 l.rfe
412 l.nop
417 l.nop
627 l.nop
628 l.nop
629 l.nop
630 l.nop
631 l.nop
632 l.nop
[all …]
/linux/arch/m68k/ifpsp060/
H A Dpfpsp.sa1 dc.l $60ff0000,$17400000,$60ff0000,$15f40000
2 dc.l $60ff0000,$02b60000,$60ff0000,$04700000
3 dc.l $60ff0000,$1b100000,$60ff0000,$19aa0000
4 dc.l $60ff0000,$1b5a0000,$60ff0000,$062e0000
5 dc.l $60ff0000,$102c0000,$51fc51fc,$51fc51fc
6 dc.l $51fc51fc,$51fc51fc,$51fc51fc,$51fc51fc
7 dc.l $51fc51fc,$51fc51fc,$51fc51fc,$51fc51fc
8 dc.l $51fc51fc,$51fc51fc,$51fc51fc,$51fc51fc
9 dc.l $2f00203a,$ff2c487b,$0930ffff,$fef8202f
10 dc.l $00044e74,$00042f00,$203afef2,$487b0930
[all …]
H A Dfplsp.sa1 dc.l $60ff0000,$238e0000,$60ff0000,$24200000
2 dc.l $60ff0000,$24b60000,$60ff0000,$11060000
3 dc.l $60ff0000,$11980000,$60ff0000,$122e0000
4 dc.l $60ff0000,$0f160000,$60ff0000,$0fa80000
5 dc.l $60ff0000,$103e0000,$60ff0000,$12ae0000
6 dc.l $60ff0000,$13400000,$60ff0000,$13d60000
7 dc.l $60ff0000,$05ae0000,$60ff0000,$06400000
8 dc.l $60ff0000,$06d60000,$60ff0000,$213e0000
9 dc.l $60ff0000,$21d00000,$60ff0000,$22660000
10 dc.l $60ff0000,$16160000,$60ff0000,$16a80000
[all …]
H A Ditest.sa1 dc.l $60ff0000,$005c5465,$7374696e,$67203638
2 dc.l $30363020,$49535020,$73746172,$7465643a
3 dc.l $0a007061,$73736564,$0a002066,$61696c65
4 dc.l $640a0000,$4a80660e,$487affe8,$61ff0000
5 dc.l $4f9a588f,$4e752f01,$61ff0000,$4fa4588f
6 dc.l $487affd8,$61ff0000,$4f82588f,$4e754e56
7 dc.l $ff6048e7,$3f3c487a,$ff9e61ff,$00004f6c
8 dc.l $588f42ae,$ff78487b,$01700000,$00ea61ff
9 dc.l $00004f58,$588f61ff,$000000f0,$61ffffff
10 dc.l $ffa642ae,$ff78487b,$01700000,$0af661ff
[all …]
H A Dftest.sa1 dc.l $60ff0000,$00d40000,$60ff0000,$016c0000
2 dc.l $60ff0000,$01a80000,$54657374,$696e6720
3 dc.l $36383036,$30204650,$53502073,$74617274
4 dc.l $65643a0a,$00546573,$74696e67,$20363830
5 dc.l $36302046,$50535020,$756e696d,$706c656d
6 dc.l $656e7465,$6420696e,$73747275,$6374696f
7 dc.l $6e207374,$61727465,$643a0a00,$54657374
8 dc.l $696e6720,$36383036,$30204650,$53502065
9 dc.l $78636570,$74696f6e,$20656e61,$626c6564
10 dc.l $20737461,$72746564,$3a0a0070,$61737365
[all …]
H A Dilsp.sa1 dc.l $60ff0000,$01fe0000,$60ff0000,$02080000
2 dc.l $60ff0000,$04900000,$60ff0000,$04080000
3 dc.l $60ff0000,$051e0000,$60ff0000,$053c0000
4 dc.l $60ff0000,$055a0000,$60ff0000,$05740000
5 dc.l $60ff0000,$05940000,$60ff0000,$05b40000
6 dc.l $51fc51fc,$51fc51fc,$51fc51fc,$51fc51fc
7 dc.l $51fc51fc,$51fc51fc,$51fc51fc,$51fc51fc
8 dc.l $51fc51fc,$51fc51fc,$51fc51fc,$51fc51fc
9 dc.l $51fc51fc,$51fc51fc,$51fc51fc,$51fc51fc
10 dc.l $51fc51fc,$51fc51fc,$51fc51fc,$51fc51fc
[all …]
/linux/include/asm-generic/
H A Dlocal64.h30 #define local64_read(l) local_read(&(l)->a) argument
32 #define local64_inc(l) local_inc(&(l)->a) argument
33 #define local64_dec(l) local_dec(&(l)->a) argument
61 #define __local64_inc(l) local64_set((l), local64_read(l) + 1) argument
62 #define __local64_dec(l) local64_set((l), local64_read(l) - 1) argument
63 #define __local64_add(i,l) local64_set((l), local64_read(l) + (i)) argument
64 #define __local64_sub(i,l) local64_set((l), local64_read(l) - (i)) argument
100 #define __local64_inc(l) local64_set((l), local64_read(l) + 1) argument
101 #define __local64_dec(l) local64_set((l), local64_read(l) - 1) argument
102 #define __local64_add(i,l) local64_set((l), local64_read(l) + (i)) argument
[all …]
H A Dlocal.h29 #define local_read(l) atomic_long_read(&(l)->a) argument
30 #define local_set(l,i) atomic_long_set((&(l)->a),(i)) argument
31 #define local_inc(l) atomic_long_inc(&(l)->a) argument
32 #define local_dec(l) atomic_long_dec(&(l)->a) argument
33 #define local_add(i,l) atomic_long_add((i),(&(l)->a)) argument
34 #define local_sub(i,l) atomic_long_sub((i),(&(l)->a)) argument
46 #define local_xchg(l, n) atomic_long_xchg((&(l)->a), (n)) argument
52 #define __local_inc(l) local_set((l), local_read(l) + 1) argument
53 #define __local_dec(l) local_set((l), local_read(l) - 1) argument
54 #define __local_add(i,l) local_set((l), local_read(l) + (i)) argument
[all …]
/linux/arch/m68k/ifpsp060/src/
H A Ditest.S2773 # mulu.l EAMEM.l,%d2:%d3
3116 mulu.l (0x10.b,%a0,%d4.l*1),%d2:%d3
3140 mulu.l (0x10.b,%a0,%d4.l*2),%d2:%d3
3164 mulu.l (0x10.b,%a0,%d4.l*4),%d2:%d3
5190 # mulu.l ([EASTORE.l,%za4,%zd4.l*1]),%d2:%d3
5546 mulu.l ([%a7],%d4.l*1),%d2:%d3
5573 # mulu.l ([EASTORE.l,%za4],%zd4.l*8,0x20.l),%d2:%d3
5944 mulu.l ([EASTORE.l,%zpc,%zd4.l*1]),%d2:%d3
6241 mulu.l ([EASTORE.l,%pc],%d4.l*8,0x10.l),%d2:%d3
6267 mulu.l ([EASTORE.l,%pc],%zd4.l*8,0x20.l),%d2:%d3
[all …]
H A Dftest.S69 tst.l %d0
211 bsr.l dz_0
270 bne.l error
274 bne.l error
461 clr.l %d0
820 clr.l %d0
871 clr.l %d0
923 clr.l %d0
975 clr.l %d0
1026 clr.l %d0
[all …]
/linux/arch/sh/kernel/
H A Drelocate_kernel.S24 mov.l r15, @-r0
26 mov.l r14, @-r15
31 mov.l r9, @-r15
32 mov.l r8, @-r15
39 stc.l sr, @-r15
40 sts.l pr, @-r15
44 mov.l 12f, r9
58 mov.l 12f, r9
90 mov.l 12f, r9
105 mov.l 12f, r9
[all …]
/linux/fs/bcachefs/
H A Dnocow_locking.c17 if (l->b[i] == dev_bucket && atomic_read(&l->l[i])) in bch2_bucket_nocow_is_locked()
57 if (!atomic_read(&l->l[i])) { in __bch2_bucket_nocow_trylock()
65 v = atomic_read(&l->l[i]); in __bch2_bucket_nocow_trylock()
69 v = atomic_read(&l->l[i]); in __bch2_bucket_nocow_trylock()
74 atomic_add(lock_val, &l->l[i]); in __bch2_bucket_nocow_trylock()
98 for (l = t->l; l < t->l + ARRAY_SIZE(t->l); l++) { in bch2_nocow_locks_to_text()
102 v |= atomic_read(&l->l[i]); in bch2_nocow_locks_to_text()
114 int v = atomic_read(&l->l[i]); in bch2_nocow_locks_to_text()
131 for (struct nocow_lock_bucket *l = t->l; l < t->l + ARRAY_SIZE(t->l); l++) in bch2_fs_nocow_locking_exit() local
133 BUG_ON(atomic_read(&l->l[j])); in bch2_fs_nocow_locking_exit()
[all …]
/linux/net/tipc/
H A Dlink.c317 return ((l->bc_rcvlink == l) && !link_is_bc_sndlink(l)); in link_is_bc_rcvlink()
414 gap = l->snd_nxt - l->rcv_nxt; in link_bc_rcv_gap()
593 l->bc_rcvlink = l; in tipc_link_bc_create()
844 tipc_mon_get_state(l->net, l->addr, mstate, l->bearer_id); in tipc_link_timeout()
860 l->checkpoint = l->snd_nxt; in tipc_link_timeout()
971 l->mtu = l->advertised_mtu; in tipc_link_reset()
1124 l->window = min_t(u16, l->ssthresh, l->window); in tipc_link_update_cwin()
1130 l->window = l->min_win; in tipc_link_update_cwin()
1709 l->snd_nxt = l->rcv_nxt; in tipc_link_build_state_msg()
1824 rc |= tipc_link_input(l, skb, l->inputq, &l->reasm_buf); in tipc_link_rcv()
[all …]
/linux/arch/sh/kernel/cpu/sh2/
H A Dentry.S43 mov.l r2,@-sp
44 mov.l r3,@-sp
49 mov.l @r3,r3
50 mov.l @r3,r3
54 mov.l @r2,r0
66 mov.l @r0,r0
67 mov.l @r0,r0
71 mov.l @r2,r2
167 mov.l 4f,r8
183 mov.l 6f,r9
[all …]
/linux/arch/alpha/include/asm/
H A Dlocal.h14 #define local_read(l) atomic_long_read(&(l)->a) argument
15 #define local_set(l,i) atomic_long_set(&(l)->a, (i)) argument
16 #define local_inc(l) atomic_long_inc(&(l)->a) argument
17 #define local_dec(l) atomic_long_dec(&(l)->a) argument
18 #define local_add(i,l) atomic_long_add((i),(&(l)->a)) argument
19 #define local_sub(i,l) atomic_long_sub((i),(&(l)->a)) argument
93 #define local_dec_return(l) local_sub_return(1,(l)) argument
104 #define __local_inc(l) ((l)->a.counter++) argument
105 #define __local_dec(l) ((l)->a.counter++) argument
106 #define __local_add(i,l) ((l)->a.counter+=(i)) argument
[all …]
/linux/arch/loongarch/include/asm/
H A Dlocal.h19 #define local_read(l) atomic_long_read(&(l)->a) argument
20 #define local_set(l, i) atomic_long_set(&(l)->a, (i)) argument
22 #define local_add(i, l) atomic_long_add((i), (&(l)->a)) argument
23 #define local_sub(i, l) atomic_long_sub((i), (&(l)->a)) argument
24 #define local_inc(l) atomic_long_inc(&(l)->a) argument
25 #define local_dec(l) atomic_long_dec(&(l)->a) argument
96 #define local_dec_return(l) local_sub_return(1, (l)) argument
146 #define __local_inc(l) ((l)->a.counter++) argument
147 #define __local_dec(l) ((l)->a.counter++) argument
148 #define __local_add(i, l) ((l)->a.counter += (i)) argument
[all …]
/linux/arch/openrisc/lib/
H A Dmemset.S23 l.sfeqi r5, 0
24 l.bf 4f
31 l.bf 1f
43 l.bf 3f
51 l.bf 2f
59 l.bf 2f
67 l.bf 2f
79 l.bf 2b
84 l.bf 4f
90 l.bf 3b
[all …]
H A Dstring.S40 l.bf 1f
44 l.addi r3,r3,1
45 l.j 2b
53 l.jr r9
58 l.j 1b
59 l.nop
79 l.bf 1f
82 l.j 2b
90 l.jr r9
95 l.j 1b
[all …]
/linux/arch/x86/include/asm/
H A Dlocal.h16 #define local_read(l) atomic_long_read(&(l)->a) argument
17 #define local_set(l, i) atomic_long_set(&(l)->a, (i)) argument
34 : "+m" (l->a.counter) in local_add()
120 #define local_inc_return(l) (local_add_return(1, l)) argument
121 #define local_dec_return(l) (local_sub_return(1, l)) argument
142 long c = local_read(l); in local_xchg()
171 #define local_inc_not_zero(l) local_add_unless((l), 1, 0) argument
177 #define __local_inc(l) local_inc(l) argument
178 #define __local_dec(l) local_dec(l) argument
179 #define __local_add(i, l) local_add((i), (l)) argument
[all …]
/linux/arch/mips/include/asm/
H A Dlocal.h19 #define local_read(l) atomic_long_read(&(l)->a) argument
20 #define local_set(l, i) atomic_long_set(&(l)->a, (i)) argument
22 #define local_add(i, l) atomic_long_add((i), (&(l)->a)) argument
23 #define local_sub(i, l) atomic_long_sub((i), (&(l)->a)) argument
24 #define local_inc(l) atomic_long_inc(&(l)->a) argument
25 #define local_dec(l) atomic_long_dec(&(l)->a) argument
134 #define local_dec_return(l) local_sub_return(1, (l)) argument
184 #define __local_inc(l) ((l)->a.counter++) argument
185 #define __local_dec(l) ((l)->a.counter++) argument
186 #define __local_add(i, l) ((l)->a.counter+=(i)) argument
[all …]
/linux/Documentation/networking/
H A Dtls-offload-layers.svg1l-960.0 0l0 -720.0z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000"…
/linux/arch/powerpc/include/asm/
H A Dlocal.h61 #define local_inc_return(l) local_add_return(1LL, l) argument
62 #define local_inc(l) local_inc_return(l) argument
75 #define local_dec(l) local_dec_return(l) argument
85 t = l->v; in local_cmpxchg()
87 l->v = n; in local_cmpxchg()
110 t = l->v; in local_xchg()
111 l->v = n; in local_xchg()
148 #define __local_inc(l) ((l)->v++) argument
149 #define __local_dec(l) ((l)->v++) argument
150 #define __local_add(i,l) ((l)->v+=(i)) argument
[all …]
/linux/drivers/video/fbdev/omap2/omapfb/dss/
H A Dpll.c244 u32 l; in dss_pll_write_config_type_a() local
246 l = 0; in dss_pll_write_config_type_a()
248 l = FLD_MOD(l, 1, 0, 0); /* PLL_STOPMODE */ in dss_pll_write_config_type_a()
259 l = 0; in dss_pll_write_config_type_a()
276 l = FLD_MOD(l, f, 4, 1); /* PLL_FREQSEL */ in dss_pll_write_config_type_a()
282 l = FLD_MOD(l, 1, 13, 13); /* PLL_REFEN */ in dss_pll_write_config_type_a()
335 u32 l; in dss_pll_write_config_type_b() local
337 l = 0; in dss_pll_write_config_type_b()
344 l = FLD_MOD(l, 0x1, 13, 13); /* PLL_REFEN */ in dss_pll_write_config_type_b()
351 l = FLD_MOD(l, 0x4, 3, 1); in dss_pll_write_config_type_b()
[all …]
/linux/arch/sh/lib/
H A Dmovmem.S28 sts.l pr,@-r15
53 lds.l @r15+,pr
179 mov.l @r5+,r0
181 mov.l @r5+,r1
184 mov.l @r5+,r1
186 mov.l @r5+,r2
187 mov.l @r5+,r3
194 mov.l @r5+,r0
201 mov.l r0,@r4
211 mov.l @r5,r0
[all …]

12345678910>>...52