Searched refs:s2 (Results 151 - 175 of 229) sorted by relevance

12345678910

/linux-master/drivers/scsi/
H A Dimm.c458 unsigned char s1, s2, s3; local
472 s2 = r_str(ppb) & 0xb8;
513 if ((s1 == 0xb8) && (s2 == 0x18) && (s3 == 0x30))
515 if ((s1 == 0xb8) && (s2 == 0x18) && (s3 == 0x38))
/linux-master/arch/riscv/include/asm/
H A Dkvm_host.h145 unsigned long s2; member in struct:kvm_cpu_context
/linux-master/drivers/gpu/drm/
H A Ddrm_buddy.c95 static inline bool overlaps(u64 s1, u64 e1, u64 s2, u64 e2) argument
97 return s1 <= e2 && e1 >= s2;
100 static inline bool contains(u64 s1, u64 e1, u64 s2, u64 e2) argument
102 return s1 <= s2 && e1 >= e2;
/linux-master/arch/mips/crypto/
H A Dpoly1305-mips.pl42 ($s0,$s1,$s2,$s3,$s4,$s5,$s6,$s7,$s8,$s9,$s10,$s11)=map("\$$_",(12..23));
59 # ($s0,$s1,$s2,$s3,$s4,$s5,$s6,$s7)=map("\$$_",(16..23));
227 ($s0,$s1,$s2,$s3,$s4,$s5,$in0,$in1,$t2);
263 sd $s2,16($sp)
432 ld $s2,16($sp)
734 ($s0,$s1,$s2,$s3,$s4, $s5,$s6,$s7,$s8, $s9,$s10,$s11);
760 sw $s2, 4*2($sp)
925 maddu $rs2,$d2 # d2*s2
935 maddu $rs2,$d3 # d3*s2
945 maddu $rs2,$h4 # h4*s2
[all...]
/linux-master/drivers/char/ipmi/
H A Dipmi_ssif.c1377 static int strcmp_nospace(char *s1, char *s2) argument
1379 while (*s1 && *s2) {
1382 while (isspace(*s2))
1383 s2++;
1384 if (*s1 > *s2)
1386 if (*s1 < *s2)
1389 s2++;
/linux-master/include/net/
H A Dxfrm.h925 static inline bool xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2) argument
927 return ((!s1 && !s2) ||
928 (s1 && s2 &&
929 (s1->ctx_sid == s2->ctx_sid) &&
930 (s1->ctx_doi == s2->ctx_doi) &&
931 (s1->ctx_alg == s2->ctx_alg)));
934 static inline bool xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2) argument
/linux-master/drivers/block/
H A Dxen-blkfront.c1363 enum blk_req_status s2)
1366 BUG_ON(s2 < REQ_DONE);
1368 if (s1 == REQ_ERROR || s2 == REQ_ERROR)
1370 else if (s1 == REQ_EOPNOTSUPP || s2 == REQ_EOPNOTSUPP)
1399 struct blk_shadow *s2 = &rinfo->shadow[s->associated_id]; local
1405 if (s2->status < REQ_DONE)
1409 s2->status);
1415 num_grant += s2->req.u.rw.nr_segments;
1421 if (s2->num_sg != 0) {
1424 s = s2;
1362 blkif_get_final_status(enum blk_req_status s1, enum blk_req_status s2) argument
[all...]
/linux-master/arch/x86/crypto/
H A Dchacha-ssse3-x86_64.S150 # o2 = i2 ^ (x2 + s2)
537 # x8[0-3] += s2[0]
538 # x9[0-3] += s2[1]
544 # x10[0-3] += s2[2]
545 # x11[0-3] += s2[3]
H A Dcast5-avx-x86_64-asm_64.S28 #define s2 cast_s2 define
90 leaq s2(%rip), RID1; \
H A Dsm4-aesni-avx2-asm_64.S182 #define ROUND(round, s0, s1, s2, s3, r0, r1, r2, r3) \
188 vpxor s2, RX0, RX0; \
189 vpxor s3, RX0, RX0; /* s1 ^ s2 ^ s3 ^ rk */ \
/linux-master/arch/arm64/crypto/
H A Dsm3-neon-core.S66 #define s2 w25 define
507 ldp s2, s3, [RSTATE, #8]
514 eor rc, rc, s2
532 ldp s2, s3, [RSTATE, #8]
542 eor rc, rc, s2
/linux-master/arch/powerpc/perf/
H A Dhv-24x7.c608 static int memord(const void *d1, size_t s1, const void *d2, size_t s2) argument
610 if (s1 < s2)
612 if (s1 > s2)
619 const void *v2, size_t s2, unsigned int d2)
621 int r = memord(v1, s1, v2, s2);
618 ev_uniq_ord(const void *v1, size_t s1, unsigned int d1, const void *v2, size_t s2, unsigned int d2) argument
/linux-master/fs/ceph/
H A Dsuper.c636 static int strcmp_null(const char *s1, const char *s2) argument
638 if (!s1 && !s2)
640 if (s1 && !s2)
642 if (!s1 && s2)
644 return strcmp(s1, s2);
/linux-master/arch/x86/kernel/apic/
H A Dx2apic_uv_x.c118 uv_cpuid.m_skt = m_n_config.s2.m_skt;
1092 if (unlikely(mmioh.s2.enable == 0))
1097 mmioh.s2.base, mmioh.s2.m_io, mmioh.s2.n_io);
/linux-master/scripts/kconfig/
H A Dsymbol.c890 const struct sym_match *s2 = sym2; local
896 * - if matched length on symbol s2 is the length of that symbol,
903 exact2 = (s2->eo - s2->so) == strlen(s2->sym->name);
910 return strcmp(s1->sym->name, s2->sym->name);
/linux-master/net/rxrpc/
H A Drxkad.c692 const struct rxkad_key *s2)
721 iov[2].iov_base = (void *)s2->ticket;
722 iov[2].iov_len = s2->ticket_len;
762 const struct rxkad_key *s2)
773 memcpy(&iv, s2->session_key, sizeof(iv));
689 rxkad_send_response(struct rxrpc_connection *conn, struct rxrpc_host_header *hdr, struct rxkad_response *resp, const struct rxkad_key *s2) argument
760 rxkad_encrypt_response(struct rxrpc_connection *conn, struct rxkad_response *resp, const struct rxkad_key *s2) argument
/linux-master/drivers/hwmon/pmbus/
H A Dpmbus_core.c53 struct pmbus_sensor *s2; member in struct:pmbus_boolean
1064 * sensor values referenced by sensor attribute pointers s1 and s2).
1066 * To determine if an object exceeds upper limits, specify <s1,s2> = <v,limit>.
1067 * To determine if an object exceeds lower limits, specify <s1,s2> = <limit,v>.
1077 struct pmbus_sensor *s2 = b->s2; local
1093 if (s2)
1094 pmbus_update_sensor_data(client, s2);
1102 if (s1 && s2) {
1109 if (s2
1241 pmbus_add_boolean(struct pmbus_data *data, const char *name, const char *type, int seq, struct pmbus_sensor *s1, struct pmbus_sensor *s2, u8 page, u16 reg, u16 mask) argument
[all...]
/linux-master/drivers/video/fbdev/
H A Dtridentfb.c359 u32 s2 = point(x1 + w - 1, y1 + h - 1); local
369 writemmr(par, SRC1, direction ? s2 : s1);
370 writemmr(par, SRC2, direction ? s1 : s2);
521 u32 s2 = point(x1 + w - 1, y1 + h - 1); local
531 writemmr(par, SRC1, direction ? s2 : s1);
532 writemmr(par, SRC2, direction ? s1 : s2);
/linux-master/drivers/media/rc/keymaps/
H A DMakefile117 rc-terratec-cinergy-s2-hd.o \
/linux-master/net/ethtool/
H A Dstats.c461 const u64 *s2 = pmac_stats + stats_offset; local
466 s[i] = ethtool_stats_sum(s1[i], s2[i]);
/linux-master/fs/hfsplus/
H A Dhfsplus_fs.h518 const struct hfsplus_unistr *s2);
520 const struct hfsplus_unistr *s2);
/linux-master/drivers/media/dvb-frontends/cxd2880/
H A Dcxd2880_dvbt2.h295 u8 s2; member in struct:cxd2880_dvbt2_l1pre
H A Dcxd2880_tnrdmd_dvbt2_mon.c257 l1_pre->s2 = data[3] & 0x0f;
298 switch ((l1_pre->s2 >> 1)) {
323 switch ((l1_pre->s2 >> 1)) {
345 l1_pre->mixed = l1_pre->s2 & 0x01;
/linux-master/crypto/
H A Dcast5_generic.c291 #define s2 cast_s2 macro
296 (((s1[I >> 24] ^ s2[(I>>16)&0xff]) - s3[(I>>8)&0xff]) + s4[I&0xff]))
298 (((s1[I >> 24] - s2[(I>>16)&0xff]) + s3[(I>>8)&0xff]) ^ s4[I&0xff]))
300 (((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s3[(I>>8)&0xff]) - s4[I&0xff]))
/linux-master/drivers/hwmon/
H A Dnct6683.c361 bool s2; /* true if both index and nr are used */ member in struct:sensor_device_template
381 .s2 = false }
388 .s2 = true }
452 if ((*t)->s2) {

Completed in 284 milliseconds

12345678910