Searched refs:s2 (Results 1 - 25 of 250) sorted by relevance

12345678910

/xsrc/external/mit/xf86-video-intel/dist/src/
H A Dintel_options.c72 namecmp(const char *s1, const char *s2) argument
77 if (!s2 || *s2 == 0)
86 while (*s2 == '_' || *s2 == ' ' || *s2 == '\t')
87 s2++;
90 c2 = isupper(*s2) ? tolower(*s2) : *s2;
[all...]
/xsrc/external/mit/xedit/dist/
H A Dstrcasecmp.c13 strcasecmp(const char *s1, const char *s2) argument
16 const unsigned char *us2 = (const unsigned char *)s2;
25 strncasecmp(const char *s1, const char *s2, size_t n) argument
29 const unsigned char *us2 = (const unsigned char *)s2;
/xsrc/external/mit/libX11/dist/src/xlibi18n/lcUniConv/
H A Dbig5_emacs.h12 Conversion between BIG5 codes (s1,s2) and BIG5-0 codes (c1,c2):
13 Example. (s1,s2) = 0xA140, (c1,c2) = 0x2121.
14 0xA1 <= s1 <= 0xC7, 0x40 <= s2 <= 0x7E || 0xA1 <= s2 <= 0xFE,
17 157*(s1-0xA1) + (s2 < 0x80 ? s2-0x40 : s2-0x62)
19 Conversion (s1,s2) -> (c1,c2):
20 t := 157*(s1-0xA1) + (s2 < 0x80 ? s2
122 unsigned char s1, s2; local in function:big5_0_wctomb
147 unsigned char s1, s2; local in function:big5_1_wctomb
[all...]
/xsrc/external/mit/brotli/dist/c/enc/
H A Dfind_match_length.h22 const uint8_t* s2,
27 if (BROTLI_PREDICT_FALSE(BROTLI_UNALIGNED_LOAD64LE(s2) ==
29 s2 += 8;
32 uint64_t x = BROTLI_UNALIGNED_LOAD64LE(s2) ^
41 if (BROTLI_PREDICT_TRUE(s1[matched] == *s2)) {
42 ++s2;
52 const uint8_t* s2,
55 const uint8_t* s2_limit = s2 + limit;
56 const uint8_t* s2_ptr = s2;
21 FindMatchLengthWithLimit(const uint8_t * s1,const uint8_t * s2,size_t limit) argument
/xsrc/external/mit/xkbevd/dist/
H A Dutils.h100 #define uStringEqual(s1,s2) (uStringCompare(s1,s2)==Equal)
102 #define uStringCompare(s1,s2) (strcmp(s1,s2))
103 #define uStrCaseEqual(s1,s2) (uStrCaseCmp(s1,s2)==0)
104 #define uStrCaseCmp(s1,s2) (strcasecmp(s1,s2))
/xsrc/external/mit/proxymngr/dist/
H A Dconfig.h45 #define ncasecmp(s1,s2,n) strncasecmp(s1,s2,n)
/xsrc/external/mit/xsetmode/dist/
H A Dxsetmode.c35 static int StrCaseCmp(char *s1, char *s2) argument
40 if (*s2 == 0)
46 c2 = (isupper(*s2) ? tolower(*s2) : *s2);
51 s1++; s2++;
53 c2 = (isupper(*s2) ? tolower(*s2) : *s2);
/xsrc/external/mit/libXpm/dist/src/
H A Dmisc.c48 char *s2; local in function:xpmstrdup
51 if (s2 = (char *) XpmMalloc(l))
52 strcpy(s2, s1);
53 return s2;
H A Ddata.c65 const char *s2; local in function:ParseComment
71 s2 = data->Bcmt;
76 s2++;
77 } while (c == *s2 && *s2 != '\0' && c);
79 if (*s2 != '\0') {
90 s2 = data->Ecmt;
91 while (*s != *s2 && c) {
109 s2++;
110 } while (c == *s2
124 const char *s2; local in function:ParseComment
[all...]
/xsrc/external/mit/xkbutils/dist/
H A Dutils.h67 #define uStrCaseEqual(s1,s2) (uStrCaseCmp(s1,s2)==0)
69 #define uStrCaseCmp(s1,s2) (strcasecmp(s1,s2))
72 const char * /* s2 */);
/xsrc/external/mit/xkbprint/dist/
H A Dutils.h90 #define uStringEqual(s1,s2) (uStringCompare(s1,s2)==Equal)
92 #define uStringCompare(s1,s2) (strcmp(s1,s2))
93 #define uStrCaseEqual(s1,s2) (strcasecmp(s1,s2)==0)
/xsrc/external/mit/freetype/dist/src/gzip/
H A Dadler32.c14 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;}
27 unsigned long s2 = (adler >> 16) & 0xffff; local in function:adler32
42 s2 += s1;
45 s2 %= BASE;
47 return (s2 << 16) | s1;
/xsrc/external/mit/xedit/dist/lisp/
H A Dlsp.c37 int strcasecmp(const char *s1, const char *s2);
38 int strncasecmp(const char *s1, const char *s2, size_t n);
/xsrc/external/mit/xorg-server.old/dist/os/
H A Dstrcasecmp.c55 xstrncasecmp(const char *s1, const char *s2, size_t n) argument
58 const u_char *us1 = (const u_char *)s1, *us2 = (const u_char *)s2;
/xsrc/external/mit/xorg-server/dist/os/
H A Dstrcasecmp.c55 xstrncasecmp(const char *s1, const char *s2, size_t n) argument
58 const u_char *us1 = (const u_char *) s1, *us2 = (const u_char *) s2;
/xsrc/external/mit/xkbcomp/dist/
H A Dutils.h140 #define uStringEqual(s1,s2) (uStringCompare(s1,s2)==Equal)
142 #define uStringCompare(s1,s2) (((s1)==NullString||(s2)==NullString)?\
143 (s1)!=(s2):strcmp(s1,s2))
144 #define uStrCaseEqual(s1,s2) (uStrCaseCmp(s1,s2)==0)
147 #define uStrCaseCmp(s1,s2) (strcasecmp(s1,s2))
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/sb/
H A Dsb_psi_ops.cpp145 value *s2 = n.src[5]; local in function:r600_sb::psi_ops::eliminate
154 if (s2->is_undef()) {
157 n.insert_after(sh.create_mov(d, s2));
159 } else if (s2->is_undef()) {
170 a->src.push_back(s2);
172 a->src.push_back(s2);
183 if (s2->is_any_gpr() && !s2->is_undef() && s2->def)
184 unpredicate(s2
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sb/
H A Dsb_psi_ops.cpp145 value *s2 = n.src[5]; local in function:r600_sb::psi_ops::eliminate
154 if (s2->is_undef()) {
157 n.insert_after(sh.create_mov(d, s2));
159 } else if (s2->is_undef()) {
170 a->src.push_back(s2);
172 a->src.push_back(s2);
183 if (s2->is_any_gpr() && !s2->is_undef() && s2->def)
184 unpredicate(s2
[all...]
/xsrc/external/mit/xsetpointer/dist/
H A Dxsetpointer.c36 StrCaseCmp(char *s1, char *s2) argument
41 if (*s2 == 0)
47 c2 = (isupper(*s2) ? tolower(*s2) : *s2);
52 s1++; s2++;
54 c2 = (isupper(*s2) ? tolower(*s2) : *s2);
/xsrc/external/mit/libxkbfile/dist/src/
H A DXKBfileInt.h70 #define _XkbStrCaseEqual(s1,s2) (_XkbStrCaseCmp(s1,s2)==0)
73 extern int _XkbStrCaseCmp(char *s1, char *s2);
/xsrc/external/mit/glu/dist/src/libnurbs/internals/
H A Darctess.cc79 ArcTessellator::bezier( Arc *arc, REAL s1, REAL s2, REAL t1, REAL t2 ) argument
87 assert( s1 == s2 );
91 assert( s1 == s2 );
96 assert( s2 < s1 );
100 assert( s1 < s2 );
112 p[1].param[0] = s2;
114 assert( (s1 == s2) || (t1 == t2) );
185 ArcTessellator::pwl_top( Arc *arc, REAL t, REAL s1, REAL s2, REAL rate ) argument
187 assert( s2 < s1 );
191 /* int nsteps = 1 + (int) ((s1 - s2) / rat
214 pwl_bottom(Arc * arc,REAL t,REAL s1,REAL s2,REAL rate) argument
243 pwl(Arc * arc,REAL s1,REAL s2,REAL t1,REAL t2,REAL rate) argument
282 REAL s1, s2, t1, t2; local in function:ArcTessellator::tessellateLinear
[all...]
/xsrc/local/programs/x11-ssh-askpass/
H A Dresources.c165 char *s2; local in function:get_pixel_resource
168 for (s2 = s + strlen(s) - 1; s2 > s; s2--)
169 if (*s2 == ' ' || *s2 == '\t')
170 *s2 = 0;
/xsrc/external/mit/xterm/dist/
H A Dxstrings.c394 x_strcasecmp(const char *s1, const char *s2) argument
397 size_t len2 = (s2 != NULL) ? strlen(s2) : 0;
401 : x_strncasecmp(s1, s2, (unsigned) len1));
405 x_strncasecmp(const char *s1, const char *s2, unsigned n) argument
409 if (s1 != NULL && s2 != NULL) {
412 char c2 = x_toupper(*s2);
420 s2++;
422 } else if (s1 == NULL && s2 != NULL) {
424 } else if (s1 != NULL && s2
454 x_strindex(char * s1,const char * s2) argument
[all...]
/xsrc/external/mit/freetype/dist/src/tools/
H A Dtest_trig.c102 FT_Fixed c2, s2; local in function:test_atan2
114 s2 = (FT_Fixed)(s1*65536.0);
116 j = FT_Atan2( c2, s2 );
123 c2/65536.0, s2/65536.0, j/65536.0, i/65536.0 );
139 FT_Fixed c2, s2; local in function:test_unit
147 s2 = (FT_Fixed)(s1*65536.0);
150 abs( v.y-s2 ) > THRESHOLD )
207 FT_Fixed c2, s2, c4, s4; local in function:test_rotate
219 v.y = s2 = (FT_Fixed)(s1*65536.0);
235 c2/65536.0, s2/65536.
[all...]
/xsrc/external/mit/MesaLib/dist/src/amd/compiler/tests/
H A Dtest_assembler.cpp37 bld.smem(aco_opcode::s_memtime, bld.def(s2)).def(0).setFixed(PhysReg{0});
50 bld.sopp(aco_opcode::s_branch, Definition(PhysReg(0), s2), 1);
73 bld.sopp(aco_opcode::s_branch, Definition(PhysReg(0), s2), 2);
104 bld.sopp(aco_opcode::s_cbranch_scc0, Definition(PhysReg(0), s2), 2);
141 bld.sopp(aco_opcode::s_branch, Definition(PhysReg(0), s2), 0);
170 bld.sopp(aco_opcode::s_cbranch_execnz, Definition(PhysReg(0), s2), 0);
189 bld.sopp(aco_opcode::s_branch, Definition(PhysReg(0), s2), 1);
193 bld.sopp(aco_opcode::s_branch, Definition(PhysReg(0), s2), 2);
212 bld.sopp(aco_opcode::s_branch, Definition(PhysReg(0), s2), 2);
223 bld.sop1(aco_opcode::p_constaddr_getpc, Definition(PhysReg(0), s2), Operan
[all...]

Completed in 10 milliseconds

12345678910