Lines Matching refs:c1
3532 ** CREATE TABLE t1(c1 VARIANT);
3536 ** SELECT c1 + 1, c1 FROM t1;
9581 ** CREATE TABLE Ex1(c1 int, c2 int, c3 text);
9582 ** CREATE INDEX Ex2 ON Ex1(c3,c1);
9589 ** The second column to be indexed (c1) has an index of 0 in
13156 sqlite3_int64 c1;
13158 c1 = localtimeOffset(p);
13159 p->iJD -= c1;
13161 p->iJD += c1 - localtimeOffset(p);
55022 Mem c1;
55024 memset(&c1, 0, sizeof(c1));
55026 sqlite3VdbeMemShallowCopy(&c1, pMem1, MEM_Ephem);
55028 v1 = sqlite3ValueText((sqlite3_value*)&c1, pColl->enc);
55029 n1 = v1==0 ? 0 : c1.n;
55033 sqlite3VdbeMemRelease(&c1);
78838 u8 c1 = (u8)pDef->zName[0];
78839 int h = (sqlite3UpperToLower[c1] + nName) % ArraySize(pHash->a);