Searched refs:s1 (Results 126 - 150 of 200) sorted by relevance

12345678

/haiku-fatelf/src/bin/coreutils/lib/
H A Dstring.h538 extern int mbscasecmp (const char *s1, const char *s2)
552 extern int mbsncasecmp (const char *s1, const char *s2, size_t n)
H A Dstring.in.h499 extern int mbscasecmp (const char *s1, const char *s2)
513 extern int mbsncasecmp (const char *s1, const char *s2, size_t n)
/haiku-fatelf/src/bin/gzip/
H A Dgetopt.c176 extern int strcmp (const char *s1, const char *s2);
177 extern int strncmp(const char *s1, const char *s2, int n);
H A Dgzip.h34 # define memcmp(s1, s2, n) bcmp((s1), (s2), (n))
/haiku-fatelf/src/bin/network/wget/lib/
H A Dstring.in.h471 extern int mbscasecmp (const char *s1, const char *s2);
484 extern int mbsncasecmp (const char *s1, const char *s2, size_t n);
/haiku-fatelf/src/bin/rcs/
H A Drcsedit.c317 # define movelines(s1, s2, n) VOID memmove(s1, s2, (n)*sizeof(Iptr_type))
321 movelines(s1, s2, n)
322 register Iptr_type *s1;
326 if (s1 < s2)
328 *s1++ = *s2++;
331 s1 += n;
334 *--s1 = *--s2;
/haiku-fatelf/src/libs/ncurses/progs/
H A Dinfocmp.c343 char *s1, *s2; local
395 s1 = e1->tterm.Strings[idx];
399 if (capcmp(idx, s1, s2)) {
400 dump_string(s1, buf1);
408 if (s1 && s2 && !capcmp(idx, s1, s2))
409 (void) printf("\t%s= '%s'.\n", name, TIC_EXPAND(s1));
413 if (!s1 && !s2)
/haiku-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A De_asin.c57 double x1,x2,xx,s1,s2,res1,p,t,res,r,cor,cc,y,c,z,w[2]; local
83 s1 = a1.x*p;
86 res1 = x+s1;
87 s2 = ((x-res1)+s1)+s2;
336 double x1,x2,xx,s1,s2,res1,p,t,res,r,cor,cc,y,c,z,w[2],eps; local
367 s1 = a1.x*p;
370 res1 = x+s1;
371 s2 = ((x-res1)+s1)+s2;
H A De_lgamma_r.c139 s1 = 2.14982415960608852501e-01, /* 0x3FCB848B, 0x36E20878 */ variable
288 p = y*(s0+y*(s1+y*(s2+y*(s3+y*(s4+y*(s5+y*s6))))));
H A De_lgammaf_r.c75 s1 = 2.1498242021e-01, /* 0x3e5c245a */ variable
224 p = y*(s0+y*(s1+y*(s2+y*(s3+y*(s4+y*(s5+y*s6))))));
H A De_lgammal_r.c177 s1 = -3.901428390086348447890408306153378922752E6L, variable
410 (s0 + y * (s1 + y * (s2 + y * (s3 + y * (s4 + y * (s5 + y * s6))))));
/haiku-fatelf/src/bin/network/wget/src/
H A Dcmpt.c65 strcasecmp (const char *s1, const char *s2)
67 register const unsigned char *p1 = (const unsigned char *) s1;
94 strncasecmp (const char *s1, const char *s2, size_t n)
96 register const unsigned char *p1 = (const unsigned char *) s1;
328 # define strncasecmp(s1, s2, n) __strncasecmp (s1, s2, n)
64 strcasecmp(const char *s1, const char *s2) argument
93 strncasecmp(const char *s1, const char *s2, size_t n) argument
/haiku-fatelf/src/libs/ncurses/test/
H A Dbs.c850 const char *s1; local
860 for (s1 = s; *s1 && ch != *s1; ++s1)
862 if (*s1) {
/haiku-fatelf/src/apps/deskbar/
H A DSwitcher.cpp317 SmartStrcmp(const char* s1, const char* s2) argument
319 if (strcasecmp(s1, s2) == 0)
323 while (*s1 && *s2) {
324 if ((*s1 == ' ') || (*s1 == '_')) {
325 s1++;
332 if (*s1 != *s2) {
336 s1++;
342 if (*s1)
/haiku-fatelf/src/bin/unzip/
H A Dfileio.c2403 int zstrnicmp(s1, s2, n)
2404 register ZCONST char *s1, *s2;
2407 for (; n > 0; --n, ++s1, ++s2) {
2409 if (ToLower(*s1) != ToLower(*s2))
2411 return (ToLower(*s1) < ToLower(*s2))? -1 : 1;
2413 if (*s1 == '\0') /* both strings terminate early */
2543 char Far * Far zfstrcpy(char Far *s1, const char Far *s2) argument
2545 char Far *p = s1;
2547 while ((*s1++ = *s2++) != '\0');
/haiku-fatelf/src/bin/bash/lib/intl/
H A Ddcigettext.c263 const struct known_translation_t *s1; local
267 s1 = (const struct known_translation_t *) p1;
270 result = strcmp (s1->msgid, s2->msgid);
273 result = strcmp (s1->domainname, s2->domainname);
278 result = s1->category - s2->category;
/haiku-fatelf/src/bin/gawk/intl/
H A Ddcigettext.c257 const struct known_translation_t *s1; local
261 s1 = (const struct known_translation_t *) p1;
264 result = strcmp (s1->msgid, s2->msgid);
267 result = strcmp (s1->domainname, s2->domainname);
272 result = s1->category - s2->category;
/haiku-fatelf/src/bin/less/
H A Dregexp.c1228 * strcspn - find length of initial segment of s1 consisting entirely
1233 strcspn(s1, s2)
1234 char *s1;
1242 for (scan1 = s1; *scan1 != '\0'; scan1++) {
/haiku-fatelf/src/libs/print/libgutenprint/src/main/
H A Dprint-util.c558 stp_read_and_compose_curves(const char *s1, const char *s2, argument
565 if (s1)
566 t1 = stp_curve_create_from_string(s1);
/haiku-fatelf/src/system/libroot/posix/crypt/
H A Dcrypt_util.c412 int s1, s2; local
415 s1 = s_lookup(2 * sg, j1);
420 to_permute = (((ufc_long)s1 << 4) |
/haiku-fatelf/src/add-ons/translators/jpeg2000/libjasper/jasper/
H A Djas_seq.h316 void jas_seq2d_bindsub(jas_matrix_t *s, jas_matrix_t *s1, int xstart,
/haiku-fatelf/src/bin/bc/bc/
H A Dscan.c2171 static void yy_flex_strncpy( char *s1, yyconst char *s2, int n ) argument
2173 static void yy_flex_strncpy( s1, s2, n )
2174 char *s1;
2181 s1[i] = s2[i];
/haiku-fatelf/src/libs/zlib/
H A Dzutil.h240 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
/haiku-fatelf/src/bin/network/tcpdump/libpcap/
H A Dpcap.c463 pcap_strcasecmp(const char *s1, const char *s2) argument
466 *us1 = (u_char *)s1,
/haiku-fatelf/src/bin/gdb/gdb/
H A Dprintcmd.c1912 char *s1;
1917 s1 = s;
1918 val_args[nargs] = parse_to_comma_and_eval (&s1);
1932 s = s1;
1905 char *s1; local

Completed in 180 milliseconds

12345678