Lines Matching refs:c1
3525 ** CREATE TABLE t1(c1 VARIANT);
3529 ** SELECT c1 + 1, c1 FROM t1;
9574 ** CREATE TABLE Ex1(c1 int, c2 int, c3 text);
9575 ** CREATE INDEX Ex2 ON Ex1(c3,c1);
9582 ** The second column to be indexed (c1) has an index of 0 in
13149 sqlite3_int64 c1;
13151 c1 = localtimeOffset(p);
13152 p->iJD -= c1;
13154 p->iJD += c1 - localtimeOffset(p);
55015 Mem c1;
55017 memset(&c1, 0, sizeof(c1));
55019 sqlite3VdbeMemShallowCopy(&c1, pMem1, MEM_Ephem);
55021 v1 = sqlite3ValueText((sqlite3_value*)&c1, pColl->enc);
55022 n1 = v1==0 ? 0 : c1.n;
55026 sqlite3VdbeMemRelease(&c1);
78831 u8 c1 = (u8)pDef->zName[0];
78832 int h = (sqlite3UpperToLower[c1] + nName) % ArraySize(pHash->a);