/linux-4.1.27/tools/testing/selftests/powerpc/stringloops/ |
D | memcmp.c | 9 int test_memcmp(const void *s1, const void *s2, size_t n); 12 static void test_one(char *s1, char *s2) in test_one() argument 21 y = memcmp(s1+offset, s2+offset, size); in test_one() 22 x = test_memcmp(s1+offset, s2+offset, size); in test_one() 29 printf("%02x ", s1[i]); in test_one() 43 char *s1; in testcase() local 47 s1 = memalign(128, SIZE); in testcase() 48 if (!s1) { in testcase() 66 s1[j] = random(); in testcase() 68 memcpy(s2, s1, SIZE); in testcase() [all …]
|
/linux-4.1.27/arch/ia64/lib/ |
D | idiv64.S | 27 # define INT_TO_FP(a,b) fcvt.xuf.s1 a=b 28 # define FP_TO_INT(a,b) fcvt.fxu.trunc.s1 a=b 32 # define FP_TO_INT(a,b) fcvt.fx.trunc.s1 a=b 49 frcpa.s1 f11, p6 = f8, f9 // y0 = frcpa(b) 51 (p6) fmpy.s1 f7 = f8, f11 // q0 = a*y0 52 (p6) fnma.s1 f6 = f9, f11, f1 // e0 = -b*y0 + 1 54 (p6) fma.s1 f10 = f7, f6, f7 // q1 = q0*e0 + q0 55 (p6) fmpy.s1 f7 = f6, f6 // e1 = e0*e0 60 (p6) fma.s1 f10 = f10, f7, f10 // q2 = q1*e1 + q1 61 (p6) fma.s1 f6 = f11, f6, f11 // y1 = y0*e0 + y0 [all …]
|
D | idiv32.S | 28 # define INT_TO_FP(a,b) fcvt.xuf.s1 a=b 29 # define FP_TO_INT(a,b) fcvt.fxu.trunc.s1 a=b 34 # define FP_TO_INT(a,b) fcvt.fx.trunc.s1 a=b 59 frcpa.s1 f6, p6 = f8, f9 // y0 = frcpa(b) 61 (p6) fmpy.s1 f8 = f8, f6 // q0 = a*y0 62 (p6) fnma.s1 f6 = f9, f6, f1 // e0 = -b*y0 + 1 67 (p6) fma.s1 f8 = f6, f8, f8 // q1 = e0*q0 + q0 68 (p6) fma.s1 f6 = f6, f6, f7 // e1 = e0*e0 + 2^-34 73 (p6) fma.s1 f6 = f6, f8, f8 // q2 = e1*q1 + q1
|
D | xor.S | 40 .rotr s1[6+1], s2[6+1], d[2] 43 (p[0]) ld8.nta s1[0] = [r16], 8 45 (p[6]) xor d[0] = s1[6], s2[6] 78 .rotr s1[6+1], s2[6+1], s3[6+1], d[2] 81 (p[0]) ld8.nta s1[0] = [r16], 8 83 (p[6]) xor d[0] = s1[6], s2[6] 119 .rotr s1[6+1], s2[6+1], s3[6+1], s4[6+1], d[2] 122 (p[0]) ld8.nta s1[0] = [r16], 8 124 (p[6]) xor d[0] = s1[6], s2[6] 163 .rotr s1[6+1], s2[6+1], s3[6+1], s4[6+1], s5[6+1], d[2] [all …]
|
/linux-4.1.27/arch/x86/boot/ |
D | string.c | 18 int memcmp(const void *s1, const void *s2, size_t len) in memcmp() argument 22 : "=qm" (diff), "+D" (s1), "+S" (s2), "+c" (len)); in memcmp() 28 const unsigned char *s1 = (const unsigned char *)str1; in strcmp() local 32 while (*s1 || *s2) { in strcmp() 33 delta = *s1 - *s2; in strcmp() 36 s1++; in strcmp() 142 char *strstr(const char *s1, const char *s2) in strstr() argument 148 return (char *)s1; in strstr() 149 l1 = strlen(s1); in strstr() 152 if (!memcmp(s1, s2, l2)) in strstr() [all …]
|
D | boot.h | 180 static inline int memcmp_fs(const void *s1, addr_t s2, size_t len) in memcmp_fs() argument 184 : "=qm" (diff), "+D" (s1), "+S" (s2), "+c" (len)); in memcmp_fs() 187 static inline int memcmp_gs(const void *s1, addr_t s2, size_t len) in memcmp_gs() argument 191 : "=qm" (diff), "+D" (s1), "+S" (s2), "+c" (len)); in memcmp_gs()
|
D | string.h | 11 int memcmp(const void *s1, const void *s2, size_t len);
|
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/ |
D | obd_mount.c | 147 char *s1, char *s2, char *s3, char *s4) in do_lcfg() argument 154 cmd, s1, s2, s3, s4); in do_lcfg() 157 if (s1) in do_lcfg() 158 lustre_cfg_bufs_set_string(&bufs, 1, s1); in do_lcfg() 178 char *s1, char *s2, char *s3, char *s4) in lustre_start_simple() argument 188 rc = do_lcfg(obdname, 0, LCFG_SETUP, s1, s2, s3, s4); in lustre_start_simple() 839 const char *s1 = ptr, *s2; in lmd_make_exclusion() local 854 while (*s1 && *s1 != ' ' && *s1 != ',') { in lmd_make_exclusion() 855 s1++; in lmd_make_exclusion() 856 rc = server_name2index(s1, &index, &s2); in lmd_make_exclusion() [all …]
|
D | lprocfs_status.c | 1929 static char *lprocfs_strnstr(const char *s1, const char *s2, size_t len) in lprocfs_strnstr() argument 1935 return (char *)s1; in lprocfs_strnstr() 1938 if (!memcmp(s1, s2, l2)) in lprocfs_strnstr() 1939 return (char *)s1; in lprocfs_strnstr() 1940 s1++; in lprocfs_strnstr()
|
/linux-4.1.27/scripts/coccinelle/misc/ |
D | simple_return.cocci | 47 @s1 depends on context || org || report@ 61 identifier s1.i; 63 position q,s1.p; 73 position p1!=s1.p1; 74 position p2!=s1.p2; 84 p << s1.p; 85 p1 << s1.p1; 94 p << s1.p; 95 p2 << s1.p2; 104 p << s1.p; [all …]
|
/linux-4.1.27/tools/perf/tests/ |
D | sample-parsing.c | 12 if (s1->m != s2->m) { \ 19 if (memcmp(&s1->m, &s2->m, sizeof(s1->m))) { \ 25 static bool samples_same(const struct perf_sample *s1, in samples_same() argument 71 for (i = 0; i < s1->read.group.nr; i++) in samples_same() 80 for (i = 0; i < s1->callchain->nr; i++) in samples_same() 86 if (memcmp(s1->raw_data, s2->raw_data, s1->raw_size)) { in samples_same() 94 for (i = 0; i < s1->branch_stack->nr; i++) in samples_same() 99 size_t sz = hweight_long(s1->user_regs.mask) * sizeof(u64); in samples_same() 103 if (s1->user_regs.abi && in samples_same() 104 (!s1->user_regs.regs || !s2->user_regs.regs || in samples_same() [all …]
|
/linux-4.1.27/lib/ |
D | string.c | 37 int strncasecmp(const char *s1, const char *s2, size_t len) in strncasecmp() argument 46 c1 = *s1++; in strncasecmp() 63 int strcasecmp(const char *s1, const char *s2) in strcasecmp() argument 68 c1 = tolower(*s1++); in strcasecmp() 527 bool sysfs_streq(const char *s1, const char *s2) in sysfs_streq() argument 529 while (*s1 && *s1 == *s2) { in sysfs_streq() 530 s1++; in sysfs_streq() 534 if (*s1 == *s2) in sysfs_streq() 536 if (!*s1 && *s2 == '\n' && !s2[1]) in sysfs_streq() 538 if (*s1 == '\n' && !s1[1] && !*s2) in sysfs_streq() [all …]
|
D | test-string_helpers.c | 122 struct test_string_1 s1[TEST_STRING_2_MAX_S1]; member 128 .s1 = {{ 142 .s1 = {{ 156 .s1 = {{ 212 .s1 = {{ 223 .s1 = {{ 231 .s1 = {{ 244 const struct test_string_1 *s1 = s2->s1; in test_string_find_match() local 257 for (i = 0; i < TEST_STRING_2_MAX_S1 && s1->out; i++, s1++) in test_string_find_match() 258 if (s1->flags == flags) in test_string_find_match() [all …]
|
D | random32.c | 62 state->s1 = TAUSWORTHE(state->s1, 6U, 13U, 4294967294U, 18U); in prandom_u32_state() 67 return (state->s1 ^ state->s2 ^ state->s3 ^ state->s4); in prandom_u32_state() 165 state->s1 = __seed(HWSEED() ^ LCG(seed), 2U); in prandom_seed_early() 166 state->s2 = __seed(HWSEED() ^ LCG(state->s1), 8U); in prandom_seed_early() 187 state->s1 = __seed(state->s1 ^ entropy, 2U); in prandom_seed() 275 state->s1 = __seed(seeds[0], 2U); in __prandom_reseed()
|
/linux-4.1.27/include/linux/ |
D | zutil.h | 57 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;} 82 unsigned long s1 = adler & 0xffff; in zlib_adler32() local 97 s1 += *buf++; in zlib_adler32() 98 s2 += s1; in zlib_adler32() 100 s1 %= BASE; in zlib_adler32() 103 return (s2 << 16) | s1; in zlib_adler32()
|
D | string.h | 44 extern int strcasecmp(const char *s1, const char *s2); 47 extern int strncasecmp(const char *s1, const char *s2, size_t n); 125 extern bool sysfs_streq(const char *s1, const char *s2);
|
D | random.h | 34 __u32 s1, s2, s3, s4; member 74 state->s1 = __seed(i, 2U); in prandom_seed_state()
|
D | nls.h | 75 static inline int nls_strnicmp(struct nls_table *t, const unsigned char *s1, in nls_strnicmp() argument 79 if (nls_tolower(t, *s1++) != nls_tolower(t, *s2++)) in nls_strnicmp()
|
D | of.h | 217 #define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2)) argument 218 #define of_prop_cmp(s1, s2) strcmp((s1), (s2)) argument 219 #define of_node_cmp(s1, s2) strcasecmp((s1), (s2)) argument
|
/linux-4.1.27/arch/sparc/include/asm/ |
D | prom.h | 30 #define of_compat_cmp(s1, s2, l) strncmp((s1), (s2), (l)) argument 31 #define of_prop_cmp(s1, s2) strcasecmp((s1), (s2)) argument 32 #define of_node_cmp(s1, s2) strcmp((s1), (s2)) argument
|
/linux-4.1.27/include/acpi/platform/ |
D | acenv.h | 346 #define ACPI_STRSTR(s1,s2) strstr((s1), (s2)) argument 347 #define ACPI_STRCHR(s1,c) strchr((s1), (c)) argument 356 #define ACPI_MEMCMP(s1,s2,n) memcmp((const char *)(s1), (const char *)(s2), (acpi_size)(n)) argument 406 #define ACPI_STRSTR(s1,s2) acpi_ut_strstr ((s1), (s2)) argument 407 #define ACPI_STRCHR(s1,c) acpi_ut_strchr ((s1), (c)) argument 416 #define ACPI_MEMCMP(s1,s2,n) acpi_ut_memcmp((const char *)(s1), (const char *)(s2), (acpi_size)(… argument
|
/linux-4.1.27/arch/c6x/lib/ |
D | llshr.S | 26 mvk .s1 32,A0 29 [A2] shl .s1 A5,A0,A0 32 || [A2] shru .s1 A4,A1,A4 33 [!A2] shr .s1 A5,A4,A4 35 [!A2] shr .s1 A5,0x1f,A5 36 [A2] shr .s1 A5,A1,A5
|
D | divremu.S | 40 ||[!b1] zero .s1 A5 49 || xor .s1 1, A2, A2 51 shl .s1 A2, 31, A2 64 || [b0] b .s1 __divremu0 78 || mvk .s1 32, A1 80 || extu .s1 A4, A6, A5 81 shl .s1 A4, A6, A4 82 shru .s1 A4, 1, A4 85 shru .s1 A4, A6, A4
|
D | llshru.S | 26 mvk .s1 32,A0 29 [A2] shl .s1 A5,A0,A0 32 || [A2] shru .s1 A4,A1,A4 33 [!A2] shru .s1 A5,A4,A4 36 [A2] shru .s1 A5,A1,A5
|
D | llshl.S | 26 mvk .s1 32,A0 29 [A2] shru .s1 A4,A0,A0 31 || [A2] shl .s1 A5,A1,A5 32 [!A2] shl .s1 A4,A5,A5 35 [A2] shl .s1 A4,A1,A4
|
D | divu.S | 61 || xor .s1 1, A2, A2 63 shl .s1 A2, 31, A2 76 || [B0] b .s1 _divu_loop 90 || mvk .s1 32, A1 92 shl .s1 A4, A6, A4 93 shru .s1 A4, 1, A4 96 shru .s1 A4, A6, A4
|
D | negll.S | 28 || ext .s1 A3,24,24,A5 30 mv .s1 A2,A4
|
D | mpyll.S | 46 mv .s1 A0,A4 48 add .s1 A1,A5,A5
|
D | remu.S | 62 || [B0] b .s1 _remu_loop 80 extu .s1 A4, A7, A4
|
D | strasgi_64plus.S | 24 || mv .s1 a4, a30
|
D | divremi.S | 25 || mv .s1 A4, A5
|
D | remi.S | 43 || mv .s1 A4, A5
|
/linux-4.1.27/arch/s390/lib/ |
D | string.c | 244 char * strstr(const char * s1,const char * s2) in strstr() argument 250 return (char *) s1; in strstr() 251 l1 = __strend(s1) - s1; in strstr() 253 register unsigned long r2 asm("2") = (unsigned long) s1; in strstr() 266 return (char *) s1; in strstr() 267 s1++; in strstr()
|
/linux-4.1.27/net/dccp/ccids/lib/ |
D | packet_history.c | 170 s1 = DCCP_SKB_CB(skb)->dccpd_seq; in __do_track_loss() local 172 if (!dccp_loss_free(s0, s1, n1)) { /* gap between S0 and S1 */ in __do_track_loss() 181 s1 = tfrc_rx_hist_entry(h, 1)->tfrchrx_seqno, in __one_after_loss() local 184 if (likely(dccp_delta_seqno(s1, s2) > 0)) { /* S1 < S2 */ in __one_after_loss() 195 if (dccp_loss_free(s2, s1, n1)) { in __one_after_loss() 218 s1 = tfrc_rx_hist_entry(h, 1)->tfrchrx_seqno, in __two_after_loss() local 230 if (dccp_delta_seqno(s1, s3) > 0) { /* S1 < S3 < S2 */ in __two_after_loss() 245 if (dccp_loss_free(s3, s1, n1)) { in __two_after_loss() 249 if (dccp_loss_free(s1, s2, n2)) { in __two_after_loss() 286 u64 s1 = tfrc_rx_hist_entry(h, 1)->tfrchrx_seqno, in __three_after_loss() local [all …]
|
/linux-4.1.27/fs/nfs/ |
D | nfs4session.c | 371 static s32 nfs41_derivative_target_slotid(s32 s1, s32 s2) in nfs41_derivative_target_slotid() argument 373 s1 -= s2; in nfs41_derivative_target_slotid() 374 if (s1 == 0) in nfs41_derivative_target_slotid() 376 if (s1 < 0) in nfs41_derivative_target_slotid() 377 return (s1 - 1) >> 1; in nfs41_derivative_target_slotid() 378 return (s1 + 1) >> 1; in nfs41_derivative_target_slotid() 381 static int nfs41_sign_s32(s32 s1) in nfs41_sign_s32() argument 383 if (s1 > 0) in nfs41_sign_s32() 385 if (s1 < 0) in nfs41_sign_s32() 390 static bool nfs41_same_sign_or_zero_s32(s32 s1, s32 s2) in nfs41_same_sign_or_zero_s32() argument [all …]
|
D | nfs4_fs.h | 511 static inline bool nfs4_stateid_is_newer(const nfs4_stateid *s1, const nfs4_stateid *s2) in nfs4_stateid_is_newer() argument 513 return (s32)(be32_to_cpu(s1->seqid) - be32_to_cpu(s2->seqid)) > 0; in nfs4_stateid_is_newer()
|
D | pnfs.c | 763 static bool pnfs_seqid_is_newer(u32 s1, u32 s2) in pnfs_seqid_is_newer() argument 765 return (s32)(s1 - s2) > 0; in pnfs_seqid_is_newer()
|
D | nfs4proc.c | 8423 static bool nfs41_match_stateid(const nfs4_stateid *s1, in nfs41_match_stateid() argument 8426 if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0) in nfs41_match_stateid() 8429 if (s1->seqid == s2->seqid) in nfs41_match_stateid() 8431 if (s1->seqid == 0 || s2->seqid == 0) in nfs41_match_stateid() 8439 static bool nfs4_match_stateid(const nfs4_stateid *s1, in nfs4_match_stateid() argument 8442 return nfs4_stateid_match(s1, s2); in nfs4_match_stateid()
|
/linux-4.1.27/arch/powerpc/boot/ |
D | string.h | 9 extern int strcmp(const char *s1, const char *s2); 10 extern int strncmp(const char *s1, const char *s2, size_t n); 18 extern int memcmp(const void *s1, const void *s2, size_t n);
|
D | oflib.c | 99 static int string_match(const char *s1, const char *s2) in string_match() argument 102 if (*s1++ != *s2) in string_match()
|
/linux-4.1.27/fs/ntfs/ |
D | unistr.c | 68 bool ntfs_are_names_equal(const ntfschar *s1, size_t s1_len, in ntfs_are_names_equal() argument 75 return !ntfs_ucsncmp(s1, s2, s1_len); in ntfs_are_names_equal() 76 return !ntfs_ucsncasecmp(s1, s2, s1_len, upcase, upcase_size); in ntfs_are_names_equal() 149 int ntfs_ucsncmp(const ntfschar *s1, const ntfschar *s2, size_t n) in ntfs_ucsncmp() argument 155 c1 = le16_to_cpu(s1[i]); in ntfs_ucsncmp() 185 int ntfs_ucsncasecmp(const ntfschar *s1, const ntfschar *s2, size_t n, in ntfs_ucsncasecmp() argument 192 if ((c1 = le16_to_cpu(s1[i])) < upcase_size) in ntfs_ucsncasecmp()
|
D | ntfs.h | 108 extern bool ntfs_are_names_equal(const ntfschar *s1, size_t s1_len, 116 extern int ntfs_ucsncmp(const ntfschar *s1, const ntfschar *s2, size_t n); 117 extern int ntfs_ucsncasecmp(const ntfschar *s1, const ntfschar *s2, size_t n,
|
D | runlist.c | 1168 s64 s1 = last_vcn + 1; in ntfs_get_size_for_mapping_pairs() local 1169 if (unlikely(rl[1].vcn > s1)) in ntfs_get_size_for_mapping_pairs() 1170 length = s1 - rl->vcn; in ntfs_get_size_for_mapping_pairs() 1204 s64 s1 = last_vcn + 1; in ntfs_get_size_for_mapping_pairs() local 1205 if (unlikely(rl[1].vcn > s1)) in ntfs_get_size_for_mapping_pairs() 1206 length = s1 - rl->vcn; in ntfs_get_size_for_mapping_pairs() 1370 s64 s1 = last_vcn + 1; in ntfs_mapping_pairs_build() local 1371 if (unlikely(rl[1].vcn > s1)) in ntfs_mapping_pairs_build() 1372 length = s1 - rl->vcn; in ntfs_mapping_pairs_build() 1422 s64 s1 = last_vcn + 1; in ntfs_mapping_pairs_build() local [all …]
|
/linux-4.1.27/arch/cris/arch-v10/kernel/ |
D | kgdb.c | 361 gdb_cris_strcpy (char *s1, const char *s2) in gdb_cris_strcpy() argument 363 char *s = s1; in gdb_cris_strcpy() 365 for (s = s1; (*s++ = *s2++) != '\0'; ) in gdb_cris_strcpy() 367 return (s1); in gdb_cris_strcpy() 399 char *s1; in gdb_cris_strtol() local 403 for (s1 = (char*)s; (sd = gdb_cris_memchr(hex_asc, *s1, base)) != NULL; ++s1) in gdb_cris_strtol() 409 *endptr = s1; in gdb_cris_strtol()
|
/linux-4.1.27/arch/m68k/include/asm/ |
D | uaccess_mm.h | 205 #define __constant_copy_from_user_asm(res, to, from, tmp, n, s1, s2, s3)\ argument 207 "1: "MOVES"."#s1" (%2)+,%3\n" \ 208 " move."#s1" %3,(%1)+\n" \ 227 "10: clr."#s1" (%1)+\n" \ 285 #define __constant_copy_to_user_asm(res, to, from, tmp, n, s1, s2, s3) \ argument 287 " move."#s1" (%2)+,%3\n" \ 288 "11: "MOVES"."#s1" %3,(%1)+\n" \
|
/linux-4.1.27/arch/x86/crypto/ |
D | twofish-x86_64-asm_64.S | 34 #define s1 1024 /* S1 Array */ macro 81 mov s1(%r11,%rdi,4),%r8d;\ 98 xor s1(%r11,%rdi,4),%r9d;\ 119 mov s1(%r11,%rdi,4),%r8d;\ 136 xor s1(%r11,%rdi,4),%r9d;\ 159 xor s1(%r11,%rdi,4),%r9d;\ 166 xor s1(%r11,%rdi,4),%r8d;\ 201 xor s1(%r11,%rdi,4),%r9d;\ 203 xor s1(%r11,%rdi,4),%r8d;\
|
D | twofish-i586-asm_32.S | 40 #define s1 1024 /* S1 Array */ macro 83 mov s1(%ebp,%edi,4),d ## D;\ 100 xor s1(%ebp,%edi,4),%esi;\ 121 mov s1(%ebp,%edi,4),d ## D;\ 138 xor s1(%ebp,%edi,4),%esi;\ 163 xor s1(%ebp,%edi,4),c ## D;\ 170 xor s1(%ebp,%edi,4),%esi;\ 201 xor s1(%ebp,%edi,4),c ## D;\ 208 xor s1(%ebp,%edi,4),%esi;\
|
D | twofish-x86_64-asm_64-3way.S | 30 #define s1 1024 macro 150 g1g2_3(ab, cd, s0, s1, s2, s3, s0, s1, s2, s3, RX, RY); \ 157 g1g2_3(ba, dc, s1, s2, s3, s0, s3, s0, s1, s2, RY, RX); \
|
D | blowfish-x86_64-asm_64.S | 31 #define s1 ((16 + 2 + (1 * 256)) * 4) macro 80 addl s1(CTX,RT1,4), RT0d; \ 204 addl s1(CTX,RT2,4), RT0d; \
|
D | twofish-avx-x86_64-asm_64.S | 43 #define s1 1024 macro 136 G(RGI1, RGI2, x1, s0, s1, s2, s3); \ 142 G(RGI3, RGI4, y1, s1, s2, s3, s0); \ 148 G(RGI1, RGI2, x2, s0, s1, s2, s3); \ 152 G(RGI3, RGI4, y2, s1, s2, s3, s0); \
|
D | sha256-avx-asm.S | 155 ## compute s0 four at a time and s1 two at a time 224 ## compute low s1 254 vpxor XTMP2, XTMP4, XTMP4 # XTMP4 = s1 {xBxA} 258 vpshufb SHUF_00BA, XTMP4, XTMP4 # XTMP4 = s1 {00BA} 265 ## compute high s1 292 vpxor XTMP2, XTMP5, XTMP5 # XTMP5 = s1 {xDxC} 296 vpshufb SHUF_DC00, XTMP5, XTMP5 # XTMP5 = s1 {DC00}
|
D | sha256-ssse3-asm.S | 148 ## compute s0 four at a time and s1 two at a time 223 ## compute low s1 256 pxor XTMP2, XTMP4 # XTMP4 = s1 {xBxA} 260 pshufb SHUF_00BA, XTMP4 # XTMP4 = s1 {00BA} 267 ## compute high s1 297 pxor XTMP2, X0 # X0 = s1 {xDxC} 301 pshufb SHUF_DC00, X0 # X0 = s1 {DC00}
|
D | des3_ede-asm_64.S | 22 #define s1 .L_s1 macro 23 #define s2 ((s1) + (64*8)) 155 xorq s1(, RT3, 8), to; \ 381 xorq s1(, RT1, 8), to##0; \ 402 xorq s1(, RT1, 8), to##1; \ 423 xorq s1(, RT1, 8), to##2;
|
D | sha512-avx-asm.S | 228 vpxor %xmm2, %xmm0, %xmm0 # XMM0 = s1(W[t-2]) 232 vpaddq W_t(idx), %xmm0, %xmm0 # XMM0 = s1(W[t-2]) + W[t-16] 244 vpaddq %xmm6, %xmm0, %xmm0 # XMM0 = s1(W[t-2]) + W[t-16] + s0(W[t-15]) 246 vpaddq %xmm1, %xmm0, %xmm0 # XMM0 = W[t] = s1(W[t-2]) + W[t-7] +
|
D | sha512-ssse3-asm.S | 244 pxor %xmm1, %xmm0 # XMM0 = s1(W[t-2]) 252 paddq %xmm3, %xmm0 # XMM0 = s1(W[t-2]) + s0(W[t-15]) 255 paddq W_t(idx), %xmm0 # XMM0 = s1(W[t-2]) + s0(W[t-15]) + W[t-16] 257 paddq %xmm1, %xmm0 # XMM0 = s1(W[t-2]) + W[t-7] + s0(W[t-15]) + W[t-16]
|
D | cast6-avx-x86_64-asm_64.S | 41 #define s1 cast_s1 macro 103 movl s1(, RID1, 4), dst ## d; \
|
D | cast5-avx-x86_64-asm_64.S | 41 #define s1 cast_s1 macro 103 movl s1(, RID1, 4), dst ## d; \
|
D | sha256-avx2-asm.S | 284 vpxor XTMP2, XTMP4, XTMP4 # XTMP4 = s1 {xBxA} 287 vpshufb SHUF_00BA, XTMP4, XTMP4 # XTMP4 = s1 {00BA} 339 vpxor XTMP2, XTMP5, XTMP5 # XTMP5 = s1 {xDxC} 344 vpshufb SHUF_DC00, XTMP5, XTMP5 # XTMP5 = s1 {DC00}
|
D | sha512-avx2-asm.S | 296 vpxor YTMP3, YTMP4, YTMP4 # YTMP4 = s1 = (W[-2] ror 19) ^ 352 vpxor YTMP3, YTMP4, YTMP4 # YTMP4 = s1 = (W[-2] ror 19) ^
|
/linux-4.1.27/arch/mips/kernel/ |
D | relocate_kernel.S | 23 PTR_L s1, kexec_start_address 100 j s1 113 PTR_L s1, kexec_start_address 138 j s1
|
D | entry.S | 78 move a0, s1
|
D | pm-cps.c | 84 s0, s1, s2, s3, s4, s5, s6, s7, enumerator
|
/linux-4.1.27/tools/perf/util/ |
D | string.c | 275 int strtailcmp(const char *s1, const char *s2) in strtailcmp() argument 277 int i1 = strlen(s1); in strtailcmp() 280 if (s1[i1] != s2[i2]) in strtailcmp() 281 return s1[i1] - s2[i2]; in strtailcmp()
|
D | cpumap.c | 245 int cpu, s1, s2; in cpu_map__build_map() local 253 s1 = f(cpus, cpu); in cpu_map__build_map() 255 if (s1 == c->map[s2]) in cpu_map__build_map() 259 c->map[c->nr] = s1; in cpu_map__build_map()
|
D | help.c | 252 const char *s1 = (*c1)->name, *s2 = (*c2)->name; in levenshtein_compare() local 255 return l1 != l2 ? l1 - l2 : strcmp(s1, s2); in levenshtein_compare()
|
D | util.h | 260 int strtailcmp(const char *s1, const char *s2);
|
/linux-4.1.27/arch/arm/crypto/ |
D | sha2-ce-core.S | 46 .macro add_update, ev, s0, s1, s2, s3 47 sha256su0.32 q\s0, q\s1 48 add_only \ev, \s1
|
D | sha1-ce-core.S | 50 .macro add_update, op, ev, rc, s0, s1, s2, s3, dg1 51 sha1su0.32 q\s0, q\s1, q\s2 52 add_only \op, \ev, \rc, \s1, \dg1
|
D | aes-armv4.S | 272 ldr r7,[r10,r7,lsl#2] @ Te1[s1>>16] 273 ldr r8,[r10,r8,lsl#2] @ Te3[s1>>0] 274 ldr r9,[r10,r9,lsl#2] @ Te2[s1>>8] 276 ldr r1,[r10,r1,lsl#2] @ Te0[s1>>24] 334 ldrb r7,[r10,r7,lsl#2] @ Te4[s1>>16] 335 ldrb r8,[r10,r8,lsl#2] @ Te4[s1>>0] 336 ldrb r9,[r10,r9,lsl#2] @ Te4[s1>>8] 338 ldrb r1,[r10,r1,lsl#2] @ Te4[s1>>24] 967 ldr r7,[r10,r7,lsl#2] @ Td3[s1>>0] 968 ldr r8,[r10,r8,lsl#2] @ Td1[s1>>16] [all …]
|
D | aesbs-core.S_shipped | 273 @ Inv_GF16 0, 1, 2, 3, s0, s1, s2, s3 762 @ Inv_GF16 0, 1, 2, 3, s0, s1, s2, s3
|
/linux-4.1.27/arch/mips/boot/compressed/ |
D | head.S | 24 move s1, a1 44 move a1, s1
|
/linux-4.1.27/arch/cris/arch-v32/kernel/ |
D | kgdb.c | 360 static char *gdb_cris_strcpy(char *s1, const char *s2); 486 gdb_cris_strcpy(char *s1, const char *s2) in gdb_cris_strcpy() argument 488 char *s = s1; in gdb_cris_strcpy() 490 for (s = s1; (*s++ = *s2++) != '\0'; ) in gdb_cris_strcpy() 492 return s1; in gdb_cris_strcpy() 524 char *s1; in gdb_cris_strtol() local 528 for (s1 = (char*)s; (sd = gdb_cris_memchr(hex_asc, *s1, base)) != NULL; ++s1) in gdb_cris_strtol() 533 *endptr = s1; in gdb_cris_strtol()
|
D | kgdb_asm.S | 330 move $r0, $s1 381 move $r0, $s1 423 move $r0, $s1
|
D | head.S | 139 move $r1, $s1 ; kbase_lo. 148 move $r1, $s1 ; kbase_lo
|
/linux-4.1.27/fs/hfs/ |
D | string.c | 76 int hfs_strcmp(const unsigned char *s1, unsigned int len1, in hfs_strcmp() argument 84 tmp = (int)caseorder[*(s1++)] - (int)caseorder[*(s2++)]; in hfs_strcmp()
|
/linux-4.1.27/arch/mips/include/asm/ |
D | regdef.h | 43 #define s1 $17 macro 86 #define s1 $17 macro
|
D | asmmacro-64.h | 18 LONG_S s1, THREAD_REG17(\thread) 31 LONG_L s1, THREAD_REG17(\thread)
|
D | asmmacro-32.h | 65 LONG_S s1, THREAD_REG17(\thread) 78 LONG_L s1, THREAD_REG17(\thread)
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/ |
D | renesas,r8a7778-cpg-clocks.txt | 12 "plla", "pllb", "b", "out", "p", "s", and "s1". 24 "out", "p", "s", "s1";
|
D | renesas,r8a7779-cpg-clocks.txt | 14 "z", "zs", "s", "s1", "p", "b", "out". 25 clock-output-names = "plla", "z", "zs", "s", "s1", "p",
|
/linux-4.1.27/fs/ncpfs/ |
D | ncplib_kernel.h | 139 #define ncp_strnicmp(t, s1, s2, len) \ argument 140 nls_strnicmp(t, s1, s2, len) 159 const unsigned char *s1, const unsigned char *s2, int len) in ncp_strnicmp() argument 162 if (tolower(*s1++) != tolower(*s2++)) in ncp_strnicmp()
|
/linux-4.1.27/fs/hfsplus/ |
D | unicode.c | 31 int hfsplus_strcasecmp(const struct hfsplus_unistr *s1, in hfsplus_strcasecmp() argument 37 len1 = be16_to_cpu(s1->length); in hfsplus_strcasecmp() 39 p1 = s1->unicode; in hfsplus_strcasecmp() 64 int hfsplus_strcmp(const struct hfsplus_unistr *s1, in hfsplus_strcmp() argument 71 len1 = be16_to_cpu(s1->length); in hfsplus_strcmp() 73 p1 = s1->unicode; in hfsplus_strcmp()
|
D | hfsplus_fs.h | 513 int hfsplus_strcasecmp(const struct hfsplus_unistr *s1, 515 int hfsplus_strcmp(const struct hfsplus_unistr *s1,
|
/linux-4.1.27/arch/x86/include/asm/ |
D | microcode_intel.h | 54 #define sigmatch(s1, s2, p1, p2) \ argument 55 (((s1) == (s2)) && (((p1) & (p2)) || (((p1) == 0) && ((p2) == 0))))
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmsmac/ |
D | ampdu.c | 839 u32 s1, u32 s2) in brcms_c_ampdu_dotxstatus_complete() argument 883 WARN_ON(s1 & TX_STATUS_INTERMEDIATE); in brcms_c_ampdu_dotxstatus_complete() 884 WARN_ON(!(s1 & TX_STATUS_AMPDU)); in brcms_c_ampdu_dotxstatus_complete() 887 (s1 & TX_STATUS_BA_BMAP47_MASK) << in brcms_c_ampdu_dotxstatus_complete() 889 bitmap[1] = (s1 >> 8) & 0xff; in brcms_c_ampdu_dotxstatus_complete() 890 bitmap[2] = (s1 >> 16) & 0xff; in brcms_c_ampdu_dotxstatus_complete() 891 bitmap[3] = (s1 >> 24) & 0xff; in brcms_c_ampdu_dotxstatus_complete() 1036 u32 s1 = 0, s2 = 0; in brcms_c_ampdu_dotxstatus() local 1049 s1 = bcma_read32(wlc->hw->d11core, D11REGOFFS(frmtxstatus)); in brcms_c_ampdu_dotxstatus() 1050 while ((s1 & TXS_V) == 0) { in brcms_c_ampdu_dotxstatus() [all …]
|
D | main.c | 1034 u32 s1, s2; in brcms_b_txstatus() local 1047 s1 = bcma_read32(core, D11REGOFFS(frmtxstatus)); in brcms_b_txstatus() 1048 if (s1 == 0xffffffff) { in brcms_b_txstatus() 1055 if (!(s1 & TXS_V)) in brcms_b_txstatus() 1059 txs->status = s1 & TXS_STATUS_MASK; in brcms_b_txstatus() 1060 txs->frameid = (s1 & TXS_FID_MASK) >> TXS_FID_SHIFT; in brcms_b_txstatus()
|
/linux-4.1.27/arch/arm64/crypto/ |
D | sha2-ce-core.S | 47 .macro add_update, ev, rc, s0, s1, s2, s3 48 sha256su0 v\s0\().4s, v\s1\().4s 49 add_only \ev, \rc, \s1
|
D | sha1-ce-core.S | 55 .macro add_update, op, ev, rc, s0, s1, s2, s3, dg1 56 sha1su0 v\s0\().4s, v\s1\().4s, v\s2\().4s 57 add_only \op, \ev, \rc, \s1, \dg1
|
/linux-4.1.27/arch/mips/alchemy/devboards/ |
D | db1000.c | 498 int c0, c1, d0, d1, s0, s1, flashsize = 32, twosocks = 1; in db1000_dev_setup() local 508 s1 = AU1500_GPIO4_INT; in db1000_dev_setup() 515 s1 = AU1100_GPIO4_INT; in db1000_dev_setup() 550 s1 = AU1000_GPIO4_INT; in db1000_dev_setup() 601 irq_set_irq_type(s1, IRQ_TYPE_LEVEL_LOW); in db1000_dev_setup()
|
/linux-4.1.27/drivers/staging/lustre/lustre/llite/ |
D | llite_lib.c | 728 char *s1 = options, *s2; in ll_options() local 735 while (*s1) { in ll_options() 736 CDEBUG(D_SUPER, "next opt=%s\n", s1); in ll_options() 737 tmp = ll_set_opt("nolock", s1, LL_SBI_NOLCK); in ll_options() 742 tmp = ll_set_opt("flock", s1, LL_SBI_FLOCK); in ll_options() 747 tmp = ll_set_opt("localflock", s1, LL_SBI_LOCALFLOCK); in ll_options() 752 tmp = ll_set_opt("noflock", s1, LL_SBI_FLOCK|LL_SBI_LOCALFLOCK); in ll_options() 757 tmp = ll_set_opt("user_xattr", s1, LL_SBI_USER_XATTR); in ll_options() 762 tmp = ll_set_opt("nouser_xattr", s1, LL_SBI_USER_XATTR); in ll_options() 767 tmp = ll_set_opt("remote_client", s1, LL_SBI_RMT_CLIENT); in ll_options() [all …]
|
/linux-4.1.27/arch/mips/power/ |
D | hibernate_asm.S | 22 PTR_S s1, PT_R17(t0) 52 PTR_L s1, PT_R17(t0)
|
/linux-4.1.27/arch/powerpc/platforms/powermac/ |
D | nvram.c | 560 unsigned int s1 = 0, s2 = 0; in pmac_nvram_init() local 574 s1 = resource_size(&r1); in pmac_nvram_init() 589 nvram_data = ioremap(r1.start, s1); in pmac_nvram_init() 594 nvram_data = ioremap(r1.start, s1); in pmac_nvram_init() 595 nvram_mult = (s1 + NVRAM_SIZE - 1) / NVRAM_SIZE; in pmac_nvram_init() 599 nvram_addr = ioremap(r1.start, s1); in pmac_nvram_init()
|
/linux-4.1.27/arch/x86/include/asm/uv/ |
D | uv_mmrs.h | 691 } s1; member 821 } s1; member 904 } s1; member 1133 } s1; member 1263 } s1; member 1346 } s1; member 1839 } s1; member 2104 } s1; member 2329 } s1; member 2413 } s1; member [all …]
|
/linux-4.1.27/arch/sparc/kernel/ |
D | visemul.c | 460 s16 s1, s2; in pdist() local 462 s1 = (rs1 >> (56 - (i * 8))) & 0xff; in pdist() 466 s1 -= s2; in pdist() 467 if (s1 < 0) in pdist() 468 s1 = ~s1 + 1; in pdist() 470 rd_val += s1; in pdist()
|
/linux-4.1.27/drivers/firmware/efi/libstub/ |
D | efi-stub-helper.c | 662 u8 *s1 = NULL; in efi_convert_cmdline() local 691 s1 = (u8 *)cmdline_addr; in efi_convert_cmdline() 694 s1 = efi_utf16_to_utf8(s1, s2, options_chars); in efi_convert_cmdline() 695 *s1 = '\0'; in efi_convert_cmdline()
|
/linux-4.1.27/tools/testing/selftests/powerpc/copyloops/ |
D | memcpy_64.S | 117 # s1<< in r8, d0=(s0<<|s1>>) in r7, s3 in r0, s2 in r9, nix in r6 & r12 135 # d0=(s0<<|s1>>) in r12, s1<< in r6, s2>> in r7, s2<< in r8, s3 in r9
|
/linux-4.1.27/arch/powerpc/lib/ |
D | memcpy_64.S | 117 # s1<< in r8, d0=(s0<<|s1>>) in r7, s3 in r0, s2 in r9, nix in r6 & r12 135 # d0=(s0<<|s1>>) in r12, s1<< in r6, s2>> in r7, s2<< in r8, s3 in r9
|
/linux-4.1.27/arch/mips/fw/lib/ |
D | call_o32.S | 59 REG_S s1,O32_FRAMESZ-10*SZREG(sp) 95 REG_L s1,O32_FRAMESZ-10*SZREG(sp)
|
/linux-4.1.27/drivers/media/i2c/ |
D | tvaudio.c | 1301 int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1; in tda8425_setaudmode() local 1305 s1 |= TDA8425_S1_ML_SOUND_A; in tda8425_setaudmode() 1306 s1 |= TDA8425_S1_STEREO_PSEUDO; in tda8425_setaudmode() 1309 s1 |= TDA8425_S1_ML_SOUND_B; in tda8425_setaudmode() 1310 s1 |= TDA8425_S1_STEREO_PSEUDO; in tda8425_setaudmode() 1313 s1 |= TDA8425_S1_ML_STEREO; in tda8425_setaudmode() 1314 s1 |= TDA8425_S1_STEREO_LINEAR; in tda8425_setaudmode() 1317 s1 |= TDA8425_S1_ML_STEREO; in tda8425_setaudmode() 1318 s1 |= TDA8425_S1_STEREO_MONO; in tda8425_setaudmode() 1321 s1 |= TDA8425_S1_ML_STEREO; in tda8425_setaudmode() [all …]
|
/linux-4.1.27/arch/cris/include/asm/ |
D | string.h | 17 extern int strcmp(const char *s1, const char *s2);
|
/linux-4.1.27/drivers/tty/serial/ |
D | sn_console.c | 877 const char *s1; in puts_raw_fixed() local 880 while ((s1 = memchr(s, '\n', count)) != NULL) { in puts_raw_fixed() 881 puts_raw(s, s1 - s); in puts_raw_fixed() 883 count -= s1 + 1 - s; in puts_raw_fixed() 884 s = s1 + 1; in puts_raw_fixed()
|
/linux-4.1.27/crypto/ |
D | cast6_generic.c | 30 #define s1 cast_s1 macro 36 (((s1[I >> 24] ^ s2[(I>>16)&0xff]) - s3[(I>>8)&0xff]) + s4[I&0xff])) 38 (((s1[I >> 24] - s2[(I>>16)&0xff]) + s3[(I>>8)&0xff]) ^ s4[I&0xff])) 40 (((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s3[(I>>8)&0xff]) - s4[I&0xff]))
|
D | cast5_generic.c | 298 #define s1 cast_s1 macro 304 (((s1[I >> 24] ^ s2[(I>>16)&0xff]) - s3[(I>>8)&0xff]) + s4[I&0xff])) 306 (((s1[I >> 24] - s2[(I>>16)&0xff]) + s3[(I>>8)&0xff]) ^ s4[I&0xff])) 308 (((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s3[(I>>8)&0xff]) - s4[I&0xff]))
|
D | sha512_generic.c | 69 #define s1(x) (ror64(x,19) ^ ror64(x,61) ^ (x >> 6)) macro 78 W[I & 15] += s1(W[(I-2) & 15]) + W[(I-7) & 15] + s0(W[(I-15) & 15]); in BLEND_OP()
|
D | sha256_generic.c | 43 #define s1(x) (ror32(x,17) ^ ror32(x,19) ^ (x >> 10)) macro 52 W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16]; in BLEND_OP()
|
/linux-4.1.27/drivers/media/usb/dvb-usb/ |
D | vp7045-fe.c | 33 s1 = vp7045_read_reg(state->d,0x01), in vp7045_fe_read_status() local 43 if (s1 & (1 << 1)) in vp7045_fe_read_status()
|
/linux-4.1.27/drivers/staging/speakup/ |
D | speakup_keypc.c | 145 int s1, s2, s3, s4; in oops() local 147 s1 = inb_p(synth_port); in oops() 151 pr_warn("synth timeout %d %d %d %d\n", s1, s2, s3, s4); in oops()
|
/linux-4.1.27/net/ceph/ |
D | ceph_common.c | 114 static int strcmp_null(const char *s1, const char *s2) in strcmp_null() argument 116 if (!s1 && !s2) in strcmp_null() 118 if (s1 && !s2) in strcmp_null() 120 if (!s1 && s2) in strcmp_null() 122 return strcmp(s1, s2); in strcmp_null()
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | cypress_dpm.c | 957 mc_reg_table->address[i].s1 = in cypress_populate_mc_reg_addresses() 958 cpu_to_be16(eg_pi->mc_reg_table.mc_reg_address[j].s1); in cypress_populate_mc_reg_addresses() 972 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_RAS_TIMING >> 2; in cypress_set_mc_reg_address_table() 976 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_CAS_TIMING >> 2; in cypress_set_mc_reg_address_table() 980 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_MISC_TIMING >> 2; in cypress_set_mc_reg_address_table() 984 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_MISC_TIMING2 >> 2; in cypress_set_mc_reg_address_table() 988 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_RD_CTL_D0 >> 2; in cypress_set_mc_reg_address_table() 992 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_RD_CTL_D1 >> 2; in cypress_set_mc_reg_address_table() 996 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_WR_CTL_D0 >> 2; in cypress_set_mc_reg_address_table() 1000 eg_pi->mc_reg_table.mc_reg_address[i].s1 = MC_SEQ_WR_CTL_D1 >> 2; in cypress_set_mc_reg_address_table() [all …]
|
D | evergreen_smc.h | 35 uint16_t s1; member
|
D | btc_dpm.c | 1924 switch (table->mc_reg_address[i].s1) { in btc_set_mc_special_registers() 1927 table->mc_reg_address[j].s1 = MC_PMG_CMD_EMRS >> 2; in btc_set_mc_special_registers() 1940 table->mc_reg_address[j].s1 = MC_PMG_CMD_MRS >> 2; in btc_set_mc_special_registers() 1956 table->mc_reg_address[j].s1 = MC_PMG_CMD_MRS1 >> 2; in btc_set_mc_special_registers() 1985 btc_check_s0_mc_reg_index(table->mc_reg_address[i].s1, &address) ? in btc_set_s0_mc_reg_index() 1986 address : table->mc_reg_address[i].s1; in btc_set_s0_mc_reg_index() 2002 eg_table->mc_reg_address[i].s1 = table->mc_reg_address[i].s1; in btc_copy_vbios_mc_reg_table()
|
D | nislands_smc.h | 255 uint16_t s1; member
|
D | sislands_smc.h | 305 uint16_t s1; member
|
D | ni_dpm.c | 2717 switch (table->mc_reg_address[i].s1) { in ni_set_mc_special_registers() 2722 table->mc_reg_address[j].s1 = MC_PMG_CMD_EMRS >> 2; in ni_set_mc_special_registers() 2733 table->mc_reg_address[j].s1 = MC_PMG_CMD_MRS >> 2; in ni_set_mc_special_registers() 2748 table->mc_reg_address[j].s1 = MC_PMG_CMD_MRS1 >> 2; in ni_set_mc_special_registers() 2841 ni_check_s0_mc_reg_index(table->mc_reg_address[i].s1, &address) ? in ni_set_s0_mc_reg_index() 2842 address : table->mc_reg_address[i].s1; in ni_set_s0_mc_reg_index() 2856 ni_table->mc_reg_address[i].s1 = table->mc_reg_address[i].s1; in ni_copy_vbios_mc_reg_table() 2934 mc_reg_table->address[i].s1 = in ni_populate_mc_reg_addresses() 2935 cpu_to_be16(ni_pi->mc_reg_table.mc_reg_address[j].s1); in ni_populate_mc_reg_addresses()
|
D | smu7_discrete.h | 412 uint16_t s1; member
|
D | ci_dpm.c | 4313 switch(table->mc_reg_address[i].s1 << 2) { in ci_set_mc_special_registers() 4316 table->mc_reg_address[j].s1 = MC_PMG_CMD_EMRS >> 2; in ci_set_mc_special_registers() 4327 table->mc_reg_address[j].s1 = MC_PMG_CMD_MRS >> 2; in ci_set_mc_special_registers() 4340 table->mc_reg_address[j].s1 = MC_PMG_AUTO_CMD >> 2; in ci_set_mc_special_registers() 4353 table->mc_reg_address[j].s1 = MC_PMG_CMD_MRS1 >> 2; in ci_set_mc_special_registers() 4469 ci_check_s0_mc_reg_index(table->mc_reg_address[i].s1, &address) ? in ci_set_s0_mc_reg_index() 4470 address : table->mc_reg_address[i].s1; in ci_set_s0_mc_reg_index() 4485 ci_table->mc_reg_address[i].s1 = table->mc_reg_address[i].s1; in ci_copy_vbios_mc_reg_table() 4517 switch(table->mc_reg_address[i].s1 >> 2) { in ci_register_patching_mc_seq() 4661 mc_reg_table->address[i].s1 = cpu_to_be16(pi->mc_reg_table.mc_reg_address[j].s1); in ci_populate_mc_reg_addresses()
|
D | si_dpm.c | 5304 switch (table->mc_reg_address[i].s1 << 2) { in si_set_mc_special_registers() 5307 table->mc_reg_address[j].s1 = MC_PMG_CMD_EMRS >> 2; in si_set_mc_special_registers() 5318 table->mc_reg_address[j].s1 = MC_PMG_CMD_MRS >> 2; in si_set_mc_special_registers() 5332 table->mc_reg_address[j].s1 = MC_PMG_AUTO_CMD >> 2; in si_set_mc_special_registers() 5344 table->mc_reg_address[j].s1 = MC_PMG_CMD_MRS1 >> 2; in si_set_mc_special_registers() 5439 table->mc_reg_address[i].s0 = si_check_s0_mc_reg_index(table->mc_reg_address[i].s1, &address) ? in si_set_s0_mc_reg_index() 5440 address : table->mc_reg_address[i].s1; in si_set_s0_mc_reg_index() 5455 si_table->mc_reg_address[i].s1 = table->mc_reg_address[i].s1; in si_copy_vbios_mc_reg_table() 5533 mc_reg_table->address[i].s1 = in si_populate_mc_reg_addresses() 5534 cpu_to_be16(si_pi->mc_reg_table.mc_reg_address[j].s1); in si_populate_mc_reg_addresses()
|
D | radeon_mode.h | 662 u16 s1; member
|
D | radeon_atombios.c | 4011 reg_table->mc_reg_address[i].s1 = in radeon_atom_init_mc_reg_table()
|
/linux-4.1.27/tools/vm/ |
D | slabinfo.c | 1004 struct slabinfo *s1,*s2; in sort_slabs() local 1006 for (s1 = slabinfo; s1 < slabinfo + slabs; s1++) { in sort_slabs() 1007 for (s2 = s1 + 1; s2 < slabinfo + slabs; s2++) { in sort_slabs() 1011 result = slab_size(s1) < slab_size(s2); in sort_slabs() 1013 result = slab_activity(s1) < slab_activity(s2); in sort_slabs() 1015 result = strcasecmp(s1->name, s2->name); in sort_slabs() 1023 memcpy(&t, s1, sizeof(struct slabinfo)); in sort_slabs() 1024 memcpy(s1, s2, sizeof(struct slabinfo)); in sort_slabs()
|
/linux-4.1.27/drivers/hwmon/pmbus/ |
D | pmbus_core.c | 75 struct pmbus_sensor *s1; member 709 struct pmbus_sensor *s1 = b->s1; in pmbus_get_boolean() local 721 if (!s1 && !s2) { in pmbus_get_boolean() 723 } else if (!s1 || !s2) { in pmbus_get_boolean() 724 WARN(1, "Bad boolean descriptor %p: s1=%p, s2=%p\n", b, s1, s2); in pmbus_get_boolean() 729 if (s1->data < 0) in pmbus_get_boolean() 730 return s1->data; in pmbus_get_boolean() 734 v1 = pmbus_reg2data(data, s1); in pmbus_get_boolean() 853 struct pmbus_sensor *s1, in pmbus_add_boolean() argument 868 boolean->s1 = s1; in pmbus_add_boolean()
|
/linux-4.1.27/arch/alpha/include/uapi/asm/ |
D | regdef.h | 16 #define s1 $10 macro
|
/linux-4.1.27/net/dccp/ |
D | dccp.h | 158 static inline u64 dccp_loss_count(const u64 s1, const u64 s2, const u64 ndp) in dccp_loss_count() argument 160 s64 delta = dccp_delta_seqno(s1, s2); in dccp_loss_count() 171 static inline bool dccp_loss_free(const u64 s1, const u64 s2, const u64 ndp) in dccp_loss_free() argument 173 return dccp_loss_count(s1, s2, ndp) == 0; in dccp_loss_free()
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | qcom-rpm.txt | 146 l16, l17, l18, l19, l20, l21, l22, l23, l24, l25, s0, s1, s2, s3, s4, 150 l0, l1, l2, l3, l4, l5, l6, s0, s1, s2, s3, s4, lvs0, lvs1, lvs2, lvs3, 154 s1, s2, s3, s4, s7, s8, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, 244 s1 {
|
/linux-4.1.27/drivers/video/fbdev/aty/ |
D | radeon_monitor.c | 375 char s1[5], s2[5]; in radeon_parse_monitor_layout() local 386 s1[i] = '\0'; in radeon_parse_monitor_layout() 399 s1[i] = *s; in radeon_parse_monitor_layout() 410 s1[i] = 0; in radeon_parse_monitor_layout() 413 if (strcmp(s1, "CRT") == 0) in radeon_parse_monitor_layout() 415 else if (strcmp(s1, "TMDS") == 0) in radeon_parse_monitor_layout() 417 else if (strcmp(s1, "LVDS") == 0) in radeon_parse_monitor_layout()
|
/linux-4.1.27/drivers/staging/lustre/lustre/include/ |
D | lustre_param.h | 70 char *s1, char *s2, char *s3, char *s4);
|
D | lustre_disk.h | 535 char *s1, char *s2, char *s3, char *s4);
|
/linux-4.1.27/arch/arm/boot/compressed/ |
D | decompress.c | 34 extern char * strstr(const char * s1, const char *s2);
|
/linux-4.1.27/include/video/ |
D | newport.h | 26 struct { volatile unsigned short s0, s1; } byshort; member 402 return regs->set.dcbdata0.byshort.s1; in newport_vc2_get() 434 regs->set.dcbdata0.byshort.s1 = addr; in newport_cmap_setaddr()
|
/linux-4.1.27/drivers/staging/lustre/include/linux/libcfs/ |
D | libcfs_string.h | 48 int cfs_strncasecmp(const char *s1, const char *s2, size_t n);
|
/linux-4.1.27/drivers/crypto/qat/qat_common/ |
D | icp_qat_fw_init_admin.h | 95 } s1; member
|
D | icp_qat_fw.h | 100 } s1; member
|
D | icp_qat_fw_la.h | 237 } s1; member
|
/linux-4.1.27/drivers/video/console/ |
D | newport_con.c | 174 npregs->set.dcbdata0.byshort.s1 = 0xff00; in newport_reset() 176 npregs->set.dcbdata0.byshort.s1 = 0x0000; in newport_reset() 213 linetable[i] = npregs->set.dcbdata0.byshort.s1; in newport_get_screensize() 224 treg = npregs->set.dcbdata0.byshort.s1; in newport_get_screensize() 229 treg = npregs->set.dcbdata0.byshort.s1; in newport_get_screensize()
|
/linux-4.1.27/arch/powerpc/kvm/ |
D | book3s_rtas.c | 126 static int rtas_name_matches(char *s1, char *s2) in rtas_name_matches() argument 129 return !strncmp(s1, s2, sizeof(args.name)); in rtas_name_matches()
|
/linux-4.1.27/drivers/media/dvb-frontends/ |
D | mt352.c | 423 int s0, s1, s3; in mt352_read_status() local 439 if ((s1 = mt352_read_register(state, STATUS_1)) < 0) in mt352_read_status() 451 if (s1 & (1 << 1)) in mt352_read_status()
|
/linux-4.1.27/arch/powerpc/perf/ |
D | hv-24x7.c | 502 static int memord(const void *d1, size_t s1, const void *d2, size_t s2) in memord() argument 504 if (s1 < s2) in memord() 506 if (s2 > s1) in memord() 509 return memcmp(d1, d2, s1); in memord() 512 static int ev_uniq_ord(const void *v1, size_t s1, unsigned d1, const void *v2, in ev_uniq_ord() argument 515 int r = memord(v1, s1, v2, s2); in ev_uniq_ord()
|
/linux-4.1.27/fs/ceph/ |
D | super.c | 292 static int strcmp_null(const char *s1, const char *s2) in strcmp_null() argument 294 if (!s1 && !s2) in strcmp_null() 296 if (s1 && !s2) in strcmp_null() 298 if (!s1 && s2) in strcmp_null() 300 return strcmp(s1, s2); in strcmp_null()
|
/linux-4.1.27/arch/x86/kernel/apic/ |
D | x2apic_uv_x.c | 141 apicid_mask.s1.bit_enables & UV_APICID_HIBIT_MASK; in uv_set_apicid_hibit() 689 enable = !!mmioh.s1.enable; in map_mmioh_high() 690 base = mmioh.s1.base; in map_mmioh_high() 691 m_io = mmioh.s1.m_io; in map_mmioh_high() 692 n_io = mmioh.s1.n_io; in map_mmioh_high()
|
/linux-4.1.27/Documentation/trace/ |
D | function-graph-fold.vim | 22 return 's1'
|
/linux-4.1.27/drivers/devfreq/event/ |
D | exynos-ppmu.c | 74 PPMU_EVENT(drex0-s1), 76 PPMU_EVENT(drex1-s1),
|
/linux-4.1.27/tools/perf/ |
D | builtin-lock.c | 221 u64 s1 = one->wait_time_min; in SINGLE_KEY() local 223 if (s1 == ULLONG_MAX) in SINGLE_KEY() 224 s1 = 0; in SINGLE_KEY() 227 return s1 > s2; in SINGLE_KEY()
|
/linux-4.1.27/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_context.c | 624 SVGA3dTextureState s1; in vmw_context_scrub_texture() member 639 cmd->body.s1.stage = bi->i1.texture_stage; in vmw_context_scrub_texture() 640 cmd->body.s1.name = SVGA3D_TS_BIND_TEXTURE; in vmw_context_scrub_texture() 641 cmd->body.s1.value = ((rebind) ? bi->res->id : SVGA3D_INVALID_ID); in vmw_context_scrub_texture()
|
/linux-4.1.27/arch/powerpc/crypto/ |
D | aes-spe-modes.S | 130 #define ENDIAN_SWAP(t0, t1, s0, s1) \ argument 132 rotrwi t1,s1,8; \ 134 rlwimi t1,s1,8,8,15; \ 136 rlwimi t1,s1,8,24,31;
|
/linux-4.1.27/drivers/char/ipmi/ |
D | ipmi_ssif.c | 1337 static int strcmp_nospace(char *s1, char *s2) in strcmp_nospace() argument 1339 while (*s1 && *s2) { in strcmp_nospace() 1340 while (isspace(*s1)) in strcmp_nospace() 1341 s1++; in strcmp_nospace() 1344 if (*s1 > *s2) in strcmp_nospace() 1346 if (*s1 < *s2) in strcmp_nospace() 1348 s1++; in strcmp_nospace()
|
/linux-4.1.27/sound/pci/ac97/ |
D | ac97_patch.h | 82 static int snd_ac97_swap_ctl(struct snd_ac97 *ac97, const char *s1,
|
D | ac97_codec.c | 2657 static int snd_ac97_swap_ctl(struct snd_ac97 *ac97, const char *s1, in snd_ac97_swap_ctl() argument 2661 kctl1 = ctl_find(ac97, s1, suffix); in snd_ac97_swap_ctl() 2665 set_ctl_name(kctl2->id.name, s1, suffix); in snd_ac97_swap_ctl()
|
/linux-4.1.27/drivers/scsi/ |
D | imm.c | 456 unsigned char s1, s2, s3; in imm_cpp() local 467 s1 = r_str(ppb) & 0xb8; in imm_cpp() 511 if ((s1 == 0xb8) && (s2 == 0x18) && (s3 == 0x30)) in imm_cpp() 513 if ((s1 == 0xb8) && (s2 == 0x18) && (s3 == 0x38)) in imm_cpp()
|
D | aha152x.c | 2421 int s0, s1; in disp_enintr() local 2424 s1 = GETPORT(SIMODE1); in disp_enintr() 2435 (s1 & ENSELTIMO) ? "ENSELTIMO " : "", in disp_enintr() 2436 (s1 & ENATNTARG) ? "ENATNTARG " : "", in disp_enintr() 2437 (s1 & ENPHASEMIS) ? "ENPHASEMIS " : "", in disp_enintr() 2438 (s1 & ENBUSFREE) ? "ENBUSFREE " : "", in disp_enintr() 2439 (s1 & ENSCSIPERR) ? "ENSCSIPERR " : "", in disp_enintr() 2440 (s1 & ENPHASECHG) ? "ENPHASECHG " : "", in disp_enintr() 2441 (s1 & ENREQINIT) ? "ENREQINIT " : ""); in disp_enintr()
|
D | in2000.c | 1901 static int probe_bios(u32 addr, u32 *s1, uchar *switches) in probe_bios() argument 1906 *s1 = readl(p + 0x10); in probe_bios() 1907 if (*s1 == 0x41564f4e || readl(p + 0x30) == 0x61776c41) { in probe_bios() 1948 u32 s1 = 0; in in2000_detect() local 1960 else if (probe_bios(bios_tab[bios], &s1, &switches)) { in in2000_detect() 2052 if (s1 == 0x41564f4e && (switches & SW_SYNC_DOS5)) in in2000_detect()
|
D | scsi_sysfs.c | 102 char s1[15], s2[15], s3[17], junk; in scsi_scan() local 106 res = sscanf(str, "%10s %10s %16s %c", s1, s2, s3, &junk); in scsi_scan() 109 if (check_set(&channel, s1)) in scsi_scan()
|
/linux-4.1.27/include/net/ |
D | xfrm.h | 912 static inline bool xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2) in xfrm_sec_ctx_match() argument 914 return ((!s1 && !s2) || in xfrm_sec_ctx_match() 915 (s1 && s2 && in xfrm_sec_ctx_match() 916 (s1->ctx_sid == s2->ctx_sid) && in xfrm_sec_ctx_match() 917 (s1->ctx_doi == s2->ctx_doi) && in xfrm_sec_ctx_match() 918 (s1->ctx_alg == s2->ctx_alg))); in xfrm_sec_ctx_match() 921 static inline bool xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2) in xfrm_sec_ctx_match() argument
|
/linux-4.1.27/scripts/kconfig/ |
D | symbol.c | 969 const struct sym_match *s1 = sym1; in sym_rel_comp() local 982 exact1 = (s1->eo - s1->so) == strlen(s1->sym->name); in sym_rel_comp() 990 return strcmp(s1->sym->name, s2->sym->name); in sym_rel_comp()
|
D | expr.h | 203 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
|
D | zconf.lex.c | 2258 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) in yy_flex_strncpy() argument 2262 s1[i] = s2[i]; in yy_flex_strncpy()
|
D | expr.c | 45 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) in expr_alloc_comp() argument 49 e->left.sym = s1; in expr_alloc_comp()
|
D | zconf.lex.c_shipped | 2258 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) 2262 s1[i] = s2[i];
|
/linux-4.1.27/arch/mips/kvm/ |
D | locore.S | 321 move s1, a1 447 move k1, s1 460 mtc0 s1, CP0_DDATA_LO
|
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
D | ar9003_mac.c | 267 u32 s0, s1; in ar9003_hw_get_isr() local 270 s1 = REG_READ(ah, AR_ISR_S1); in ar9003_hw_get_isr() 271 REG_WRITE(ah, AR_ISR_S1, s1); in ar9003_hw_get_isr()
|
/linux-4.1.27/drivers/net/ethernet/octeon/ |
D | octeon_mgmt.c | 347 union cvmx_agl_gmx_txx_stat1 s1; in octeon_mgmt_update_tx_stats() local 351 s1.u64 = cvmx_read_csr(p->agl + AGL_GMX_TX_STAT1); in octeon_mgmt_update_tx_stats() 353 if (s0.s.xsdef || s0.s.xscol || s1.s.scol || s1.s.mcol) { in octeon_mgmt_update_tx_stats() 357 netdev->stats.collisions += s1.s.scol + s1.s.mcol; in octeon_mgmt_update_tx_stats()
|
/linux-4.1.27/sound/core/ |
D | init.c | 68 const char *s1, *s2; in module_slot_match() local 73 s1 = module->name; in module_slot_match() 83 char c1 = *s1++; in module_slot_match()
|
D | pcm_native.c | 884 struct snd_pcm_substream *s1; in snd_pcm_action_group() local 903 snd_pcm_group_for_each_entry(s1, substream) { in snd_pcm_action_group() 904 if (s1 == s) /* failed stream */ in snd_pcm_action_group() 906 ops->undo_action(s1, state); in snd_pcm_action_group() 919 snd_pcm_group_for_each_entry(s1, substream) { in snd_pcm_action_group() 920 if (s1 != substream) { in snd_pcm_action_group() 921 if (s1->pcm->nonatomic) in snd_pcm_action_group() 922 mutex_unlock(&s1->self_group.mutex); in snd_pcm_action_group() 924 spin_unlock(&s1->self_group.lock); in snd_pcm_action_group() 926 if (s1 == s) /* end */ in snd_pcm_action_group()
|
/linux-4.1.27/sound/pci/lx6464es/ |
D | lx_core.c | 903 u32 s0, s1, s2, s3; in lx_level_peaks() local 912 s1 = peak_map[(chip->rmh.stat[0] >> 4) & 0xf]; in lx_level_peaks() 916 s0 = s1 = s2 = s3 = 0; in lx_level_peaks() 919 r_levels[1] = s1; in lx_level_peaks()
|
/linux-4.1.27/Documentation/filesystems/ |
D | autofs4-mount-control.txt | 76 /s1 shark:/autofs/export/testing/test/s1 \ 78 /s1/ss1 shark:/autofs/export1 \ 85 /s1 shark:/autofs/export/testing/test/s1 \ 87 /s1/ss1 shark:/autofs/export2 \
|
D | sharedsubtree.txt | 111 s1 s2 s3
|
/linux-4.1.27/drivers/video/fbdev/ |
D | tridentfb.c | 236 u32 s1 = point(x1, y1); in blade_copy_rect() local 247 writemmr(par, SRC1, direction ? s2 : s1); in blade_copy_rect() 248 writemmr(par, SRC2, direction ? s1 : s2); in blade_copy_rect() 398 u32 s1 = point(x1, y1); in image_copy_rect() local 409 writemmr(par, SRC1, direction ? s2 : s1); in image_copy_rect() 410 writemmr(par, SRC2, direction ? s1 : s2); in image_copy_rect()
|
/linux-4.1.27/drivers/usb/misc/ |
D | ftdi-elan.c | 1000 unsigned char s1 = ftdi->bulk_in_buffer[1]; in ftdi_elan_respond_engine() local 1002 if (s0 == 0x31 && s1 == 0x60) { in ftdi_elan_respond_engine() 1007 } else if (s0 == 0x31 && s1 == 0x00) { in ftdi_elan_respond_engine() 1896 char s1 = ftdi->bulk_in_buffer[0]; in ftdi_elan_flush_input_fifo() local 1898 if (s1 == 0x31 && s2 == 0x60) { in ftdi_elan_flush_input_fifo() 2084 unsigned char s1 = ftdi->bulk_in_buffer[0]; in ftdi_elan_synchronize() local 2086 if (s1 == 0x31 && s2 == 0x00) { in ftdi_elan_synchronize() 2091 } else if (s1 == 0x31 && s2 == 0x60) { in ftdi_elan_synchronize() 2175 char s1 = ftdi->bulk_in_buffer[0]; in ftdi_elan_stuck_waiting() local 2177 if (s1 == 0x31 && s2 == 0x60) { in ftdi_elan_stuck_waiting()
|
/linux-4.1.27/arch/x86/math-emu/ |
D | fpu_proto.h | 93 extern int poly_l2p1(u_char s0, u_char s1, FPU_REG *r0, FPU_REG *r1,
|
/linux-4.1.27/arch/arc/boot/dts/ |
D | abilis_tb101.dtsi | 48 pctl_tsin_s1: pctl-tsin-s1 { /* Serial TS-in 1 */ 122 pctl_tsout_s1: pctl-tsout-s1 { /* Serial TS-out 1 */
|
D | abilis_tb100.dtsi | 48 pctl_tsin_s1: pctl-tsin-s1 { /* Serial TS-in 1 */ 116 pctl_tsout_s1: pctl-tsout-s1 { /* Serial TS-out 1 */
|
/linux-4.1.27/arch/nios2/boot/dts/ |
D | 3c120_devboard.dts | 115 reg-names = "control_port", "rx_csr", "tx_csr", "s1";
|
/linux-4.1.27/net/sctp/ |
D | ipv6.c | 76 static inline int sctp_v6_addr_match_len(union sctp_addr *s1, 347 static inline int sctp_v6_addr_match_len(union sctp_addr *s1, in sctp_v6_addr_match_len() argument 350 return ipv6_addr_diff(&s1->v6.sin6_addr, &s2->v6.sin6_addr); in sctp_v6_addr_match_len()
|
/linux-4.1.27/Documentation/devicetree/bindings/net/ |
D | altera_tse.txt | 17 "s1": SGDMA descriptor memory
|
/linux-4.1.27/block/ |
D | cfq-iosched.c | 1079 sector_t s1, s2, d1 = 0, d2 = 0; in cfq_choose_req() local 1096 s1 = blk_rq_pos(rq1); in cfq_choose_req() 1109 if (s1 >= last) in cfq_choose_req() 1110 d1 = s1 - last; in cfq_choose_req() 1111 else if (s1 + back_max >= last) in cfq_choose_req() 1112 d1 = (last - s1) * cfqd->cfq_back_penalty; in cfq_choose_req() 1136 if (s1 >= s2) in cfq_choose_req() 1154 if (s1 <= s2) in cfq_choose_req()
|
/linux-4.1.27/drivers/usb/atm/ |
D | ueagle-atm.c | 518 #define e1_bSwapPageNo u.e1.s1.swapinfo.bSwapPageNo 519 #define e1_bOvl u.e1.s1.swapinfo.bOvl 520 #define e4_bSwapPageNo u.e4.s1.swapinfo.bSwapPageNo 529 } __packed s1; member 540 } __packed s1; member
|
/linux-4.1.27/arch/x86/purgatory/ |
D | sha256.c | 36 #define s1(x) (ror32(x, 17) ^ ror32(x, 19) ^ (x >> 10)) macro 45 W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16]; in BLEND_OP()
|
/linux-4.1.27/drivers/s390/net/ |
D | qeth_l2_main.c | 1312 u16 s1, s2; in qeth_osn_send_ipa_cmd() local 1317 s1 = (u16)(IPA_PDU_HEADER_SIZE + data_len); in qeth_osn_send_ipa_cmd() 1319 memcpy(QETH_IPA_PDU_LEN_TOTAL(iob->data), &s1, 2); in qeth_osn_send_ipa_cmd() 1323 return qeth_osn_send_control_data(card, s1, iob); in qeth_osn_send_ipa_cmd()
|
D | qeth_core_main.c | 4533 u16 s1, s2; in qeth_send_ipa_snmp_cmd() local 4541 s1 = (u32) IPA_PDU_HEADER_SIZE + len; in qeth_send_ipa_snmp_cmd() 4543 memcpy(QETH_IPA_PDU_LEN_TOTAL(iob->data), &s1, 2); in qeth_send_ipa_snmp_cmd()
|
/linux-4.1.27/tools/hv/ |
D | hv_kvp_daemon.c | 1132 static int kvp_write_file(FILE *f, char *s1, char *s2, char *s3) in kvp_write_file() argument 1136 ret = fprintf(f, "%s%s%s%s\n", s1, s2, "=", s3); in kvp_write_file()
|
/linux-4.1.27/scripts/ |
D | get_maintainer.pl | 725 my $s1 = ($file =~ tr@/@@); 727 if ($s1 == $s2) {
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | r8a7779.dtsi | 428 "s1", "p", "b", "out";
|
D | r8a7778.dtsi | 421 "out", "p", "s", "s1";
|
/linux-4.1.27/drivers/net/ethernet/sgi/ |
D | ioc3-eth.c | 1478 unsigned long s1 = b2 - data; in ioc3_start_xmit() local 1483 desc->bufcnt = cpu_to_be32((s1 << ETXD_B1CNT_SHIFT) | in ioc3_start_xmit()
|
/linux-4.1.27/Documentation/ |
D | pinctrl.txt | 1371 struct pinctrl_state *s1, *s2; 1380 s1 = pinctrl_lookup_state(foo->p, "pos-A"); 1381 if (IS_ERR(s1)) 1392 ret = pinctrl_select_state(s1);
|
D | devices.txt | 2995 5 = /dev/bus/vme/s1 Second slave image
|
/linux-4.1.27/arch/x86/boot/compressed/ |
D | eboot.c | 1059 u8 *s1; in make_boot_params() local
|
/linux-4.1.27/scripts/genksyms/ |
D | lex.lex.c_shipped | 1863 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) 1867 s1[i] = s2[i];
|
/linux-4.1.27/scripts/dtc/ |
D | dtc-lexer.lex.c_shipped | 2126 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) 2130 s1[i] = s2[i];
|
/linux-4.1.27/drivers/block/drbd/ |
D | drbd_receiver.c | 2032 static inline int overlaps(sector_t s1, int l1, sector_t s2, int l2) in overlaps() argument 2034 return !((s1 + (l1>>9) <= s2) || (s1 >= s2 + (l2>>9))); in overlaps()
|
/linux-4.1.27/net/xfrm/ |
D | xfrm_policy.c | 690 static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2) in selector_cmp() argument 692 u32 *p1 = (u32 *) s1; in selector_cmp()
|
/linux-4.1.27/drivers/block/ |
D | rbd.c | 1037 static int snapid_compare_reverse(const void *s1, const void *s2) in snapid_compare_reverse() argument 1039 u64 snap_id1 = *(u64 *)s1; in snapid_compare_reverse()
|
/linux-4.1.27/drivers/scsi/lpfc/ |
D | lpfc_hw.h | 1817 } s1; member
|
/linux-4.1.27/drivers/tty/ |
D | synclink.c | 678 #define usc_SetTransmitSyncChars(a,s0,s1) usc_OutReg((a), TSR, (u16)(((u16)s0<<8)|(u16)s1)) argument
|
/linux-4.1.27/drivers/md/ |
D | md.c | 2826 static int overlaps(sector_t s1, sector_t l1, sector_t s2, sector_t l2) in overlaps() argument 2829 if (s1+l1 <= s2) in overlaps() 2831 if (s2+l2 <= s1) in overlaps()
|