• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/Heimdal-398.1.2/lib/sqlite/

Lines Matching +defs:cl +defs:base

7000 ** SQLite code base to cause the statement that provoked the callback
11052 char *zBase; /* A base allocation. Not from malloc. */
16622 ** Return the ceiling of the logarithm base 2 of iValue.
16647 int nMinLog; /* Log base 2 of minimum allocation size in bytes */
18968 etByte base; /* The base for radix conversion */
19318 register int base;
19320 base = infop->base;
19322 *(--bufpt) = cset[longvalue%base];
19323 longvalue = longvalue/base;
23352 /* Find node by it's shared memory base name */
26460 ** The file suffix added to the data base filename in order to create the
64061 } cl;
69321 /* Initialize sqlite3_vtab_cursor base class */
69358 #if 0 /* local variables moved into u.cl */
69370 #endif /* local variables moved into u.cl */
69372 u.cl.pQuery = &aMem[pOp->p3];
69373 u.cl.pArgc = &u.cl.pQuery[1];
69374 u.cl.pCur = p->apCsr[pOp->p1];
69375 assert( memIsValid(u.cl.pQuery) );
69376 REGISTER_TRACE(pOp->p3, u.cl.pQuery);
69377 assert( u.cl.pCur->pVtabCursor );
69378 u.cl.pVtabCursor = u.cl.pCur->pVtabCursor;
69379 u.cl.pVtab = u.cl.pVtabCursor->pVtab;
69380 u.cl.pModule = u.cl.pVtab->pModule;
69383 assert( (u.cl.pQuery->flags&MEM_Int)!=0 && u.cl.pArgc->flags==MEM_Int );
69384 u.cl.nArg = (int)u.cl.pArgc->u.i;
69385 u.cl.iQuery = (int)u.cl.pQuery->u.i;
69389 u.cl.res = 0;
69390 u.cl.apArg = p->apArg;
69391 for(u.cl.i = 0; u.cl.i<u.cl.nArg; u.cl.i++){
69392 u.cl.apArg[u.cl.i] = &u.cl.pArgc[u.cl.i+1];
69393 sqlite3VdbeMemStoreType(u.cl.apArg[u.cl.i]);
69397 rc = u.cl.pModule->xFilter(u.cl.pVtabCursor, u.cl.iQuery, pOp->p4.z, u.cl.nArg, u.cl.apArg);
69399 importVtabErrMsg(p, u.cl.pVtab);
69401 u.cl.res = u.cl.pModule->xEof(u.cl.pVtabCursor);
69404 if( u.cl.res ){
69408 u.cl.pCur->nullRow = 0;
83871 ** cursor number base+i for the i-th index.
96851 ** code base. Then are intended to be called from within the debugger
97704 int base;
97719 base = sqlite3VdbeAddOpList(v, ArraySize(dropTrigger), dropTrigger);
97720 sqlite3VdbeChangeP4(v, base+1, pTrigger->zName, P4_TRANSIENT);
97721 sqlite3VdbeChangeP4(v, base+4, "trigger", P4_STATIC);
101806 int base, /* Cursor number for the table pIdx is on */
101835 if( p->iTable!=base ) return 0;
101840 int iExpr = findIndexCol(pParse, pDistinct, base, pIdx, i);
101918 ** the table has a cursor number of "base". pIdx is an index on pTab.
101934 int base, /* Cursor number for the table to be sorted */
101975 if( pExpr->op!=TK_COLUMN || pExpr->iTable!=base ){
102028 if( iColumn<0 && !referencesOtherTables(pOrderBy, pMaskSet, j, base) ){
102047 && !referencesOtherTables(pOrderBy, pMaskSet, j, base) ){
103281 double log10N; /* base-10 logarithm of nRow (inexact) */
103746 ** to the n registers starting at base.
103755 static void codeApplyAffinity(Parse *pParse, int base, int n, char *zAff){
103763 /* Adjust base and n to skip over SQLITE_AFF_NONE entries at the beginning
103768 base++;
103777 sqlite3VdbeAddOp2(v, OP_Affinity, base, n);
103779 sqlite3ExprCacheAffinityChange(pParse, base, n);
105709 ** for base tokens is called "yy0".
114178 sqlite3_vtab base; /* Base class used by SQLite core */
114242 sqlite3_vtab_cursor base; /* Base class used by SQLite core */
114302 ** sequence. A single token is the base case and the most common case.
115398 *ppVTab = &p->base;
115529 assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 );
115535 assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 );
116699 Fts3Table *p = (Fts3Table *)pCsr->base.pVtab;
116844 assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 );
116911 p->base.zErrMsg = sqlite3_mprintf(zErr, zQuery);
117006 assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 );
117209 p = (Fts3Table *)pCursor->base.pVtab;
117627 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
117769 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
117872 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
118060 Fts3Table *p = (Fts3Table*)pCsr->base.pVtab;
118113 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
118224 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
118838 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
118947 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
118996 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
119086 sqlite3_vtab base; /* Base class used by SQLite core */
119091 sqlite3_vtab_cursor base; /* Base class used by SQLite core */
119092 Fts3MultiSegReader csr; /* Must be right after "base" */
120926 sqlite3_tokenizer base; /* Base class */
120933 sqlite3_tokenizer_cursor base;
120958 *ppTokenizer = &t->base;
121001 *ppCursor = &c->base;
122060 sqlite3_tokenizer base;
122065 sqlite3_tokenizer_cursor base;
122119 *ppTokenizer = &t->base;
122162 *ppCursor = &c->base;
123571 Fts3Table *p = (Fts3Table*)pCsr->base.pVtab;
125247 Fts3Table *p = (Fts3Table *)pCsr->base.pVtab;
126136 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
126540 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
126640 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
126712 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
126854 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
126992 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab;
127173 sqlite3_vtab base;
127240 sqlite3_vtab_cursor base;
127838 pCsr->base.pVtab = pVTab;
130091 pRtree->base.pModule = &rtreeModule;
130843 sqlite3_tokenizer base;
130848 sqlite3_tokenizer_cursor base;