Searched defs:s1 (Results 1 - 8 of 8) sorted by relevance

/solaris-x11-s11/open-src/app/gfx-utils/sun-src/fbconf_xorg/xf86/
H A DPointer.c102 char *s, *s1, *s2; local
187 s1 = xf86uLongToString(val.num);
189 xf86conffree(s1);
193 l = strlen(s1) + 1 + strlen(s2) + 1;
195 sprintf(s, "%s %s", s1, s2);
196 xf86conffree(s1);
H A DKeyboard.c118 char *s, *s1, *s2; local
140 s1 = xf86uLongToString(val.num);
142 xf86conffree(s1);
146 l = strlen(s1) + 1 + strlen(s2) + 1;
148 sprintf(s, "%s %s", s1, s2);
149 xf86conffree(s1);
161 s1 = xf86uLongToString(val.num);
162 l += (1 + strlen(s1));
165 strcat(s, s1);
166 xf86conffree(s1);
[all...]
H A Dscan.c1112 * Compare two name-like strings pointed to by s1 and s2. Ignore
1114 * matches the initial characters of s1 then return a pointer to the
1115 * next character of s1 via s1resume (where further comparison could
1122 const char *s1, const char *s2, const char **s1resume)
1124 int c1; /* Normalized character from s1 */
1129 if ((s1 == NULL) && (s2 == NULL)) {
1132 if (s1 == NULL) {
1140 while ((*s1 == '_') || (*s1 == ' ') || (*s1
1121 xf86nameCompareResumable( const char *s1, const char *s2, const char **s1resume) argument
1175 xf86nameCompare(const char *s1, const char *s2) argument
1266 xf86optionNameCompare( const char *const bool_option_names[], const char *s1, const char *s2) argument
[all...]
/solaris-x11-s11/open-src/app/xcolor/sun-src/
H A DXCrHsbCmap.c41 double s1, /* starting saturation */
59 HSBramp(h1, s1, b1, h2, s2, b2, 0, count - 1, red, green, blue);
35 XCreateHSBColormap( Display *dsp, int screen, Colormap *cmap, int count, double h1, double s1, double b1, double h2, double s2, double b2, int bw, Visual **visual) argument
H A DHSBmap.c97 double s1,
120 ds = (s2 - s1) / 255.0;
123 hsb2rgb(h1, s1, b1, r++, g++, b++);
125 s1 += ds;
95 HSBramp( double h1, double s1, double b1, double h2, double s2, double b2, int start, int end, u_char *red, u_char *green, u_char *blue) argument
/solaris-x11-s11/open-src/app/xlock/sun-src/
H A Dhsbramp.c126 double s1,
142 ds = (s2 - s1) / count;
145 hsb2rgb(h1, s1, b1, red++, green++, blue++);
147 s1 += ds;
124 hsbramp( double h1, double s1, double b1, double h2, double s2, double b2, int count, u_char *red, u_char *green, u_char *blue) argument
/solaris-x11-s11/open-src/app/gfx-utils/sun-src/fbconf_xorg/fbc/
H A Dfbc_getargs.c120 int (* strcmp_fn)(const char *s1, const char *s2),
250 int (* strcmp_fn)(const char *s1, const char *s2);
116 fbc_add_Option_mod( sectn_mask_t option_section, const char *option_name, const char *option_value, int (* strcmp_fn)(const char *s1, const char *s2), fbc_varient_t *fbvar, xf86_opt_mod_t **option_mod_p) argument
/solaris-x11-s11/open-src/lib/DPS/sun-src/libdpstk/
H A DFontSample.c1799 String strstr(String s1, String s2) argument
1803 len1 = strlen(s1);
1807 if (*s1 == *s2) {
1808 if (strncmp(s1+1, s2+1, len2-1) == 0) return s1;
1811 s1++;

Completed in 22 milliseconds