Home
last modified time | relevance | path

Searched +full:25 +full:b (Results 1 – 25 of 1109) sorted by relevance

12345678910>>...45

/kernel/linux/linux-5.10/arch/alpha/lib/
Ddivide.S22 * $24 and $25, and return the result in $27. Register $28 may
43 * $25 - divisor
67 #define GETSIGN(x) xor $24,$25,x
104 bis $25,$25,divisor
128 bne compare,1b
134 bne compare,1b
146 bne mask,2b
162 * -a / b = a / -b = -(a / b)
163 * -a % b = -(a % b)
164 * a % -b = a % b
[all …]
Dev6-divide.S22 * $24 and $25, and return the result in $27. Register $28 may
43 * $25 - divisor
77 #define GETSIGN(x) xor $24,$25,x
114 bis $25,$25,divisor # E :
147 bne compare,1b # U : U L U L
157 bne compare,1b # U : U L U L
184 bne mask,2b # U : U L U L
189 bne mask,2b # U : U L L U
216 * -a / b = a / -b = -(a / b)
217 * -a % b = -(a % b)
[all …]
/kernel/linux/linux-5.10/arch/arm64/crypto/
Dsha512-ce-core.S15 .irp b,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19
16 .set .Lq\b, \b
17 .set .Lv\b\().2d, \b
88 ext v6.16b, v\i2\().16b, v\i3\().16b, #8
89 ext v5.16b, v5.16b, v5.16b, #8
90 ext v7.16b, v\i1\().16b, v\i2\().16b, #8
93 ext v5.16b, v\in3\().16b, v\in4\().16b, #8
122 CPU_LE( rev64 v12.16b, v12.16b )
123 CPU_LE( rev64 v13.16b, v13.16b )
124 CPU_LE( rev64 v14.16b, v14.16b )
[all …]
Dchacha-neon-core.S47 eor v3.16b, v3.16b, v0.16b
52 eor v4.16b, v1.16b, v2.16b
58 eor v3.16b, v3.16b, v0.16b
59 tbl v3.16b, {v3.16b}, v12.16b
63 eor v4.16b, v1.16b, v2.16b
65 sri v1.4s, v4.4s, #25
68 ext v1.16b, v1.16b, v1.16b, #4
70 ext v2.16b, v2.16b, v2.16b, #8
72 ext v3.16b, v3.16b, v3.16b, #12
76 eor v3.16b, v3.16b, v0.16b
[all …]
Dsha256-core.S_shipped83 b.ne .Lv8_entry
85 b.ne .Lneon_entry
120 eor w19,w20,w21 // a^b, b^c in next round
126 and w28,w28,w19 // (b^c)&=(a^b)
128 eor w28,w28,w21 // Maj(a,b,c)
130 add w27,w27,w28 // h+=Maj(a,b,c)
145 eor w28,w27,w20 // a^b, b^c in next round
151 and w19,w19,w28 // (b^c)&=(a^b)
153 eor w19,w19,w20 // Maj(a,b,c)
155 add w26,w26,w19 // h+=Maj(a,b,c)
[all …]
/kernel/linux/linux-5.10/drivers/tty/vt/
Dcp437.uni18 0x02 U+263b
20 0x04 U+2666 U+25c6
24 0x08 U+25d8
25 0x09 U+25cb
26 0x0a U+25d9
30 0x0e U+266b
32 0x10 U+25b6 U+25ba
33 0x11 U+25c0 U+25c4
38 0x16 U+25ac
46 0x1e U+25b2
[all …]
/kernel/linux/linux-5.10/arch/x86/crypto/
Dsha256-avx-asm.S107 b = %ebx define
148 c = b
149 b = a define
158 MY_ROR (25-11), y0 # y0 = e >> (25-11)
162 xor e, y0 # y0 = e ^ (e >> (25-11))
164 MY_ROR (11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6))
168 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6))
174 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25)
187 and b, y0 # y0 = (a|c)&b
190 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c)
[all …]
Dsha256-ssse3-asm.S100 b = %ebx define
142 c = b
143 b = a define
152 ror $(25-11), y0 # y0 = e >> (25-11)
156 xor e, y0 # y0 = e ^ (e >> (25-11))
158 ror $(11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6))
163 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6))
169 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25)
184 and b, y0 # y0 = (a|c)&b
187 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c)
[all …]
Dsha256-avx2-asm.S103 b = %ebx define
150 c = b
151 b = a define
159 rorx $25, e, y0 # y0 = e >> 25 # S1A
168 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1
174 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1
178 and b, y3 # y3 = (a|c)&b # MAJA
191 or T1, y3 # y3 = MAJ = (a|c)&b)|(a&c) # MAJ
207 rorx $25, e, y0 # y0 = e >> 25 # S1A
217 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1
[all …]
/kernel/linux/linux-5.10/drivers/ide/
Dide-timings.c33 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 },
34 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 },
35 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 },
44 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 },
45 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 },
109 void ide_timing_merge(struct ide_timing *a, struct ide_timing *b, in ide_timing_merge() argument
113 m->setup = max(a->setup, b->setup); in ide_timing_merge()
115 m->act8b = max(a->act8b, b->act8b); in ide_timing_merge()
117 m->rec8b = max(a->rec8b, b->rec8b); in ide_timing_merge()
119 m->cyc8b = max(a->cyc8b, b->cyc8b); in ide_timing_merge()
[all …]
/kernel/linux/linux-5.10/drivers/ata/
Dlibata-pata-timings.c31 { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 0, 120, 0 },
32 { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 0, 100, 0 },
41 { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 5, 120, 0 },
42 { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 5, 100, 0 },
43 { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 5, 80, 0 },
74 void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b, in ata_timing_merge() argument
78 m->setup = max(a->setup, b->setup); in ata_timing_merge()
80 m->act8b = max(a->act8b, b->act8b); in ata_timing_merge()
82 m->rec8b = max(a->rec8b, b->rec8b); in ata_timing_merge()
84 m->cyc8b = max(a->cyc8b, b->cyc8b); in ata_timing_merge()
[all …]
/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/ni_routing/ni_route_values/
Dni_mseries.c57 [B(NI_PFI(0))] = {
58 [B(TRIGGER_LINE(0))] = I(18),
59 [B(TRIGGER_LINE(1))] = I(19),
60 [B(TRIGGER_LINE(2))] = I(20),
61 [B(TRIGGER_LINE(3))] = I(21),
62 [B(TRIGGER_LINE(4))] = I(22),
63 [B(TRIGGER_LINE(5))] = I(23),
64 [B(TRIGGER_LINE(6))] = I(24),
65 [B(TRIGGER_LINE(7))] = I(25),
66 [B(NI_CtrSource(0))] = I(9),
[all …]
/kernel/linux/linux-5.10/arch/parisc/kernel/
Dperf_asm.S158 b,n perf_rdr_shift_in_W_leave
169 b,n perf_rdr_shift_in_W_leave
182 b,n perf_rdr_shift_in_W_leave
187 b,n perf_rdr_shift_in_W_leave
204 b,n perf_rdr_shift_in_W_leave
216 b,n perf_rdr_shift_in_W_leave
228 b,n perf_rdr_shift_in_W_leave
235 b,n perf_rdr_shift_in_W_leave
247 b,n perf_rdr_shift_in_W_leave
259 b,n perf_rdr_shift_in_W_leave
[all …]
/kernel/linux/linux-5.10/arch/arm/crypto/
Dsha512-core.S_shipped263 ldr r11,[sp,#8+0] @ b.lo
273 @ LO lo>>28^hi<<4 ^ hi>>2^lo<<30 ^ hi>>7^lo<<25
274 @ HI hi>>28^lo<<4 ^ lo>>2^hi<<30 ^ lo>>7^hi<<25
285 eor r9,r9,r5,lsl#25
286 eor r10,r10,r6,lsl#25 @ Sigma0(a)
291 ldr r10,[sp,#8+4] @ b.hi
297 orr r5,r5,r9 @ Maj(a,b,c).lo
300 orr r6,r6,r12 @ Maj(a,b,c).hi
312 @ LO lo>>1^hi<<31 ^ lo>>8^hi<<24 ^ lo>>7^hi<<25
326 eor r3,r3,r10,lsl#25
[all …]
/kernel/linux/linux-5.10/arch/powerpc/crypto/
Dsha256-spe-asm.S101 #define R_LOAD_W(a, b, c, d, e, f, g, h, w, off) \ argument
105 rotrwi rT2,e,25; /* 1: S1" = e rotr 25 */ \
123 or rT2,a,b; /* 1: maj = a or b */ \
124 and rT1,a,b; /* 1: maj' = a and b */ \
132 rotrwi rT2,d,25; /* 2: S1" = e rotr 25 */ \
147 or rT2,h,a; /* 2: maj = a or b */ \
149 and rT1,h,a; /* 2: maj' = a and b */ \
150 and rT2,rT2,b; /* 2: maj = maj and c */ \
156 #define R_CALC_W(a, b, c, d, e, f, g, h, w0, w1, w4, w5, w7, k, off) \ argument
162 evrlwi rT0,rT0,25; /* s0' = w[-15] rotr 7 */ \
[all …]
Dmd5-asm.S65 #define R_00_15(a, b, c, d, w0, w1, p, q, off, k0h, k0l, k1h, k1l) \ argument
67 and rT0,b,c; /* 1: f = b and c */ \
69 andc rT1,d,b; /* 1: f' = ~b and d */ \
80 add a,a,b; /* 1: a = a + b */ \
81 and rT0,a,b; /* 2: f = b and c */ \
82 andc rT1,c,a; /* 2: f' = ~b and d */ \
87 add d,d,a; /* 2: a = a + b */
89 #define R_16_31(a, b, c, d, w0, w1, p, q, k0h, k0l, k1h, k1l) \ argument
91 and rT1,b,d; /* 1: f' = b and d */ \
99 andc rT0,b,c; /* 2: f = c and ~d */ \
[all …]
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/benchs/
Drun_bench_ringbufs.sh34 for b in rb-libbpf rb-custom pb-libbpf pb-custom; do
35 summarize $b "$($RUN_BENCH $b)"
39 for b in rb-libbpf rb-custom pb-libbpf pb-custom; do
40 summarize $b "$($RUN_BENCH --rb-sampled $b)"
44 for b in rb-libbpf rb-custom pb-libbpf pb-custom; do
45 summarize $b "$($RUN_BENCH --rb-b2b $b)"
46 summarize $b-sampled "$($RUN_BENCH --rb-sampled --rb-b2b $b)"
50 for b in 1 5 10 25 50 100 250 500 1000 2000 3000; do
51 …summarize "rb-sampled-$b" "$($RUN_BENCH --rb-b2b --rb-batch-cnt $b --rb-sampled --rb-sample-rate $
54 for b in 1 5 10 25 50 100 250 500 1000 2000 3000; do
[all …]
/kernel/linux/linux-5.10/arch/arm/mach-davinci/
Dsleep.S19 /* Assume 25 MHz speed for the cycle conversions since PLLs are bypassed */
20 #define PLL_BYPASS_CYCLES (PLL_BYPASS_TIME * 25)
21 #define PLL_RESET_CYCLES (PLL_RESET_TIME * 25)
22 #define PLL_LOCK_CYCLES (PLL_LOCK_TIME * 25)
64 bne 1b
86 bne 2b
120 bne 3b
127 /* Wait for PLL to lock (assume prediv = 1, 25MHz OSCIN) */
130 bne 4b
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/pmu/ebb/
Debb_handler.S69 #define SAVE_VSR(n, b) li b, VSR_SAVE(n); stxvd2x n,b,r1 argument
70 #define LOAD_VSR(n, b) li b, VSR_SAVE(n); lxvd2x n,b,r1 argument
89 0: addis r2,r12,(.TOC.-0b)@ha; \
90 addi r2,r2,(.TOC.-0b)@l;
136 SAVE_GPR(25)
172 SAVE_VSR(25, r3)
234 TRASH_GPR(25)
284 LOAD_VSR(25, r3)
356 REST_GPR(25)
/kernel/linux/linux-5.10/drivers/watchdog/
Docteon-wdt-nmi.S65 SAVE_REG(25)
76 bgez a0, 1b
81 dla $25, octeon_wdt_nmi_stage3
83 jal $25
87 2: b 2b
/kernel/linux/linux-5.10/Documentation/driver-api/media/drivers/
Dzoran.rst33 Norms: PAL, SECAM (720x576 @ 25 fps), NTSC (720x480 @ 29.97 fps)
54 Norms: PAL, SECAM (720x576 @ 25 fps), NTSC (720x480 @ 29.97 fps)
75 Norms: PAL (720x576 @ 25 fps), NTSC (720x480 @ 29.97 fps)
92 Norms: PAL (720x576 @ 25 fps), NTSC (720x480 @ 29.97 fps)
109 Norms: PAL, SECAM (768x576 @ 25 fps), NTSC (640x480 @ 29.97 fps)
126 Norms: PAL, SECAM (768x576 @ 25 fps), NTSC (640x480 @ 29.97 fps)
144 Norms: PAL, SECAM (768x576 @ 25 fps), NTSC (640x480 @ 29.97 fps)
162 Norms: PAL, SECAM (768x576 @ 25 fps), NTSC (640x480 @ 29.97 fps)
180 Norms: PAL, SECAM (768x576 @ 25 fps), NTSC (640x480 @ 29.97 fps)
199 The CCIR has defined different standards: A,B,D,E,F,G,D,H,I,K,K1,L,M,N,...
[all …]
/kernel/linux/patches/linux-5.10/yangfan_patch/
Darch.patch1 diff --git a/arch/arm64/Makefile b/arch/arm64/Makefile
4 +++ b/arch/arm64/Makefile
24 diff --git a/arch/arm64/include/asm/system_info.h b/arch/arm64/include/asm/system_info.h
28 +++ b/arch/arm64/include/asm/system_info.h
44 diff --git a/arch/arm64/kernel/cpuinfo.c b/arch/arm64/kernel/cpuinfo.c
47 +++ b/arch/arm64/kernel/cpuinfo.c
48 @@ -25,6 +25,12 @@
61 diff --git a/arch/arm64/kernel/process.c b/arch/arm64/kernel/process.c
64 +++ b/arch/arm64/kernel/process.c
/kernel/linux/linux-5.10/arch/alpha/include/asm/
Dxor.h53 ldq $25,56($17) \n\
72 xor $25,$27,$25 \n\
76 stq $25,56($17) \n\
79 bgt $16,2b \n\
103 ldq $25,32($18) \n\
117 xor $24,$25,$25 # 5 cycles from $25 load \n\
127 xor $25,$27,$27 # 7 cycles from $27 load \n\
158 bgt $16,3b \n\
184 ldq $25,24($17) \n\
207 xor $25,$27,$27 # 8 cycles from $27 load \n\
[all …]
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
Dtbldo.S148 .long serror |$0b-0 ERROR - illegal extension
149 .long serror |$0b-1 ERROR - illegal extension
150 .long serror |$0b-2 ERROR - illegal extension
151 .long serror |$0b-3 ERROR - illegal extension
152 .long serror |$0b-4 ERROR - illegal extension
153 .long serror |$0b-5 ERROR - illegal extension
154 .long serror |$0b-6 ERROR - illegal extension
155 .long serror |$0b-7 ERROR - illegal extension
292 .long serror |$1b-0 ERROR - illegal extension
293 .long serror |$1b-1 ERROR - illegal extension
[all …]
/kernel/linux/linux-5.10/arch/arm/vfp/
Dvfphw.S196 b process_exception
215 b VFP_bounce @ we have handled this - the support
261 .org 1b + 8
263 .irp dr,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
266 .org 1b + 8
276 .org 1b + 8
278 .irp dr,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
281 .org 1b + 8
291 .org 1b + 8
296 .irp dr,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
[all …]

12345678910>>...45