hexsha
stringlengths
40
40
size
int64
7
1.05M
ext
stringclasses
13 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
4
269
max_stars_repo_name
stringlengths
5
109
max_stars_repo_head_hexsha
stringlengths
40
40
max_stars_repo_licenses
listlengths
1
9
max_stars_count
int64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
4
269
max_issues_repo_name
stringlengths
5
116
max_issues_repo_head_hexsha
stringlengths
40
40
max_issues_repo_licenses
listlengths
1
9
max_issues_count
int64
1
48.5k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
4
269
max_forks_repo_name
stringlengths
5
116
max_forks_repo_head_hexsha
stringlengths
40
40
max_forks_repo_licenses
listlengths
1
9
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
7
1.05M
avg_line_length
float64
1.21
330k
max_line_length
int64
6
990k
alphanum_fraction
float64
0.01
0.99
author_id
stringlengths
2
40
de3f0e25654f5c1a369c26c7b6896c2122a2fc29
252
hpp
C++
src/EventListener.hpp
OMKE/TalesOfAlester
20ce17cf68ad956fc9d6f7cc3ac73a11c61f1118
[ "MIT" ]
null
null
null
src/EventListener.hpp
OMKE/TalesOfAlester
20ce17cf68ad956fc9d6f7cc3ac73a11c61f1118
[ "MIT" ]
1
2019-06-23T00:09:39.000Z
2019-06-24T19:15:13.000Z
src/EventListener.hpp
OMKE/TalesOfAlester
20ce17cf68ad956fc9d6f7cc3ac73a11c61f1118
[ "MIT" ]
null
null
null
#ifndef EVENT_LISTENER_H #define EVENT_LISTENER_H #include "SDL2/SDL.h" /* ** INTERFACE ** desc: Interface that listens for events */ class EventListener { public: virtual void listen(SDL_Event &e) = 0; }; #endif // EVENT_LISTENER_H
14.823529
46
0.690476
OMKE
de3ffbb91f35912b778bef0b688156e258045e0f
13,301
cpp
C++
net.ssa/xr_3da/xrGame/MainUI.cpp
ixray-team/xray-vss-archive
b245c8601dcefb505b4b51f58142da6769d4dc92
[ "Linux-OpenIB" ]
1
2022-03-26T17:00:19.000Z
2022-03-26T17:00:19.000Z
xr_3da/xrGame/MainUI.cpp
ixray-team/xray-vss-archive
b245c8601dcefb505b4b51f58142da6769d4dc92
[ "Linux-OpenIB" ]
null
null
null
xr_3da/xrGame/MainUI.cpp
ixray-team/xray-vss-archive
b245c8601dcefb505b4b51f58142da6769d4dc92
[ "Linux-OpenIB" ]
1
2022-03-26T17:00:21.000Z
2022-03-26T17:00:21.000Z
#include "stdafx.h" #include "MainUI.h" #include "UI/UIDialogWnd.h" #include "ui/UIMessageBoxEx.h" #include "UICursor.h" #include "HUDManager.h" #include "../xr_IOConsole.h" #include "../IGame_Level.h" #include "../CameraManager.h" #include "xr_Level_controller.h" #include "ui\UITextureMaster.h" #include "ui...
24.495396
98
0.62469
ixray-team
de4224e4307f30cf5295d56be1e578b5f2e27acc
879
cpp
C++
chap10/Page386_predicate.cpp
sjbarigye/CPP_Primer
d9d31a73a45ca46909bae104804fc9503ab242f2
[ "Apache-2.0" ]
50
2016-01-08T14:28:53.000Z
2022-01-21T12:55:00.000Z
chap10/Page386_predicate.cpp
sjbarigye/CPP_Primer
d9d31a73a45ca46909bae104804fc9503ab242f2
[ "Apache-2.0" ]
2
2017-06-05T16:45:20.000Z
2021-04-17T13:39:24.000Z
chap10/Page386_predicate.cpp
sjbarigye/CPP_Primer
d9d31a73a45ca46909bae104804fc9503ab242f2
[ "Apache-2.0" ]
18
2016-08-17T15:23:51.000Z
2022-03-26T18:08:43.000Z
#include <iostream> #include <algorithm> #include <string> #include <vector> using std::cout; using std::endl; using std::string; using std::vector; bool isShorter(const string &s1, const string &s2) { return s1.size() < s2.size(); } void elimDups(vector<string> &words) { sort(words.begin(), words.end()); a...
26.636364
108
0.612059
sjbarigye
de44d8873b4bd0425df24b1db6e97e6e2c4c982c
5,204
cpp
C++
main.cpp
maltsevda/FakeD3D9
9d14b19cef9a9795847961101aa5378491624af5
[ "MIT" ]
12
2019-05-14T04:50:06.000Z
2022-03-22T09:28:54.000Z
main.cpp
maltsevda/FakeD3D9
9d14b19cef9a9795847961101aa5378491624af5
[ "MIT" ]
null
null
null
main.cpp
maltsevda/FakeD3D9
9d14b19cef9a9795847961101aa5378491624af5
[ "MIT" ]
2
2020-07-06T18:45:38.000Z
2022-02-06T23:40:49.000Z
#define WIN32_LEAN_AND_MEAN #include <windows.h> #include "FakeDirect3D9.h" struct OriginalLibrary { HMODULE hDll; FARPROC D3DPERF_BeginEvent; FARPROC D3DPERF_EndEvent; FARPROC D3DPERF_GetStatus; FARPROC D3DPERF_QueryRepeatFrame; FARPROC D3DPERF_SetMarker; FARPROC D3DPERF_SetOptions; FARPROC D3DPERF_SetRegion;...
46.464286
148
0.777479
maltsevda
de4b9b0c96f9648057d5d578f6104890301b0ab5
32,686
cpp
C++
src/z_zodiacreader.cpp
SpehleonLP/Zodiac
19ec600c269afda4ef15dead9ed614320fecb14a
[ "MIT" ]
null
null
null
src/z_zodiacreader.cpp
SpehleonLP/Zodiac
19ec600c269afda4ef15dead9ed614320fecb14a
[ "MIT" ]
null
null
null
src/z_zodiacreader.cpp
SpehleonLP/Zodiac
19ec600c269afda4ef15dead9ed614320fecb14a
[ "MIT" ]
null
null
null
#include "z_zodiacreader.h" #ifdef HAVE_ZODIAC #include "z_zodiacwriter.h" #include "z_zodiac.h" #include "z_zodiaccontext.h" #include "z_zodiacexception.h" #include <stdexcept> #include <cstring> #include <cassert> #include <cstring> #include <stdexcept> #include "add_on/scriptdictionary/scriptdictionary.h" namespac...
27.329431
180
0.701615
SpehleonLP
de4dabbd4fe6fafb74938d19ad038a5db6820ce6
788
cpp
C++
src/geometry.cpp
josiest/gold
140d7c92fce8548b8a4cc6d2eda4be5b12e32975
[ "MIT" ]
null
null
null
src/geometry.cpp
josiest/gold
140d7c92fce8548b8a4cc6d2eda4be5b12e32975
[ "MIT" ]
null
null
null
src/geometry.cpp
josiest/gold
140d7c92fce8548b8a4cc6d2eda4be5b12e32975
[ "MIT" ]
null
null
null
#include "gold/geometry.hpp" namespace au { bool within_closed_bounds(SDL_Point const & p, SDL_Rect const & rect) { return p.x >= rect.x and p.x <= rect.x + rect.w and p.y >= rect.y and p.y <= rect.y + rect.h; } double scale_by_height(SDL_Rect const & from, SDL_Rect const & to) { // scale width by nor...
27.172414
69
0.659898
josiest
de4eeb154a95d899df52b4bf82c4437fa6b5a8eb
661
cpp
C++
TestProject1/TestProject1.cpp
halterman/318_F19
fd04d3bf9168485947fae86d5d2d7af1752f61af
[ "MIT" ]
null
null
null
TestProject1/TestProject1.cpp
halterman/318_F19
fd04d3bf9168485947fae86d5d2d7af1752f61af
[ "MIT" ]
null
null
null
TestProject1/TestProject1.cpp
halterman/318_F19
fd04d3bf9168485947fae86d5d2d7af1752f61af
[ "MIT" ]
null
null
null
#include <iostream> class Int { int value; public: Int(int value) { this->value = value; } int get() const { return value; } }; class NotCopyable { Int value; public: NotCopyable() = default; NotCopyable(int value) : value(value) {} NotCopyable(const NotCopyable& other) = delete; NotC...
16.948718
60
0.556732
halterman
de51e0065e9eb226edf02e5b7532b2daec70f6f2
15,881
cc
C++
lib/flyMS/FlightCore.cc
msardonini/flyMS
ea1127a3313fb52a8fe789222ba654e05583e06c
[ "MIT" ]
null
null
null
lib/flyMS/FlightCore.cc
msardonini/flyMS
ea1127a3313fb52a8fe789222ba654e05583e06c
[ "MIT" ]
null
null
null
lib/flyMS/FlightCore.cc
msardonini/flyMS
ea1127a3313fb52a8fe789222ba654e05583e06c
[ "MIT" ]
null
null
null
/** * @file FlightCore.cc * @brief Main control loop for the flyMS program * * @author Mike Sardonini * @date 10/15/2018 */ #include "flyMS/FlightCore.h" #include <sys/stat.h> #include <algorithm> #include <iomanip> #include <sstream> #include <stdexcept> #include "spdlog/fmt/ostr.h" #include "spdlog/sinks/ro...
42.349333
120
0.581575
msardonini
de54a78f41108e308a7b40ee164cfc22cebd0e21
2,276
cpp
C++
cpp_10/parallel_algorithms/spinlock_vs_atomic/test.cpp
eshernan/parallel_course
37528e0c19e1524f948138bcc7a6ccdc6a3aa0dd
[ "MIT" ]
3
2021-01-18T18:15:51.000Z
2021-05-21T07:04:31.000Z
spinlock_vs_atomic/test.cpp
andy-thomason/parallel_algorithms
c7ca071dd87dd8044d16d41d61efb1d07b9fbca3
[ "MIT" ]
null
null
null
spinlock_vs_atomic/test.cpp
andy-thomason/parallel_algorithms
c7ca071dd87dd8044d16d41d61efb1d07b9fbca3
[ "MIT" ]
1
2021-05-21T07:04:44.000Z
2021-05-21T07:04:44.000Z
#include <chrono> #include <atomic> #include <future> #include <array> #include <mutex> class nolock { public: void lock() { } void unlock() { } }; class spinlock { std::atomic_flag flag_{false}; public: void lock() { while (flag_.test_and_set(std::memory_order_acquire)) ; }...
22.76
85
0.588313
eshernan
de58bb811e689c91b09f785c404790bf07b48bdb
6,424
cpp
C++
src/io_worker.cpp
Paycasso/cpp-driver
9e6efd4842afc226d999baf890a55275e7e94cf8
[ "Apache-2.0" ]
null
null
null
src/io_worker.cpp
Paycasso/cpp-driver
9e6efd4842afc226d999baf890a55275e7e94cf8
[ "Apache-2.0" ]
null
null
null
src/io_worker.cpp
Paycasso/cpp-driver
9e6efd4842afc226d999baf890a55275e7e94cf8
[ "Apache-2.0" ]
null
null
null
/* Copyright (c) 2014 DataStax Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, sof...
28.175439
80
0.693337
Paycasso
de5a2a360613b4f97ca9dc28208b296e0d9d8c88
1,721
cpp
C++
LeetCode/100/1847.cpp
K-ona/C-_Training
d54970f7923607bdc54fc13677220d1b3daf09e5
[ "Apache-2.0" ]
1
2021-03-05T14:16:46.000Z
2021-03-05T14:16:46.000Z
LeetCode/100/1847.cpp
K-ona/CPP-Training
aa312970505f67c270257c8a5816e89c10f2d1ce
[ "Apache-2.0" ]
null
null
null
LeetCode/100/1847.cpp
K-ona/CPP-Training
aa312970505f67c270257c8a5816e89c10f2d1ce
[ "Apache-2.0" ]
null
null
null
// created by Kona @VSCode #include <algorithm> #include <iostream> #include <map> #include <queue> #include <set> #include <string> #include <vector> #define LOCAL_TEST typedef long long ll; using std::cin; using std::cout; using std::endl; using std::map; using std::queue; using std::set; using std::string; using st...
24.942029
76
0.531087
K-ona
de5baaef664e1b5ea845d6166be70d38c0830770
454
cpp
C++
Olympiad Programs/Helli Programming Training/Codeforces 189A.cpp
mirtaba/ACMICPC-INOI_Archive
ea06e4e40e984f0807410e4f9b5f7042580da2e3
[ "MIT" ]
1
2020-12-08T11:21:34.000Z
2020-12-08T11:21:34.000Z
Olympiad Programs/Helli Programming Training/Codeforces 189A.cpp
mirtaba/ACMICPC-INOI_Archive
ea06e4e40e984f0807410e4f9b5f7042580da2e3
[ "MIT" ]
null
null
null
Olympiad Programs/Helli Programming Training/Codeforces 189A.cpp
mirtaba/ACMICPC-INOI_Archive
ea06e4e40e984f0807410e4f9b5f7042580da2e3
[ "MIT" ]
null
null
null
#include <iostream> #include <algorithm> using namespace std; const int Maxn=4*1E4+25; int N,a,b,c; //bool can[Maxn]; int num[Maxn]; int main() { cin >> N >> a >> b >> c; num[a]=1; num[b]=1; num[c]=1; for (int i=1;i<=N;i++) if(num[i]!=0) { num[i+a]=max(num[i+a],num[i]+...
17.461538
44
0.455947
mirtaba
de6081cdb76d6ad83b0f3733e23a463a59c18229
9,473
cpp
C++
Data Structures Final C++/CIS22C-Final-Group3/CIS22C-Final-Group3/FileIO.cpp
LEmilio14/Projects_in_C_PlusPlus
3c004b0a7c958163243752a4903329d2e40517d4
[ "MIT" ]
2
2019-09-21T05:48:53.000Z
2020-03-30T00:29:42.000Z
Data Structures Final C++/CIS22C-Final-Group3/CIS22C-Final-Group3/FileIO.cpp
LEmilio14/Projects_in_C_PlusPlus
3c004b0a7c958163243752a4903329d2e40517d4
[ "MIT" ]
null
null
null
Data Structures Final C++/CIS22C-Final-Group3/CIS22C-Final-Group3/FileIO.cpp
LEmilio14/Projects_in_C_PlusPlus
3c004b0a7c958163243752a4903329d2e40517d4
[ "MIT" ]
1
2019-09-21T05:47:20.000Z
2019-09-21T05:47:20.000Z
#include "FileIO.h" #include <fstream> namespace FileIO { namespace { const std::string DELIM_ITEM = "item"; const std::string DELIM_UID = "UID"; const std::string DELIM_UPC = "UPC"; const std::string DELIM_NAME = "name"; const std::string DELIM_SIZE = "size"; const std::string DELIM_CATEGORY = "categor...
30.957516
169
0.642141
LEmilio14
de644c9121d2c4979dc1e482b0ccf025b86ce39e
638
cpp
C++
done/blist2.cpp
birdhumming/usaco
f011e7bd4b71de22736a61004e501af2b273b246
[ "OLDAP-2.2.1" ]
null
null
null
done/blist2.cpp
birdhumming/usaco
f011e7bd4b71de22736a61004e501af2b273b246
[ "OLDAP-2.2.1" ]
null
null
null
done/blist2.cpp
birdhumming/usaco
f011e7bd4b71de22736a61004e501af2b273b246
[ "OLDAP-2.2.1" ]
null
null
null
#include <algorithm> #include <fstream> #include <iostream> using namespace std; int N; int S[101], T[101], B[101]; //start, end, buckets int main(void) { ifstream fin ("blist.in"); ofstream fout ("blist.out"); fin>>N; for (int i=1; i<=N; i++) { fin>>S[i]>>T[i]>>B[i]; } int max_bucke...
22.785714
68
0.504702
birdhumming
de667200b1edc16c4a6733f4a8050b9fb5ec4a99
22,013
cpp
C++
resultswindow.cpp
DOMjudge/DOMjura
271e579713995b75be3d6fef289c6c714f26f1b4
[ "MIT" ]
9
2019-04-23T08:07:08.000Z
2021-12-04T07:11:35.000Z
resultswindow.cpp
DOMjudge/DOMjura
271e579713995b75be3d6fef289c6c714f26f1b4
[ "MIT" ]
5
2019-04-24T05:45:35.000Z
2021-10-08T06:48:09.000Z
resultswindow.cpp
nickygerritsen/DOMjura
271e579713995b75be3d6fef289c6c714f26f1b4
[ "MIT" ]
6
2015-06-26T14:00:23.000Z
2019-04-22T02:59:31.000Z
#include "resultswindow.h" #include <QKeyEvent> #include <QApplication> #include <QDesktopWidget> #include <QPropertyAnimation> #include <QtOpenGL/QtOpenGL> #include <QTimer> #include <QSettings> #include <math.h> #include "gradientcache.h" #include "defines.h" #include "contest.h" namespace DJ { nam...
41.37782
135
0.592968
DOMjudge
de6c98ed7e226f6109bc8274ffbd2160d5e7e07c
530
cpp
C++
src/skills/vision/vision.cpp
GiulianoWF/RIDGS
4acde23988e088b4f9a82c27bae67100ed83de5b
[ "MIT" ]
null
null
null
src/skills/vision/vision.cpp
GiulianoWF/RIDGS
4acde23988e088b4f9a82c27bae67100ed83de5b
[ "MIT" ]
null
null
null
src/skills/vision/vision.cpp
GiulianoWF/RIDGS
4acde23988e088b4f9a82c27bae67100ed83de5b
[ "MIT" ]
null
null
null
#include <iostream> #include <opencv2/core.hpp> #include "RIDGS_com.hpp" int main(){ auto server_communication = ridgs::ProcessServerCOM("vision"); std::cout << "vision::working" << std::endl; auto mat = cv::Mat(); std::string read; server_communication >> read; std::cout << "vision:Recieved from serv...
24.090909
75
0.639623
GiulianoWF
de6fbc5f6f6105bfb30d1270b51f1d446087c00e
3,010
cpp
C++
libnaucrates/src/operators/CDXLScalarIndexCondList.cpp
khannaekta/gporca
94e509d0a2456851a2cabf02e933c3523946b87b
[ "ECL-2.0", "Apache-2.0" ]
1
2019-03-05T10:08:56.000Z
2019-03-05T10:08:56.000Z
libnaucrates/src/operators/CDXLScalarIndexCondList.cpp
khannaekta/gporca
94e509d0a2456851a2cabf02e933c3523946b87b
[ "ECL-2.0", "Apache-2.0" ]
null
null
null
libnaucrates/src/operators/CDXLScalarIndexCondList.cpp
khannaekta/gporca
94e509d0a2456851a2cabf02e933c3523946b87b
[ "ECL-2.0", "Apache-2.0" ]
null
null
null
//--------------------------------------------------------------------------- // Greenplum Database // Copyright (C) 2012 EMC Corp. // // @filename: // CDXLScalarIndexCondList.cpp // // @doc: // Implementation of DXL index condition lists for DXL index scan operator //-------------------------------------------------...
25.083333
86
0.509635
khannaekta
de711760fec74ea2eb2739d540b16704726d40b8
8,384
cpp
C++
src/game/client/neotokyo/neo_hud_weapon.cpp
L-Leite/neotokyo-re
a45cdcb9027ffe8af72cf1f8e22976375e6b1e0a
[ "Unlicense" ]
4
2017-08-29T15:39:53.000Z
2019-06-04T07:37:48.000Z
src/game/client/neotokyo/neo_hud_weapon.cpp
Ochii/neotokyo
a45cdcb9027ffe8af72cf1f8e22976375e6b1e0a
[ "Unlicense" ]
null
null
null
src/game/client/neotokyo/neo_hud_weapon.cpp
Ochii/neotokyo
a45cdcb9027ffe8af72cf1f8e22976375e6b1e0a
[ "Unlicense" ]
1
2021-08-10T20:01:00.000Z
2021-08-10T20:01:00.000Z
#include "cbase.h" #include "hud.h" #include "hud_macros.h" #include "view.h" #include "iclientmode.h" #include <KeyValues.h> #include <vgui/ISystem.h> #include <vgui/ISurface.h> #include <vgui/ILocalize.h> #include "hudelement.h" #include "neo_hud_numericdisplay.h" #include "c_neo_player.h" #include "weapon_neobas...
28.420339
128
0.671517
L-Leite
de71c7d92d2d698230ad1886dda2b7837b009675
4,392
cpp
C++
src/threadpool.cpp
lingFlya/MyWebServer
6c87995e19c76c873c8385ccb847d76e3dc62bff
[ "MIT" ]
null
null
null
src/threadpool.cpp
lingFlya/MyWebServer
6c87995e19c76c873c8385ccb847d76e3dc62bff
[ "MIT" ]
1
2020-09-06T07:57:02.000Z
2020-09-12T14:32:25.000Z
src/threadpool.cpp
lingFlya/MyWebServer
6c87995e19c76c873c8385ccb847d76e3dc62bff
[ "MIT" ]
null
null
null
/************************************************************************************ *@author RedDragon *@date 2020/9/5 *@brief 线程池实现 * 就是通过pthread_create()创建固定线程数,省去了来一个任务才创建线程和销毁线程 * 的开销,我这里创建了四个固定线程,通过互斥量mutex和条件变量cond和一个任务队列task_queue添加任务 * 和完成任务. * * addTask是生产者 * worker是消费者 *******************...
24.4
87
0.502277
lingFlya
de7286095e21275895928729783b3c6f179f3ae9
2,897
cpp
C++
trunk/ProjectFootball/src/singlePlayer/db/bean/CPfPhaseTypes.cpp
dividio/projectfootball
3c0b94937de2e3cd6e7daf9d3b4942fda974f20c
[ "Zlib" ]
null
null
null
trunk/ProjectFootball/src/singlePlayer/db/bean/CPfPhaseTypes.cpp
dividio/projectfootball
3c0b94937de2e3cd6e7daf9d3b4942fda974f20c
[ "Zlib" ]
null
null
null
trunk/ProjectFootball/src/singlePlayer/db/bean/CPfPhaseTypes.cpp
dividio/projectfootball
3c0b94937de2e3cd6e7daf9d3b4942fda974f20c
[ "Zlib" ]
null
null
null
/****************************************************************************** * Copyright (C) 2010 - Ikaro Games www.ikarogames.com * * * * This program is free software; you can redistribute it and/or * ...
31.835165
79
0.509838
dividio
de74d7c4918fd6a20d3e7fa062ba1669a51ee5bc
3,393
hpp
C++
include/parserFuncs.hpp
kleidibujari/doit
5f566992f0dd1118def6ccdfdff47243f82e9ae1
[ "MIT" ]
null
null
null
include/parserFuncs.hpp
kleidibujari/doit
5f566992f0dd1118def6ccdfdff47243f82e9ae1
[ "MIT" ]
null
null
null
include/parserFuncs.hpp
kleidibujari/doit
5f566992f0dd1118def6ccdfdff47243f82e9ae1
[ "MIT" ]
null
null
null
#include <string> #include <fstream> #include <vector> #include <iostream> #define CONFIG "$HOME/.config/do-it/doit.conf" #include "usage.hpp" std::string FILELOC; //writing to file for strings (tasks) void writeFile(std::string val) { std::ofstream ptr(FILELOC, std::ios_base::app); ptr << ...
21.074534
87
0.465665
kleidibujari
de7b7bed00d7886066295bde50de83dd9e7a33cb
2,815
hpp
C++
pulsar/datastore/GenericBase.hpp
pulsar-chem/BPModule
f8e64e04fdb01947708f098e833600c459c2ff0e
[ "BSD-3-Clause" ]
null
null
null
pulsar/datastore/GenericBase.hpp
pulsar-chem/BPModule
f8e64e04fdb01947708f098e833600c459c2ff0e
[ "BSD-3-Clause" ]
null
null
null
pulsar/datastore/GenericBase.hpp
pulsar-chem/BPModule
f8e64e04fdb01947708f098e833600c459c2ff0e
[ "BSD-3-Clause" ]
null
null
null
/*! \file * * \brief Base class for holding generic data */ #pragma once #include "pulsar/util/Serialization_fwd.hpp" #include <bphash/Hash.hpp> #include <memory> namespace pulsar { namespace detail { /* Developer note * * Why not just have serialize functions and let cereal handle the * polymorphic seri...
26.809524
88
0.601066
pulsar-chem
de863c9bcce16e963f2d95a55060694a965760d8
730
hh
C++
Geant4/include/NDDRunAction.hh
leenderthayen/NDP
ffc16ccff47da53326e9a83f98b675d5db24bc59
[ "MIT" ]
1
2022-02-08T20:10:10.000Z
2022-02-08T20:10:10.000Z
Geant4/include/NDDRunAction.hh
leenderthayen/NDP
ffc16ccff47da53326e9a83f98b675d5db24bc59
[ "MIT" ]
null
null
null
Geant4/include/NDDRunAction.hh
leenderthayen/NDP
ffc16ccff47da53326e9a83f98b675d5db24bc59
[ "MIT" ]
2
2021-01-11T20:44:30.000Z
2021-06-02T17:27:43.000Z
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... #ifndef NDDRunAction_h #define NDDRunAction_h 1 #include "G4UserRunAction.hh" #include "G4String.hh" //class NDDRunMessenger; class NDDAnalysisManager; cla...
23.548387
80
0.69863
leenderthayen
de87008313d0f53b1e0ea3dabdd0a6baef8d04f2
12,977
hpp
C++
wax/hala_noengine_structs.hpp
LIBHALA/hala
ff3950aef18b6cede48b45669be275b174f362a5
[ "BSD-3-Clause" ]
1
2021-02-25T16:21:42.000Z
2021-02-25T16:21:42.000Z
wax/hala_noengine_structs.hpp
mkstoyanov/hala
ff3950aef18b6cede48b45669be275b174f362a5
[ "BSD-3-Clause" ]
9
2020-09-03T23:31:22.000Z
2020-10-21T23:40:11.000Z
wax/hala_noengine_structs.hpp
mkstoyanov/hala
ff3950aef18b6cede48b45669be275b174f362a5
[ "BSD-3-Clause" ]
2
2020-03-03T17:39:37.000Z
2020-11-05T16:01:28.000Z
#ifndef __HALA_NOENGINE_STRUCTS_HPP #define __HALA_NOENGINE_STRUCTS_HPP /* * Code Author: Miroslav Stoyanov * * Copyright (C) 2018 Miroslav Stoyanov * * This file is part of * Hardware Accelerated Linear Algebra (HALA) * */ #include "hala_sparse_extensions.hpp" namespace hala{ /*! * \internal * \file hala...
40.301242
155
0.720968
LIBHALA
de87394e6105d98162a80b0871c3279630f002c7
1,907
cpp
C++
StringToInt.cpp
vibiu/SwordOfOffer
6daa7d108a4f043353d372e835a1f8923c933dcc
[ "BSD-3-Clause" ]
1
2020-05-14T13:59:11.000Z
2020-05-14T13:59:11.000Z
StringToInt.cpp
vibiu/SwordOfOffer
6daa7d108a4f043353d372e835a1f8923c933dcc
[ "BSD-3-Clause" ]
null
null
null
StringToInt.cpp
vibiu/SwordOfOffer
6daa7d108a4f043353d372e835a1f8923c933dcc
[ "BSD-3-Clause" ]
null
null
null
#include "StringToInt.h" #include <cstdio> int g_nStatus = kValid; long long StrToIntCore(const char *digit, bool minus) { long long num = 0; while (*digit != '\0') { if (*digit >= '0' && *digit <= '9') { int flag = minus ? -1 : 1; num = num * 10 + flag * (*digit -...
18.881188
88
0.497116
vibiu
de89cab261393b40c494907099628b1cfd1e4f51
7,456
cpp
C++
testapp/scenes/physics/shakescene.cpp
ColinGilbert/d-collide
8adb354d52e7ee49705ca2853d50a6a879f3cd49
[ "BSD-3-Clause" ]
6
2015-12-08T05:38:03.000Z
2021-04-09T13:45:59.000Z
testapp/scenes/physics/shakescene.cpp
ColinGilbert/d-collide
8adb354d52e7ee49705ca2853d50a6a879f3cd49
[ "BSD-3-Clause" ]
null
null
null
testapp/scenes/physics/shakescene.cpp
ColinGilbert/d-collide
8adb354d52e7ee49705ca2853d50a6a879f3cd49
[ "BSD-3-Clause" ]
null
null
null
/******************************************************************************* * Copyright (C) 2007 by the members of PG 510, University of Dortmund: * * d-collide-devel@lists.sourceforge.net * * * Andreas Beckermann, Christian Bode, Marcel Ens, Sebastian Ens, ...
39.659574
114
0.51301
ColinGilbert
de90eead59c3ab1260386bb28a3889c8ea14ee16
7,361
hpp
C++
include/System/Xml/Schema/AttributeMatchState.hpp
v0idp/virtuoso-codegen
6f560f04822c67f092d438a3f484249072c1d21d
[ "Unlicense" ]
null
null
null
include/System/Xml/Schema/AttributeMatchState.hpp
v0idp/virtuoso-codegen
6f560f04822c67f092d438a3f484249072c1d21d
[ "Unlicense" ]
null
null
null
include/System/Xml/Schema/AttributeMatchState.hpp
v0idp/virtuoso-codegen
6f560f04822c67f092d438a3f484249072c1d21d
[ "Unlicense" ]
1
2022-03-30T21:07:35.000Z
2022-03-30T21:07:35.000Z
// Autogenerated from CppHeaderCreator // Created by Sc2ad // ========================================================================= #pragma once // Begin includes #include "beatsaber-hook/shared/utils/typedefs.h" #include "beatsaber-hook/shared/utils/byref.hpp" // Including type: System.Enum #include "System/Enum.h...
65.723214
115
0.776253
v0idp
de944d3eea1531b4035a9ddc0c78c0761e00f7bd
8,890
cpp
C++
QuadGeom.cpp
cleak/VoxelPerf
02dad67747b113a3cd38cae6a2c307f877cab068
[ "MIT" ]
42
2017-07-30T17:50:16.000Z
2022-03-27T09:27:04.000Z
QuadGeom.cpp
cleak/VoxelPerf
02dad67747b113a3cd38cae6a2c307f877cab068
[ "MIT" ]
1
2019-03-13T07:09:44.000Z
2019-03-15T07:02:23.000Z
QuadGeom.cpp
cleak/VoxelPerf
02dad67747b113a3cd38cae6a2c307f877cab068
[ "MIT" ]
3
2018-05-10T20:38:29.000Z
2020-06-21T21:12:39.000Z
#include "QuadGeom.h" #include <iostream> #include <cstddef> #include <vector> using namespace glm; using namespace std; #pragma pack(push, 1) struct PointQuad { //vec3 position; uint8_t x; uint8_t y; uint8_t z; //uint8_t pad0; //PackedColor color; uint8_t r; uint8_t g; uint8_t ...
28.49359
139
0.534196
cleak
de95e3bdaf5dec6a0c3ab2e703b95a35ed6c046e
9,055
hpp
C++
include/lug/Math/Matrix.hpp
Lugdunum3D/Lugdunum3D
b6d6907d034fdba1ffc278b96598eba1d860f0d4
[ "MIT" ]
275
2016-10-08T15:33:17.000Z
2022-03-30T06:11:56.000Z
include/lug/Math/Matrix.hpp
Lugdunum3D/Lugdunum3D
b6d6907d034fdba1ffc278b96598eba1d860f0d4
[ "MIT" ]
24
2016-09-29T20:51:20.000Z
2018-05-09T21:41:36.000Z
include/lug/Math/Matrix.hpp
Lugdunum3D/Lugdunum3D
b6d6907d034fdba1ffc278b96598eba1d860f0d4
[ "MIT" ]
37
2017-02-25T05:03:48.000Z
2021-05-10T19:06:29.000Z
#pragma once #include <cstdint> #include <valarray> #include <lug/Math/Export.hpp> #include <lug/Math/ValArray.hpp> #include <lug/System/Debug.hpp> namespace lug { namespace Math { template <uint8_t Rows, uint8_t Columns, typename T = float> class Matrix { public: // TODO: Use custom valarray with compile time s...
38.206751
142
0.660298
Lugdunum3D
de97a2e85933d99eecd9920b7cbf6585da61d37e
469
cpp
C++
problems/acmicpc_1946.cpp
qawbecrdtey/BOJ-sol
e3f410e8f4e3a6ade51b68ce2024529870edac64
[ "MIT" ]
null
null
null
problems/acmicpc_1946.cpp
qawbecrdtey/BOJ-sol
e3f410e8f4e3a6ade51b68ce2024529870edac64
[ "MIT" ]
null
null
null
problems/acmicpc_1946.cpp
qawbecrdtey/BOJ-sol
e3f410e8f4e3a6ade51b68ce2024529870edac64
[ "MIT" ]
null
null
null
#include <stdio.h> #include <utility> #include <algorithm> using namespace std; int main() { int t; scanf("%d", &t); while(t--) { int n; scanf("%d", &n); auto a = new pair<int, int>[n]; for(int i = 0; i < n; i++) { scanf("%d%d", &a[i].first, &a[i].second); } sort(a, a + n); int x = a[0].second; in...
17.37037
44
0.479744
qawbecrdtey
de9c61d6c8b97e1eac63891e58caadc4bb079554
6,422
cpp
C++
source/os/cmd_interface_win.cpp
inmoition-depthcamera/sdk
11f4894295475f6adc896815878fbff9f49b4480
[ "MIT" ]
2
2018-12-03T03:46:08.000Z
2020-05-24T04:02:39.000Z
source/os/cmd_interface_win.cpp
inmoition-depthcamera/sdk
11f4894295475f6adc896815878fbff9f49b4480
[ "MIT" ]
1
2018-09-20T03:02:35.000Z
2018-09-30T11:10:40.000Z
source/os/cmd_interface_win.cpp
inmoition-depthcamera/sdk
11f4894295475f6adc896815878fbff9f49b4480
[ "MIT" ]
null
null
null
#include "cmd_interface_win.h" #include <cctype> #include <algorithm> #include <SetupAPI.h> #include <Cfgmgr32.h> #include "tchar.h" #pragma comment(lib, "SetupAPI.lib") #pragma comment(lib, "Cfgmgr32.lib") #include "iostream" using namespace std; CmdInterfaceWin::CmdInterfaceWin() { mComHandle = INVAL...
28.166667
142
0.677048
inmoition-depthcamera
de9f0148e647af62dac35bb1244d9fccfc910b79
4,141
cpp
C++
src/sink/asynchronous.p.cpp
JakariaBlaine/blackhole
e340329c6e2e3166858d8466656ad12300b686bd
[ "MIT" ]
193
2015-01-05T08:48:05.000Z
2022-01-31T22:04:01.000Z
src/sink/asynchronous.p.cpp
JakariaBlaine/blackhole
e340329c6e2e3166858d8466656ad12300b686bd
[ "MIT" ]
135
2015-01-13T13:02:49.000Z
2022-01-12T15:06:48.000Z
src/sink/asynchronous.p.cpp
JakariaBlaine/blackhole
e340329c6e2e3166858d8466656ad12300b686bd
[ "MIT" ]
40
2015-01-21T16:37:30.000Z
2022-01-25T15:54:04.000Z
#include "asynchronous.hpp" #include <cmath> #include <condition_variable> #include <mutex> namespace blackhole { inline namespace v1 { namespace sink { namespace { auto exp2(std::size_t factor) -> std::size_t { if (factor < 2 || factor > 20) { throw std::invalid_argument("factor should fit in [2; 20] ra...
27.243421
96
0.596474
JakariaBlaine
dea237dfea8efa14ff17503ac74369a0fbe400a7
1,201
cpp
C++
src/reactor.cpp
vladislavmarkov/sketch
5afed3edd0245942ed2010df1d092fc7d1ed8610
[ "MIT" ]
null
null
null
src/reactor.cpp
vladislavmarkov/sketch
5afed3edd0245942ed2010df1d092fc7d1ed8610
[ "MIT" ]
null
null
null
src/reactor.cpp
vladislavmarkov/sketch
5afed3edd0245942ed2010df1d092fc7d1ed8610
[ "MIT" ]
null
null
null
#include <sketch/reactor.hpp> #include <iostream> #include <sketch/window.hpp> namespace sk { namespace { void default_on_draw(gsl::not_null<window_t*>) { // do nothing std::cout << __FUNCTION__ << '\n'; } void default_on_quit(gsl::not_null<window_t*> window) { // do nothing std::cout << __FUNCTIO...
15.802632
75
0.665279
vladislavmarkov
dea84b5648da991e302dc63bcf4d54da31307b40
22,928
hpp
C++
libraries/belle/Source/Symbols/Chord.hpp
jogawebb/Spaghettis
78f21ba3065ce316ef0cb84e94aecc9e8787343d
[ "Zlib", "BSD-2-Clause", "BSD-3-Clause" ]
47
2017-09-05T02:49:22.000Z
2022-01-20T08:11:47.000Z
libraries/belle/Source/Symbols/Chord.hpp
jogawebb/Spaghettis
78f21ba3065ce316ef0cb84e94aecc9e8787343d
[ "Zlib", "BSD-2-Clause", "BSD-3-Clause" ]
106
2018-05-16T14:58:52.000Z
2022-01-12T13:57:24.000Z
libraries/belle/Source/Symbols/Chord.hpp
jogawebb/Spaghettis
78f21ba3065ce316ef0cb84e94aecc9e8787343d
[ "Zlib", "BSD-2-Clause", "BSD-3-Clause" ]
11
2018-05-16T06:44:51.000Z
2021-11-10T07:04:46.000Z
/* Copyright (c) 2007-2013 William Andrew Burnson. Copyright (c) 2013-2020 Nicolas Danet. */ /* < http://opensource.org/licenses/BSD-2-Clause > */ // ----------------------------------------------------------------------------------------------------------- // ------------------------------------------...
32.942529
110
0.371293
jogawebb
dea89fd398cf96bb569d0f1b2240062e33740405
5,710
cpp
C++
src/ScriptProcs/Event/Keyboard.cpp
MichaelMCE/LCDMisc
1d2a913d62fd4d940ad95b5f8463a5f06e683427
[ "CC-BY-4.0" ]
null
null
null
src/ScriptProcs/Event/Keyboard.cpp
MichaelMCE/LCDMisc
1d2a913d62fd4d940ad95b5f8463a5f06e683427
[ "CC-BY-4.0" ]
null
null
null
src/ScriptProcs/Event/Keyboard.cpp
MichaelMCE/LCDMisc
1d2a913d62fd4d940ad95b5f8463a5f06e683427
[ "CC-BY-4.0" ]
null
null
null
#include "../../global.h" #include "Keyboard.h" #include "../../Unicode.h" #include "../../vm.h" #include "../../Config.h" int GetKey(ScriptValue *args) { if (args->type == SCRIPT_LIST && args->listVal->numVals) { if (args->listVal->vals[0].type == SCRIPT_STRING) { if (args->listVal->vals[0].stringVal->len) { ...
25.605381
86
0.605954
MichaelMCE
deac547ad73748c5e87d2125b7fc3a022d4576e1
2,699
cpp
C++
src/T56_memoryManager/T56_memoryManager.cpp
RemiMattheyDoret/SimBit
ed0e64c0abb97c6c889bc0adeec1277cbc6cbe43
[ "MIT" ]
11
2017-06-06T23:02:48.000Z
2021-08-17T20:13:05.000Z
src/T56_memoryManager/T56_memoryManager.cpp
RemiMattheyDoret/SimBit
ed0e64c0abb97c6c889bc0adeec1277cbc6cbe43
[ "MIT" ]
1
2017-06-06T23:08:05.000Z
2017-06-07T09:28:08.000Z
src/T56_memoryManager/T56_memoryManager.cpp
RemiMattheyDoret/SimBit
ed0e64c0abb97c6c889bc0adeec1277cbc6cbe43
[ "MIT" ]
null
null
null
void T56_memoryManager::doStuff(Haplotype& haplo) { auto& ntrl = haplo.T5ntrl_Alleles; auto& sel = haplo.T5sel_Alleles; ///////////////// // Record info // ///////////////// if (shouldRecordInfo) { if (SSP->Gmap.T5ntrl_nbLoci && ntrl.size() > maxNtrlSizeLastGeneration) m...
31.022989
160
0.537607
RemiMattheyDoret
deb6cfa20098fe6465e4cf57c429b2ae34bba38f
891
cpp
C++
Source/ModularGameplayActors/Private/ModularAIController.cpp
TheEmidee/UEModularGameplayActors
9f87c2e4a418f90a2735c823ccb94e43a7721aaf
[ "MIT" ]
1
2022-02-16T10:44:28.000Z
2022-02-16T10:44:28.000Z
Source/ModularGameplayActors/Private/ModularAIController.cpp
TheEmidee/UEModularGameplayActors
9f87c2e4a418f90a2735c823ccb94e43a7721aaf
[ "MIT" ]
null
null
null
Source/ModularGameplayActors/Private/ModularAIController.cpp
TheEmidee/UEModularGameplayActors
9f87c2e4a418f90a2735c823ccb94e43a7721aaf
[ "MIT" ]
null
null
null
#include "ModularAIController.h" #include <Components/GameFrameworkComponentManager.h> void AModularAIController::PreInitializeComponents() { Super::PreInitializeComponents(); if ( auto * gi = GetGameInstance() ) { if ( auto * system = gi->GetSubsystem< UGameFrameworkComponentManager >(...
27
139
0.67789
TheEmidee
6312197b3a45d40f0d3df1d3f1156ab513b3d9ce
1,307
hpp
C++
include/oxu/beatmap/components/slider.hpp
oda404/oxu
5df4755f796be976bed767cd889a2e71ed867f9b
[ "MIT" ]
null
null
null
include/oxu/beatmap/components/slider.hpp
oda404/oxu
5df4755f796be976bed767cd889a2e71ed867f9b
[ "MIT" ]
null
null
null
include/oxu/beatmap/components/slider.hpp
oda404/oxu
5df4755f796be976bed767cd889a2e71ed867f9b
[ "MIT" ]
null
null
null
#pragma once #include<cstdint> #include<vector> #include<oxu/beatmap/sections/difficulty.hpp> #include<oxu/beatmap/components/hitCircle.hpp> #include<oxu/framework/utils/vector2.hpp> namespace oxu { enum class SliderCurveType { LINEAR = 0, BEZIER = 1, CIRCLE = 2 }; struct Sli...
26.14
115
0.644989
oda404
63160e547d733a2c8efac6c5f63f11d195f041f2
1,511
hpp
C++
include/managers/state_manager.hpp
zedrex/algosketch
ff0f759f9e7e0e4ff040cf6c84334aceac47adae
[ "MIT" ]
16
2021-03-27T06:20:42.000Z
2022-03-31T16:30:37.000Z
include/managers/state_manager.hpp
zedrex/Algo-Plus-Plus
ff0f759f9e7e0e4ff040cf6c84334aceac47adae
[ "MIT" ]
1
2021-07-13T07:57:41.000Z
2021-07-13T07:57:41.000Z
include/managers/state_manager.hpp
zedrex/Algo-Plus-Plus
ff0f759f9e7e0e4ff040cf6c84334aceac47adae
[ "MIT" ]
3
2021-04-03T02:58:56.000Z
2021-06-04T18:23:49.000Z
#pragma once #include <iostream> #include <managers/window_manager.hpp> #include <managers/event_manager.hpp> #include <managers/resource_manager.hpp> class State; enum class Action { ChangeToMainMenu, ChangeToNewSketchMenu, ChangeToLoadSketchMenu, ChangeToHelpMenu, ChangeToCreditsMenu, Quit...
19.881579
142
0.731304
zedrex
63204c5730e690db4ecfa8622777acef7b5707d1
4,138
cpp
C++
src/util/Screenshotter.cpp
dat14jpe/mulen
33beeb8a38e5556ddd44efba909e18aab9a3d401
[ "MIT" ]
5
2020-01-15T12:49:45.000Z
2021-11-24T05:15:59.000Z
src/util/Screenshotter.cpp
dat14jpe/mulen
33beeb8a38e5556ddd44efba909e18aab9a3d401
[ "MIT" ]
null
null
null
src/util/Screenshotter.cpp
dat14jpe/mulen
33beeb8a38e5556ddd44efba909e18aab9a3d401
[ "MIT" ]
null
null
null
#include "Screenshotter.hpp" #include "GLObject.hpp" #include "lodepng.h" #include <iostream> namespace Util { Screenshotter::Screenshotter() : thread{ &Screenshotter::Thread, this } { } Screenshotter::~Screenshotter() { { std::lock_guard<std::mutex> lk(m); ...
34.483333
145
0.545191
dat14jpe
63230a259fe05b0d4ae620550ca29fcd2de20843
313
cpp
C++
src/mainApp.cpp
ChayanonPitak/Uics
0d78f57adcb779aebced8088057555be7def78dc
[ "MIT" ]
1
2021-03-14T07:25:40.000Z
2021-03-14T07:25:40.000Z
src/mainApp.cpp
ChayanonPitak/Uics
0d78f57adcb779aebced8088057555be7def78dc
[ "MIT" ]
13
2021-02-21T14:53:19.000Z
2021-03-18T15:52:51.000Z
src/mainApp.cpp
ChayanonPitak/Uics
0d78f57adcb779aebced8088057555be7def78dc
[ "MIT" ]
1
2021-07-03T04:36:04.000Z
2021-07-03T04:36:04.000Z
#include "mainApp.h" #include "mainFrame.h" #include <wx/wxprec.h> wxIMPLEMENT_APP(mainApp); bool mainApp::OnInit() { wxInitAllImageHandlers(); mainFrame* _mainFrame = new mainFrame(); _mainFrame->SetIcons(wxIconBundle("..\\resources\\icon.png", wxBITMAP_TYPE_PNG)); _mainFrame->Show(true); return true; }
20.866667
82
0.738019
ChayanonPitak
63230eb064852458e2ae1afa5b139f4557eedace
898
cpp
C++
src/main.cpp
jklee95/PBDEnergyProjection
8608e2428d1e84fe129c28b1410940d6c66f85bb
[ "MIT" ]
1
2022-01-25T07:26:24.000Z
2022-01-25T07:26:24.000Z
src/main.cpp
jklee95/PBDEnergyProjection
8608e2428d1e84fe129c28b1410940d6c66f85bb
[ "MIT" ]
null
null
null
src/main.cpp
jklee95/PBDEnergyProjection
8608e2428d1e84fe129c28b1410940d6c66f85bb
[ "MIT" ]
null
null
null
#pragma once // Console window is displayed in debug mode. #ifdef _DEBUG #pragma comment(linker, "/entry:WinMainCRTStartup /subsystem:console") #endif #include "SimulationManager.h" // This includes Win32App.h using namespace DXViewer::xmint3; int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE prevInstance, PSTR cmd...
28.0625
90
0.694878
jklee95
632435e2806fcbfa4fc92254289c0fee4a01762b
5,269
hpp
C++
include/base_pxfoundations/foundation/PsSortInternals.hpp
DeanoC/base_pxfoundations
8150e24a606b184781bf1552e09f17c03e67e501
[ "BSD-3-Clause" ]
null
null
null
include/base_pxfoundations/foundation/PsSortInternals.hpp
DeanoC/base_pxfoundations
8150e24a606b184781bf1552e09f17c03e67e501
[ "BSD-3-Clause" ]
null
null
null
include/base_pxfoundations/foundation/PsSortInternals.hpp
DeanoC/base_pxfoundations
8150e24a606b184781bf1552e09f17c03e67e501
[ "BSD-3-Clause" ]
null
null
null
// // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are met: // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in bin...
27.442708
102
0.719681
DeanoC
632dce8665923163268a3209671695bfc84a2064
448
cc
C++
Semaphore.cc
mjhough/shopify-scraper
eeddd252881bd0d53eae0ab67c98d5f871f10dff
[ "MIT" ]
2
2020-02-22T09:28:31.000Z
2020-08-27T12:26:35.000Z
Semaphore.cc
mjhough/shopify-scraper
eeddd252881bd0d53eae0ab67c98d5f871f10dff
[ "MIT" ]
null
null
null
Semaphore.cc
mjhough/shopify-scraper
eeddd252881bd0d53eae0ab67c98d5f871f10dff
[ "MIT" ]
1
2022-01-25T07:15:23.000Z
2022-01-25T07:15:23.000Z
#include "Semaphore.h" Semaphore::Semaphore(int count) { this->count = count; } void Semaphore::post() { std::unique_lock<std::mutex> lock(mtx); count++; cv.notify_one(); } void Semaphore::wait() { std::unique_lock<std::mutex> lock(mtx); while(count == 0) { cv.wait(lock); } count--; } bool Semap...
15.448276
41
0.613839
mjhough
63306eab4231ddadc694dd8465a9771f2e866cdf
2,928
cpp
C++
Button.cpp
alejandrocoria/MinerDisplay
e333c0d352965edf0d98024db254384e1f553314
[ "MIT" ]
null
null
null
Button.cpp
alejandrocoria/MinerDisplay
e333c0d352965edf0d98024db254384e1f553314
[ "MIT" ]
null
null
null
Button.cpp
alejandrocoria/MinerDisplay
e333c0d352965edf0d98024db254384e1f553314
[ "MIT" ]
null
null
null
#include "Button.h" #include <SFML/Graphics/RenderTarget.hpp> #include <cmath> Button::Button(const sf::Font* font): font(font) { text.setCharacterSize(16); text.setFont(*font); } void Button::processEvents(const sf::Event& event) { switch (event.type) { case sf::Event::MouseButtonPressed: ...
26.378378
115
0.557036
alejandrocoria
6333522daaeb66929f021a8c92aa2286f05b56a5
744
cpp
C++
July LeetCode Challenge/Day_22.cpp
mishrraG/100DaysOfCode
3358af290d4f05889917808d68b95f37bd76e698
[ "MIT" ]
13
2020-08-10T14:06:37.000Z
2020-09-24T14:21:33.000Z
July LeetCode Challenge/Day_22.cpp
mishrraG/DaysOfCP
3358af290d4f05889917808d68b95f37bd76e698
[ "MIT" ]
null
null
null
July LeetCode Challenge/Day_22.cpp
mishrraG/DaysOfCP
3358af290d4f05889917808d68b95f37bd76e698
[ "MIT" ]
1
2020-05-31T21:09:14.000Z
2020-05-31T21:09:14.000Z
class Solution { public: vector<vector<int> > zigzagLevelOrder(TreeNode* root) { if (root == NULL) { return vector<vector<int> > (); } vector<vector<int> > result; queue<TreeNode*> nodesQueue; nodesQueue.push(root); bool leftToRight = true; while ( !nodesQueue.empty()) { int size = nodesQueue.siz...
22.545455
56
0.596774
mishrraG
63353bcc292e4c3ab006782fb536e8cb6f3b157f
196,967
cpp
C++
source/D2Common/src/Items/Items.cpp
raumuongluoc/D2MOO
169de1bd24151cda4c654ef0f8027896a14552ec
[ "MIT" ]
1
2022-03-20T12:12:15.000Z
2022-03-20T12:12:15.000Z
source/D2Common/src/Items/Items.cpp
raumuongluoc/D2MOO
169de1bd24151cda4c654ef0f8027896a14552ec
[ "MIT" ]
null
null
null
source/D2Common/src/Items/Items.cpp
raumuongluoc/D2MOO
169de1bd24151cda4c654ef0f8027896a14552ec
[ "MIT" ]
1
2022-03-20T12:12:18.000Z
2022-03-20T12:12:18.000Z
#include "D2Items.h" #include <Units/Item.h> #include "D2BitManip.h" #include "D2Composit.h" #include "D2DataTbls.h" #include "D2Inventory.h" #include "D2ItemMods.h" #include "D2QuestRecord.h" #include "D2Seed.h" #include "D2States.h" #include "D2StatList.h" #include "Units/Units.h" #include <D2CMP.h> #include <DataTbl...
25.696934
232
0.702981
raumuongluoc
6335d7f36b845fd556117015a46314f05aeccb04
440
cc
C++
lib/lf/base/lf_assert.cc
Pascal-So/lehrfempp
e2716e914169eec7ee59e822ea3ab303143eacd1
[ "MIT" ]
null
null
null
lib/lf/base/lf_assert.cc
Pascal-So/lehrfempp
e2716e914169eec7ee59e822ea3ab303143eacd1
[ "MIT" ]
null
null
null
lib/lf/base/lf_assert.cc
Pascal-So/lehrfempp
e2716e914169eec7ee59e822ea3ab303143eacd1
[ "MIT" ]
null
null
null
/** @file lf_assert.cc */ #include "lf_assert.h" #include <iostream> namespace lf::base { // Output for assertions void AssertionFailed(const std::string& expr, const std::string& file, int line, const std::string& msg) { std::cerr << "***** Internal Program Error - assertion (" << expr ...
25.882353
80
0.552273
Pascal-So
63365c091173ab941fac5cf8a42e8a1fb9a587e9
11,052
hxx
C++
tests/testing_factor_node_unsym.hxx
tasseff/SyLVER
35cb652ece05447ddf12e530e97428078446eaf4
[ "BSD-3-Clause" ]
9
2019-07-02T12:46:22.000Z
2021-07-08T11:54:46.000Z
tests/testing_factor_node_unsym.hxx
tasseff/SyLVER
35cb652ece05447ddf12e530e97428078446eaf4
[ "BSD-3-Clause" ]
2
2020-03-23T22:55:52.000Z
2020-03-24T11:15:16.000Z
tests/testing_factor_node_unsym.hxx
tasseff/SyLVER
35cb652ece05447ddf12e530e97428078446eaf4
[ "BSD-3-Clause" ]
5
2019-06-10T11:11:14.000Z
2020-03-22T02:38:12.000Z
#pragma once // SpLDLT #include "SymbolicFront.hxx" #include "NumericFront.hxx" #include "factor_unsym.hxx" #include "kernels/lu_nopiv.hxx" #include "sylver_ciface.hxx" // SSIDS #include "ssids/cpu/cpu_iface.hxx" namespace sylver { namespace splu { namespace tests { /// @param T working precision /// ...
32.795252
92
0.491857
tasseff
6336af14cb080015d674299c2b778c6597206349
692
cpp
C++
Arrays & Strings/BreakWords.cpp
tanmayagarwal06/CompetitiveProgramming
ce1df2dbe829a0babfb18e65beee8604eb80915c
[ "MIT" ]
null
null
null
Arrays & Strings/BreakWords.cpp
tanmayagarwal06/CompetitiveProgramming
ce1df2dbe829a0babfb18e65beee8604eb80915c
[ "MIT" ]
null
null
null
Arrays & Strings/BreakWords.cpp
tanmayagarwal06/CompetitiveProgramming
ce1df2dbe829a0babfb18e65beee8604eb80915c
[ "MIT" ]
3
2020-10-06T02:57:41.000Z
2020-10-20T06:54:04.000Z
#include<iostream> #include<string.h> using namespace std; void breakWords(char* S) { int j = 0; int count = 0; int i = 0; int n = strlen(S); while(i<=n){ n = strlen(S); j = i; while(S[i] != ' ' || S[i] != '\0'){ i++; } count = i-j...
16.878049
44
0.348266
tanmayagarwal06
6336bff2c15bf517640b3ca2e8bf426c31964250
425
cpp
C++
0001.TwoSum/main.cpp
SumanSudhir/LeetCode
cab5205747b8c1a9d5c27f0e821cf6e6d9ac10d6
[ "MIT" ]
1
2020-01-13T11:10:35.000Z
2020-01-13T11:10:35.000Z
0001.TwoSum/main.cpp
SumanSudhir/LeetCode
cab5205747b8c1a9d5c27f0e821cf6e6d9ac10d6
[ "MIT" ]
4
2020-01-01T09:47:39.000Z
2020-04-08T08:34:29.000Z
0001.TwoSum/main.cpp
SumanSudhir/LeetCode
cab5205747b8c1a9d5c27f0e821cf6e6d9ac10d6
[ "MIT" ]
null
null
null
class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { vector<int> out; for(int i=0;i<nums.size()-1;i++){ for(int j = i+1;j<nums.size();j++){ if((nums[i] + nums[j]) == target){ out.push_back(i); out.push_bac...
20.238095
55
0.385882
SumanSudhir
633812fca97251f92e2181fe6fb38e5394c4015c
453
cpp
C++
android/EuhatExpert/app/src/main/cpp/macHdd.cpp
euhat/EuhatExpert
3932238a0bd72a8f12b4ae6ced1ade6482228fe0
[ "BSD-2-Clause" ]
null
null
null
android/EuhatExpert/app/src/main/cpp/macHdd.cpp
euhat/EuhatExpert
3932238a0bd72a8f12b4ae6ced1ade6482228fe0
[ "BSD-2-Clause" ]
null
null
null
android/EuhatExpert/app/src/main/cpp/macHdd.cpp
euhat/EuhatExpert
3932238a0bd72a8f12b4ae6ced1ade6482228fe0
[ "BSD-2-Clause" ]
null
null
null
#include "macHdd.h" #include <common/OpCommon.h> #include <common/WhCommon.h> #define INI_SECTION_LOCAL "local" int isMacHddChanged(DbOpIni &ini, const char *mac) { string macsOld = ini.readStr(INI_SECTION_LOCAL, "mac"); if (macsOld.empty()) { ini.write(INI_SECTION_LOCAL, "mac", mac); ret...
19.695652
59
0.613687
euhat
633b0d506075e1dfce4c71be4bf01f93c08ec35f
7,411
cpp
C++
src/BldRecons/SPB2BP/ConvertGrid.cpp
liuxinren/UrbanReconstruction
079d9b0c9089aa9cdb15d31d76155e50a5e72f00
[ "MIT" ]
94
2017-07-20T05:32:07.000Z
2022-03-02T03:38:54.000Z
src/BldRecons/SPB2BP/ConvertGrid.cpp
GucciPrada/UrbanReconstruction
8b058349fd860ea9029623a92d705dd93a4e4878
[ "MIT" ]
3
2017-09-12T00:07:05.000Z
2020-03-08T21:12:36.000Z
src/BldRecons/SPB2BP/ConvertGrid.cpp
GucciPrada/UrbanReconstruction
8b058349fd860ea9029623a92d705dd93a4e4878
[ "MIT" ]
38
2017-07-25T06:00:52.000Z
2022-03-19T10:01:06.000Z
#include "StdAfx.h" #include "ConvertGrid.h" #include "ParamManager.h" #include "Miscs\TimeMeter.h" CConvertGrid::CConvertGrid(void) { } CConvertGrid::~CConvertGrid(void) { } void CConvertGrid::Convert() { CParamManager * manager = CParamManager::GetParamManager(); CTimeMeter timer; timer.Start(); fprintf_s( st...
23.378549
134
0.622048
liuxinren
6342a63a5a2c6a869687ad8acb3085a1f4174e46
9,579
cpp
C++
tests/unittest/test_hetercallbacklist_basic.cpp
digital-stage/eventpp
a0978f91f9d74a5943ed668b3fe15d64b0675b5c
[ "Apache-2.0" ]
685
2018-05-13T03:59:19.000Z
2022-03-31T22:43:43.000Z
tests/unittest/test_hetercallbacklist_basic.cpp
digital-stage/eventpp
a0978f91f9d74a5943ed668b3fe15d64b0675b5c
[ "Apache-2.0" ]
32
2018-06-01T03:15:13.000Z
2022-01-18T09:23:06.000Z
tests/unittest/test_hetercallbacklist_basic.cpp
digital-stage/eventpp
a0978f91f9d74a5943ed668b3fe15d64b0675b5c
[ "Apache-2.0" ]
128
2018-05-13T06:41:58.000Z
2022-03-30T16:58:10.000Z
// eventpp library // Copyright (C) 2018 Wang Qi (wqking) // Github: https://github.com/wqking/eventpp // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LIC...
25.408488
114
0.649024
digital-stage
6345730d11666a9992159533a2677a96ed7e8752
347
cpp
C++
TrainingWithBook/JumpingBinarySearch.cpp
andzh1/Competitive-programming
babb9494e03fe0feb2130e50887996d0ffc92c4e
[ "MIT" ]
null
null
null
TrainingWithBook/JumpingBinarySearch.cpp
andzh1/Competitive-programming
babb9494e03fe0feb2130e50887996d0ffc92c4e
[ "MIT" ]
null
null
null
TrainingWithBook/JumpingBinarySearch.cpp
andzh1/Competitive-programming
babb9494e03fe0feb2130e50887996d0ffc92c4e
[ "MIT" ]
null
null
null
#include <bits/stdc++.h> using namespace std; #define loop(a,b) for(int i = a; i < b; i++) int main(){ int n = 5, wanted = 5; int array[] = {1,2,3,4,5}; int k = 0; for(int b = n/2; b >= 1; b /= 2){ while(k + b < n && array[k+b] <= wanted) k += b; } if(array[k] == wanted){ //we...
20.411765
56
0.458213
andzh1
63489ad56bf0b0d5a22c5bbb6c18274404087dd7
2,306
cpp
C++
STM32F1/libraries/MakeArduino_Examples/examples/MakeArduino_F103Rx_UsbCardReader/app_usb_mass.cpp
iamdev/MakeArduino_STM32
3dba2f132082d63cdbb318ba0fcc1df6d382227a
[ "Unlicense" ]
null
null
null
STM32F1/libraries/MakeArduino_Examples/examples/MakeArduino_F103Rx_UsbCardReader/app_usb_mass.cpp
iamdev/MakeArduino_STM32
3dba2f132082d63cdbb318ba0fcc1df6d382227a
[ "Unlicense" ]
null
null
null
STM32F1/libraries/MakeArduino_Examples/examples/MakeArduino_F103Rx_UsbCardReader/app_usb_mass.cpp
iamdev/MakeArduino_STM32
3dba2f132082d63cdbb318ba0fcc1df6d382227a
[ "Unlicense" ]
null
null
null
#include "app_usb_mass.h" #include "app_sdfat.h" #define DEBUG_READ_WRITE 0 bool sd_write_buffer(uint32_t memoryOffset, const uint8_t *writebuff, uint16_t transferLength) { digitalWrite(LED_BUILTIN,LOW); #if SERIAL_DEBUG >0 && DEBUG_SD_INFO > 0 && DEBUG_READ_WRITE > 0 Serial.print("Write [0x"); Serial.print(...
26.813953
95
0.691674
iamdev
634c5a28e779a93d5770eaecfa8fbc46d2f4cad5
3,852
cpp
C++
src/skylines_engine/queries/algorithms/single_thread_sorting.cpp
gggprojects/skylines
1b0d204f1fbb8e24af026723ba9887988798c974
[ "MIT" ]
null
null
null
src/skylines_engine/queries/algorithms/single_thread_sorting.cpp
gggprojects/skylines
1b0d204f1fbb8e24af026723ba9887988798c974
[ "MIT" ]
null
null
null
src/skylines_engine/queries/algorithms/single_thread_sorting.cpp
gggprojects/skylines
1b0d204f1fbb8e24af026723ba9887988798c974
[ "MIT" ]
1
2018-08-31T15:53:36.000Z
2018-08-31T15:53:36.000Z
#include <iostream> #include "queries/algorithms/single_thread_sorting.hpp" #include "common/time.hpp" namespace sl { namespace queries { namespace algorithms { data::Statistics SingleThreadSorting::Run(NonConstData<data::WeightedPoint> *output, DistanceType distance_type) { if (!Init(output)) return data...
43.280899
167
0.631101
gggprojects
634ff123129d4b1a5fc42ca350d23c31bf9127b1
7,922
cpp
C++
cocos2d-x-2.2/extensions/CocoStudio/ActionTimeline/CCActionTimeline.cpp
centrallydecentralized/ufo
29e8f9ce4ce92635ed22f8a051c917cfe6e0313d
[ "BSD-3-Clause" ]
58
2015-01-05T04:40:48.000Z
2021-12-17T06:01:28.000Z
cocos2d-x-2.2/extensions/CocoStudio/ActionTimeline/CCActionTimeline.cpp
centrallydecentralized/ufo
29e8f9ce4ce92635ed22f8a051c917cfe6e0313d
[ "BSD-3-Clause" ]
4
2021-04-29T06:20:51.000Z
2021-04-29T15:20:13.000Z
cocos2d-x-2.2/extensions/CocoStudio/ActionTimeline/CCActionTimeline.cpp
centrallydecentralized/ufo
29e8f9ce4ce92635ed22f8a051c917cfe6e0313d
[ "BSD-3-Clause" ]
46
2015-01-03T06:20:54.000Z
2020-04-18T13:32:52.000Z
/**************************************************************************** Copyright (c) 2013 cocos2d-x.org http://www.cocos2d-x.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without res...
25.554839
103
0.662964
centrallydecentralized
635a2d20960c28bd98e165dbecc1334fa1439da0
3,102
cpp
C++
server/src/server.cpp
fruityloops1/smo-duktape
b840048b9f682eb5d46c3d48c3fa870a7509e55c
[ "MIT" ]
2
2021-12-03T17:41:19.000Z
2022-02-26T05:57:11.000Z
server/src/server.cpp
fruityloops1/smo-duktape
b840048b9f682eb5d46c3d48c3fa870a7509e55c
[ "MIT" ]
null
null
null
server/src/server.cpp
fruityloops1/smo-duktape
b840048b9f682eb5d46c3d48c3fa870a7509e55c
[ "MIT" ]
null
null
null
#include <ratio> #include <server.h> #include <packet.h> #include <arpa/inet.h> #include <netinet/in.h> #include <sys/socket.h> #include <thread> #include <iostream> #include <fstream> #define MAX_PACKET_SIZE 0x400 #define IN_PACKET(TYPE) case smo::InPacketType::TYPE: {\ InPacket##TYPE p;\ ...
25.016129
119
0.527724
fruityloops1
635f1c293fa074f158292cee2f3ec52e8ba7c145
1,707
cpp
C++
src/Compiler/Parser/ParseHelper.cpp
feral-lang/feral
1ce8eb72eec7c8a5ac19d3767e907b86387e29e0
[ "MIT" ]
131
2020-03-19T15:22:37.000Z
2021-12-19T02:37:01.000Z
src/Compiler/Parser/ParseHelper.cpp
Electrux/feral
1ce8eb72eec7c8a5ac19d3767e907b86387e29e0
[ "BSD-3-Clause" ]
14
2020-04-06T05:50:15.000Z
2021-06-26T06:19:04.000Z
src/Compiler/Parser/ParseHelper.cpp
Electrux/feral
1ce8eb72eec7c8a5ac19d3767e907b86387e29e0
[ "BSD-3-Clause" ]
20
2020-04-06T07:28:30.000Z
2021-09-05T14:46:25.000Z
/* MIT License Copyright (c) 2020 Feral Language repositories Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modi...
24.73913
78
0.70123
feral-lang
6360c83106eccf789b6fa68dbb1a18def5e4ced4
6,030
hpp
C++
Spark/Buffer.hpp
MickAlmighty/SparkRenderer
0e30e342c7cf4003da54e9ce191fead647a868eb
[ "MIT" ]
1
2022-02-15T19:50:01.000Z
2022-02-15T19:50:01.000Z
Spark/Buffer.hpp
MickAlmighty/SparkRenderer
0e30e342c7cf4003da54e9ce191fead647a868eb
[ "MIT" ]
null
null
null
Spark/Buffer.hpp
MickAlmighty/SparkRenderer
0e30e342c7cf4003da54e9ce191fead647a868eb
[ "MIT" ]
null
null
null
#pragma once #include <algorithm> #include <optional> #include <set> #include <vector> #include <glad/glad.h> template<GLenum BUFFER_TYPE> class Buffer { public: GLuint ID{0}; GLint binding{-1}; GLsizei size{0}; Buffer(std::size_t sizeInBytes = 0, GLenum usage = GL_DYNAMIC_DRAW); Buffer(cons...
25.550847
145
0.670813
MickAlmighty
63671d1240dc16daf9cf31de2d059475a5d5d032
16,303
cxx
C++
Examples/ANTSIntegrateVectorField.cxx
KevinScholtes/ANTsX
5462269c0c32e5d65560bae4014c5a05cb02588d
[ "BSD-3-Clause" ]
null
null
null
Examples/ANTSIntegrateVectorField.cxx
KevinScholtes/ANTsX
5462269c0c32e5d65560bae4014c5a05cb02588d
[ "BSD-3-Clause" ]
null
null
null
Examples/ANTSIntegrateVectorField.cxx
KevinScholtes/ANTsX
5462269c0c32e5d65560bae4014c5a05cb02588d
[ "BSD-3-Clause" ]
1
2019-10-06T07:31:58.000Z
2019-10-06T07:31:58.000Z
#include "antsUtilities.h" #include "antsAllocImage.h" #include <algorithm> #include "itkVectorIndexSelectionCastImageFilter.h" #include "itkImageRegionIteratorWithIndex.h" #include "vnl/algo/vnl_determinant.h" #include "itkWarpImageFilter.h" #include "itkImageFileWriter.h" #include "itkRescaleIntensityImageFilter....
33.203666
126
0.635098
KevinScholtes
636af685bcd7ad025e660a410b114e639536321f
5,672
cpp
C++
source/mclib/mlr/mlrinfinitelightwithfalloff.cpp
mechasource/mechcommander2
b2c7cecf001cec1f535aa8d29c31bdc30d9aa983
[ "BSD-2-Clause" ]
38
2015-04-10T13:31:03.000Z
2021-09-03T22:34:05.000Z
source/mclib/mlr/mlrinfinitelightwithfalloff.cpp
mechasource/mechcommander2
b2c7cecf001cec1f535aa8d29c31bdc30d9aa983
[ "BSD-2-Clause" ]
1
2020-07-09T09:48:44.000Z
2020-07-12T12:41:43.000Z
source/mclib/mlr/mlrinfinitelightwithfalloff.cpp
mechasource/mechcommander2
b2c7cecf001cec1f535aa8d29c31bdc30d9aa983
[ "BSD-2-Clause" ]
12
2015-06-29T08:06:57.000Z
2021-10-13T13:11:41.000Z
//===========================================================================// // Copyright (C) Microsoft Corporation. All rights reserved. // //===========================================================================// #include "stdinc.h" #include "mlr/mlrinfinitelightwithfalloff.h" namespace Mi...
29.696335
100
0.540197
mechasource
636b5aff0ad61ecc4287300b959542bb1bde3573
982
cpp
C++
uva/524.cpp
larc/competitive_programming
deccd7152a14adf217c58546d1cf8ac6b45f1c52
[ "MIT" ]
1
2019-05-23T19:05:39.000Z
2019-05-23T19:05:39.000Z
uva/524.cpp
larc/oremor
deccd7152a14adf217c58546d1cf8ac6b45f1c52
[ "MIT" ]
null
null
null
uva/524.cpp
larc/oremor
deccd7152a14adf217c58546d1cf8ac6b45f1c52
[ "MIT" ]
null
null
null
// 524 - Prime Ring Problem #include <cstdio> #include <cstring> #define N 16 #define M 32 int ring[N]; bool not_prime[M]; bool selected[N]; void init_prime() { memset(not_prime, 0, sizeof(not_prime)); for(int i = 2; i < M; ++i) if(!not_prime[i]) for(int j = i * i; j < M; j += i) not_prime[j] = 1; } vo...
14.441176
49
0.525458
larc
636cd41bc1e72bf99ab64fb7a368b8d51bc9edd8
1,863
cpp
C++
Tuniac1/NFN_Exporter/NumberedFileExporter.cpp
Harteex/Tuniac
dac98a68c1b801b7fc82874aad16cc8adcabb606
[ "BSD-3-Clause" ]
3
2022-01-05T08:47:51.000Z
2022-01-06T12:42:18.000Z
Tuniac1/NFN_Exporter/NumberedFileExporter.cpp
Harteex/Tuniac
dac98a68c1b801b7fc82874aad16cc8adcabb606
[ "BSD-3-Clause" ]
null
null
null
Tuniac1/NFN_Exporter/NumberedFileExporter.cpp
Harteex/Tuniac
dac98a68c1b801b7fc82874aad16cc8adcabb606
[ "BSD-3-Clause" ]
1
2022-01-06T16:12:58.000Z
2022-01-06T16:12:58.000Z
#include "StdAfx.h" #include "NumberedFileExporter.h" CNumberedFileExporter::CNumberedFileExporter(void) { } CNumberedFileExporter::~CNumberedFileExporter(void) { } LPTSTR CNumberedFileExporter::GetName(void) { return TEXT("Numbered File Exporter"); } void CNumberedFileExporter::Destory(void) { delete this; ...
20.7
212
0.765432
Harteex
636d8faf922ac3c55de0aaf64a883266b3778283
4,184
cpp
C++
coast/wdbase/ServerLFThreadPoolsManager.cpp
zer0infinity/CuteForCoast
37d933c5fe2e0ce9a801f51b2aa27c7a18098511
[ "BSD-3-Clause" ]
null
null
null
coast/wdbase/ServerLFThreadPoolsManager.cpp
zer0infinity/CuteForCoast
37d933c5fe2e0ce9a801f51b2aa27c7a18098511
[ "BSD-3-Clause" ]
null
null
null
coast/wdbase/ServerLFThreadPoolsManager.cpp
zer0infinity/CuteForCoast
37d933c5fe2e0ce9a801f51b2aa27c7a18098511
[ "BSD-3-Clause" ]
null
null
null
/* * Copyright (c) 2005, Peter Sommerlad and IFS Institute for Software at HSR Rapperswil, Switzerland * All rights reserved. * * This library/application is free software; you can redistribute and/or modify it under the terms of * the license that is included with this library/application in the file license.txt....
27.346405
102
0.769598
zer0infinity
636ee9507dff33daf93aa51f732e5acb3874fcbe
1,040
hpp
C++
include/ce2/asset/prefab.hpp
chokomancarr/chokoengine2
2825f2b95d24689f4731b096c8be39cc9a0f759a
[ "Apache-2.0" ]
null
null
null
include/ce2/asset/prefab.hpp
chokomancarr/chokoengine2
2825f2b95d24689f4731b096c8be39cc9a0f759a
[ "Apache-2.0" ]
null
null
null
include/ce2/asset/prefab.hpp
chokomancarr/chokoengine2
2825f2b95d24689f4731b096c8be39cc9a0f759a
[ "Apache-2.0" ]
null
null
null
#pragma once #include "chokoengine.hpp" CE_BEGIN_NAMESPACE /* Prefab class * A holder of scene objects * Saves a configuration of objects * that can be instantiated into the scene */ class _Prefab : public _Asset { CE_OBJECT_COMMON public: class _ObjBase; class _ObjTreeBase; typedef std::function<Prefab(const...
22.12766
70
0.748077
chokomancarr
6378afe632187919bb9e47b4fb4b5b5915cd3ae1
3,130
cpp
C++
src/Shay/AABB.cpp
MajorArkwolf/stonks
5671f7811f19af33450e5fd07ab61c700f71ee69
[ "0BSD" ]
null
null
null
src/Shay/AABB.cpp
MajorArkwolf/stonks
5671f7811f19af33450e5fd07ab61c700f71ee69
[ "0BSD" ]
null
null
null
src/Shay/AABB.cpp
MajorArkwolf/stonks
5671f7811f19af33450e5fd07ab61c700f71ee69
[ "0BSD" ]
null
null
null
#include "AABB.hpp" using Shay::AABB; /** * @brief Sets the max X value for the bounding box * @param tempX The maxmimum x-coordinate */ void AABB::SetMaxX(GLfloat tempX) { if (this->currentAABB >= m_BBox.size()) { m_BBox.push_back({}); } m_BBox[this->currentAABB].max.x = tempX; } /** * @brie...
22.198582
59
0.650479
MajorArkwolf
6388478c98205199031129eabe5f02ca67748796
1,207
hpp
C++
include/Library/Physics/Time.hpp
cowlicks/library-physics
dd314011132430fcf074a9a1633b24471745cf92
[ "Apache-2.0" ]
null
null
null
include/Library/Physics/Time.hpp
cowlicks/library-physics
dd314011132430fcf074a9a1633b24471745cf92
[ "Apache-2.0" ]
null
null
null
include/Library/Physics/Time.hpp
cowlicks/library-physics
dd314011132430fcf074a9a1633b24471745cf92
[ "Apache-2.0" ]
null
null
null
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// @project Library ▸ Physics /// @file Library/Physics/Time.hpp /// @author Lucas Brémond <lucas@loftorbital.com> /// @license ...
46.423077
160
0.339685
cowlicks
638a1b59b9be595225712a7150cd96d9698d2e34
2,498
cpp
C++
tests/cpp-tests/Classes/VRTest/VRTest.cpp
DelinWorks/adxe
0f1ba3a086d744bb52e157e649fa986ae3c7ab05
[ "MIT" ]
null
null
null
tests/cpp-tests/Classes/VRTest/VRTest.cpp
DelinWorks/adxe
0f1ba3a086d744bb52e157e649fa986ae3c7ab05
[ "MIT" ]
4
2020-10-22T05:45:37.000Z
2020-10-23T12:11:44.000Z
tests/cpp-tests/Classes/VRTest/VRTest.cpp
DelinWorks/adxe
0f1ba3a086d744bb52e157e649fa986ae3c7ab05
[ "MIT" ]
1
2020-10-22T03:17:28.000Z
2020-10-22T03:17:28.000Z
/**************************************************************************** Copyright (c) 2012 cocos2d-x.org Copyright (c) 2013-2016 Chukong Technologies Inc. Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. https://adxeproject.github.io/ Permission is hereby granted, free of charge, to any person obtain...
31.620253
78
0.617294
DelinWorks
638c611b543c3ee35594ac1b41efdf74566d2021
2,473
cc
C++
egserver.cc
jdb19937/tewel
e2dc25c0998b2bf2763cd68ff66691e0c9f86928
[ "MIT" ]
null
null
null
egserver.cc
jdb19937/tewel
e2dc25c0998b2bf2763cd68ff66691e0c9f86928
[ "MIT" ]
null
null
null
egserver.cc
jdb19937/tewel
e2dc25c0998b2bf2763cd68ff66691e0c9f86928
[ "MIT" ]
null
null
null
#define __MAKEMORE_EGSERVER_CC__ 1 #include <stdio.h> #include <assert.h> #include <stdlib.h> #include <unistd.h> #include <time.h> #include <sys/fcntl.h> #include <sys/socket.h> #include <sys/wait.h> #include <sys/types.h> #include <sys/signal.h> #include <sys/mman.h> #include <netinet/in.h> #include <string.h> #incl...
20.608333
138
0.59078
jdb19937
b0d7ef07b20683853f6b0946d548c3d0a3ec98b4
6,910
cc
C++
stig/indy/disk/util/stig_dm.cc
ctidder/stigdb
d9ef3eb117d46542745ca98c55df13ec71447091
[ "Apache-2.0" ]
5
2018-04-24T12:36:50.000Z
2020-03-25T00:37:17.000Z
stig/indy/disk/util/stig_dm.cc
ctidder/stigdb
d9ef3eb117d46542745ca98c55df13ec71447091
[ "Apache-2.0" ]
null
null
null
stig/indy/disk/util/stig_dm.cc
ctidder/stigdb
d9ef3eb117d46542745ca98c55df13ec71447091
[ "Apache-2.0" ]
2
2018-04-24T12:39:24.000Z
2020-03-25T00:45:08.000Z
/* <stig/indy/disk/util/stig_dm.cc> The 'main' of the Stig disk manager. Copyright 2010-2014 Tagged Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.or...
33.221154
158
0.618958
ctidder
b0e0e9c86e1475f700fae7a1fb276e7bf76f751f
19,105
cpp
C++
kittycat/catcontainer.cpp
siilky/catomania
cb3a05cbef523d16b8929b390e190e0cd5924ee9
[ "MIT" ]
1
2021-02-05T23:20:07.000Z
2021-02-05T23:20:07.000Z
kittycat/catcontainer.cpp
siilky/catomania
cb3a05cbef523d16b8929b390e190e0cd5924ee9
[ "MIT" ]
null
null
null
kittycat/catcontainer.cpp
siilky/catomania
cb3a05cbef523d16b8929b390e190e0cd5924ee9
[ "MIT" ]
null
null
null
#include "stdafx.h" #include <QMimeData> #include <QVector> #include "catcontainer.h" CatContainer::CatContainer(const JsonValue & config, CatGroup *parent) : TreeItem(parent) , config_(config) , cat_(new CatCtl(config)) , catView_(new CatView(cat_)) { std::wstring tag; config.get(L"Tag", ta...
24.462228
132
0.521853
siilky
b0e43d3b2a34cd1f30259295f2b66697ee18e1cf
3,737
cc
C++
main.cc
tamerfrombk/gbdsm
098798c934de124a7a3b7a37dd67e5de83644b7e
[ "MIT" ]
null
null
null
main.cc
tamerfrombk/gbdsm
098798c934de124a7a3b7a37dd67e5de83644b7e
[ "MIT" ]
null
null
null
main.cc
tamerfrombk/gbdsm
098798c934de124a7a3b7a37dd67e5de83644b7e
[ "MIT" ]
null
null
null
#include <cstdio> #include <cstdlib> #include <cstring> #include <string> #include <limits> #include "ops.h" #include "common.h" #include "dasm.h" static void print_help() { std::printf("gbdsm %s -- The GameBoy ROM disassembler.\n", GBDSM_VERSION); std::putchar('\n'); std::puts("Usage: gbdsm '/path/to/ro...
24.585526
112
0.552047
tamerfrombk
b0e67c98e7e73e9500e520a0d9084a414f5cbcc7
2,621
hh
C++
src/systems/AudioSystem.hh
rovedit/Fort-Candle
445fb94852df56c279c71b95c820500e7fb33cf7
[ "MIT" ]
null
null
null
src/systems/AudioSystem.hh
rovedit/Fort-Candle
445fb94852df56c279c71b95c820500e7fb33cf7
[ "MIT" ]
null
null
null
src/systems/AudioSystem.hh
rovedit/Fort-Candle
445fb94852df56c279c71b95c820500e7fb33cf7
[ "MIT" ]
null
null
null
#pragma once #include <algorithm> #include <glow/fwd.hh> #include "glow/common/log.hh" #include "ecs/Engine.hh" #include "ecs/System.hh" #include "AL/al.h" #include "AL/alc.h" #include "typed-geometry/tg.hh" #include "utility/Sound.hh" namespace gamedev { class AudioSystem : public System { public: void Init(std:...
28.802198
141
0.636398
rovedit
b0e76565499e49fd0da413f8b1c38cf0f93e2bca
2,558
cpp
C++
Frame/OpenGL/Test/StaticMeshTest.cpp
anirul/Frame
6bf93cc032cc53eb9f9c94965f4b7e795812fa13
[ "MIT" ]
null
null
null
Frame/OpenGL/Test/StaticMeshTest.cpp
anirul/Frame
6bf93cc032cc53eb9f9c94965f4b7e795812fa13
[ "MIT" ]
1
2021-02-24T08:59:22.000Z
2021-02-24T08:59:22.000Z
Frame/OpenGL/Test/StaticMeshTest.cpp
anirul/Frame
6bf93cc032cc53eb9f9c94965f4b7e795812fa13
[ "MIT" ]
null
null
null
#include "StaticMeshTest.h" #include <GL/glew.h> #include "Frame/BufferInterface.h" #include "Frame/File/FileSystem.h" #include "Frame/OpenGL/File/LoadStaticMesh.h" #include "Frame/Level.h" namespace test { TEST_F(StaticMeshTest, CreateCubeMeshTest) { EXPECT_EQ(GLEW_OK, glewInit()); ASSERT_TRUE(window_); au...
33.657895
70
0.738468
anirul
b0f0c9e511948015e676815f65d9fe47a9908ab2
1,514
hpp
C++
src/binary/bin_wrappers.hpp
kbentum/LPLANN
c526113e583058c3b9f4ea5ef5ccc7d5a9d658d3
[ "MIT" ]
null
null
null
src/binary/bin_wrappers.hpp
kbentum/LPLANN
c526113e583058c3b9f4ea5ef5ccc7d5a9d658d3
[ "MIT" ]
null
null
null
src/binary/bin_wrappers.hpp
kbentum/LPLANN
c526113e583058c3b9f4ea5ef5ccc7d5a9d658d3
[ "MIT" ]
null
null
null
#ifndef BINWRAPPERS_HPP #define BINWRAPPERS_HPP #include <vector> #include <memory> #include <math.h> #include "src/construction/layer.hpp" #include "src/binary/conv.hpp" #include "src/binary/fc.hpp" #include "src/ops/print.hpp" //In general, we always assume a function has binary input and output, not reg template...
27.527273
82
0.703435
kbentum
b0f1752b1ca9f4c019ec0e0f115d547f9ff1574b
3,172
cpp
C++
Tridor/src/Log/AppLog.cpp
AzadKshitij/Triger
969dbead69f5ebc40d8ef6bc9ec9d763c4510ecb
[ "MIT" ]
2
2020-10-25T15:51:46.000Z
2020-11-10T15:06:22.000Z
Tridor/src/Log/AppLog.cpp
AzadKshitij/Triger
969dbead69f5ebc40d8ef6bc9ec9d763c4510ecb
[ "MIT" ]
3
2020-11-11T16:54:49.000Z
2020-11-29T14:35:31.000Z
Tridor/src/Log/AppLog.cpp
AzadKshitij/Triger
969dbead69f5ebc40d8ef6bc9ec9d763c4510ecb
[ "MIT" ]
null
null
null
#include "AppLog.h" namespace Triger { void AppLog::Clear() { m_Buf.clear(); m_LineOffsets.clear(); m_LineOffsets.push_back(0); } void AppLog::OnImGuiRender() { /*if (!ImGui::Begin(title, p_open)) { ImGui::End(); return; }*/ // Options menu if (ImGui::BeginPopup("Options")) { ImGui...
28.321429
135
0.6529
AzadKshitij
b0f8934becf2b16425721328c498fc05bb52bbd1
49
hpp
C++
libraries/protocol/include/offer/protocol/protocol.hpp
nharan/offer
9d26f480a7d3009969b2b06c0cd2e83772f52c25
[ "MIT" ]
null
null
null
libraries/protocol/include/offer/protocol/protocol.hpp
nharan/offer
9d26f480a7d3009969b2b06c0cd2e83772f52c25
[ "MIT" ]
null
null
null
libraries/protocol/include/offer/protocol/protocol.hpp
nharan/offer
9d26f480a7d3009969b2b06c0cd2e83772f52c25
[ "MIT" ]
null
null
null
#pragma once #include <offer/protocol/block.hpp>
16.333333
35
0.77551
nharan
b0f943d10c768e22f9de9aeeef3c86f9b543356e
822
cpp
C++
8.二叉树的下一个结点/8.二叉树的下一个结点.cpp
shenweichen/coding_interviews
990cc54a62b8fa277b743289e8d6f6e96a95225d
[ "MIT" ]
483
2020-01-05T12:58:59.000Z
2022-03-19T05:44:00.000Z
8.二叉树的下一个结点/8.二叉树的下一个结点.py
moshilangzi/coding_interviews
990cc54a62b8fa277b743289e8d6f6e96a95225d
[ "MIT" ]
1
2020-01-20T08:47:15.000Z
2020-01-27T13:24:15.000Z
8.二叉树的下一个结点/8.二叉树的下一个结点.py
moshilangzi/coding_interviews
990cc54a62b8fa277b743289e8d6f6e96a95225d
[ "MIT" ]
122
2020-01-05T14:10:04.000Z
2022-03-19T05:24:42.000Z
/* struct TreeLinkNode { int val; struct TreeLinkNode *left; struct TreeLinkNode *right; struct TreeLinkNode *next; TreeLinkNode(int x) :val(x), left(NULL), right(NULL), next(NULL) { } }; */ class Solution { public: TreeLinkNode* GetNext(TreeLinkNode* pNode) { if (pNode-...
22.833333
70
0.512165
shenweichen
b0fd1a632a37aa3bfb58fd3a6d009f1f672a7c9a
994
cpp
C++
src/hello_imgui/widgets/logger.cpp
jhoffmann2/hello_imgui
7430223491de1ee12b4e3c30cc430d026ae10d62
[ "MIT" ]
245
2020-06-21T10:06:45.000Z
2022-03-24T04:43:23.000Z
src/hello_imgui/widgets/logger.cpp
jhoffmann2/hello_imgui
7430223491de1ee12b4e3c30cc430d026ae10d62
[ "MIT" ]
19
2020-06-22T22:06:25.000Z
2021-09-05T12:28:44.000Z
src/hello_imgui/widgets/logger.cpp
jhoffmann2/hello_imgui
7430223491de1ee12b4e3c30cc430d026ae10d62
[ "MIT" ]
36
2020-06-20T04:42:54.000Z
2022-03-29T10:55:20.000Z
#include "hello_imgui/widgets/logger.h" namespace HelloImGui { namespace Widgets { Logger::Logger(std::string label_, DockSpaceName dockSpaceName_) : DockableWindow(label_, dockSpaceName_, {}) , log_(logBuffer_, maxBufferSize) { this->GuiFonction = [this]() { log_.draw(); }; } void Logger::deb...
19.115385
64
0.645875
jhoffmann2
b0fe257dc68660f61f07cf6370abb386d9d89965
577
cpp
C++
src/client/src/InkEditorModel.cpp
don-reba/peoples-note
c22d6963846af833c55f4294dd0474e83344475d
[ "BSD-2-Clause" ]
null
null
null
src/client/src/InkEditorModel.cpp
don-reba/peoples-note
c22d6963846af833c55f4294dd0474e83344475d
[ "BSD-2-Clause" ]
null
null
null
src/client/src/InkEditorModel.cpp
don-reba/peoples-note
c22d6963846af833c55f4294dd0474e83344475d
[ "BSD-2-Clause" ]
null
null
null
#include "stdafx.h" #include "InkEditorModel.h" #include "IRegistryKey.h" InkEditorModel::InkEditorModel ( IRegistryKey & registryKey ) : registryKey (registryKey) { } void InkEditorModel::GetPen ( std::wstring & width , std::wstring & color ) { width = registryKey.GetString(L"pen width", L...
19.233333
56
0.670711
don-reba
7c000c1959c00a89b9a7a760e596ebe108aac7f0
2,416
cpp
C++
CubeEngine/Application/CubeGame/Gun/FPGun.cpp
tangziwen/Cube-Engine
c79b878dcc7e2e382f4463ca63519627d6220afd
[ "MIT" ]
360
2015-01-26T08:15:01.000Z
2021-07-11T16:30:58.000Z
CubeEngine/Application/CubeGame/Gun/FPGun.cpp
tangziwen/Cube-Engine
c79b878dcc7e2e382f4463ca63519627d6220afd
[ "MIT" ]
6
2015-03-09T09:15:07.000Z
2020-07-06T01:34:00.000Z
CubeEngine/Application/CubeGame/Gun/FPGun.cpp
tangziwen/CubeMiniGame
90bffa66d4beba5fddc39fc642a8fb36703cf32d
[ "MIT" ]
41
2015-03-10T03:17:46.000Z
2021-07-13T06:26:26.000Z
#include "FPGun.h" #include "CubeGame/BulletMgr.h" #include "CubeGame/GameUISystem.h" #include "Lighting/PointLight.h" #include "Scene/SceneMgr.h" #include "AudioSystem/AudioSystem.h" namespace tzw { FPGun::FPGun(FPGunData * gunData): m_data(gunData) { m_model = Model::create(m_data->m_filePath); m_model->setPos(0...
23.009524
132
0.695364
tangziwen
7c0049b4a77f51a230bd957d365651322e605be4
132
cpp
C++
src/main.cpp
borninla/R-Shell
72b35fdb5ef7cba23791c65045a8b2bf0272321b
[ "MIT" ]
null
null
null
src/main.cpp
borninla/R-Shell
72b35fdb5ef7cba23791c65045a8b2bf0272321b
[ "MIT" ]
null
null
null
src/main.cpp
borninla/R-Shell
72b35fdb5ef7cba23791c65045a8b2bf0272321b
[ "MIT" ]
null
null
null
#include <iostream> #include "../header/manager.h" using namespace std; int main() { Manager m; m.run(); return 0; }
10.153846
30
0.598485
borninla
7c0649e1ccdc5efa9bae15d7d181ec1eef88d889
1,630
cpp
C++
src/MapEditor/UnitEditor/UnitDlg.cpp
vitek-karas/WarPlusPlus
3abb26ff30dc0e93de906ab6141b89c2fa301ae4
[ "MIT" ]
4
2019-06-17T13:44:49.000Z
2021-01-19T10:39:48.000Z
src/MapEditor/UnitEditor/UnitDlg.cpp
vitek-karas/WarPlusPlus
3abb26ff30dc0e93de906ab6141b89c2fa301ae4
[ "MIT" ]
null
null
null
src/MapEditor/UnitEditor/UnitDlg.cpp
vitek-karas/WarPlusPlus
3abb26ff30dc0e93de906ab6141b89c2fa301ae4
[ "MIT" ]
4
2019-06-17T16:03:20.000Z
2020-02-15T09:14:30.000Z
// UnitDlg.cpp : implementation file // #include "stdafx.h" #include "..\MapEditor.h" #include "UnitDlg.h" #include "..\DataObjects\EMap.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// //...
22.027027
77
0.678528
vitek-karas
7c09ee479bcf6a832ed5af7a14a248b03e62786c
3,749
cpp
C++
MCMF_Template.cpp
vicennial/Competitive-Coding-Library
48e338ca5f572d44d8f4224cdb373bb0cab5b856
[ "MIT" ]
1
2019-02-20T06:44:04.000Z
2019-02-20T06:44:04.000Z
MCMF_Template.cpp
vicennial/Competitive-Coding-Library
48e338ca5f572d44d8f4224cdb373bb0cab5b856
[ "MIT" ]
null
null
null
MCMF_Template.cpp
vicennial/Competitive-Coding-Library
48e338ca5f572d44d8f4224cdb373bb0cab5b856
[ "MIT" ]
null
null
null
//Gvs Akhil (Vicennial) #include<bits/stdc++.h> #define int long long #define pb push_back #define eb emplace_back #define mp make_pair #define mt make_tuple #define ld(a) while(a--) #define tci(v,i) for(auto i=v.begin();i!=v.end();i++) #define tcf(v,i) for(auto i : v) #define all(v) v.begin(),v.end() #define rep(i,sta...
35.704762
157
0.516671
vicennial
7c0ae2ece9247caf1221df2fc8b40c45c9ea0978
449
hpp
C++
bridge_graph.hpp
ibaned/omega_h_v1
9ab9efca33d66e4411f87206a7bd1534cec116e4
[ "MIT" ]
null
null
null
bridge_graph.hpp
ibaned/omega_h_v1
9ab9efca33d66e4411f87206a7bd1534cec116e4
[ "MIT" ]
null
null
null
bridge_graph.hpp
ibaned/omega_h_v1
9ab9efca33d66e4411f87206a7bd1534cec116e4
[ "MIT" ]
null
null
null
#ifndef BRIDGE_GRAPH_HPP #define BRIDGE_GRAPH_HPP namespace omega_h { void bridge_graph( unsigned nverts, unsigned const* adj_offsets, unsigned const* adj, unsigned* nedges_out, unsigned** verts_of_edges_out); void bridge_dual_graph( unsigned elem_dim, unsigned nelems, unsigned const*...
18.708333
39
0.737194
ibaned
7c125a1bf1323b388cbb4a8620cbecbaa69084dd
6,035
cpp
C++
src/midiutils/midiread.cpp
alexames/midiutils
12ac041c3f2f472473755c46f5f6306e02c2b564
[ "Unlicense" ]
null
null
null
src/midiutils/midiread.cpp
alexames/midiutils
12ac041c3f2f472473755c46f5f6306e02c2b564
[ "Unlicense" ]
null
null
null
src/midiutils/midiread.cpp
alexames/midiutils
12ac041c3f2f472473755c46f5f6306e02c2b564
[ "Unlicense" ]
null
null
null
#include "midiutils.hpp" #include <fstream> #include <iostream> using namespace std; //////////////////////////////////////////////////////////////////////////////// namespace midi { static unsigned int readUInt32be(istream& in) { char data[4]; in.read(data, 4); return (static_cast<unsi...
28.738095
123
0.60116
alexames
7c1612776c03d383b17ff57dfd67c9bffced3cb6
516
cpp
C++
compendium/test_bundles/ManagedServiceAndFactoryBundle/src/ManagedServiceFactoryServiceImpl.cpp
fmilano/CppMicroServices
b7e79edb558a63e45f6788e4a8b4e787cf956689
[ "Apache-2.0" ]
588
2015-10-07T15:55:08.000Z
2022-03-29T00:35:44.000Z
compendium/test_bundles/ManagedServiceAndFactoryBundle/src/ManagedServiceFactoryServiceImpl.cpp
fmilano/CppMicroServices
b7e79edb558a63e45f6788e4a8b4e787cf956689
[ "Apache-2.0" ]
459
2015-10-05T23:29:59.000Z
2022-03-29T14:13:37.000Z
compendium/test_bundles/ManagedServiceAndFactoryBundle/src/ManagedServiceFactoryServiceImpl.cpp
fmilano/CppMicroServices
b7e79edb558a63e45f6788e4a8b4e787cf956689
[ "Apache-2.0" ]
218
2015-11-04T08:19:48.000Z
2022-03-24T02:17:08.000Z
#include "ManagedServiceFactoryServiceImpl.hpp" namespace cppmicroservices { namespace service { namespace cm { namespace test { TestManagedServiceFactoryServiceImpl::TestManagedServiceFactoryServiceImpl( int initialValue) : value{ initialValue } {} TestManagedServiceFactoryServiceImpl::~TestManagedServiceFactor...
20.64
79
0.800388
fmilano
7c1dc825ae6fba53a1fb46f42f03168f1c4d15c6
13,663
cpp
C++
src/executors/sort.cpp
ShubhamAgrawal-13/Relational_Database
5d315633742df18eda6952d286cf86501d93ed58
[ "MIT" ]
null
null
null
src/executors/sort.cpp
ShubhamAgrawal-13/Relational_Database
5d315633742df18eda6952d286cf86501d93ed58
[ "MIT" ]
null
null
null
src/executors/sort.cpp
ShubhamAgrawal-13/Relational_Database
5d315633742df18eda6952d286cf86501d93ed58
[ "MIT" ]
null
null
null
#include"global.h" const int SORT_MAX = 1e5+5; int temp[SORT_MAX]; // bool isDigit(char ch) { // if (ch >= '0' && ch <= '9') // return true; // return false; // } /** * @brief File contains method to process SORT commands. * * syntax: * R <- SORT relation_name BY column_name IN sorting_ord...
27.826884
135
0.554344
ShubhamAgrawal-13
7c268a74c47b7d848e1f5195fdab2ea183d3b7ae
2,364
cpp
C++
FileFormats/Key/Key_Friendly.cpp
xloss/NWNFileFormats
0b3fd4fba416bcdb79f4d898a40a4107234ceea0
[ "WTFPL" ]
9
2018-03-02T17:03:43.000Z
2021-09-02T13:26:04.000Z
FileFormats/Key/Key_Friendly.cpp
xloss/NWNFileFormats
0b3fd4fba416bcdb79f4d898a40a4107234ceea0
[ "WTFPL" ]
8
2018-03-04T09:20:46.000Z
2020-12-06T04:28:33.000Z
FileFormats/Key/Key_Friendly.cpp
xloss/NWNFileFormats
0b3fd4fba416bcdb79f4d898a40a4107234ceea0
[ "WTFPL" ]
8
2018-03-04T09:18:49.000Z
2020-12-01T01:15:41.000Z
#include "FileFormats/Key/Key_Friendly.hpp" #include "Utility/Assert.hpp" #include <algorithm> #include <cstring> namespace FileFormats::Key::Friendly { Key::Key(Raw::Key const& rawKey) { // Get the referenced BIFs. for (Raw::KeyFile const& rawFile : rawKey.m_Files) { KeyBifReference reference; ...
38.129032
164
0.71066
xloss
7c363a4058ccd0b05b8d9b5886de610267d1e842
5,307
hpp
C++
Lodestar/primitives/sets/SetUnion.hpp
helkebir/Lodestar
6b325d3e7a388676ed31d44eac1146630ee4bb2c
[ "BSD-3-Clause" ]
4
2020-06-05T14:08:23.000Z
2021-06-26T22:15:31.000Z
Lodestar/primitives/sets/SetUnion.hpp
helkebir/Lodestar
6b325d3e7a388676ed31d44eac1146630ee4bb2c
[ "BSD-3-Clause" ]
2
2021-06-25T15:14:01.000Z
2021-07-01T17:43:20.000Z
Lodestar/primitives/sets/SetUnion.hpp
helkebir/Lodestar
6b325d3e7a388676ed31d44eac1146630ee4bb2c
[ "BSD-3-Clause" ]
1
2021-06-16T03:15:23.000Z
2021-06-16T03:15:23.000Z
// // Created by Hamza El-Kebir on 6/21/21. // #ifndef LODESTAR_SETUNION_HPP #define LODESTAR_SETUNION_HPP #include "SetExpression.hpp" #include <type_traits> #include <algorithm> namespace ls { namespace primitives { namespace sets { /** * @brief Union of two SetExpressions. ...
35.61745
109
0.419823
helkebir
7c38523fe7d90353fb50cc5dc38bb1f9c613a054
592
inl
C++
rasterizables/RasterizablePrimitiveList.inl
jaredhoberock/gotham
e3551cc355646530574d086d7cc2b82e41e8f798
[ "Apache-2.0" ]
6
2015-12-29T07:21:01.000Z
2020-05-29T10:47:38.000Z
rasterizables/RasterizablePrimitiveList.inl
jaredhoberock/gotham
e3551cc355646530574d086d7cc2b82e41e8f798
[ "Apache-2.0" ]
null
null
null
rasterizables/RasterizablePrimitiveList.inl
jaredhoberock/gotham
e3551cc355646530574d086d7cc2b82e41e8f798
[ "Apache-2.0" ]
null
null
null
/*! \file RasterizablePrimitiveList.inl * \author Jared Hoberock * \brief Inline file for RasterizablePrimitiveList.h. */ #include "RasterizablePrimitiveList.h" template<typename PrimitiveListParentType> void RasterizablePrimitiveList<PrimitiveListParentType> ::rasterize(void) { for(typename Parent0::ite...
25.73913
65
0.679054
jaredhoberock
7c3a81683459fac9a0ba9307804e0775f8ae07fb
1,776
hpp
C++
include/engine/game/scripttrigger.hpp
eXl-Nic/eXl
a5a0f77f47db3179365c107a184bb38b80280279
[ "MIT" ]
null
null
null
include/engine/game/scripttrigger.hpp
eXl-Nic/eXl
a5a0f77f47db3179365c107a184bb38b80280279
[ "MIT" ]
null
null
null
include/engine/game/scripttrigger.hpp
eXl-Nic/eXl
a5a0f77f47db3179365c107a184bb38b80280279
[ "MIT" ]
null
null
null
/* Copyright 2009-2021 Nicolas Colombe Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute...
40.363636
460
0.773649
eXl-Nic
7c3c7ff8f6955166bdbd693e0effd6edc45ca4ac
1,463
cpp
C++
tests/streaming/src_model/Model.cpp
TonyBrewer/OpenHT
63898397de4d303ba514d88b621cc91367ffe2a6
[ "BSD-3-Clause" ]
13
2015-02-26T22:46:18.000Z
2020-03-24T11:53:06.000Z
tests/streaming/src_model/Model.cpp
PacificBiosciences/OpenHT
63898397de4d303ba514d88b621cc91367ffe2a6
[ "BSD-3-Clause" ]
5
2016-02-25T17:08:19.000Z
2018-01-20T15:24:36.000Z
tests/streaming/src_model/Model.cpp
TonyBrewer/OpenHT
63898397de4d303ba514d88b621cc91367ffe2a6
[ "BSD-3-Clause" ]
12
2015-04-13T21:39:54.000Z
2021-01-15T01:00:13.000Z
#include "Ht.h" void HtCoprocModel() { uint32_t haltCnt = 0; uint16_t nau = 0; uint16_t au = 0; CHtModelHif *pModel = new CHtModelHif; CHtModelAuUnit *const *pAuUnits = pModel->AllocAllAuUnits(); nau = pModel->GetAuUnitCnt(); uint16_t rcvAu; uint32_t rcvCnt; // Loop until all AUs are done echoin...
21.514706
77
0.626111
TonyBrewer
7c3eba0795cd22609dde200195c4fd3e6b8b8741
5,485
cpp
C++
savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/thread_local_storage.cpp
ZephyrXD/Z-Builder-Source-CPP
f48e0f22b5d4d183b841abb8e61e1bdb5c25999d
[ "Apache-2.0" ]
6
2020-11-11T15:49:11.000Z
2021-03-08T10:29:23.000Z
savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/thread_local_storage.cpp
ZeppyXD/Z-Builder-Source-CPP
f48e0f22b5d4d183b841abb8e61e1bdb5c25999d
[ "Apache-2.0" ]
1
2020-11-08T17:28:35.000Z
2020-11-09T01:35:27.000Z
savedecrypter-master/savedecrypter/ClanLib-2.0/Sources/Core/System/thread_local_storage.cpp
ZeppyXD/Z-Builder-Source-CPP
f48e0f22b5d4d183b841abb8e61e1bdb5c25999d
[ "Apache-2.0" ]
3
2021-06-26T13:00:23.000Z
2022-02-01T02:16:50.000Z
/* ** ClanLib SDK ** Copyright (c) 1997-2010 The ClanLib Team ** ** This software is provided 'as-is', without any express or implied ** warranty. In no event will the authors be held liable for any damages ** arising from the use of this software. ** ** Permission is granted to anyone to use this software for a...
32.844311
120
0.742024
ZephyrXD
7c47701300dfe2487a85d90fc459ba063cae22a6
654
cpp
C++
windows-lockscreen-extractor/src/helpers/User.cpp
chistyakoviv/windows-lockscreen-extractor
189c396fe15fd3facdb2ebe4d8cab2317af0098f
[ "MIT" ]
null
null
null
windows-lockscreen-extractor/src/helpers/User.cpp
chistyakoviv/windows-lockscreen-extractor
189c396fe15fd3facdb2ebe4d8cab2317af0098f
[ "MIT" ]
null
null
null
windows-lockscreen-extractor/src/helpers/User.cpp
chistyakoviv/windows-lockscreen-extractor
189c396fe15fd3facdb2ebe4d8cab2317af0098f
[ "MIT" ]
null
null
null
#include "User.h" #include <clocale> #include <locale> #include <codecvt> static const wchar_t* LOCK_SCREEN_IMAGES_PATH = L"\\AppData\\Local\\Packages\\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\\LocalState\\Assets"; static std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> s_Converter; std::wstring...
26.16
154
0.778287
chistyakoviv
7c4aed921ec64f75f6cd7158352edf044939f391
2,781
cpp
C++
Demo/GameCode/IntroScene.cpp
TimPhoeniX/LuaDemo
99930f376f08f080e43737eb28606ab3f5d24eb9
[ "MIT" ]
2
2019-09-26T09:12:54.000Z
2019-10-03T10:43:59.000Z
Demo/GameCode/IntroScene.cpp
TimPhoeniX/LuaDemo
99930f376f08f080e43737eb28606ab3f5d24eb9
[ "MIT" ]
null
null
null
Demo/GameCode/IntroScene.cpp
TimPhoeniX/LuaDemo
99930f376f08f080e43737eb28606ab3f5d24eb9
[ "MIT" ]
null
null
null
#include "IntroScene.hpp" #include <Object/Shape/sge_shape.hpp> #include <Game/sge_game.hpp> #include <Game/Director/sge_director.hpp> #include "Image.hpp" #include "Logics.hpp" #include "Actions.hpp" #include "Renderer/sge_renderer.hpp" IntroScene::IntroScene(SGE::Scene* next, const char* path): path(path), next(n...
28.670103
120
0.685365
TimPhoeniX
7c510ec662d1a3d9eb901118b6cf9ce02e546aba
1,403
cpp
C++
src/windows/filesystem_win32.cpp
puremourning/netcoredbg
c34eaef68abe06197d03bc8c19282707cfc1adda
[ "MIT" ]
null
null
null
src/windows/filesystem_win32.cpp
puremourning/netcoredbg
c34eaef68abe06197d03bc8c19282707cfc1adda
[ "MIT" ]
null
null
null
src/windows/filesystem_win32.cpp
puremourning/netcoredbg
c34eaef68abe06197d03bc8c19282707cfc1adda
[ "MIT" ]
null
null
null
// Copyright (C) 2020 Samsung Electronics Co., Ltd. // See the LICENSE file in the project root for more information. /// \file filesystem_win32.cpp /// This file contains definitions of windows-specific functions related to file system. #ifdef WIN32 #include <windows.h> #include <string> #include "filesystem.h" nam...
26.980769
98
0.721311
puremourning
7c540cd285c2a41253b995ad72bc218634d63192
604
cpp
C++
34. Find First and Last Position of Element in Sorted Array.cpp
kushagra-18/Leetcode-solutions
cf276e6cc5491429144a79c59dd1097f1d625a6b
[ "MIT" ]
null
null
null
34. Find First and Last Position of Element in Sorted Array.cpp
kushagra-18/Leetcode-solutions
cf276e6cc5491429144a79c59dd1097f1d625a6b
[ "MIT" ]
null
null
null
34. Find First and Last Position of Element in Sorted Array.cpp
kushagra-18/Leetcode-solutions
cf276e6cc5491429144a79c59dd1097f1d625a6b
[ "MIT" ]
null
null
null
class Solution { public: vector<int> searchRange(vector<int>& nums, int target) { int n = nums.size(),i,count = 0,flag; for(i = 0;i<n;i++){ if(nums[i]==target){ count++; flag = i; } ...
19.483871
60
0.306291
kushagra-18