Searched defs:s1 (Results 51 - 75 of 146) sorted by relevance

123456

/osnet-11/usr/src/grub/grub2/grub-core/lib/posix_wrap/
H A Dwchar.h94 wcscoll (const wchar_t *s1, const wchar_t *s2) argument
96 while (*s1 && *s2)
98 if (*s1 != *s2)
101 s1++;
105 if (*s1 < *s2)
107 if (*s1 > *s2)
/osnet-11/usr/src/lib/libsum/common/
H A Dsum-att.c65 register uint32_t s0, s1, s2, s3, s4, s5, s6, s7; local
68 s0=s1=s2=s3=s4=s5=s6=s7=0U;
85 s1+=b[1];
98 c+=s0+s1+s2+s3+s4+s5+s6+s7;
/osnet-11/usr/src/lib/libshell/common/bltins/
H A Dpoll_solaris.c169 * Copy string s2 to s1. s1 must be large enough.
170 * return s1-1 (position of string terminator ('\0') in destnation buffer).
173 char *mystpcpy(char *s1, const char *s2) argument
175 while (*s1++ = *s2++)
177 return (s1-1);
/osnet-11/usr/src/lib/fm/libasr/common/
H A Dasr_topo.c214 smbios_system_t s1; local
224 if (((id = smbios_info_system(shp, &s1)) != SMB_ERR) &&
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt_wrap/
H A Dcipher_wrap.h104 memcmp (const void *s1, const void *s2, grub_size_t n) argument
106 return grub_memcmp (s1, s2, n);
/osnet-11/usr/src/cmd/ldap/common/
H A Dfileurl.c47 static void strcpy_escaped_and_convert( char *s1, char *s2 );
488 * Maximum space needed in s1 is 3 * strlen( s2 ) + 1.
494 strcpy_escaped_and_convert( char *s1, char *s2 ) argument
499 p = s1 + strlen( s1 );
/osnet-11/usr/src/lib/libast/common/features/
H A Dalign.c52 char s1; member in struct:_s_
/osnet-11/usr/src/lib/libc/port/gen/
H A Dexecvp.c210 execat(const char *s1, const char *s2, char *si) argument
216 while (*s1 && *s1 != ':') {
218 *s++ = *s1++;
221 s1++;
232 return (*s1 ? ++s1: 0);
/osnet-11/usr/src/lib/libc/port/threads/
H A Dalloc.c389 libc_strdup(const char *s1) argument
391 char *s2 = libc_malloc(strlen(s1) + 1);
394 (void) strcpy(s2, s1);
/osnet-11/usr/src/lib/pam_modules/list/
H A Dlist.c57 log_illegal_combination(const char *s1, const char *s2) argument
60 " %s and %s", s1, s2);
/osnet-11/usr/src/lib/librdc/common/
H A Dnetaddrs.c149 struct sockaddr_in *s1, *s2; local
181 s1 = (struct sockaddr_in *)retaddrs->n_addrs->buf;
199 (char *)&s1->sin_addr, sizeof (s1->sin_addr)) == 0) {
/osnet-11/usr/src/lib/libshell/common/sh/
H A Denv.c64 const unsigned char *s1=(unsigned const char*)key1; local
66 while((c= *s1++) && c!='=' && c==*s2)
/osnet-11/usr/src/lib/libnsl/dial/
H A Dcallers.c85 char *s1; local
92 s1 = pre;
94 *s1++ = *in++;
95 *s1 = NULLCHAR;
96 s1 = npart;
98 *s1++ = *in++;
99 *s1 = NULLCHAR;
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dunistr.c81 * @s1: name to compare to @s2
82 * @s1_len: length in Unicode characters of @s1
83 * @s2: name to compare to @s1
89 * Compare the names @s1 and @s2 and return TRUE (1) if the names are
93 BOOL ntfs_names_are_equal(const ntfschar *s1, size_t s1_len, argument
103 return ntfs_ucsncmp(s1, s2, s1_len) ? FALSE: TRUE;
104 return ntfs_ucsncasecmp(s1, s2, s1_len, upcase, upcase_size) ? FALSE:
178 * @s1: first string
182 * Compare the first @n characters of the Unicode strings @s1 and @s2,
187 * if @s1 (o
190 ntfs_ucsncmp(const ntfschar *s1, const ntfschar *s2, size_t n) argument
232 ntfs_ucsncasecmp(const ntfschar *s1, const ntfschar *s2, size_t n, const ntfschar *upcase, const u32 upcase_size) argument
[all...]
/osnet-11/usr/src/lib/libcmd/common/
H A Dcmp.c271 struct stat s1; local
385 if (fstat(sffileno(f1), &s1))
389 else if (s1.st_ino == s2.st_ino && s1.st_dev == s2.st_dev && o1 == o2)
392 n = ((flags & CMP_SILENT) && S_ISREG(s1.st_mode) && S_ISREG(s2.st_mode) && (s1.st_size - o1) != (s2.st_size - o2)) ? 1 : cmp(file1, f1, file2, f2, flags, count, differences);
/osnet-11/usr/src/lib/fm/topo/modules/common/bay/common/
H A Dbay_util.c59 cmp_str(const char *s1, const char *s2) argument
61 if (strlen(s1) == strlen(s2) &&
62 strncmp(s1, s2, strlen(s2)) == 0) {
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/ccache/
H A Dccfns.c71 krb5_principal s1, s2; local
83 s1 = creds->server;
88 if (!krb5_principal_compare(context, s1, s2)) {
93 creds->server = s1;
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/unicode/
H A Ducstr.c327 char *s1, *s2, *done; local
347 s1 = data1->data;
349 done = s1 + len;
351 while ((s1 < done) && KRB5_UTF8_ISASCII(s1) && KRB5_UTF8_ISASCII(s2)) {
353 char c1 = TOLOWER(*s1);
357 res = *s1 - *s2;
359 s1++;
362 /* done unless next character in s1 or s2 is non-ascii */
363 if (s1 < don
[all...]
/osnet-11/usr/src/lib/krb5/kadm5/srv/
H A Dchgpwd.c629 handle_chpw(krb5_context context, int s1, argument
648 if ((len = recvfrom(s1, req, sizeof (req), 0, (struct sockaddr *)&from,
671 * This is really obscure. s1 is used for all communications. it
680 * request. The s1 socket must not be closed, or else queued
719 len = sendto(s1, repdata.data, repdata.length, 0,
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Dblowfish.c45 u32 s1[256]; member in struct:__anon494
262 return ((bc->s0[a] + bc->s1[b]) ^ bc->s2[c] ) + bc->s3[d];
267 #define F(x) ((( s0[((byte*)&x)[0]] + s1[((byte*)&x)[1]]) \
270 #define F(x) ((( s0[((byte*)&x)[3]] + s1[((byte*)&x)[2]]) \
280 u32 xl, xr, *s0, *s1, *s2, *s3, *p; local
286 s1 = bc->s1;
346 u32 xl, xr, *s0, *s1, *s2, *s3, *p; local
352 s1 = bc->s1;
[all...]
H A Dcast5.c60 static const u32 s1[256] = { variable
348 (((s1[I >> 24] ^ s2[(I>>16)&0xff]) - s3[(I>>8)&0xff]) + s4[I&0xff]) )
350 (((s1[I >> 24] - s2[(I>>16)&0xff]) + s3[(I>>8)&0xff]) ^ s4[I&0xff]) )
352 (((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s3[(I>>8)&0xff]) - s4[I&0xff]) )
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Dblowfish.c45 u32 s1[256]; member in struct:__anon548
262 return ((bc->s0[a] + bc->s1[b]) ^ bc->s2[c] ) + bc->s3[d];
267 #define F(x) ((( s0[((byte*)&x)[0]] + s1[((byte*)&x)[1]]) \
270 #define F(x) ((( s0[((byte*)&x)[3]] + s1[((byte*)&x)[2]]) \
280 u32 xl, xr, *s0, *s1, *s2, *s3, *p; local
286 s1 = bc->s1;
346 u32 xl, xr, *s0, *s1, *s2, *s3, *p; local
352 s1 = bc->s1;
[all...]
H A Dcast5.c60 static const u32 s1[256] = { variable
348 (((s1[I >> 24] ^ s2[(I>>16)&0xff]) - s3[(I>>8)&0xff]) + s4[I&0xff]) )
350 (((s1[I >> 24] - s2[(I>>16)&0xff]) + s3[(I>>8)&0xff]) ^ s4[I&0xff]) )
352 (((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s3[(I>>8)&0xff]) - s4[I&0xff]) )
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dmisc.h106 int EXPORT_FUNC(memcmp) (const void *s1, const void *s2, grub_size_t n);
112 int EXPORT_FUNC(grub_memcmp) (const void *s1, const void *s2, grub_size_t n);
113 int EXPORT_FUNC(grub_strcmp) (const char *s1, const char *s2);
114 int EXPORT_FUNC(grub_strncmp) (const char *s1, const char *s2, grub_size_t n);
236 grub_strcasecmp (const char *s1, const char *s2) argument
238 while (*s1 && *s2)
240 if (grub_tolower (*s1) != grub_tolower (*s2))
243 s1++;
247 return (int) grub_tolower (*s1) - (int) grub_tolower (*s2);
251 grub_strncasecmp (const char *s1, cons argument
[all...]
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dmd5.c61 static char s1[4] = { 7, 12, 17, 22 }; variable
109 tmp = ROTATE_LEFT (tmp, s1[i & 3]);

Completed in 66 milliseconds

123456