Home
last modified time | relevance | path

Searched refs:RangeBase (Results 1 – 25 of 173) sorted by relevance

1234567

/dports/devel/onetbb/oneTBB-2021.4.0/test/tbb/
H A Dtest_partitioner.h97 class RangeBase: public RangeStatisticCollector {
110 RangeBase(RangeBase& r, tbb::split) : RangeStatisticCollector(r, r.size()) { in RangeBase() function
116 RangeBase(RangeBase& r, proportional_split& p) : RangeStatisticCollector(r, p) { in RangeBase() function
166 : RangeBase<RoundedDownRange, float>(r, p) { } in RoundedDownRange()
179 : RangeBase<RoundedUpRange, float>(r, p) { } in RoundedUpRange()
183 class Range1_2: public RangeBase<Range1_2, float> {
197 class Range1_999: public RangeBase<Range1_999, float> {
211 class Range999_1: public RangeBase<Range999_1, float> {
245 : RangeBase<InvertedProportionRange, float>(r, p) { } in InvertedProportionRange()
259 : RangeBase<ExactSplitRange, size_t>(r, split()) { } in ExactSplitRange()
[all …]
/dports/math/stanmath/math-4.2.0/lib/tbb_2020.3/src/test/
H A Dtest_partitioner.h102 class RangeBase: public RangeStatisticCollector {
115 RangeBase(RangeBase& r, tbb::split) : RangeStatisticCollector(r, r.size()) { in RangeBase() function
121 RangeBase(RangeBase& r, proportional_split& p) : RangeStatisticCollector(r, p) { in RangeBase() function
175 : RangeBase<RoundedDownRange, float>(r, p) { } in RoundedDownRange()
189 : RangeBase<RoundedUpRange, float>(r, p) { } in RoundedUpRange()
194 class Range1_2: public RangeBase<Range1_2, float> {
209 class Range1_999: public RangeBase<Range1_999, float> {
224 class Range999_1: public RangeBase<Range999_1, float> {
260 : RangeBase<InvertedProportionRange, float>(r, p) { } in InvertedProportionRange()
275 : RangeBase<ExactSplitRange, size_t>(r, split()) { } in ExactSplitRange()
[all …]
/dports/devel/tbb/oneTBB-2020.3/src/test/
H A Dtest_partitioner.h102 class RangeBase: public RangeStatisticCollector {
115 RangeBase(RangeBase& r, tbb::split) : RangeStatisticCollector(r, r.size()) { in RangeBase() function
121 RangeBase(RangeBase& r, proportional_split& p) : RangeStatisticCollector(r, p) { in RangeBase() function
175 : RangeBase<RoundedDownRange, float>(r, p) { } in RoundedDownRange()
189 : RangeBase<RoundedUpRange, float>(r, p) { } in RoundedUpRange()
194 class Range1_2: public RangeBase<Range1_2, float> {
209 class Range1_999: public RangeBase<Range1_999, float> {
224 class Range999_1: public RangeBase<Range999_1, float> {
260 : RangeBase<InvertedProportionRange, float>(r, p) { } in InvertedProportionRange()
275 : RangeBase<ExactSplitRange, size_t>(r, split()) { } in ExactSplitRange()
[all …]
/dports/devel/taskflow/taskflow-3.2.0/3rd-party/tbb/src/test/
H A Dtest_partitioner.h102 class RangeBase: public RangeStatisticCollector {
115 RangeBase(RangeBase& r, tbb::split) : RangeStatisticCollector(r, r.size()) { in RangeBase() function
121 RangeBase(RangeBase& r, proportional_split& p) : RangeStatisticCollector(r, p) { in RangeBase() function
175 : RangeBase<RoundedDownRange, float>(r, p) { } in RoundedDownRange()
189 : RangeBase<RoundedUpRange, float>(r, p) { } in RoundedUpRange()
194 class Range1_2: public RangeBase<Range1_2, float> {
209 class Range1_999: public RangeBase<Range1_999, float> {
224 class Range999_1: public RangeBase<Range999_1, float> {
260 : RangeBase<InvertedProportionRange, float>(r, p) { } in InvertedProportionRange()
275 : RangeBase<ExactSplitRange, size_t>(r, split()) { } in ExactSplitRange()
[all …]
/dports/multimedia/gmmlib/gmmlib-intel-gmmlib-22.0.2/Source/GmmLib/inc/External/Common/
H A DGmmUtil.h83 #define __GMM_RANGE_IN_GMADR(RangeBase, RangeSize,pGmmLibContext) \ argument
84 (((RangeBase) >= GmmGetGttContext(pGmmLibContext)->GfxAddrRange.Global.Base) && \
85 (((RangeBase) + (RangeSize)) <= \
89 #define __GMM_RANGE_IN_GLOBAL_GTT_SPACE(RangeBase, RangeSize,pGmmLibContext) \ argument
90 (((RangeBase) >= GmmGetGttContext(pGmmLibContext)->GfxAddrRange.Global.Base) && \
91 (((RangeBase) + (RangeSize)) <= \
95 #define __GMM_RANGE_IN_PPGTT_SPACE(RangeBase, RangeSize,pGmmLibContext) \ argument
96 (((RangeBase) >= GmmGetGttContext(pGmmLibContext)->GfxAddrRange.PP.Base) && \
97 (((RangeBase) + (RangeSize)) <= \
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/UefiCpuPkg/Library/MtrrLib/UnitTest/
H A DSupport.c437 UINT64 RangeBase; in GenerateRandomMtrrPair() local
447 RangeBase = RandomBoundary << BaseShift; in GenerateRandomMtrrPair()
448 } while (RangeBase < SIZE_1MB || RangeBase > MaxPhysicalAddress - 1); in GenerateRandomMtrrPair()
454 PhysBase.Uint64 |= RangeBase & PhysBasePhyMaskValidBitsMask; in GenerateRandomMtrrPair()
465 MtrrMemoryRange->BaseAddress = RangeBase; in GenerateRandomMtrrPair()
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/UefiCpuPkg/Library/MtrrLib/UnitTest/
H A DSupport.c437 UINT64 RangeBase; in GenerateRandomMtrrPair() local
447 RangeBase = RandomBoundary << BaseShift; in GenerateRandomMtrrPair()
448 } while (RangeBase < SIZE_1MB || RangeBase > MaxPhysicalAddress - 1); in GenerateRandomMtrrPair()
454 PhysBase.Uint64 |= RangeBase & PhysBasePhyMaskValidBitsMask; in GenerateRandomMtrrPair()
465 MtrrMemoryRange->BaseAddress = RangeBase; in GenerateRandomMtrrPair()
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/UefiCpuPkg/Library/MtrrLib/UnitTest/
H A DSupport.c437 UINT64 RangeBase; in GenerateRandomMtrrPair() local
447 RangeBase = RandomBoundary << BaseShift; in GenerateRandomMtrrPair()
448 } while (RangeBase < SIZE_1MB || RangeBase > MaxPhysicalAddress - 1); in GenerateRandomMtrrPair()
454 PhysBase.Uint64 |= RangeBase & PhysBasePhyMaskValidBitsMask; in GenerateRandomMtrrPair()
465 MtrrMemoryRange->BaseAddress = RangeBase; in GenerateRandomMtrrPair()
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/UefiCpuPkg/Library/MtrrLib/UnitTest/
H A DSupport.c437 UINT64 RangeBase; in GenerateRandomMtrrPair() local
447 RangeBase = RandomBoundary << BaseShift; in GenerateRandomMtrrPair()
448 } while (RangeBase < SIZE_1MB || RangeBase > MaxPhysicalAddress - 1); in GenerateRandomMtrrPair()
454 PhysBase.Uint64 |= RangeBase & PhysBasePhyMaskValidBitsMask; in GenerateRandomMtrrPair()
465 MtrrMemoryRange->BaseAddress = RangeBase; in GenerateRandomMtrrPair()
/dports/sysutils/edk2/edk2-edk2-stable202102/UefiCpuPkg/Library/MtrrLib/UnitTest/
H A DSupport.c437 UINT64 RangeBase; in GenerateRandomMtrrPair() local
447 RangeBase = RandomBoundary << BaseShift; in GenerateRandomMtrrPair()
448 } while (RangeBase < SIZE_1MB || RangeBase > MaxPhysicalAddress - 1); in GenerateRandomMtrrPair()
454 PhysBase.Uint64 |= RangeBase & PhysBasePhyMaskValidBitsMask; in GenerateRandomMtrrPair()
465 MtrrMemoryRange->BaseAddress = RangeBase; in GenerateRandomMtrrPair()
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/UefiCpuPkg/Library/MtrrLib/
H A DMtrrLib.c1555 UINT64 RangeBase; in MtrrDebugPrintAllMtrrs()
1634 RangeBase = BASE_1MB; in MtrrDebugPrintAllMtrrs()
1653 if (Base >= MtrrBase && MtrrBase > RangeBase) { in MtrrDebugPrintAllMtrrs()
1654 RangeBase = MtrrBase; in MtrrDebugPrintAllMtrrs()
1656 if (Base > MtrrLimit && MtrrLimit > RangeBase) { in MtrrDebugPrintAllMtrrs()
1657 RangeBase = MtrrLimit + 1; in MtrrDebugPrintAllMtrrs()
/dports/sysutils/edk2/edk2-platforms-89f6170d/Silicon/Intel/QuarkSocPkg/QuarkNorthCluster/Library/MtrrLib/
H A DMtrrLib.c1275 UINT64 RangeBase; in MtrrDebugPrintAllMtrrsWorker()
1360 RangeBase = BASE_1MB; in MtrrDebugPrintAllMtrrsWorker()
1379 if (Base >= MtrrBase && MtrrBase > RangeBase) { in MtrrDebugPrintAllMtrrsWorker()
1380 RangeBase = MtrrBase; in MtrrDebugPrintAllMtrrsWorker()
1382 if (Base > MtrrLimit && MtrrLimit > RangeBase) { in MtrrDebugPrintAllMtrrsWorker()
1383 RangeBase = MtrrLimit + 1; in MtrrDebugPrintAllMtrrsWorker()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Native/Runtime/
H A Deventtracepriv.h70 LPVOID RangeBase; member
/dports/lang/v8/v8-9.6.180.12/src/diagnostics/
H A Dunwinding-info-win64.cc497 DWORD MaximumEntryCount, ULONG_PTR RangeBase, in AddGrowableFunctionTable() argument
507 MaximumEntryCount, RangeBase, RangeEnd); in AddGrowableFunctionTable()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/diagnostics/
H A Dunwinding-info-win64.cc488 DWORD MaximumEntryCount, ULONG_PTR RangeBase, in AddGrowableFunctionTable() argument
498 MaximumEntryCount, RangeBase, RangeEnd); in AddGrowableFunctionTable()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/diagnostics/
H A Dunwinding-info-win64.cc488 DWORD MaximumEntryCount, ULONG_PTR RangeBase, in AddGrowableFunctionTable() argument
498 MaximumEntryCount, RangeBase, RangeEnd); in AddGrowableFunctionTable()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/VideoCommon/
H A DBPMemory.h691 union RangeBase union
698 RangeBase Base;
H A DUberShaderPixel.cpp1186 BitfieldExtract("bpmem_fogRangeBase", FogRangeParams::RangeBase().Enabled).c_str()); in GenPixelShader()
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/cargo-crates/windows-sys-0.28.0/src/Windows/UI/Xaml/Controls/Primitives/
H A Dmod.rs226 pub type RangeBase = *mut ::core::ffi::c_void; typedef
/dports/lang/mono/mono-5.10.1.57/mono/mini/
H A Dmini-amd64.h74 ULONG_PTR RangeBase,
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dwinnt.h7723 …ION FunctionTable, DWORD EntryCount, DWORD MaximumEntryCount, ULONG_PTR RangeBase, ULONG_PTR Range…
7734 …ION FunctionTable, DWORD EntryCount, DWORD MaximumEntryCount, ULONG_PTR RangeBase, ULONG_PTR Range…
7744 …ION FunctionTable, DWORD EntryCount, DWORD MaximumEntryCount, ULONG_PTR RangeBase, ULONG_PTR Range…
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dwinnt.h7723 …ION FunctionTable, DWORD EntryCount, DWORD MaximumEntryCount, ULONG_PTR RangeBase, ULONG_PTR Range…
7734 …ION FunctionTable, DWORD EntryCount, DWORD MaximumEntryCount, ULONG_PTR RangeBase, ULONG_PTR Range…
7744 …ION FunctionTable, DWORD EntryCount, DWORD MaximumEntryCount, ULONG_PTR RangeBase, ULONG_PTR Range…
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/windows-0.24.0/src/Windows/UI/Xaml/Controls/Primitives/
H A Dmod.rs52297 impl RangeBase { implementation
54845 fn from(value: RangeBase) -> Self { in from()
54850 fn from(value: &RangeBase) -> Self { in from()
54865 fn from(value: RangeBase) -> Self { in from()
54870 fn from(value: &RangeBase) -> Self { in from()
54937 fn from(value: RangeBase) -> Self { in from()
54942 fn from(value: &RangeBase) -> Self { in from()
54957 fn from(value: RangeBase) -> Self { in from()
54962 fn from(value: &RangeBase) -> Self { in from()
54977 fn from(value: RangeBase) -> Self { in from()
[all …]
/dports/devel/interactive_rebase_tool/git-interactive-rebase-tool-1.2.1/cargo-crates/winapi-0.3.6/src/um/
H A Dwinnt.rs7007 RangeBase: ULONG_PTR, in RtlAddGrowableFunctionTable()
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/rust/winapi/src/um/
H A Dwinnt.rs6962 RangeBase: ULONG_PTR, in RtlAddGrowableFunctionTable()

1234567