Home
last modified time | relevance | path

Searched refs:nByte (Results 1 – 9 of 9) sorted by relevance

/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dvdbe.c903 int nByte; in sqliteVdbeExec() local
919 nByte = -1; in sqliteVdbeExec()
926 if( nByte<0 ){ in sqliteVdbeExec()
1835 int nByte; in sqliteVdbeExec() local
1866 nByte = 0; in sqliteVdbeExec()
2017 int nByte; in sqliteVdbeExec() local
2029 nByte = 0; in sqliteVdbeExec()
3942 int nByte; in sqliteVdbeExec() local
3950 nByte = 0; in sqliteVdbeExec()
3995 int nByte; in sqliteVdbeExec() local
[all …]
H A Dutil.c335 int nByte; in sqliteSetString() local
340 nByte = 1; in sqliteSetString()
343 nByte += strlen(z); in sqliteSetString()
347 *pz = zResult = sqliteMallocRaw( nByte ); in sqliteSetString()
374 int nByte; in sqliteSetNString() local
380 nByte = 0; in sqliteSetNString()
385 nByte += n; in sqliteSetNString()
389 *pz = zResult = sqliteMallocRaw( nByte + 1 ); in sqliteSetNString()
H A Dos.c1176 int sqliteOsTruncate(OsFile *id, off_t nByte){ argument
1179 return ftruncate(id->fd, nByte)==0 ? SQLITE_OK : SQLITE_IOERR;
1183 LONG upperBits = nByte>>32;
1184 SetFilePointer(id->h, nByte, &upperBits, FILE_BEGIN);
1191 if( FSSetForkSize(id->refNum, fsFromStart, nByte) != noErr){
1193 if( SetEOF(id->refNum, nByte) != noErr ){
1790 int nByte; local
1791 nByte = GetFullPathName(zRelative, 0, 0, &zNotUsed) + 1;
1792 zFull = sqliteMalloc( nByte );
1794 GetFullPathName(zRelative, nByte, zFull, &zNotUsed);
H A Dvdbeaux.c480 void *sqlite_aggregate_context(sqlite_func *p, int nByte){ in sqlite_aggregate_context() argument
483 if( nByte<=NBFS ){ in sqlite_aggregate_context()
485 memset(p->pAgg, 0, nByte); in sqlite_aggregate_context()
487 p->pAgg = sqliteMalloc( nByte ); in sqlite_aggregate_context()
H A Dbtree.c470 static int allocateSpace(Btree *pBt, MemPage *pPage, int nByte){ in allocateSpace() argument
480 assert( nByte==ROUNDUP(nByte) ); in allocateSpace()
482 if( pPage->nFree<nByte || pPage->isOverfull ) return 0; in allocateSpace()
485 while( (iSize = SWAB16(pBt, p->iSize))<nByte ){ in allocateSpace()
495 if( iSize==nByte ){ in allocateSpace()
501 pNew = (FreeBlk*)&pPage->u.aDisk[start + nByte]; in allocateSpace()
503 pNew->iSize = SWAB16(pBt, iSize - nByte); in allocateSpace()
504 *pIdx = SWAB16(pBt, start + nByte); in allocateSpace()
506 pPage->nFree -= nByte; in allocateSpace()
H A Dbuild.c1357 int nByte; in sqliteCreateForeignKey() local
1383 nByte = sizeof(*pFKey) + nCol*sizeof(pFKey->aCol[0]) + pTo->n + 1; in sqliteCreateForeignKey()
1386 nByte += strlen(pToCol->a[i].zName) + 1; in sqliteCreateForeignKey()
1389 pFKey = sqliteMalloc( nByte ); in sqliteCreateForeignKey()
H A Dexpr.c183 int nByte; in sqliteSrcListDup() local
185 nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); in sqliteSrcListDup()
186 pNew = sqliteMallocRaw( nByte ); in sqliteSrcListDup()
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.h939 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
942 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
2835 int nByte, /* Maximum length of zSql in bytes. */
2842 int nByte, /* Maximum length of zSql in bytes. */
2849 int nByte, /* Maximum length of zSql in bytes. */
2856 int nByte, /* Maximum length of zSql in bytes. */
H A Dsqlite3.c14771 nByte = ROUND8(nByte); in sqlite3MemMalloc()
15173 memset(((char*)pInt)+nByte, 0x65, nReserve-nByte); in sqlite3MemMalloc()
31623 int nByte;
31648 int nByte;
31673 int nByte;
33888 int nByte;
57105 for(nByte=0; nByte<=iLimit && z[nByte]; nByte++){}
57107 for(nByte=0; nByte<=iLimit && (z[nByte] | z[nByte+1]); nByte+=2){}
58938 nByte = ROUND8(nByte);
62471 int nByte;
[all …]

Completed in 350 milliseconds