Searched defs:pSize (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree_rb.c1168 static int memRbtreeKeySize(RbtCursor* pCur, int *pSize) argument
1171 *pSize = pCur->pNode->nKey;
1173 *pSize = 0;
1190 static int memRbtreeDataSize(RbtCursor* pCur, int *pSize) argument
1193 *pSize = pCur->pNode->nData;
1195 *pSize = 0;
H A Dos.c1204 int sqliteOsFileSize(OsFile *id, off_t *pSize){ argument
1211 *pSize = buf.st_size;
1218 *pSize = (((off_t)upperBits)<<32) + lowerBits;
1223 if( FSGetForkSize(id->refNum, pSize) != noErr){
1225 if( GetEOF(id->refNum, pSize) != noErr ){
H A Dbtree.c1154 ** Set *pSize to the number of bytes of key in the entry the
1158 ** the database is empty) then *pSize is set to 0.
1160 static int fileBtreeKeySize(BtCursor *pCur, int *pSize){ argument
1167 *pSize = 0;
1170 *pSize = NKEY(pCur->pBt, pCell->h);
1265 ** Set *pSize to the number of bytes of data in the entry the
1269 ** the database is empty) then *pSize is set to 0.
1271 static int fileBtreeDataSize(BtCursor *pCur, int *pSize){ argument
1278 *pSize = 0;
1281 *pSize
[all...]
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/emlxs/
H A Demlxs_dump.c2373 uint32_t *pSize)
2383 *pSize = 0;
2466 *pSize = (tableSize * 4); /* return the total Dump Table size */
2371 emlxs_dump_table_check( emlxs_hba_t *hba, uint32_t *pSize) argument

Completed in 64 milliseconds