/linux-3.4.99/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-3.4.99/arch/x86/boot/ |
D | string.c | 19 const unsigned char *s1 = (const unsigned char *)str1; in strcmp() local 23 while (*s1 || *s2) { in strcmp() 24 delta = *s2 - *s1; in strcmp() 27 s1++; in strcmp() 133 char *strstr(const char *s1, const char *s2) in strstr() argument 139 return (char *)s1; in strstr() 140 l1 = strlen(s1); in strstr() 143 if (!memcmp(s1, s2, l2)) in strstr() 144 return (char *)s1; in strstr() 145 s1++; in strstr()
|
/linux-3.4.99/lib/ |
D | string.c | 37 int strnicmp(const char *s1, const char *s2, size_t len) in strnicmp() argument 46 c1 = *s1++; in strnicmp() 63 int strcasecmp(const char *s1, const char *s2) in strcasecmp() argument 68 c1 = tolower(*s1++); in strcasecmp() 77 int strncasecmp(const char *s1, const char *s2, size_t n) in strncasecmp() argument 82 c1 = tolower(*s1++); in strncasecmp() 523 bool sysfs_streq(const char *s1, const char *s2) in sysfs_streq() argument 525 while (*s1 && *s1 == *s2) { in sysfs_streq() 526 s1++; in sysfs_streq() 530 if (*s1 == *s2) in sysfs_streq() [all …]
|
D | random32.c | 55 state->s1 = TAUSWORTHE(state->s1, 13, 19, 4294967294UL, 12); in prandom32() 59 return (state->s1 ^ state->s2 ^ state->s3); in prandom32() 95 state->s1 = __seed(state->s1 ^ entropy, 2); in srandom32() 112 state->s1 = __seed(LCG(i + jiffies), 2); in random32_init() 113 state->s2 = __seed(LCG(state->s1), 8); in random32_init() 141 state->s1 = __seed(seeds[0], 2); in random32_reseed()
|
/linux-3.4.99/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 | of.h | 147 #define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2)) argument 148 #define of_prop_cmp(s1, s2) strcmp((s1), (s2)) argument 149 #define of_node_cmp(s1, s2) strcasecmp((s1), (s2)) argument
|
/linux-3.4.99/include/acpi/platform/ |
D | acenv.h | 246 #define ACPI_STRSTR(s1,s2) strstr((s1), (s2)) argument 247 #define ACPI_STRCHR(s1,c) strchr((s1), (c)) argument 256 #define ACPI_MEMCMP(s1,s2,n) memcmp((const char *)(s1), (const char *)(s2), (acpi_size)(n)) argument 307 #define ACPI_STRSTR(s1,s2) acpi_ut_strstr ((s1), (s2)) argument 308 #define ACPI_STRCHR(s1,c) acpi_ut_strchr ((s1), (c)) argument 317 #define ACPI_MEMCMP(s1,s2,n) acpi_ut_memcmp((const char *)(s1), (const char *)(s2), (acpi_size)(… argument
|
/linux-3.4.99/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-3.4.99/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
|
/linux-3.4.99/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-3.4.99/arch/s390/lib/ |
D | string.c | 253 char * strstr(const char * s1,const char * s2) in strstr() argument 259 return (char *) s1; in strstr() 260 l1 = __strend(s1) - s1; in strstr() 262 register unsigned long r2 asm("2") = (unsigned long) s1; in strstr() 275 return (char *) s1; in strstr() 276 s1++; in strstr()
|
/linux-3.4.99/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);
|
/linux-3.4.99/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()
|
/linux-3.4.99/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-3.4.99/arch/x86/boot/compressed/ |
D | string.c | 3 int memcmp(const void *s1, const void *s2, size_t len) in memcmp() argument 7 : "=qm" (diff), "+D" (s1), "+S" (s2), "+c" (len)); in memcmp()
|
/linux-3.4.99/arch/x86/crypto/ |
D | twofish-x86_64-asm_64.S | 33 #define s1 1024 /* S1 Array */ macro 80 mov s1(%r11,%rdi,4),%r8d;\ 97 xor s1(%r11,%rdi,4),%r9d;\ 118 mov s1(%r11,%rdi,4),%r8d;\ 135 xor s1(%r11,%rdi,4),%r9d;\ 158 xor s1(%r11,%rdi,4),%r9d;\ 165 xor s1(%r11,%rdi,4),%r8d;\ 200 xor s1(%r11,%rdi,4),%r9d;\ 202 xor s1(%r11,%rdi,4),%r8d;\
|
D | twofish-i586-asm_32.S | 39 #define s1 1024 /* S1 Array */ macro 82 mov s1(%ebp,%edi,4),d ## D;\ 99 xor s1(%ebp,%edi,4),%esi;\ 120 mov s1(%ebp,%edi,4),d ## D;\ 137 xor s1(%ebp,%edi,4),%esi;\ 162 xor s1(%ebp,%edi,4),c ## D;\ 169 xor s1(%ebp,%edi,4),%esi;\ 200 xor s1(%ebp,%edi,4),c ## D;\ 207 xor s1(%ebp,%edi,4),%esi;\
|
/linux-3.4.99/arch/cris/arch-v10/kernel/ |
D | kgdb.c | 236 static char *gdb_cris_strcpy (char *s1, const char *s2); 449 gdb_cris_strcpy (char *s1, const char *s2) in gdb_cris_strcpy() argument 451 char *s = s1; in gdb_cris_strcpy() 453 for (s = s1; (*s++ = *s2++) != '\0'; ) in gdb_cris_strcpy() 455 return (s1); in gdb_cris_strcpy() 487 char *s1; in gdb_cris_strtol() local 491 for (s1 = (char*)s; (sd = gdb_cris_memchr(hex_asc, *s1, base)) != NULL; ++s1) in gdb_cris_strtol() 497 *endptr = s1; in gdb_cris_strtol()
|
/linux-3.4.99/tools/perf/util/ |
D | string.c | 305 int strtailcmp(const char *s1, const char *s2) in strtailcmp() argument 307 int i1 = strlen(s1); in strtailcmp() 310 if (s1[i1] != s2[i2]) in strtailcmp() 311 return s1[i1] - s2[i2]; in strtailcmp()
|