id
int64
0
755k
file_name
stringlengths
3
109
file_path
stringlengths
13
185
content
stringlengths
31
9.38M
size
int64
31
9.38M
language
stringclasses
1 value
extension
stringclasses
11 values
total_lines
int64
1
340k
avg_line_length
float64
2.18
149k
max_line_length
int64
7
2.22M
alphanum_fraction
float64
0
1
repo_name
stringlengths
6
65
repo_stars
int64
100
47.3k
repo_forks
int64
0
12k
repo_open_issues
int64
0
3.4k
repo_license
stringclasses
9 values
repo_extraction_date
stringclasses
92 values
exact_duplicates_redpajama
bool
2 classes
near_duplicates_redpajama
bool
2 classes
exact_duplicates_githubcode
bool
2 classes
exact_duplicates_stackv2
bool
1 class
exact_duplicates_stackv1
bool
2 classes
near_duplicates_githubcode
bool
2 classes
near_duplicates_stackv1
bool
2 classes
near_duplicates_stackv2
bool
1 class
6,220
NullPadHandler.h
RPCS3_rpcs3/rpcs3/Emu/Io/Null/NullPadHandler.h
#pragma once #include "Emu/Io/PadHandler.h" class NullPadHandler final : public PadHandlerBase { public: NullPadHandler() : PadHandlerBase(pad_handler::null) { b_has_pressure_intensity_button = false; } bool Init() override { return true; } void init_config(cfg_pad* cfg) override { if (!cfg) return; ...
1,426
C++
.h
61
20.704918
60
0.583026
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,221
NullKeyboardHandler.h
RPCS3_rpcs3/rpcs3/Emu/Io/Null/NullKeyboardHandler.h
#pragma once #include "Emu/Io/KeyboardHandler.h" class NullKeyboardHandler final : public KeyboardHandlerBase { using KeyboardHandlerBase::KeyboardHandlerBase; public: void Init(keyboard_consumer& consumer, const u32 max_connect) override { KbInfo& info = consumer.GetInfo(); std::vector<Keyboard>& keyboards =...
539
C++
.h
20
24.5
71
0.739806
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,222
NullMouseHandler.h
RPCS3_rpcs3/rpcs3/Emu/Io/Null/NullMouseHandler.h
#pragma once #include "Emu/Io/MouseHandler.h" class NullMouseHandler final : public MouseHandlerBase { using MouseHandlerBase::MouseHandlerBase; public: void Init(const u32 max_connect) override { m_info = {}; m_info.max_connect = max_connect; m_info.is_null_handler = true; m_mice.clear(); } };
311
C++
.h
14
20.142857
54
0.755102
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,223
null_camera_handler.h
RPCS3_rpcs3/rpcs3/Emu/Io/Null/null_camera_handler.h
#pragma once #include "Emu/Io/camera_handler_base.h" class null_camera_handler final : public camera_handler_base { public: null_camera_handler() : camera_handler_base() {} void open_camera() override { m_state = camera_handler_state::open; } void close_camera() override { m_state = camera_handler_state::closed; ...
1,107
C++
.h
41
24.634146
128
0.710501
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,224
audio_device_enumerator.h
RPCS3_rpcs3/rpcs3/Emu/Audio/audio_device_enumerator.h
#pragma once #include "util/types.hpp" #include <vector> #include <string> class audio_device_enumerator { public: static constexpr std::string_view DEFAULT_DEV_ID = "@@@default@@@"; struct audio_device { std::string id{}; std::string name{}; usz max_ch{}; }; audio_device_enumerator() {}; virtual ~aud...
459
C++
.h
19
22.052632
68
0.725173
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,225
AudioBackend.h
RPCS3_rpcs3/rpcs3/Emu/Audio/AudioBackend.h
#pragma once #include "util/types.hpp" #include "util/logs.hpp" #include "Utilities/mutex.h" #include "Utilities/StrFmt.h" #include "Emu/system_config_types.h" #include <numbers> enum : u32 { DEFAULT_AUDIO_SAMPLING_RATE = 48000, MAX_AUDIO_BUFFERS = 64, AUDIO_BUFFER_SAMPLES = 256, AUDIO_MAX_CHANNELS = 8, }; enum ...
12,637
C++
.h
334
34.254491
146
0.700588
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,226
AudioDumper.h
RPCS3_rpcs3/rpcs3/Emu/Audio/AudioDumper.h
#pragma once #include "util/types.hpp" #include "Utilities/File.h" #include "Emu/Audio/AudioBackend.h" struct WAVHeader { struct RIFFHeader { u8 ID[4] = { 'R', 'I', 'F', 'F' }; le_t<u32> Size{}; // FileSize - 8 u8 WAVE[4] = { 'W', 'A', 'V', 'E' }; RIFFHeader() = default; RIFFHeader(u32 size) : Size(s...
2,183
C++
.h
73
27.191781
83
0.666985
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,227
audio_resampler.h
RPCS3_rpcs3/rpcs3/Emu/Audio/audio_resampler.h
#pragma once #include "util/types.hpp" #include "Emu/Audio/AudioBackend.h" #ifndef _MSC_VER #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wsuggest-override" #pragma GCC diagnostic ignored "-Wold-style-cast" #endif #include "SoundTouch.h" #ifndef _MSC_VER #pragma GCC diagnostic pop #endif constexpr f64...
815
C++
.h
29
26.448276
77
0.765766
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,228
NullAudioBackend.h
RPCS3_rpcs3/rpcs3/Emu/Audio/Null/NullAudioBackend.h
#pragma once #include "Emu/Audio/AudioBackend.h" class NullAudioBackend final : public AudioBackend { public: NullAudioBackend() {} ~NullAudioBackend() {} std::string_view GetName() const override { return "Null"sv; } bool Open(std::string_view /* dev_id */, AudioFreq /* freq */, AudioSampleSize /* sample_size ...
707
C++
.h
21
31.571429
170
0.709867
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,229
null_enumerator.h
RPCS3_rpcs3/rpcs3/Emu/Audio/Null/null_enumerator.h
#pragma once #include "Emu/Audio/audio_device_enumerator.h" class null_enumerator final : public audio_device_enumerator { public: null_enumerator() {}; ~null_enumerator() override {}; std::vector<audio_device> get_output_devices() override { return {}; } };
266
C++
.h
9
27.777778
71
0.750988
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,230
CubebBackend.h
RPCS3_rpcs3/rpcs3/Emu/Audio/Cubeb/CubebBackend.h
#pragma once #include <memory> #include "Utilities/mutex.h" #include "util/atomic.hpp" #include "Emu/Audio/AudioBackend.h" #include "cubeb/cubeb.h" class CubebBackend final : public AudioBackend { public: CubebBackend(); ~CubebBackend() override; CubebBackend(const CubebBackend&) = delete; CubebBackend& operato...
1,787
C++
.h
48
35.0625
143
0.761185
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,231
cubeb_enumerator.h
RPCS3_rpcs3/rpcs3/Emu/Audio/Cubeb/cubeb_enumerator.h
#pragma once #include "Emu/Audio/audio_device_enumerator.h" #include "cubeb/cubeb.h" class cubeb_enumerator final : public audio_device_enumerator { public: cubeb_enumerator(); ~cubeb_enumerator() override; std::vector<audio_device> get_output_devices() override; private: cubeb* ctx{}; #ifdef _WIN32 bool co...
354
C++
.h
15
21.8
61
0.777108
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,232
XAudio2Backend.h
RPCS3_rpcs3/rpcs3/Emu/Audio/XAudio2/XAudio2Backend.h
#pragma once #ifndef _WIN32 #error "XAudio2 can only be built on Windows." #endif #include <memory> #include "Utilities/mutex.h" #include "Emu/Audio/AudioBackend.h" #include <initguid.h> #include <xaudio2.h> #include <wrl/client.h> #include <MMDeviceAPI.h> class XAudio2Backend final : public AudioBackend, public IX...
2,929
C++
.h
63
44.428571
143
0.773717
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,233
xaudio2_enumerator.h
RPCS3_rpcs3/rpcs3/Emu/Audio/XAudio2/xaudio2_enumerator.h
#pragma once #ifndef _WIN32 #error "XAudio2 can only be built on Windows." #endif #include "Emu/Audio/audio_device_enumerator.h" class xaudio2_enumerator final : public audio_device_enumerator { public: xaudio2_enumerator(); ~xaudio2_enumerator() override; std::vector<audio_device> get_output_devices() override...
325
C++
.h
12
25.416667
63
0.792208
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,234
faudio_enumerator.h
RPCS3_rpcs3/rpcs3/Emu/Audio/FAudio/faudio_enumerator.h
#pragma once #ifndef HAVE_FAUDIO #error "FAudio support disabled but still being built." #endif #include "Emu/Audio/audio_device_enumerator.h" #include "FAudio.h" class faudio_enumerator final : public audio_device_enumerator { public: faudio_enumerator(); ~faudio_enumerator() override; std::vector<audio_device...
388
C++
.h
15
24.133333
62
0.79235
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,235
FAudioBackend.h
RPCS3_rpcs3/rpcs3/Emu/Audio/FAudio/FAudioBackend.h
#pragma once #ifndef HAVE_FAUDIO #error "FAudio support disabled but still being built." #endif #include <memory> #include "Utilities/mutex.h" #include "Emu/Audio/AudioBackend.h" #include "FAudio.h" class FAudioBackend final : public AudioBackend, public FAudioVoiceCallback, public FAudioEngineCallback { public: F...
1,437
C++
.h
37
36.72973
143
0.787419
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,236
upnp_config.h
RPCS3_rpcs3/rpcs3/Emu/NP/upnp_config.h
#pragma once #include "Utilities/Config.h" struct cfg_upnp : cfg::node { cfg::string device_url{this, "DeviceUrl", ""}; void load(); void save() const; std::string get_device_url() const; void set_device_url(std::string_view url); private: static std::string get_path(); };
286
C++
.h
12
21.833333
47
0.716418
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,237
fb_helpers.h
RPCS3_rpcs3/rpcs3/Emu/NP/fb_helpers.h
#pragma once namespace np { void BinAttr_to_SceNpMatching2BinAttr(event_data& edata, const BinAttr* bin_attr, SceNpMatching2BinAttr* binattr_info); void BinAttrs_to_SceNpMatching2BinAttrs(event_data& edata, const flatbuffers::Vector<flatbuffers::Offset<BinAttr>>* fb_attr, SceNpMatching2BinAttr* binattr_info); void ...
4,256
C++
.h
28
150.107143
284
0.862314
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,238
np_cache.h
RPCS3_rpcs3/rpcs3/Emu/NP/np_cache.h
#pragma once #include <map> #include <optional> #include "Utilities/mutex.h" #include "Emu/Cell/Modules/sceNp.h" #include "Emu/Cell/Modules/sceNp2.h" namespace np { struct userinfo_cache { SceNpId npId{}; std::optional<SceNpOnlineName> onlineName; std::optional<SceNpAvatarUrl> avatarUrl; }; struct member...
2,763
C++
.h
67
38.537313
292
0.799104
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,239
rpcn_config.h
RPCS3_rpcs3/rpcs3/Emu/NP/rpcn_config.h
#pragma once #include "Utilities/Config.h" struct cfg_rpcn : cfg::node { cfg::uint32 version{this, "Version", 1}; cfg::string host{this, "Host", "np.rpcs3.net"}; cfg::string npid{this, "NPID", ""}; cfg::string password{this, "Password", ""}; cfg::string token{this, "Token", ""}; cfg::string hosts{this, "Hosts",...
1,246
C++
.h
29
40.965517
110
0.719008
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,240
rpcn_client.h
RPCS3_rpcs3/rpcs3/Emu/NP/rpcn_client.h
#pragma once #include <unordered_map> #include <chrono> #include <thread> #include <semaphore> #include "Utilities/mutex.h" #include "Emu/localized_string.h" #include "util/asm.hpp" #ifdef _WIN32 #include <winsock2.h> #else #ifdef __clang__ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wold-style-cast...
24,190
C++
.h
529
42.812854
247
0.736277
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,241
np_dnshook.h
RPCS3_rpcs3/rpcs3/Emu/NP/np_dnshook.h
#pragma once #include <unordered_map> #include <queue> #include <vector> #include <optional> #include "util/types.hpp" #include "Utilities/mutex.h" namespace np { class dnshook { public: dnshook(); void add_dns_spy(u32 sock); void remove_dns_spy(u32 sock); bool is_dns(u32 sock); bool is_dns_queue(u32 ...
679
C++
.h
27
22.814815
69
0.718944
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,242
np_helpers.h
RPCS3_rpcs3/rpcs3/Emu/NP/np_helpers.h
#pragma once #include "util/types.hpp" #include "Emu/Cell/Modules/sceNp.h" #include "Emu/Cell/Modules/sceNp2.h" #include "rpcn_client.h" namespace np { std::string ip_to_string(u32 addr); std::string ether_to_string(std::array<u8, 6>& ether); std::string communication_id_to_string(const SceNpCommunicationId& commu...
1,015
C++
.h
20
48.9
134
0.774747
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,243
np_event_data.h
RPCS3_rpcs3/rpcs3/Emu/NP/np_event_data.h
#pragma once #include "Emu/Memory/vm_ptr.h" #include "util/asm.hpp" namespace np { class event_data { public: event_data(u32 vm_addr, u32 initial_size, u32 max_size) : m_max_size(max_size), m_cur_size(utils::align(initial_size, 4)) { m_data_ptr.set(vm_addr); } event_data() { } u8* data() { ...
3,027
C++
.h
91
29.725275
152
0.652383
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,244
np_allocator.h
RPCS3_rpcs3/rpcs3/Emu/NP/np_allocator.h
#pragma once #include <map> #include "Emu/Memory/vm_ptr.h" #include "Utilities/mutex.h" #include "util/asm.hpp" #include "util/logs.hpp" LOG_CHANNEL(np_mem_allocator); namespace np { class memory_allocator { public: memory_allocator() = default; memory_allocator(utils::serial& ar) noexcept { save(ar); } me...
3,029
C++
.h
100
26.49
131
0.650362
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,245
rpcn_countries.h
RPCS3_rpcs3/rpcs3/Emu/NP/rpcn_countries.h
#pragma once #include <array> #include <string> namespace countries { struct country_code { std::string_view name; std::string_view ccode; }; extern const std::array<country_code, 72> g_countries; } // namespace countries
233
C++
.h
12
17.5
55
0.756881
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,246
np_gui_cache.h
RPCS3_rpcs3/rpcs3/Emu/NP/np_gui_cache.h
#pragma once #include <map> #include <optional> #include "Utilities/mutex.h" #include "Emu/Cell/Modules/sceNp.h" #include "Emu/Cell/Modules/sceNp2.h" template <> struct std::less<SceNpRoomId> { bool operator()(const SceNpRoomId& a, const SceNpRoomId& b) const { return (std::memcmp(a.opt, b.opt, sizeof(a.opt)) <...
1,237
C++
.h
47
24.170213
105
0.737065
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,247
np_structs_extra.h
RPCS3_rpcs3/rpcs3/Emu/NP/np_structs_extra.h
#pragma once #include "Emu/Cell/Modules/sceNp2.h" namespace extra_nps { void print_SceNpUserInfo2(const SceNpUserInfo2* user); void print_SceNpMatching2SignalingOptParam(const SceNpMatching2SignalingOptParam* opt); void print_SceNpMatching2BinAttr(const SceNpMatching2BinAttr* bin); void print_SceNpMatching2Presen...
2,910
C++
.h
37
76.594595
118
0.891486
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,248
np_handler.h
RPCS3_rpcs3/rpcs3/Emu/NP/np_handler.h
#pragma once #include <queue> #include <map> #include <unordered_map> #include "Emu/Memory/vm_ptr.h" #include "Emu/Cell/Modules/sceNp.h" #include "Emu/Cell/Modules/sceNp2.h" #include "Emu/Cell/Modules/cellSysutil.h" #include "Emu/NP/rpcn_client.h" #include "Emu/NP/generated/np2_structs_generated.h" #include "Emu/NP/...
27,766
C++
.h
454
58
446
0.757428
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,249
upnp_handler.h
RPCS3_rpcs3/rpcs3/Emu/NP/upnp_handler.h
#pragma once #include <unordered_map> #include <miniupnpc.h> #include "upnp_config.h" #include "Utilities/mutex.h" class upnp_handler { public: ~upnp_handler(); void upnp_enable(); void add_port_redir(std::string_view addr, u16 internal_port, std::string_view protocol); void remove_port_redir(u16 internal_port...
698
C++
.h
23
28.434783
100
0.755255
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,250
np_contexts.h
RPCS3_rpcs3/rpcs3/Emu/NP/np_contexts.h
#pragma once #include <optional> #include <condition_variable> #include <thread> #include <variant> #include <queue> #include "Utilities/mutex.h" #include "Emu/IdManager.h" #include "Emu/Memory/vm_ptr.h" #include "Emu/Cell/Modules/sceNp.h" #include "Emu/Cell/Modules/sceNp2.h" #include "Emu/Cell/Modules/sceNpCommerce...
9,182
C++
.h
257
33.922179
174
0.77784
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,251
vport0.h
RPCS3_rpcs3/rpcs3/Emu/NP/vport0.h
#pragma once #include <vector> #ifdef _WIN32 #include <winsock2.h> #else #include <netinet/in.h> #endif #include "Emu/Cell/lv2/sys_net/nt_p2p_port.h" s32 send_packet_from_p2p_port(const std::vector<u8>& data, const sockaddr_in& addr); std::vector<signaling_message> get_sign_msgs(); std::vector<std::vector<u8>> get_...
621
C++
.h
20
29.65
84
0.731092
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,252
signaling_handler.h
RPCS3_rpcs3/rpcs3/Emu/NP/signaling_handler.h
#pragma once #include "Emu/Memory/vm.h" #include "Emu/Memory/vm_ptr.h" #include "Emu/Cell/Modules/sceNp.h" #include "Emu/Cell/Modules/sceNp2.h" #include "Utilities/Thread.h" #include <unordered_map> #include <chrono> #include <optional> struct signaling_info { s32 conn_status = SCE_NP_SIGNALING_CONN_STATUS_INACTIVE; ...
4,736
C++
.h
121
37.008264
163
0.740466
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,253
np2_structs_generated.h
RPCS3_rpcs3/rpcs3/Emu/NP/generated/np2_structs_generated.h
// automatically generated by the FlatBuffers compiler, do not modify #ifndef FLATBUFFERS_GENERATED_NP2STRUCTS_H_ #define FLATBUFFERS_GENERATED_NP2STRUCTS_H_ #include "flatbuffers/flatbuffers.h" // Ensure the included flatbuffers.h is the same version as when this file was // generated, otherwise it may not be comp...
272,153
C++
.h
6,750
35.821333
165
0.72216
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,254
PUP.h
RPCS3_rpcs3/rpcs3/Loader/PUP.h
#pragma once #include "util/types.hpp" #include "../../Utilities/File.h" #include <vector> struct PUPHeader { le_t<u64> magic; be_t<u64> package_version; be_t<u64> image_version; be_t<u64> file_count; be_t<u64> header_length; be_t<u64> data_length; }; struct PUPFileEntry { be_t<u64> entry_id; be_t<u64> data...
1,044
C++
.h
52
18.211538
77
0.721881
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,255
ELF.h
RPCS3_rpcs3/rpcs3/Loader/ELF.h
#pragma once #include "util/types.hpp" #include "../../Utilities/File.h" #include "../../Utilities/bit_set.h" #include <span> enum class elf_os : u8 { none = 0, lv2 = 0x66, }; enum class elf_type : u16 { none = 0, rel = 1, exec = 2, dyn = 3, core = 4, prx = 0xffa4, psv1 = 0xfe00, // ET_SCE_EXEC psv2 = ...
12,525
C++
.h
453
24.708609
112
0.653278
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,256
TRP.h
RPCS3_rpcs3/rpcs3/Loader/TRP.h
#pragma once struct TRPHeader { be_t<u32> trp_magic; be_t<u32> trp_version; be_t<u64> trp_file_size; be_t<u32> trp_files_count; be_t<u32> trp_element_size; be_t<u32> trp_dev_flag; unsigned char sha1[20]; unsigned char padding[16]; }; struct TRPEntry { char name[32]; be_t<u64> offset; be_t<u64> size; be_t<...
799
C++
.h
34
21.647059
70
0.73913
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,257
TAR.h
RPCS3_rpcs3/rpcs3/Loader/TAR.h
#pragma once #include "util/types.hpp" #include <map> struct TARHeader { char name[100]; char dontcare[24]; char size[12]; char mtime[12]; char chksum[8]; char filetype; char linkname[100]; char magic[6]; char dontcare2[82]; char prefix[155]; char padding[12]; // atime for RPCS3 ENABLE_BITWISE_SERIALIZA...
1,654
C++
.h
47
33.212766
227
0.727216
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,258
disc.h
RPCS3_rpcs3/rpcs3/Loader/disc.h
#pragma once namespace disc { enum class disc_type { invalid, unknown, ps1, ps2, ps3 }; disc_type get_disc_type(const std::string& path, std::string& disc_root, std::string& ps3_game_dir); }
207
C++
.h
13
13.692308
101
0.708333
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,259
PSF.h
RPCS3_rpcs3/rpcs3/Loader/PSF.h
#pragma once #include "util/types.hpp" #include <map> #include <string> #include <string_view> namespace fs { class file; } namespace psf { enum sound_format_flag : s32 { lpcm_2 = 1 << 0, // Linear PCM 2 Ch. lpcm_5_1 = 1 << 2, // Linear PCM 5.1 Ch. lpcm_7_1 = 1 << 4, // Linear PCM 7.1 Ch. ac3 = 1 <...
3,879
C++
.h
121
29.438017
194
0.669973
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,260
mself.hpp
RPCS3_rpcs3/rpcs3/Loader/mself.hpp
#pragma once #include "util/types.hpp" #include "util/endian.hpp" struct mself_record { char name[0x20]; be_t<u64> off; be_t<u64> size; u8 reserved[0x10]; u64 get_pos(u64 file_size) const { // Fast sanity check if (off < file_size && file_size - off >= size) [[likely]] return off; return 0; } }; st...
907
C++
.h
36
22.972222
151
0.66899
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
6,261
TROPUSR.h
RPCS3_rpcs3/rpcs3/Loader/TROPUSR.h
#pragma once #include "stdafx.h" #include "Utilities/rXml.h" #include "Utilities/File.h" struct TROPUSRHeader { be_t<u32> magic; // 81 8F 54 AD be_t<u32> unk1; be_t<u32> tables_count; be_t<u32> unk2; char reserved[32]; }; struct TROPUSRTableHeader { be_t<u32> type; be_t<u32> entries_size; be_t<u32> un...
3,047
C++
.h
93
30.731183
124
0.695741
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,262
mutex.h
RPCS3_rpcs3/Utilities/mutex.h
#pragma once #include <mutex> #include "util/types.hpp" #include "util/atomic.hpp" // Shared mutex with small size (u32). class shared_mutex final { enum : u32 { c_one = 1u << 14, // Fixed-point 1.0 value (one writer, max_readers = c_one - 1) c_sig = 1u << 30, c_err = 1u << 31, }; atomic_t<u32> m_value{}; ...
4,063
C++
.h
178
20.140449
101
0.660338
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,263
version.h
RPCS3_rpcs3/Utilities/version.h
#pragma once #include "util/types.hpp" #include <string> namespace utils { enum class version_type : uint { pre_alpha, alpha, beta, release_candidate, release }; std::string to_string(version_type type); class version { uint m_hi; uint m_mid; uint m_lo; version_type m_type = version_type::re...
1,115
C++
.h
62
14.935484
104
0.657692
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,265
transactional_storage.h
RPCS3_rpcs3/Utilities/transactional_storage.h
#include "util/types.hpp" #include <vector> #include <mutex> // Thread-safe object pool with garbage collection class universal_pool { public: universal_pool(u32 gc_interval = 10000) : gc_interval(gc_interval) { } ~universal_pool() { std::lock_guard lock(mutex); storage.clear(); } universal_pool(const un...
3,219
C++
.h
130
21.961538
108
0.681373
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,266
stack_trace.h
RPCS3_rpcs3/Utilities/stack_trace.h
#pragma once #include <util/types.hpp> #include <util/logs.hpp> namespace utils { namespace stack_trace { // Printing utilities template <typename T> concept Logger = requires (T& t, const std::string& msg) { { t.print(msg) }; }; struct print_to_log { logs::channel& log; ...
889
C++
.h
38
19.184211
86
0.643114
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,267
address_range.h
RPCS3_rpcs3/Utilities/address_range.h
#pragma once #include "util/types.hpp" #include "util/vm.hpp" #include "StrFmt.h" #include <vector> #include <algorithm> namespace utils { class address_range_vector; /** * Helpers */ static inline u32 page_start(u32 addr) { return addr & ~(c_page_size - 1); } static inline u32 next_page(u32 addr) { ...
12,102
C++
.h
477
21.366876
142
0.642894
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,268
bit_set.h
RPCS3_rpcs3/Utilities/bit_set.h
#pragma once /* This header implements bs_t<> class for scoped enum types (enum class). To enable bs_t<>, enum scope must contain `__bitset_enum_max` entry. enum class flagzz : u32 { flag1, // Bit indices start from zero flag2, __bitset_enum_max // It must be the last value }; This also enables helper operators ...
8,650
C++
.h
319
24.974922
117
0.682903
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,269
sync.h
RPCS3_rpcs3/Utilities/sync.h
#pragma once /* For internal use. Don't include. */ #include "util/types.hpp" #include "util/dyn_lib.hpp" #ifdef _WIN32 #ifndef NOMINMAX #define NOMINMAX #endif #include <Windows.h> #include <ctime> #elif __linux__ #include <errno.h> #include <sys/syscall.h> #include <linux/futex.h> #include <sys/time.h> #include <u...
3,914
C++
.h
154
22.25974
121
0.691196
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,270
StrUtil.h
RPCS3_rpcs3/Utilities/StrUtil.h
#pragma once #include <cstring> #include <string> #include <vector> #include <functional> #include <string_view> #include "util/types.hpp" std::wstring utf8_to_wchar(std::string_view src); std::string wchar_to_utf8(std::wstring_view src); std::string utf16_to_utf8(std::u16string_view src); std::u16string utf8_to_utf...
5,225
C++
.h
176
26.346591
136
0.653363
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,271
cheat_info.h
RPCS3_rpcs3/Utilities/cheat_info.h
#pragma once #include "util/types.hpp" #include <string> enum class cheat_type : u8 { unsigned_8_cheat, unsigned_16_cheat, unsigned_32_cheat, unsigned_64_cheat, signed_8_cheat, signed_16_cheat, signed_32_cheat, signed_64_cheat, max }; constexpr u8 cheat_type_max = static_cast<u8>(cheat_type::max); struct ...
540
C++
.h
26
18.923077
63
0.738189
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,272
lockless.h
RPCS3_rpcs3/Utilities/lockless.h
#pragma once #include "util/types.hpp" #include "util/atomic.hpp" #include "util/bless.hpp" //! Simple unshrinkable array base for concurrent access. Only growths automatically. //! There is no way to know the current size. The smaller index is, the faster it's accessed. //! //! T is the type of elements. Currently, ...
9,549
C++
.h
416
20.204327
103
0.661538
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,273
cond.h
RPCS3_rpcs3/Utilities/cond.h
#pragma once #include "util/types.hpp" #include "util/atomic.hpp" // Lightweight condition variable class cond_variable { // Internal waiter counter atomic_t<u32> m_value{0}; enum : u32 { c_waiter_mask = 0x1fff, c_signal_mask = 0xffffffff & ~c_waiter_mask, }; protected: // Increment waiter count u32 add_...
1,655
C++
.h
78
18.474359
92
0.669231
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,274
sema.h
RPCS3_rpcs3/Utilities/sema.h
#pragma once #include "util/types.hpp" #include "util/atomic.hpp" // Lightweight semaphore helper class class semaphore_base { // Semaphore value atomic_t<u32> m_value; enum : u32 { c_value = 1u << 0, c_value_mask = +c_value * 0xffff, c_waiter = 1u << 16, c_waiter_mask = +c_waiter * 0xffff, }; void im...
2,460
C++
.h
111
19.630631
105
0.674839
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,275
StrFmt.h
RPCS3_rpcs3/Utilities/StrFmt.h
#pragma once // No BOM and only basic ASCII in this header, or a neko will die #include "util/types.hpp" #include <string> namespace fmt { template <typename CharT, usz N, typename... Args> static std::string format(const CharT(&)[N], const Args&...); #ifdef _WIN32 struct win_error { unsigned long error{}; ...
10,792
C++
.h
372
26.607527
174
0.693342
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,277
bin_patch.h
RPCS3_rpcs3/Utilities/bin_patch.h
#pragma once #include <vector> #include <string> #include <unordered_map> #include <functional> #include "util/types.hpp" #include "util/yaml.hpp" namespace patch_key { static const std::string all = "All"; static const std::string anchors = "Anchors"; static const std::string author = "Author"; static const std...
6,767
C++
.h
187
33.802139
167
0.726675
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,278
geometry.h
RPCS3_rpcs3/Utilities/geometry.h
#pragma once #include <cmath> #include <type_traits> template<typename T> struct size2_base { T width, height; constexpr size2_base() : width{}, height{} { } constexpr size2_base(T width, T height) : width{ width }, height{ height } { } constexpr size2_base operator -(const size2_base& rhs) const { retu...
19,936
C++
.h
893
19.99888
150
0.651546
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,279
BitField.h
RPCS3_rpcs3/Utilities/BitField.h
#pragma once #include "util/types.hpp" #include "Utilities/StrFmt.h" #ifndef _MSC_VER #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Weffc++" #endif template <typename T, uint N> struct bf_base { using type = T; using vtype = std::common_type_t<type>; using utype = std::make_unsigned_t<vtype>; sta...
7,193
C++
.h
238
28.008403
135
0.688007
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,280
date_time.h
RPCS3_rpcs3/Utilities/date_time.h
#pragma once #include <ctime> #include <string> namespace date_time { static inline tm get_time(time_t* _time) { tm buf; time_t t = time(_time); #ifdef _MSC_VER localtime_s(&buf, &t); #else buf = *localtime(&t); #endif return buf; } static inline std::string fmt_time(const char* fmt, const s64 time) {...
1,082
C++
.h
50
19.18
128
0.648438
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,281
rXml.h
RPCS3_rpcs3/Utilities/rXml.h
#pragma once #ifdef _MSC_VER #pragma warning(push, 0) #include <pugixml.hpp> #pragma warning(pop) #else #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wall" #pragma GCC diagnostic ignored "-Wextra" #pragma GCC diagnostic ignored "-Wold-style-cast" #pragma GCC diagnostic ignored "-Weffc++" #include <pugix...
957
C++
.h
35
25.771429
61
0.768559
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,282
cfmt.h
RPCS3_rpcs3/Utilities/cfmt.h
#pragma once #include "util/types.hpp" #include <string> #include <vector> #include <algorithm> #include "util/asm.hpp" /* C-style format parser. Appends formatted string to `out`, returns number of characters written. `out`: mutable reference to std::string, std::vector<char> or other compatible container `fmt`: nul...
12,690
C++
.h
605
17.634711
125
0.579457
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,283
Config.h
RPCS3_rpcs3/Utilities/Config.h
#pragma once #include "util/types.hpp" #include "Utilities/StrUtil.h" #include "util/logs.hpp" #include "util/atomic.hpp" #include "util/shared_ptr.hpp" #include <algorithm> #include <utility> #include <string> #include <vector> #include <set> #include <map> namespace cfg { // Format min and max values std::vector...
13,980
C++
.h
560
21.610714
142
0.652574
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,285
Thread.h
RPCS3_rpcs3/Utilities/Thread.h
#pragma once #include "util/types.hpp" #include "util/atomic.hpp" #include "util/shared_ptr.hpp" #include <string> #include <concepts> #include "mutex.h" #include "lockless.h" // Hardware core layout enum class native_core_arrangement : u32 { undefined, generic, intel_ht, amd_ccx }; enum class thread_class : u...
20,180
C++
.h
710
25.614085
192
0.689126
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,286
JIT.h
RPCS3_rpcs3/Utilities/JIT.h
#pragma once #include "util/types.hpp" #include "util/atomic.hpp" // Include asmjit with warnings ignored #define ASMJIT_EMBED #define ASMJIT_STATIC #define ASMJIT_BUILD_DEBUG #undef Bool #ifdef _MSC_VER #pragma warning(push, 0) #include <asmjit/asmjit.h> #pragma warning(pop) #else #pragma GCC diagnostic push #pragm...
13,493
C++
.h
468
25.880342
149
0.681906
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,287
ppu_patch.h
RPCS3_rpcs3/Utilities/ppu_patch.h
#pragma once #include <util/types.hpp> #include <unordered_set> #include <vector> #include <string> // Patch utilities specific to PPU code struct ppu_patch_block_registry_t { ppu_patch_block_registry_t() = default; ppu_patch_block_registry_t(const ppu_patch_block_registry_t&) = delete; ppu_patch_block_re...
651
C++
.h
16
38.4375
124
0.740095
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,288
simple_ringbuf.h
RPCS3_rpcs3/Utilities/simple_ringbuf.h
#pragma once #include "util/types.hpp" #include "util/atomic.hpp" #include <vector> // Single reader/writer simple ringbuffer. class simple_ringbuf { public: simple_ringbuf(u64 size = 0); virtual ~simple_ringbuf(); simple_ringbuf(const simple_ringbuf& other); simple_ringbuf& operator=(const simple_ringbuf& othe...
1,173
C++
.h
40
27.125
59
0.728329
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,289
File.h
RPCS3_rpcs3/Utilities/File.h
#pragma once // No BOM and only basic ASCII in this header, or a neko will die #include "util/types.hpp" #include "util/shared_ptr.hpp" #include "bit_set.h" #include <memory> #include <string> #include <vector> #include <algorithm> namespace fs { #ifdef _WIN32 static constexpr auto& delim = "/\\"; static constexpr...
21,068
C++
.h
678
27.668142
162
0.67405
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,290
fsr_ffx_fsr1_flattened.inc
RPCS3_rpcs3/rpcs3/Emu/RSX/Program/Upscalers/FSR1/fsr_ffx_fsr1_flattened.inc
// Proprocessed version of ffx_a.h from FSR package // For original source, see 3rdParty/GPUOpen/Include/ffx_fsr1.h // Modifications are required to meet MSVC's strict limitations on string length. No single string literal (concatenated or otherwise) can exceed 64K // * Removed CPU section as we do not need it // *...
21,948
C++
.inc
648
31.867284
150
0.672082
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,291
fsr_ffx_a_flattened.inc
RPCS3_rpcs3/rpcs3/Emu/RSX/Program/Upscalers/FSR1/fsr_ffx_a_flattened.inc
R"--RPCS3--( #define A_2PI 6.28318530718 #if defined(A_GLSL) && defined(A_GPU) #ifndef A_SKIP_EXT #ifdef A_HALF #extension GL_EXT_shader_16bit_storage:require #extension GL_EXT_shader_explicit_arithmetic_types:require #endif #ifdef A_LONG #extension GL_ARB_gpu_shader_int64:require #extension GL_NV_shader_atom...
64,540
C++
.inc
1,323
46.783069
157
0.676986
RPCS3/rpcs3
15,204
1,895
1,021
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,292
spl_api.os.horizon.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/spl/spl_api.os.horizon.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
10,321
C++
.cpp
245
32.134694
139
0.603013
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,293
spl_api.os.generic.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/spl/spl_api.os.generic.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
4,870
C++
.cpp
103
38.300971
153
0.635058
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,294
spl_api_impl.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/spl/impl/spl_api_impl.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
43,228
C++
.cpp
772
44.525907
260
0.620242
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,295
spl_secure_monitor_api.os.horizon.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/spl/smc/spl_secure_monitor_api.os.horizon.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
14,124
C++
.cpp
291
40.257732
199
0.633423
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,296
spl_secure_monitor_api.os.generic.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/spl/smc/spl_secure_monitor_api.os.generic.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
24,404
C++
.cpp
439
47.134396
264
0.615188
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,297
htclow_manager.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/htclow_manager.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
5,041
C++
.cpp
114
38.385965
212
0.70188
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,298
htclow_manager_impl.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/htclow_manager_impl.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
7,403
C++
.cpp
160
39.13125
186
0.673662
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,299
htclow_worker.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/htclow_worker.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
7,207
C++
.cpp
147
39.07483
194
0.613293
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,300
htclow_packet_factory.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/htclow_packet_factory.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
3,525
C++
.cpp
76
37.447368
178
0.633022
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,301
htclow_manager_holder.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/htclow_manager_holder.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
2,637
C++
.cpp
64
33.484375
122
0.639859
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,302
htclow_channel.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/htclow_channel.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
8,103
C++
.cpp
184
35.054348
181
0.611083
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,303
htclow_listener.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/htclow_listener.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
3,709
C++
.cpp
89
33.808989
226
0.617655
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,304
htclow_ctrl_settings_holder.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/ctrl/htclow_ctrl_settings_holder.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
2,134
C++
.cpp
52
32.942308
117
0.626024
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,305
htclow_ctrl_state_machine.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/ctrl/htclow_ctrl_state_machine.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
7,676
C++
.cpp
177
35.129944
179
0.640709
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,306
htclow_ctrl_service.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/ctrl/htclow_ctrl_service.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
18,041
C++
.cpp
406
34.963054
223
0.615086
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,307
htclow_ctrl_send_buffer.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/ctrl/htclow_ctrl_send_buffer.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
3,864
C++
.cpp
87
36.367816
143
0.654173
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,308
htclow_json.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/ctrl/htclow_json.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
2,469
C++
.cpp
70
28.214286
92
0.626415
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,309
htclow_service_channel_parser.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/ctrl/htclow_service_channel_parser.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
5,582
C++
.cpp
135
25.837037
158
0.474179
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,310
htclow_ctrl_packet_factory.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/ctrl/htclow_ctrl_packet_factory.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
5,019
C++
.cpp
100
41.5
138
0.66619
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,311
htclow_socket_driver.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/driver/htclow_socket_driver.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
10,256
C++
.cpp
221
37.298643
194
0.61125
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,312
htclow_usb_driver.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/driver/htclow_usb_driver.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
3,790
C++
.cpp
100
29.99
152
0.610641
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,313
htclow_driver_memory_management.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/driver/htclow_driver_memory_management.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
2,382
C++
.cpp
46
46.326087
200
0.743645
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,314
htclow_driver_manager.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/driver/htclow_driver_manager.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
2,936
C++
.cpp
78
29.025641
76
0.599226
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,315
htclow_socket_discovery_util.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/driver/htclow_socket_discovery_util.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
5,152
C++
.cpp
106
36.301887
127
0.556773
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,316
htclow_usb_impl.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/driver/htclow_usb_impl.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
20,605
C++
.cpp
383
41.882507
240
0.597875
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,317
htclow_socket_discovery_manager.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/driver/htclow_socket_discovery_manager.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
5,989
C++
.cpp
120
40.266667
194
0.616478
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,318
htclow_mux_ring_buffer.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/mux/htclow_mux_ring_buffer.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
4,395
C++
.cpp
106
33.886792
93
0.59573
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,319
htclow_mux.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/mux/htclow_mux.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
15,361
C++
.cpp
331
37.610272
130
0.612454
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,320
htclow_mux_channel_impl_map.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/mux/htclow_mux_channel_impl_map.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
3,115
C++
.cpp
74
35.013514
119
0.636544
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,321
htclow_mux_send_buffer.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/mux/htclow_mux_send_buffer.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
6,381
C++
.cpp
148
35.263514
160
0.622358
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
6,322
htclow_mux_channel_impl.cpp
Atmosphere-NX_Atmosphere/libraries/libstratosphere/source/htclow/mux/htclow_mux_channel_impl.cpp
/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT ...
16,195
C++
.cpp
372
34.005376
150
0.595535
Atmosphere-NX/Atmosphere
14,324
1,207
54
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false