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
5,818
ErrorCodes.h
RPCS3_rpcs3/rpcs3/Emu/Cell/ErrorCodes.h
#pragma once #include "util/types.hpp" #include "Utilities/StrFmt.h" namespace logs { struct message; } // Error code type (return type), implements error reporting. class error_code { s32 value; // Common constructor template <typename ET> requires requires (ET v) { static_cast<s32>(v); } error_code(const log...
6,604
C++
.h
147
42.965986
162
0.693849
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
5,819
SPUDisAsm.h
RPCS3_rpcs3/rpcs3/Emu/Cell/SPUDisAsm.h
#pragma once #include "PPCDisAsm.h" #include "SPUOpcodes.h" #include "util/v128.hpp" enum spu_stop_syscall : u32; static constexpr const char* spu_reg_name[128] = { "lr", "sp", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", "r16", "r17", "r18", "r19", "r20", "r21", "r22"...
30,004
C++
.h
1,032
26.751938
126
0.634541
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
5,820
SPUInterpreter.h
RPCS3_rpcs3/rpcs3/Emu/Cell/SPUInterpreter.h
#pragma once #include "SPUOpcodes.h" class spu_thread; using spu_intrp_func_t = bool(*)(spu_thread& spu, spu_opcode_t op); template <typename IT> struct spu_interpreter_t; struct spu_interpreter { static void set_interrupt_status(spu_thread&, spu_opcode_t); }; struct spu_interpreter_rt_base { protected: std::un...
855
C++
.h
29
27.586207
77
0.766298
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
5,821
PPUThread.h
RPCS3_rpcs3/rpcs3/Emu/Cell/PPUThread.h
#pragma once #include "../CPU/CPUThread.h" #include "../CPU/Hypervisor.h" #include "../Memory/vm_ptr.h" #include "Utilities/lockless.h" #include "Utilities/BitField.h" #include "util/logs.hpp" #include "util/v128.hpp" LOG_CHANNEL(ppu_log, "PPU"); enum class ppu_cmd : u32 { null, opcode, // Execute PPU instructio...
11,229
C++
.h
385
26.818182
126
0.707396
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
5,822
PPUTranslator.h
RPCS3_rpcs3/rpcs3/Emu/Cell/PPUTranslator.h
#pragma once #ifdef LLVM_AVAILABLE #include "Emu/CPU/CPUTranslator.h" #include "PPUOpcodes.h" #include "PPUAnalyser.h" #include "util/types.hpp" class PPUTranslator final : public cpu_translator { // PPU Module const ppu_module& m_info; // Relevant relocations std::map<u64, const ppu_reloc*> m_relocs; // Att...
28,146
C++
.h
769
34.452536
121
0.706283
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
5,823
MFC.h
RPCS3_rpcs3/rpcs3/Emu/Cell/MFC.h
#pragma once #include "util/types.hpp" enum MFC : u8 { MFC_PUT_CMD = 0x20, MFC_PUTB_CMD = 0x21, MFC_PUTF_CMD = 0x22, MFC_PUTS_CMD = 0x28, MFC_PUTBS_CMD = 0x29, MFC_PUTFS_CMD = 0x2a, MFC_PUTR_CMD = 0x30, MFC_PUTRB_CMD = 0x31, MFC_PUTRF_CMD = 0x32, MFC_GET_CMD = 0x40, MFC_GETB_...
2,785
C++
.h
93
28.129032
75
0.634666
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
5,824
SPUThread.h
RPCS3_rpcs3/rpcs3/Emu/Cell/SPUThread.h
#pragma once #include "Emu/CPU/CPUThread.h" #include "Emu/CPU/Hypervisor.h" #include "Emu/Cell/SPUInterpreter.h" #include "Emu/Memory/vm.h" #include "MFC.h" #include "util/v128.hpp" #include "util/logs.hpp" #include "util/to_endian.hpp" #include "Loader/ELF.h" #include <span> LOG_CHANNEL(spu_log, "SPU"); struct l...
25,464
C++
.h
789
29.773131
177
0.692603
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
5,825
Common.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Common.h
#pragma once #include "util/types.hpp" // Floating-point rounding mode (for both PPU and SPU) enum FPSCR_RN { FPSCR_RN_NEAR = 0, FPSCR_RN_ZERO = 1, FPSCR_RN_PINF = 2, FPSCR_RN_MINF = 3, }; // Get the exponent of a float inline int fexpf(float x) { return (std::bit_cast<u32>(x) >> 23) & 0xff; } constexpr u32 pp...
3,277
C++
.h
191
14.863874
71
0.730819
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
5,826
PPUFunction.h
RPCS3_rpcs3/rpcs3/Emu/Cell/PPUFunction.h
#pragma once #include "PPUThread.h" #include "PPUInterpreter.h" #include "util/v128.hpp" // BIND_FUNC macro "converts" any appropriate HLE function to ppu_intrp_func_t, binding it to PPU thread context. #define BIND_FUNC(func, ...) (static_cast<ppu_intrp_func_t>([](ppu_thread& ppu, ppu_opcode_t, be_t<u32>* this_op, ...
9,939
C++
.h
270
34.144444
148
0.688378
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
5,827
SPUAnalyser.h
RPCS3_rpcs3/rpcs3/Emu/Cell/SPUAnalyser.h
#pragma once #include "util/types.hpp" // SPU Instruction Type struct spu_itype { static constexpr struct memory_tag{} memory{}; // Memory Load/Store Instructions static constexpr struct constant_tag{} constant{}; // Constant Formation Instructions static constexpr struct integer_tag{} integer{}; // Integer and Lo...
9,261
C++
.h
697
10.651363
87
0.660526
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
5,828
SPUOpcodes.h
RPCS3_rpcs3/rpcs3/Emu/Cell/SPUOpcodes.h
#pragma once #include "Utilities/BitField.h" union spu_opcode_t { u32 opcode; bf_t<u32, 0, 7> rt; // 25..31, for 3-op instructions bf_t<u32, 0, 7> rc; // 25..31 bf_t<u32, 7, 7> ra; // 18..24 bf_t<u32, 14, 7> rb; // 11..17 bf_t<u32, 21, 7> rt4; // 4..10, for 4-op instructions bf_t<u32, 18, 1> e; // 13, "enable...
8,009
C++
.h
297
23.481481
112
0.521451
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
5,829
PPUAnalyser.h
RPCS3_rpcs3/rpcs3/Emu/Cell/PPUAnalyser.h
#pragma once #include <string> #include <map> #include <set> #include <deque> #include "util/types.hpp" #include "util/endian.hpp" #include "util/asm.hpp" #include "util/to_endian.hpp" #include "Utilities/bit_set.h" #include "PPUOpcodes.h" // PPU Function Attributes enum class ppu_attr : u32 { known_addr, known_si...
35,118
C++
.h
1,950
15.335385
183
0.672394
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
5,830
SPURecompiler.h
RPCS3_rpcs3/rpcs3/Emu/Cell/SPURecompiler.h
#pragma once #include "Utilities/File.h" #include "Utilities/lockless.h" #include "Utilities/address_range.h" #include "SPUThread.h" #include <vector> #include <bitset> #include <memory> #include <string> #include <deque> // Helper class class spu_cache { fs::file m_file; public: spu_cache() = default; spu_cache...
10,628
C++
.h
336
28.886905
144
0.722883
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
5,831
timers.hpp
RPCS3_rpcs3/rpcs3/Emu/Cell/timers.hpp
#pragma once #include "util/types.hpp" u64 convert_to_timebased_time(u64 time); u64 get_timebased_time(); // Returns some relative time in microseconds, don't change this fact u64 get_system_time(); // As get_system_time but obeys Clocks scaling setting. Microseconds. u64 get_guest_system_time(u64 time = umax);
317
C++
.h
8
38.125
69
0.780328
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
5,832
PPUModule.h
RPCS3_rpcs3/rpcs3/Emu/Cell/PPUModule.h
#pragma once #include "PPUFunction.h" #include "PPUCallback.h" #include "ErrorCodes.h" #include "Emu/Memory/vm_var.h" // Helper function constexpr const char* ppu_select_name(const char* name, u32 /*id*/) { return name; } // Helper function constexpr const char* ppu_select_name(const char* /*name*/, const char* ori...
10,463
C++
.h
261
38.019157
185
0.782155
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
5,833
PPUOpcodes.h
RPCS3_rpcs3/rpcs3/Emu/Cell/PPUOpcodes.h
#pragma once #include "Utilities/BitField.h" template<typename T, u32 I, u32 N> using ppu_bf_t = bf_t<T, sizeof(T) * 8 - N - I, N>; union ppu_opcode_t { u32 opcode; ppu_bf_t<u32, 0, 6> main; // 0..5 cf_t<ppu_bf_t<u32, 30, 1>, ppu_bf_t<u32, 16, 5>> sh64; // 30 + 16..20 cf_t<ppu_bf_t<u32, 26, 1>, ppu_bf_t<u32, 21...
23,016
C++
.h
697
29.519369
190
0.561378
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
5,834
cellBgdl.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellBgdl.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Return Codes enum { CELL_BGDL_UTIL_ERROR_BUSY = 0x8002ce01, CELL_BGDL_UTIL_ERROR_INTERNAL = 0x8002ce02, CELL_BGDL_UTIL_ERROR_PARAM = 0x8002ce03, CELL_BGDL_UTIL_ERROR_ACCESS_ERROR = 0x8002ce04, CELL_BGDL_UTIL_ERROR_INITIALIZE = 0x8002ce05, }; en...
697
C++
.h
31
20.806452
48
0.73525
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
5,835
cellWebBrowser.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellWebBrowser.h
#pragma once #include "cellSysutil.h" #include "Emu/Memory/vm_ptr.h" //events enum CellWebBrowserEvent : s32 { CELL_SYSUTIL_WEBBROWSER_INITIALIZING_FINISHED = 1, CELL_SYSUTIL_WEBBROWSER_SHUTDOWN_FINISHED = 4, CELL_SYSUTIL_WEBBROWSER_LOADING_FINISHED = 5, CELL_SYSUTIL_WEBBROWSER_UNLOADING_FINISHED = 7, CELL_S...
2,257
C++
.h
70
30.557143
124
0.78125
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
5,836
cellSaveData.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSaveData.h
#pragma once #include "util/types.hpp" #include "util/endian.hpp" #include "Emu/Memory/vm_ptr.h" #include <string> #include <vector> // Return codes enum CellSaveDataError : u32 { CELL_SAVEDATA_ERROR_CBRESULT = 0x8002b401, CELL_SAVEDATA_ERROR_ACCESS_ERROR = 0x8002b402, CELL_SAVEDATA_ERROR_INTERNAL ...
9,743
C++
.h
318
28.786164
156
0.736909
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
5,837
cellCamera.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellCamera.h
#pragma once #include "Utilities/Timer.h" #include "Emu/Cell/lv2/sys_memory.h" #include "Utilities/Thread.h" #include "Emu/Io/camera_handler_base.h" #include <map> // Error Codes enum CellCameraError : u32 { CELL_CAMERA_ERROR_ALREADY_INIT = 0x80140801, CELL_CAMERA_ERROR_NOT_INIT = 0x80140803, CEL...
13,520
C++
.h
424
29.950472
98
0.662909
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
5,838
cellHttpUtil.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellHttpUtil.h
#pragma once #include "Emu/Memory/vm_ptr.h" // libHttp_Util: 0x80711001 - 0x807110ff // Error Codes enum CellHttpUtilError : u32 { CELL_HTTP_UTIL_ERROR_NO_MEMORY = 0x80711001, CELL_HTTP_UTIL_ERROR_NO_BUFFER = 0x80711002, CELL_HTTP_UTIL_ERROR_NO_STRING = 0x80711003, CELL_HTTP_UTIL_ERROR_IN...
1,805
C++
.h
64
26.453125
142
0.736568
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
5,839
libsynth2.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/libsynth2.h
#pragma once // Error Codes enum CellSoundSynth2Error : u32 { CELL_SOUND_SYNTH2_ERROR_FATAL = 0x80310201, CELL_SOUND_SYNTH2_ERROR_INVALID_PARAMETER = 0x80310202, CELL_SOUND_SYNTH2_ERROR_ALREADY_INITIALIZED = 0x80310203, }; struct CellSoundSynth2EffectAttr { be_t<u16> core; be_t<u16> mode; be_t<s16> depth_L; be...
379
C++
.h
17
20.647059
58
0.766667
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
5,840
cellJpgDec.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellJpgDec.h
#pragma once //Return Codes enum CellJpgDecError : u32 { CELL_JPGDEC_ERROR_HEADER = 0x80611101, CELL_JPGDEC_ERROR_STREAM_FORMAT = 0x80611102, CELL_JPGDEC_ERROR_ARG = 0x80611103, CELL_JPGDEC_ERROR_SEQ = 0x80611104, CELL_JPGDEC_ERROR_BUSY = 0x80611105, CELL_JPGDEC_ERROR_FATAL ...
2,734
C++
.h
106
24.056604
59
0.707345
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
5,841
StaticHLE.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/StaticHLE.h
#pragma once #include "util/types.hpp" #include "Emu/Memory/vm_ptr.h" #include <vector> struct shle_pattern { u16 start_pattern[32]; u8 crc16_length; u16 crc16; u16 total_length; std::string _module; std::string name; u32 fnid; }; class statichle_handler { public: statichle_handler(int); ~statichle_handler...
650
C++
.h
27
22.222222
69
0.760976
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
5,842
cellResc.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellResc.h
#pragma once enum CellRescError : u32 { CELL_RESC_ERROR_NOT_INITIALIZED = 0x80210301, CELL_RESC_ERROR_REINITIALIZED = 0x80210302, CELL_RESC_ERROR_BAD_ALIGNMENT = 0x80210303, CELL_RESC_ERROR_BAD_ARGUMENT = 0x80210304, CELL_RESC_ERROR_LESS_MEMORY = 0x80210305, CELL_RESC_ERROR_GCM_FLIP_QUE_FULL...
2,683
C++
.h
108
23
77
0.667839
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
5,843
cellRemotePlay.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellRemotePlay.h
#pragma once enum CellRemotePlayError : u32 { CELL_REMOTEPLAY_ERROR_INTERNAL = 0x80029830 }; enum { CELL_REMOTEPLAY_STATUS_LOADING = 0x00000000, CELL_REMOTEPLAY_STATUS_WAIT = 0x00000001, CELL_REMOTEPLAY_STATUS_RUNNING = 0x00000002, CELL_REMOTEPLAY_STATUS_UNLOADING = 0x00000003, CELL_REMOTEPLAY_STAT...
602
C++
.h
20
28.45
63
0.766839
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
5,844
cellGem.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellGem.h
#pragma once #include "Emu/Memory/vm_ptr.h" static const float CELL_GEM_SPHERE_RADIUS_MM = 22.5f; // Error codes enum CellGemError : u32 { CELL_GEM_ERROR_RESOURCE_ALLOCATION_FAILED = 0x80121801, CELL_GEM_ERROR_ALREADY_INITIALIZED = 0x80121802, CELL_GEM_ERROR_UNINITIALIZED = 0x80121803, CELL_G...
8,057
C++
.h
249
30.618474
133
0.668939
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
5,845
cellSail.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSail.h
#pragma once #include "cellVpost.h" #include "Emu/Memory/vm_ptr.h" // Error Codes enum CellSailError : u32 { CELL_SAIL_ERROR_INVALID_ARG = 0x80610701, CELL_SAIL_ERROR_INVALID_STATE = 0x80610702, CELL_SAIL_ERROR_UNSUPPORTED_STREAM = 0x80610703, CELL_SAIL_ERROR_INDEX_OUT_OF_RANGE = 0x80610704, CELL_SA...
38,708
C++
.h
1,133
32.321271
187
0.699912
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
5,846
cellSubDisplay.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSubDisplay.h
#pragma once // Return Codes enum CellSubDisplayError : u32 { CELL_SUBDISPLAY_ERROR_OUT_OF_MEMORY = 0x80029851, CELL_SUBDISPLAY_ERROR_FATAL = 0x80029852, CELL_SUBDISPLAY_ERROR_NOT_FOUND = 0x80029853, CELL_SUBDISPLAY_ERROR_INVALID_VALUE = 0x80029854, CELL_SUBDISPLAY_ERROR_NOT_INITIALIZED =...
3,027
C++
.h
98
29.030612
96
0.708391
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
5,847
cellRtc.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellRtc.h
#pragma once #include "Emu/Memory/vm_ptr.h" #include "Emu/Cell/ErrorCodes.h" // Return Codes enum CellRtcError { CELL_RTC_ERROR_NOT_INITIALIZED = 0x80010601, CELL_RTC_ERROR_INVALID_POINTER = 0x80010602, CELL_RTC_ERROR_INVALID_VALUE = 0x80010603, CELL_RTC_ERROR_INVALID_ARG = 0x80010604, CELL...
4,276
C++
.h
59
70.898305
611
0.603329
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
5,848
cellSearch.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSearch.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Error Codes enum CellSearchError : u32 { CELL_SEARCH_CANCELED = 1, CELL_SEARCH_ERROR_PARAM = 0x8002C801, CELL_SEARCH_ERROR_BUSY = 0x8002C802, CELL_SEARCH_ERROR_NO_MEMORY = 0x8002C803, CELL_SEARCH_ERROR_...
9,856
C++
.h
328
28.27439
119
0.734836
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
5,849
sceNpUtil.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sceNpUtil.h
#pragma once enum { SCE_NP_UTIL_BANDWIDTH_TEST_STATUS_NONE = 0, SCE_NP_UTIL_BANDWIDTH_TEST_STATUS_RUNNING = 1, SCE_NP_UTIL_BANDWIDTH_TEST_STATUS_FINISHED = 2 }; struct SceNpUtilBandwidthTestResult { be_t<f64> upload_bps; be_t<f64> download_bps; be_t<s32> result; s8 padding[4]; };
290
C++
.h
14
19.071429
47
0.759124
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
5,850
cellSpudll.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSpudll.h
#pragma once #include "Emu/Memory/vm_ptr.h" enum CellSpudllError : u32 { CELL_SPUDLL_ERROR_INVAL = 0x80410602, CELL_SPUDLL_ERROR_STAT = 0x8041060f, CELL_SPUDLL_ERROR_ALIGN = 0x80410610, CELL_SPUDLL_ERROR_NULL_POINTER = 0x80410611, CELL_SPUDLL_ERROR_SRCH = 0x80410605, CELL_SPUDLL_ER...
693
C++
.h
23
28.347826
47
0.731634
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
5,851
libmixer.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/libmixer.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Error Codes enum CellLibmixerError : u32 { CELL_LIBMIXER_ERROR_NOT_INITIALIZED = 0x80310002, CELL_LIBMIXER_ERROR_INVALID_PARAMATER = 0x80310003, CELL_LIBMIXER_ERROR_NO_MEMORY = 0x80310005, CELL_LIBMIXER_ERROR_ALREADY_EXIST = 0x80310006, CELL_LIBMIXER_E...
4,034
C++
.h
145
25.972414
92
0.7597
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
5,852
cellVoice.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellVoice.h
#pragma once #include <unordered_map> #include <deque> // libvoice = 0x80310801 - 0x803108ff // libvoice version 100 // Error Codes enum CellVoiceError : u32 { CELL_VOICE_ERROR_ADDRESS_INVALID = 0x8031080a, CELL_VOICE_ERROR_ARGUMENT_INVALID = 0x80310805, CELL_VOICE_ERROR_CONTAINER_INVALID = 0x80310...
5,253
C++
.h
192
25.364583
53
0.703696
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
5,853
sceNp2.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sceNp2.h
#pragma once #include "sceNp.h" #include "Emu/Memory/vm_ptr.h" // Error codes enum SceNpMatching2Error : u32 { // NP Matching 2 Utility SCE_NP_MATCHING2_ERROR_OUT_OF_MEMORY = 0x80022301, SCE_NP_MATCHING2_ERROR_ALREADY_INITIALIZED = 0x80022302, SCE_NP_MATCHING2_ERROR_NOT_INITIALIZED ...
55,116
C++
.h
1,471
35.724677
177
0.766877
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
5,854
cellSpurs.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSpurs.h
#pragma once #include "cellSync.h" #include "util/v128.hpp" struct CellSpurs; struct CellSpursTaskset; // Core return codes. enum CellSpursCoreError : u32 { CELL_SPURS_CORE_ERROR_AGAIN = 0x80410701, CELL_SPURS_CORE_ERROR_INVAL = 0x80410702, CELL_SPURS_CORE_ERROR_NOMEM = 0x80410704, CELL_SPU...
47,148
C++
.h
1,139
39.355575
220
0.536756
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
5,855
libsnd3.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/libsnd3.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Error Codes enum CellSnd3Error : u32 { CELL_SND3_ERROR_PARAM = 0x80310301, CELL_SND3_ERROR_CREATE_MUTEX = 0x80310302, CELL_SND3_ERROR_SYNTH = 0x80310303, CELL_SND3_ERROR_ALREADY = 0x80310304, CELL_SND3_ERROR_NOTINIT = 0x80310305, C...
1,197
C++
.h
48
23.229167
45
0.71366
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
5,856
cellOskDialog.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellOskDialog.h
#pragma once #include "util/types.hpp" #include "util/atomic.hpp" #include "util/init_mutex.hpp" #include "Utilities/mutex.h" #include "Emu/Memory/vm_ptr.h" #include <string> #include <functional> // error codes enum CellOskDialogError : u32 { CELL_OSKDIALOG_ERROR_IME_ALREADY_IN_USE = 0x8002b501, CELL_OSKDIALOG_ERR...
12,290
C++
.h
326
35.800613
157
0.758606
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
5,857
cellSysutilAvc.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSysutilAvc.h
#pragma once #include "Emu/Cell/Modules/sceNp.h" enum CellAvcError : u32 { CELL_AVC_ERROR_UNKNOWN = 0x8002b701, CELL_AVC_ERROR_NOT_SUPPORTED = 0x8002b702, CELL_AVC_ERROR_NOT_INITIALIZED = 0x8002b703, CELL_AVC_ERROR_ALREADY_INITIALIZED = 0x8002b704, CELL_AVC_ERROR_INVALID_ARGUMENT ...
5,479
C++
.h
133
39.421053
164
0.745304
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
5,858
cellPamf.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellPamf.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Error Codes enum CellPamfError : u32 { CELL_PAMF_ERROR_STREAM_NOT_FOUND = 0x80610501, CELL_PAMF_ERROR_INVALID_PAMF = 0x80610502, CELL_PAMF_ERROR_INVALID_ARG = 0x80610503, CELL_PAMF_ERROR_UNKNOWN_TYPE = 0x80610504, CELL_PAMF_ERROR_UNSUPPORTED...
21,677
C++
.h
777
25.277992
131
0.68957
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
5,859
cellGame.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellGame.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Return Codes enum { CELL_GAME_RET_OK = 0, CELL_GAME_RET_CANCEL = 1, CELL_GAME_RET_NONE = 2, }; enum CellGameError : u32 { CELL_GAME_ERROR_NOTFOUND = 0x8002cb04, CELL_GAME_ERROR_BROKEN = 0x8002cb0...
10,404
C++
.h
302
32.536424
147
0.70988
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
5,860
cellFont.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellFont.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Error codes enum CellFontError : u32 { CELL_FONT_ERROR_FATAL = 0x80540001, CELL_FONT_ERROR_INVALID_PARAMETER = 0x80540002, CELL_FONT_ERROR_UNINITIALIZED = 0x80540003, CELL_FONT_ERROR_INITIALIZE_FAILED = 0x80540004, ...
9,639
C++
.h
297
30.632997
136
0.724416
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
5,861
cellMic.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellMic.h
#pragma once #include "Utilities/Thread.h" #include "Emu/Cell/timers.hpp" #include "3rdparty/OpenAL/openal-soft/include/AL/alext.h" // Error Codes enum CellMicInError : u32 { CELL_MICIN_ERROR_ALREADY_INIT = 0x80140101, CELL_MICIN_ERROR_DEVICE = 0x80140102, CELL_MICIN_ERROR_NOT_INIT = 0...
9,936
C++
.h
335
27.39403
113
0.700409
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
5,862
sceNpTus.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sceNpTus.h
#pragma once #include "cellRtc.h" #include "sceNp.h" #include <map> // Constants for TUS functions and structures enum { SCE_NP_TUS_DATA_INFO_MAX_SIZE = 384, SCE_NP_TUS_MAX_CTX_NUM = 32, SCE_NP_TUS_MAX_SLOT_NUM_PER_TRANS = 64, SCE_NP_TUS_MAX_USER_NUM_PER_TRANS = 101, SCE_NP_TUS_MAX_SELECTED_FRIENDS_NUM = 100, }...
3,605
C++
.h
147
22.809524
95
0.785839
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
5,863
cellDmux.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellDmux.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Error Codes enum CellDmuxError :u32 { CELL_DMUX_ERROR_ARG = 0x80610201, CELL_DMUX_ERROR_SEQ = 0x80610202, CELL_DMUX_ERROR_BUSY = 0x80610203, CELL_DMUX_ERROR_EMPTY = 0x80610204, CELL_DMUX_ERROR_FATAL = 0x80610205, }; enum CellDmuxStreamType : s32 { C...
4,758
C++
.h
234
18.692308
102
0.773265
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
5,864
cellFiber.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellFiber.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Return Codes enum CellFiberError : u32 { CELL_FIBER_ERROR_AGAIN = 0x80760001, // Resource was temporarily unavailable CELL_FIBER_ERROR_INVAL = 0x80760002, // Value of the argument is invalid CELL_FIBER_ERROR_NOMEM = 0x80760004, // Insufficient mem...
2,893
C++
.h
90
30.466667
98
0.779618
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
5,865
sceNpCommerce2.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sceNpCommerce2.h
#pragma once #include "cellRtc.h" // Return codes enum SceNpCommerce2Error { SCE_NP_COMMERCE2_ERROR_NOT_INITIALIZED = 0x80023001, SCE_NP_COMMERCE2_ERROR_ALREADY_INITIALIZED = 0x80023002, SCE_NP_COMMERCE2_ERROR_INVALID_ARGUMENT = 0x80023003, SCE_NP_COMMERCE...
12,239
C++
.h
305
38.337705
109
0.698337
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
5,866
cellVdec.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellVdec.h
#pragma once // Error Codes enum CellVdecError : u32 { CELL_VDEC_ERROR_ARG = 0x80610101, CELL_VDEC_ERROR_SEQ = 0x80610102, CELL_VDEC_ERROR_BUSY = 0x80610103, CELL_VDEC_ERROR_EMPTY = 0x80610104, CELL_VDEC_ERROR_AU = 0x80610105, CELL_VDEC_ERROR_PIC = 0x80610106, CELL_VDEC_ERROR_FATAL = 0x80610180, }; e...
19,431
C++
.h
605
30.338843
87
0.640966
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
5,867
cellMusic.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellMusic.h
#pragma once #include "Emu/Memory/vm_ptr.h" #include "Emu/Cell/ErrorCodes.h" #include "cellSearch.h" // Error Codes enum CellMusicError : u32 { CELL_MUSIC_CANCELED = 1, CELL_MUSIC_PLAYBACK_FINISHED = 0x8002c101, CELL_MUSIC_ERROR_PARAM = 0x8002c102, CELL_MUSIC_ERROR_BUSY ...
6,361
C++
.h
157
38.66879
96
0.710658
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
5,868
cellCrossController.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellCrossController.h
#pragma once enum CellCrossControllerError : u32 { CELL_CROSS_CONTROLLER_ERROR_CANCEL = 0x8002cd80, CELL_CROSS_CONTROLLER_ERROR_NETWORK = 0x8002cd81, CELL_CROSS_CONTROLLER_ERROR_OUT_OF_MEMORY = 0x8002cd90, CELL_CROSS_CONTROLLER_ERROR_FATAL = 0x8002cd91, CELL_CR...
1,756
C++
.h
45
37.244444
114
0.735915
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
5,869
cellCelp8Enc.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellCelp8Enc.h
#pragma once struct CellSpurs; // libCelp8Enc = 0x806140a1 - 0x806140bf // typedef void* CellCelp8EncHandle; // Return Codes enum CellCelp8EncError : u32 { CELL_CELP8ENC_ERROR_FAILED = 0x806140a1, CELL_CELP8ENC_ERROR_SEQ = 0x806140a2, CELL_CELP8ENC_ERROR_ARG = 0x806140a3, CELL_CELP8ENC_ERRO...
1,824
C++
.h
81
20.82716
46
0.754772
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
5,870
sceNpClans.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sceNpClans.h
#pragma once #include "sceNp.h" // Return codes enum SceNpClansError : u32 { SCE_NP_CLANS_ERROR_ALREADY_INITIALIZED = 0x80022701, SCE_NP_CLANS_ERROR_NOT_INITIALIZED = 0x80022702, SCE_NP_CLANS_ERROR_NOT_SUPPORTED = 0x80022703, SCE_NP_CLANS_ERROR_OUT_OF_M...
9,520
C++
.h
262
34.603053
70
0.707074
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
5,871
cellPad.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellPad.h
#pragma once #include "Emu/Io/pad_types.h" #include <array> #include "util/types.hpp" enum CellPadError : u32 { CELL_PAD_ERROR_FATAL = 0x80121101, CELL_PAD_ERROR_INVALID_PARAMETER = 0x80121102, CELL_PAD_ERROR_ALREADY_INITIALIZED = 0x80121103, CELL_PAD_ERROR_UNINITIALIZED ...
3,599
C++
.h
124
27.217742
107
0.724088
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
5,872
cellUsbd.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellUsbd.h
#pragma once // Return Codes enum CellUsbdError : u32 { CELL_USBD_ERROR_NOT_INITIALIZED = 0x80110001, CELL_USBD_ERROR_ALREADY_INITIALIZED = 0x80110002, CELL_USBD_ERROR_NO_MEMORY = 0x80110003, CELL_USBD_ERROR_INVALID_PARAM = 0x80110004, CELL_USBD_ERROR_INVALID_TRANSFER_TYPE = 0x8...
1,365
C++
.h
38
34.026316
53
0.693646
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
5,873
cellSysconf.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSysconf.h
#pragma once #include "Emu/Memory/vm_ptr.h" typedef void(CellSysconfCallback)(s32 result, vm::ptr<void> userdata); struct CellSysconfBtDeviceInfo { be_t<u64> deviceId; be_t<s32> deviceType; // CellSysconfBtDeviceType be_t<s32> state; // CellSysconfBtDeviceState char name[64]; be_t<u32> reserved[4]; }; str...
738
C++
.h
29
23.827586
70
0.782051
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
5,874
sysPrxForUser.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sysPrxForUser.h
#pragma once #include "Emu/Memory/vm_ptr.h" #include "Emu/Cell/ErrorCodes.h" enum { RANDOM_NUMBER_MAX_SIZE = 4096 }; using spu_printf_cb_t = vm::ptr<s32(u32 arg)>; // Aux extern spu_printf_cb_t g_spu_printf_agcb; extern spu_printf_cb_t g_spu_printf_dgcb; extern spu_printf_cb_t g_spu_printf_atcb; extern spu_printf...
2,504
C++
.h
50
48.4
161
0.741485
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
5,875
cellAudio.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellAudio.h
#pragma once #include "Emu/Memory/vm_ptr.h" #include "Utilities/Thread.h" #include "Utilities/simple_ringbuf.h" #include "Emu/Memory/vm.h" #include "Emu/Audio/AudioBackend.h" #include "Emu/Audio/AudioDumper.h" #include "Emu/Audio/audio_resampler.h" #include "Emu/system_config_types.h" struct lv2_event_queue; // Erro...
11,347
C++
.h
341
31.052786
148
0.713225
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
5,876
cellKb.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellKb.h
#pragma once #include "Emu/Io/Keyboard.h" enum CellKbError : u32 { CELL_KB_ERROR_FATAL = 0x80121001, CELL_KB_ERROR_INVALID_PARAMETER = 0x80121002, CELL_KB_ERROR_ALREADY_INITIALIZED = 0x80121003, CELL_KB_ERROR_UNINITIALIZED = 0x80121004, CELL_KB_ERROR_RESOURCE_ALL...
1,204
C++
.h
50
22.38
57
0.681501
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
5,877
sceNpSns.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sceNpSns.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Return codes enum sceNpSnsError : u32 { SCE_NP_SNS_ERROR_UNKNOWN = 0x80024501, SCE_NP_SNS_ERROR_NOT_SIGN_IN = 0x80024502, SCE_NP_SNS_ERROR_INVALID_ARGUMENT = 0x80024503, SCE_NP_SNS_ERROR_OUT_OF_MEMORY ...
2,622
C++
.h
76
32.789474
74
0.67206
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
5,878
cellMouse.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellMouse.h
#pragma once enum CellMouseError : u32 { CELL_MOUSE_ERROR_FATAL = 0x80121201, CELL_MOUSE_ERROR_INVALID_PARAMETER = 0x80121202, CELL_MOUSE_ERROR_ALREADY_INITIALIZED = 0x80121203, CELL_MOUSE_ERROR_UNINITIALIZED = 0x80121204, CELL_MOUSE_ERROR_RESOURCE_ALLOCATION_FAIL...
1,379
C++
.h
61
20.918033
58
0.702063
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
5,879
cellDaisy.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellDaisy.h
#pragma once // libDaisy = 0x80410501 - 0x804105ff // Error codes enum CellDaisyError : u32 { CELL_DAISY_ERROR_NO_BEGIN = 0x80410501, CELL_DAISY_ERROR_INVALID_PORT_ATTACH = 0x80410502, CELL_DAISY_ERROR_NOT_IMPLEMENTED = 0x80410503, CELL_DAISY_ERROR_AGAIN = 0x80410511, CELL_DAISY_ERROR_INVAL = 0x80410512, CELL...
1,588
C++
.h
68
21.397059
66
0.731383
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
5,880
cellFontFT.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellFontFT.h
#pragma once #include "cellFont.h" #include "Emu/Memory/vm_ptr.h" struct CellFontLibraryConfigFT { vm::bptr<void> library; CellFontMemoryInterface MemoryIF; }; using CellFontRendererConfigFT = CellFontRendererConfig;
223
C++
.h
9
23.111111
56
0.838095
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
5,881
cellStorage.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellStorage.h
#pragma once enum CellStorageError : u32 { CELL_STORAGEDATA_ERROR_BUSY = 0x8002be01, CELL_STORAGEDATA_ERROR_INTERNAL = 0x8002be02, CELL_STORAGEDATA_ERROR_PARAM = 0x8002be03, CELL_STORAGEDATA_ERROR_ACCESS_ERROR = 0x8002be04, CELL_STORAGEDATA_ERROR_FAILURE = 0x8002be05 }; enum CellStorageDa...
1,002
C++
.h
31
30.645161
79
0.763731
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
5,882
cellVideoOut.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellVideoOut.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Video Out Error Codes enum CellVideoOutError : u32 { CELL_VIDEO_OUT_ERROR_NOT_IMPLEMENTED = 0x8002b220, CELL_VIDEO_OUT_ERROR_ILLEGAL_CONFIGURATION = 0x8002b221, CELL_VIDEO_OUT_ERROR_ILLEGAL_PARAMETER = 0x8002b222, CELL_VIDEO_OUT_ERROR_PARAMETER_OUT...
7,041
C++
.h
214
31.14486
147
0.717794
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
5,883
cellScreenshot.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellScreenshot.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Return Codes enum CellScreenShotError : u32 { CELL_SCREENSHOT_ERROR_INTERNAL = 0x8002d101, CELL_SCREENSHOT_ERROR_PARAM = 0x8002d102, CELL_SCREENSHOT_ERROR_DECODE = 0x8002d103, CELL_SCREENSHOT_ERROR_NOSPACE ...
1,286
C++
.h
44
27.431818
69
0.731549
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
5,884
cellUserInfo.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellUserInfo.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Error Codes enum CellUserInfoError : u32 { CELL_USERINFO_ERROR_BUSY = 0x8002c301, CELL_USERINFO_ERROR_INTERNAL = 0x8002c302, CELL_USERINFO_ERROR_PARAM = 0x8002c303, CELL_USERINFO_ERROR_NOUSER = 0x8002c304, }; // Enums enum CellUserInfoParamSize { CELL_...
1,413
C++
.h
62
21.177419
120
0.746826
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
5,885
cellPngDec.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellPngDec.h
#pragma once #include "Emu/Memory/vm_ptr.h" #include "png.h" enum : u32 { PNGDEC_CODEC_VERSION = 0x00420000, }; // Return Codes enum CellPngDecError { CELL_PNGDEC_ERROR_HEADER = 0x80611201, CELL_PNGDEC_ERROR_STREAM_FORMAT = 0x80611202, CELL_PNGDEC_ERROR_ARG = 0x80611203, CELL_PNGDEC_ERROR_SEQ ...
7,683
C++
.h
298
24.067114
145
0.770657
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
5,886
cellRudp.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellRudp.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Return Codes constexpr auto CELL_RUDP_SUCCESS = CELL_OK; enum CellRudpError : u32 { CELL_RUDP_ERROR_NOT_INITIALIZED = 0x80770001, CELL_RUDP_ERROR_ALREADY_INITIALIZED = 0x80770002, CELL_RUDP_ERROR_INVALID_CONTEXT_ID = 0x80770003, CELL_...
3,789
C++
.h
83
43.807229
153
0.645118
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
5,887
cellFs.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellFs.h
#pragma once #include "Emu/Memory/vm_ptr.h" // CellFsRingBuffer.copy enum : s32 { CELL_FS_ST_COPY = 0, CELL_FS_ST_COPYLESS = 1, }; struct CellFsRingBuffer { be_t<u64> ringbuf_size; be_t<u64> block_size; be_t<u64> transfer_rate; be_t<s32> copy; }; // cellFsStReadGetStatus status enum : u64 { CELL_FS_ST_IN...
728
C++
.h
36
18.583333
77
0.686589
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
5,888
cellImeJp.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellImeJp.h
#pragma once #include "Emu/Memory/vm_ptr.h" typedef vm::ptr<void> CellImeJpHandle; // Return Codes enum CellImeJpError : u32 { CELL_IMEJP_ERROR_ERR = 0x8002bf01, CELL_IMEJP_ERROR_CONTEXT = 0x8002bf11, CELL_IMEJP_ERROR_ALREADY_OPEN = 0x8002bf21, CELL_IMEJP_ERROR_DIC_OPEN ...
3,887
C++
.h
127
28.779528
124
0.720246
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
5,889
cellSysutil.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSysutil.h
#pragma once #include "Emu/Memory/vm_ptr.h" using CellSysutilUserId = u32; enum { CELL_SYSUTIL_ERROR_BASE_INTERNAL = 0x8002b000, CELL_SYSUTIL_ERROR_BASE_COMMON = 0x8002b100, CELL_SYSUTIL_ERROR_BASE_SYSTEMPARAM = 0x8002b200, CELL_SYSUTIL_ERROR_BASE_MSGDIALOG = 0x8...
11,635
C++
.h
304
36.496711
126
0.694284
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
5,890
cellGifDec.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellGifDec.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Return Codes enum CellGifDecError : u32 { CELL_GIFDEC_ERROR_OPEN_FILE = 0x80611300, CELL_GIFDEC_ERROR_STREAM_FORMAT = 0x80611301, CELL_GIFDEC_ERROR_SEQ = 0x80611302, CELL_GIFDEC_ERROR_ARG = 0x80611303, CELL_GIFDEC_ERROR_FATAL = 0x8061...
5,335
C++
.h
211
23.412322
145
0.770395
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
5,891
cellAudioOut.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellAudioOut.h
#pragma once #include "Emu/Audio/AudioBackend.h" #include "Emu/Memory/vm_ptr.h" // Error codes enum CellAudioOutError : u32 { CELL_AUDIO_OUT_ERROR_NOT_IMPLEMENTED = 0x8002b240, CELL_AUDIO_OUT_ERROR_ILLEGAL_CONFIGURATION = 0x8002b241, CELL_AUDIO_OUT_ERROR_ILLEGAL_PARAMETER = 0x8002b242, CELL_AUDIO_OUT...
5,284
C++
.h
192
25.692708
148
0.736062
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
5,892
cellSsl.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSsl.h
#pragma once enum CellSslError : u32 { CELL_SSL_ERROR_NOT_INITIALIZED = 0x80740001, CELL_SSL_ERROR_ALREADY_INITIALIZED = 0x80740002, CELL_SSL_ERROR_INITIALIZATION_FAILED = 0x80740003, CELL_SSL_ERROR_NO_BUFFER = 0x80740004, CELL_SSL_ERROR_INVALID_CERTIFICATE = 0x80740005, CELL_SSL_ERROR_UNRE...
8,160
C++
.h
197
39.182741
64
0.724884
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
5,893
sys_net_.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sys_net_.h
#pragma once #include "Emu/Cell/lv2/sys_net.h" #include "Emu/Memory/vm.h" struct sys_net_sockinfo_t { be_t<s32> s; be_t<s32> proto; be_t<s32> recv_queue_length; be_t<s32> send_queue_length; sys_net_in_addr local_adr; be_t<s32> local_port; sys_net_in_addr remote_adr; be_t<s32> remote_port; be_t<s32> state; };...
777
C++
.h
37
19.216216
37
0.709239
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
5,894
cellAtracXdec.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellAtracXdec.h
#pragma once #ifdef _MSC_VER #pragma warning(push, 0) #else #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wall" #pragma GCC diagnostic ignored "-Wextra" #pragma GCC diagnostic ignored "-Wold-style-cast" #endif extern "C" { #include "libavcodec/avcodec.h" } constexpr int averror_eof = AVERROR_EOF; // Wo...
10,171
C++
.h
257
37.661479
166
0.688621
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
5,895
cellPngEnc.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellPngEnc.h
#pragma once // Error Codes enum CellPngEncError { CELL_PNGENC_ERROR_ARG = 0x80611291, CELL_PNGENC_ERROR_SEQ = 0x80611292, CELL_PNGENC_ERROR_BUSY = 0x80611293, CELL_PNGENC_ERROR_EMPTY = 0x80611294, CELL_PNGENC_ERROR_RESET = 0x80611295, CELL_PNGENC_ERROR...
4,218
C++
.h
157
24.299363
58
0.717854
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
5,896
sys_crashdump.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sys_crashdump.h
#pragma once #include "Emu/Memory/vm_ptr.h" enum { SYS_CRASH_DUMP_MAX_LABEL_SIZE = 16, SYS_CRASH_DUMP_MAX_LOG_AREA = 127 // not actually defined in CELL }; struct sys_crash_dump_log_area_info_t { char label[SYS_CRASH_DUMP_MAX_LABEL_SIZE]; // 15 + 1 (0 terminated) vm::bptr<void> addr; be_t<u32> size; };
311
C++
.h
13
22.384615
68
0.716216
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
5,897
cellGcmSys.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellGcmSys.h
#pragma once #include "Emu/RSX/GCM.h" #include "Emu/Memory/vm_ptr.h" enum CellGcmError : u32 { CELL_GCM_ERROR_FAILURE = 0x802100ff, CELL_GCM_ERROR_NO_IO_PAGE_TABLE = 0x80210001, CELL_GCM_ERROR_INVALID_ENUM = 0x80210002, CELL_GCM_ERROR_INVALID_VALUE = 0x80210003, CELL_GCM_ERROR_INVALID_ALIGNME...
902
C++
.h
35
23.885714
52
0.752914
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
5,898
cellSync.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSync.h
#pragma once #include "Emu/Memory/vm_ptr.h" #include "Utilities/BitField.h" #include "Emu/Cell/ErrorCodes.h" // Return Codes enum CellSyncError : u32 { CELL_SYNC_ERROR_AGAIN = 0x80410101, CELL_SYNC_ERROR_INVAL = 0x80410102, CELL_SYNC_ERROR_NOSYS = 0x80410103, C...
6,347
C++
.h
296
18.780405
152
0.614407
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
5,899
cellPng.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellPng.h
#pragma once #include "Emu/Memory/vm_ptr.h" enum CellPngTxtType : s32 { CELL_PNG_TEXT = 0, CELL_PNG_ZTXT = 1, CELL_PNG_ITXT = 2, }; enum CellPngUnknownLocation : s32 { CELL_PNG_BEFORE_PLTE = 1, CELL_PNG_BEFORE_IDAT = 2, CELL_PNG_AFTER_IDAT = 8, }; struct CellPngPLTEentry { u8 red; u8 green; u8 blue; }; s...
2,619
C++
.h
153
15.411765
48
0.747442
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
5,900
cellRec.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellRec.h
#pragma once enum CellRecError : u32 { CELL_REC_ERROR_OUT_OF_MEMORY = 0x8002c501, CELL_REC_ERROR_FATAL = 0x8002c502, CELL_REC_ERROR_INVALID_VALUE = 0x8002c503, CELL_REC_ERROR_FILE_OPEN = 0x8002c504, CELL_REC_ERROR_FILE_WRITE = 0x8002c505, CELL_REC_ERROR_INVALID_STATE = 0x8002c506, CELL_REC_ERROR_...
8,594
C++
.h
206
39.640777
92
0.696647
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
5,901
cellMusicDecode.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellMusicDecode.h
#pragma once // Return Codes (CELL_MUSIC_DECODE2 codes are omitted if they are identical) enum CellMusicDecodeError : u32 { CELL_MUSIC_DECODE_CANCELED = 1, CELL_MUSIC_DECODE_DECODE_FINISHED = 0x8002C101, CELL_MUSIC_DECODE_ERROR_PARAM = 0x8002C102, CELL_MUSIC_DECODE_ERROR_BUSY ...
2,752
C++
.h
58
45.448276
88
0.719717
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
5,902
cellVpost.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellVpost.h
#pragma once #ifdef _MSC_VER #pragma warning(push, 0) #else #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wall" #pragma GCC diagnostic ignored "-Wextra" #pragma GCC diagnostic ignored "-Wold-style-cast" #endif extern "C" { #include "libswscale/swscale.h" } #ifdef _MSC_VER #pragma warning(pop) #else #pra...
12,345
C++
.h
323
36.352941
59
0.731125
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
5,903
cellCelpEnc.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellCelpEnc.h
#pragma once struct CellSpurs; // libCelpEnc = 0x80614001 - 0x806140ff // typedef void* CellCelpEncHandle; // Return Codes enum CellCelpEncError : u32 { CELL_CELPENC_ERROR_FAILED = 0x80614001, CELL_CELPENC_ERROR_SEQ = 0x80614002, CELL_CELPENC_ERROR_ARG = 0x80614003, CELL_CELPENC_ERROR_CORE_...
1,604
C++
.h
76
19.434211
45
0.759577
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
5,904
cellNetCtl.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellNetCtl.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Error Codes enum CellNetCtlError : u32 { CELL_NET_CTL_ERROR_NOT_INITIALIZED = 0x80130101, CELL_NET_CTL_ERROR_NOT_TERMINATED = 0x80130102, CELL_NET_CTL_ERROR_HANDLER_MAX = 0x80130103, CELL_NET_CTL_ERROR_ID_NOT_FOUND = 0x80130104...
10,746
C++
.h
305
33.455738
108
0.67227
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
5,905
sceNpTrophy.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sceNpTrophy.h
#pragma once #include "util/types.hpp" #include "util/endian.hpp" #include "Emu/Memory/vm_ptr.h" #include "Emu/Cell/ErrorCodes.h" #include <vector> // Error codes enum SceNpTrophyError : u32 { SCE_NP_TROPHY_ERROR_ALREADY_INITIALIZED = 0x80022901, SCE_NP_TROPHY_ERROR_NOT_INITIALIZED = 0x8002290...
5,775
C++
.h
147
37.469388
143
0.680464
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
5,906
cellAudioIn.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellAudioIn.h
#pragma once #include "util/types.hpp" #include "util/endian.hpp" // Error codes enum CellAudioInError : u32 { CELL_AUDIO_IN_ERROR_NOT_IMPLEMENTED = 0x8002b260, CELL_AUDIO_IN_ERROR_ILLEGAL_CONFIGURATION = 0x8002b261, CELL_AUDIO_IN_ERROR_ILLEGAL_PARAMETER = 0x8002b262, CELL_AUDIO_IN_ERROR_PARAMETER_OU...
1,914
C++
.h
80
22.2375
57
0.739846
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
5,907
cellL10n.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellL10n.h
#pragma once // L10nResult enum { ConversionOK, SRCIllegal, DSTExhausted, ConverterUnknown, }; // detection result enum { L10N_STR_UNKNOWN = (1 << 0), L10N_STR_ASCII = (1 << 1), L10N_STR_JIS = (1 << 2), L10N_STR_EUCJP = (1 << 3), L10N_STR_SJIS = (1 << 4), L10N_STR_UTF8 = (1 << 5), L10N_STR_...
1,459
C++
.h
85
15.258824
30
0.707816
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
5,908
cellHttp.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellHttp.h
#pragma once // libHttp = 0x80710001 - 0x80710fff // libHttps = 0x80710a01 - 0x80710aff enum { CELL_HTTP_MAX_USERNAME = 256, CELL_HTTP_MAX_PASSWORD = 256, }; enum { CELL_HTTP_NET_ERROR_TYPE_MASK = 0xffffff00, CELL_HTTP_NET_ERROR_MASK = 0xff, CELL_HTTP_ERROR_NET_RESOLVER = 0x80710100, CELL_HTTP_ERROR_NET_...
67,394
C++
.h
1,182
55.032995
210
0.689921
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
5,909
sys_lv2dbg.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sys_lv2dbg.h
#pragma once #include "Emu/Cell/lv2/sys_mutex.h" #include "Emu/Cell/lv2/sys_cond.h" #include "Emu/Cell/lv2/sys_rwlock.h" #include "Emu/Cell/lv2/sys_event.h" #include "Emu/Cell/lv2/sys_semaphore.h" #include "Emu/Cell/lv2/sys_lwmutex.h" #include "Emu/Cell/lv2/sys_lwcond.h" #include "Emu/Cell/lv2/sys_event_flag.h" #incl...
7,839
C++
.h
263
28.015209
81
0.770107
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
5,910
sceNp.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/sceNp.h
#pragma once #include "cellRtc.h" #include "Emu/Cell/ErrorCodes.h" #include <set> error_code sceNpInit(u32 poolsize, vm::ptr<void> poolptr); error_code sceNpTerm(); using np_in_addr_t = u32; using np_in_port_t = u16; using np_sa_family_t = u8; using np_socklen_t = u32; struct np_in_addr { np_in_addr_t np_s_...
68,072
C++
.h
1,666
39.045618
201
0.692883
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
5,911
cellJpgEnc.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellJpgEnc.h
#pragma once // Error Codes enum CellJpgEncError : u32 { CELL_JPGENC_ERROR_ARG = 0x80611191, CELL_JPGENC_ERROR_SEQ = 0x80611192, CELL_JPGENC_ERROR_BUSY = 0x80611193, CELL_JPGENC_ERROR_EMPTY = 0x80611194, CELL_JPGENC_ERROR_RESET = 0x80611195, CELL_JPGENC_ERROR_FATAL = 0x80611196, CELL_JPGENC_ERROR_STREAM...
1,090
C++
.h
35
29.142857
49
0.782983
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
5,912
cellAtrac.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellAtrac.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Return Codes enum CellAtracError : u32 { CELL_ATRAC_ERROR_API_FAIL = 0x80610301, CELL_ATRAC_ERROR_READSIZE_OVER_BUFFER = 0x80610311, CELL_ATRAC_ERROR_UNKNOWN_FORMAT = 0x80610312, CELL_ATRAC_ERROR_READSIZE_IS_TOO_SMALL = 0x...
1,883
C++
.h
54
33.148148
59
0.690999
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
5,913
cellMsgDialog.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellMsgDialog.h
#pragma once #include "util/types.hpp" #include "util/atomic.hpp" #include "Utilities/BitField.h" #include "Emu/Memory/vm_ptr.h" #include "Emu/Cell/ErrorCodes.h" #include <string> #include <functional> enum { CELL_MSGDIALOG_PROGRESSBAR_STRING_SIZE = 64, CELL_MSGDIALOG_STRING_SIZE = 512, }; enum CellMs...
3,891
C++
.h
111
33.198198
257
0.723835
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
5,914
cellSync2.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellSync2.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Return Codes enum CellSync2Error : u32 { CELL_SYNC2_ERROR_AGAIN = 0x80410C01, CELL_SYNC2_ERROR_INVAL = 0x80410C02, CELL_SYNC2_ERROR_NOMEM = 0x80410C04, CELL_SYNC2_ERROR_DEADLK = 0x80410C08, CELL_SYNC2_ERROR_PERM = 0x80410C09, CELL_SYNC2_ERROR_BUSY = 0x80410C0A, CE...
2,799
C++
.h
110
23.709091
67
0.767904
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
5,915
cellAtracMulti.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellAtracMulti.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Return Codes enum CellAtracMultiError : u32 { CELL_ATRACMULTI_ERROR_API_FAIL = 0x80610b01, CELL_ATRACMULTI_ERROR_READSIZE_OVER_BUFFER = 0x80610b11, CELL_ATRACMULTI_ERROR_UNKNOWN_FORMAT = 0x80610b12, CELL_ATRACMULTI_ERROR_READSIZ...
2,098
C++
.h
55
36.418182
64
0.712181
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
5,916
cellVideoUpload.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellVideoUpload.h
#pragma once #include "Emu/Memory/vm_ptr.h" struct CellVideoUploadOption { be_t<s32> type; be_t<u64> value; }; struct CellVideoUploadParam { be_t<s32> siteID; vm::bcptr<char> pFilePath; union { struct { vm::bcptr<char> pClientId; vm::bcptr<char> pDeveloperKey; vm::bcptr<char> pTitle_UTF8; vm::b...
1,894
C++
.h
60
29.416667
115
0.713738
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
5,917
cellAdec.h
RPCS3_rpcs3/rpcs3/Emu/Cell/Modules/cellAdec.h
#pragma once #include "Emu/Memory/vm_ptr.h" // Error Codes enum CellAdecError : u32 { CELL_ADEC_ERROR_FATAL = 0x80610001, CELL_ADEC_ERROR_SEQ = 0x80610002, CELL_ADEC_ERROR_ARG = 0x80610003, CELL_ADEC_ERROR_BUSY = 0x80610004, CELL_ADEC_ERROR_EMPTY = 0x80610005, CELL_ADEC_ERROR_CELP_BUSY =...
30,637
C++
.h
1,002
28.576846
209
0.70242
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