Lines Matching refs:c2
257 int c, c2, cx; in quotaStrglob() local
275 while( (c2 = (*(z++)))!=0 ){ in quotaStrglob()
276 while( c2!=c && c2!=cx ){ in quotaStrglob()
277 c2 = *(z++); in quotaStrglob()
278 if( c2==0 ) return 0; in quotaStrglob()
291 c2 = *(zGlob++); in quotaStrglob()
292 if( c2=='^' ){ in quotaStrglob()
294 c2 = *(zGlob++); in quotaStrglob()
296 if( c2==']' ){ in quotaStrglob()
298 c2 = *(zGlob++); in quotaStrglob()
300 while( c2 && c2!=']' ){ in quotaStrglob()
301 if( c2=='-' && zGlob[0]!=']' && zGlob[0]!=0 && prior_c>0 ){ in quotaStrglob()
302 c2 = *(zGlob++); in quotaStrglob()
303 if( c>=prior_c && c<=c2 ) seen = 1; in quotaStrglob()
306 if( c==c2 ){ in quotaStrglob()
309 prior_c = c2; in quotaStrglob()
311 c2 = *(zGlob++); in quotaStrglob()
313 if( c2==0 || (seen ^ invert)==0 ) return 0; in quotaStrglob()