Home
last modified time | relevance | path

Searched refs:offset64 (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-opfs-async-proxy.js528 xRead: async function(fid/*sqlite3_file pointer*/,n,offset64){ argument
537 {at: Number(offset64)}
606 xWrite: async function(fid/*sqlite3_file pointer*/,n,offset64){ argument
617 {at: Number(offset64)})
H A Dsqlite3-api-opfs.js729 xRead: function(pFile,pDest,n,offset64){ argument
734 rc = opRun('xRead',pFile, n, Number(offset64));
772 xWrite: function(pFile,pSrc,n,offset64){ argument
778 rc = opRun('xWrite', pFile, n, Number(offset64));
/sqlite-3.40.0/src/
H A Dvdbe.c2803 u64 offset64; /* 64-bit offset */ in sqlite3VdbeExec() local
2937 offset64 = aOffset[i]; in sqlite3VdbeExec()
2944 offset64 += sqlite3VdbeOneByteSerialTypeLen(t); in sqlite3VdbeExec()
2948 offset64 += sqlite3VdbeSerialTypeLen(t); in sqlite3VdbeExec()
2950 aOffset[++i] = (u32)(offset64 & 0xffffffff); in sqlite3VdbeExec()
2958 if( (zHdr>=zEndHdr && (zHdr>zEndHdr || offset64!=pC->payloadSize)) in sqlite3VdbeExec()
2959 || (offset64 > pC->payloadSize) in sqlite3VdbeExec()