Lines Matching refs:aSlot

105511   SorterRecord *aSlot[64];
105518 memset(aSlot, 0, sizeof(aSlot));
105534 for(i=0; aSlot[i]; i++){
105535 p = vdbeSorterMerge(pTask, p, aSlot[i]);
105539 assert( i<ArraySize(aSlot) );
105540 aSlot[i] = 0;
105542 aSlot[i] = p;
105547 for(i=0; i<ArraySize(aSlot); i++){
105548 if( aSlot[i]==0 ) continue;
105549 p = p ? vdbeSorterMerge(pTask, p, aSlot[i]) : aSlot[i];
243697 Fts5HashEntry **aSlot; /* Array of hash slots */
243768 pNew->aSlot = (Fts5HashEntry**)sqlite3_malloc64(nByte);
243769 if( pNew->aSlot==0 ){
243774 memset(pNew->aSlot, 0, (size_t)nByte);
243786 sqlite3_free(pHash->aSlot);
243799 for(pSlot=pHash->aSlot[i]; pSlot; pSlot=pNext){
243804 memset(pHash->aSlot, 0, pHash->nSlot * sizeof(Fts5HashEntry*));
243834 Fts5HashEntry **apOld = pHash->aSlot;
243853 pHash->aSlot = apNew;
243926 for(p=pHash->aSlot[iHash]; p; p=p->pHashNext){
243962 p->pHashNext = pHash->aSlot[iHash];
243963 pHash->aSlot[iHash] = p;
243995 for(pp=&pHash->aSlot[iHash]; *pp!=p; pp=&(*pp)->pHashNext);
244128 for(pIter=pHash->aSlot[iSlot]; pIter; pIter=pIter->pHashNext){
244167 for(p=pHash->aSlot[iHash]; p; p=p->pHashNext){
244206 for(p=pHash->aSlot[ii]; p; p=p->pHashNext){
247528 u32 *aSlot = (u32*)&pHash->p[8];
247529 while( aSlot[iSlot] ){
247530 if( fts5GetU32((u8*)&aSlot[iSlot])==iRowid ) return 1;
247535 u64 *aSlot = (u64*)&pHash->p[8];
247536 while( aSlot[iSlot] ){
247537 if( fts5GetU64((u8*)&aSlot[iSlot])==iRowid ) return 1;
252068 u32 *aSlot = (u32*)&pPg->p[8];
252069 while( aSlot[iSlot] ){
252073 fts5PutU32((u8*)&aSlot[iSlot], (u32)iRowid);
252075 u64 *aSlot = (u64*)&pPg->p[8];
252076 while( aSlot[iSlot] ){
252080 fts5PutU64((u8*)&aSlot[iSlot], iRowid);
252136 u32 *aSlot = (u32*)&pData->p[8];
252137 if( aSlot[iIn] ) iVal = fts5GetU32((u8*)&aSlot[iIn]);
252139 u64 *aSlot = (u64*)&pData->p[8];
252140 if( aSlot[iIn] ) iVal = fts5GetU64((u8*)&aSlot[iIn]);
253223 u32 *aSlot = (u32*)&aBlob[8];
253224 if( aSlot[ii] ) iVal = fts5GetU32((u8*)&aSlot[ii]);
253226 u64 *aSlot = (u64*)&aBlob[8];
253227 if( aSlot[ii] ) iVal = fts5GetU64((u8*)&aSlot[ii]);