Searched refs:s1 (Results 76 - 100 of 270) sorted by relevance

1234567891011

/linux-master/arch/mips/include/asm/
H A Dasmmacro-32.h66 LONG_S s1, THREAD_REG17(\thread) variable
79 LONG_L s1, THREAD_REG17(\thread) variable
/linux-master/tools/perf/util/
H A Dhelp-unknown-cmd.c26 const char *s1 = (*c1)->name, *s2 = (*c2)->name; local
29 return l1 != l2 ? l1 - l2 : strcmp(s1, s2);
H A Dstream.c229 char *s1, *s2; local
256 s1 = callchain_list__sym_name(base_chain, cbuf1, sizeof(cbuf1),
261 scnprintf(buf1, sizeof(buf1), "%35s\t%35s", s1, s2);
/linux-master/drivers/infiniband/hw/hfi1/
H A Dexp_rcv.h120 struct exp_tid_set *s1,
123 tid_group_remove(group, s1);
119 tid_group_move(struct tid_group *group, struct exp_tid_set *s1, struct exp_tid_set *s2) argument
/linux-master/scripts/mod/
H A Dsymsearch.c30 static int syminfo_compare(const void *s1, const void *s2) argument
32 const struct syminfo *sym1 = s1;
/linux-master/lib/
H A Dstring_helpers.c875 * @s1: one string
883 bool sysfs_streq(const char *s1, const char *s2) argument
885 while (*s1 && *s1 == *s2) {
886 s1++;
890 if (*s1 == *s2)
892 if (!*s1 && *s2 == '\n' && !s2[1])
894 if (*s1 == '\n' && !s1[1] && !*s2)
/linux-master/arch/x86/boot/
H A Dboot.h155 static inline bool memcmp_fs(const void *s1, addr_t s2, size_t len) argument
159 : CC_OUT(nz) (diff), "+D" (s1), "+S" (s2), "+c" (len));
162 static inline bool memcmp_gs(const void *s1, addr_t s2, size_t len) argument
166 : CC_OUT(nz) (diff), "+D" (s1), "+S" (s2), "+c" (len));
/linux-master/crypto/
H A Decdsa.c98 u64 s1[ECC_MAX_DIGITS]; local
114 /* s1 = (s^-1) mod n */
115 vli_mod_inv(s1, s, curve->n, ndigits);
116 /* u1 = (hash * s1) mod n */
117 vli_mod_mult_slow(u1, hash, s1, curve->n, ndigits);
118 /* u2 = (r * s1) mod n */
119 vli_mod_mult_slow(u2, r, s1, curve->n, ndigits);
/linux-master/arch/powerpc/lib/
H A Dmemcpy_64.S124 # s1<< in r8, d0=(s0<<|s1>>) in r7, s3 in r0, s2 in r9, nix in r6 & r12
142 # d0=(s0<<|s1>>) in r12, s1<< in r6, s2>> in r7, s2<< in r8, s3 in r9
/linux-master/tools/testing/selftests/powerpc/copyloops/
H A Dmemcpy_64.S124 # s1<< in r8, d0=(s0<<|s1>>) in r7, s3 in r0, s2 in r9, nix in r6 & r12
142 # d0=(s0<<|s1>>) in r12, s1<< in r6, s2>> in r7, s2<< in r8, s3 in r9
/linux-master/arch/x86/crypto/
H A Dblowfish-x86_64-asm_64.S16 #define s1 ((16 + 2 + (1 * 256)) * 4) define
65 addl s1(CTX,RT1,4), RT0d; \
180 addl s1(CTX,RT2,4), RT0d; \
H A Dtwofish-x86_64-asm_64-3way.S15 #define s1 1024 define
144 g1g2_3(ab, cd, s0, s1, s2, s3, s0, s1, s2, s3, RX, RY); \
151 g1g2_3(ba, dc, s1, s2, s3, s0, s3, s0, s1, s2, RY, RX); \
/linux-master/tools/testing/selftests/bpf/progs/
H A Dnetif_receive_skb.c39 const unsigned char *s1 = m1; local
44 delta = s1[i] - s2[i];
45 if (delta || s1[i] == 0 || s2[i] == 0)
/linux-master/lib/crypto/
H A Dpoly1305-donna64.c39 u64 s1, s2; local
57 s1 = key->precomputed_s.r64[0];
75 d = (u128)h2 * s1;
H A Dpoly1305-donna32.c37 u32 s1, s2, s3, s4; local
53 s1 = key->precomputed_s.r[0];
75 ((u64)h4 * s1);
/linux-master/arch/powerpc/crypto/
H A Dpoly1305-p10le_64.S25 # 07/22/21 - this revison based on the above sum of products. Setup r^4, r^3, r^2, r and s3, s2, s1, s0
857 add 19, 21, 10 # s1: r19 - (r1 >> 2) *5
861 mtvsrdd 32+0, 9, 19 # r0, s1
863 mtvsrdd 32+2, 19, 25 # s1
871 # v0 = (r0, s1), v1 = (r1, r0), v2 = s1, v3 = r0
877 # d0 = h0 * r0 + h1 * s1
878 vmsumudm 7, 6, 0, 9 # h0 * r0, h1 * s1
880 # d1 = h0 * r1 + h1 * r0 + h2 * s1
882 vmsumudm 10, 8, 2, 11 # d1 += h2 * s1
[all...]
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
H A Dampdu.c830 u32 s1, u32 s2)
869 WARN_ON(s1 & TX_STATUS_INTERMEDIATE);
870 WARN_ON(!(s1 & TX_STATUS_AMPDU));
873 (s1 & TX_STATUS_BA_BMAP47_MASK) <<
875 bitmap[1] = (s1 >> 8) & 0xff;
876 bitmap[2] = (s1 >> 16) & 0xff;
877 bitmap[3] = (s1 >> 24) & 0xff;
1021 u32 s1 = 0, s2 = 0; local
1031 s1 = bcma_read32(wlc->hw->d11core, D11REGOFFS(frmtxstatus));
1032 while ((s1
828 brcms_c_ampdu_dotxstatus_complete(struct ampdu_info *ampdu, struct scb *scb, struct sk_buff *p, struct tx_status *txs, u32 s1, u32 s2) argument
[all...]
/linux-master/arch/mips/alchemy/devboards/
H A Ddb1000.c454 int c0, c1, d0, d1, s0, s1, flashsize = 32, twosocks = 1; local
464 s1 = AU1500_GPIO4_INT;
471 s1 = AU1100_GPIO4_INT;
508 s1 = AU1000_GPIO4_INT;
556 irq_set_irq_type(s1, IRQ_TYPE_LEVEL_LOW);
565 c1, d1, /*s1*/0, 0, 1);
/linux-master/fs/nfs/
H A Dnfs4_fs.h605 static inline bool nfs4_stateid_is_newer(const nfs4_stateid *s1, const nfs4_stateid *s2) argument
607 return (s32)(be32_to_cpu(s1->seqid) - be32_to_cpu(s2->seqid)) > 0;
610 static inline bool nfs4_stateid_is_next(const nfs4_stateid *s1, const nfs4_stateid *s2) argument
612 u32 seq1 = be32_to_cpu(s1->seqid);
624 static inline void nfs4_stateid_seqid_inc(nfs4_stateid *s1) argument
626 u32 seqid = be32_to_cpu(s1->seqid);
630 s1->seqid = cpu_to_be32(seqid);
/linux-master/arch/arm/crypto/
H A Daes-neonbs-core.S193 t0, t1, t2, t3, s0, s1, s2, s3
197 veor \s1, \x7, \x6
207 vand \s1, \s1, \t1
210 veor \t3, \t3, \s1
211 veor \t2, \t2, \s1
212 vand \s1, \t1, \s0
215 veor \t0, \t0, \s1
221 vand \s1, \x6, \x2
227 veor \t2, \t2, \s1
[all...]
/linux-master/arch/arm64/crypto/
H A Daes-neonbs-core.S139 t0, t1, t2, t3, s0, s1, s2, s3
143 eor \s1, \x7, \x6
153 and \s1, \s1, \t1
156 eor \t3, \t3, \s1
157 eor \t2, \t2, \s1
158 and \s1, \t1, \s0
161 eor \t0, \t0, \s1
167 and \s1, \x6, \x2
173 eor \t2, \t2, \s1
[all...]
/linux-master/arch/powerpc/platforms/powermac/
H A Dnvram.c564 unsigned int s1 = 0, s2 = 0; local
578 s1 = resource_size(&r1);
593 nvram_data = ioremap(r1.start, s1);
599 nvram_data = ioremap(r1.start, s1);
600 nvram_mult = (s1 + NVRAM_SIZE - 1) / NVRAM_SIZE;
605 nvram_addr = ioremap(r1.start, s1);
/linux-master/arch/mips/kernel/
H A Dgenex.S193 move s1, sp # Preserve the sp
220 LONG_S s1, 0(sp)
225 move sp, s1
304 move s1, sp # Preserve the sp
331 LONG_S s1, 0(sp)
337 move sp, s1
/linux-master/tools/perf/util/bpf_skel/
H A Dkwork_trace.bpf.c74 static __always_inline int local_strncmp(const char *s1, argument
81 ret = (unsigned char)s1[i] - (unsigned char)s2[i];
82 if (ret || !s1[i] || !s2[i])
/linux-master/drivers/accessibility/speakup/
H A Dspeakup_keypc.c142 int s1, s2, s3, s4; local
144 s1 = inb_p(synth_port);
148 pr_warn("synth timeout %d %d %d %d\n", s1, s2, s3, s4);

Completed in 229 milliseconds

1234567891011