Searched refs:pRt (Results 1 – 1 of 1) sorted by relevance
7090 Mem *pRt; /* Register to allocate runtime space */ in sqlite3VdbeExec() local7098 pRt = &aMem[pOp->p3]; in sqlite3VdbeExec()7128 if( (pRt->flags&MEM_Blob)==0 ){ in sqlite3VdbeExec()7145 sqlite3VdbeMemRelease(pRt); in sqlite3VdbeExec()7146 pRt->flags = MEM_Blob|MEM_Dyn; in sqlite3VdbeExec()7147 pRt->z = (char*)pFrame; in sqlite3VdbeExec()7148 pRt->n = nByte; in sqlite3VdbeExec()7149 pRt->xDel = sqlite3VdbeFrameMemDel; in sqlite3VdbeExec()7175 pFrame = (VdbeFrame*)pRt->z; in sqlite3VdbeExec()7176 assert( pRt->xDel==sqlite3VdbeFrameMemDel ); in sqlite3VdbeExec()