Lines Matching defs:c2
10353 ** CREATE TABLE Ex1(c1 int, c2 int, c3 text);
20595 int c2 = (*zIn++); \
20596 c2 += ((*zIn++)<<8); \
20597 c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \
20605 int c2 = ((*zIn++)<<8); \
20606 c2 += (*zIn++); \
20607 c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \
59238 Mem c2;
59240 memset(&c2, 0, sizeof(c2));
59242 sqlite3VdbeMemShallowCopy(&c2, pMem2, MEM_Ephem);
59245 v2 = sqlite3ValueText((sqlite3_value*)&c2, pColl->enc);
59246 n2 = v2==0 ? 0 : c2.n;
59249 sqlite3VdbeMemRelease(&c2);
86722 u32 c, c2;
86754 while( (c2 = sqlite3Utf8Read(zString,&zString))!=0 ){
86756 GlogUpperToLower(c2);
86758 while( c2 != 0 && c2 != c ){
86759 c2 = sqlite3Utf8Read(zString, &zString);
86760 GlogUpperToLower(c2);
86763 while( c2 != 0 && c2 != c ){
86764 c2 = sqlite3Utf8Read(zString, &zString);
86767 if( c2==0 ) return 0;
86782 c2 = sqlite3Utf8Read(zPattern, &zPattern);
86783 if( c2=='^' ){
86785 c2 = sqlite3Utf8Read(zPattern, &zPattern);
86787 if( c2==']' ){
86789 c2 = sqlite3Utf8Read(zPattern, &zPattern);
86791 while( c2 && c2!=']' ){
86792 if( c2=='-' && zPattern[0]!=']' && zPattern[0]!=0 && prior_c>0 ){
86793 c2 = sqlite3Utf8Read(zPattern, &zPattern);
86794 if( c>=prior_c && c<=c2 ) seen = 1;
86797 if( c==c2 ){
86800 prior_c = c2;
86802 c2 = sqlite3Utf8Read(zPattern, &zPattern);
86804 if( c2==0 || (seen ^ invert)==0 ){
86810 c2 = sqlite3Utf8Read(zString, &zString);
86813 GlogUpperToLower(c2);
86815 if( c!=c2 ){