Searched defs:aPermute (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbe.c566 int *aPermute = 0; /* Permutation of columns for OP_Compare */ local
1839 aPermute = pOp->p4.ai;
1874 if( aPermute ){
1876 for(k=0; k<n; k++) if( aPermute[k]>mx ) mx = aPermute[k];
1885 idx = aPermute ? aPermute[i] : i;
1899 aPermute = 0;
H A Dselect.c2162 int *aPermute; /* Mapping from ORDER BY terms to result set columns */ local
2215 aPermute = sqlite3DbMallocRaw(db, sizeof(int)*nOrderBy);
2216 if( aPermute ){
2220 aPermute[i] = pItem->iCol - 1;
2234 pColl = multiSelectCollSeq(pParse, p, aPermute[i]);
2436 sqlite3VdbeAddOp4(v, OP_Permutation, 0, 0, 0, (char*)aPermute, P4_INTARRAY);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c62471 int *aPermute = 0; /* Permutation of columns for OP_Compare */ local
92084 int *aPermute; /* Mapping from ORDER BY terms to result set columns */ local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c68510 int *aPermute = 0; /* Permutation of columns for OP_Compare */ local
104139 int *aPermute; /* Mapping from ORDER BY terms to result set columns */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c68530 int *aPermute = 0; /* Permutation of columns for OP_Compare */ local
104159 int *aPermute; /* Mapping from ORDER BY terms to result set columns */ local
[all...]

Completed in 1763 milliseconds