Lines Matching defs:zData

76215               u8 *zData = sqlite3PagerGetData(pSrcPg);
76216 rc = sqlite3OsWrite(pFile, zData, pgszSrc, iOff);
85003 const void *zData, /* Pointer to the data to be bound */
85014 if( zData!=0 ){
85016 rc = sqlite3VdbeMemSetStr(pVar, zData, nData, encoding, xDel);
85027 xDel((void*)zData);
85039 const void *zData,
85046 return bindText(pStmt, i, zData, nData, xDel, 0);
85051 const void *zData,
85057 return invokeValueDestructor(zData, xDel, 0);
85059 return bindText(pStmt, i, zData, (int)nData, xDel, 0);
85115 const char *zData,
85119 return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF8);
85124 const char *zData,
85131 return invokeValueDestructor(zData, xDel, 0);
85134 return bindText(pStmt, i, zData, (int)nData, xDel, enc);
85141 const void *zData,
85145 return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF16NATIVE);
88560 const u8 *zData; /* Part of the record being decoded */
88655 zData = pC->aRow;
88670 /* Make sure zData points to enough of the record to cover the header. */
88675 zData = (u8*)sMem.z;
88677 zData = pC->aRow;
88684 zHdr = zData + pC->iHdrOffset;
88685 zEndHdr = zData + aOffset[0];
88717 pC->iHdrOffset = (u32)(zHdr - zData);
88753 zData = pC->aRow + aOffset[p2];
88755 sqlite3VdbeSerialGet(zData, t, pDest);
88770 memcpy(pDest->z, zData, len);
191541 u8 *zData; /* Content of the node, as should be on disk */
191546 #define NCELL(pNode) readInt16(&(pNode)->zData[2])
191787 memset(&p->zData[2], 0, pRtree->iNodeSize-2);
191844 pNode->zData = (u8 *)&pNode[1];
191941 pNode->zData = (u8 *)&pNode[1];
191947 rc = sqlite3_blob_read(pRtree->pNodeBlob, pNode->zData,
191959 pRtree->iDepth = readInt16(pNode->zData);
192007 u8 *p = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
192019 u8 *pDst = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
192023 writeInt16(&pNode->zData[2], NCELL(pNode)-1);
192047 writeInt16(&pNode->zData[2], nCell+1);
192066 sqlite3_bind_blob(p, 2, pNode->zData, pRtree->iNodeSize, SQLITE_STATIC);
192118 return readInt64(&pNode->zData[4 + pRtree->nBytesPerCell*iCell]);
192131 readCoord(&pNode->zData[12 + pRtree->nBytesPerCell*iCell + 4*iCoord], pCoord);
192148 pData = pNode->zData + (12 + pRtree->nBytesPerCell*iCell);
192808 pCellData = pNode->zData + (4+pRtree->nBytesPerCell*p->iCell);
193786 writeInt16(pNode->zData, pRtree->iDepth);
193798 memset(pLeft->zData, 0, pRtree->iNodeSize);
193799 memset(pRight->zData, 0, pRtree->iNodeSize);
194276 writeInt16(pRoot->zData, pRtree->iDepth);
195049 node.zData = (u8 *)sqlite3_value_blob(apArg[1]);