Lines Matching refs:ai
14733 int *ai; /* Used when p4type is P4_INTARRAY */ member
77873 int *ai = pOp->p4.ai;
77874 int n = ai[0]; /* The first element of an INTARRAY is always the
77877 sqlite3_str_appendf(&x, ",%d", ai[i]);
85683 assert( pOp->p4.ai );
85726 aPermute = pOp[-1].p4.ai + 1;
89041 assert( pOp->p4type==P4_INTARRAY || pOp->p4.ai==0 );
89042 pTabCur->aAltMap = pOp->p4.ai;
89481 aRoot = pOp->p4.ai;
137194 int *ai = (int*)sqlite3DbMallocZero(pParse->db, sizeof(int)*(pTab->nCol+1));
137195 if( ai ){
137196 ai[0] = pTab->nCol;
137199 if( pIdx->aiColumn[i]>=0 ) ai[pIdx->aiColumn[i]+1] = i+1;
137201 sqlite3VdbeChangeP4(v, -1, (char*)ai, P4_INTARRAY);