├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── bin └── WinRing0 │ ├── LICENSE │ └── WinRing0x64.sys ├── cmake ├── FindHWLOC.cmake ├── FindUV.cmake ├── OpenSSL.cmake ├── argon2.cmake ├── asm.cmake ├── cpu.cmake ├── flags.cmake ├── os.cmake └── randomx.cmake ├── doc ├── ALGORITHMS.md ├── API.md ├── CHANGELOG.md ├── CHANGELOG_OLD.md ├── CPU.md ├── CPU_MAX_USAGE.md ├── PERSISTENT_OPTIONS.md ├── api │ └── 1 │ │ ├── config.json │ │ ├── summary.json │ │ └── threads.json ├── build │ └── CMAKE_OPTIONS.md ├── building.md ├── gpg_keys │ └── xmrig.asc ├── releases │ └── 5_0_1 │ │ ├── SHA256SUMS │ │ └── SHA256SUMS.sig ├── screenshot_v5.png └── topology │ ├── AMD_FX_8320_windows_2_0_4.xml │ ├── AMD_Opteron_6272_x4_N8_linux_2_0_4_LXC.xml │ ├── AMD_Opteron_6278_x2_UMA_windows_2_0_4.xml │ ├── AMD_Opteron_6344_x2_N4_win7_2_0_4_bug.xml │ ├── AMD_Opteron_6348_x4_N8_linux_1_11_2.xml │ ├── AMD_Opteron_6348_x4_N8_linux_2_0_4.xml │ ├── AMD_Opteron_6380_x4_N8_linux_1_11_5.xml │ ├── AMD_Ryzen_7_2700X_windows_2_0_4.xml │ ├── AMD_Ryzen_7_3700X_windows_2_0_4.xml │ ├── AMD_Ryzen_Threadripper_2950X_N2_linux_2_0_4.xml │ ├── AMD_Ryzen_Threadripper_2950X_UMA_linux_1_11_9.xml │ ├── Intel_Core_i7-3770_linux_2_0_4.xml │ ├── Intel_Core_i7-6700_linux_2_0_4.xml │ ├── Intel_Core_i7-6700_windows_2_0_4.xml │ ├── Intel_Core_i7-7660U_windows_2_0_4.xml │ ├── Intel_Xeon_E5-4650_0_x4_N4_windows_2_0_4.xml │ ├── Intel_Xeon_E5620_x2_UMA_windows_2_0_4.xml │ ├── Intel_Xeon_E7-4870_x4_N4_windows_2_0_4.xml │ ├── Intel_Xeon_Gold_6146_x2_UMA_linux_2_0_4.xml │ ├── Intel_Xeon_Silver_4114_x2_N2_linux_1_11_9.xml │ └── Intel_Xeon_Silver_4114_x2_N2_linux_2_0_4.xml ├── package.json ├── res ├── app.ico └── app.rc ├── scripts ├── benchmark_10M.cmd ├── benchmark_1M.cmd ├── build.hwloc.sh ├── build.libressl.sh ├── build.libressl_win.sh ├── build.openssl3.sh ├── build.uv.sh ├── build_deps.sh ├── enable_1gb_pages.sh ├── generate_cl.js ├── js │ ├── opencl.js │ └── opencl_minify.js ├── pool_mine_example.cmd ├── randomx_boost.sh └── solo_mine_example.cmd └── src ├── 3rdparty ├── adl │ ├── adl_defines.h │ ├── adl_sdk.h │ └── adl_structures.h ├── argon2.h ├── argon2 │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── arch │ │ ├── generic │ │ │ └── lib │ │ │ │ └── argon2-arch.c │ │ └── x86_64 │ │ │ ├── lib │ │ │ ├── argon2-arch.c │ │ │ ├── argon2-avx2.c │ │ │ ├── argon2-avx2.h │ │ │ ├── argon2-avx512f.c │ │ │ ├── argon2-avx512f.h │ │ │ ├── argon2-sse2.c │ │ │ ├── argon2-sse2.h │ │ │ ├── argon2-ssse3.c │ │ │ ├── argon2-ssse3.h │ │ │ ├── argon2-template-128.h │ │ │ ├── argon2-xop.c │ │ │ └── argon2-xop.h │ │ │ └── src │ │ │ ├── test-feature-avx2.c │ │ │ ├── test-feature-avx512f.c │ │ │ ├── test-feature-sse2.c │ │ │ ├── test-feature-ssse3.c │ │ │ └── test-feature-xop.c │ ├── include │ │ └── argon2.h │ └── lib │ │ ├── argon2-template-64.h │ │ ├── argon2.c │ │ ├── blake2 │ │ ├── blake2-impl.h │ │ ├── blake2.c │ │ └── blake2.h │ │ ├── core.c │ │ ├── core.h │ │ ├── encoding.c │ │ ├── encoding.h │ │ ├── genkat.c │ │ ├── genkat.h │ │ ├── impl-select.c │ │ └── impl-select.h ├── base32 │ └── base32.h ├── cl.h ├── fmt │ ├── LICENSE.rst │ ├── README.rst │ ├── chrono.h │ ├── color.h │ ├── compile.h │ ├── core.h │ ├── format-inl.h │ ├── format.cc │ ├── format.h │ ├── locale.h │ ├── os.cc │ ├── os.h │ ├── ostream.h │ ├── posix.h │ ├── printf.h │ └── ranges.h ├── getopt │ └── getopt.h ├── http-parser │ ├── AUTHORS │ ├── LICENSE-MIT │ ├── README.md │ ├── http_parser.c │ └── http_parser.h ├── hwloc │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── NEWS │ ├── README │ ├── VERSION │ ├── include │ │ ├── hwloc.h │ │ ├── hwloc │ │ │ ├── autogen │ │ │ │ └── config.h │ │ │ ├── bitmap.h │ │ │ ├── cpukinds.h │ │ │ ├── cuda.h │ │ │ ├── cudart.h │ │ │ ├── deprecated.h │ │ │ ├── diff.h │ │ │ ├── distances.h │ │ │ ├── export.h │ │ │ ├── gl.h │ │ │ ├── glibc-sched.h │ │ │ ├── helper.h │ │ │ ├── inlines.h │ │ │ ├── intel-mic.h │ │ │ ├── linux-libnuma.h │ │ │ ├── linux.h │ │ │ ├── memattrs.h │ │ │ ├── nvml.h │ │ │ ├── opencl.h │ │ │ ├── openfabrics-verbs.h │ │ │ ├── plugins.h │ │ │ ├── rename.h │ │ │ ├── rsmi.h │ │ │ └── shmem.h │ │ └── private │ │ │ ├── autogen │ │ │ └── config.h │ │ │ ├── components.h │ │ │ ├── cpuid-x86.h │ │ │ ├── debug.h │ │ │ ├── internal-components.h │ │ │ ├── misc.h │ │ │ ├── netloc.h │ │ │ ├── private.h │ │ │ ├── solaris-chiptype.h │ │ │ └── xml.h │ └── src │ │ ├── base64.c │ │ ├── bind.c │ │ ├── bitmap.c │ │ ├── components.c │ │ ├── cpukinds.c │ │ ├── diff.c │ │ ├── distances.c │ │ ├── memattrs.c │ │ ├── misc.c │ │ ├── pci-common.c │ │ ├── shmem.c │ │ ├── static-components.h │ │ ├── topology-noos.c │ │ ├── topology-synthetic.c │ │ ├── topology-windows.c │ │ ├── topology-x86.c │ │ ├── topology-xml-nolibxml.c │ │ ├── topology-xml.c │ │ ├── topology.c │ │ └── traversal.c ├── libethash │ ├── CMakeLists.txt │ ├── data_sizes.h │ ├── endian.h │ ├── ethash.h │ ├── ethash_internal.c │ ├── ethash_internal.h │ ├── fnv.h │ └── keccakf800.c ├── llhttp │ ├── LICENSE-MIT │ ├── README.md │ ├── api.c │ ├── api.h │ ├── http.c │ ├── llhttp.c │ └── llhttp.h └── rapidjson │ ├── allocators.h │ ├── cursorstreamwrapper.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ ├── en.h │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal │ ├── biginteger.h │ ├── diyfp.h │ ├── dtoa.h │ ├── ieee754.h │ ├── itoa.h │ ├── meta.h │ ├── pow10.h │ ├── regex.h │ ├── stack.h │ ├── strfunc.h │ ├── strtod.h │ └── swap.h │ ├── istreamwrapper.h │ ├── license.txt │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ ├── inttypes.h │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ └── writer.h ├── App.cpp ├── App.h ├── App_unix.cpp ├── App_win.cpp ├── Summary.cpp ├── Summary.h ├── backend ├── backend.cmake ├── common │ ├── Hashrate.cpp │ ├── Hashrate.h │ ├── HashrateInterpolator.cpp │ ├── HashrateInterpolator.h │ ├── Tags.h │ ├── Thread.h │ ├── Threads.cpp │ ├── Threads.h │ ├── Worker.cpp │ ├── Worker.h │ ├── WorkerJob.h │ ├── Workers.cpp │ ├── Workers.h │ ├── common.cmake │ ├── interfaces │ │ ├── IBackend.h │ │ ├── IBenchListener.h │ │ ├── IMemoryPool.h │ │ ├── IRxListener.h │ │ ├── IRxStorage.h │ │ └── IWorker.h │ └── misc │ │ └── PciTopology.h └── cpu │ ├── Cpu.cpp │ ├── Cpu.h │ ├── CpuBackend.cpp │ ├── CpuBackend.h │ ├── CpuConfig.cpp │ ├── CpuConfig.h │ ├── CpuConfig_gen.h │ ├── CpuLaunchData.cpp │ ├── CpuLaunchData.h │ ├── CpuThread.cpp │ ├── CpuThread.h │ ├── CpuThreads.cpp │ ├── CpuThreads.h │ ├── CpuWorker.cpp │ ├── CpuWorker.h │ ├── cpu.cmake │ ├── interfaces │ └── ICpuInfo.h │ └── platform │ ├── BasicCpuInfo.cpp │ ├── BasicCpuInfo.h │ ├── BasicCpuInfo_arm.cpp │ ├── HwlocCpuInfo.cpp │ ├── HwlocCpuInfo.h │ └── lscpu_arm.cpp ├── base ├── api │ ├── Api.cpp │ ├── Api.h │ ├── Httpd.cpp │ ├── Httpd.h │ ├── interfaces │ │ ├── IApiListener.h │ │ └── IApiRequest.h │ └── requests │ │ ├── ApiRequest.cpp │ │ ├── ApiRequest.h │ │ ├── HttpApiRequest.cpp │ │ └── HttpApiRequest.h ├── base.cmake ├── crypto │ ├── Algorithm.cpp │ ├── Algorithm.h │ ├── Coin.cpp │ ├── Coin.h │ ├── keccak.cpp │ ├── keccak.h │ ├── sha3.cpp │ └── sha3.h ├── io │ ├── Async.cpp │ ├── Async.h │ ├── Console.cpp │ ├── Console.h │ ├── Env.cpp │ ├── Env.h │ ├── Signals.cpp │ ├── Signals.h │ ├── Watcher.cpp │ ├── Watcher.h │ ├── json │ │ ├── Json.cpp │ │ ├── Json.h │ │ ├── JsonChain.cpp │ │ ├── JsonChain.h │ │ ├── JsonRequest.cpp │ │ ├── JsonRequest.h │ │ ├── Json_unix.cpp │ │ └── Json_win.cpp │ └── log │ │ ├── FileLogWriter.cpp │ │ ├── FileLogWriter.h │ │ ├── Log.cpp │ │ ├── Log.h │ │ ├── Tags.cpp │ │ ├── Tags.h │ │ └── backends │ │ ├── ConsoleLog.cpp │ │ ├── ConsoleLog.h │ │ ├── FileLog.cpp │ │ ├── FileLog.h │ │ ├── SysLog.cpp │ │ └── SysLog.h ├── kernel │ ├── Base.cpp │ ├── Base.h │ ├── Entry.cpp │ ├── Entry.h │ ├── Platform.cpp │ ├── Platform.h │ ├── Platform_hwloc.cpp │ ├── Platform_mac.cpp │ ├── Platform_unix.cpp │ ├── Platform_win.cpp │ ├── Process.cpp │ ├── Process.h │ ├── Process_unix.cpp │ ├── Process_win.cpp │ ├── config │ │ ├── BaseConfig.cpp │ │ ├── BaseConfig.h │ │ ├── BaseTransform.cpp │ │ ├── BaseTransform.h │ │ ├── Title.cpp │ │ └── Title.h │ ├── constants.h │ └── interfaces │ │ ├── IAsyncListener.h │ │ ├── IBaseListener.h │ │ ├── IClient.h │ │ ├── IClientListener.h │ │ ├── IConfig.h │ │ ├── IConfigListener.h │ │ ├── IConfigTransform.h │ │ ├── IConsoleListener.h │ │ ├── IDnsListener.h │ │ ├── IHttpListener.h │ │ ├── IJsonReader.h │ │ ├── ILineListener.h │ │ ├── ILogBackend.h │ │ ├── ISignalListener.h │ │ ├── IStrategy.h │ │ ├── IStrategyListener.h │ │ ├── ITcpServerListener.h │ │ ├── ITimerListener.h │ │ └── IWatcherListener.h ├── net │ ├── dns │ │ ├── Dns.cpp │ │ ├── Dns.h │ │ ├── DnsRecord.cpp │ │ └── DnsRecord.h │ ├── http │ │ ├── Fetch.cpp │ │ ├── Fetch.h │ │ ├── Http.cpp │ │ ├── Http.h │ │ ├── HttpApiResponse.cpp │ │ ├── HttpApiResponse.h │ │ ├── HttpClient.cpp │ │ ├── HttpClient.h │ │ ├── HttpContext.cpp │ │ ├── HttpContext.h │ │ ├── HttpData.cpp │ │ ├── HttpData.h │ │ ├── HttpListener.cpp │ │ ├── HttpListener.h │ │ ├── HttpResponse.cpp │ │ ├── HttpResponse.h │ │ ├── HttpServer.cpp │ │ └── HttpServer.h │ ├── https │ │ ├── HttpsClient.cpp │ │ ├── HttpsClient.h │ │ ├── HttpsContext.cpp │ │ ├── HttpsContext.h │ │ ├── HttpsServer.cpp │ │ └── HttpsServer.h │ ├── stratum │ │ ├── AutoClient.cpp │ │ ├── AutoClient.h │ │ ├── BaseClient.cpp │ │ ├── BaseClient.h │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── DaemonClient.cpp │ │ ├── DaemonClient.h │ │ ├── EthStratumClient.cpp │ │ ├── EthStratumClient.h │ │ ├── Job.cpp │ │ ├── Job.h │ │ ├── NetworkState.cpp │ │ ├── NetworkState.h │ │ ├── Pool.cpp │ │ ├── Pool.h │ │ ├── Pools.cpp │ │ ├── Pools.h │ │ ├── ProxyUrl.cpp │ │ ├── ProxyUrl.h │ │ ├── SelfSelectClient.cpp │ │ ├── SelfSelectClient.h │ │ ├── Socks5.cpp │ │ ├── Socks5.h │ │ ├── SubmitResult.h │ │ ├── Tls.cpp │ │ ├── Tls.h │ │ ├── Url.cpp │ │ ├── Url.h │ │ └── strategies │ │ │ ├── FailoverStrategy.cpp │ │ │ ├── FailoverStrategy.h │ │ │ ├── SinglePoolStrategy.cpp │ │ │ ├── SinglePoolStrategy.h │ │ │ └── StrategyProxy.h │ ├── tls │ │ ├── ServerTls.cpp │ │ ├── ServerTls.h │ │ ├── TlsConfig.cpp │ │ ├── TlsConfig.h │ │ ├── TlsContext.cpp │ │ ├── TlsContext.h │ │ ├── TlsGen.cpp │ │ └── TlsGen.h │ └── tools │ │ ├── LineReader.cpp │ │ ├── LineReader.h │ │ ├── MemPool.h │ │ ├── NetBuffer.cpp │ │ ├── NetBuffer.h │ │ ├── Storage.h │ │ ├── TcpServer.cpp │ │ └── TcpServer.h └── tools │ ├── Arguments.cpp │ ├── Arguments.h │ ├── Baton.h │ ├── Buffer.h │ ├── Chrono.h │ ├── Cvt.cpp │ ├── Cvt.h │ ├── Handle.h │ ├── Object.h │ ├── String.cpp │ ├── String.h │ ├── Timer.cpp │ └── Timer.h ├── config.json ├── core ├── Controller.cpp ├── Controller.h ├── Miner.cpp ├── Miner.h └── config │ ├── Config.cpp │ ├── Config.h │ ├── ConfigTransform.cpp │ ├── ConfigTransform.h │ ├── Config_default.h │ ├── Config_platform.h │ └── usage.h ├── crypto ├── argon2 │ ├── Hash.h │ ├── Impl.cpp │ └── Impl.h ├── astrobwt │ ├── AstroBWT.cpp │ ├── AstroBWT.h │ ├── Salsa20.cpp │ ├── Salsa20.hpp │ ├── salsa20_ref │ │ ├── ecrypt-config.h │ │ ├── ecrypt-machine.h │ │ ├── ecrypt-portable.h │ │ ├── ecrypt-sync.h │ │ └── salsa20.c │ ├── sha3_256_avx2.S │ ├── sha3_256_avx2.asm │ ├── sha3_256_avx2.inc │ └── sha3_256_keccakf1600_avx2.inc ├── cn │ ├── CnAlgo.h │ ├── CnCtx.cpp │ ├── CnCtx.h │ ├── CnHash.cpp │ ├── CnHash.h │ ├── CryptoNight.h │ ├── CryptoNight_arm.h │ ├── CryptoNight_monero.h │ ├── CryptoNight_test.h │ ├── CryptoNight_x86.h │ ├── asm │ │ ├── CryptonightR_soft_aes_template.inc │ │ ├── CryptonightR_soft_aes_template_win.inc │ │ ├── CryptonightR_template.S │ │ ├── CryptonightR_template.asm │ │ ├── CryptonightR_template.h │ │ ├── CryptonightR_template.inc │ │ ├── CryptonightR_template_win.inc │ │ ├── cn2 │ │ │ ├── cnv2_double_main_loop_sandybridge.inc │ │ │ ├── cnv2_main_loop_bulldozer.inc │ │ │ ├── cnv2_main_loop_ivybridge.inc │ │ │ ├── cnv2_main_loop_ryzen.inc │ │ │ ├── cnv2_rwz_double_main_loop.inc │ │ │ └── cnv2_rwz_main_loop.inc │ │ ├── cn_main_loop.S │ │ ├── cn_main_loop.asm │ │ └── win64 │ │ │ ├── CryptonightR_soft_aes_template_win.inc │ │ │ ├── CryptonightR_template.asm │ │ │ ├── CryptonightR_template_win.inc │ │ │ ├── cn2 │ │ │ ├── cnv2_double_main_loop_sandybridge.inc │ │ │ ├── cnv2_main_loop_bulldozer.inc │ │ │ ├── cnv2_main_loop_ivybridge.inc │ │ │ ├── cnv2_main_loop_ryzen.inc │ │ │ ├── cnv2_rwz_double_main_loop.inc │ │ │ └── cnv2_rwz_main_loop.inc │ │ │ ├── cn_main_loop.S │ │ │ └── cn_main_loop.asm │ ├── c_blake256.c │ ├── c_blake256.h │ ├── c_groestl.c │ ├── c_groestl.h │ ├── c_jh.c │ ├── c_jh.h │ ├── c_skein.c │ ├── c_skein.h │ ├── groestl_tables.h │ ├── hash.h │ ├── r │ │ ├── CryptonightR_gen.cpp │ │ └── variant4_random_math.h │ ├── skein_port.h │ ├── soft_aes.h │ └── sse2neon.h ├── common │ ├── Assembly.cpp │ ├── Assembly.h │ ├── HugePagesInfo.cpp │ ├── HugePagesInfo.h │ ├── LinuxMemory.cpp │ ├── LinuxMemory.h │ ├── MemoryPool.cpp │ ├── MemoryPool.h │ ├── NUMAMemoryPool.cpp │ ├── NUMAMemoryPool.h │ ├── Nonce.cpp │ ├── Nonce.h │ ├── VirtualMemory.cpp │ ├── VirtualMemory.h │ ├── VirtualMemory_hwloc.cpp │ ├── VirtualMemory_unix.cpp │ ├── VirtualMemory_win.cpp │ └── portable │ │ └── mm_malloc.h ├── kawpow │ ├── KPCache.cpp │ ├── KPCache.h │ ├── KPHash.cpp │ └── KPHash.h ├── randomx │ ├── aes_hash.cpp │ ├── aes_hash.hpp │ ├── allocator.cpp │ ├── allocator.hpp │ ├── asm │ │ ├── program_epilogue_linux.inc │ │ ├── program_epilogue_store.inc │ │ ├── program_epilogue_win64.inc │ │ ├── program_loop_load.inc │ │ ├── program_loop_load_xop.inc │ │ ├── program_loop_store.inc │ │ ├── program_prologue_linux.inc │ │ ├── program_prologue_win64.inc │ │ ├── program_read_dataset.inc │ │ ├── program_read_dataset_ryzen.inc │ │ ├── program_read_dataset_sshash_fin.inc │ │ ├── program_read_dataset_sshash_init.inc │ │ ├── program_sshash_avx2_constants.inc │ │ ├── program_sshash_avx2_epilogue.inc │ │ ├── program_sshash_avx2_loop_begin.inc │ │ ├── program_sshash_avx2_loop_end.inc │ │ ├── program_sshash_avx2_save_registers.inc │ │ ├── program_sshash_avx2_ssh_load.inc │ │ ├── program_sshash_avx2_ssh_prefetch.inc │ │ ├── program_sshash_constants.inc │ │ ├── program_sshash_load.inc │ │ ├── program_sshash_prefetch.inc │ │ ├── program_xmm_constants.inc │ │ └── randomx_reciprocal.inc │ ├── blake2 │ │ ├── blake2-impl.h │ │ ├── blake2.h │ │ ├── blake2b-round.h │ │ ├── blake2b.c │ │ ├── blake2b_sse41.c │ │ ├── blamka-round-ref.h │ │ └── endian.h │ ├── blake2_generator.cpp │ ├── blake2_generator.hpp │ ├── bytecode_machine.cpp │ ├── bytecode_machine.hpp │ ├── common.hpp │ ├── configuration.h │ ├── dataset.cpp │ ├── dataset.hpp │ ├── instruction.hpp │ ├── instructions_portable.cpp │ ├── intrin_portable.h │ ├── jit_compiler.hpp │ ├── jit_compiler_a64.cpp │ ├── jit_compiler_a64.hpp │ ├── jit_compiler_a64_static.S │ ├── jit_compiler_a64_static.hpp │ ├── jit_compiler_fallback.cpp │ ├── jit_compiler_fallback.hpp │ ├── jit_compiler_x86.cpp │ ├── jit_compiler_x86.hpp │ ├── jit_compiler_x86_static.S │ ├── jit_compiler_x86_static.asm │ ├── jit_compiler_x86_static.hpp │ ├── panthera │ │ ├── KangarooTwelve.c │ │ ├── KangarooTwelve.h │ │ ├── KeccakP-1600-SnP.h │ │ ├── KeccakP-1600-reference.c │ │ ├── KeccakSponge-common.h │ │ ├── KeccakSponge.inc │ │ ├── KeccakSpongeWidth1600.c │ │ ├── KeccakSpongeWidth1600.h │ │ ├── Phases.h │ │ ├── align.h │ │ ├── brg_endian.h │ │ ├── insecure_memzero.h │ │ ├── sha256.c │ │ ├── sha256.h │ │ ├── sysendian.h │ │ ├── yespower-opt.c │ │ ├── yespower-platform.c │ │ ├── yespower-ref.c │ │ └── yespower.h │ ├── program.hpp │ ├── randomx.cpp │ ├── randomx.h │ ├── reciprocal.c │ ├── reciprocal.h │ ├── soft_aes.cpp │ ├── soft_aes.h │ ├── superscalar.cpp │ ├── superscalar.hpp │ ├── superscalar_program.hpp │ ├── virtual_machine.cpp │ ├── virtual_machine.hpp │ ├── virtual_memory.cpp │ ├── virtual_memory.hpp │ ├── vm_compiled.cpp │ ├── vm_compiled.hpp │ ├── vm_compiled_light.cpp │ ├── vm_compiled_light.hpp │ ├── vm_interpreted.cpp │ ├── vm_interpreted.hpp │ ├── vm_interpreted_light.cpp │ └── vm_interpreted_light.hpp └── rx │ ├── Profiler.cpp │ ├── Profiler.h │ ├── Rx.cpp │ ├── Rx.h │ ├── RxAlgo.cpp │ ├── RxAlgo.h │ ├── RxBasicStorage.cpp │ ├── RxBasicStorage.h │ ├── RxCache.cpp │ ├── RxCache.h │ ├── RxConfig.cpp │ ├── RxConfig.h │ ├── RxDataset.cpp │ ├── RxDataset.h │ ├── RxFix.h │ ├── RxFix_linux.cpp │ ├── RxFix_win.cpp │ ├── RxMsr.cpp │ ├── RxMsr.h │ ├── RxNUMAStorage.cpp │ ├── RxNUMAStorage.h │ ├── RxQueue.cpp │ ├── RxQueue.h │ ├── RxSeed.h │ ├── RxVm.cpp │ └── RxVm.h ├── donate.h ├── hw ├── api │ ├── HwApi.cpp │ ├── HwApi.h │ └── api.cmake ├── dmi │ ├── DmiBoard.cpp │ ├── DmiBoard.h │ ├── DmiMemory.cpp │ ├── DmiMemory.h │ ├── DmiReader.cpp │ ├── DmiReader.h │ ├── DmiReader_mac.cpp │ ├── DmiReader_unix.cpp │ ├── DmiReader_win.cpp │ ├── DmiTools.cpp │ ├── DmiTools.h │ └── dmi.cmake └── msr │ ├── Msr.cpp │ ├── Msr.h │ ├── MsrItem.cpp │ ├── MsrItem.h │ ├── Msr_linux.cpp │ └── Msr_win.cpp ├── net ├── JobResult.h ├── JobResults.cpp ├── JobResults.h ├── Network.cpp ├── Network.h ├── interfaces │ └── IJobResultListener.h └── strategies │ ├── DonateStrategy.cpp │ └── DonateStrategy.h ├── version.h └── xlarig.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/README.md -------------------------------------------------------------------------------- /bin/WinRing0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/bin/WinRing0/LICENSE -------------------------------------------------------------------------------- /bin/WinRing0/WinRing0x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/bin/WinRing0/WinRing0x64.sys -------------------------------------------------------------------------------- /cmake/FindHWLOC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/cmake/FindHWLOC.cmake -------------------------------------------------------------------------------- /cmake/FindUV.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/cmake/FindUV.cmake -------------------------------------------------------------------------------- /cmake/OpenSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/cmake/OpenSSL.cmake -------------------------------------------------------------------------------- /cmake/argon2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/cmake/argon2.cmake -------------------------------------------------------------------------------- /cmake/asm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/cmake/asm.cmake -------------------------------------------------------------------------------- /cmake/cpu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/cmake/cpu.cmake -------------------------------------------------------------------------------- /cmake/flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/cmake/flags.cmake -------------------------------------------------------------------------------- /cmake/os.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/cmake/os.cmake -------------------------------------------------------------------------------- /cmake/randomx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/cmake/randomx.cmake -------------------------------------------------------------------------------- /doc/ALGORITHMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/ALGORITHMS.md -------------------------------------------------------------------------------- /doc/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/API.md -------------------------------------------------------------------------------- /doc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/CHANGELOG.md -------------------------------------------------------------------------------- /doc/CHANGELOG_OLD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/CHANGELOG_OLD.md -------------------------------------------------------------------------------- /doc/CPU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/CPU.md -------------------------------------------------------------------------------- /doc/CPU_MAX_USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/CPU_MAX_USAGE.md -------------------------------------------------------------------------------- /doc/PERSISTENT_OPTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/PERSISTENT_OPTIONS.md -------------------------------------------------------------------------------- /doc/api/1/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/api/1/config.json -------------------------------------------------------------------------------- /doc/api/1/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/api/1/summary.json -------------------------------------------------------------------------------- /doc/api/1/threads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/api/1/threads.json -------------------------------------------------------------------------------- /doc/build/CMAKE_OPTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/build/CMAKE_OPTIONS.md -------------------------------------------------------------------------------- /doc/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/building.md -------------------------------------------------------------------------------- /doc/gpg_keys/xmrig.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/gpg_keys/xmrig.asc -------------------------------------------------------------------------------- /doc/releases/5_0_1/SHA256SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/releases/5_0_1/SHA256SUMS -------------------------------------------------------------------------------- /doc/releases/5_0_1/SHA256SUMS.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/releases/5_0_1/SHA256SUMS.sig -------------------------------------------------------------------------------- /doc/screenshot_v5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/screenshot_v5.png -------------------------------------------------------------------------------- /doc/topology/AMD_FX_8320_windows_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/AMD_FX_8320_windows_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/AMD_Opteron_6272_x4_N8_linux_2_0_4_LXC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/AMD_Opteron_6272_x4_N8_linux_2_0_4_LXC.xml -------------------------------------------------------------------------------- /doc/topology/AMD_Opteron_6278_x2_UMA_windows_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/AMD_Opteron_6278_x2_UMA_windows_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/AMD_Opteron_6344_x2_N4_win7_2_0_4_bug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/AMD_Opteron_6344_x2_N4_win7_2_0_4_bug.xml -------------------------------------------------------------------------------- /doc/topology/AMD_Opteron_6348_x4_N8_linux_1_11_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/AMD_Opteron_6348_x4_N8_linux_1_11_2.xml -------------------------------------------------------------------------------- /doc/topology/AMD_Opteron_6348_x4_N8_linux_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/AMD_Opteron_6348_x4_N8_linux_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/AMD_Opteron_6380_x4_N8_linux_1_11_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/AMD_Opteron_6380_x4_N8_linux_1_11_5.xml -------------------------------------------------------------------------------- /doc/topology/AMD_Ryzen_7_2700X_windows_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/AMD_Ryzen_7_2700X_windows_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/AMD_Ryzen_7_3700X_windows_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/AMD_Ryzen_7_3700X_windows_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/AMD_Ryzen_Threadripper_2950X_N2_linux_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/AMD_Ryzen_Threadripper_2950X_N2_linux_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/AMD_Ryzen_Threadripper_2950X_UMA_linux_1_11_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/AMD_Ryzen_Threadripper_2950X_UMA_linux_1_11_9.xml -------------------------------------------------------------------------------- /doc/topology/Intel_Core_i7-3770_linux_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/Intel_Core_i7-3770_linux_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/Intel_Core_i7-6700_linux_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/Intel_Core_i7-6700_linux_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/Intel_Core_i7-6700_windows_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/Intel_Core_i7-6700_windows_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/Intel_Core_i7-7660U_windows_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/Intel_Core_i7-7660U_windows_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/Intel_Xeon_E5-4650_0_x4_N4_windows_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/Intel_Xeon_E5-4650_0_x4_N4_windows_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/Intel_Xeon_E5620_x2_UMA_windows_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/Intel_Xeon_E5620_x2_UMA_windows_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/Intel_Xeon_E7-4870_x4_N4_windows_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/Intel_Xeon_E7-4870_x4_N4_windows_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/Intel_Xeon_Gold_6146_x2_UMA_linux_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/Intel_Xeon_Gold_6146_x2_UMA_linux_2_0_4.xml -------------------------------------------------------------------------------- /doc/topology/Intel_Xeon_Silver_4114_x2_N2_linux_1_11_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/Intel_Xeon_Silver_4114_x2_N2_linux_1_11_9.xml -------------------------------------------------------------------------------- /doc/topology/Intel_Xeon_Silver_4114_x2_N2_linux_2_0_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/doc/topology/Intel_Xeon_Silver_4114_x2_N2_linux_2_0_4.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/package.json -------------------------------------------------------------------------------- /res/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/res/app.ico -------------------------------------------------------------------------------- /res/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/res/app.rc -------------------------------------------------------------------------------- /scripts/benchmark_10M.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd %~dp0 3 | xlarig.exe --bench=10M --submit 4 | pause 5 | -------------------------------------------------------------------------------- /scripts/benchmark_1M.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd %~dp0 3 | xlarig.exe --bench=1M --submit 4 | pause 5 | -------------------------------------------------------------------------------- /scripts/build.hwloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/build.hwloc.sh -------------------------------------------------------------------------------- /scripts/build.libressl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/build.libressl.sh -------------------------------------------------------------------------------- /scripts/build.libressl_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/build.libressl_win.sh -------------------------------------------------------------------------------- /scripts/build.openssl3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/build.openssl3.sh -------------------------------------------------------------------------------- /scripts/build.uv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/build.uv.sh -------------------------------------------------------------------------------- /scripts/build_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/build_deps.sh -------------------------------------------------------------------------------- /scripts/enable_1gb_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/enable_1gb_pages.sh -------------------------------------------------------------------------------- /scripts/generate_cl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/generate_cl.js -------------------------------------------------------------------------------- /scripts/js/opencl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/js/opencl.js -------------------------------------------------------------------------------- /scripts/js/opencl_minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/js/opencl_minify.js -------------------------------------------------------------------------------- /scripts/pool_mine_example.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/pool_mine_example.cmd -------------------------------------------------------------------------------- /scripts/randomx_boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/randomx_boost.sh -------------------------------------------------------------------------------- /scripts/solo_mine_example.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/scripts/solo_mine_example.cmd -------------------------------------------------------------------------------- /src/3rdparty/adl/adl_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/adl/adl_defines.h -------------------------------------------------------------------------------- /src/3rdparty/adl/adl_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/adl/adl_sdk.h -------------------------------------------------------------------------------- /src/3rdparty/adl/adl_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/adl/adl_structures.h -------------------------------------------------------------------------------- /src/3rdparty/argon2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/CMakeLists.txt -------------------------------------------------------------------------------- /src/3rdparty/argon2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/LICENSE -------------------------------------------------------------------------------- /src/3rdparty/argon2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/README.md -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/generic/lib/argon2-arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/generic/lib/argon2-arch.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-arch.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-avx2.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-avx2.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-avx512f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-avx512f.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-avx512f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-avx512f.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-sse2.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-sse2.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-ssse3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-ssse3.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-ssse3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-ssse3.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-template-128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-template-128.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-xop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-xop.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/lib/argon2-xop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/lib/argon2-xop.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/src/test-feature-avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/src/test-feature-avx2.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/src/test-feature-avx512f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/src/test-feature-avx512f.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/src/test-feature-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/src/test-feature-sse2.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/src/test-feature-ssse3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/src/test-feature-ssse3.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/arch/x86_64/src/test-feature-xop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/arch/x86_64/src/test-feature-xop.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/include/argon2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/include/argon2.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/argon2-template-64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/argon2-template-64.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/argon2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/argon2.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/blake2/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/blake2/blake2-impl.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/blake2/blake2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/blake2/blake2.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/blake2/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/blake2/blake2.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/core.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/core.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/encoding.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/encoding.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/genkat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/genkat.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/genkat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/genkat.h -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/impl-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/impl-select.c -------------------------------------------------------------------------------- /src/3rdparty/argon2/lib/impl-select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/argon2/lib/impl-select.h -------------------------------------------------------------------------------- /src/3rdparty/base32/base32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/base32/base32.h -------------------------------------------------------------------------------- /src/3rdparty/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/cl.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/LICENSE.rst -------------------------------------------------------------------------------- /src/3rdparty/fmt/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/README.rst -------------------------------------------------------------------------------- /src/3rdparty/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/chrono.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/color.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/compile.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/core.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/format-inl.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/format.cc -------------------------------------------------------------------------------- /src/3rdparty/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/format.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/locale.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/os.cc -------------------------------------------------------------------------------- /src/3rdparty/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/os.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/ostream.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/posix.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/printf.h -------------------------------------------------------------------------------- /src/3rdparty/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/fmt/ranges.h -------------------------------------------------------------------------------- /src/3rdparty/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/getopt/getopt.h -------------------------------------------------------------------------------- /src/3rdparty/http-parser/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/http-parser/AUTHORS -------------------------------------------------------------------------------- /src/3rdparty/http-parser/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/http-parser/LICENSE-MIT -------------------------------------------------------------------------------- /src/3rdparty/http-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/http-parser/README.md -------------------------------------------------------------------------------- /src/3rdparty/http-parser/http_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/http-parser/http_parser.c -------------------------------------------------------------------------------- /src/3rdparty/http-parser/http_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/http-parser/http_parser.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/AUTHORS -------------------------------------------------------------------------------- /src/3rdparty/hwloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/CMakeLists.txt -------------------------------------------------------------------------------- /src/3rdparty/hwloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/COPYING -------------------------------------------------------------------------------- /src/3rdparty/hwloc/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/NEWS -------------------------------------------------------------------------------- /src/3rdparty/hwloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/README -------------------------------------------------------------------------------- /src/3rdparty/hwloc/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/VERSION -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/autogen/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/autogen/config.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/bitmap.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/cpukinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/cpukinds.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/cuda.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/cudart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/cudart.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/deprecated.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/diff.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/distances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/distances.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/export.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/gl.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/glibc-sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/glibc-sched.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/helper.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/inlines.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/intel-mic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/intel-mic.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/linux-libnuma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/linux-libnuma.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/linux.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/memattrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/memattrs.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/nvml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/nvml.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/opencl.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/openfabrics-verbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/openfabrics-verbs.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/plugins.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/rename.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/rsmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/rsmi.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/hwloc/shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/hwloc/shmem.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/private/autogen/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/private/autogen/config.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/private/components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/private/components.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/private/cpuid-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/private/cpuid-x86.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/private/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/private/debug.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/private/internal-components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/private/internal-components.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/private/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/private/misc.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/private/netloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/private/netloc.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/private/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/private/private.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/private/solaris-chiptype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/private/solaris-chiptype.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/include/private/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/include/private/xml.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/base64.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/bind.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/bitmap.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/components.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/components.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/cpukinds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/cpukinds.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/diff.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/distances.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/distances.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/memattrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/memattrs.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/misc.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/pci-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/pci-common.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/shmem.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/static-components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/static-components.h -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/topology-noos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/topology-noos.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/topology-synthetic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/topology-synthetic.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/topology-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/topology-windows.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/topology-x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/topology-x86.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/topology-xml-nolibxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/topology-xml-nolibxml.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/topology-xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/topology-xml.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/topology.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/topology.c -------------------------------------------------------------------------------- /src/3rdparty/hwloc/src/traversal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/hwloc/src/traversal.c -------------------------------------------------------------------------------- /src/3rdparty/libethash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/libethash/CMakeLists.txt -------------------------------------------------------------------------------- /src/3rdparty/libethash/data_sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/libethash/data_sizes.h -------------------------------------------------------------------------------- /src/3rdparty/libethash/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/libethash/endian.h -------------------------------------------------------------------------------- /src/3rdparty/libethash/ethash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/libethash/ethash.h -------------------------------------------------------------------------------- /src/3rdparty/libethash/ethash_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/libethash/ethash_internal.c -------------------------------------------------------------------------------- /src/3rdparty/libethash/ethash_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/libethash/ethash_internal.h -------------------------------------------------------------------------------- /src/3rdparty/libethash/fnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/libethash/fnv.h -------------------------------------------------------------------------------- /src/3rdparty/libethash/keccakf800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/libethash/keccakf800.c -------------------------------------------------------------------------------- /src/3rdparty/llhttp/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/llhttp/LICENSE-MIT -------------------------------------------------------------------------------- /src/3rdparty/llhttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/llhttp/README.md -------------------------------------------------------------------------------- /src/3rdparty/llhttp/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/llhttp/api.c -------------------------------------------------------------------------------- /src/3rdparty/llhttp/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/llhttp/api.h -------------------------------------------------------------------------------- /src/3rdparty/llhttp/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/llhttp/http.c -------------------------------------------------------------------------------- /src/3rdparty/llhttp/llhttp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/llhttp/llhttp.c -------------------------------------------------------------------------------- /src/3rdparty/llhttp/llhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/llhttp/llhttp.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/allocators.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/cursorstreamwrapper.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/document.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/encodings.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/error/en.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/error/error.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/fwd.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/license.txt -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/memorystream.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/pointer.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/reader.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/schema.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/stream.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /src/3rdparty/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/3rdparty/rapidjson/writer.h -------------------------------------------------------------------------------- /src/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/App.cpp -------------------------------------------------------------------------------- /src/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/App.h -------------------------------------------------------------------------------- /src/App_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/App_unix.cpp -------------------------------------------------------------------------------- /src/App_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/App_win.cpp -------------------------------------------------------------------------------- /src/Summary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/Summary.cpp -------------------------------------------------------------------------------- /src/Summary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/Summary.h -------------------------------------------------------------------------------- /src/backend/backend.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/backend.cmake -------------------------------------------------------------------------------- /src/backend/common/Hashrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/Hashrate.cpp -------------------------------------------------------------------------------- /src/backend/common/Hashrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/Hashrate.h -------------------------------------------------------------------------------- /src/backend/common/HashrateInterpolator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/HashrateInterpolator.cpp -------------------------------------------------------------------------------- /src/backend/common/HashrateInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/HashrateInterpolator.h -------------------------------------------------------------------------------- /src/backend/common/Tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/Tags.h -------------------------------------------------------------------------------- /src/backend/common/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/Thread.h -------------------------------------------------------------------------------- /src/backend/common/Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/Threads.cpp -------------------------------------------------------------------------------- /src/backend/common/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/Threads.h -------------------------------------------------------------------------------- /src/backend/common/Worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/Worker.cpp -------------------------------------------------------------------------------- /src/backend/common/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/Worker.h -------------------------------------------------------------------------------- /src/backend/common/WorkerJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/WorkerJob.h -------------------------------------------------------------------------------- /src/backend/common/Workers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/Workers.cpp -------------------------------------------------------------------------------- /src/backend/common/Workers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/Workers.h -------------------------------------------------------------------------------- /src/backend/common/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/common.cmake -------------------------------------------------------------------------------- /src/backend/common/interfaces/IBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/interfaces/IBackend.h -------------------------------------------------------------------------------- /src/backend/common/interfaces/IBenchListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/interfaces/IBenchListener.h -------------------------------------------------------------------------------- /src/backend/common/interfaces/IMemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/interfaces/IMemoryPool.h -------------------------------------------------------------------------------- /src/backend/common/interfaces/IRxListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/interfaces/IRxListener.h -------------------------------------------------------------------------------- /src/backend/common/interfaces/IRxStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/interfaces/IRxStorage.h -------------------------------------------------------------------------------- /src/backend/common/interfaces/IWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/interfaces/IWorker.h -------------------------------------------------------------------------------- /src/backend/common/misc/PciTopology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/common/misc/PciTopology.h -------------------------------------------------------------------------------- /src/backend/cpu/Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/Cpu.cpp -------------------------------------------------------------------------------- /src/backend/cpu/Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/Cpu.h -------------------------------------------------------------------------------- /src/backend/cpu/CpuBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuBackend.cpp -------------------------------------------------------------------------------- /src/backend/cpu/CpuBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuBackend.h -------------------------------------------------------------------------------- /src/backend/cpu/CpuConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuConfig.cpp -------------------------------------------------------------------------------- /src/backend/cpu/CpuConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuConfig.h -------------------------------------------------------------------------------- /src/backend/cpu/CpuConfig_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuConfig_gen.h -------------------------------------------------------------------------------- /src/backend/cpu/CpuLaunchData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuLaunchData.cpp -------------------------------------------------------------------------------- /src/backend/cpu/CpuLaunchData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuLaunchData.h -------------------------------------------------------------------------------- /src/backend/cpu/CpuThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuThread.cpp -------------------------------------------------------------------------------- /src/backend/cpu/CpuThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuThread.h -------------------------------------------------------------------------------- /src/backend/cpu/CpuThreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuThreads.cpp -------------------------------------------------------------------------------- /src/backend/cpu/CpuThreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuThreads.h -------------------------------------------------------------------------------- /src/backend/cpu/CpuWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuWorker.cpp -------------------------------------------------------------------------------- /src/backend/cpu/CpuWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/CpuWorker.h -------------------------------------------------------------------------------- /src/backend/cpu/cpu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/cpu.cmake -------------------------------------------------------------------------------- /src/backend/cpu/interfaces/ICpuInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/interfaces/ICpuInfo.h -------------------------------------------------------------------------------- /src/backend/cpu/platform/BasicCpuInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/platform/BasicCpuInfo.cpp -------------------------------------------------------------------------------- /src/backend/cpu/platform/BasicCpuInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/platform/BasicCpuInfo.h -------------------------------------------------------------------------------- /src/backend/cpu/platform/BasicCpuInfo_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/platform/BasicCpuInfo_arm.cpp -------------------------------------------------------------------------------- /src/backend/cpu/platform/HwlocCpuInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/platform/HwlocCpuInfo.cpp -------------------------------------------------------------------------------- /src/backend/cpu/platform/HwlocCpuInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/platform/HwlocCpuInfo.h -------------------------------------------------------------------------------- /src/backend/cpu/platform/lscpu_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/backend/cpu/platform/lscpu_arm.cpp -------------------------------------------------------------------------------- /src/base/api/Api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/api/Api.cpp -------------------------------------------------------------------------------- /src/base/api/Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/api/Api.h -------------------------------------------------------------------------------- /src/base/api/Httpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/api/Httpd.cpp -------------------------------------------------------------------------------- /src/base/api/Httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/api/Httpd.h -------------------------------------------------------------------------------- /src/base/api/interfaces/IApiListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/api/interfaces/IApiListener.h -------------------------------------------------------------------------------- /src/base/api/interfaces/IApiRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/api/interfaces/IApiRequest.h -------------------------------------------------------------------------------- /src/base/api/requests/ApiRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/api/requests/ApiRequest.cpp -------------------------------------------------------------------------------- /src/base/api/requests/ApiRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/api/requests/ApiRequest.h -------------------------------------------------------------------------------- /src/base/api/requests/HttpApiRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/api/requests/HttpApiRequest.cpp -------------------------------------------------------------------------------- /src/base/api/requests/HttpApiRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/api/requests/HttpApiRequest.h -------------------------------------------------------------------------------- /src/base/base.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/base.cmake -------------------------------------------------------------------------------- /src/base/crypto/Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/crypto/Algorithm.cpp -------------------------------------------------------------------------------- /src/base/crypto/Algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/crypto/Algorithm.h -------------------------------------------------------------------------------- /src/base/crypto/Coin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/crypto/Coin.cpp -------------------------------------------------------------------------------- /src/base/crypto/Coin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/crypto/Coin.h -------------------------------------------------------------------------------- /src/base/crypto/keccak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/crypto/keccak.cpp -------------------------------------------------------------------------------- /src/base/crypto/keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/crypto/keccak.h -------------------------------------------------------------------------------- /src/base/crypto/sha3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/crypto/sha3.cpp -------------------------------------------------------------------------------- /src/base/crypto/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/crypto/sha3.h -------------------------------------------------------------------------------- /src/base/io/Async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/Async.cpp -------------------------------------------------------------------------------- /src/base/io/Async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/Async.h -------------------------------------------------------------------------------- /src/base/io/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/Console.cpp -------------------------------------------------------------------------------- /src/base/io/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/Console.h -------------------------------------------------------------------------------- /src/base/io/Env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/Env.cpp -------------------------------------------------------------------------------- /src/base/io/Env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/Env.h -------------------------------------------------------------------------------- /src/base/io/Signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/Signals.cpp -------------------------------------------------------------------------------- /src/base/io/Signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/Signals.h -------------------------------------------------------------------------------- /src/base/io/Watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/Watcher.cpp -------------------------------------------------------------------------------- /src/base/io/Watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/Watcher.h -------------------------------------------------------------------------------- /src/base/io/json/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/json/Json.cpp -------------------------------------------------------------------------------- /src/base/io/json/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/json/Json.h -------------------------------------------------------------------------------- /src/base/io/json/JsonChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/json/JsonChain.cpp -------------------------------------------------------------------------------- /src/base/io/json/JsonChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/json/JsonChain.h -------------------------------------------------------------------------------- /src/base/io/json/JsonRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/json/JsonRequest.cpp -------------------------------------------------------------------------------- /src/base/io/json/JsonRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/json/JsonRequest.h -------------------------------------------------------------------------------- /src/base/io/json/Json_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/json/Json_unix.cpp -------------------------------------------------------------------------------- /src/base/io/json/Json_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/json/Json_win.cpp -------------------------------------------------------------------------------- /src/base/io/log/FileLogWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/FileLogWriter.cpp -------------------------------------------------------------------------------- /src/base/io/log/FileLogWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/FileLogWriter.h -------------------------------------------------------------------------------- /src/base/io/log/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/Log.cpp -------------------------------------------------------------------------------- /src/base/io/log/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/Log.h -------------------------------------------------------------------------------- /src/base/io/log/Tags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/Tags.cpp -------------------------------------------------------------------------------- /src/base/io/log/Tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/Tags.h -------------------------------------------------------------------------------- /src/base/io/log/backends/ConsoleLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/backends/ConsoleLog.cpp -------------------------------------------------------------------------------- /src/base/io/log/backends/ConsoleLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/backends/ConsoleLog.h -------------------------------------------------------------------------------- /src/base/io/log/backends/FileLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/backends/FileLog.cpp -------------------------------------------------------------------------------- /src/base/io/log/backends/FileLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/backends/FileLog.h -------------------------------------------------------------------------------- /src/base/io/log/backends/SysLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/backends/SysLog.cpp -------------------------------------------------------------------------------- /src/base/io/log/backends/SysLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/io/log/backends/SysLog.h -------------------------------------------------------------------------------- /src/base/kernel/Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Base.cpp -------------------------------------------------------------------------------- /src/base/kernel/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Base.h -------------------------------------------------------------------------------- /src/base/kernel/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Entry.cpp -------------------------------------------------------------------------------- /src/base/kernel/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Entry.h -------------------------------------------------------------------------------- /src/base/kernel/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Platform.cpp -------------------------------------------------------------------------------- /src/base/kernel/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Platform.h -------------------------------------------------------------------------------- /src/base/kernel/Platform_hwloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Platform_hwloc.cpp -------------------------------------------------------------------------------- /src/base/kernel/Platform_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Platform_mac.cpp -------------------------------------------------------------------------------- /src/base/kernel/Platform_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Platform_unix.cpp -------------------------------------------------------------------------------- /src/base/kernel/Platform_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Platform_win.cpp -------------------------------------------------------------------------------- /src/base/kernel/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Process.cpp -------------------------------------------------------------------------------- /src/base/kernel/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Process.h -------------------------------------------------------------------------------- /src/base/kernel/Process_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Process_unix.cpp -------------------------------------------------------------------------------- /src/base/kernel/Process_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/Process_win.cpp -------------------------------------------------------------------------------- /src/base/kernel/config/BaseConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/config/BaseConfig.cpp -------------------------------------------------------------------------------- /src/base/kernel/config/BaseConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/config/BaseConfig.h -------------------------------------------------------------------------------- /src/base/kernel/config/BaseTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/config/BaseTransform.cpp -------------------------------------------------------------------------------- /src/base/kernel/config/BaseTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/config/BaseTransform.h -------------------------------------------------------------------------------- /src/base/kernel/config/Title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/config/Title.cpp -------------------------------------------------------------------------------- /src/base/kernel/config/Title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/config/Title.h -------------------------------------------------------------------------------- /src/base/kernel/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/constants.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IAsyncListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IAsyncListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IBaseListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IBaseListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IClient.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IClientListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IClientListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IConfig.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IConfigListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IConfigListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IConfigTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IConfigTransform.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IConsoleListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IConsoleListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IDnsListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IDnsListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IHttpListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IHttpListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IJsonReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IJsonReader.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/ILineListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/ILineListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/ILogBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/ILogBackend.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/ISignalListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/ISignalListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IStrategy.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IStrategyListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IStrategyListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/ITcpServerListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/ITcpServerListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/ITimerListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/ITimerListener.h -------------------------------------------------------------------------------- /src/base/kernel/interfaces/IWatcherListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/kernel/interfaces/IWatcherListener.h -------------------------------------------------------------------------------- /src/base/net/dns/Dns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/dns/Dns.cpp -------------------------------------------------------------------------------- /src/base/net/dns/Dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/dns/Dns.h -------------------------------------------------------------------------------- /src/base/net/dns/DnsRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/dns/DnsRecord.cpp -------------------------------------------------------------------------------- /src/base/net/dns/DnsRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/dns/DnsRecord.h -------------------------------------------------------------------------------- /src/base/net/http/Fetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/Fetch.cpp -------------------------------------------------------------------------------- /src/base/net/http/Fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/Fetch.h -------------------------------------------------------------------------------- /src/base/net/http/Http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/Http.cpp -------------------------------------------------------------------------------- /src/base/net/http/Http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/Http.h -------------------------------------------------------------------------------- /src/base/net/http/HttpApiResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpApiResponse.cpp -------------------------------------------------------------------------------- /src/base/net/http/HttpApiResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpApiResponse.h -------------------------------------------------------------------------------- /src/base/net/http/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpClient.cpp -------------------------------------------------------------------------------- /src/base/net/http/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpClient.h -------------------------------------------------------------------------------- /src/base/net/http/HttpContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpContext.cpp -------------------------------------------------------------------------------- /src/base/net/http/HttpContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpContext.h -------------------------------------------------------------------------------- /src/base/net/http/HttpData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpData.cpp -------------------------------------------------------------------------------- /src/base/net/http/HttpData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpData.h -------------------------------------------------------------------------------- /src/base/net/http/HttpListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpListener.cpp -------------------------------------------------------------------------------- /src/base/net/http/HttpListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpListener.h -------------------------------------------------------------------------------- /src/base/net/http/HttpResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpResponse.cpp -------------------------------------------------------------------------------- /src/base/net/http/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpResponse.h -------------------------------------------------------------------------------- /src/base/net/http/HttpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpServer.cpp -------------------------------------------------------------------------------- /src/base/net/http/HttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/http/HttpServer.h -------------------------------------------------------------------------------- /src/base/net/https/HttpsClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/https/HttpsClient.cpp -------------------------------------------------------------------------------- /src/base/net/https/HttpsClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/https/HttpsClient.h -------------------------------------------------------------------------------- /src/base/net/https/HttpsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/https/HttpsContext.cpp -------------------------------------------------------------------------------- /src/base/net/https/HttpsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/https/HttpsContext.h -------------------------------------------------------------------------------- /src/base/net/https/HttpsServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/https/HttpsServer.cpp -------------------------------------------------------------------------------- /src/base/net/https/HttpsServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/https/HttpsServer.h -------------------------------------------------------------------------------- /src/base/net/stratum/AutoClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/AutoClient.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/AutoClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/AutoClient.h -------------------------------------------------------------------------------- /src/base/net/stratum/BaseClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/BaseClient.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/BaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/BaseClient.h -------------------------------------------------------------------------------- /src/base/net/stratum/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Client.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Client.h -------------------------------------------------------------------------------- /src/base/net/stratum/DaemonClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/DaemonClient.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/DaemonClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/DaemonClient.h -------------------------------------------------------------------------------- /src/base/net/stratum/EthStratumClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/EthStratumClient.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/EthStratumClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/EthStratumClient.h -------------------------------------------------------------------------------- /src/base/net/stratum/Job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Job.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/Job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Job.h -------------------------------------------------------------------------------- /src/base/net/stratum/NetworkState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/NetworkState.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/NetworkState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/NetworkState.h -------------------------------------------------------------------------------- /src/base/net/stratum/Pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Pool.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Pool.h -------------------------------------------------------------------------------- /src/base/net/stratum/Pools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Pools.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/Pools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Pools.h -------------------------------------------------------------------------------- /src/base/net/stratum/ProxyUrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/ProxyUrl.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/ProxyUrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/ProxyUrl.h -------------------------------------------------------------------------------- /src/base/net/stratum/SelfSelectClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/SelfSelectClient.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/SelfSelectClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/SelfSelectClient.h -------------------------------------------------------------------------------- /src/base/net/stratum/Socks5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Socks5.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/Socks5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Socks5.h -------------------------------------------------------------------------------- /src/base/net/stratum/SubmitResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/SubmitResult.h -------------------------------------------------------------------------------- /src/base/net/stratum/Tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Tls.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/Tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Tls.h -------------------------------------------------------------------------------- /src/base/net/stratum/Url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Url.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/Url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/Url.h -------------------------------------------------------------------------------- /src/base/net/stratum/strategies/FailoverStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/strategies/FailoverStrategy.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/strategies/FailoverStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/strategies/FailoverStrategy.h -------------------------------------------------------------------------------- /src/base/net/stratum/strategies/SinglePoolStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/strategies/SinglePoolStrategy.cpp -------------------------------------------------------------------------------- /src/base/net/stratum/strategies/SinglePoolStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/strategies/SinglePoolStrategy.h -------------------------------------------------------------------------------- /src/base/net/stratum/strategies/StrategyProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/stratum/strategies/StrategyProxy.h -------------------------------------------------------------------------------- /src/base/net/tls/ServerTls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tls/ServerTls.cpp -------------------------------------------------------------------------------- /src/base/net/tls/ServerTls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tls/ServerTls.h -------------------------------------------------------------------------------- /src/base/net/tls/TlsConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tls/TlsConfig.cpp -------------------------------------------------------------------------------- /src/base/net/tls/TlsConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tls/TlsConfig.h -------------------------------------------------------------------------------- /src/base/net/tls/TlsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tls/TlsContext.cpp -------------------------------------------------------------------------------- /src/base/net/tls/TlsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tls/TlsContext.h -------------------------------------------------------------------------------- /src/base/net/tls/TlsGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tls/TlsGen.cpp -------------------------------------------------------------------------------- /src/base/net/tls/TlsGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tls/TlsGen.h -------------------------------------------------------------------------------- /src/base/net/tools/LineReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tools/LineReader.cpp -------------------------------------------------------------------------------- /src/base/net/tools/LineReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tools/LineReader.h -------------------------------------------------------------------------------- /src/base/net/tools/MemPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tools/MemPool.h -------------------------------------------------------------------------------- /src/base/net/tools/NetBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tools/NetBuffer.cpp -------------------------------------------------------------------------------- /src/base/net/tools/NetBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tools/NetBuffer.h -------------------------------------------------------------------------------- /src/base/net/tools/Storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tools/Storage.h -------------------------------------------------------------------------------- /src/base/net/tools/TcpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tools/TcpServer.cpp -------------------------------------------------------------------------------- /src/base/net/tools/TcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/net/tools/TcpServer.h -------------------------------------------------------------------------------- /src/base/tools/Arguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/Arguments.cpp -------------------------------------------------------------------------------- /src/base/tools/Arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/Arguments.h -------------------------------------------------------------------------------- /src/base/tools/Baton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/Baton.h -------------------------------------------------------------------------------- /src/base/tools/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/Buffer.h -------------------------------------------------------------------------------- /src/base/tools/Chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/Chrono.h -------------------------------------------------------------------------------- /src/base/tools/Cvt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/Cvt.cpp -------------------------------------------------------------------------------- /src/base/tools/Cvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/Cvt.h -------------------------------------------------------------------------------- /src/base/tools/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/Handle.h -------------------------------------------------------------------------------- /src/base/tools/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/Object.h -------------------------------------------------------------------------------- /src/base/tools/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/String.cpp -------------------------------------------------------------------------------- /src/base/tools/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/String.h -------------------------------------------------------------------------------- /src/base/tools/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/Timer.cpp -------------------------------------------------------------------------------- /src/base/tools/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/base/tools/Timer.h -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/config.json -------------------------------------------------------------------------------- /src/core/Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/core/Controller.cpp -------------------------------------------------------------------------------- /src/core/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/core/Controller.h -------------------------------------------------------------------------------- /src/core/Miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/core/Miner.cpp -------------------------------------------------------------------------------- /src/core/Miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/core/Miner.h -------------------------------------------------------------------------------- /src/core/config/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/core/config/Config.cpp -------------------------------------------------------------------------------- /src/core/config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/core/config/Config.h -------------------------------------------------------------------------------- /src/core/config/ConfigTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/core/config/ConfigTransform.cpp -------------------------------------------------------------------------------- /src/core/config/ConfigTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/core/config/ConfigTransform.h -------------------------------------------------------------------------------- /src/core/config/Config_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/core/config/Config_default.h -------------------------------------------------------------------------------- /src/core/config/Config_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/core/config/Config_platform.h -------------------------------------------------------------------------------- /src/core/config/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/core/config/usage.h -------------------------------------------------------------------------------- /src/crypto/argon2/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/argon2/Hash.h -------------------------------------------------------------------------------- /src/crypto/argon2/Impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/argon2/Impl.cpp -------------------------------------------------------------------------------- /src/crypto/argon2/Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/argon2/Impl.h -------------------------------------------------------------------------------- /src/crypto/astrobwt/AstroBWT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/AstroBWT.cpp -------------------------------------------------------------------------------- /src/crypto/astrobwt/AstroBWT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/AstroBWT.h -------------------------------------------------------------------------------- /src/crypto/astrobwt/Salsa20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/Salsa20.cpp -------------------------------------------------------------------------------- /src/crypto/astrobwt/Salsa20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/Salsa20.hpp -------------------------------------------------------------------------------- /src/crypto/astrobwt/salsa20_ref/ecrypt-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/salsa20_ref/ecrypt-config.h -------------------------------------------------------------------------------- /src/crypto/astrobwt/salsa20_ref/ecrypt-machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/salsa20_ref/ecrypt-machine.h -------------------------------------------------------------------------------- /src/crypto/astrobwt/salsa20_ref/ecrypt-portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/salsa20_ref/ecrypt-portable.h -------------------------------------------------------------------------------- /src/crypto/astrobwt/salsa20_ref/ecrypt-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/salsa20_ref/ecrypt-sync.h -------------------------------------------------------------------------------- /src/crypto/astrobwt/salsa20_ref/salsa20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/salsa20_ref/salsa20.c -------------------------------------------------------------------------------- /src/crypto/astrobwt/sha3_256_avx2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/sha3_256_avx2.S -------------------------------------------------------------------------------- /src/crypto/astrobwt/sha3_256_avx2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/sha3_256_avx2.asm -------------------------------------------------------------------------------- /src/crypto/astrobwt/sha3_256_avx2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/sha3_256_avx2.inc -------------------------------------------------------------------------------- /src/crypto/astrobwt/sha3_256_keccakf1600_avx2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/astrobwt/sha3_256_keccakf1600_avx2.inc -------------------------------------------------------------------------------- /src/crypto/cn/CnAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/CnAlgo.h -------------------------------------------------------------------------------- /src/crypto/cn/CnCtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/CnCtx.cpp -------------------------------------------------------------------------------- /src/crypto/cn/CnCtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/CnCtx.h -------------------------------------------------------------------------------- /src/crypto/cn/CnHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/CnHash.cpp -------------------------------------------------------------------------------- /src/crypto/cn/CnHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/CnHash.h -------------------------------------------------------------------------------- /src/crypto/cn/CryptoNight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/CryptoNight.h -------------------------------------------------------------------------------- /src/crypto/cn/CryptoNight_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/CryptoNight_arm.h -------------------------------------------------------------------------------- /src/crypto/cn/CryptoNight_monero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/CryptoNight_monero.h -------------------------------------------------------------------------------- /src/crypto/cn/CryptoNight_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/CryptoNight_test.h -------------------------------------------------------------------------------- /src/crypto/cn/CryptoNight_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/CryptoNight_x86.h -------------------------------------------------------------------------------- /src/crypto/cn/asm/CryptonightR_soft_aes_template.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/CryptonightR_soft_aes_template.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/CryptonightR_soft_aes_template_win.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/CryptonightR_soft_aes_template_win.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/CryptonightR_template.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/CryptonightR_template.S -------------------------------------------------------------------------------- /src/crypto/cn/asm/CryptonightR_template.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/CryptonightR_template.asm -------------------------------------------------------------------------------- /src/crypto/cn/asm/CryptonightR_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/CryptonightR_template.h -------------------------------------------------------------------------------- /src/crypto/cn/asm/CryptonightR_template.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/CryptonightR_template.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/CryptonightR_template_win.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/CryptonightR_template_win.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/cn2/cnv2_double_main_loop_sandybridge.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/cn2/cnv2_double_main_loop_sandybridge.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/cn2/cnv2_main_loop_bulldozer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/cn2/cnv2_main_loop_bulldozer.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/cn2/cnv2_main_loop_ivybridge.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/cn2/cnv2_main_loop_ivybridge.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/cn2/cnv2_main_loop_ryzen.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/cn2/cnv2_main_loop_ryzen.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/cn2/cnv2_rwz_double_main_loop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/cn2/cnv2_rwz_double_main_loop.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/cn2/cnv2_rwz_main_loop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/cn2/cnv2_rwz_main_loop.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/cn_main_loop.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/cn_main_loop.S -------------------------------------------------------------------------------- /src/crypto/cn/asm/cn_main_loop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/cn_main_loop.asm -------------------------------------------------------------------------------- /src/crypto/cn/asm/win64/CryptonightR_soft_aes_template_win.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/win64/CryptonightR_soft_aes_template_win.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/win64/CryptonightR_template.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/win64/CryptonightR_template.asm -------------------------------------------------------------------------------- /src/crypto/cn/asm/win64/CryptonightR_template_win.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/win64/CryptonightR_template_win.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/win64/cn2/cnv2_double_main_loop_sandybridge.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/win64/cn2/cnv2_double_main_loop_sandybridge.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/win64/cn2/cnv2_main_loop_bulldozer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/win64/cn2/cnv2_main_loop_bulldozer.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/win64/cn2/cnv2_main_loop_ivybridge.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/win64/cn2/cnv2_main_loop_ivybridge.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/win64/cn2/cnv2_main_loop_ryzen.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/win64/cn2/cnv2_main_loop_ryzen.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/win64/cn2/cnv2_rwz_double_main_loop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/win64/cn2/cnv2_rwz_double_main_loop.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/win64/cn2/cnv2_rwz_main_loop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/win64/cn2/cnv2_rwz_main_loop.inc -------------------------------------------------------------------------------- /src/crypto/cn/asm/win64/cn_main_loop.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/win64/cn_main_loop.S -------------------------------------------------------------------------------- /src/crypto/cn/asm/win64/cn_main_loop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/asm/win64/cn_main_loop.asm -------------------------------------------------------------------------------- /src/crypto/cn/c_blake256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/c_blake256.c -------------------------------------------------------------------------------- /src/crypto/cn/c_blake256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/c_blake256.h -------------------------------------------------------------------------------- /src/crypto/cn/c_groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/c_groestl.c -------------------------------------------------------------------------------- /src/crypto/cn/c_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/c_groestl.h -------------------------------------------------------------------------------- /src/crypto/cn/c_jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/c_jh.c -------------------------------------------------------------------------------- /src/crypto/cn/c_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/c_jh.h -------------------------------------------------------------------------------- /src/crypto/cn/c_skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/c_skein.c -------------------------------------------------------------------------------- /src/crypto/cn/c_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/c_skein.h -------------------------------------------------------------------------------- /src/crypto/cn/groestl_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/groestl_tables.h -------------------------------------------------------------------------------- /src/crypto/cn/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/hash.h -------------------------------------------------------------------------------- /src/crypto/cn/r/CryptonightR_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/r/CryptonightR_gen.cpp -------------------------------------------------------------------------------- /src/crypto/cn/r/variant4_random_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/r/variant4_random_math.h -------------------------------------------------------------------------------- /src/crypto/cn/skein_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/skein_port.h -------------------------------------------------------------------------------- /src/crypto/cn/soft_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/soft_aes.h -------------------------------------------------------------------------------- /src/crypto/cn/sse2neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/cn/sse2neon.h -------------------------------------------------------------------------------- /src/crypto/common/Assembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/Assembly.cpp -------------------------------------------------------------------------------- /src/crypto/common/Assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/Assembly.h -------------------------------------------------------------------------------- /src/crypto/common/HugePagesInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/HugePagesInfo.cpp -------------------------------------------------------------------------------- /src/crypto/common/HugePagesInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/HugePagesInfo.h -------------------------------------------------------------------------------- /src/crypto/common/LinuxMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/LinuxMemory.cpp -------------------------------------------------------------------------------- /src/crypto/common/LinuxMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/LinuxMemory.h -------------------------------------------------------------------------------- /src/crypto/common/MemoryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/MemoryPool.cpp -------------------------------------------------------------------------------- /src/crypto/common/MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/MemoryPool.h -------------------------------------------------------------------------------- /src/crypto/common/NUMAMemoryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/NUMAMemoryPool.cpp -------------------------------------------------------------------------------- /src/crypto/common/NUMAMemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/NUMAMemoryPool.h -------------------------------------------------------------------------------- /src/crypto/common/Nonce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/Nonce.cpp -------------------------------------------------------------------------------- /src/crypto/common/Nonce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/Nonce.h -------------------------------------------------------------------------------- /src/crypto/common/VirtualMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/VirtualMemory.cpp -------------------------------------------------------------------------------- /src/crypto/common/VirtualMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/VirtualMemory.h -------------------------------------------------------------------------------- /src/crypto/common/VirtualMemory_hwloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/VirtualMemory_hwloc.cpp -------------------------------------------------------------------------------- /src/crypto/common/VirtualMemory_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/VirtualMemory_unix.cpp -------------------------------------------------------------------------------- /src/crypto/common/VirtualMemory_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/VirtualMemory_win.cpp -------------------------------------------------------------------------------- /src/crypto/common/portable/mm_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/common/portable/mm_malloc.h -------------------------------------------------------------------------------- /src/crypto/kawpow/KPCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/kawpow/KPCache.cpp -------------------------------------------------------------------------------- /src/crypto/kawpow/KPCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/kawpow/KPCache.h -------------------------------------------------------------------------------- /src/crypto/kawpow/KPHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/kawpow/KPHash.cpp -------------------------------------------------------------------------------- /src/crypto/kawpow/KPHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/kawpow/KPHash.h -------------------------------------------------------------------------------- /src/crypto/randomx/aes_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/aes_hash.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/aes_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/aes_hash.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/allocator.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/allocator.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_epilogue_linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_epilogue_linux.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_epilogue_store.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_epilogue_store.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_epilogue_win64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_epilogue_win64.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_loop_load.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_loop_load.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_loop_load_xop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_loop_load_xop.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_loop_store.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_loop_store.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_prologue_linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_prologue_linux.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_prologue_win64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_prologue_win64.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_read_dataset.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_read_dataset.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_read_dataset_ryzen.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_read_dataset_ryzen.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_read_dataset_sshash_fin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_read_dataset_sshash_fin.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_read_dataset_sshash_init.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_read_dataset_sshash_init.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_sshash_avx2_constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_sshash_avx2_constants.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_sshash_avx2_epilogue.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_sshash_avx2_epilogue.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_sshash_avx2_loop_begin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_sshash_avx2_loop_begin.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_sshash_avx2_loop_end.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_sshash_avx2_loop_end.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_sshash_avx2_save_registers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_sshash_avx2_save_registers.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_sshash_avx2_ssh_load.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_sshash_avx2_ssh_load.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_sshash_avx2_ssh_prefetch.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_sshash_avx2_ssh_prefetch.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_sshash_constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_sshash_constants.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_sshash_load.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_sshash_load.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_sshash_prefetch.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_sshash_prefetch.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/program_xmm_constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/program_xmm_constants.inc -------------------------------------------------------------------------------- /src/crypto/randomx/asm/randomx_reciprocal.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/asm/randomx_reciprocal.inc -------------------------------------------------------------------------------- /src/crypto/randomx/blake2/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/blake2/blake2-impl.h -------------------------------------------------------------------------------- /src/crypto/randomx/blake2/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/blake2/blake2.h -------------------------------------------------------------------------------- /src/crypto/randomx/blake2/blake2b-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/blake2/blake2b-round.h -------------------------------------------------------------------------------- /src/crypto/randomx/blake2/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/blake2/blake2b.c -------------------------------------------------------------------------------- /src/crypto/randomx/blake2/blake2b_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/blake2/blake2b_sse41.c -------------------------------------------------------------------------------- /src/crypto/randomx/blake2/blamka-round-ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/blake2/blamka-round-ref.h -------------------------------------------------------------------------------- /src/crypto/randomx/blake2/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/blake2/endian.h -------------------------------------------------------------------------------- /src/crypto/randomx/blake2_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/blake2_generator.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/blake2_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/blake2_generator.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/bytecode_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/bytecode_machine.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/bytecode_machine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/bytecode_machine.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/common.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/configuration.h -------------------------------------------------------------------------------- /src/crypto/randomx/dataset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/dataset.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/dataset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/dataset.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/instruction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/instruction.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/instructions_portable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/instructions_portable.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/intrin_portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/intrin_portable.h -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler_a64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler_a64.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler_a64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler_a64.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler_a64_static.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler_a64_static.S -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler_a64_static.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler_a64_static.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler_fallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler_fallback.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler_fallback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler_fallback.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler_x86.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler_x86.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler_x86_static.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler_x86_static.S -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler_x86_static.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler_x86_static.asm -------------------------------------------------------------------------------- /src/crypto/randomx/jit_compiler_x86_static.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/jit_compiler_x86_static.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/KangarooTwelve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/KangarooTwelve.c -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/KangarooTwelve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/KangarooTwelve.h -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/KeccakP-1600-reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/KeccakP-1600-reference.c -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/KeccakSponge-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/KeccakSponge-common.h -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/KeccakSponge.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/KeccakSponge.inc -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/KeccakSpongeWidth1600.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/KeccakSpongeWidth1600.c -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/KeccakSpongeWidth1600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/KeccakSpongeWidth1600.h -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/Phases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/Phases.h -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/align.h -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/brg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/brg_endian.h -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/insecure_memzero.h: -------------------------------------------------------------------------------- 1 | #define insecure_memzero(buf, len) /* empty */ 2 | -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/sha256.c -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/sha256.h -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/sysendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/sysendian.h -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/yespower-opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/yespower-opt.c -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/yespower-platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/yespower-platform.c -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/yespower-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/yespower-ref.c -------------------------------------------------------------------------------- /src/crypto/randomx/panthera/yespower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/panthera/yespower.h -------------------------------------------------------------------------------- /src/crypto/randomx/program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/program.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/randomx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/randomx.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/randomx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/randomx.h -------------------------------------------------------------------------------- /src/crypto/randomx/reciprocal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/reciprocal.c -------------------------------------------------------------------------------- /src/crypto/randomx/reciprocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/reciprocal.h -------------------------------------------------------------------------------- /src/crypto/randomx/soft_aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/soft_aes.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/soft_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/soft_aes.h -------------------------------------------------------------------------------- /src/crypto/randomx/superscalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/superscalar.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/superscalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/superscalar.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/superscalar_program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/superscalar_program.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/virtual_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/virtual_machine.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/virtual_machine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/virtual_machine.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/virtual_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/virtual_memory.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/virtual_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/virtual_memory.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/vm_compiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/vm_compiled.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/vm_compiled.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/vm_compiled.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/vm_compiled_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/vm_compiled_light.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/vm_compiled_light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/vm_compiled_light.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/vm_interpreted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/vm_interpreted.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/vm_interpreted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/vm_interpreted.hpp -------------------------------------------------------------------------------- /src/crypto/randomx/vm_interpreted_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/vm_interpreted_light.cpp -------------------------------------------------------------------------------- /src/crypto/randomx/vm_interpreted_light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/randomx/vm_interpreted_light.hpp -------------------------------------------------------------------------------- /src/crypto/rx/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/Profiler.cpp -------------------------------------------------------------------------------- /src/crypto/rx/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/Profiler.h -------------------------------------------------------------------------------- /src/crypto/rx/Rx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/Rx.cpp -------------------------------------------------------------------------------- /src/crypto/rx/Rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/Rx.h -------------------------------------------------------------------------------- /src/crypto/rx/RxAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxAlgo.cpp -------------------------------------------------------------------------------- /src/crypto/rx/RxAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxAlgo.h -------------------------------------------------------------------------------- /src/crypto/rx/RxBasicStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxBasicStorage.cpp -------------------------------------------------------------------------------- /src/crypto/rx/RxBasicStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxBasicStorage.h -------------------------------------------------------------------------------- /src/crypto/rx/RxCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxCache.cpp -------------------------------------------------------------------------------- /src/crypto/rx/RxCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxCache.h -------------------------------------------------------------------------------- /src/crypto/rx/RxConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxConfig.cpp -------------------------------------------------------------------------------- /src/crypto/rx/RxConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxConfig.h -------------------------------------------------------------------------------- /src/crypto/rx/RxDataset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxDataset.cpp -------------------------------------------------------------------------------- /src/crypto/rx/RxDataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxDataset.h -------------------------------------------------------------------------------- /src/crypto/rx/RxFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxFix.h -------------------------------------------------------------------------------- /src/crypto/rx/RxFix_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxFix_linux.cpp -------------------------------------------------------------------------------- /src/crypto/rx/RxFix_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxFix_win.cpp -------------------------------------------------------------------------------- /src/crypto/rx/RxMsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxMsr.cpp -------------------------------------------------------------------------------- /src/crypto/rx/RxMsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxMsr.h -------------------------------------------------------------------------------- /src/crypto/rx/RxNUMAStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxNUMAStorage.cpp -------------------------------------------------------------------------------- /src/crypto/rx/RxNUMAStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxNUMAStorage.h -------------------------------------------------------------------------------- /src/crypto/rx/RxQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxQueue.cpp -------------------------------------------------------------------------------- /src/crypto/rx/RxQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxQueue.h -------------------------------------------------------------------------------- /src/crypto/rx/RxSeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxSeed.h -------------------------------------------------------------------------------- /src/crypto/rx/RxVm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxVm.cpp -------------------------------------------------------------------------------- /src/crypto/rx/RxVm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/crypto/rx/RxVm.h -------------------------------------------------------------------------------- /src/donate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/donate.h -------------------------------------------------------------------------------- /src/hw/api/HwApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/api/HwApi.cpp -------------------------------------------------------------------------------- /src/hw/api/HwApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/api/HwApi.h -------------------------------------------------------------------------------- /src/hw/api/api.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/api/api.cmake -------------------------------------------------------------------------------- /src/hw/dmi/DmiBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/DmiBoard.cpp -------------------------------------------------------------------------------- /src/hw/dmi/DmiBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/DmiBoard.h -------------------------------------------------------------------------------- /src/hw/dmi/DmiMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/DmiMemory.cpp -------------------------------------------------------------------------------- /src/hw/dmi/DmiMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/DmiMemory.h -------------------------------------------------------------------------------- /src/hw/dmi/DmiReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/DmiReader.cpp -------------------------------------------------------------------------------- /src/hw/dmi/DmiReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/DmiReader.h -------------------------------------------------------------------------------- /src/hw/dmi/DmiReader_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/DmiReader_mac.cpp -------------------------------------------------------------------------------- /src/hw/dmi/DmiReader_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/DmiReader_unix.cpp -------------------------------------------------------------------------------- /src/hw/dmi/DmiReader_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/DmiReader_win.cpp -------------------------------------------------------------------------------- /src/hw/dmi/DmiTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/DmiTools.cpp -------------------------------------------------------------------------------- /src/hw/dmi/DmiTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/DmiTools.h -------------------------------------------------------------------------------- /src/hw/dmi/dmi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/dmi/dmi.cmake -------------------------------------------------------------------------------- /src/hw/msr/Msr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/msr/Msr.cpp -------------------------------------------------------------------------------- /src/hw/msr/Msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/msr/Msr.h -------------------------------------------------------------------------------- /src/hw/msr/MsrItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/msr/MsrItem.cpp -------------------------------------------------------------------------------- /src/hw/msr/MsrItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/msr/MsrItem.h -------------------------------------------------------------------------------- /src/hw/msr/Msr_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/msr/Msr_linux.cpp -------------------------------------------------------------------------------- /src/hw/msr/Msr_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/hw/msr/Msr_win.cpp -------------------------------------------------------------------------------- /src/net/JobResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/net/JobResult.h -------------------------------------------------------------------------------- /src/net/JobResults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/net/JobResults.cpp -------------------------------------------------------------------------------- /src/net/JobResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/net/JobResults.h -------------------------------------------------------------------------------- /src/net/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/net/Network.cpp -------------------------------------------------------------------------------- /src/net/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/net/Network.h -------------------------------------------------------------------------------- /src/net/interfaces/IJobResultListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/net/interfaces/IJobResultListener.h -------------------------------------------------------------------------------- /src/net/strategies/DonateStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/net/strategies/DonateStrategy.cpp -------------------------------------------------------------------------------- /src/net/strategies/DonateStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/net/strategies/DonateStrategy.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/version.h -------------------------------------------------------------------------------- /src/xlarig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scala-network/XLArig/HEAD/src/xlarig.cpp --------------------------------------------------------------------------------