Home
last modified time | relevance | path

Searched refs:amt (Results 1 – 10 of 10) sorted by relevance

/PHP-5.3/ext/pdo_oci/
H A Doci_statement.c392 amt = n; in oci_stmt_param_hook()
398 n -= amt; in oci_stmt_param_hook()
411 amt = n; in oci_stmt_param_hook()
417 n -= amt; in oci_stmt_param_hook()
611 ub4 amt; in oci_blob_write() local
614 amt = count; in oci_blob_write()
625 return amt; in oci_blob_write()
631 ub4 amt; in oci_blob_read() local
634 amt = count; in oci_blob_read()
644 if (amt < count) { in oci_blob_read()
[all …]
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dbtree.h80 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)\ argument
132 (btCOps(pCur)->Key(pCur, offset, amt, zBuf))
136 #define sqliteBtreeData(pCur, offset, amt, zBuf)\ argument
137 (btCOps(pCur)->Data(pCur, offset, amt, zBuf))
H A Dos.c979 if( got==amt ){ in sqliteOsRead()
992 if( got==(DWORD)amt ){ in sqliteOsRead()
1005 got = amt; in sqliteOsRead()
1008 if( got==amt ){ in sqliteOsRead()
1025 while( amt>0 && (wrote = write(id->fd, pBuf, amt))>0 ){ in sqliteOsWrite()
1026 amt -= wrote; in sqliteOsWrite()
1032 if( amt>0 ){ in sqliteOsWrite()
1043 amt -= wrote; in sqliteOsWrite()
1056 while( amt>0 ){ in sqliteOsWrite()
1061 wrote = amt; in sqliteOsWrite()
[all …]
H A Dos.h173 int sqliteOsRead(OsFile*, void*, int amt);
174 int sqliteOsWrite(OsFile*, const void*, int amt);
H A Dbtree_rb.c1175 static int memRbtreeKey(RbtCursor* pCur, int offset, int amt, char *zBuf) in memRbtreeKey() argument
1178 if( !pCur->pNode->pKey || ((amt + offset) <= pCur->pNode->nKey) ){ in memRbtreeKey()
1179 memcpy(zBuf, ((char*)pCur->pNode->pKey)+offset, amt); in memRbtreeKey()
1182 amt = pCur->pNode->nKey-offset; in memRbtreeKey()
1184 return amt; in memRbtreeKey()
1197 static int memRbtreeData(RbtCursor *pCur, int offset, int amt, char *zBuf) in memRbtreeData() argument
1200 if( (amt + offset) <= pCur->pNode->nData ){ in memRbtreeData()
1201 memcpy(zBuf, ((char*)pCur->pNode->pData)+offset, amt); in memRbtreeData()
1204 amt = pCur->pNode->nData-offset; in memRbtreeData()
1206 return amt; in memRbtreeData()
H A Dprintf.c235 int amt; in vxprintf() local
237 amt = 1; in vxprintf()
238 while( (c=(*++fmt))!='%' && c!=0 ) amt++; in vxprintf()
239 (*func)(arg,bufpt,amt); in vxprintf()
240 count += amt; in vxprintf()
H A Dbtree.c1185 int a = amt; in getPayload()
1190 if( a==amt ){ in getPayload()
1195 amt -= a; in getPayload()
1199 if( amt>0 ){ in getPayload()
1210 int a = amt; in getPayload()
1216 amt -= a; in getPayload()
1223 if( amt>0 ){ in getPayload()
1245 assert( amt>=0 ); in fileBtreeKey()
1254 return amt; in fileBtreeKey()
1291 assert( amt>=0 ); in fileBtreeData()
[all …]
H A Dvdbe.c3119 int amt, offset, end, payloadSize; in sqliteVdbeExec() local
3191 amt = end - offset; in sqliteVdbeExec()
3200 pTos->n = amt; in sqliteVdbeExec()
3201 if( amt==0 ){ in sqliteVdbeExec()
3207 if( amt<=NBFS ){ in sqliteVdbeExec()
3278 int amt; in sqliteVdbeExec() local
3282 sqliteBtreeKeySize(pCrsr, &amt); in sqliteVdbeExec()
3283 if( amt<=0 ){ in sqliteVdbeExec()
3287 if( amt>NBFS ){ in sqliteVdbeExec()
3288 z = sqliteMallocRaw( amt ); in sqliteVdbeExec()
[all …]
H A Dexpr.c1528 int amt = pParse->nAgg + 8; in appendAggInfo() local
1529 AggExpr *aAgg = sqliteRealloc(pParse->aAgg, amt*sizeof(pParse->aAgg[0])); in appendAggInfo()
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c19057 int amt; in sqlite3VXPrintf() local
19059 amt = 1; in sqlite3VXPrintf()
22516 amt -= wrote;
27456 int amt,
27473 if( got==amt ){
27533 int amt,
27573 amt -= wrote;
27580 if( amt>0 ){
51376 int a = amt;
51383 amt -= a;
[all …]

Completed in 323 milliseconds