/external/chromium_org/third_party/sqlite/src/src/ |
D | vdbe.c | 191 int nField, /* Number of fields in the table or index */ in allocateCursor() argument 220 2*nField*sizeof(u32); in allocateCursor() 231 pCx->nField = nField; in allocateCursor() 232 if( nField ){ in allocateCursor() 237 &pMem->z[ROUND8(sizeof(VdbeCursor))+2*nField*sizeof(u32)]; in allocateCursor() 1890 assert( i<pKeyInfo->nField ); in sqlite3VdbeExec() 2091 int nField; /* number of fields in the record */ in sqlite3VdbeExec() local 2181 nField = pC->nField; in sqlite3VdbeExec() 2182 assert( p2<nField ); in sqlite3VdbeExec() 2193 pC->aOffset = aOffset = &aType[nField]; in sqlite3VdbeExec() [all …]
|
D | vdbeaux.c | 733 int nField, nByte; in sqlite3VdbeChangeP4() local 735 nField = ((KeyInfo*)zP4)->nField; in sqlite3VdbeChangeP4() 736 nByte = sizeof(*pKeyInfo) + (nField-1)*sizeof(pKeyInfo->aColl[0]) + nField; in sqlite3VdbeChangeP4() 741 memcpy((char*)pKeyInfo, zP4, nByte - nField); in sqlite3VdbeChangeP4() 744 pKeyInfo->aSortOrder = (unsigned char*)&pKeyInfo->aColl[nField]; in sqlite3VdbeChangeP4() 745 memcpy(pKeyInfo->aSortOrder, aSortOrder, nField); in sqlite3VdbeChangeP4() 860 sqlite3_snprintf(nTemp, zTemp, "keyinfo(%d", pKeyInfo->nField); in displayP4() 862 for(j=0; j<pKeyInfo->nField; j++){ in displayP4() 2829 nByte = ROUND8(sizeof(UnpackedRecord)) + sizeof(Mem)*(pKeyInfo->nField+1); in sqlite3VdbeRecordUnpack() 2839 p->nField = pKeyInfo->nField + 1; in sqlite3VdbeRecordUnpack() [all …]
|
D | vdbeInt.h | 49 int nField; /* Number of fields in the header */ member
|
D | sqliteInt.h | 1407 u16 nField; /* Number of entries in aColl[] */ member 1428 u16 nField; /* Number of entries in apMem[] */ member
|
D | select.c | 758 pInfo->nField = (u16)nExpr; in keyInfoFromExprList() 1846 pKeyInfo->nField = (u16)nCol; in multiSelect() 2226 pKeyMerge->nField = (u16)nOrderBy; in multiSelectOrderBy() 2266 pKeyDup->nField = (u16)nExpr; in multiSelectOrderBy()
|
D | build.c | 3749 pKey->nField = (u16)nCol; in sqlite3IndexKeyinfo()
|
D | expr.c | 1640 keyInfo.nField = 1; in sqlite3CodeSubselect()
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
D | cmscgats.c | 1515 char* GetData(cmsIT8* it8, int nSet, int nField) in GetData() argument 1521 if (nSet >= nPatches || nField >= nSamples) in GetData() 1525 return t->Data [nSet * nSamples + nField]; in GetData() 1529 cmsBool SetData(cmsIT8* it8, int nSet, int nField, const char *Val) in SetData() argument 1543 if (nField > t ->nSamples || nField < 0) { in SetData() 1544 … return SynError(it8, "Sample %d out of range, there are %d samples", nField, t ->nSamples); in SetData() 1548 t->Data [nSet * t -> nSamples + nField] = AllocString(it8, Val); in SetData()
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.c | 9752 u16 nField; /* Number of entries in aColl[] */ member 9773 u16 nField; /* Number of entries in apMem[] */ member 12263 int nField; /* Number of fields in the header */ member 57858 int nField, nByte; 57860 nField = ((KeyInfo*)zP4)->nField; 57861 nByte = sizeof(*pKeyInfo) + (nField-1)*sizeof(pKeyInfo->aColl[0]) + nField; 57866 memcpy((char*)pKeyInfo, zP4, nByte - nField); 57869 pKeyInfo->aSortOrder = (unsigned char*)&pKeyInfo->aColl[nField]; 57870 memcpy(pKeyInfo->aSortOrder, aSortOrder, nField); 57985 sqlite3_snprintf(nTemp, zTemp, "keyinfo(%d", pKeyInfo->nField); [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 11097 u16 nField; /* Number of key columns in the index */ member 11123 u16 nField; /* Number of entries in apMem[] */ member 13928 i16 nField; /* Number of fields in the header */ member 52264 if( pIdxKey->nField==0 ){ 61799 assert( pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField==nCol ); 61815 pRec->nField = p->iVal+1; 62203 int nCol = pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField; 63276 sqlite3_snprintf(nTemp, zTemp, "k(%d", pKeyInfo->nField); 63278 for(j=0; j<pKeyInfo->nField; j++){ 65342 nByte = ROUND8(sizeof(UnpackedRecord)) + sizeof(Mem)*(pKeyInfo->nField+1); [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 11097 u16 nField; /* Number of key columns in the index */ member 11123 u16 nField; /* Number of entries in apMem[] */ member 13928 i16 nField; /* Number of fields in the header */ member 52244 if( pIdxKey->nField==0 ){ 61779 assert( pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField==nCol ); 61795 pRec->nField = p->iVal+1; 62183 int nCol = pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField; 63256 sqlite3_snprintf(nTemp, zTemp, "k(%d", pKeyInfo->nField); 63258 for(j=0; j<pKeyInfo->nField; j++){ 65322 nByte = ROUND8(sizeof(UnpackedRecord)) + sizeof(Mem)*(pKeyInfo->nField+1); [all …]
|