Lines Matching refs:sal_uInt64

104 	std::hash_map<sal_uInt64, int>* pResUseDump;
489 sal_uInt64 nTypeAndId;
501 struct ImpContentMixLessCompare : public ::std::binary_function< ImpContent, sal_uInt64, bool>
503 inline bool operator() (const ImpContent& lhs, const sal_uInt64& rhs) const in operator ()()
507 inline bool operator() (const sal_uInt64& lhs, const ImpContent& rhs) const in operator ()()
525 ((sal_uInt64(RT_SYS_BITMAP) << 32) | nId), in GetBitmapStream()
527 …if ( (pFind != (pContent + nEntries)) && (pFind->nTypeAndId == ((sal_uInt64(RT_SYS_BITMAP) << 32) … in GetBitmapStream()
575 for( std::hash_map<sal_uInt64, int>::const_iterator it = pResUseDump->begin(); in ~InternalResMgr()
578 sal_uInt64 nKeyId = it->first; in ~InternalResMgr()
632 pResUseDump = new std::hash_map<sal_uInt64, int>; in Create()
673 sal_uInt64 nValue = ((sal_uInt64(nRT) << 32) | nId); in IsGlobalAvailable()
688 pResUseDump->erase( (sal_uInt64(nRT) << 32) | nId ); in LoadGlobalRes()
691 sal_uInt64 nValue = ((sal_uInt64(nRT) << 32) | nId); in LoadGlobalRes()
1332 sal_uInt64 ResMgr::GetUInt64( void* pDatum ) in GetUInt64()
1334 return ((sal_uInt64(*((sal_uInt8*)pDatum + 0)) << 56) | in GetUInt64()
1335 (sal_uInt64(*((sal_uInt8*)pDatum + 1)) << 48) | in GetUInt64()
1336 (sal_uInt64(*((sal_uInt8*)pDatum + 2)) << 40) | in GetUInt64()
1337 (sal_uInt64(*((sal_uInt8*)pDatum + 3)) << 32) | in GetUInt64()
1338 (sal_uInt64(*((sal_uInt8*)pDatum + 4)) << 24) | in GetUInt64()
1339 (sal_uInt64(*((sal_uInt8*)pDatum + 5)) << 16) | in GetUInt64()
1340 (sal_uInt64(*((sal_uInt8*)pDatum + 6)) << 8) | in GetUInt64()
1341 (sal_uInt64(*((sal_uInt8*)pDatum + 7)) << 0) ); in GetUInt64()