Searched refs:s1 (Results 101 - 125 of 270) sorted by relevance

1234567891011

/linux-master/include/linux/
H A Dstring.h160 extern int strcasecmp(const char *s1, const char *s2);
163 extern int strncasecmp(const char *s1, const char *s2, size_t n);
301 extern bool sysfs_streq(const char *s1, const char *s2);
/linux-master/sound/pci/ac97/
H A Dac97_patch.h67 static int snd_ac97_swap_ctl(struct snd_ac97 *ac97, const char *s1,
/linux-master/arch/arm/crypto/
H A Dsha512-armv4.pl559 my ($t0,$t1,$s0,$s1) = map("q$_",(12..15)); # temps
567 vshr.u64 $s1,@X[($i+7)%8],#@sigma1[2]
571 veor $s1,$t0
573 veor $s1,$t1 @ sigma1(X[i+14])
575 vadd.i64 @X[$i%8],$s1
576 vshr.u64 $s1,$s0,#@sigma0[2]
580 veor $s1,$t0
584 veor $s1,$t1 @ sigma0(X[i+1])
586 vadd.i64 @X[$i%8],$s1
H A Dblake2s-core.S61 // columns/diagonals. s0-s1 are the word offsets to the message words the first
68 .macro _blake2s_quarterround a0, b0, c0, d0, a1, b1, c1, d1, s0, s1, s2, s3
91 ldr M_0, [sp, #32 + 4 * \s1]
128 .macro _blake2s_round s0, s1, s2, s3, s4, s5, s6, s7, \
135 \s0, \s1, \s2, \s3
/linux-master/include/crypto/
H A Daria.h41 static const u32 s1[256] = { variable
346 *t0 = s1[get_u8(*t0, 0)] ^
350 *t1 = s1[get_u8(*t1, 0)] ^
354 *t2 = s1[get_u8(*t2, 0)] ^
358 *t3 = s1[get_u8(*t3, 0)] ^
370 s1[get_u8(*t0, 2)] ^
374 s1[get_u8(*t1, 2)] ^
378 s1[get_u8(*t2, 2)] ^
382 s1[get_u8(*t3, 2)] ^
/linux-master/crypto/
H A Daria_generic.c229 (u8)(s1[get_u8(reg0, 2)]),
233 (u8)(s1[get_u8(reg1, 2)]),
237 (u8)(s1[get_u8(reg2, 2)]),
241 (u8)(s1[get_u8(reg3, 2)]),
/linux-master/arch/riscv/include/asm/
H A Dptrace.h25 unsigned long s1; member in struct:pt_regs
H A Dassembler.h42 REG_L s1, (SUSPEND_CONTEXT_REGS + PT_S1)(a0) variable
/linux-master/net/dccp/
H A Ddccp.h141 * @s1: last known sequence number before the loss ('hole')
145 static inline u64 dccp_loss_count(const u64 s1, const u64 s2, const u64 ndp) argument
147 s64 delta = dccp_delta_seqno(s1, s2);
158 static inline bool dccp_loss_free(const u64 s1, const u64 s2, const u64 ndp)
160 return dccp_loss_count(s1, s2, ndp) == 0;
/linux-master/arch/x86/kernel/cpu/microcode/
H A Dintel.c87 static inline bool cpu_signatures_match(struct cpu_signature *s1, unsigned int sig2, argument
90 if (s1->sig != sig2)
94 return ((!s1->pf && !pf2) || (s1->pf & pf2));
/linux-master/fs/hfs/
H A Dstring.c74 * ROMlib_RelString(s1+1, s2+1, true, false, (s1[0]<<16) | s2[0])
76 int hfs_strcmp(const unsigned char *s1, unsigned int len1, argument
84 tmp = (int)caseorder[*(s1++)] - (int)caseorder[*(s2++)];
/linux-master/arch/arc/lib/
H A Dstrcmp-archs.S13 ;;; s1 and s2 are word aligned
/linux-master/arch/powerpc/kvm/
H A Dbook3s_rtas.c136 static int rtas_name_matches(char *s1, char *s2) argument
139 return !strncmp(s1, s2, sizeof(args.name));
/linux-master/arch/riscv/kernel/
H A Dcrash_save_regs.S22 REG_S s1, PT_S1(a0) /* x9 */
H A Dsuspend_entry.S26 REG_S s1, (SUSPEND_CONTEXT_REGS + PT_S1)(a0)
/linux-master/lib/crypto/
H A Dsha256.c52 #define s1(x) (ror32(x, 17) ^ ror32(x, 19) ^ (x >> 10)) macro
61 W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16];
/linux-master/tools/include/nolibc/
H A Dstring.h19 int memcmp(const void *s1, const void *s2, size_t n) argument
24 while (ofs < n && !(c1 = ((unsigned char *)s1)[ofs] - ((unsigned char *)s2)[ofs])) {
/linux-master/arch/loongarch/kernel/
H A Dentry.S93 move a0, s1
/linux-master/tools/testing/selftests/bpf/
H A Dveristat.c1138 static int cmp_stat(const struct verif_stats *s1, const struct verif_stats *s2, argument
1145 cmp = strcmp(s1->file_name, s2->file_name);
1148 cmp = strcmp(s1->prog_name, s2->prog_name);
1157 long v1 = s1->stats[id];
1179 const struct verif_stats *s1 = v1, *s2 = v2; local
1183 cmp = cmp_stat(s1, s2, env.sort_spec.ids[i],
1190 cmp = strcmp(s1->file_name, s2->file_name);
1193 return strcmp(s1->prog_name, s2->prog_name);
1251 static int cmp_join_stat(const struct verif_stats_join *s1, argument
1260 fetch_join_stat_value(s1, i
1278 const struct verif_stats_join *s1 = v1, *s2 = v2; local
[all...]
/linux-master/arch/x86/crypto/
H A Dtwofish-avx-x86_64-asm_64.S26 #define s1 1024 define
119 G(RGI1, RGI2, x1, s0, s1, s2, s3); \
125 G(RGI3, RGI4, y1, s1, s2, s3, s0); \
131 G(RGI1, RGI2, x2, s0, s1, s2, s3); \
135 G(RGI3, RGI4, y2, s1, s2, s3, s0); \
/linux-master/drivers/acpi/
H A Dmipi-disco-img.c738 static const char *strnext(const char *s1, const char *s2) argument
740 s1 = strstr(s1, s2);
742 if (!s1)
745 return s1 + strlen(s2);
/linux-master/arch/s390/kernel/
H A Dsysinfo.c483 #define STSI_FILE(fc, s1, s2) \
484 static int stsi_open_##fc##_##s1##_##s2(struct inode *inode, struct file *file)\
489 if (stsi(file->private_data, fc, s1, s2)) { \
497 static const struct file_operations stsi_##fc##_##s1##_##s2##_fs_ops = { \
498 .open = stsi_open_##fc##_##s1##_##s2, \
/linux-master/drivers/gpu/drm/radeon/
H A Dcypress_dpm.c960 mc_reg_table->address[i].s1 =
961 cpu_to_be16(eg_pi->mc_reg_table.mc_reg_address[j].s1);
975 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_RAS_TIMING >> 2;
979 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_CAS_TIMING >> 2;
983 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_MISC_TIMING >> 2;
987 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_MISC_TIMING2 >> 2;
991 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_RD_CTL_D0 >> 2;
995 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_RD_CTL_D1 >> 2;
999 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_WR_CTL_D0 >> 2;
1003 eg_pi->mc_reg_table.mc_reg_address[i].s1
[all...]
/linux-master/arch/sparc/kernel/
H A Dvisemul.c461 s16 s1, s2; local
463 s1 = (rs1 >> (56 - (i * 8))) & 0xff;
467 s1 -= s2;
468 if (s1 < 0)
469 s1 = ~s1 + 1;
471 rd_val += s1;
/linux-master/drivers/video/fbdev/aty/
H A Dradeon_monitor.c376 char s1[5], s2[5]; local
387 s1[i] = '\0';
400 s1[i] = *s;
411 s1[i] = 0;
414 if (strcmp(s1, "CRT") == 0)
416 else if (strcmp(s1, "TMDS") == 0)
418 else if (strcmp(s1, "LVDS") == 0)

Completed in 402 milliseconds

1234567891011