Searched refs:s1 (Results 76 - 100 of 200) sorted by relevance

12345678

/haiku-fatelf/src/system/libroot/posix/glibc/string/bits/
H A Dstring2.h790 # define strcmp(s1, s2) \
793 (__builtin_constant_p (s1) && __builtin_constant_p (s2) \
794 && (__s1_len = strlen (s1), __s2_len = strlen (s2), \
795 (!__string2_1bptr_p (s1) || __s1_len >= 4) \
797 ? memcmp ((__const char *) (s1), (__const char *) (s2), \
799 : (__builtin_constant_p (s1) && __string2_1bptr_p (s1) \
800 && (__s1_len = strlen (s1), __s1_len < 4) \
802 ? __strcmp_cc (s1, s2, __s1_len) \
803 : __strcmp_cg (s1, s
[all...]
/haiku-fatelf/src/bin/patch/
H A Dcommon.h149 #define strEQ(s1,s2) (!strcmp(s1, s2))
150 #define strnEQ(s1,s2,l) (!strncmp(s1, s2, l))
245 # define memcmp(s1, s2, n) bcmp (s1, s2, n)
H A Dpartime.c472 char const *s1 = ++s; local
481 s = parse_fixed (s1, (int) (s - s1), &num10);
503 char const *s1; local
544 s1 = s;
565 s = s1;
943 char const *s1; local
947 if (! (s1 = parse_prefix (s, &patterns, &p)))
952 s = s1;
/haiku-fatelf/src/bin/gawk/
H A Dbuiltin.c240 strncasecmpmbs(const char *s1, mbstate_t mbs1, const char *s2, argument
246 mbclen1 = mbrtowc(&wc1, s1 + i1, n - i1, &mbs1);
250 wc1 = s1[i1];
259 /* s1 and s2 are not equivalent. */
262 /* s1 and s2 are equivalent. */
307 NODE *s1, *s2; local
321 s1 = tree_eval(tree->lnode);
324 if ((s1->flags & (STRING|STRCUR)) == 0)
329 force_string(s1);
331 p1 = s1
547 const char *s0, *s1; local
2406 NODE *s1, *s2; local
2443 NODE *s1, *s2; local
2480 NODE *s1, *s2; local
2515 NODE *s1, *s2; local
2550 NODE *s1, *s2; local
[all...]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dunistr.h406 u8_cmp (const uint8_t *s1, const uint8_t *s2, size_t n);
408 u16_cmp (const uint16_t *s1, const uint16_t *s2, size_t n);
410 u32_cmp (const uint32_t *s1, const uint32_t *s2, size_t n);
415 u8_cmp2 (const uint8_t *s1, size_t n1, const uint8_t *s2, size_t n2);
417 u16_cmp2 (const uint16_t *s1, size_t n1, const uint16_t *s2, size_t n2);
419 u32_cmp2 (const uint32_t *s1, size_t n1, const uint32_t *s2, size_t n2);
566 u8_strcmp (const uint8_t *s1, const uint8_t *s2);
568 u16_strcmp (const uint16_t *s1, const uint16_t *s2);
570 u32_strcmp (const uint32_t *s1, const uint32_t *s2);
577 u8_strcoll (const uint8_t *s1, cons
[all...]
/haiku-fatelf/src/apps/mail/
H A DWords.cpp468 const char *s1, *s2; local
471 s1 = test;
476 while (*s2 || *s1) {
477 c1 = tolower(*s1);
480 if (*s2 && *s1) {
482 a = (tolower(s1[1]) == c2);
487 s1++;
493 s1++;
513 if (*s1)
514 s1
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A De_j0.c106 double z, s,c,ss,cc,r,u,v,r1,r2,s1,s2,z2,z4; local
147 s1 = one+z*S[1];
149 s = s1 + z2*s2 + z4*S[4];
363 double z,r,s,z2,z4,r1,r2,r3,s1,s2,s3; local
380 s1 = one+z*q[0];
383 s = s1 + z2*s2 + z4*s3;
510 double s,r,z,z2,z4,z6,r1,r2,r3,s1,s2,s3; local
527 s1 = one+z*q[0];
530 s = s1 + z2*s2 + z4*s3 +z6*q[5];
H A De_j1.c107 double z, s,c,ss,cc,r,u,v,y,r1,r2,s1,s2,s3,z2,z4; local
148 s1 = one+z*S[1];
151 s = s1 + z2*s2 + z4*s3;
363 double z,r,s,r1,r2,r3,s1,s2,s3,z2,z4; local
380 s1 = one+z*q[0];
383 s = s1 + z2*s2 + z4*s3;
511 double s,r,z,r1,r2,r3,s1,s2,s3,z2,z4,z6; local
528 s1 = one+z*q[0];
531 s = s1 + z2*s2 + z4*s3 + z6*q[5];
/haiku-fatelf/src/kits/tracker/
H A DTrackerString.cpp657 const char* s1 = string1; local
660 if (IsStartOfGlyph(*s1) && *s1 == *s2) {
661 s1++;
664 while (IsInsideGlyph(*s1) && *s1 == *s2) {
665 s1++;
669 return !IsInsideGlyph(*s1)
670 && !IsInsideGlyph(*s2) && *(s1 - 1) == *(s2 - 1);
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dstrcasecmp.c15 @deftypefn Supplemental int strcasecmp (const char *@var{s1}, const char *@var{s2})
76 strcasecmp(s1, s2)
77 const char *s1, *s2;
82 u1 = (unsigned char) *s1++;
/haiku-fatelf/src/add-ons/translators/jpeg2000/libjasper/
H A Djas_seq.c245 void jas_seq2d_bindsub(jas_matrix_t *s, jas_matrix_t *s1, int xstart, int ystart, argument
248 jas_matrix_bindsub(s, s1, ystart - s1->ystart_, xstart - s1->xstart_,
249 yend - s1->ystart_ - 1, xend - s1->xstart_ - 1);
/haiku-fatelf/headers/libs/agg/
H A Dagg_renderer_outline_aa.h598 int s1 = base_type::step_hor_base(m_di); local
602 *p1++ = (cover_type)base_type::m_ren.cover(s1);
605 while((dist = base_type::m_dist[dy] - s1) <= base_type::m_width)
612 while((dist = base_type::m_dist[dy] + s1) <= base_type::m_width)
629 int s1 = base_type::step_ver_base(m_di); local
633 *p1++ = (cover_type)base_type::m_ren.cover(s1);
636 while((dist = base_type::m_dist[dx] - s1) <= base_type::m_width)
643 while((dist = base_type::m_dist[dx] + s1) <= base_type::m_width)
763 int s1 = base_type::step_hor_base(m_di); local
772 *p1 = (cover_type)base_type::m_ren.cover(s1);
815 int s1 = base_type::step_ver_base(m_di); local
907 int s1 = base_type::step_hor_base(m_di); local
962 int s1 = base_type::step_ver_base(m_di); local
1122 int s1 = base_type::step_hor_base(m_di); local
1185 int s1 = base_type::step_ver_base(m_di); local
[all...]
H A Dagg_renderer_outline_image.h132 const color_type* s1; local
136 //s1 = m_buf.row_ptr(m_height + m_dilation - 1) + m_dilation;
142 //*d1++ = color_type(*s1++, 0);
152 s1 = m_buf.row_ptr(y) + m_dilation;
159 *d1++ = *s1++;
608 int s1 = m_di.dist() / m_lp.len; local
609 int s2 = -s1;
611 if(m_lp.inc < 0) s1 = -s1;
638 while((dist = m_dist_pos[dy]) - s1 <
694 int s1 = m_di.dist() / m_lp.len; local
[all...]
/haiku-fatelf/headers/private/kernel/arch/sparc/
H A Dstand.h152 #define bcmp(s1,s2,n) (memcmp((s2),(s1),(n)))
153 #define bcopy(s1,s2,n) ((void)memcpy((s2),(s1),(n)))
/haiku-fatelf/src/kits/shared/
H A DSHA256.cpp148 uint32 s1 = rotate_right(v1, 17) ^ rotate_right(v1, 19) ^ (v1 >> 10); local
149 fBuffer[i] = fBuffer[i - 16] + s0 + fBuffer[i - 7] + s1;
167 uint32 s1 = rotate_right(e, 6) ^ rotate_right(e, 11) local
170 uint32 t1 = h + s1 + ch + kRounds[i] + fBuffer[i];
/haiku-fatelf/src/libs/zlib/
H A Dzutil.c160 int ZLIB_INTERNAL zmemcmp(s1, s2, len)
161 const Bytef* s1;
168 if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1;
/haiku-fatelf/src/system/libroot/posix/glibc/arch/ppc/
H A Drshift.S39 lwz r11,0(r4) # load first s1 limb
H A Dlshift.S38 add r4,r4,r0 # make r4 point at end of s1
39 lwzu r11,-4(r4) # load first s1 limb
/haiku-fatelf/src/bin/diffutils/src/
H A Dutil.c319 lines_differ (char const *s1, char const *s2)
321 register unsigned char const *t1 = (unsigned char const *) s1;
380 && (unsigned char const *) s1 + 1 < t1
722 concat (char const *s1, char const *s2, char const *s3)
724 char *new = xmalloc (strlen (s1) + strlen (s2) + strlen (s3) + 1);
725 sprintf (new, "%s%s%s", s1, s2, s3);
315 lines_differ(char const *s1, char const *s2) argument
712 concat(char const *s1, char const *s2, char const *s3) argument
/haiku-fatelf/src/bin/rcs/
H A Dpartime.c339 char const *s1 = ++s; local
343 s = parse_fixed (s1, s - s1, &num10);
693 char const *s1; local
695 if (!(s1 = parse_prefix (s, &p, &i)))
698 s = s1;
/haiku-fatelf/src/bin/zip/
H A Dutil.c286 char *s1; /* revised string to match */ local
290 ((s1 = malloc(strlen(s) + 2)) != NULL))
292 strcpy(s1, s);
293 strcat(s1, ".");
298 s1 = (char *)s;
301 r = recmatch(p, s1, cs) == 1;
302 if (s != s1)
303 free((zvoid *)s1);
/haiku-fatelf/src/libs/mapm/
H A Dmapmutl2.c308 /* returns char position of first occurence of s2 in s1
311 int M_strposition(char *s1, char *s2) argument
318 p0 = s1;
/haiku-fatelf/src/add-ons/translators/webp/libwebp/enc/
H A Dfilter.c249 const int s1 = src1[x]; local
252 stats->xm += s1;
254 stats->xxm += s1 * s1;
255 stats->xym += s1 * s2;
/haiku-fatelf/src/apps/glteapot/
H A DQuaternion.h269 float s1 = sin(t * theta); local
270 return Quaternion((m_x * s0 + q.x() * s1) * d,
271 (m_y * s0 + q.y() * s1) * d,
272 (m_z * s0 + q.z() * s1) * d,
273 (m_w * s0 + q.m_w * s1) * d);
/haiku-fatelf/src/apps/haiku3d/
H A DQuaternion.h277 float s1 = sin(t * theta); local
278 return Quaternion((m_x * s0 + q.x() * s1) * d,
279 (m_y * s0 + q.y() * s1) * d,
280 (m_z * s0 + q.z() * s1) * d,
281 (m_w * s0 + q.m_w * s1) * d);

Completed in 298 milliseconds

12345678