Searched refs:s2 (Results 1 - 25 of 154) sorted by relevance

1234567

/asus-wl-520gu-7.0.1.45/src/router/pppd/pppd/plugins/radius/radiusclient/lib/
H A Dstrcasecmp.c26 int strcasecmp(char *s1, char *s2) argument
28 while (*s1 && *s2 && toupper(*s1) == toupper(*s2))
29 s1++, s2++;
31 if (!*s1 && !*s2)
34 return (toupper(*s1) - toupper(*s2));
/asus-wl-520gu-7.0.1.45/src/router/pppd.mppe/pppd/plugins/radius/radiusclient/lib/
H A Dstrcasecmp.c26 int strcasecmp(char *s1, char *s2) argument
28 while (*s1 && *s2 && toupper(*s1) == toupper(*s2))
29 s1++, s2++;
31 if (!*s1 && !*s2)
34 return (toupper(*s1) - toupper(*s2));
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ppc/lib/
H A Dstrcase.c6 int strcasecmp(const char *s1, const char *s2) argument
12 c2 = tolower(*s2++);
17 int strncasecmp(const char *s1, const char *s2, int n) argument
23 c2 = tolower(*s2++);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ppc64/lib/
H A Dstrcase.c11 int strcasecmp(const char *s1, const char *s2) argument
17 c2 = tolower(*s2++);
22 int strncasecmp(const char *s1, const char *s2, int n) argument
28 c2 = tolower(*s2++);
/asus-wl-520gu-7.0.1.45/src/router/library/libiconv-1.8/lib/
H A Dsjis.h26 Conversion between SJIS codes (s1,s2) and JISX0208 codes (c1,c2):
27 Example. (s1,s2) = 0x8140, (c1,c2) = 0x2121.
29 0x40 <= s2 <= 0x7E || 0x80 <= s2 <= 0xFC,
32 94*2*(s1 < 0xE0 ? s1-0x81 : s1-0xC1) + (s2 < 0x80 ? s2-0x40 : s2-0x41)
34 Conversion (s1,s2) -> (c1,c2):
36 t2 := (s2 < 0x80 ? s2
53 unsigned char s1, s2; local
[all...]
H A Dcp932.h52 Conversion between SJIS codes (s1,s2) and JISX0208 codes (c1,c2):
53 Example. (s1,s2) = 0x8140, (c1,c2) = 0x2121.
55 0x40 <= s2 <= 0x7E || 0x80 <= s2 <= 0xFC,
58 94*2*(s1 < 0xE0 ? s1-0x81 : s1-0xC1) + (s2 < 0x80 ? s2-0x40 : s2-0x41)
60 Conversion (s1,s2) -> (c1,c2):
62 t2 := (s2 < 0x80 ? s2
81 unsigned char s1, s2; local
[all...]
H A Djohab.h26 Conversion between JOHAB codes (s1,s2) and KSX1001 codes (c1,c2):
27 Example. (s1,s2) = 0xD931, (c1,c2) = 0x2121.
28 (s1,s2) = 0xDEF1, (c1,c2) = 0x2C71.
29 (s1,s2) = 0xE031, (c1,c2) = 0x4A21.
30 (s1,s2) = 0xF9FE, (c1,c2) = 0x7D7E.
32 0x31 <= s2 <= 0x7E || 0x91 <= s2 <= 0xFE,
36 94*(s1 < 0xE0 ? 2*s1-0x1B2 : 2*s1-0x197) + (s2 < 0x91 ? s2-0x31 : s2
63 unsigned char s1, s2; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/rp-l2tp/handlers/
H A Ddstring.h24 int dynstring_append(dynstring *str, char const *s2);
25 int dynstring_append_len(dynstring *str, char const *s2, size_t len);
H A Ddstring.c94 * s2 -- string to append
98 * Appends s2 to str
101 dynstring_append(dynstring *str, char const *s2) argument
103 return dynstring_append_len(str, s2, strlen(s2));
110 * s2 -- string to append
111 * len -- length of s2
115 * Appends s2 to str
118 dynstring_append_len(dynstring *str, char const *s2, size_t len) argument
129 memcpy(str->data + str->actual_size, s2, le
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/lib/
H A Dsecacl.c78 BOOL sec_acl_equal(SEC_ACL *s1, SEC_ACL *s2) argument
84 if (!s1 && !s2) return True;
85 if (!s1 || !s2) return False;
89 if (s1->revision != s2->revision) {
91 s1->revision, s2->revision));
95 if (s1->num_aces != s2->num_aces) {
97 s1->revision, s2->revision));
102 each ACE in s2. */
107 for (j = 0; j < s2->num_aces; j++) {
108 if (sec_ace_equal(&s1->ace[i], &s2
[all...]
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/zlib/
H A Dadler32.c14 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;}
27 unsigned long s2 = (adler >> 16) & 0xffff; local
42 s2 += s1;
45 s2 %= BASE;
47 return (s2 << 16) | s1;
/asus-wl-520gu-7.0.1.45/src/router/LPRng/src/include/
H A Dutilities.h54 int safestrcasecmp (const char *s1, const char *s2);
55 int safestrncasecmp (const char *s1, const char *s2, int len );
56 int safestrcmp( const char *s1, const char *s2 );
58 int safestrncmp( const char *s1, const char *s2, int len );
61 char *safestrpbrk( const char *s1, const char *s2 );
62 char *safestrappend4( char *s1, const char *s2, const char *s3, const char *s4 );
68 char *mystrncat( char *s1, const char *s2, int len );
69 char *mystrncpy( char *s1, const char *s2, int len );
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/misc/
H A Dutil.h18 extern int strcasecmp (char *s1, char *s2);
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/ntfs/
H A Dunistr.h32 wchar_t *s2, size_t s2_len, int ic,
40 int ntfs_wcsncasecmp(wchar_t *s1, wchar_t *s2, size_t n,
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/arm/boot/compressed/
H A Dhw-bse.c10 static int strcmp(const char *s1, const char *s2) argument
12 while (*s1 != '\0' && *s1 == *s2)
15 s2++;
18 return (*(unsigned char *) s1) - (*(unsigned char *) s2);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Delevator.h62 #define IN_ORDER(s1,s2) \
63 ((((s1)->rq_dev == (s2)->rq_dev && \
64 (s1)->sector < (s2)->sector)) || \
65 (s1)->rq_dev < (s2)->rq_dev)
H A Dzutil.h77 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;}
103 unsigned long s2 = (adler >> 16) & 0xffff; local
118 s2 += s1;
121 s2 %= BASE;
123 return (s2 << 16) | s1;
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Delevator.h62 #define IN_ORDER(s1,s2) \
63 ((((s1)->rq_dev == (s2)->rq_dev && \
64 (s1)->sector < (s2)->sector)) || \
65 (s1)->rq_dev < (s2)->rq_dev)
H A Dzutil.h77 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;}
103 unsigned long s2 = (adler >> 16) & 0xffff; local
118 s2 += s1;
121 s2 %= BASE;
123 return (s2 << 16) | s1;
/asus-wl-520gu-7.0.1.45/src/router/samba/source/script/
H A Dfindstatic.pl53 foreach my $s2 (@{$undef{$f2}}) {
54 if ($s2 eq $s) {
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-mips/
H A Dregdef.h35 #define s2 $18 macro
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-mips64/
H A Dregdef.h35 #define s2 $18 macro
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-mips/
H A Dregdef.h35 #define s2 $18 macro
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-mips64/
H A Dregdef.h35 #define s2 $18 macro
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm/
H A Dregdef.h35 #define s2 $18 macro

Completed in 158 milliseconds

1234567