| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | btree.c | 1171 ** a total of "amt" bytes. Put the result in zBuf. 1176 static int getPayload(BtCursor *pCur, int offset, int amt, char *zBuf){ argument 1185 int a = amt; 1190 if( a==amt ){ 1195 amt -= a; 1199 if( amt>0 ){ 1202 while( amt>0 && nextPage ){ 1210 int a = amt; 1216 amt -= a; 1223 if( amt> 1242 fileBtreeKey(BtCursor *pCur, int offset, int amt, char *zBuf) argument 1287 fileBtreeData(BtCursor *pCur, int offset, int amt, char *zBuf) argument [all...] |
| H A D | btree.h | 80 int (*Key)(BtCursor*, int offset, int amt, char *zBuf); 84 int (*Data)(BtCursor*, int offset, int amt, char *zBuf); 131 #define sqliteBtreeKey(pCur, offset, amt, zBuf)\ 132 (btCOps(pCur)->Key(pCur, offset, amt, zBuf)) 136 #define sqliteBtreeData(pCur, offset, amt, zBuf)\ 137 (btCOps(pCur)->Data(pCur, offset, amt, zBuf))
|
| H A D | btree_rb.c | 1175 static int memRbtreeKey(RbtCursor* pCur, int offset, int amt, char *zBuf) argument 1178 if( !pCur->pNode->pKey || ((amt + offset) <= pCur->pNode->nKey) ){ 1179 memcpy(zBuf, ((char*)pCur->pNode->pKey)+offset, amt); 1182 amt = pCur->pNode->nKey-offset; 1184 return amt; 1197 static int memRbtreeData(RbtCursor *pCur, int offset, int amt, char *zBuf) argument 1200 if( (amt + offset) <= pCur->pNode->nData ){ 1201 memcpy(zBuf, ((char*)pCur->pNode->pData)+offset, amt); 1204 amt = pCur->pNode->nData-offset; 1206 return amt; [all...] |
| H A D | os.c | 969 int sqliteOsRead(OsFile *id, void *pBuf, int amt){ argument 974 got = read(id->fd, pBuf, amt); 979 if( got==amt ){ 989 if( !ReadFile(id->h, pBuf, amt, &got, 0) ){ 992 if( got==(DWORD)amt ){ 1003 FSReadFork(id->refNum, fsAtMark, 0, (ByteCount)amt, pBuf, (ByteCount*)&got); 1005 got = amt; 1008 if( got==amt ){ 1020 int sqliteOsWrite(OsFile *id, const void *pBuf, int amt){ argument 1025 while( amt> [all...] |
| H A D | os.h | 173 int sqliteOsRead(OsFile*, void*, int amt); 174 int sqliteOsWrite(OsFile*, const void*, int amt);
|
| H A D | printf.c | 235 int amt; local 237 amt = 1; 238 while( (c=(*++fmt))!='%' && c!=0 ) amt++; 239 (*func)(arg,bufpt,amt); 240 count += amt;
|
| H A D | vdbe.c | 3119 int amt, offset, end, payloadSize; local 3191 amt = end - offset; 3192 if( amt<0 || offset<0 || end>payloadSize ){ 3197 /* amt and offset now hold the offset to the start of data and the 3200 pTos->n = amt; 3201 if( amt==0 ){ 3207 if( amt<=NBFS ){ 3211 char *z = sqliteMallocRaw( amt ); 3217 sqliteBtreeKey(pCrsr, offset, amt, pTos->z); 3219 sqliteBtreeData(pCrsr, offset, amt, pTo 3278 int amt; local [all...] |
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 8055 SQLITE_PRIVATE int sqlite3BtreeKey(BtCursor*, u32 offset, u32 amt, void*); 8059 SQLITE_PRIVATE int sqlite3BtreeData(BtCursor*, u32 offset, u32 amt, void*); 8066 SQLITE_PRIVATE int sqlite3BtreePutData(BtCursor*, u32 offset, u32 amt, void*); 9140 SQLITE_PRIVATE int sqlite3OsRead(sqlite3_file*, void*, int amt, i64 offset); 9141 SQLITE_PRIVATE int sqlite3OsWrite(sqlite3_file*, const void*, int amt, i64 offset); 14311 SQLITE_PRIVATE int sqlite3OsRead(sqlite3_file *id, void *pBuf, int amt, i64 offset){ argument 14313 return id->pMethods->xRead(id, pBuf, amt, offset); 14315 SQLITE_PRIVATE int sqlite3OsWrite(sqlite3_file *id, const void *pBuf, int amt, i64 offset){ argument 14317 return id->pMethods->xWrite(id, pBuf, amt, offset); 19057 int amt; local 22463 os2Read( sqlite3_file *id, void *pBuf, int amt, sqlite3_int64 offset ) argument 22494 os2Write( sqlite3_file *id, const void *pBuf, int amt, sqlite3_int64 offset ) argument 27453 unixRead( sqlite3_file *id, void *pBuf, int amt, sqlite3_int64 offset ) argument 27530 unixWrite( sqlite3_file *id, const void *pBuf, int amt, sqlite3_int64 offset ) argument 32237 winRead( sqlite3_file *id, void *pBuf, int amt, sqlite3_int64 offset ) argument 32270 winWrite( sqlite3_file *id, const void *pBuf, int amt, sqlite3_int64 offset ) argument 51344 accessPayload( BtCursor *pCur, u32 offset, u32 amt, unsigned char *pBuf, int eOp ) argument 51488 sqlite3BtreeKey(BtCursor *pCur, u32 offset, u32 amt, void *pBuf) argument 51505 sqlite3BtreeData(BtCursor *pCur, u32 offset, u32 amt, void *pBuf) argument 55600 sqlite3BtreePutData(BtCursor *pCsr, u32 offset, u32 amt, void *z) argument 57288 sqlite3VdbeMemFromBtree( BtCursor *pCur, int offset, int amt, int key, Mem *pMem ) argument [all...] |
| /PHP_5_3/ext/pdo_oci/ |
| H A D | oci_statement.c | 378 ub4 amt, offset = 1; local 392 amt = n; 394 &amt, offset, consume, n, 397 offset += amt; 398 n -= amt; 399 consume += amt; 411 amt = n; 413 &amt, offset, consume, n, 416 consume += amt; 417 n -= amt; 611 ub4 amt; local 631 ub4 amt; local [all...] |