HomeSort by relevance Sort by last modified time
    Searched defs:s1 (Results 1 - 25 of 189) sorted by null

1 2 3 4 5 6 7 8

  /onnv/onnv-gate/usr/src/cmd/sendmail/libsm/
t-strrevcmp.c 25 char *s1; local
30 s1 = "equal";
32 SM_TEST(sm_strrevcmp(s1, s2) == 0);
34 s1 = "equal";
36 SM_TEST(sm_strrevcmp(s1, s2) > 0);
38 s1 = "qual";
40 SM_TEST(sm_strrevcmp(s1, s2) < 0);
42 s1 = "Equal";
44 SM_TEST(sm_strrevcmp(s1, s2) < 0);
46 s1 = "Equal"
    [all...]
t-strl.c 31 char *s1, *s2, *s3; local
37 s1 = "abc";
41 SM_TEST(sm_strlcpy(s3, s1, 4) == 3);
42 SM_TEST(strcmp(s1, s3) == 0);
48 SM_TEST(sm_strlcpy(s3, s1, 2) == 3);
56 SM_TEST(sm_strlcpy(s3, s1, 4) == 3);
62 SM_TEST(sm_strlcpy(s3, s1, 4) == 3);
68 SM_TEST(sm_strlcpy(s3, s1, 4) == 3);
74 SM_TEST(sm_strlcpy(s3, s1, 4) == 3);
80 SM_TEST(sm_strlcpy(s3, s1, 4) == 3)
    [all...]
  /onnv/onnv-gate/usr/src/common/util/
memccpy.c 51 unsigned char *s1 = s; local
54 if ((*s1++ = *s2++) == (unsigned char)c)
55 return (s1);
memcpy.c 65 char *s1 = s; local
69 *s1++ = *s2++;
memmove.c 57 char *s1 = s; local
60 if (s1 <= s2) {
62 *s1++ = *s2++;
66 s1 += n;
68 *--s1 = *--s2;
  /onnv/onnv-gate/usr/src/uts/sun4/os/
bcmp.c 49 const char *s1 = s1_arg; local
53 if (*s1++ != *s2++)
  /onnv/onnv-gate/usr/src/cmd/mdb/common/kmdb/kctl/
kctl_string.c 48 char *s1 = kobj_alloc(strlen(s) + 1, KM_SLEEP); local
50 (void) strcpy(s1, s);
51 return (s1);
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
strstr.c 48 const char *s1, *s2; local
52 s1 = as1;
56 return ((char *)s1);
59 while (*s1)
60 if (*s1++ == c) {
61 tptr = s1;
62 while ((c = *++s2) == *s1++ && c)
66 s1 = tptr;
  /onnv/onnv-gate/usr/src/lib/libgen/common/
strfind.c 35 * If `s2' is a substring of `s1' return the offset of the first
36 * occurrence of `s2' in `s1',
43 const char *s1, *s2; local
47 s1 = as1;
51 while (*s1)
52 if (*s1++ == c) {
53 offset = s1 - as1 - 1;
55 while ((c = *s2++) == *s1++ && c)
59 s1 = offset + as1 + 1;
  /onnv/onnv-gate/usr/src/cmd/sgs/libelf/misc/
nplist.c 38 char * s1, * s2; member in struct:name_pair
40 int s1, s2;
134 for (i = 0; nplist[i].s1; i++) {
135 if (strncmp(MSG_ORIG(nplist[i].s1), c, opl) == 0)
  /onnv/onnv-gate/usr/src/lib/libc/port/i18n/
wcswcs.c 44 const wchar_t *s1, *s2; local
48 s1 = ws1;
52 return ((wchar_t *)s1);
55 while (*s1)
56 if (*s1++ == c) {
57 tptr = s1;
58 while ((c = *++s2) == *s1++ && c)
62 s1 = tptr;
  /onnv/onnv-gate/usr/src/lib/libc/i386/gen/
strcmp.c 69 int *s1, *s2; local
113 s1 = (void *) str1;
132 --s1;
136 s1 -= 2;
140 s1 -= 3;
147 str1 = (void *) s1;
166 i1 = s1[0];
174 i1 = s1[1];
182 i1 = s1[2];
190 i1 = s1[3]
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fmli/sys/
copyfile.c 140 struct stat s1; local
153 if (stat(source, &s1) < 0)
157 times.actime = s1.st_atime;
158 times.modtime = s1.st_mtime;
160 chmod(target, s1.st_mode);
  /onnv/onnv-gate/usr/src/cmd/ldap/common/
dtest.c 43 char *str, *s1, *s2; local
  /onnv/onnv-gate/usr/src/common/crypto/ecc/
ecp_521.c 70 mp_digit s1[ECP521_DIGITS] = { 0 }; local
75 MP_DIGITS(&m1) = s1;
88 s1[i-FIRST_DIGIT] = (MP_DIGIT(a, i) >> 9)
91 s1[i-FIRST_DIGIT] = MP_DIGIT(a, i) >> 9;
  /onnv/onnv-gate/usr/src/common/openssl/crypto/bf/
bfs.cpp 40 unsigned long s1,s2,e1,e2; local
49 GetTSC(s1);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
  /onnv/onnv-gate/usr/src/common/openssl/crypto/cast/
casts.cpp 40 unsigned long s1,s2,e1,e2; local
52 GetTSC(s1);
67 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
  /onnv/onnv-gate/usr/src/common/openssl/crypto/des/
des3s.cpp 40 unsigned long s1,s2,e1,e2; local
49 GetTSC(s1);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
dess.cpp 40 unsigned long s1,s2,e1,e2; local
49 GetTSC(s1);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
  /onnv/onnv-gate/usr/src/common/openssl/crypto/rc5/
rc5s.cpp 40 unsigned long s1,s2,e1,e2; local
52 GetTSC(s1);
67 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
  /onnv/onnv-gate/usr/src/lib/libast/common/hash/
hashlook.c 48 register char* s1; local
65 s1 = hashname(b);
67 while ((c = *s1++) == *s2++)
106 register char* s1 = hashname(b); local
111 register char* s3 = s1 + tab->root->namesize;
113 while (*s1++ == *s2++)
114 if (s1 >= s3) goto found;
116 else while (*s1 == *s2++)
117 if (!*s1++) goto found;
  /onnv/onnv-gate/usr/src/cmd/mailx/
head.c 170 register char *s1, *s2; local
172 s1 = str1;
174 while (*s1)
175 *s2++ = *s1++;
  /onnv/onnv-gate/usr/src/common/openssl/crypto/md4/
md4s.cpp 45 unsigned long s1,s2,e1,e2; local
66 GetTSC(s1);
75 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
  /onnv/onnv-gate/usr/src/common/openssl/crypto/md5/
md5s.cpp 45 unsigned long s1,s2,e1,e2; local
66 GetTSC(s1);
75 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
  /onnv/onnv-gate/usr/src/common/openssl/crypto/rc4/
rc4s.cpp 41 unsigned long s1,s2,e1,e2; local
60 GetTSC(s1);
70 e1-s1,e2-s2,(e1-s1)-(e2-s2));

Completed in 1020 milliseconds

1 2 3 4 5 6 7 8