• Home
  • Raw
  • Download

Lines Matching refs:zData

60626               u8 *zData = sqlite3PagerGetData(pSrcPg);
60627 rc = sqlite3OsWrite(pFile, zData, pgszSrc, iOff);
61663 char *zData; /* Data from the btree layer */
61673 zData = (char *)sqlite3BtreeKeyFetch(pCur, &available);
61675 zData = (char *)sqlite3BtreeDataFetch(pCur, &available);
61677 assert( zData!=0 );
61681 pMem->z = &zData[offset];
67359 const void *zData, /* Pointer to the data to be bound */
67370 if( zData!=0 ){
67372 rc = sqlite3VdbeMemSetStr(pVar, zData, nData, encoding, xDel);
67381 xDel((void*)zData);
67393 const void *zData,
67397 return bindText(pStmt, i, zData, nData, xDel, 0);
67434 const char *zData,
67438 return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF8);
67444 const void *zData,
67448 return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF16NATIVE);
70364 const u8 *zData; /* Part of the record being decoded */
70478 zData = (u8*)sMem.z;
70480 zData = pC->aRow;
70486 zHdr = zData + pC->iHdrOffset;
70487 zEndHdr = zData + aOffset[0];
70507 pC->iHdrOffset = (u32)(zHdr - zData);
70567 zData = t<=13 ? (u8*)&payloadSize64 : 0;
70577 zData = (u8*)sMem.z;
70579 sqlite3VdbeSerialGet(zData, t, pDest);
145033 u8 *zData; /* Content of the node, as should be on disk */
145038 #define NCELL(pNode) readInt16(&(pNode)->zData[2])
145173 memset(&p->zData[2], 0, pRtree->iNodeSize-2);
145230 pNode->zData = (u8 *)&pNode[1];
145276 pNode->zData = (u8 *)&pNode[1];
145281 memcpy(pNode->zData, zBlob, pRtree->iNodeSize);
145296 pRtree->iDepth = readInt16(pNode->zData);
145337 u8 *p = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
145349 u8 *pDst = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
145353 writeInt16(&pNode->zData[2], NCELL(pNode)-1);
145377 writeInt16(&pNode->zData[2], nCell+1);
145396 sqlite3_bind_blob(p, 2, pNode->zData, pRtree->iNodeSize, SQLITE_STATIC);
145445 return readInt64(&pNode->zData[4 + pRtree->nBytesPerCell*iCell]);
145458 readCoord(&pNode->zData[12 + pRtree->nBytesPerCell*iCell + 4*iCoord], pCoord);
145475 pData = pNode->zData + (12 + pRtree->nBytesPerCell*iCell);
146071 u8 *pCellData = pNode->zData + (4+pRtree->nBytesPerCell*p->iCell);
146989 writeInt16(pNode->zData, pRtree->iDepth);
147001 memset(pLeft->zData, 0, pRtree->iNodeSize);
147002 memset(pRight->zData, 0, pRtree->iNodeSize);
147472 writeInt16(pRoot->zData, pRtree->iDepth);
148004 node.zData = (u8 *)sqlite3_value_blob(apArg[1]);