/linux-2.4.37.9/net/sctp/ |
D | adler32.c | 87 __u32 s2 = (adler >> 16) & 0xffff; in update_adler32() local 106 s2 = (s2 + s1); in update_adler32() 117 if (s2 >= BASE) { in update_adler32() 119 s2 -= BASE; in update_adler32() 124 return (s2 << 16) + s1; in update_adler32()
|
/linux-2.4.37.9/arch/ia64/lib/ |
D | xor.S | 40 .rotr s1[6+1], s2[6+1], d[2] 44 (p[0]) ld8.nta s2[0] = [r17], 8 45 (p[6]) xor d[0] = s1[6], s2[6] 78 .rotr s1[6+1], s2[6+1], s3[6+1], d[2] 82 (p[0]) ld8.nta s2[0] = [r17], 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] 123 (p[0]) ld8.nta s2[0] = [r17], 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-2.4.37.9/arch/ppc/lib/ |
D | strcase.c | 3 int strcasecmp(const char *s1, const char *s2) in strcasecmp() argument 9 c2 = tolower(*s2++); in strcasecmp() 14 int strncasecmp(const char *s1, const char *s2, int n) in strncasecmp() argument 20 c2 = tolower(*s2++); in strncasecmp()
|
/linux-2.4.37.9/arch/ppc64/lib/ |
D | strcase.c | 11 int strcasecmp(const char *s1, const char *s2) in strcasecmp() argument 17 c2 = tolower(*s2++); in strcasecmp() 22 int strncasecmp(const char *s1, const char *s2, int n) in strncasecmp() argument 28 c2 = tolower(*s2++); in strncasecmp()
|
D | memcpy.S | 83 # s1<< in r8, d0=(s0<<|s1>>) in r7, s3 in r0, s2 in r9, nix in r6 & r12 101 # d0=(s0<<|s1>>) in r12, s1<< in r6, s2>> in r7, s2<< in r8, s3 in r9
|
/linux-2.4.37.9/net/khttpd/ |
D | rfc_time.c | 190 char *s,**s2; in mimeTime_to_UnixTime() local 193 s2=&s; in mimeTime_to_UnixTime() 200 D = skip_atoi(s2); /* Day of month */ in mimeTime_to_UnixTime() 207 Y = skip_atoi(s2); /* Year */ in mimeTime_to_UnixTime() 209 H = skip_atoi(s2); /* Hour */ in mimeTime_to_UnixTime() 211 Min = skip_atoi(s2); /* Minutes */ in mimeTime_to_UnixTime() 213 S = skip_atoi(s2); /* Seconds */ in mimeTime_to_UnixTime()
|
/linux-2.4.37.9/include/linux/ |
D | zutil.h | 77 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;} 103 unsigned long s2 = (adler >> 16) & 0xffff; in zlib_adler32() local 118 s2 += s1; in zlib_adler32() 121 s2 %= BASE; in zlib_adler32() 123 return (s2 << 16) | s1; in zlib_adler32()
|
D | elevator.h | 62 #define IN_ORDER(s1,s2) \ argument 63 ((((s1)->rq_dev == (s2)->rq_dev && \ 64 (s1)->sector < (s2)->sector)) || \ 65 (s1)->rq_dev < (s2)->rq_dev)
|
D | fs.h | 1634 static inline void double_down(struct semaphore *s1, struct semaphore *s2) in double_down() argument 1636 if (s1 != s2) { in double_down() 1637 if ((unsigned long) s1 < (unsigned long) s2) { in double_down() 1638 struct semaphore *tmp = s2; in double_down() 1639 s2 = s1; s1 = tmp; in double_down() 1643 down(s2); in double_down() 1656 struct semaphore *s2, in triple_down() argument 1659 if (s1 != s2) { in triple_down() 1660 if ((unsigned long) s1 < (unsigned long) s2) { in triple_down() 1665 if ((unsigned long) s1 < (unsigned long) s2) { in triple_down() [all …]
|
/linux-2.4.37.9/fs/hfs/ |
D | string.c | 102 const unsigned char *s2, unsigned int len2) in hfs_strcmp() argument 110 (int)caseorder[*(s2++)])) { in hfs_strcmp() 121 const unsigned char *s2, unsigned int len2) in hfs_streq() argument 128 if (caseorder[*(s1++)] != caseorder[*(s2++)]) { in hfs_streq()
|
/linux-2.4.37.9/fs/ntfs/ |
D | unistr.c | 61 wchar_t *s2, size_t s2_len, int ic, in ntfs_are_names_equal() argument 67 return memcmp(s1, s2, s1_len << 1) ? 0: 1; in ntfs_are_names_equal() 68 return ntfs_wcsncasecmp(s1, s2, s1_len, upcase, upcase_size) ? 0: 1; in ntfs_are_names_equal() 147 int ntfs_wcsncasecmp(wchar_t *s1, wchar_t *s2, size_t n, in ntfs_wcsncasecmp() argument 156 if ((c2 = le16_to_cpu(s2[i])) < upcase_size) in ntfs_wcsncasecmp()
|
D | unistr.h | 32 wchar_t *s2, size_t s2_len, int ic, 40 int ntfs_wcsncasecmp(wchar_t *s1, wchar_t *s2, size_t n,
|
/linux-2.4.37.9/lib/ |
D | string.c | 29 int strnicmp(const char *s1, const char *s2, size_t len) in strnicmp() argument 37 c1 = *s1; c2 = *s2; in strnicmp() 38 s1++; s2++; in strnicmp() 494 char * strstr(const char * s1,const char * s2) in strstr() argument 498 l2 = strlen(s2); in strstr() 504 if (!memcmp(s1,s2,l2)) in strstr()
|
/linux-2.4.37.9/drivers/char/rio/ |
D | phb.h | 143 #define src_unit u2.s2.unit 144 #define src_port u2.s2.port 173 } s2; member 229 } s2; member 269 } s2; member
|
D | riocmd.c | 941 RIOStrCmp(s1, s2) in RIOStrCmp() argument 943 register char *s2; 945 while ( *s1 && *s2 && *s1==*s2 ) 946 s1++, s2++; 947 return *s1-*s2; 954 RIOStrnCmp(s1, s2, n) in RIOStrnCmp() argument 956 register char *s2; 959 while ( n && *s1 && *s2 && *s1==*s2 ) 960 n--, s1++, s2++; 961 return n ? *s1!=*s2 : 0;
|
D | list.h | 176 #define remove_transmit(phb) *phb->u3.s2.tx_remove_ptr &= ~(ushort)PKT_IN_USE;\ 181 #define can_add_receive(phb) !(*phb->u4.s2.rx_add_ptr & PKT_IN_USE) 183 *phb->u4.s2.rx_add_ptr |= PKT_IN_USE;\
|
/linux-2.4.37.9/arch/sparc64/solaris/ |
D | signal.c | 258 struct sigaction s, s2; in solaris_sigaction() local 288 ret = sys_sigaction(sig, act ? &s : NULL, old ? &s2 : NULL); in solaris_sigaction() 292 if (mapout (&s2.sa_mask, tmp2)) return -EINVAL; in solaris_sigaction() 294 if (s2.sa_flags & SA_STACK) tmp |= SOLARIS_SA_ONSTACK; in solaris_sigaction() 295 if (s2.sa_flags & SA_RESTART) tmp |= SOLARIS_SA_RESTART; in solaris_sigaction() 296 if (s2.sa_flags & SA_NOMASK) tmp |= SOLARIS_SA_NODEFER; in solaris_sigaction() 297 if (s2.sa_flags & SA_ONESHOT) tmp |= SOLARIS_SA_RESETHAND; in solaris_sigaction() 298 if (s2.sa_flags & SA_NOCLDSTOP) tmp |= SOLARIS_SA_NOCLDSTOP; in solaris_sigaction() 300 __put_user ((u32)(long)s2.sa_handler, &((struct sol_sigaction *)A(old))->sa_handler) || in solaris_sigaction()
|
/linux-2.4.37.9/fs/hfsplus/ |
D | unicode.c | 31 int hfsplus_unistrcmp(const hfsplus_unistr *s1, const hfsplus_unistr *s2) in hfsplus_unistrcmp() argument 37 len2 = be16_to_cpu(s2->length); in hfsplus_unistrcmp() 39 p2 = s2->unicode; in hfsplus_unistrcmp()
|
/linux-2.4.37.9/include/acpi/platform/ |
D | acenv.h | 229 #define ACPI_STRSTR(s1,s2) strstr((s1), (s2)) argument 292 #define ACPI_STRSTR(s1,s2) acpi_ut_strstr ((s1), (s2)) argument
|
/linux-2.4.37.9/include/asm-x86_64/ |
D | io.h | 57 #define __OUT2(s,s1,s2) \ argument 58 __asm__ __volatile__ ("out" #s " %" s1 "0,%" s2 "1" 67 #define __IN2(s,s1,s2) \ argument 68 __asm__ __volatile__ ("in" #s " %" s2 "1,%" s1 "0"
|
/linux-2.4.37.9/include/asm-i386/ |
D | io.h | 333 #define __OUT2(s,s1,s2) \ argument 334 __asm__ __volatile__ ("out" #s " %" s1 "0,%" s2 "1" 382 #define __IN2(s,s1,s2) \ argument 383 __asm__ __volatile__ ("in" #s " %" s2 "1,%" s1 "0"
|
/linux-2.4.37.9/arch/mips/dec/prom/ |
D | call_o32.S | 50 REG_S s2,O32_FRAMESZ-9*SZREG(sp) 79 REG_L s2,O32_FRAMESZ-9*SZREG(sp)
|
/linux-2.4.37.9/crypto/ |
D | cast6.c | 39 (((s1[I >> 24] ^ s2[(I>>16)&0xff]) - s3[(I>>8)&0xff]) + s4[I&0xff]) ) 41 (((s1[I >> 24] - s2[(I>>16)&0xff]) + s3[(I>>8)&0xff]) ^ s4[I&0xff]) ) 43 (((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s3[(I>>8)&0xff]) - s4[I&0xff]) ) 112 static const u32 s2[256] = { variable
|
/linux-2.4.37.9/drivers/net/sk98lin/h/ |
D | skdrv1st.h | 125 #define SK_MEMCMP(s1,s2,size) memcmp(s1,s2,size) argument
|
/linux-2.4.37.9/include/asm-mips/ |
D | regdef.h | 35 #define s2 $18 macro
|