Home | History | Annotate | Download | only in orig

Lines Matching defs:bz

65313     } bz;
69872 #if 0 /* local variables moved into u.bz */
69879 #endif /* local variables moved into u.bz */
69881 u.bz.nRoot = pOp->p2;
69882 assert( u.bz.nRoot>0 );
69883 u.bz.aRoot = sqlite3DbMallocRaw(db, sizeof(int)*(u.bz.nRoot+1) );
69884 if( u.bz.aRoot==0 ) goto no_mem;
69886 u.bz.pnErr = &aMem[pOp->p3];
69887 assert( (u.bz.pnErr->flags & MEM_Int)!=0 );
69888 assert( (u.bz.pnErr->flags & (MEM_Str|MEM_Blob))==0 );
69890 for(u.bz.j=0; u.bz.j<u.bz.nRoot; u.bz.j++){
69891 u.bz.aRoot[u.bz.j] = (int)sqlite3VdbeIntValue(&pIn1[u.bz.j]);
69893 u.bz.aRoot[u.bz.j] = 0;
69896 u.bz.z = sqlite3BtreeIntegrityCheck(db->aDb[pOp->p5].pBt, u.bz.aRoot, u.bz.nRoot,
69897 (int)u.bz.pnErr->u.i, &u.bz.nErr);
69898 sqlite3DbFree(db, u.bz.aRoot);
69899 u.bz.pnErr->u.i -= u.bz.nErr;
69901 if( u.bz.nErr==0 ){
69902 assert( u.bz.z==0 );
69903 }else if( u.bz.z==0 ){
69906 sqlite3VdbeMemSetStr(pIn1, u.bz.z, -1, SQLITE_UTF8, sqlite3_free);