Lines Matching refs:rPage
224 page const & rPage = (*xImpl); in read() local
227 sal_uInt16 const nLimit = rPage.capacityCount(); in read()
232 sal_uInt32 const nAddr = store::ntohl(rPage.m_pData[nSingle]); in read()
250 page const & rPage = (*xImpl); in read() local
253 sal_uInt16 const nLimit = rPage.capacityCount(); in read()
258 sal_uInt32 const nAddr = store::ntohl(rPage.m_pData[nDouble]); in read()
283 page const & rPage = (*xImpl); in read() local
286 sal_uInt16 const nLimit = rPage.capacityCount(); in read()
291 sal_uInt32 const nAddr = store::ntohl(rPage.m_pData[nTriple]); in read()
314 page & rPage = (*xImpl); in write() local
317 sal_uInt16 const nLimit = rPage.capacityCount(); in write()
322 sal_uInt32 const nAddr = store::ntohl(rPage.m_pData[nSingle]); in write()
331 rPage.m_pData[nSingle] = store::htonl(rData.location()); in write()
353 page & rPage = (*xImpl); in write() local
356 sal_uInt16 const nLimit = rPage.capacityCount(); in write()
362 storeError eErrCode = aSingle.loadOrCreate (store::ntohl(rPage.m_pData[nDouble]), rBIOS); in write()
367 rPage.m_pData[nDouble] = store::htonl(aSingle.location()); in write()
389 page & rPage = (*xImpl); in write() local
392 sal_uInt16 const nLimit = rPage.capacityCount(); in write()
398 storeError eErrCode = aDouble.loadOrCreate (store::ntohl(rPage.m_pData[nTriple]), rBIOS); in write()
403 rPage.m_pData[nTriple] = store::htonl(aDouble.location()); in write()
422 page & rPage = (*xImpl); in truncate() local
425 sal_uInt16 const nLimit = rPage.capacityCount(); in truncate()
434 sal_uInt32 const nAddr = store::ntohl(rPage.m_pData[i - 1]); in truncate()
443 rPage.m_pData[i - 1] = STORE_PAGE_NULL; in truncate()
468 page & rPage = (*xImpl); in truncate() local
471 sal_uInt16 const nLimit = rPage.capacityCount(); in truncate()
480 eErrCode = store_truncate_Impl (store::ntohl(rPage.m_pData[i - 1]), 0, rBIOS); in truncate()
485 rPage.m_pData[i - 1] = STORE_PAGE_NULL; in truncate()
490 eErrCode = store_truncate_Impl (store::ntohl(rPage.m_pData[nDouble]), nSingle, rBIOS); in truncate()
498 rPage.m_pData[nDouble] = STORE_PAGE_NULL; in truncate()
523 page & rPage = (*xImpl); in truncate() local
526 sal_uInt16 const nLimit = rPage.capacityCount(); in truncate()
535 eErrCode = store_truncate_Impl (store::ntohl(rPage.m_pData[i - 1]), 0, 0, rBIOS); in truncate()
540 rPage.m_pData[i - 1] = STORE_PAGE_NULL; in truncate()
545 eErrCode = store_truncate_Impl (store::ntohl(rPage.m_pData[nTriple]), nDouble, nSingle, rBIOS); in truncate()
553 rPage.m_pData[nTriple] = STORE_PAGE_NULL; in truncate()
598 page const & rPage = PAGE(); in scope() local
599 OStoreDirectoryDataBlock const & rDataBlock = rPage.m_aDataBlock; in scope()
620 sal_uInt32 const nCapacity = indirect::capacityCount(rPage.m_aDescr); in scope()