Home
last modified time | relevance | path

Searched refs:largeInt (Results 1 – 13 of 13) sorted by relevance

/dports/science/kst2/kst-plot-38eddb5322a1d557f9d86ea95d456d76272941e3/src/libkst/
H A Dmeasuretime.cpp29 LARGE_INTEGER largeInt; in readFrequency() local
30 if (!QueryPerformanceFrequency(&largeInt)) in readFrequency()
32 return 1.0 / largeIntToInt64(largeInt); in readFrequency()
56 LARGE_INTEGER largeInt; in getTime() local
57 if (!QueryPerformanceCounter(&largeInt)) in getTime()
59 return largeIntToInt64(largeInt) * frequency; in getTime()
/dports/devel/libhoard/Hoard/src/Heap-Layers/utility/
H A Dtimer-old.h265 largeInt.QuadPart = 0; in TimeType()
267 operator double& (void) { return (double&) largeInt.QuadPart; }
268 operator LARGE_INTEGER& (void) { return largeInt; }
270 return (double) largeInt.QuadPart / getFreq(); in timeToSec()
278 LARGE_INTEGER largeInt; variable
/dports/devel/libhoard/Hoard/benchmarks/common/
H A Dtimer.h272 largeInt.QuadPart = 0; in TimeType()
274 operator double& (void) { return (double&) largeInt.QuadPart; }
275 operator LARGE_INTEGER& (void) { return largeInt; }
277 return (double) largeInt.QuadPart / getFreq(); in timeToSec()
285 LARGE_INTEGER largeInt; variable
/dports/devel/jna/jna-5.7.0/contrib/platform/test/com/sun/jna/platform/win32/
H A DWinNTTypesTest.java38 public LARGE_INTEGER largeInt; field in WinNTTypesTest.LargeIntegerStruct
75 large = new LargeIntegerStruct(m).largeInt; in testLargeIntegerUnionLongValue()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/AD/
H A DADUtils.cs315 static internal Int64 LargeIntToInt64(UnsafeNativeMethods.IADsLargeInteger largeInt) in LargeIntToInt64() argument
317 uint lowPart = (uint)largeInt.LowPart; in LargeIntToInt64()
318 uint highPart = (uint)largeInt.HighPart; in LargeIntToInt64()
H A DADStoreCtx_LoadStore.cs1302 … UnsafeNativeMethods.IADsLargeInteger largeInt = (UnsafeNativeMethods.IADsLargeInteger)largeIntObj; in AcctExpirToLdapConverter()
1307 largeInt.LowPart = unchecked((int)0xffffffff); in AcctExpirToLdapConverter()
1308 largeInt.HighPart = (int)0x7fffffff; in AcctExpirToLdapConverter()
1317 largeInt.LowPart = (int)lowPart; in AcctExpirToLdapConverter()
1318 largeInt.HighPart = (int)highPart; in AcctExpirToLdapConverter()
1321 de.Properties[suggestedAdProperty].Value = largeInt; in AcctExpirToLdapConverter()
/dports/lang/angelscript/sdk/add_on/scriptfile/
H A Dscriptfilesystem.cpp329 LARGE_INTEGER largeInt; in GetSize() local
331 BOOL success = GetFileSizeEx(file, &largeInt); in GetSize()
335 return asINT64(largeInt.QuadPart); in GetSize()
/dports/devel/cpprestsdk/cpprestsdk-2.10.16/Release/src/utilities/
H A Dasyncrt_utils.cpp696 ULARGE_INTEGER largeInt; in utc_now() local
700 largeInt.LowPart = fileTime.dwLowDateTime; in utc_now()
701 largeInt.HighPart = fileTime.dwHighDateTime; in utc_now()
703 return datetime(largeInt.QuadPart); in utc_now()
/dports/lang/squeak/Squeak-4.10.2.2614-src/unix/src/plugins/SqueakFFIPrims/
H A DSqueakFFIPrims.c687 sqInt largeInt; in ffiCreateLongLongReturn() local
734 largeInt = interpreterProxy->instantiateClassindexableSize(largeClass, nBytes); in ffiCreateLongLongReturn()
735 if (!(interpreterProxy->isBytes(largeInt))) { in ffiCreateLongLongReturn()
740 ptr = interpreterProxy->firstIndexableField(largeInt); in ffiCreateLongLongReturn()
748 return largeInt; in ffiCreateLongLongReturn()
/dports/devel/boost-docs/boost_1_72_0/libs/thread/test/
H A Dtest_time_jumps.cpp297 ULARGE_INTEGER largeInt; in changeSystemTime() local
298 largeInt.LowPart = fileTime.dwLowDateTime; in changeSystemTime()
299 largeInt.HighPart = fileTime.dwHighDateTime; in changeSystemTime()
300 largeInt.QuadPart += changeMs * 10000; in changeSystemTime()
301 fileTime.dwLowDateTime = largeInt.LowPart; in changeSystemTime()
302 fileTime.dwHighDateTime = largeInt.HighPart; in changeSystemTime()
/dports/devel/boost-python-libs/boost_1_72_0/libs/thread/test/
H A Dtest_time_jumps.cpp297 ULARGE_INTEGER largeInt; in changeSystemTime() local
298 largeInt.LowPart = fileTime.dwLowDateTime; in changeSystemTime()
299 largeInt.HighPart = fileTime.dwHighDateTime; in changeSystemTime()
300 largeInt.QuadPart += changeMs * 10000; in changeSystemTime()
301 fileTime.dwLowDateTime = largeInt.LowPart; in changeSystemTime()
302 fileTime.dwHighDateTime = largeInt.HighPart; in changeSystemTime()
/dports/devel/boost-libs/boost_1_72_0/libs/thread/test/
H A Dtest_time_jumps.cpp297 ULARGE_INTEGER largeInt; in changeSystemTime() local
298 largeInt.LowPart = fileTime.dwLowDateTime; in changeSystemTime()
299 largeInt.HighPart = fileTime.dwHighDateTime; in changeSystemTime()
300 largeInt.QuadPart += changeMs * 10000; in changeSystemTime()
301 fileTime.dwLowDateTime = largeInt.LowPart; in changeSystemTime()
302 fileTime.dwHighDateTime = largeInt.HighPart; in changeSystemTime()
/dports/devel/hyperscan/boost_1_75_0/libs/thread/test/
H A Dtest_time_jumps.cpp297 ULARGE_INTEGER largeInt; in changeSystemTime() local
298 largeInt.LowPart = fileTime.dwLowDateTime; in changeSystemTime()
299 largeInt.HighPart = fileTime.dwHighDateTime; in changeSystemTime()
300 largeInt.QuadPart += changeMs * 10000; in changeSystemTime()
301 fileTime.dwLowDateTime = largeInt.LowPart; in changeSystemTime()
302 fileTime.dwHighDateTime = largeInt.HighPart; in changeSystemTime()