Lines Matching refs:c2
9581 ** CREATE TABLE Ex1(c1 int, c2 int, c3 text);
19510 int c2 = (*zIn++); \
19511 c2 += ((*zIn++)<<8); \
19512 c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \
19520 int c2 = ((*zIn++)<<8); \
19521 c2 += (*zIn++); \
19522 c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \
55023 Mem c2;
55025 memset(&c2, 0, sizeof(c2));
55027 sqlite3VdbeMemShallowCopy(&c2, pMem2, MEM_Ephem);
55030 v2 = sqlite3ValueText((sqlite3_value*)&c2, pColl->enc);
55031 n2 = v2==0 ? 0 : c2.n;
55034 sqlite3VdbeMemRelease(&c2);
80195 int c, c2;
80227 while( (c2 = sqlite3Utf8Read(zString,&zString))!=0 ){
80229 GlogUpperToLower(c2);
80231 while( c2 != 0 && c2 != c ){
80232 c2 = sqlite3Utf8Read(zString, &zString);
80233 GlogUpperToLower(c2);
80236 while( c2 != 0 && c2 != c ){
80237 c2 = sqlite3Utf8Read(zString, &zString);
80240 if( c2==0 ) return 0;
80255 c2 = sqlite3Utf8Read(zPattern, &zPattern);
80256 if( c2=='^' ){
80258 c2 = sqlite3Utf8Read(zPattern, &zPattern);
80260 if( c2==']' ){
80262 c2 = sqlite3Utf8Read(zPattern, &zPattern);
80264 while( c2 && c2!=']' ){
80265 if( c2=='-' && zPattern[0]!=']' && zPattern[0]!=0 && prior_c>0 ){
80266 c2 = sqlite3Utf8Read(zPattern, &zPattern);
80267 if( c>=prior_c && c<=c2 ) seen = 1;
80270 if( c==c2 ){
80273 prior_c = c2;
80275 c2 = sqlite3Utf8Read(zPattern, &zPattern);
80277 if( c2==0 || (seen ^ invert)==0 ){
80283 c2 = sqlite3Utf8Read(zString, &zString);
80286 GlogUpperToLower(c2);
80288 if( c!=c2 ){