Home
last modified time | relevance | path

Searched refs:Fts3Index (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/ext/fts3/
H A Dfts3.c1031 struct Fts3Index **apIndex /* OUT: Array of indexes for this table */ in fts3PrefixParameter()
1033 struct Fts3Index *aIndex; /* Allocated array */ in fts3PrefixParameter()
1044 aIndex = sqlite3_malloc64(sizeof(struct Fts3Index) * nIndex); in fts3PrefixParameter()
1050 memset(aIndex, 0, sizeof(struct Fts3Index) * nIndex); in fts3PrefixParameter()
1197 struct Fts3Index *aIndex = 0; /* Array of indexes for this table */ in fts3InitVtab()
1412 nIndex * sizeof(struct Fts3Index) + /* aIndex */ in fts3InitVtab()
1441 p->aIndex = (struct Fts3Index *)&p->azColumn[nCol]; in fts3InitVtab()
1442 memcpy(p->aIndex, aIndex, sizeof(struct Fts3Index) * nIndex); in fts3InitVtab()
H A Dfts3Int.h287 struct Fts3Index { struct
H A Dfts3_write.c848 struct Fts3Index *pIndex = &p->aIndex[i]; in fts3PendingTermsAdd()