Searched refs:c1 (Results 1 - 25 of 215) sorted by relevance

123456789

/haiku-fatelf/src/bin/coreutils/lib/
H A Dc-strcasecmp.c35 unsigned char c1, c2; local
42 c1 = c_tolower (*p1);
45 if (c1 == '\0')
51 while (c1 == c2);
54 return c1 - c2;
59 return (c1 > c2 ? 1 : c1 < c2 ? -1 : 0);
H A Dc-strncasecmp.c35 unsigned char c1, c2; local
42 c1 = c_tolower (*p1);
45 if (--n == 0 || c1 == '\0')
51 while (c1 == c2);
54 return c1 - c2;
59 return (c1 > c2 ? 1 : c1 < c2 ? -1 : 0);
H A Dmemchr2.h27 extern void *memchr2 (void const *s, int c1, int c2, size_t n);
H A Dmbscasecmp.c75 unsigned char c1, c2; local
79 c1 = TOLOWER (*p1);
82 if (c1 == '\0')
88 while (c1 == c2);
91 return c1 - c2;
96 return (c1 > c2 ? 1 : c1 < c2 ? -1 : 0);
H A Dmemchr2.c50 unsigned char c1; local
53 c1 = (unsigned char) c1_in;
56 if (c1 == c2)
57 return memchr (s, c1, n);
64 if (*char_ptr == c1 || *char_ptr == c2)
74 repeated_c1 has c1 in every byte.
77 repeated_c1 = c1 | (c1 << 8);
101 bytes in the longword in question are equal to c1 or c2. We first use
151 sizeof (longword) bytes starting at char_ptr is == c1 o
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/arch/x86_64/
H A De_expl.c17 * Separate log2(e) into the sum of an exact number c0 and small part c1.
18 * c0 + c1 = log2(e) to extra precision
20 * f = (c0 xi - i) + c0 xf + c1 x
28 static const long double c1 = 7.05260771340735992468e-6L; variable
60 "fmul %%st(4),%%st\n\t" /* 4 c1 * x */
61 "faddp %%st,%%st(1)\n\t" /* 3 f = f + c1 * x */
75 : "=t" (res) : "0" (x), "m" (c0), "m" (c1) : "ax", "dx");
/haiku-fatelf/src/add-ons/translators/icns/openjpeg/
H A Dmct.h51 @param c1 Samples for green component
55 void mct_encode(int *c0, int *c1, int *c2, int n);
59 @param c1 Samples for red chrominance component
63 void mct_decode(int *c0, int *c1, int *c2, int n);
74 @param c1 Samples for green component
78 void mct_encode_real(int *c0, int *c1, int *c2, int n);
82 @param c1 Samples for red chrominance component
86 void mct_decode_real(float* c0, float* c1, float* c2, int n);
H A Dmct.c53 int* restrict c1,
60 int g = c1[i];
66 c1[i] = u;
76 int* restrict c1,
83 int u = c1[i];
89 c1[i] = g;
106 int* restrict c1,
113 int g = c1[i];
119 c1[i] = u;
129 float* restrict c1,
51 mct_encode( int* restrict c0, int* restrict c1, int* restrict c2, int n) argument
74 mct_decode( int* restrict c0, int* restrict c1, int* restrict c2, int n) argument
104 mct_encode_real( int* restrict c0, int* restrict c1, int* restrict c2, int n) argument
127 mct_decode_real( float* restrict c0, float* restrict c1, float* restrict c2, int n) argument
[all...]
/haiku-fatelf/src/bin/network/wget/lib/
H A Dstrcasecmp.c39 unsigned char c1, c2; local
46 c1 = TOLOWER (*p1);
49 if (c1 == '\0')
55 while (c1 == c2);
58 return c1 - c2;
63 return (c1 > c2 ? 1 : c1 < c2 ? -1 : 0);
H A Dstrncasecmp.c39 unsigned char c1, c2; local
46 c1 = TOLOWER (*p1);
49 if (--n == 0 || c1 == '\0')
55 while (c1 == c2);
58 return c1 - c2;
63 return (c1 > c2 ? 1 : c1 < c2 ? -1 : 0);
/haiku-fatelf/src/system/libroot/posix/glibc/arch/x86/
H A De_expl.c17 * Separate log2(e) into the sum of an exact number c0 and small part c1.
18 * c0 + c1 = log2(e) to extra precision
20 * f = (c0 xi - i) + c0 xf + c1 x
28 static long double c1 = 7.05260771340735992468e-6L; variable
60 "fmul %%st(4),%%st\n\t" /* 4 c1 * x */
61 "faddp %%st,%%st(1)\n\t" /* 3 f = f + c1 * x */
75 : "=t" (res) : "0" (x), "m" (c0), "m" (c1) : "ax", "dx");
/haiku-fatelf/src/apps/mail/
H A DUtilities.cpp68 char c1; local
75 c1 = str1[loop];
76 if (c1 >= 'A' && c1 <= 'Z')
77 c1 += 'a' - 'A';
81 if (c1 == c2) {
82 } else if (c1 < c2) {
84 } else if (c1 > c2 || !c2) {
99 char c1; local
104 c1
128 char c1; local
[all...]
/haiku-fatelf/src/add-ons/translators/jpeg2000/libjasper/
H A Djpc_mct.h146 void jpc_rct(jas_matrix_t *c0, jas_matrix_t *c1, jas_matrix_t *c2);
149 void jpc_irct(jas_matrix_t *c0, jas_matrix_t *c1, jas_matrix_t *c2);
152 void jpc_ict(jas_matrix_t *c0, jas_matrix_t *c1, jas_matrix_t *c2);
155 void jpc_iict(jas_matrix_t *c0, jas_matrix_t *c1, jas_matrix_t *c2);
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dmbscmp.c35 wchar_t c1, c2; local
43 len1 = mbtowc ((wchar_t *) &c1, mbs1, MB_CUR_MAX);
52 return c1 - c2;
57 while (c1 == c2);
59 return c1 - c2;
/haiku-fatelf/headers/cpp/std/
H A Dstraits.h45 static void assign (char_type& c1, const char_type& c2) argument
46 { c1 = c2; }
47 static bool eq (const char_type& c1, const char_type& c2) argument
48 { return (c1 == c2); }
49 static bool ne (const char_type& c1, const char_type& c2) argument
50 { return !(c1 == c2); }
51 static bool lt (const char_type& c1, const char_type& c2) argument
52 { return (c1 < c2); }
111 static void assign (char_type& c1, const char_type& c2) argument
112 { c1
113 eq(const char_type & c1, const char_type& c2) argument
115 ne(const char_type& c1, const char_type& c2) argument
117 lt(const char_type& c1, const char_type& c2) argument
[all...]
/haiku-fatelf/src/libs/iconv/
H A Dcns11643_4.h35 unsigned char c1 = s[0]; local
36 if ((c1 >= 0x21 && c1 <= 0x6e)) {
40 unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);
/haiku-fatelf/src/system/boot/platform/raspberrypi_arm/
H A Dentry.S23 mrc p15, #0, r4, c1, c0, #0
25 mcr p15, #0, r4, c1, c0, #0
/haiku-fatelf/src/bin/diffutils/lib/
H A Dstrcasecmp.c47 unsigned char c1, c2; local
54 c1 = TOLOWER (*p1);
57 if (LENGTH_LIMIT_EXPR (--n == 0) || c1 == '\0')
63 while (c1 == c2);
65 return c1 - c2;
/haiku-fatelf/src/libs/libtelnet/
H A Dgenget.c60 char c1, c2; local
65 c1 = *s1;
67 while (LOWER(c1) == LOWER(c2)) {
68 if (c1 == '\0')
70 c1 = *++s1;
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/clock/
H A D1-1.c25 clock_t c1, c2; local
29 c1 = clock();
30 sec1 = c1/CLOCKS_PER_SEC;
/haiku-fatelf/headers/private/interface/
H A DColorTools.h57 inline bool operator==(const rgb_color c1, const rgb_color c2) argument
59 return (*((uint32*)&c1)) == (*((uint32*)&c2));
62 inline bool operator!=(const rgb_color c1, const rgb_color c2) argument
64 return (*((uint32*)&c1)) != (*((uint32*)&c2));
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/fork/
H A DMakefile10 TARGETS := s-c1
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_create/
H A DMakefile10 TARGETS := s-c1 s-c2 stress
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_mutex_lock/
H A DMakefile10 TARGETS := s-c1 s-c2 stress
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/sem_init/
H A DMakefile10 TARGETS := s-c1

Completed in 145 milliseconds

123456789