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
43,456
file_handle.h
LibreSprite_LibreSprite/src/base/file_handle.h
// Aseprite Base Library // Copyright (c) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include <cstdio> #include <memory> #include <string> namespace base { typedef std::shared_ptr<FILE> FileHandle; FILE* o...
659
C++
.h
16
39.1875
96
0.759812
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,458
path.h
LibreSprite_LibreSprite/src/base/path.h
// Aseprite Base Library // Copyright (c) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include <string> namespace base { // Default path separator (on Windows it is '\' and on Unix-like systems it is '/'). extern ...
2,038
C++
.h
38
50.657895
91
0.743822
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,465
debug.h
LibreSprite_LibreSprite/src/base/debug.h
// Aseprite Base Library // Copyright (c) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once int base_assert(const char* condition, const char* file, int lineNum); void base_trace(const char* msg, ...); #undef ASSERT #undef T...
1,052
C++
.h
30
31.866667
75
0.470472
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,466
fstream_path.h
LibreSprite_LibreSprite/src/base/fstream_path.h
// Aseprite Base Library // Copyright (c) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include "base/string.h" #ifdef _WIN32 #ifdef __MINGW32__ #define FSTREAM_PATH(path) (std::string(path).c_str()) #else #d...
456
C++
.h
16
26.375
62
0.712329
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
43,467
injection.h
LibreSprite_LibreSprite/src/base/injection.h
// Aseprite Base Library // Copyright (c) 2021 LibreSprite contributors // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. /* This is an implementation of a simple container for Dependency Injection. - What is Dependency Injection? When you break your code up i...
10,836
C++
.h
307
30.993485
119
0.690469
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,469
signal.h
LibreSprite_LibreSprite/src/base/signal.h
// Aseprite Base Library // Copyright (c) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include "obs/signal.h" namespace base { template<typename R> using Signal0 = obs::signal<R()>; template<typename R, typename A1> ...
465
C++
.h
15
29.533333
60
0.751693
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,470
fs.h
LibreSprite_LibreSprite/src/base/fs.h
// Aseprite Base Library // Copyright (c) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include <string> #include <vector> namespace base { class Time; bool is_file(const std::string& path); bool is_directory(co...
1,302
C++
.h
34
35.588235
65
0.728868
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,474
disable_copying.h
LibreSprite_LibreSprite/src/base/disable_copying.h
// Aseprite Base Library // Copyright (c) 2001-2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #define DISABLE_COPYING(ClassName) \ private: \ ClassName(const ClassName&); ...
381
C++
.h
10
35.9
60
0.615176
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,475
string.h
LibreSprite_LibreSprite/src/base/string.h
// Aseprite Base Library // Copyright (c) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include <string> #include <vector> #include <iterator> namespace base { std::vector<std::string> split(const std::string& ...
3,616
C++
.h
113
25.823009
162
0.606628
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,478
with_handle.h
LibreSprite_LibreSprite/src/base/with_handle.h
// LibreSprite - Copyright (C) 2023 LibreSprite contributors // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. #pragma once #include <memory> #include <type_traits> #include <ty...
1,656
C++
.h
60
23.833333
74
0.649621
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,479
fs_unix.h
LibreSprite_LibreSprite/src/base/fs_unix.h
// Aseprite Base Library // Copyright (c) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #include <dirent.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #include <climits> // Required for PATH_MAX #inc...
5,391
C++
.h
207
22.729469
79
0.636328
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,481
ints.h
LibreSprite_LibreSprite/src/base/ints.h
// Aseprite Base Library // Copyright (c) 2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include "base/config.h" #include <stdint.h>
228
C++
.h
8
27.125
60
0.760369
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,482
dll.h
LibreSprite_LibreSprite/src/base/dll.h
// Aseprite Base Library // Copyright (c) 2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include <string> namespace base { typedef void* dll; typedef void* dll_proc; dll load_dll(const std::string& filename); void unload_dl...
555
C++
.h
18
29.333333
63
0.760377
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
43,484
clamp.h
LibreSprite_LibreSprite/src/base/clamp.h
// Aseprite Base Library // Copyright (c) 2001-2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once namespace base { template<typename T> T clamp(const T& value, const T& low, const T& high) { return (value > high ? high: ...
411
C++
.h
14
24.571429
60
0.638677
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,485
trim_string.h
LibreSprite_LibreSprite/src/base/trim_string.h
// Aseprite Base Library // Copyright (c) 2001-2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include <string> namespace base { void trim_string(const std::string& input, std::string& output); }
294
C++
.h
10
27.7
66
0.756272
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,491
pi.h
LibreSprite_LibreSprite/src/base/pi.h
// Aseprite Base Library // Copyright (c) 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #ifndef PI #define PI 3.14159265358979323846 #endif
245
C++
.h
9
26
60
0.747863
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,494
pref_types.h
LibreSprite_LibreSprite/src/gen/pref_types.h
// Aseprite Code Generator // Copyright (c) 2014 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include <string> #include "tinyxml2.h" void gen_pref_header(tinyxml2::XMLDocument* doc, const std::string& inputFn); void gen_pref_imp...
379
C++
.h
10
36.6
77
0.770492
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,495
ui_class.h
LibreSprite_LibreSprite/src/gen/ui_class.h
// Aseprite Code Generator // Copyright (c) 2014 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include <string> #include "tinyxml2.h" void gen_ui_class(tinyxml2::XMLDocument* doc, const std::string& inputFn, const std::string& wi...
329
C++
.h
9
35.222222
103
0.766562
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,496
common.h
LibreSprite_LibreSprite/src/gen/common.h
// Aseprite Code Generator // Copyright (c) 2014, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include <cctype> #include <string> inline std::string convert_xmlid_to_cppid(const std::string& xmlid, bool firstLetterUpperCase...
650
C++
.h
25
22.72
94
0.672026
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,497
skin_class.h
LibreSprite_LibreSprite/src/gen/skin_class.h
// Aseprite Code Generator // Copyright (c) 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #pragma once #include <string> #include "tinyxml2.h" void gen_skin_class(tinyxml2::XMLDocument* doc, const std::string& inputFn);
302
C++
.h
9
32.222222
76
0.768966
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,498
msgpack.h
LibreSprite_LibreSprite/src/wacom/msgpack.h
/* ------------------------------- msgpack.h -------------------------------- */ /*------------------------------------------------------------------------------ Selected message unpacking macros from windowsx.h to circumvent compile-time memory headaches. The text and information contained in this file may be freely ...
1,604
C++
.h
26
60.307692
102
0.512056
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,499
pktdef.h
LibreSprite_LibreSprite/src/wacom/pktdef.h
/* -------------------------------- pktdef.h -------------------------------- */ /* Combined 16 & 32-bit version. */ /*------------------------------------------------------------------------------ The text and information contained in this file may be freely used, copied, or distributed without compensation or licens...
7,615
C++
.h
234
30.457265
110
0.671835
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
true
false
false
true
false
false
43,500
wintab.h
LibreSprite_LibreSprite/src/wacom/wintab.h
/* -------------------------------- wintab.h -------------------------------- */ /* Combined 16 & 32-bit version. */ /*------------------------------------------------------------------------------ The text and information contained in this file may be freely used, copied, or distributed without compensation or licens...
23,543
C++
.h
799
27.55194
98
0.694705
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
true
false
false
true
false
false
43,501
http_response.h
LibreSprite_LibreSprite/src/net/http_response.h
// Aseprite Network Library // Copyright (c) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifndef NET_HTTP_RESPONSE_H_INCLUDED #define NET_HTTP_RESPONSE_H_INCLUDED #pragma once #include "base/disable_copying.h" #include <cstddef> #i...
926
C++
.h
33
25.757576
68
0.732426
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,502
http_request.h
LibreSprite_LibreSprite/src/net/http_request.h
// Aseprite Network Library // Copyright (c) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifndef NET_HTTP_REQUEST_H_INCLUDED #define NET_HTTP_REQUEST_H_INCLUDED #pragma once #include "base/disable_copying.h" #include <string> #incl...
834
C++
.h
30
25.9
65
0.776797
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,503
aseprite_thumb_creator.h
LibreSprite_LibreSprite/desktop/kde/aseprite_thumb_creator.h
// Aseprite Desktop Integration Module // Copyright (C) 2016 Gabriel Rauter // // Licensed under the the MIT License (https://opensource.org/licenses/MIT). #pragma once #include <QLoggingCategory> Q_DECLARE_LOGGING_CATEGORY(LOG_ASEPRITE_THUMBCREATOR) #include <kio/thumbcreator.h> class AsepriteThumbCreator : publi...
461
C++
.h
13
33.846154
80
0.790541
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,508
MapperSxROM.cpp
amhndu_SimpleNES/src/MapperSxROM.cpp
#include "MapperSxROM.h" #include "Log.h" namespace sn { MapperSxROM::MapperSxROM(Cartridge &cart, std::function<void(void)> mirroring_cb) : Mapper(cart, Mapper::SxROM), m_mirroringCallback(mirroring_cb), m_mirroing(Horizontal), m_modeCHR(0), m_modePRG(3), m_tempRegi...
5,625
C++
.cpp
152
24
124
0.476923
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,510
MapperGxROM.cpp
amhndu_SimpleNES/src/MapperGxROM.cpp
#include "MapperGxROM.h" #include "Log.h" namespace sn { MapperGxROM::MapperGxROM(Cartridge &cart, std::function<void(void)> mirroring_cb) : Mapper(cart, Mapper::GxROM), m_mirroring(Vertical), m_mirroringCallback(mirroring_cb) {} Byte MapperGxROM::readPRG(Address address) { ...
1,159
C++
.cpp
44
19.181818
87
0.576715
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,511
MapperUxROM.cpp
amhndu_SimpleNES/src/MapperUxROM.cpp
#include "MapperUxROM.h" #include "Log.h" namespace sn { MapperUxROM::MapperUxROM(Cartridge &cart) : Mapper(cart, Mapper::UxROM), m_selectPRG(0) { if (cart.getVROM().size() == 0) { m_usesCharacterRAM = true; m_characterRAM.resize(0x2000); LOG(...
1,306
C++
.cpp
44
21.909091
99
0.563694
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,515
MapperColorDreams.cpp
amhndu_SimpleNES/src/MapperColorDreams.cpp
#include "MapperColorDreams.h" #include "Log.h" namespace sn { MapperColorDreams::MapperColorDreams(Cartridge &cart,std::function<void(void)> mirroring_cb) : Mapper(cart, Mapper::ColorDreams), m_mirroring(Vertical), m_mirroringCallback(mirroring_cb) {} Byte MapperColorDreams::rea...
1,105
C++
.cpp
39
21.128205
98
0.596958
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,517
Mapper.cpp
amhndu_SimpleNES/src/Mapper.cpp
#include "Mapper.h" #include "CPUOpcodes.h" #include "MapperNROM.h" #include "MapperSxROM.h" #include "MapperMMC3.h" #include "MapperUxROM.h" #include "MapperCNROM.h" #include "MapperAxROM.h" #include "MapperColorDreams.h" #include "MapperGxROM.h" namespace sn { NameTableMirroring Mapper::getNameTableMirroring() ...
1,624
C++
.cpp
51
21.941176
168
0.565882
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,518
MapperMMC3.cpp
amhndu_SimpleNES/src/MapperMMC3.cpp
#include "MapperMMC3.h" #include "Log.h" namespace sn { MapperMMC3::MapperMMC3(Cartridge &cart, std::function<void()> interrupt_cb, std::function<void(void)> mirroring_cb) : Mapper(cart, Mapper::MMC3), m_targetRegister(0), m_prgBankMode(false), m_chrInversion(false), m_bankRegis...
7,216
C++
.cpp
204
23.078431
121
0.474499
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,519
MapperCNROM.cpp
amhndu_SimpleNES/src/MapperCNROM.cpp
#include "MapperCNROM.h" #include "Log.h" namespace sn { MapperCNROM::MapperCNROM(Cartridge &cart) : Mapper(cart, Mapper::CNROM), m_selectCHR(0) { if (cart.getROM().size() == 0x4000) //1 bank { m_oneBank = true; } else //2 banks { ...
968
C++
.cpp
37
19.297297
95
0.558315
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,521
MapperAxROM.cpp
amhndu_SimpleNES/src/MapperAxROM.cpp
#include "MapperAxROM.h" #include "Log.h" namespace sn { MapperAxROM::MapperAxROM(Cartridge &cart, std::function<void(void)> mirroring_cb) : Mapper(cart, Mapper::AxROM), m_mirroring(OneScreenLower), m_mirroringCallback(mirroring_cb), m_prgBank(0) { if (cart.getROM().size...
1,516
C++
.cpp
57
18.754386
87
0.552105
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,526
MapperColorDreams.h
amhndu_SimpleNES/include/MapperColorDreams.h
#ifndef MAPPERCOLORDREAMS_H_INCLUDED #define MAPPERCOLORDREAMS_H_INCLUDED #include "Mapper.h" namespace sn { class MapperColorDreams : public Mapper { public: MapperColorDreams(Cartridge &cart, std::function<void(void)> mirroring_cb); NameTableMirroring getNameTableMirroring(); voi...
702
C++
.h
22
26.136364
83
0.70963
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,529
MapperAxROM.h
amhndu_SimpleNES/include/MapperAxROM.h
#include "Mapper.h" #include "PictureBus.h" namespace sn { class MapperAxROM : public Mapper { public: MapperAxROM(Cartridge &cart, std::function<void(void)> mirroring_cb); void writePRG(Address address, Byte value); Byte readPRG(Address address); Byte readCHR(Address addr...
620
C++
.h
20
24.7
77
0.678451
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,534
MapperMMC3.h
amhndu_SimpleNES/include/MapperMMC3.h
#pragma once #include "Mapper.h" #include <array> namespace sn { class MapperMMC3 : public Mapper { public: MapperMMC3(Cartridge &cart, std::function<void()> interrupt_cb, std::function<void(void)> mirroring_cb); Byte readPRG(Address addr); void writePRG(Address addr, Byte value); NameTableMir...
1,084
C++
.h
37
24.891892
108
0.711111
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,538
MapperGxROM.h
amhndu_SimpleNES/include/MapperGxROM.h
#include"Mapper.h" namespace sn { class MapperGxROM : public Mapper { public: MapperGxROM(Cartridge &cart, std::function<void(void)> mirroring_cb); NameTableMirroring getNameTableMirroring(); void writePRG(Address address, Byte value); Byte readPRG(Address address); ...
611
C++
.h
20
23.85
77
0.670085
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,539
MainBus.h
amhndu_SimpleNES/include/MainBus.h
#ifndef MEMORY_H #define MEMORY_H #include <vector> #include <unordered_map> #include <functional> #include <memory> #include "Cartridge.h" #include "Mapper.h" namespace sn { enum IORegisters { PPUCTRL = 0x2000, PPUMASK, PPUSTATUS, OAMADDR, OAMDATA, PPUSCROL, ...
1,406
C++
.h
50
20.64
107
0.598373
amhndu/SimpleNES
4,819
1,118
7
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
43,585
ARAPlugin.cpp
werman_noise-suppression-for-voice/external/JUCE/extras/AudioPluginHost/Source/Plugins/ARAPlugin.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
1,182
C++
.cpp
22
48.772727
110
0.644991
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,589
BinaryData.cpp
werman_noise-suppression-for-voice/external/JUCE/extras/Projucer/JuceLibraryCode/BinaryData.cpp
/* ==================================== JUCER_BINARY_RESOURCE ==================================== This is an auto-generated file: Any edits you make may be overwritten! */ #include <cstring> namespace BinaryData { //================== JuceLV2Defines.h.in ================== static const unsigned cha...
893,677
C++
.cpp
8,605
101.688786
254
0.663782
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
true
false
43,591
jucer_OpenDocumentManager.cpp
werman_noise-suppression-for-voice/external/JUCE/extras/Projucer/Source/CodeEditor/jucer_OpenDocumentManager.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
17,488
C++
.cpp
440
30.620455
146
0.574144
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,616
jucer_AudioPluginARAPlaybackRendererTemplate.cpp
werman_noise-suppression-for-voice/external/JUCE/extras/Projucer/Source/BinaryData/Templates/jucer_AudioPluginARAPlaybackRendererTemplate.cpp
/* ============================================================================== This file was auto-generated! It contains the basic framework code for an ARA playback renderer implementation. ============================================================================== */ %%araplaybackrende...
5,322
C++
.cpp
90
45.066667
206
0.584105
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
true
false
43,624
jucer_AudioPluginARADocumentControllerTemplate.cpp
werman_noise-suppression-for-voice/external/JUCE/extras/Projucer/Source/BinaryData/Templates/jucer_AudioPluginARADocumentControllerTemplate.cpp
/* ============================================================================== This file was auto-generated! It contains the basic framework code for an ARA document controller implementation. ============================================================================== */ %%aradocumentcon...
1,916
C++
.cpp
34
52.352941
154
0.610397
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
true
false
43,633
jucer_Main.cpp
werman_noise-suppression-for-voice/external/JUCE/extras/Projucer/Source/Application/jucer_Main.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
1,786
C++
.cpp
35
47.057143
81
0.710725
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,641
jucer_ProjectContentComponent.cpp
werman_noise-suppression-for-voice/external/JUCE/extras/Projucer/Source/Project/UI/jucer_ProjectContentComponent.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
31,331
C++
.cpp
750
31.374667
150
0.602037
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,648
jucer_Icons.cpp
werman_noise-suppression-for-voice/external/JUCE/extras/Projucer/Source/Utility/UI/jucer_Icons.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
147,098
C++
.cpp
626
229.103834
285
0.693739
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,653
jucer_NewFileWizard.cpp
werman_noise-suppression-for-voice/external/JUCE/extras/Projucer/Source/Utility/Helpers/jucer_NewFileWizard.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
11,554
C++
.cpp
238
36.491597
171
0.554732
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,679
juce_DryWetMixer.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_dsp/processors/juce_DryWetMixer.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
14,349
C++
.cpp
295
36.027119
130
0.543735
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,682
juce_ProcessorChain_test.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_dsp/processors/juce_ProcessorChain_test.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
5,608
C++
.cpp
132
30.962121
100
0.552164
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,710
juce_SampleRateHelpers.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_devices/audio_io/juce_SampleRateHelpers.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. The code included in this file is provid...
1,566
C++
.cpp
37
35.540541
86
0.60783
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,805
juce_Optional_test.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_core/containers/juce_Optional_test.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. The code included in this file is provid...
19,708
C++
.cpp
502
25.486056
133
0.454737
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,812
juce_ListenerList.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_core/containers/juce_ListenerList.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. The code included in this file is provid...
11,815
C++
.cpp
256
26.191406
126
0.416922
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,828
juce_DirectoryIterator.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_core/files/juce_DirectoryIterator.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. The code included in this file is provid...
5,727
C++
.cpp
127
32.637795
137
0.561867
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
true
true
false
43,857
juce_android_AndroidDocument.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_core/native/juce_android_AndroidDocument.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2020 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. The code included in this file is provid...
43,200
C++
.cpp
870
34.966667
154
0.554224
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,890
juce_KeyboardComponentBase.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_utils/gui/juce_KeyboardComponentBase.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
14,794
C++
.cpp
370
30.840541
127
0.559059
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,894
juce_MidiKeyboardComponent.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_utils/gui/juce_MidiKeyboardComponent.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
15,462
C++
.cpp
390
31.802564
165
0.612357
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,895
juce_MPEKeyboardComponent.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_utils/gui/juce_MPEKeyboardComponent.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
18,504
C++
.cpp
403
34.342432
142
0.58291
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,916
juce_android_InAppPurchases.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_product_unlocking/native/juce_android_InAppPurchases.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
33,753
C++
.cpp
564
47.092199
209
0.595923
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,919
juce_ARAAudioReaders.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_formats/format/juce_ARAAudioReaders.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
12,128
C++
.cpp
248
38.58871
167
0.64886
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
43,925
juce_BufferingAudioFormatReader.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_formats/format/juce_BufferingAudioFormatReader.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
11,333
C++
.cpp
273
30.67033
124
0.571285
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
true
true
false
43,954
juce_Rectangle_test.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_graphics/geometry/juce_Rectangle_test.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
1,637
C++
.cpp
37
37.297297
82
0.599237
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
true
true
true
false
43,964
juce_linux_Fonts.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_graphics/native/juce_linux_Fonts.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
8,332
C++
.cpp
182
32.868132
117
0.566476
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,034
juce_audio_plugin_client_LV2.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_plugin_client/juce_audio_plugin_client_LV2.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
912
C++
.cpp
18
45.388889
81
0.605923
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,039
juce_audio_plugin_client_ARA.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_plugin_client/juce_audio_plugin_client_ARA.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
913
C++
.cpp
18
45.444444
81
0.606371
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,044
juce_LV2_Client.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_plugin_client/LV2/juce_LV2_Client.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
65,923
C++
.cpp
1,453
32.57192
162
0.548261
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,045
juce_LV2TurtleDumpProgram.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_plugin_client/LV2/juce_LV2TurtleDumpProgram.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
2,557
C++
.cpp
62
34.274194
152
0.612261
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,047
juce_ARA_Wrapper.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_plugin_client/ARA/juce_ARA_Wrapper.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
2,091
C++
.cpp
48
39.083333
122
0.688467
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,104
juce_FileBasedDocument.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_extra/documents/juce_FileBasedDocument.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
44,210
C++
.cpp
952
28.431723
127
0.450822
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
true
true
true
false
44,105
juce_gui_basics.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/juce_gui_basics.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
15,518
C++
.cpp
348
40.675287
138
0.748238
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
true
false
44,114
juce_FocusTraverser.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/components/juce_FocusTraverser.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
14,372
C++
.cpp
271
37.143911
142
0.53013
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
true
true
true
false
44,122
juce_FlexBox.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/layout/juce_FlexBox.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
53,350
C++
.cpp
939
41.855165
196
0.545509
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
true
true
false
44,126
juce_Grid.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/layout/juce_Grid.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
54,344
C++
.cpp
1,076
35.895911
135
0.510287
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
true
false
44,143
juce_TreeView.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/widgets/juce_TreeView.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
66,479
C++
.cpp
1,752
27.615868
166
0.565408
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
true
false
44,148
juce_ImageComponent.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/widgets/juce_ImageComponent.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
2,929
C++
.cpp
85
28.8
91
0.623214
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
true
true
true
false
44,170
juce_JUCESplashScreen.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/misc/juce_JUCESplashScreen.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
10,434
C++
.cpp
165
55.412121
2,023
0.615422
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,171
juce_DropShadower.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/misc/juce_DropShadower.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
10,688
C++
.cpp
266
30.25188
129
0.592182
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
true
true
false
44,172
juce_FocusOutline.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/misc/juce_FocusOutline.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
4,954
C++
.cpp
146
26.041096
91
0.585835
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
true
true
true
false
44,181
juce_AccessibilityHandler.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/accessibility/juce_AccessibilityHandler.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
10,213
C++
.cpp
271
30.243542
154
0.65001
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
true
true
false
44,210
juce_android_Windowing.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/native/juce_android_Windowing.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
112,663
C++
.cpp
1,755
53.033048
303
0.605824
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
true
true
false
44,211
juce_win32_AccessibilityElement.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/native/accessibility/juce_win32_AccessibilityElement.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
21,349
C++
.cpp
455
33.285714
140
0.5634
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
true
true
true
false
44,212
juce_win32_Accessibility.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/native/accessibility/juce_win32_Accessibility.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
11,111
C++
.cpp
253
35.426877
147
0.646779
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
true
true
false
44,213
juce_AccessibilityTextHelpers_test.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/native/accessibility/juce_AccessibilityTextHelpers_test.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2020 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
11,093
C++
.cpp
128
72.078125
219
0.393914
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,214
juce_android_Accessibility.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/native/accessibility/juce_android_Accessibility.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
40,317
C++
.cpp
746
36.910188
153
0.543257
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
true
true
false
44,218
juce_MouseCursor.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/mouse/juce_MouseCursor.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
4,943
C++
.cpp
115
36.982609
109
0.674663
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
true
true
true
false
44,229
juce_KeyboardFocusTraverser.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/keyboard/juce_KeyboardFocusTraverser.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
10,123
C++
.cpp
206
36.864078
136
0.592986
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
true
true
true
false
44,240
juce_TooltipWindow.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_gui_basics/windows/juce_TooltipWindow.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
7,920
C++
.cpp
205
30.195122
124
0.631123
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
true
true
false
44,257
juce_linux_Messaging.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_events/native/juce_linux_Messaging.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. The code included in this file is provid...
12,836
C++
.cpp
313
31.271565
111
0.569383
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,259
juce_ScopedLowPowerModeDisabler.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_events/native/juce_ScopedLowPowerModeDisabler.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. The code included in this file is provid...
1,919
C++
.cpp
46
34.847826
125
0.603589
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
true
true
false
44,266
juce_gles2.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_opengl/opengl/juce_gles2.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
114,699
C++
.cpp
1,261
85.340206
312
0.695953
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,267
juce_OpenGLPixelFormat.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_opengl/opengl/juce_OpenGLPixelFormat.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
2,438
C++
.cpp
59
31.372881
83
0.597535
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,268
juce_gl.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_opengl/opengl/juce_gl.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
336,922
C++
.cpp
3,762
83.849814
510
0.677816
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,270
juce_OpenGLContext.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_opengl/opengl/juce_OpenGLContext.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
47,417
C++
.cpp
1,207
28.775476
155
0.587185
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,271
juce_OpenGLHelpers.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_opengl/opengl/juce_OpenGLHelpers.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
6,866
C++
.cpp
187
28.983957
121
0.601128
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,276
juce_audio_processors_lv2_libs.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_processors/juce_audio_processors_lv2_libs.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
1,147
C++
.cpp
25
41.08
81
0.640653
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,277
juce_audio_processors_ara.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_processors/juce_audio_processors_ara.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
1,493
C++
.cpp
27
50.592593
131
0.666667
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,278
juce_audio_processors.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_processors/juce_audio_processors.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
7,976
C++
.cpp
189
35.449735
106
0.670565
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
true
false
44,288
juce_AudioParameterBool.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_processors/utilities/juce_AudioParameterBool.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
4,140
C++
.cpp
75
40.933333
126
0.53118
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,291
juce_NativeScaleFactorNotifier.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_processors/utilities/juce_NativeScaleFactorNotifier.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
2,018
C++
.cpp
50
35.26
115
0.678202
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
44,298
juce_ARA_utils.cpp
werman_noise-suppression-for-voice/external/JUCE/modules/juce_audio_processors/utilities/ARA/juce_ARA_utils.cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
1,134
C++
.cpp
24
42.791667
81
0.652651
werman/noise-suppression-for-voice
4,804
229
81
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false