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
4125f00274076c92bf3ee475c0ab613fc31398b3
716
cpp
C++
uva/12100.cpp
cosmicray001/Online_judge_Solutions-
5dc6f90d3848eb192e6edea8e8c731f41a1761dd
[ "MIT" ]
3
2018-01-08T02:52:51.000Z
2021-03-03T01:08:44.000Z
uva/12100.cpp
cosmicray001/Online_judge_Solutions-
5dc6f90d3848eb192e6edea8e8c731f41a1761dd
[ "MIT" ]
null
null
null
uva/12100.cpp
cosmicray001/Online_judge_Solutions-
5dc6f90d3848eb192e6edea8e8c731f41a1761dd
[ "MIT" ]
1
2020-08-13T18:07:35.000Z
2020-08-13T18:07:35.000Z
#include <bits/stdc++.h> using namespace std; int main(){ freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); int t, n, p, a; for(scanf("%d", &t); t--; ){ priority_queue<int> pq; queue<pair<int, int> > q; scanf("%d %d", &n, &p); for(int i = 0; i < n; i++){ scanf("%d", &a)...
19.351351
37
0.417598
cosmicray001
4129cff2db6483d1505edbdba302e552114b9dd1
8,775
cpp
C++
src/libamp_common/buckets/bucket_type_hash.cpp
AmpScm/AmpScm
a7cc2010a6d7d59c5b26f88154b38c6c8775d9d8
[ "Apache-2.0" ]
null
null
null
src/libamp_common/buckets/bucket_type_hash.cpp
AmpScm/AmpScm
a7cc2010a6d7d59c5b26f88154b38c6c8775d9d8
[ "Apache-2.0" ]
null
null
null
src/libamp_common/buckets/bucket_type_hash.cpp
AmpScm/AmpScm
a7cc2010a6d7d59c5b26f88154b38c6c8775d9d8
[ "Apache-2.0" ]
1
2022-02-01T13:05:25.000Z
2022-02-01T13:05:25.000Z
#ifdef _WIN32 #include <Windows.h> #include <bcrypt.h> #else // TODO: Add OPENSSL variant #endif #include <zlib.h> #include "amp_buckets.hpp" using namespace amp; static amp::amp_bucket::amp_bucket_type hash_bucket_type("amp.hash"); amp_hash_result_t* amp_hash_result_create( amp_hash_algorithm_t algorithm, amp_po...
21.774194
141
0.713048
AmpScm
412cfaa5912f3d6646070ae80db849ea33685966
2,763
cpp
C++
kmp.cpp
albertcheu/snippets
bba723b18c347e735bcdc72e61dcdf1c220f4885
[ "MIT" ]
null
null
null
kmp.cpp
albertcheu/snippets
bba723b18c347e735bcdc72e61dcdf1c220f4885
[ "MIT" ]
null
null
null
kmp.cpp
albertcheu/snippets
bba723b18c347e735bcdc72e61dcdf1c220f4885
[ "MIT" ]
1
2022-03-17T17:32:48.000Z
2022-03-17T17:32:48.000Z
/*Knuth-Morris-Pratt*/ //Fast DFA-based string matching //"border" = prefix which is also a proper suffix //len[i] = length of longest border of pattern up to but not including ith char //len has size pattern.size+1 void kmp_build(const string& pattern, vi& len){ for (int i = 2; i <= pattern.size(); i++) { int ...
23.218487
79
0.578719
albertcheu
41343ba0e0e71ba9e52b5436e81bd97952965791
8,026
cpp
C++
5/Code/Sandbox/Main.cpp
Zakhar-V/Prototypes
413a7ce9fdb2a6f3ba97a041f798c71351efc855
[ "MIT" ]
null
null
null
5/Code/Sandbox/Main.cpp
Zakhar-V/Prototypes
413a7ce9fdb2a6f3ba97a041f798c71351efc855
[ "MIT" ]
null
null
null
5/Code/Sandbox/Main.cpp
Zakhar-V/Prototypes
413a7ce9fdb2a6f3ba97a041f798c71351efc855
[ "MIT" ]
null
null
null
#include "Sandbox.hpp" #include <SDL2\include\SDL.h> #include <Windows.h> #include <io.h> #include <sys/stat.h> #ifdef _MSC_VER # include <direct.h> #else # include <dirent.h> #endif #include <zlib\zlib.h> #include <zlib\unzip.h> using namespace Engine; #define PRINT_SIZEOF(T) printf("sizeof(%s) = %d\n",...
21.459893
82
0.387989
Zakhar-V
413470d4462f8ea91c9a2652577649d59aa18795
4,875
cpp
C++
Library/Sources/Stroika/Frameworks/WebServer/Request.cpp
SophistSolutions/Stroika
f4e5d84767903a054fba0a6b9c7c4bd1aaefd105
[ "MIT" ]
28
2015-09-22T21:43:32.000Z
2022-02-28T01:35:01.000Z
Library/Sources/Stroika/Frameworks/WebServer/Request.cpp
SophistSolutions/Stroika
f4e5d84767903a054fba0a6b9c7c4bd1aaefd105
[ "MIT" ]
98
2015-01-22T03:21:27.000Z
2022-03-02T01:47:00.000Z
Library/Sources/Stroika/Frameworks/WebServer/Request.cpp
SophistSolutions/Stroika
f4e5d84767903a054fba0a6b9c7c4bd1aaefd105
[ "MIT" ]
4
2019-02-21T16:45:25.000Z
2022-02-18T13:40:04.000Z
/* * Copyright(c) Sophist Solutions, Inc. 1990-2021. All rights reserved */ #include "../StroikaPreComp.h" #include <algorithm> #include <cstdlib> #include "../../Foundation/Characters/StringBuilder.h" #include "../../Foundation/Characters/ToString.h" #include "../../Foundation/Containers/Common.h" #include "../.....
40.966387
159
0.636718
SophistSolutions
41387832924404c6034ba2e77fe0246bca5752bd
2,493
cpp
C++
LudensVR_Project_01/Source/LudensVR_Project_01/Private/VR_Template/TP_PlayerMovableArea.cpp
kruore/VRGame_LudensVR
93c236a01dc767228f1ded59922d4ea3d53cc6ee
[ "BSD-3-Clause" ]
null
null
null
LudensVR_Project_01/Source/LudensVR_Project_01/Private/VR_Template/TP_PlayerMovableArea.cpp
kruore/VRGame_LudensVR
93c236a01dc767228f1ded59922d4ea3d53cc6ee
[ "BSD-3-Clause" ]
null
null
null
LudensVR_Project_01/Source/LudensVR_Project_01/Private/VR_Template/TP_PlayerMovableArea.cpp
kruore/VRGame_LudensVR
93c236a01dc767228f1ded59922d4ea3d53cc6ee
[ "BSD-3-Clause" ]
null
null
null
//======================================================================================================================================= // The named class sources like 'TP_...' are the Unreal Engine 4.20 full C++ VR template sources written by Sang-bin, Jeon (Ludens VR) | // This VR Template Copyright (C) 2018, Sang...
40.868852
210
0.694344
kruore
4140ad20511d23f3843525847d500bed977022ec
681
cpp
C++
implementation/others/kmp.cpp
Layomiiety/Algorithmic-thinking
fc280717db051a26d19a583f3206402215d05c0a
[ "CC0-1.0" ]
null
null
null
implementation/others/kmp.cpp
Layomiiety/Algorithmic-thinking
fc280717db051a26d19a583f3206402215d05c0a
[ "CC0-1.0" ]
null
null
null
implementation/others/kmp.cpp
Layomiiety/Algorithmic-thinking
fc280717db051a26d19a583f3206402215d05c0a
[ "CC0-1.0" ]
null
null
null
#include <bits/stdc++.h> using namespace std; #define ll long long #define ull unsigned long long #define il inline #define re register const int maxn=1e6+5; char a[maxn],b[maxn]; int bor[maxn],sa,sb,cur=0; int main(){ scanf("%s%s",a+1,b+1); sa=strlen(a+1); sb=strlen(b+1); for(re int i=2,j=0;i<=sb;i++){...
23.482759
47
0.480176
Layomiiety
414b9771ac50dda3de6a514687ffc28eb58737c6
778
cpp
C++
src/main.cpp
cod-sushi/QCodScreenShot
9dbedc61fa71dc0e62bb48b012685bdf04a05844
[ "MIT" ]
3
2019-06-15T14:55:37.000Z
2021-12-21T10:47:23.000Z
src/main.cpp
cod-sushi/QCodScreenShot
9dbedc61fa71dc0e62bb48b012685bdf04a05844
[ "MIT" ]
null
null
null
src/main.cpp
cod-sushi/QCodScreenShot
9dbedc61fa71dc0e62bb48b012685bdf04a05844
[ "MIT" ]
null
null
null
#include "mainwindow.h" #include "settings.h" #include <QApplication> #include <QDesktopWidget> #include <QTranslator> int main(int argc, char *argv[]) { QApplication a(argc, argv); // translate QTranslator translator; QString lang = Settings::value(Settings::Language); translator.load(QString(...
24.3125
65
0.660668
cod-sushi
414dbb731e16bdbeda7ffe290ecb33ff6d11346c
3,757
cpp
C++
export/release/windows/obj/src/openfl/events/ActivityEvent.cpp
bobisdabbing/Vs-The-United-Lands-stable
0807e58b6d8ad1440bdd350bf006b37a1b7ca9b5
[ "MIT" ]
null
null
null
export/release/windows/obj/src/openfl/events/ActivityEvent.cpp
bobisdabbing/Vs-The-United-Lands-stable
0807e58b6d8ad1440bdd350bf006b37a1b7ca9b5
[ "MIT" ]
null
null
null
export/release/windows/obj/src/openfl/events/ActivityEvent.cpp
bobisdabbing/Vs-The-United-Lands-stable
0807e58b6d8ad1440bdd350bf006b37a1b7ca9b5
[ "MIT" ]
null
null
null
// Generated by Haxe 4.1.5 #include <hxcpp.h> #ifndef INCLUDED_openfl_events_ActivityEvent #include <openfl/events/ActivityEvent.h> #endif #ifndef INCLUDED_openfl_events_Event #include <openfl/events/Event.h> #endif HX_DEFINE_STACK_FRAME(_hx_pos_07ba67a8dcdbfa28_63_new,"openfl.events.ActivityEvent","new",0x259c5826,"...
33.846847
182
0.745275
bobisdabbing
a991a8de3f49a29e83eeaf761abe371e1d7450cc
1,013
cpp
C++
PRATICA3/FigGeometricasSemPolimorfismo/ImpPerimArea.cpp
JP-Clemente/INF213_UFV
8d6b3afd02212a0ba58ddaec04df5bb87aef9f5d
[ "MIT" ]
2
2020-11-29T08:06:31.000Z
2020-12-04T13:35:17.000Z
PRATICA3/FigGeometricasSemPolimorfismo/ImpPerimArea.cpp
JP-Clemente/INF213_UFV
8d6b3afd02212a0ba58ddaec04df5bb87aef9f5d
[ "MIT" ]
null
null
null
PRATICA3/FigGeometricasSemPolimorfismo/ImpPerimArea.cpp
JP-Clemente/INF213_UFV
8d6b3afd02212a0ba58ddaec04df5bb87aef9f5d
[ "MIT" ]
null
null
null
#include <iostream> #include <typeinfo> using namespace std; #include "FigBase.h" #include "Retangulo.h" #include "Circulo.h" #include "Segmento.h" int main() { Retangulo r(13, 7, 2, 4, 1, 1, 1); Circulo c(5, 2, 4, 2, 2, 2); Segmento s(3, 7, 8, 5, 3, 3, 3); FigBase *p[5];...
19.113208
89
0.394867
JP-Clemente
a9960bc71672ba9ec3b0054870bf2b5f194b1571
3,342
cpp
C++
src/tests/InterpreterTypesTests.cpp
gtirloni/procdraw
34ddb1b96f0f47af7304914e938f53d10ca5478d
[ "Apache-2.0" ]
null
null
null
src/tests/InterpreterTypesTests.cpp
gtirloni/procdraw
34ddb1b96f0f47af7304914e938f53d10ca5478d
[ "Apache-2.0" ]
null
null
null
src/tests/InterpreterTypesTests.cpp
gtirloni/procdraw
34ddb1b96f0f47af7304914e938f53d10ca5478d
[ "Apache-2.0" ]
null
null
null
// Copyright 2020 Simon Bates // // 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 agree...
31.233645
80
0.608019
gtirloni
a996da30dbb9f3932e0418a3cd2e9b5ec9bafd19
1,313
hpp
C++
irohad/ametsuchi/tx_presence_cache_utils.hpp
akshatkarani/iroha
5acef9dd74720c6185360d951e9b11be4ef73260
[ "Apache-2.0" ]
1,467
2016-10-25T12:27:19.000Z
2022-03-28T04:32:05.000Z
irohad/ametsuchi/tx_presence_cache_utils.hpp
akshatkarani/iroha
5acef9dd74720c6185360d951e9b11be4ef73260
[ "Apache-2.0" ]
2,366
2016-10-25T10:07:57.000Z
2022-03-31T22:03:24.000Z
irohad/ametsuchi/tx_presence_cache_utils.hpp
akshatkarani/iroha
5acef9dd74720c6185360d951e9b11be4ef73260
[ "Apache-2.0" ]
662
2016-10-26T04:41:22.000Z
2022-03-31T04:15:02.000Z
/** * Copyright Soramitsu Co., Ltd. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ #ifndef IROHA_TX_PRESENCE_CACHE_UTILS_HPP #define IROHA_TX_PRESENCE_CACHE_UTILS_HPP #include "ametsuchi/tx_cache_response.hpp" #include "common/visitor.hpp" namespace iroha { namespace ametsuchi { /** * De...
29.840909
80
0.657273
akshatkarani
a9997731f37d60997320cd13eef36124e0da00f6
5,206
cpp
C++
src/TravelingSalesman/TravelingSalesmanGui.cpp
Person-93/aima-cpp
08d062dcb971edeaddb9a10083cf6da5a1b869f7
[ "MIT" ]
null
null
null
src/TravelingSalesman/TravelingSalesmanGui.cpp
Person-93/aima-cpp
08d062dcb971edeaddb9a10083cf6da5a1b869f7
[ "MIT" ]
null
null
null
src/TravelingSalesman/TravelingSalesmanGui.cpp
Person-93/aima-cpp
08d062dcb971edeaddb9a10083cf6da5a1b869f7
[ "MIT" ]
null
null
null
#include "TravelingSalesmanGui.hpp" #include <sstream> #include "util/AssetManager.hpp" #include "util/random_string.hpp" #include "util/define_logger.hpp" #include "core/Exception.hpp" #include "IterativeLengtheningAgent.hpp" #include "util/parseTitle.hpp" using namespace aima::traveling_salesman; DEFINE_LOGGER( Tra...
44.87931
118
0.567806
Person-93
a999d1650cbc88f3fea1f2a06d03cbb505c9b939
1,746
cpp
C++
libs/core---stm32/platform.cpp
xmeow/pxt-common-packages
2139799ac3a233addf27798825d3e3dc8c593993
[ "MIT" ]
null
null
null
libs/core---stm32/platform.cpp
xmeow/pxt-common-packages
2139799ac3a233addf27798825d3e3dc8c593993
[ "MIT" ]
null
null
null
libs/core---stm32/platform.cpp
xmeow/pxt-common-packages
2139799ac3a233addf27798825d3e3dc8c593993
[ "MIT" ]
null
null
null
#include "pxt.h" #include "STMLowLevelTimer.h" #include "Accelerometer.h" namespace pxt { STMLowLevelTimer tim5(TIM5, TIM5_IRQn); CODAL_TIMER devTimer(tim5); void initAccelRandom(); static void initRandomSeed() { if (getConfig(CFG_ACCELEROMETER_TYPE, -1) != -1) { initAccelRandom(); } } void platfor...
21.825
70
0.596793
xmeow
a99c2f0094db2c6470a5cf8f2190000e2c45e7be
1,505
cpp
C++
Hubie/src/Hubie/Core/OS/MemoryManager.cpp
realjf/hubie
f4701eea2696e21f975103707ed1b1bf698f9cf2
[ "Apache-2.0" ]
1
2021-10-03T09:38:36.000Z
2021-10-03T09:38:36.000Z
Hubie/src/Hubie/Core/OS/MemoryManager.cpp
realjf/hubie
f4701eea2696e21f975103707ed1b1bf698f9cf2
[ "Apache-2.0" ]
null
null
null
Hubie/src/Hubie/Core/OS/MemoryManager.cpp
realjf/hubie
f4701eea2696e21f975103707ed1b1bf698f9cf2
[ "Apache-2.0" ]
null
null
null
#include "hbpch.h" #include "MemoryManager.h" #include <iomanip> namespace Hubie { MemoryManager* MemoryManager::s_Instance = nullptr; MemoryManager::MemoryManager() { } void MemoryManager::OnInit() { } void MemoryManager::OnShutdown() { if (s_Instance) delete s_Instance; } MemoryManager* MemoryMan...
23.153846
78
0.660465
realjf
a9a06d6bc46edb45f71efd7a6970cfcb59eb061f
1,966
hpp
C++
engine/magic/include/BeamShapeProcessor.hpp
prolog/shadow-of-the-wyrm
a1312c3e9bb74473f73c4e7639e8bd537f10b488
[ "MIT" ]
60
2019-08-21T04:08:41.000Z
2022-03-10T13:48:04.000Z
engine/magic/include/BeamShapeProcessor.hpp
prolog/shadow-of-the-wyrm
a1312c3e9bb74473f73c4e7639e8bd537f10b488
[ "MIT" ]
3
2021-03-18T15:11:14.000Z
2021-10-20T12:13:07.000Z
engine/magic/include/BeamShapeProcessor.hpp
prolog/shadow-of-the-wyrm
a1312c3e9bb74473f73c4e7639e8bd537f10b488
[ "MIT" ]
8
2019-11-16T06:29:05.000Z
2022-01-23T17:33:43.000Z
#pragma once #include <map> #include <vector> #include "SpellShapeProcessor.hpp" // A class for processing beam-type spells. class BeamShapeProcessor : public SpellShapeProcessor { public: BeamShapeProcessor(); protected: virtual std::pair<std::vector<std::pair<Coordinate, TilePtr>>, Animation> get_affected_t...
57.823529
296
0.788911
prolog
a9a29d3146c3ecccba5b43b432a880b39461c87f
363
hpp
C++
testing_utilities/actions.hpp
tnuvoletta/Principia
25cf2fb70c512cf86a842ed525f6ab10e57f937c
[ "MIT" ]
2
2015-02-23T19:32:16.000Z
2015-04-07T03:55:53.000Z
testing_utilities/actions.hpp
tnuvoletta/Principia
25cf2fb70c512cf86a842ed525f6ab10e57f937c
[ "MIT" ]
null
null
null
testing_utilities/actions.hpp
tnuvoletta/Principia
25cf2fb70c512cf86a842ed525f6ab10e57f937c
[ "MIT" ]
null
null
null
#pragma once #include "gmock/gmock.h" namespace principia { namespace testing_utilities { ACTION_TEMPLATE(FillUniquePtr, // Note the comma between int and k: HAS_1_TEMPLATE_PARAMS(int, k), AND_1_VALUE_PARAMS(ptr)) { std::get<k>(args)->reset(ptr); } } // namespace t...
21.352941
52
0.647383
tnuvoletta
a9aa909e724c86ce177eaf1a0c1d27af97f54cb9
31,608
cpp
C++
pass/semantic/tests/lnast_semantic_test.cpp
pbonh/livehd
7aba179a03ebe5f2705e0071c3247fe0a9c5c031
[ "BSD-3-Clause" ]
115
2019-09-28T13:39:41.000Z
2022-03-24T11:08:53.000Z
pass/semantic/tests/lnast_semantic_test.cpp
pbonh/livehd
7aba179a03ebe5f2705e0071c3247fe0a9c5c031
[ "BSD-3-Clause" ]
120
2018-05-16T23:11:09.000Z
2019-09-25T18:52:49.000Z
pass/semantic/tests/lnast_semantic_test.cpp
pbonh/livehd
7aba179a03ebe5f2705e0071c3247fe0a9c5c031
[ "BSD-3-Clause" ]
44
2019-09-28T07:53:21.000Z
2022-02-13T23:21:12.000Z
#include <cstdlib> #include <iostream> #include "fmt/color.h" #include "fmt/core.h" #include "fmt/format.h" #include "fmt/printf.h" #include "lnast.hpp" #include "semantic_check.hpp" int main(void) { int line_num = 33; int pos1 = 103; int pos2 = 130; { Lnast* lnast = new Lnast(); Sem...
52.244628
118
0.705834
pbonh
a9ac2c51d3b38ceed06eda19a04b8fa0fedd25e9
943
cpp
C++
levelRecord.cpp
nflorez89/MushroomGame
717293dee8a9ba5ac71f3b604f17a78d72ddce1d
[ "CC-BY-3.0" ]
null
null
null
levelRecord.cpp
nflorez89/MushroomGame
717293dee8a9ba5ac71f3b604f17a78d72ddce1d
[ "CC-BY-3.0" ]
null
null
null
levelRecord.cpp
nflorez89/MushroomGame
717293dee8a9ba5ac71f3b604f17a78d72ddce1d
[ "CC-BY-3.0" ]
null
null
null
#include "levelRecord.h" //============================================================================= // constructor //============================================================================= LevelRecord::LevelRecord(float l_unitHp, float l_unitAccuracy, float l_unitEvasion, float l_unitDamage, int l_unitMvmtR...
33.678571
224
0.528102
nflorez89
a9ad6de45db08c78be5a44b41d8857a7ffad7248
2,085
cpp
C++
codeforces/F - Guess Divisors Count/Accepted.cpp
kzvd4729/Problem-Solving
13b105e725a4c2f8db7fecc5d7a8f932b9fef4ab
[ "MIT" ]
1
2022-02-11T16:55:36.000Z
2022-02-11T16:55:36.000Z
codeforces/F - Guess Divisors Count/Accepted.cpp
kzvd4729/Problem-Solving
13b105e725a4c2f8db7fecc5d7a8f932b9fef4ab
[ "MIT" ]
null
null
null
codeforces/F - Guess Divisors Count/Accepted.cpp
kzvd4729/Problem-Solving
13b105e725a4c2f8db7fecc5d7a8f932b9fef4ab
[ "MIT" ]
null
null
null
/**************************************************************************************** * @author: kzvd4729 created: May/17/2020 12:25 * solution_verdict: Accepted language: GNU C++14 * run...
25.120482
111
0.469065
kzvd4729
a9ade8d0947a81467183f9cac761079280ea6cc9
7,680
cpp
C++
uebung_8/AStarPlanner.cpp
jWeb94/kit_robotics_1_ws1819
8400cb3484e38092cf87b42945e85bdfa3a3a3db
[ "WTFPL" ]
null
null
null
uebung_8/AStarPlanner.cpp
jWeb94/kit_robotics_1_ws1819
8400cb3484e38092cf87b42945e85bdfa3a3a3db
[ "WTFPL" ]
null
null
null
uebung_8/AStarPlanner.cpp
jWeb94/kit_robotics_1_ws1819
8400cb3484e38092cf87b42945e85bdfa3a3a3db
[ "WTFPL" ]
null
null
null
#include "AStarPlanner.h" using namespace std; AStarPlanner::AStarPlanner(VirtualRobot::RobotPtr robot, VirtualRobot::SceneObjectSetPtr obstacles, float cellSize) : Planner2D(robot, obstacles), cellSize(cellSize) { // Standart-Konstruktor } void AStarPlanner::createUniformGrid() { //+1 for explicit rounding u...
36.571429
199
0.582552
jWeb94
a9aff25e65c9977c6ba5a96d517b0ee81d144ffb
1,350
cc
C++
src/mesytec-mvlc/util/protected.test.cc
flueke/mesytec-mvlc
48086db8f7b63fd8adb6215a5d3fdbeaa56d567d
[ "BSL-1.0" ]
null
null
null
src/mesytec-mvlc/util/protected.test.cc
flueke/mesytec-mvlc
48086db8f7b63fd8adb6215a5d3fdbeaa56d567d
[ "BSL-1.0" ]
3
2021-07-15T10:10:19.000Z
2021-08-05T13:47:36.000Z
src/mesytec-mvlc/util/protected.test.cc
flueke/mesytec-mvlc
48086db8f7b63fd8adb6215a5d3fdbeaa56d567d
[ "BSL-1.0" ]
5
2020-09-22T10:21:25.000Z
2022-02-17T15:06:14.000Z
#include "gtest/gtest.h" #include <chrono> #include <future> #include <thread> #include "mesytec-mvlc/util/protected.h" using namespace mesytec::mvlc; struct Object { int value = 0u; }; TEST(util_protected, ProtectedWaitableNotify) { // unlimited wait, immedate async modification of the object { ...
22.131148
78
0.491852
flueke
a9b7f18d49684be41eac28923e1d68882bd391dc
1,724
cpp
C++
ERP/inventorycontent.cpp
DSP-Automation/ERP
90626c3f13af2b49884f500568dc909a31fe3751
[ "Apache-2.0" ]
null
null
null
ERP/inventorycontent.cpp
DSP-Automation/ERP
90626c3f13af2b49884f500568dc909a31fe3751
[ "Apache-2.0" ]
null
null
null
ERP/inventorycontent.cpp
DSP-Automation/ERP
90626c3f13af2b49884f500568dc909a31fe3751
[ "Apache-2.0" ]
null
null
null
#include "inventorycontent.h" inventoryContent::inventoryContent(QWidget *parent) : QWidget(parent) { } inventoryContent::~inventoryContent() { } int inventoryContent::readItemsFromDatabase(QString server, QString username, QString password, QString database) { db = QSqlDatabase::addDatabase("QMYSQL"); db.set...
34.48
246
0.662413
DSP-Automation
a9b8f0dd1244cd7717a0ae2194cb5cbbc5a1005e
6,523
cc
C++
lang_id/common/flatbuffers/model-utils.cc
yangzhigang1999/libtextclassifier
4c965f1c12b3c7a37f6126cef737a8fe33f4677c
[ "Apache-2.0" ]
null
null
null
lang_id/common/flatbuffers/model-utils.cc
yangzhigang1999/libtextclassifier
4c965f1c12b3c7a37f6126cef737a8fe33f4677c
[ "Apache-2.0" ]
null
null
null
lang_id/common/flatbuffers/model-utils.cc
yangzhigang1999/libtextclassifier
4c965f1c12b3c7a37f6126cef737a8fe33f4677c
[ "Apache-2.0" ]
1
2021-03-20T03:40:21.000Z
2021-03-20T03:40:21.000Z
// Copyright 2020 Google LLC // // 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in ...
32.452736
80
0.649394
yangzhigang1999
a9bce2b9aa4174df1695768a22fe3c3b51b2547b
15,058
cpp
C++
Source/ComponentCollider.cpp
Project-3-UPC-DDV-BCN/Project3
3fb345ce49485ccbc7d03fb320623df6114b210c
[ "MIT" ]
10
2018-01-16T16:18:42.000Z
2019-02-19T19:51:45.000Z
Source/ComponentCollider.cpp
Project-3-UPC-DDV-BCN/Project3
3fb345ce49485ccbc7d03fb320623df6114b210c
[ "MIT" ]
136
2018-05-10T08:47:58.000Z
2018-06-15T09:38:10.000Z
Source/ComponentCollider.cpp
Project-3-UPC-DDV-BCN/Project3
3fb345ce49485ccbc7d03fb320623df6114b210c
[ "MIT" ]
1
2018-06-04T17:18:40.000Z
2018-06-04T17:18:40.000Z
#include "ComponentCollider.h" #include "GameObject.h" #include "ComponentRigidBody.h" #include "Application.h" #include "ModulePhysics.h" #include "ComponentMeshRenderer.h" #include "MathGeoLib/AABB.h" #include "Mesh.h" #include "MathGeoLib/Quat.h" #include "PhysicsMaterial.h" #include "ModuleResources.h" #include "Co...
24.564437
137
0.724001
Project-3-UPC-DDV-BCN
a9bd7f6a88642fb8751375cca71e3d3ffb1a960d
14,807
cpp
C++
edge_impulse/ingestion-sdk-platform/sony-spresense/ei_sony_spresense_fs_commands.cpp
AnshumanFauzdar/firmware-sony-spresense
2ccd58a8285b7e8d410fcde144a42237f4c214e1
[ "Apache-2.0" ]
1
2021-11-18T08:04:16.000Z
2021-11-18T08:04:16.000Z
edge_impulse/ingestion-sdk-platform/sony-spresense/ei_sony_spresense_fs_commands.cpp
AnshumanFauzdar/firmware-sony-spresense
2ccd58a8285b7e8d410fcde144a42237f4c214e1
[ "Apache-2.0" ]
1
2022-01-11T15:56:56.000Z
2022-01-11T15:56:56.000Z
edge_impulse/ingestion-sdk-platform/sony-spresense/ei_sony_spresense_fs_commands.cpp
AnshumanFauzdar/firmware-sony-spresense
2ccd58a8285b7e8d410fcde144a42237f4c214e1
[ "Apache-2.0" ]
1
2021-12-30T13:07:44.000Z
2021-12-30T13:07:44.000Z
/* Include ----------------------------------------------------------------- */ #include "ei_sony_spresense_fs_commands.h" #include "ei_device_sony_spresense.h" #define SERIAL_FLASH 0 #define MICRO_SD 1 #define RAM 2 #define SAMPLE_MEMORY MICRO_SD #define SIZE_RAM_BUFFER 0x10000//(0x20000) #define RAM_...
26.921818
115
0.654893
AnshumanFauzdar
a9bff1a24c524cf7e9ae2d5e927e3948a36b24fd
9,755
cpp
C++
CMSIS/DSP/Testing/Source/Tests/ComplexTestsQ15.cpp
mintisan/CMSIS_5
2df723647a1f629b7be1394bfc13c9ea9119a8f8
[ "Apache-2.0" ]
null
null
null
CMSIS/DSP/Testing/Source/Tests/ComplexTestsQ15.cpp
mintisan/CMSIS_5
2df723647a1f629b7be1394bfc13c9ea9119a8f8
[ "Apache-2.0" ]
null
null
null
CMSIS/DSP/Testing/Source/Tests/ComplexTestsQ15.cpp
mintisan/CMSIS_5
2df723647a1f629b7be1394bfc13c9ea9119a8f8
[ "Apache-2.0" ]
null
null
null
#include "ComplexTestsQ15.h" #include "Error.h" #define SNR_THRESHOLD 25 /* Reference patterns are generated with a double precision computation. */ #define ABS_ERROR_Q15 ((q15_t)20) #define ABS_ERROR_Q31 ((q31_t)(1<<15)) void ComplexTestsQ15::test_cmplx_conj_q15() { const q15_t *inp1=input1.ptr()...
33.637931
115
0.64654
mintisan
a9c2dbeffba422bae27765a8ac362bdc7ac49552
4,101
cpp
C++
ui/CxRunCtrl/BitmapView.cpp
johnzcdGitHub/SuperCxHMI
e897b7bdf30cfe3bfeb5b8738e10c7205ebcd665
[ "MIT" ]
118
2015-05-19T09:19:01.000Z
2022-02-24T15:18:51.000Z
ui/CxRunCtrl/BitmapView.cpp
PythonYanshenguan/SuperCxHMI
19f681583fca56c528b51b5821fe842c80bcae24
[ "MIT" ]
1
2016-10-24T02:48:03.000Z
2020-04-20T01:53:31.000Z
ui/CxRunCtrl/BitmapView.cpp
PythonYanshenguan/SuperCxHMI
19f681583fca56c528b51b5821fe842c80bcae24
[ "MIT" ]
98
2015-02-11T07:16:47.000Z
2022-02-24T02:15:27.000Z
// BitmapView.cpp: implementation of the CBitmapView class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "RunInc.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction /////////////////////////////////////////////...
26.803922
96
0.622775
johnzcdGitHub
a9c3809241ea0374b49ef2735cceff0a8d1644ef
10,473
cpp
C++
piwiktracker.cpp
Waqar144/qt-piwik-tracker
d8fa34593f493d9e4045f7be811ad5bafe0d3a10
[ "MIT" ]
null
null
null
piwiktracker.cpp
Waqar144/qt-piwik-tracker
d8fa34593f493d9e4045f7be811ad5bafe0d3a10
[ "MIT" ]
null
null
null
piwiktracker.cpp
Waqar144/qt-piwik-tracker
d8fa34593f493d9e4045f7be811ad5bafe0d3a10
[ "MIT" ]
null
null
null
/** * Copyright (c) 2014-2021 Patrizio Bekerle -- <patrizio@bekerle.com> * * 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 *...
29.837607
80
0.647379
Waqar144
a9c3a032b172e50801357ec4061872aa0edb0f41
2,484
hpp
C++
src/core/integrators/pf_multiplexed_mlt/PfMultiplexedMltTracer.hpp
libingzeng/tungsten
8d3e08f6fe825ee90da9ab3e8008b45821ba3c67
[ "Apache-2.0", "Unlicense" ]
1
2018-11-10T19:59:44.000Z
2018-11-10T19:59:44.000Z
src/core/integrators/pf_multiplexed_mlt/PfMultiplexedMltTracer.hpp
libingzeng/tungsten
8d3e08f6fe825ee90da9ab3e8008b45821ba3c67
[ "Apache-2.0", "Unlicense" ]
null
null
null
src/core/integrators/pf_multiplexed_mlt/PfMultiplexedMltTracer.hpp
libingzeng/tungsten
8d3e08f6fe825ee90da9ab3e8008b45821ba3c67
[ "Apache-2.0", "Unlicense" ]
null
null
null
#ifndef PFMULTIPLEXEDMLTTRACER_HPP_ #define PFMULTIPLEXEDMLTTRACER_HPP_ #include "PfMultiplexedMltSettings.hpp" #include "PfMultiplexedStats.hpp" #include "PfLargeStepTracker.hpp" #include "integrators/bidirectional_path_tracer/ImagePyramid.hpp" #include "integrators/bidirectional_path_tracer/LightPath.hpp" #include...
32.25974
120
0.737118
libingzeng
a9c3bbe1107f5b83be82e3daf87488cdebb995f4
8,674
cpp
C++
ManuvrOS/Transports/StandardIO/StandardIO.cpp
Manuvr/ManuvrOS
e3a812c9b609ad69670ff2f8050a07bd423ebc78
[ "Apache-2.0" ]
5
2015-03-26T22:58:58.000Z
2021-06-15T05:36:57.000Z
ManuvrOS/Transports/StandardIO/StandardIO.cpp
Manuvr/ManuvrOS
e3a812c9b609ad69670ff2f8050a07bd423ebc78
[ "Apache-2.0" ]
2
2016-09-26T09:25:58.000Z
2017-08-03T05:27:24.000Z
ManuvrOS/Transports/StandardIO/StandardIO.cpp
Manuvr/ManuvrOS
e3a812c9b609ad69670ff2f8050a07bd423ebc78
[ "Apache-2.0" ]
2
2016-04-29T07:43:32.000Z
2020-02-07T06:43:01.000Z
/* File: StandardIO.cpp Author: J. Ian Lindsay Date: 2016.07.23 Copyright 2016 Manuvr, Inc 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 Unles...
32.125926
107
0.587042
Manuvr
a9c3ca19b3280c73838a2ba9f4bb49861fa436cf
6,015
cpp
C++
external/Winamp SDK/enc_flac/main.cpp
jamesdsmith/gen_discordrpc
fb1ea7f281857448cb93f4bdbd95abd983c7c43d
[ "MIT" ]
null
null
null
external/Winamp SDK/enc_flac/main.cpp
jamesdsmith/gen_discordrpc
fb1ea7f281857448cb93f4bdbd95abd983c7c43d
[ "MIT" ]
null
null
null
external/Winamp SDK/enc_flac/main.cpp
jamesdsmith/gen_discordrpc
fb1ea7f281857448cb93f4bdbd95abd983c7c43d
[ "MIT" ]
null
null
null
/** * Flake encoder for Winamp * Copyright (c) 2006 Will Fisher * The Flake library is Copyright (c) 2006 Justin Ruggles, * see flake.h for more details * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Fr...
28.372642
173
0.713383
jamesdsmith
a9c68917f2e22a46ddeab26c26c545a13cc0b623
199
cc
C++
CalibCalorimetry/EcalLaserCorrection/plugins/SealModule.cc
knash/cmssw
d4f63ec2b2c322e3be4c4d78ce20ebddbcd88ca7
[ "Apache-2.0" ]
1
2018-07-25T03:57:34.000Z
2018-07-25T03:57:34.000Z
CalibCalorimetry/EcalLaserCorrection/plugins/SealModule.cc
knash/cmssw
d4f63ec2b2c322e3be4c4d78ce20ebddbcd88ca7
[ "Apache-2.0" ]
1
2021-06-28T14:25:47.000Z
2021-06-30T10:12:29.000Z
CalibCalorimetry/EcalLaserCorrection/plugins/SealModule.cc
knash/cmssw
d4f63ec2b2c322e3be4c4d78ce20ebddbcd88ca7
[ "Apache-2.0" ]
null
null
null
#include "FWCore/PluginManager/interface/ModuleDef.h" #include "CalibCalorimetry/EcalLaserCorrection/plugins/EcalLaserCorrectionService.h" DEFINE_FWK_EVENTSETUP_MODULE(EcalLaserCorrectionService);
33.166667
84
0.879397
knash
a9c8c6444667959625ef6a132362c188ae943a4b
4,610
cpp
C++
source/backend/arm82/Arm82Moments.cpp
foreverlms/MNN
8f9d3e3331fb54382bb61ac3a2087637a161fec5
[ "Apache-2.0" ]
6,958
2019-05-06T02:38:02.000Z
2022-03-31T18:08:48.000Z
source/backend/arm82/Arm82Moments.cpp
foreverlms/MNN
8f9d3e3331fb54382bb61ac3a2087637a161fec5
[ "Apache-2.0" ]
1,775
2019-05-06T04:40:19.000Z
2022-03-30T15:39:24.000Z
source/backend/arm82/Arm82Moments.cpp
foreverlms/MNN
8f9d3e3331fb54382bb61ac3a2087637a161fec5
[ "Apache-2.0" ]
1,511
2019-05-06T02:38:05.000Z
2022-03-31T16:59:39.000Z
// // Arm82Moments.cpp // MNN // // Created by MNN on 2019/02/28. // Copyright © 2018, Alibaba Group Holding Limited // #if defined(__ANDROID__) || defined(__aarch64__) #include "Arm82Moments.hpp" #include "Arm82Backend.hpp" #include "Arm82Vec.hpp" #include "core/Concurrency.h" #include <MNN/MNNDefine.h> #include ...
38.099174
128
0.624729
foreverlms
a9ccb939d310f8a86e60ffd5b8fd81cc8949b52c
7,616
cpp
C++
examples/demo1.cpp
openlab-vn-ua/ImageRotation
2210d5cd846148aa705e53df658d62a034680b73
[ "Unlicense" ]
4
2018-10-05T07:09:57.000Z
2022-03-05T12:03:11.000Z
examples/demo1.cpp
openlab-vn-ua/ImageRotation
2210d5cd846148aa705e53df658d62a034680b73
[ "Unlicense" ]
null
null
null
examples/demo1.cpp
openlab-vn-ua/ImageRotation
2210d5cd846148aa705e53df658d62a034680b73
[ "Unlicense" ]
3
2020-01-28T03:03:16.000Z
2021-07-30T01:38:33.000Z
/* ************************************************************** ** NAME: Fast Bitmap Rotation and Scaling ** AUTHOR: Steven M Mortimer ** COMPILER: Visual C++ V6.0 Enterprise SP3 ** Target Platform: Win32 ** RIGHTS: Stevem Mortimer ** Date: 18th Jan 2000 ****************...
29.984252
90
0.50302
openlab-vn-ua
a9cd60e6da7bc487a5ad11c502a692c1b5f47efb
1,515
cpp
C++
problem2.cpp
paolaguarasci/domJudge
830f5ca3f271732668930a2a8d3be98d96661691
[ "MIT" ]
null
null
null
problem2.cpp
paolaguarasci/domJudge
830f5ca3f271732668930a2a8d3be98d96661691
[ "MIT" ]
null
null
null
problem2.cpp
paolaguarasci/domJudge
830f5ca3f271732668930a2a8d3be98d96661691
[ "MIT" ]
null
null
null
/* NOTA! Va fatto usando array di char e non oggetti stringa. Perchè? Sto cercando di capire... */ #include <iostream> #include <cstring> using namespace std; const int LIMITE = 100; int main() { // Prendo i dati da input // key, numero stringhe, stringhe char key[LIMITE]; cin >> key; unsigned n; ci...
23.671875
92
0.509571
paolaguarasci
a9de1564bfc9ea7e8aef90d4e70ad4b36a8c4718
11,832
cpp
C++
frontends/shared/os_win32debug.cpp
pixeljetstream/luxinia1
5d69b2d47d5ed4501dc155cfef999475f2fdfe2a
[ "Unlicense", "MIT" ]
31
2015-01-05T18:22:15.000Z
2020-12-07T03:21:50.000Z
frontends/shared/os_win32debug.cpp
pixeljetstream/luxinia1
5d69b2d47d5ed4501dc155cfef999475f2fdfe2a
[ "Unlicense", "MIT" ]
null
null
null
frontends/shared/os_win32debug.cpp
pixeljetstream/luxinia1
5d69b2d47d5ed4501dc155cfef999475f2fdfe2a
[ "Unlicense", "MIT" ]
12
2015-01-05T19:17:44.000Z
2021-01-15T08:56:06.000Z
// Copyright (C) 2004-2009 Christoph Kubisch & Eike Decker // This file is part of the "Luxinia Engine". // For conditions of distribution and use, see luxinia.h #include "os.h" #ifndef LUX_PLATFORM_WINDOWS #error "Wrong Platform" #endif #define WIN32_LEAN_AND_MEAN #include <windows.h> #ifdef LUX_COMPILER_MSC #defi...
31.806452
107
0.585869
pixeljetstream
a9e0af65e275279e68e570698efcdda02ac24cae
1,390
cpp
C++
DSA/Trees/sum-tree.cpp
abhisheknaiidu/dsa
fe3f54df6802d2520142992b541602ce5ee24f26
[ "MIT" ]
54
2020-07-31T14:50:23.000Z
2022-03-14T11:03:02.000Z
DSA/Trees/sum-tree.cpp
abhisheknaiidu/NOOB
fe3f54df6802d2520142992b541602ce5ee24f26
[ "MIT" ]
null
null
null
DSA/Trees/sum-tree.cpp
abhisheknaiidu/NOOB
fe3f54df6802d2520142992b541602ce5ee24f26
[ "MIT" ]
30
2020-08-15T17:39:02.000Z
2022-03-10T06:50:18.000Z
#pragma GCC optimize("Ofast") #include <algorithm> #include <bitset> #include <deque> #include <iostream> #include <iterator> #include <string> #include <map> #include <queue> #include <set> #include <stack> #include <vector> #include <unordered_map> #include <unordered_set> using namespace std; void abhisheknaiidu()...
19.857143
82
0.631655
abhisheknaiidu
a9e3dc0052a901ba8a921eeb248fefda6d85f291
3,291
cpp
C++
src/objective_functions/loss_functions/geom_negloglike.cpp
andy-yoo/lbann-andy
237c45c392e7a5548796ac29537ab0a374e7e825
[ "Apache-2.0" ]
null
null
null
src/objective_functions/loss_functions/geom_negloglike.cpp
andy-yoo/lbann-andy
237c45c392e7a5548796ac29537ab0a374e7e825
[ "Apache-2.0" ]
null
null
null
src/objective_functions/loss_functions/geom_negloglike.cpp
andy-yoo/lbann-andy
237c45c392e7a5548796ac29537ab0a374e7e825
[ "Apache-2.0" ]
null
null
null
//////////////////////////////////////////////////////////////////////////////// // Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC. // Produced at the Lawrence Livermore National Laboratory. // Written by the LBANN Research Team (B. Van Essen, et al.) listed in // the CONTRIBUTORS file. <lbann-dev@l...
37.827586
80
0.656943
andy-yoo
a9e9bcb0ab1eaac83b2854a63b809565ca734f93
2,118
cpp
C++
algorithms/contiguous-data/longest-common-substr/main.cpp
dubzzz/various-algorithms
16af4c05acfcb23d199df0851402b0da3ebba91c
[ "MIT" ]
1
2017-04-17T18:32:46.000Z
2017-04-17T18:32:46.000Z
algorithms/contiguous-data/longest-common-substr/main.cpp
dubzzz/various-algorithms
16af4c05acfcb23d199df0851402b0da3ebba91c
[ "MIT" ]
10
2016-12-25T04:42:56.000Z
2017-03-30T20:42:25.000Z
algorithms/contiguous-data/longest-common-substr/main.cpp
dubzzz/various-algorithms
16af4c05acfcb23d199df0851402b0da3ebba91c
[ "MIT" ]
1
2022-03-25T17:39:05.000Z
2022-03-25T17:39:05.000Z
#include "gtest/gtest.h" #include <rapidcheck/gtest.h> #include <algorithm> #include <string> #include SPECIFIC_HEADER // Running tests TEST(TEST_NAME, SameStrings) { ASSERT_EQ(6, longest_common_substr("AZERTY", "AZERTY").first); } TEST(TEST_NAME, CommonPartAtTheBeginning) { ASSERT_EQ(6, longest_common_substr("...
29.013699
86
0.701605
dubzzz
a9ed2d800155b314c569e7a0b50f0bb482c07f22
354
cpp
C++
C++Tut/Arrays_30.cpp
dedhun/Ded_CP
593abfbf703199f748633600041c251c39d76cfe
[ "MIT" ]
1
2020-06-25T00:32:20.000Z
2020-06-25T00:32:20.000Z
C++Tut/Arrays_30.cpp
dedhun/Ded_CP
593abfbf703199f748633600041c251c39d76cfe
[ "MIT" ]
null
null
null
C++Tut/Arrays_30.cpp
dedhun/Ded_CP
593abfbf703199f748633600041c251c39d76cfe
[ "MIT" ]
null
null
null
// // Created by Jihun on 6/24/2020. // #include <iostream> using namespace std; int main() { // this array can store 5 integers // An array initializer list --> {} // Elements are inside the array. int jihun[5] = {66, 75, 2, 43, 99}; // Computer programs always start from 0. (index 0)...
23.6
56
0.579096
dedhun
a9edebb05d85d0f3150b0ff01bd3e51aac17dbc7
5,515
cpp
C++
test/test_selection.cpp
pandaant/libmcts
51cc8c690ddbdf8933c7928d64c70982bde674eb
[ "MIT" ]
2
2019-09-07T09:37:53.000Z
2019-12-29T19:12:50.000Z
test/test_selection.cpp
pandaant/libmcts
51cc8c690ddbdf8933c7928d64c70982bde674eb
[ "MIT" ]
null
null
null
test/test_selection.cpp
pandaant/libmcts
51cc8c690ddbdf8933c7928d64c70982bde674eb
[ "MIT" ]
1
2020-06-23T15:23:27.000Z
2020-06-23T15:23:27.000Z
#include <map> #include <iostream> #include <UnitTest++.h> #include <max_value_selector.hpp> #include <sampling_selector.hpp> #include <sampling_to_function_selector.hpp> #include <min_sample_selector.hpp> #include <uct_selector.hpp> #include <root_node.hpp> #include "rock_paper_scissors.hpp" #include "rps_node.hpp" #i...
29.972826
80
0.632457
pandaant
a9f0b02d8ad3dbe165349d340464e899be0d8982
6,658
cpp
C++
build/moc/moc_ScreenToolsController.cpp
UNIST-ESCL/UNIST_GCS
f61f0c12bbb028869e4494f507ea8ab52c8c79c2
[ "Apache-2.0" ]
1
2018-11-07T06:10:53.000Z
2018-11-07T06:10:53.000Z
build/moc/moc_ScreenToolsController.cpp
UNIST-ESCL/UNIST_GCS
f61f0c12bbb028869e4494f507ea8ab52c8c79c2
[ "Apache-2.0" ]
null
null
null
build/moc/moc_ScreenToolsController.cpp
UNIST-ESCL/UNIST_GCS
f61f0c12bbb028869e4494f507ea8ab52c8c79c2
[ "Apache-2.0" ]
1
2018-11-07T06:10:47.000Z
2018-11-07T06:10:47.000Z
/**************************************************************************** ** Meta object code from reading C++ file 'ScreenToolsController.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.3) ** ** WARNING! All changes made in this file will be lost! ***********************************************...
36.184783
101
0.629468
UNIST-ESCL
a9f18cf393c21c0e0d121378475200aed236dc6a
902
cpp
C++
algorithms/cpp/dijkstra_quadratic.cpp
felipegnunes/programming-challenges
452ed1f0f39da11d95b0a5327c76ae94dc74c64a
[ "MIT" ]
null
null
null
algorithms/cpp/dijkstra_quadratic.cpp
felipegnunes/programming-challenges
452ed1f0f39da11d95b0a5327c76ae94dc74c64a
[ "MIT" ]
null
null
null
algorithms/cpp/dijkstra_quadratic.cpp
felipegnunes/programming-challenges
452ed1f0f39da11d95b0a5327c76ae94dc74c64a
[ "MIT" ]
null
null
null
#include <iostream> #include <limits.h> using namespace std; int find_nearest_vertex(int V, int dist[], bool in_tree[]) { int min_index, min_dist = INT_MAX; for (int u = 0; u < V; u++) { if (!in_tree[u] && dist[u] < min_dist) { min_index = u; min_dist = dist[u]; ...
20.044444
96
0.462306
felipegnunes
a9fc400c15d9e596b9228ae842b86c7a46662cca
25,301
hpp
C++
source/modes/GenerateContentFile.hpp
SilvioWeging/kASA
65740ee0f885693cd86bc3a1ea74c67ca7174130
[ "BSL-1.0" ]
19
2019-07-25T13:31:58.000Z
2021-09-23T11:19:22.000Z
source/modes/GenerateContentFile.hpp
SilvioWeging/kASA
65740ee0f885693cd86bc3a1ea74c67ca7174130
[ "BSL-1.0" ]
7
2019-04-04T13:20:58.000Z
2021-04-20T18:51:21.000Z
source/modes/GenerateContentFile.hpp
SilvioWeging/kASA
65740ee0f885693cd86bc3a1ea74c67ca7174130
[ "BSL-1.0" ]
4
2019-08-20T00:52:25.000Z
2021-04-20T18:43:38.000Z
/*************************************************************************** * Part of kASA: https://github.com/SilvioWeging/kASA * * Copyright (C) 2020 Silvio Weging <silvio.weging@gmail.com> * * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or copy at * http:...
40.096672
371
0.624679
SilvioWeging
a9fecbd3d3d3ef84a22a5a4b22e1ebf870b587d3
83,384
inl
C++
lumino/LuminoEngine/src/Rendering/Resource/ShadowCaster.lcfx.inl
GameDevery/Lumino
abce2ddca4b7678b04dbfd0ae5348e196c3c9379
[ "MIT" ]
113
2020-03-05T01:27:59.000Z
2022-03-28T13:20:51.000Z
lumino/LuminoEngine/src/Rendering/Resource/ShadowCaster.lcfx.inl
GameDevery/Lumino
abce2ddca4b7678b04dbfd0ae5348e196c3c9379
[ "MIT" ]
13
2020-03-23T20:36:44.000Z
2022-02-28T11:07:32.000Z
lumino/LuminoEngine/src/Rendering/Resource/ShadowCaster.lcfx.inl
GameDevery/Lumino
abce2ddca4b7678b04dbfd0ae5348e196c3c9379
[ "MIT" ]
12
2020-12-21T12:03:59.000Z
2021-12-15T02:07:49.000Z
0x6c, 0x75, 0x66, 0x78, 0x05, 0x00, 0x00, 0x00, 0x6c, 0x75, 0x66, 0x78, 0x2e, 0x63, 0x2e, 0x2e, 0x02, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x56, 0x53, 0x5f, 0x53, 0x68, 0x61, 0x64, 0x6f, 0x77, 0x43, 0x61, 0x73, 0x74, 0x65, 0x72, 0x02, 0x03, 0x00, 0x00, 0x00, 0x73, 0x70, 0x76, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x...
97.983549
97
0.653075
GameDevery
e70293e62b09aa76134835a4e24f6e8ca31738cf
814
hpp
C++
packrat/lib/x86_64-pc-linux-gnu/3.2.5/RcppArmadillo/include/armadillo_bits/newarp_DenseGenMatProd_bones.hpp
Chicago-R-User-Group/2017-n3-Meetup-RStudio
71a3204412c7573af2d233208147780d313430af
[ "MIT" ]
70
2016-11-06T15:17:22.000Z
2022-03-01T14:50:59.000Z
packrat/lib/x86_64-pc-linux-gnu/3.2.5/RcppArmadillo/include/armadillo_bits/newarp_DenseGenMatProd_bones.hpp
Chicago-R-User-Group/2017-n3-Meetup-RStudio
71a3204412c7573af2d233208147780d313430af
[ "MIT" ]
5
2016-08-15T03:02:03.000Z
2017-05-12T21:59:19.000Z
packrat/lib/x86_64-pc-linux-gnu/3.2.5/RcppArmadillo/include/armadillo_bits/newarp_DenseGenMatProd_bones.hpp
Chicago-R-User-Group/2017-n3-Meetup-RStudio
71a3204412c7573af2d233208147780d313430af
[ "MIT" ]
9
2019-06-08T06:59:33.000Z
2021-09-11T06:41:27.000Z
// Copyright (C) 2016 National ICT Australia (NICTA) // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. // -----------------------------------------------------------...
22.611111
70
0.640049
Chicago-R-User-Group
e70758bad5fecb8423001161174bf2dbc7a2f6b2
4,332
cpp
C++
src/logchangepathentriesmodel.cpp
anrichter/qsvn
d048023ddcf7c23540cdde47096c2187b19e3710
[ "MIT" ]
22
2015-02-12T07:38:09.000Z
2021-11-03T07:42:39.000Z
src/logchangepathentriesmodel.cpp
anrichter/qsvn
d048023ddcf7c23540cdde47096c2187b19e3710
[ "MIT" ]
null
null
null
src/logchangepathentriesmodel.cpp
anrichter/qsvn
d048023ddcf7c23540cdde47096c2187b19e3710
[ "MIT" ]
17
2015-01-26T01:11:51.000Z
2020-10-29T10:00:28.000Z
/******************************************************************************** * This file is part of QSvn Project http://www.anrichter.net/projects/qsvn * * Copyright (c) 2004-2010 Andreas Richter <ar@anrichter.net> * * ...
34.110236
104
0.520545
anrichter
e7136bbdeff7e91dd43b8d4b94c45d09c13b7034
3,409
cpp
C++
Testing/Marlin-2.0.x/Marlin/src/HAL/LINUX/hardware/Timer.cpp
qisback/Geeetech-i3-B-pro-configs
a2c309923c4e68103addda677fda190238a1abe0
[ "CC-BY-4.0" ]
5
2020-05-17T21:16:41.000Z
2021-06-11T04:46:31.000Z
Testing/Marlin-2.0.x/Marlin/src/HAL/LINUX/hardware/Timer.cpp
qisback/Geeetech-i3-B-pro-configs
a2c309923c4e68103addda677fda190238a1abe0
[ "CC-BY-4.0" ]
1
2020-09-27T14:53:34.000Z
2020-09-27T14:53:34.000Z
src/HAL/HAL_LINUX/hardware/Timer.cpp
Sundancer78/Marlin-2.0.4_SKR_14_turbo_ender3
d9dbef52e6fb4e110908a6d09d0af00fc0ac9b20
[ "MIT" ]
2
2020-10-05T15:08:13.000Z
2020-10-20T06:21:59.000Z
/** * Marlin 3D Printer Firmware * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] * * Based on Sprinter and grbl. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General...
28.647059
204
0.688472
qisback
e713b02d7b884f1e4a453a20d75ae326e09d2214
46,093
cc
C++
libshaderc_spvc/src/spvc.cc
johnzupin/shaderc
d8eca133b4b18e4fb8b2ab9b9f04dc53d5ce2537
[ "Apache-2.0" ]
null
null
null
libshaderc_spvc/src/spvc.cc
johnzupin/shaderc
d8eca133b4b18e4fb8b2ab9b9f04dc53d5ce2537
[ "Apache-2.0" ]
null
null
null
libshaderc_spvc/src/spvc.cc
johnzupin/shaderc
d8eca133b4b18e4fb8b2ab9b9f04dc53d5ce2537
[ "Apache-2.0" ]
null
null
null
// Copyright 2018 The Shaderc Authors. All rights reserved. // // 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 a...
37.843186
88
0.738333
johnzupin
e715fdd1d88dd79ec1f8d7f4f7b362cf769ef32c
37,177
cc
C++
Plugins/MediaPipe/Source/MediaPipe/Private/mediapipe/framework/formats/annotation/locus.pb.cc
sixtolink/ue4-mediapipe-plugin
f9423faa38fedc614499b2b97ec145711cac55e8
[ "Apache-2.0" ]
86
2021-07-16T05:01:59.000Z
2022-03-25T17:20:09.000Z
Plugins/MediaPipe/Source/MediaPipe/Private/mediapipe/framework/formats/annotation/locus.pb.cc
dpredie/ue4-mediapipe-plugin
3481e312bad0faa15c31e1581e8ee56d2711145a
[ "Apache-2.0" ]
31
2021-07-18T07:11:06.000Z
2022-03-30T07:02:10.000Z
Plugins/MediaPipe/Source/MediaPipe/Private/mediapipe/framework/formats/annotation/locus.pb.cc
dpredie/ue4-mediapipe-plugin
3481e312bad0faa15c31e1581e8ee56d2711145a
[ "Apache-2.0" ]
32
2021-07-18T10:29:17.000Z
2022-03-30T12:16:02.000Z
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: mediapipe/framework/formats/annotation/locus.proto #include "mediapipe/framework/formats/annotation/locus.pb.h" #include <algorithm> #include <google/protobuf/io/coded_stream.h> #include <google/protobuf/extension_set.h> #include <google/protobuf...
39.382415
269
0.731716
sixtolink
e719bb765839ae88fa78f5ef6ac8d4c27406c9d0
667
cpp
C++
Train/summer 2017/CF_contest/431-440/435/A.cpp
mohamedGamalAbuGalala/Practice
2a5fa3bdaf995d0c304f04231e1a69e6960f72c8
[ "MIT" ]
1
2019-12-19T06:51:20.000Z
2019-12-19T06:51:20.000Z
Train/summer 2017/CF_contest/431-440/435/A.cpp
mohamedGamalAbuGalala/Practice
2a5fa3bdaf995d0c304f04231e1a69e6960f72c8
[ "MIT" ]
null
null
null
Train/summer 2017/CF_contest/431-440/435/A.cpp
mohamedGamalAbuGalala/Practice
2a5fa3bdaf995d0c304f04231e1a69e6960f72c8
[ "MIT" ]
null
null
null
#include <bits/stdc++.h> using namespace std; void fl() { #ifndef ONLINE_JUDGE freopen("in.txt", "r", stdin); // freopen("ot.txt", "w", stdout); #else // freopen("jumping.in", "r", stdin); // HERE #endif } //////////////////////////////////////////////////////////////////////////////////////////////// // snippet :: ...
20.212121
96
0.445277
mohamedGamalAbuGalala
e71d536120d59ca8fed5334be4cbe3136f791f14
4,769
cpp
C++
examples/quick/main.cpp
dark-richie/framelesshelper
bca1a0d91bbbe5f2898f01a2a7b1ac6ec0f419f9
[ "MIT" ]
2
2020-02-19T14:24:01.000Z
2020-04-20T12:08:36.000Z
examples/quick/main.cpp
jaredtao/framelesshelper
3b171b3ea9e0723e642653d8fb6a012fd1c036d7
[ "MIT" ]
null
null
null
examples/quick/main.cpp
jaredtao/framelesshelper
3b171b3ea9e0723e642653d8fb6a012fd1c036d7
[ "MIT" ]
1
2019-12-05T19:58:15.000Z
2019-12-05T19:58:15.000Z
/* * MIT License * * Copyright (C) 2021 by wangwenx190 (Yuhang Zhao) * * 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 * t...
33.822695
139
0.708954
dark-richie
e724697aef5050e03fd92a44ad8a5aaa0229846d
725
cpp
C++
FastMath/fast_math.cpp
JiuKim04/J-Drive
3e0e86854800e6be5d03ae57ddb102deff5fed31
[ "MIT" ]
9
2020-08-25T10:57:57.000Z
2021-09-03T13:07:57.000Z
FastMath/fast_math.cpp
jwkim04/J-Drive
d0f84098e73e7f731cb00cbc4d384b8ab88578d9
[ "MIT" ]
null
null
null
FastMath/fast_math.cpp
jwkim04/J-Drive
d0f84098e73e7f731cb00cbc4d384b8ab88578d9
[ "MIT" ]
8
2020-08-29T07:26:27.000Z
2021-09-08T22:22:28.000Z
#include "fast_math.hpp" #include <cstdint> float sineTable[FAST_MATH_TABLE_SIZE]; void FastMathInit() { double x = 0.0f; for (uint32_t i = 0; i < FAST_MATH_TABLE_SIZE; i++) { sineTable[i] = (float) sin(x); x += (M_PI * 2.0) / (double) FAST_MATH_TABLE_SIZE; } } float FastSin(float x) { x -= (float) (M_PI ...
20.138889
80
0.608276
JiuKim04
e7283c21381007a77d375069d886b7b2496ecac0
4,474
cpp
C++
cpp/src/playout-impl.cpp
peurpdapeurp/ndnrtc
59552bff9398ee2e49636f32cac020cc8027ae04
[ "BSD-2-Clause" ]
null
null
null
cpp/src/playout-impl.cpp
peurpdapeurp/ndnrtc
59552bff9398ee2e49636f32cac020cc8027ae04
[ "BSD-2-Clause" ]
null
null
null
cpp/src/playout-impl.cpp
peurpdapeurp/ndnrtc
59552bff9398ee2e49636f32cac020cc8027ae04
[ "BSD-2-Clause" ]
null
null
null
// // playout-impl.cpp // // Created by Peter Gusev on 03 August 2016. // Copyright 2013-2016 Regents of the University of California // #include "playout-impl.hpp" #include "playout.hpp" #include "jitter-timing.hpp" #include "simple-log.hpp" #include "frame-buffer.hpp" #include "frame-data.hpp" #include "clock.hp...
25.276836
138
0.653554
peurpdapeurp
e7331ce00d32c758c39c4de961a980cef31fcd58
6,595
cpp
C++
IM Porject/IM/imdal.cpp
jie65535/IM
a85f497bbe467b8fdc9cb2b18175f397768ae653
[ "MIT" ]
1
2021-08-24T12:36:48.000Z
2021-08-24T12:36:48.000Z
IM Porject/IM/imdal.cpp
jie65535/IM
a85f497bbe467b8fdc9cb2b18175f397768ae653
[ "MIT" ]
1
2021-03-11T19:38:32.000Z
2021-03-15T15:40:16.000Z
IM Porject/IM/imdal.cpp
jie65535/IM
a85f497bbe467b8fdc9cb2b18175f397768ae653
[ "MIT" ]
null
null
null
#include <QSqlDatabase> #include <QSqlError> #include <QSqlQuery> #include <QVector> #include <QString> #include <QDebug> #include "imdal.h" #include "immessage.h" IMDAL *IMDAL::instance() { static IMDAL imDAL; return &imDAL; } void IMDAL::initDatabase(QString name) { //打印Qt支持的数据库驱动 ...
27.252066
118
0.556027
jie65535
e73adc48e5902be43ca1dc63ec53fc5d81e5a549
21,005
ipp
C++
esp/logging/logginglib/modularlogagent.ipp
jeclrsg/HPCC-Platform
c1daafb6060f0c47c95bce98e5431fedc33c592d
[ "Apache-2.0" ]
286
2015-01-03T12:45:17.000Z
2022-03-25T18:12:57.000Z
esp/logging/logginglib/modularlogagent.ipp
jeclrsg/HPCC-Platform
c1daafb6060f0c47c95bce98e5431fedc33c592d
[ "Apache-2.0" ]
9,034
2015-01-02T08:49:19.000Z
2022-03-31T20:34:44.000Z
esp/logging/logginglib/modularlogagent.ipp
jeclrsg/HPCC-Platform
c1daafb6060f0c47c95bce98e5431fedc33c592d
[ "Apache-2.0" ]
208
2015-01-02T03:27:28.000Z
2022-02-11T05:54:52.000Z
/*############################################################################## HPCC SYSTEMS software Copyright (C) 2021 HPCC Systems®. 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...
49.893112
220
0.656796
jeclrsg
8d476c531f556d8ca7935214fbd5964f6bc8d77e
4,205
cpp
C++
motion_library_layer/motion_sideward/src/sidewardTest.cpp
AUV-IITK/motion_library
c37f7109ba28de1ea39911eeac61a8d3b183f77d
[ "BSD-3-Clause" ]
9
2016-05-01T22:37:09.000Z
2017-02-19T20:48:30.000Z
motion_library_layer/motion_sideward/src/sidewardTest.cpp
shibhansh/AUV
b68a801902366a550464feed36b0d5665db92598
[ "BSD-3-Clause" ]
84
2016-05-03T03:26:24.000Z
2016-12-01T13:40:41.000Z
motion_library_layer/motion_sideward/src/sidewardTest.cpp
shibhansh/AUV
b68a801902366a550464feed36b0d5665db92598
[ "BSD-3-Clause" ]
21
2016-05-01T22:16:45.000Z
2017-04-23T17:49:14.000Z
// Copyright 2016 AUV-IITK #include <ros/ros.h> #include <std_msgs/Float32.h> #include <std_msgs/Float64.h> #include <std_msgs/Bool.h> #include <std_msgs/Float64MultiArray.h> #include <motion_commons/SidewardAction.h> #include <motion_commons/SidewardActionFeedback.h> #include <motion_commons/SidewardActionResult.h> #i...
32.596899
119
0.719382
AUV-IITK
8d47aa6e2f313e50d47040e2cf10d6f0741c9a11
2,192
hpp
C++
modules/core/trigonometric/include/nt2/trigonometric/functions/rem_2pi.hpp
feelpp/nt2
4d121e2c7450f24b735d6cff03720f07b4b2146c
[ "BSL-1.0" ]
34
2017-05-19T18:10:17.000Z
2022-01-04T02:18:13.000Z
modules/core/trigonometric/include/nt2/trigonometric/functions/rem_2pi.hpp
feelpp/nt2
4d121e2c7450f24b735d6cff03720f07b4b2146c
[ "BSL-1.0" ]
null
null
null
modules/core/trigonometric/include/nt2/trigonometric/functions/rem_2pi.hpp
feelpp/nt2
4d121e2c7450f24b735d6cff03720f07b4b2146c
[ "BSL-1.0" ]
7
2017-12-02T12:59:17.000Z
2021-07-31T12:46:14.000Z
//============================================================================== // Copyright 2003 - 2012 LASMEA UMR 6602 CNRS/Univ. Clermont II // Copyright 2009 - 2012 LRI UMR 8623 CNRS/Univ Paris Sud XI // // Distributed under the Boost Software License, Version 1.0. // ...
30.873239
298
0.627737
feelpp
8d4b72771ab0351f2683b9404a42887be7c077c4
769
cpp
C++
flightlib/src/common/command.cpp
evan-palmer/flightmare
5f4c905910551386adfddaf5da59da41ce44b6cd
[ "MIT" ]
null
null
null
flightlib/src/common/command.cpp
evan-palmer/flightmare
5f4c905910551386adfddaf5da59da41ce44b6cd
[ "MIT" ]
null
null
null
flightlib/src/common/command.cpp
evan-palmer/flightmare
5f4c905910551386adfddaf5da59da41ce44b6cd
[ "MIT" ]
null
null
null
#include "flightlib/common/command.hpp" namespace flightlib { Command::Command() { } Command::Command(const Scalar t, const Scalar thrust, const Vector<3>& omega) : t(t), collective_thrust(thrust), omega(omega) { } Command::Command(const Scalar t, const Vector<4>& thrusts) : t(t), thrusts(thrusts) { } ...
28.481481
133
0.642393
evan-palmer
8d4c37b519fd0e4d78a43ce88db4c0f1abc7e714
3,363
hpp
C++
rest-server/src/controller/controller.hpp
OS-WASABI/CADG
b214edff82d4238e51569a42a6bdfab6806d768f
[ "BSD-3-Clause" ]
null
null
null
rest-server/src/controller/controller.hpp
OS-WASABI/CADG
b214edff82d4238e51569a42a6bdfab6806d768f
[ "BSD-3-Clause" ]
22
2018-10-26T17:30:24.000Z
2019-04-15T23:38:18.000Z
rest-server/src/controller/controller.hpp
OS-WASABI/CADG
b214edff82d4238e51569a42a6bdfab6806d768f
[ "BSD-3-Clause" ]
1
2019-03-23T16:02:17.000Z
2019-03-23T16:02:17.000Z
/// A REST endpoint controller abstract class. /** * Controller is a base class for REST controller classes, * it has some common methods defined and leaves methods that * need to be defined by parent classes undefined. A controller * has an endpoint, can be started with Accept and ended with * Shutdown. The def...
36.16129
87
0.697591
OS-WASABI
8d4c6e601ee133aff69415616fb5649b6d42863f
2,099
cpp
C++
Genetic Algorithm/ConsoleController.cpp
henry9836/Genetic-Algorithm
02841beb56991b3e95ebde642fac6f19e352726a
[ "MIT" ]
null
null
null
Genetic Algorithm/ConsoleController.cpp
henry9836/Genetic-Algorithm
02841beb56991b3e95ebde642fac6f19e352726a
[ "MIT" ]
null
null
null
Genetic Algorithm/ConsoleController.cpp
henry9836/Genetic-Algorithm
02841beb56991b3e95ebde642fac6f19e352726a
[ "MIT" ]
null
null
null
#include "ConsoleController.h" void Console_gotoXY(int x, int y) //Move Console Cursor to XY { COORD coord; coord.X = x; coord.Y = y; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord); } void Console_Resize(int x, int y) { //Resize Console Window RECT m_rect; HWND m_console = GetConso...
22.329787
78
0.711291
henry9836
8d4e644be168bbfadf75c6c3742cfeb7ef9a7298
4,453
cpp
C++
Code en C++ de Mage War Online/PhantomBall.cpp
Drakandes/Portfolio_NicolasPaulBonneau
c8115d5ecd6c284113766d64d0f907c074315cff
[ "MIT" ]
null
null
null
Code en C++ de Mage War Online/PhantomBall.cpp
Drakandes/Portfolio_NicolasPaulBonneau
c8115d5ecd6c284113766d64d0f907c074315cff
[ "MIT" ]
null
null
null
Code en C++ de Mage War Online/PhantomBall.cpp
Drakandes/Portfolio_NicolasPaulBonneau
c8115d5ecd6c284113766d64d0f907c074315cff
[ "MIT" ]
null
null
null
#include "stdafx.h" #include "PhantomBall.h" PhantomBall::PhantomBall() { if (!texture_projectile.loadFromFile("PhantomBall.png")) { std::cout << "Error while loading PhantomBall texture" << std::endl; } if (!shadow_texture.loadFromFile("PhantomBallShadow.png")) { std::cout << "Error while loadin...
26.349112
150
0.72962
Drakandes
8d50881ed4dc471c64cea1a3e4cebb4a01dd0720
681
hpp
C++
headers.hpp
polmes/thermo-sim
aa22b1265d8e1ac140f498c1f8c94944ecd8a50f
[ "MIT" ]
1
2020-02-05T08:46:07.000Z
2020-02-05T08:46:07.000Z
headers.hpp
polmes/thermo-sim
aa22b1265d8e1ac140f498c1f8c94944ecd8a50f
[ "MIT" ]
null
null
null
headers.hpp
polmes/thermo-sim
aa22b1265d8e1ac140f498c1f8c94944ecd8a50f
[ "MIT" ]
1
2018-09-21T13:53:27.000Z
2018-09-21T13:53:27.000Z
// Standard libraries #ifndef INCLUDE_STL #include <cstdlib> #include <iostream> #include <fstream> #include <sstream> #include <cmath> #include <string> #include <vector> #include <algorithm> #include <thread> #include <stdexcept> #define INCLUDE_STL #endif /* // My libraries #ifndef INCLUDE_MESH #include...
17.461538
26
0.756241
polmes
8d525a0c19d7849b62b0ea764d31e536a97f426b
1,830
hpp
C++
C64/src/Emulator/Logic/Keyboard.hpp
vividos/OldStuff
dbfcce086d1101b576d99d25ef051efbd8dd117c
[ "BSD-2-Clause" ]
1
2015-03-26T02:35:13.000Z
2015-03-26T02:35:13.000Z
C64/src/Emulator/Logic/Keyboard.hpp
vividos/OldStuff
dbfcce086d1101b576d99d25ef051efbd8dd117c
[ "BSD-2-Clause" ]
null
null
null
C64/src/Emulator/Logic/Keyboard.hpp
vividos/OldStuff
dbfcce086d1101b576d99d25ef051efbd8dd117c
[ "BSD-2-Clause" ]
null
null
null
// // Emulator - Simple C64 emulator // Copyright (C) 2003-2016 Michael Fink // /// \file Keyboard.hpp C64 keyboard implementation // #pragma once // includes #include "ICIAPortHandler.hpp" namespace C64 { /// Implementation of the C64 keyboard /// \note the keyboard is wired to the CIA 2 of the original C64 class K...
26.521739
85
0.715847
vividos
8d555b362b4d10f157657190b237b672fc2da26f
8,809
cpp
C++
Engine/source/Assets/CKLBPropertyBag.cpp
lampardwade/tetris_lua_playgroundOSS
29373294cfa66f2324ac984e5d4102854696fcc0
[ "DOC", "Apache-2.0" ]
175
2015-01-07T08:38:31.000Z
2022-02-28T20:40:47.000Z
Engine/source/Assets/CKLBPropertyBag.cpp
lampardwade/tetris_lua_playgroundOSS
29373294cfa66f2324ac984e5d4102854696fcc0
[ "DOC", "Apache-2.0" ]
1
2020-09-10T09:45:48.000Z
2020-09-11T10:10:52.000Z
Engine/source/Assets/CKLBPropertyBag.cpp
lampardwade/tetris_lua_playgroundOSS
29373294cfa66f2324ac984e5d4102854696fcc0
[ "DOC", "Apache-2.0" ]
46
2015-03-14T16:11:18.000Z
2022-02-28T20:40:49.000Z
/* Copyright 2013 KLab Inc. 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 ...
26.613293
86
0.662277
lampardwade
8d55d40b324f4d341dd0f4bb8c30be85486c8853
3,272
cpp
C++
SRM605/AlienAndSetDiv2.cpp
CanoeFZH/SRM
02e3eeaa6044b14640e450725f68684e392009cb
[ "MIT" ]
null
null
null
SRM605/AlienAndSetDiv2.cpp
CanoeFZH/SRM
02e3eeaa6044b14640e450725f68684e392009cb
[ "MIT" ]
null
null
null
SRM605/AlienAndSetDiv2.cpp
CanoeFZH/SRM
02e3eeaa6044b14640e450725f68684e392009cb
[ "MIT" ]
null
null
null
// BEGIN CUT HERE // END CUT HERE #line 5 "AlienAndSetDiv2.cpp" #include <cstdlib> #include <cctype> #include <cstring> #include <cstdio> #include <cmath> #include <algorithm> #include <vector> #include <string> #include <iostream> #include <sstream> #include <map> #include <set> #include <queue> #include <stack> #inc...
33.731959
308
0.498472
CanoeFZH
8d5d0c91a05cc67d08918b845a1dfba5574168e5
1,694
cpp
C++
SDK/ARKSurvivalEvolved_Xeno_WebExplosionEmitter_Corrupt_functions.cpp
2bite/ARK-SDK
c38ca9925309516b2093ad8c3a70ed9489e1d573
[ "MIT" ]
10
2020-02-17T19:08:46.000Z
2021-07-31T11:07:19.000Z
SDK/ARKSurvivalEvolved_Xeno_WebExplosionEmitter_Corrupt_functions.cpp
2bite/ARK-SDK
c38ca9925309516b2093ad8c3a70ed9489e1d573
[ "MIT" ]
9
2020-02-17T18:15:41.000Z
2021-06-06T19:17:34.000Z
SDK/ARKSurvivalEvolved_Xeno_WebExplosionEmitter_Corrupt_functions.cpp
2bite/ARK-SDK
c38ca9925309516b2093ad8c3a70ed9489e1d573
[ "MIT" ]
3
2020-07-22T17:42:07.000Z
2021-06-19T17:16:13.000Z
// ARKSurvivalEvolved (329.9) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "ARKSurvivalEvolved_Xeno_WebExplosionEmitter_Corrupt_parameters.hpp" namespace sdk { //--------------------------------------------------------------------------- //Functions //-------------------------------------------------...
29.719298
179
0.739669
2bite
8d690fad20734bfc391c66d12f38cc7abbc892a0
83
cpp
C++
examples/with-deps/packages/b/src/b.cpp
berenm/CMakeBuildPackage
035cc0d68b0bc33fde1a4af70696ad3805259e6d
[ "Unlicense" ]
22
2017-01-09T17:29:06.000Z
2021-01-23T07:16:44.000Z
examples/with-deps/packages/b/src/b.cpp
berenm/CMakeBuildPackage
035cc0d68b0bc33fde1a4af70696ad3805259e6d
[ "Unlicense" ]
4
2016-01-29T16:51:26.000Z
2016-10-17T10:22:12.000Z
examples/with-deps/packages/b/src/b.cpp
berenm/CMakeBuildPackage
035cc0d68b0bc33fde1a4af70696ad3805259e6d
[ "Unlicense" ]
null
null
null
#include "b.hpp" #include "a.hpp" namespace b { void hello() { a::hello(); } }
10.375
30
0.566265
berenm
8d6aedccd0decea60fb3402398ba9f75387305e9
1,057
hh
C++
Sources/AGEngine/Render/ProgramResources/Types/ProgramResourcesType.hh
Another-Game-Engine/AGE
d5d9e98235198fe580a43007914f515437635830
[ "MIT" ]
47
2015-03-29T09:44:25.000Z
2020-11-30T10:05:56.000Z
Sources/AGEngine/Render/ProgramResources/Types/ProgramResourcesType.hh
Another-Game-Engine/AGE
d5d9e98235198fe580a43007914f515437635830
[ "MIT" ]
313
2015-01-01T18:16:30.000Z
2015-11-30T07:54:07.000Z
Sources/AGEngine/Render/ProgramResources/Types/ProgramResourcesType.hh
Another-Game-Engine/AGE
d5d9e98235198fe580a43007914f515437635830
[ "MIT" ]
9
2015-06-07T13:21:54.000Z
2020-08-25T09:50:07.000Z
#pragma once # include <array> # include <unordered_map> # include <glm/glm.hpp> # include <iostream> # include <string> #include <Utils/OpenGL.hh> static size_t const nbr_resources = 21; extern const std::array<GLenum, nbr_resources> available_resources; struct GlType { uint8_t nbr_component; GLenum type; GLenu...
18.875
99
0.693472
Another-Game-Engine
8d6c5fa415fcb8cee20df69a59e159b27ee1cb7a
504
hpp
C++
src/main/include/Autons.hpp
TEAM1771/Black-Widdow-2022-Update
799dd9caa8171a1f2c40cdf5cd62f45478ba02c4
[ "BSD-3-Clause" ]
2
2022-01-11T13:09:02.000Z
2022-02-10T02:37:14.000Z
src/main/include/Autons.hpp
TEAM1771/Black-Widdow-2022-Update
799dd9caa8171a1f2c40cdf5cd62f45478ba02c4
[ "BSD-3-Clause" ]
1
2022-02-10T16:06:18.000Z
2022-02-17T18:15:26.000Z
src/main/include/Autons.hpp
TEAM1771/Black-Widow-2022-Update
799dd9caa8171a1f2c40cdf5cd62f45478ba02c4
[ "BSD-3-Clause" ]
null
null
null
#pragma once #include "Autons/30Degree.hpp" #include "Autons/Complex.hpp" #include "Autons/LShape.hpp" #include "Autons/PickupBalls.hpp" #include "Autons/TShape.hpp" #include <map> #include <functional> // All autonomous programs are stored as lambdas to be called using namespace Autons; inline std::map<std::string,...
26.526316
61
0.700397
TEAM1771
8d6d23cbcc31df952c86f0cf647508bf3e5beb30
110
cpp
C++
src/robot/main.cpp
markushedvall/toy-robot
3b219f713e5df13ab1376eff2255734029c4ce18
[ "MIT" ]
null
null
null
src/robot/main.cpp
markushedvall/toy-robot
3b219f713e5df13ab1376eff2255734029c4ce18
[ "MIT" ]
1
2021-03-27T13:15:13.000Z
2021-03-27T13:15:13.000Z
src/robot/main.cpp
markushedvall/toy-robot
3b219f713e5df13ab1376eff2255734029c4ce18
[ "MIT" ]
null
null
null
#include <robot/hello.h> #include <iostream> int main() { std::cout << robot::say_hello() << std::endl; }
13.75
47
0.618182
markushedvall
8d721138d37797ce559eece6ce68fd4addc2a474
1,928
cpp
C++
PortableGraphicsToolkit/src/pgt/graphics/plattform/opengl/font/GlFont.cpp
chris-b-h/PortableGraphicsToolkit
85862a6c5444cf9689821ff23952b56a01ff5835
[ "Zlib" ]
3
2017-07-12T20:18:51.000Z
2017-07-20T15:02:58.000Z
PortableGraphicsToolkit/src/pgt/graphics/plattform/opengl/font/GlFont.cpp
chris-b-h/PortableGraphicsToolkit
85862a6c5444cf9689821ff23952b56a01ff5835
[ "Zlib" ]
null
null
null
PortableGraphicsToolkit/src/pgt/graphics/plattform/opengl/font/GlFont.cpp
chris-b-h/PortableGraphicsToolkit
85862a6c5444cf9689821ff23952b56a01ff5835
[ "Zlib" ]
1
2019-04-03T01:19:42.000Z
2019-04-03T01:19:42.000Z
#include "GlFont.h" #include <pgt/window/engine.h> #include <pgt/window/plattform/interface/IAPP.h> #include <pgt/graphics/plattform/interface/IRenderingContext.h> #include <pgt/io/logger/logger.h> #include "GlFontInternal.h" namespace pgt { namespace plattform { GlFont::GlFont(const std::string& name, siz...
25.706667
79
0.553942
chris-b-h
8d73818c421eaebb7dd018f75c2399740f1be2ed
7,076
cpp
C++
java/cpp/com_automatak_dnp3_impl_MasterImpl.cpp
sidhoda/dnp3
0469f308cb3321e8f5b57ccc2e26a34eb430941c
[ "Apache-2.0" ]
null
null
null
java/cpp/com_automatak_dnp3_impl_MasterImpl.cpp
sidhoda/dnp3
0469f308cb3321e8f5b57ccc2e26a34eb430941c
[ "Apache-2.0" ]
null
null
null
java/cpp/com_automatak_dnp3_impl_MasterImpl.cpp
sidhoda/dnp3
0469f308cb3321e8f5b57ccc2e26a34eb430941c
[ "Apache-2.0" ]
null
null
null
/* * Copyright 2013-2016 Automatak, LLC * * Licensed to Automatak, LLC (www.automatak.com) under one or more * contributor license agreements. See the NOTICE file distributed with this * work for additional information regarding copyright ownership. Automatak, LLC * licenses this file to you under the Apache Lice...
35.20398
166
0.758338
sidhoda
8d73dcff626558e9d0bf5293e2151fc4e855f720
2,313
hh
C++
src/include/meadow/brassica/common.hh
cagelight/meadow
9638ce5a1f18be3da3ace157b937e41cd65c6ec1
[ "MIT" ]
null
null
null
src/include/meadow/brassica/common.hh
cagelight/meadow
9638ce5a1f18be3da3ace157b937e41cd65c6ec1
[ "MIT" ]
null
null
null
src/include/meadow/brassica/common.hh
cagelight/meadow
9638ce5a1f18be3da3ace157b937e41cd65c6ec1
[ "MIT" ]
null
null
null
#pragma once #include <array> #include <cstdint> #include <cmath> #include <random> namespace meadow::brassica { template <typename T> inline constexpr T pi = static_cast<T>( 3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317...
50.282609
324
0.693904
cagelight
8d74c205be935844db79a870e0b23711764c2458
2,754
cpp
C++
test/cppdj_test.cpp
HenryBullingham/cppdj
43db035102378c6982b66d405c7ba20f7f90b463
[ "MIT" ]
null
null
null
test/cppdj_test.cpp
HenryBullingham/cppdj
43db035102378c6982b66d405c7ba20f7f90b463
[ "MIT" ]
null
null
null
test/cppdj_test.cpp
HenryBullingham/cppdj
43db035102378c6982b66d405c7ba20f7f90b463
[ "MIT" ]
null
null
null
// Copyright(C) 2020 Henry Bullingham // This file is subject to the license terms in the LICENSE file // found in the top - level directory of this distribution. #include "catch.hpp" #include "cppdj/cppdj.hpp" class test_service { public: bool return_true() { return true; } }; struct interface_...
23.142857
94
0.648148
HenryBullingham
8d75124c7bb88e166a1d7c523c34c372e627d2f4
4,039
cpp
C++
Data Structures/Queues/ReversingQueueUsingStack.cpp
anjali9811/Programming-in-Cpp
02e80e045a7fb20f8970fcdae68c08bdf27f95b8
[ "Apache-2.0" ]
null
null
null
Data Structures/Queues/ReversingQueueUsingStack.cpp
anjali9811/Programming-in-Cpp
02e80e045a7fb20f8970fcdae68c08bdf27f95b8
[ "Apache-2.0" ]
null
null
null
Data Structures/Queues/ReversingQueueUsingStack.cpp
anjali9811/Programming-in-Cpp
02e80e045a7fb20f8970fcdae68c08bdf27f95b8
[ "Apache-2.0" ]
null
null
null
#include<iostream> #include<stack> using namespace std; //assigning std namespace to global namesapce //a node has 2 fields -data and a pointer next -points or stores mem address of next node in list struct Node { int data; Node *next; }; class Queue { public : Node *front,*rear; //front to store the address...
17.637555
116
0.611538
anjali9811
8d786704c1b56c4f292afd9057fe817f75ac5c6d
2,572
hpp
C++
src/Globals.hpp
jakobkilian/unfolding-space
1ba03e156680e1b455b4164d12177fae52c68356
[ "MIT" ]
5
2020-10-28T05:51:27.000Z
2022-02-28T07:48:38.000Z
src/Globals.hpp
jakobkilian/unfolding-space
1ba03e156680e1b455b4164d12177fae52c68356
[ "MIT" ]
null
null
null
src/Globals.hpp
jakobkilian/unfolding-space
1ba03e156680e1b455b4164d12177fae52c68356
[ "MIT" ]
null
null
null
#pragma once #include <boost/asio.hpp> #include <mutex> #include <opencv2/opencv.hpp> #include <royale.hpp> #include "Camera.hpp" #include "i2c/I2C.hpp" #include "i2c/Imu.hpp" #include "MotorBoard.hpp" #include "TimeLogger.hpp" #include "UdpServer.hpp" #include "Led.hpp" struct Base { std::mutex mut; }; // camer...
23.814815
87
0.744168
jakobkilian
8d786c975419b9a32a3b1112ce146e5295f043e1
1,292
cpp
C++
AbsoluteTouch/AbsoluteTouchCallback.cpp
honguyenminh/AbsoluteTouch
f90a1cda9d148c34b0febb2e39b7440e55ecf7a9
[ "MIT" ]
32
2016-07-18T16:05:52.000Z
2021-07-13T08:04:24.000Z
AbsoluteTouch/AbsoluteTouchCallback.cpp
honguyenminh/AbsoluteTouch
f90a1cda9d148c34b0febb2e39b7440e55ecf7a9
[ "MIT" ]
8
2016-08-02T03:21:35.000Z
2018-11-25T18:12:00.000Z
AbsoluteTouch/AbsoluteTouchCallback.cpp
honguyenminh/AbsoluteTouch
f90a1cda9d148c34b0febb2e39b7440e55ecf7a9
[ "MIT" ]
12
2017-03-19T03:56:43.000Z
2022-03-22T00:46:52.000Z
#include "AbsoluteTouchCallback.h" #include "Containers.h" #include "CoordinateMapper.h" #include "InputHelper.h" #include "TouchProcessor.h" #include "TouchpadManager.h" void AbsoluteTouchCallback::SetTouchpadRect(Rect<long> touchpadRect) { m_coordMapper.SetTouchpadRect(touchpadRect); } void AbsoluteTouchCallbac...
22.666667
69
0.747678
honguyenminh
8d7d640b0545c43163c0970ad22ba6db9881e55c
3,334
cpp
C++
test/backend-test.cpp
UCLA-IRL/Mnemosyne
a5818955fae76f6ca496fd6158c9da52c9440a95
[ "Apache-2.0" ]
2
2021-12-21T01:14:44.000Z
2022-01-01T22:01:27.000Z
test/backend-test.cpp
UCLA-IRL/Mnemosyne
a5818955fae76f6ca496fd6158c9da52c9440a95
[ "Apache-2.0" ]
null
null
null
test/backend-test.cpp
UCLA-IRL/Mnemosyne
a5818955fae76f6ca496fd6158c9da52c9440a95
[ "Apache-2.0" ]
1
2021-11-22T01:50:32.000Z
2021-11-22T01:50:32.000Z
#include "mnemosyne/backend.hpp" #include <ndn-cxx/name.hpp> #include <iostream> #include <ndn-cxx/security/signature-sha256-with-rsa.hpp> using namespace mnemosyne; std::shared_ptr<ndn::Data> makeData(const std::string& name, const std::string& content) { using namespace ndn; using namespace std; auto data = m...
31.45283
113
0.65087
UCLA-IRL
8d7df5f90a9fcb27caabee9e57a6ed6c2b121e9d
3,418
cpp
C++
lib/ome/files/module.cpp
rleigh-dundee/bioformats-cpp
e8e3c03cab4d00edb96f40aa2b86bc7c99d6588c
[ "BSD-2-Clause" ]
5
2017-12-11T16:23:16.000Z
2019-08-13T18:32:27.000Z
lib/ome/files/module.cpp
rleigh-dundee/bioformats-cpp
e8e3c03cab4d00edb96f40aa2b86bc7c99d6588c
[ "BSD-2-Clause" ]
83
2016-02-28T19:29:11.000Z
2019-02-21T08:52:37.000Z
lib/ome/files/module.cpp
rleigh-dundee/bioformats-cpp
e8e3c03cab4d00edb96f40aa2b86bc7c99d6588c
[ "BSD-2-Clause" ]
13
2016-02-26T17:18:15.000Z
2020-04-22T00:40:59.000Z
/* * #%L * OME-FILES C++ library for image IO. * %% * Copyright © 2016 Open Microscopy Environment: * - Massachusetts Institute of Technology * - National Institutes of Health * - University of Dundee * - Board of Regents of the University of Wisconsin-Madison * - Glencoe Software, Inc. * %% * Redi...
29.721739
79
0.713868
rleigh-dundee
8d806b206dedb85c507b42078be02247ff693d3a
1,030
cpp
C++
libs/sge_renderer/src/sge_renderer/renderer/renderer.cpp
Alekssasho/sge_source
2db4ae08f7b3434d32dd9767fe1136234cb70b83
[ "MIT" ]
null
null
null
libs/sge_renderer/src/sge_renderer/renderer/renderer.cpp
Alekssasho/sge_source
2db4ae08f7b3434d32dd9767fe1136234cb70b83
[ "MIT" ]
null
null
null
libs/sge_renderer/src/sge_renderer/renderer/renderer.cpp
Alekssasho/sge_source
2db4ae08f7b3434d32dd9767fe1136234cb70b83
[ "MIT" ]
null
null
null
#include "renderer.h" namespace sge { #if 0 template<typename T> T* SGEDevice::requestResource() { sgeAssert(false); return nullptr; } #endif #define SGE_Impl_request_resource(T, RT) \ template <> \ T* SGEDevice::requestResource<T>() { \ return stati...
32.1875
78
0.767961
Alekssasho
8d86cfb4ad2ef883d5b0324eb54eb1689cb3439a
9,568
cpp
C++
NOLF/ClientShellDLL/IpMgr.cpp
haekb/nolf1-modernizer
25bac3d43c40a83b8e90201a70a14ef63b4240e7
[ "Unlicense" ]
38
2019-09-16T14:46:42.000Z
2022-03-10T20:28:10.000Z
NOLF/ClientShellDLL/IpMgr.cpp
haekb/nolf1-modernizer
25bac3d43c40a83b8e90201a70a14ef63b4240e7
[ "Unlicense" ]
39
2019-08-12T01:35:33.000Z
2022-02-28T16:48:16.000Z
NOLF/ClientShellDLL/IpMgr.cpp
haekb/nolf1-modernizer
25bac3d43c40a83b8e90201a70a14ef63b4240e7
[ "Unlicense" ]
6
2019-09-17T12:49:18.000Z
2022-03-10T20:28:12.000Z
/**************************************************************************** ; ; MODULE: IPMGR (.CPP) ; ; PURPOSE: IP Manager Classes ; ; HISTORY: 11/09/98 [blg] This file was created ; ; COMMENT: Copyright (c) 1998, Monolith Productions Inc. ; *********************************************************************...
17.055258
80
0.443562
haekb
8d9134d27d6d664ccd8d3ca612a8363ec57bfe5f
45
cpp
C++
src/geometry.cpp
MDkil/basketball-game-opengl
4b32bf1943a15de8bab353728868befd38975b84
[ "MIT" ]
null
null
null
src/geometry.cpp
MDkil/basketball-game-opengl
4b32bf1943a15de8bab353728868befd38975b84
[ "MIT" ]
null
null
null
src/geometry.cpp
MDkil/basketball-game-opengl
4b32bf1943a15de8bab353728868befd38975b84
[ "MIT" ]
null
null
null
#include <cmath> #include "geometry.h"
9
22
0.622222
MDkil
8d91dcf6c28fa8f3f45f3d7c9363c92543f17821
11,908
cpp
C++
Src/lunaui/launcher/elements/buttons/pixbutton.cpp
ericblade/luna-sysmgr
82d5d7ced4ba21d3802eb2c8ae063236b6562331
[ "Apache-2.0" ]
3
2018-11-16T14:51:17.000Z
2019-11-21T10:55:24.000Z
Src/lunaui/launcher/elements/buttons/pixbutton.cpp
penk/luna-sysmgr
60c7056a734cdb55a718507f3a739839c9d74edf
[ "Apache-2.0" ]
1
2021-02-20T13:12:15.000Z
2021-02-20T13:12:15.000Z
Src/lunaui/launcher/elements/buttons/pixbutton.cpp
ericblade/luna-sysmgr
82d5d7ced4ba21d3802eb2c8ae063236b6562331
[ "Apache-2.0" ]
null
null
null
/* @@@LICENSE * * Copyright (c) 2011-2012 Hewlett-Packard Development Company, L.P. * * 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 * * Unl...
24.964361
131
0.730685
ericblade
8d92d8fffc3470695b9e4494e7219396485782eb
1,731
hpp
C++
src/PointwiseFunctions/Xcts/LongitudinalOperator.hpp
nilsvu/spectre
1455b9a8d7e92db8ad600c66f54795c29c3052ee
[ "MIT" ]
117
2017-04-08T22:52:48.000Z
2022-03-25T07:23:36.000Z
src/PointwiseFunctions/Xcts/LongitudinalOperator.hpp
GitHimanshuc/spectre
4de4033ba36547113293fe4dbdd77591485a4aee
[ "MIT" ]
3,177
2017-04-07T21:10:18.000Z
2022-03-31T23:55:59.000Z
src/PointwiseFunctions/Xcts/LongitudinalOperator.hpp
geoffrey4444/spectre
9350d61830b360e2d5b273fdd176dcc841dbefb0
[ "MIT" ]
85
2017-04-07T19:36:13.000Z
2022-03-01T10:21:00.000Z
// Distributed under the MIT License. // See LICENSE.txt for details. #pragma once #include <cstddef> #include "DataStructures/Tensor/Tensor.hpp" #include "Utilities/Gsl.hpp" namespace Xcts { /*! * \brief The longitudinal operator, or vector gradient, \f$(L\beta)^{ij}\f$ * * Computes the longitudinal operator *...
32.055556
76
0.658001
nilsvu
8d952902bbe215359c95ad445840c3e4f619f906
9,204
cpp
C++
C++/assign5.cpp
Susmita-18/Hacktoberfest-Codes
91504c2c557a8ef5999d903a132fa2fe3847abc9
[ "MIT" ]
6
2019-10-01T06:23:59.000Z
2020-10-11T13:57:34.000Z
C++/assign5.cpp
Susmita-18/Hacktoberfest-Codes
91504c2c557a8ef5999d903a132fa2fe3847abc9
[ "MIT" ]
null
null
null
C++/assign5.cpp
Susmita-18/Hacktoberfest-Codes
91504c2c557a8ef5999d903a132fa2fe3847abc9
[ "MIT" ]
23
2019-09-30T16:52:53.000Z
2020-10-14T06:52:46.000Z
/* Name - Avik Ghosh ID - 181001001039 Batch - BCS3A */ //Triangle drawing using Bresenham line drawing algorithm and also interior colouring using Flood Fill algorithm. #include<stdio.h> #include<graphics.h> #include<conio.h> int n=0,size; int x1,y1,x2,y2,x3,y3; int *pixels=NULL; static int m=0; void ...
26
242
0.488918
Susmita-18
8d9534020f2b50d211a0e26d85cd9e9a3d14c9bc
1,368
cpp
C++
unit-test/server/PushImp.cpp
cSingleboy/TarsCpp
17b228b660d540baa1a93215fc007c5131a2fc68
[ "BSD-3-Clause" ]
386
2018-09-11T06:17:10.000Z
2022-03-31T05:59:41.000Z
unit-test/server/PushImp.cpp
cSingleboy/TarsCpp
17b228b660d540baa1a93215fc007c5131a2fc68
[ "BSD-3-Clause" ]
128
2018-09-12T03:43:33.000Z
2022-03-24T10:03:54.000Z
unit-test/server/PushImp.cpp
cSingleboy/TarsCpp
17b228b660d540baa1a93215fc007c5131a2fc68
[ "BSD-3-Clause" ]
259
2018-09-19T08:50:37.000Z
2022-03-11T07:17:56.000Z
#include "PushImp.h" #include "servant/Application.h" #include "PushThread.h" using namespace std; ////////////////////////////////////////////////////// void PushImp::initialize() { //initialize servant here: //... } ////////////////////////////////////////////////////// void PushImp::destroy() { //des...
24
92
0.630848
cSingleboy
8d9f3471534ef8055e0e483b379536953a11da77
12,918
cpp
C++
cpp/godot-cpp/src/gen/Image.cpp
GDNative-Gradle/proof-of-concept
162f467430760cf959f68f1638adc663fd05c5fd
[ "MIT" ]
1
2021-03-16T09:51:00.000Z
2021-03-16T09:51:00.000Z
cpp/godot-cpp/src/gen/Image.cpp
GDNative-Gradle/proof-of-concept
162f467430760cf959f68f1638adc663fd05c5fd
[ "MIT" ]
null
null
null
cpp/godot-cpp/src/gen/Image.cpp
GDNative-Gradle/proof-of-concept
162f467430760cf959f68f1638adc663fd05c5fd
[ "MIT" ]
null
null
null
#include "Image.hpp" #include <core/GodotGlobal.hpp> #include <core/CoreTypes.hpp> #include <core/Ref.hpp> #include <core/Godot.hpp> #include "__icalls.hpp" #include "Image.hpp" namespace godot { Image::___method_bindings Image::___mb = {}; void Image::___init_method_bindings() { ___mb.mb__get_data = godot::...
44.239726
191
0.777675
GDNative-Gradle
8da0089fb86c3056043f83b8f3d3d1d172208068
5,408
cc
C++
plugins/experimental/inliner/ats-inliner.cc
garfieldonly/ats_git
940ff5c56bebabb96130a55c2a17212c5c518138
[ "Apache-2.0" ]
1
2016-06-12T02:01:06.000Z
2016-06-12T02:01:06.000Z
plugins/experimental/inliner/ats-inliner.cc
mingzym/trafficserver
a01c3a357b4ff9193f2e2a8aee48e3751ef2177a
[ "Apache-2.0" ]
null
null
null
plugins/experimental/inliner/ats-inliner.cc
mingzym/trafficserver
a01c3a357b4ff9193f2e2a8aee48e3751ef2177a
[ "Apache-2.0" ]
null
null
null
/** @file Inlines base64 images from the ATS cache @section license License Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this f...
24.807339
116
0.689349
garfieldonly
8da6a7f8fec506fe510e405714677f7d04af4b88
4,067
cpp
C++
simple/rtimer-impl.cpp
fabricetriboix/asio-tutorial
06f1a9074343b2ac4a774abbfcae1fb3a39eba25
[ "Unlicense" ]
null
null
null
simple/rtimer-impl.cpp
fabricetriboix/asio-tutorial
06f1a9074343b2ac4a774abbfcae1fb3a39eba25
[ "Unlicense" ]
null
null
null
simple/rtimer-impl.cpp
fabricetriboix/asio-tutorial
06f1a9074343b2ac4a774abbfcae1fb3a39eba25
[ "Unlicense" ]
null
null
null
#include "rtimer-impl.hpp" #include <cstring> #include <cerrno> #include <stdexcept> #include <boost/assert.hpp> #include <boost/log/trivial.hpp> #include <boost/system/error_code.hpp> #include <boost/system/system_error.hpp> namespace rtimer { void rtimer_handler(union sigval arg) { rtimer_impl_t* impl = static_...
31.045802
79
0.582493
fabricetriboix
8daa7c7e00602cff306443d48ac0bac6e1abf7eb
800
cpp
C++
tests/partial_sum.cpp
davidhunter22/ranges
86d594ed4b2ac0f8659ca16816e514450e9ab8b0
[ "CC0-1.0" ]
48
2021-04-07T11:50:32.000Z
2022-03-12T00:49:56.000Z
tests/partial_sum.cpp
davidhunter22/ranges
86d594ed4b2ac0f8659ca16816e514450e9ab8b0
[ "CC0-1.0" ]
18
2021-05-14T17:13:41.000Z
2022-02-05T04:06:11.000Z
tests/partial_sum.cpp
davidhunter22/ranges
86d594ed4b2ac0f8659ca16816e514450e9ab8b0
[ "CC0-1.0" ]
6
2021-05-19T14:35:06.000Z
2022-03-12T00:49:58.000Z
#include "tl/partial_sum.hpp" #include "tl/zip.hpp" #include <catch2/catch.hpp> #include <vector> TEST_CASE("partial sum") { std::vector<int> v{ 0,1,2,3,4 }; std::vector<int> res{ 0, 1, 3, 6, 10 }; for (auto&& [a, b] : tl::views::zip(tl::views::partial_sum(v, std::plus{}), res)) { REQUIRE(a ==...
21.621622
92
0.52875
davidhunter22
8db47ea0d84c274ce2853bd303b72fbae609647c
3,175
cpp
C++
src/CursATE/Screen/detail/Marks.ut.cpp
qiagen/LogATE
aa43595c89bf3bcaa302d8406e5ad789efc0e035
[ "BSD-2-Clause" ]
null
null
null
src/CursATE/Screen/detail/Marks.ut.cpp
qiagen/LogATE
aa43595c89bf3bcaa302d8406e5ad789efc0e035
[ "BSD-2-Clause" ]
null
null
null
src/CursATE/Screen/detail/Marks.ut.cpp
qiagen/LogATE
aa43595c89bf3bcaa302d8406e5ad789efc0e035
[ "BSD-2-Clause" ]
3
2021-01-12T18:52:49.000Z
2021-01-19T17:48:50.000Z
#include <doctest/doctest.h> #include "CursATE/Screen/detail/Marks.hpp" #include "LogATE/Tree/Filter/AcceptAll.hpp" #include "LogATE/TestHelpers.ut.hpp" using CursATE::Screen::detail::Marks; using LogATE::makeKey; namespace { TEST_SUITE("CursATE::Screen::detail::Marks") { struct Fixture { auto makeNode() const {...
23.345588
104
0.615433
qiagen
8db4917ed6d49eebc5c5d7deb6ae513bd5820801
14,824
hpp
C++
boost/numeric/ublasx/operation/min.hpp
comcon1/boost-ublasx
290b92b643a944825df99bece3468a4f81518056
[ "BSL-1.0" ]
null
null
null
boost/numeric/ublasx/operation/min.hpp
comcon1/boost-ublasx
290b92b643a944825df99bece3468a4f81518056
[ "BSL-1.0" ]
null
null
null
boost/numeric/ublasx/operation/min.hpp
comcon1/boost-ublasx
290b92b643a944825df99bece3468a4f81518056
[ "BSL-1.0" ]
null
null
null
/** * \file boost/numeric/ublasx/operation/min.hpp * * \brief The \c min operation. * * <hr/> * * Copyright (c) 2010-2011, Marco Guazzone * * Distributed under the Boost Software License, Version 1.0. (See * accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) * * \author Ma...
28.617761
141
0.7386
comcon1
8db55372d7fc7443e71fd2ccb5aa44aa4cdba025
3,091
cpp
C++
src/Graniastoslup.cpp
HPytkiewicz/Dron2
1c959a63022b05fa1ee9eb32179891bfd59996b6
[ "MIT" ]
null
null
null
src/Graniastoslup.cpp
HPytkiewicz/Dron2
1c959a63022b05fa1ee9eb32179891bfd59996b6
[ "MIT" ]
null
null
null
src/Graniastoslup.cpp
HPytkiewicz/Dron2
1c959a63022b05fa1ee9eb32179891bfd59996b6
[ "MIT" ]
null
null
null
#include "Graniastoslup.hh" void Graniastoslup::rysuj() { this->usun(); (*this).ustaw_globalnie(); this->id = this->lacze->draw_polyhedron(wierzcholki_globalnie, kolor); } void Graniastoslup::usun() { this->lacze->erase_shape(this->id); } void Graniastoslup::ustaw_globalnie() { this->wierzcholki_...
47.553846
161
0.657716
HPytkiewicz
8db7c98b75ce33640e5ebd96fc9dd5e6b6b5d27a
6,553
cpp
C++
test/common/binaryreader.cpp
seedhartha/revan
b9a98007ca2f510b42894ecd09fb623571b433dc
[ "MIT" ]
37
2020-06-27T18:50:48.000Z
2020-08-02T14:13:51.000Z
test/common/binaryreader.cpp
seedhartha/revan
b9a98007ca2f510b42894ecd09fb623571b433dc
[ "MIT" ]
null
null
null
test/common/binaryreader.cpp
seedhartha/revan
b9a98007ca2f510b42894ecd09fb623571b433dc
[ "MIT" ]
1
2020-07-14T13:32:15.000Z
2020-07-14T13:32:15.000Z
/* * Copyright (c) 2020-2022 The reone project contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * ...
39.957317
148
0.664123
seedhartha
8db90828360bf22dba8e8fdb0f4859b2f5b28d9a
519
cpp
C++
judges/codeforces/exercises/bus_to_udayland.cpp
eduardonunes2525/competitive-programming
0f6bdc573b4d03d1ed20a2b77ec5388dca1ee47b
[ "MIT" ]
null
null
null
judges/codeforces/exercises/bus_to_udayland.cpp
eduardonunes2525/competitive-programming
0f6bdc573b4d03d1ed20a2b77ec5388dca1ee47b
[ "MIT" ]
1
2018-10-17T11:53:02.000Z
2018-10-17T11:54:42.000Z
judges/codeforces/exercises/bus_to_udayland.cpp
eduardonunes2525/competitive-programming
0f6bdc573b4d03d1ed20a2b77ec5388dca1ee47b
[ "MIT" ]
1
2018-10-17T12:14:04.000Z
2018-10-17T12:14:04.000Z
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; vector<string> v; string s; bool b = false; for(int i = 0; i < n; i++){ cin >> s; v.push_back(s); if(s[0]=='O' and s[1]=='O' and !b) { b=true; v[i][0]='+'; v[i][1]='+'; } else if(s[3]=='O' and s[4]==...
21.625
85
0.414258
eduardonunes2525
8db9369e9e20744cda77780c510e28c8bfa976de
532
hpp
C++
3rdparty/diy/include/diy/mpi/request.hpp
wgq-iapcm/Parvoro-
9459e1081ff948628358c59207d5fcd8ce60ef8f
[ "BSD-3-Clause" ]
43
2016-10-23T14:52:59.000Z
2022-03-18T20:47:06.000Z
3rdparty/diy/include/diy/mpi/request.hpp
wgq-iapcm/Parvoro-
9459e1081ff948628358c59207d5fcd8ce60ef8f
[ "BSD-3-Clause" ]
39
2016-11-25T22:14:09.000Z
2022-01-13T21:44:51.000Z
3rdparty/diy/include/diy/mpi/request.hpp
wgq-iapcm/Parvoro-
9459e1081ff948628358c59207d5fcd8ce60ef8f
[ "BSD-3-Clause" ]
21
2016-11-28T22:08:36.000Z
2022-03-16T10:31:32.000Z
#ifndef DIY_MPI_REQUEST_HPP #define DIY_MPI_REQUEST_HPP #include "config.hpp" #include "status.hpp" #include "optional.hpp" namespace diy { namespace mpi { struct request { DIY_MPI_EXPORT_FUNCTION request(); DIY_MPI_EXPORT_FUNCTION status wait(); DIY_MPI_EXPORT_FUNCTION opti...
17.733333
55
0.68985
wgq-iapcm
8dbf701ab66298d8b13da5828d6cceab6aa8ad8c
23,720
cpp
C++
dss_town/src/sys/msys_glext.cpp
mudlord/demos
359bada56a27ddbd4fcb846c0ff34bc474cb7f05
[ "Unlicense" ]
20
2017-12-12T16:37:25.000Z
2022-02-19T10:35:46.000Z
dss_town/src/sys/msys_glext.cpp
mudlord/demos
359bada56a27ddbd4fcb846c0ff34bc474cb7f05
[ "Unlicense" ]
null
null
null
dss_town/src/sys/msys_glext.cpp
mudlord/demos
359bada56a27ddbd4fcb846c0ff34bc474cb7f05
[ "Unlicense" ]
7
2017-12-29T23:19:18.000Z
2021-08-17T09:53:15.000Z
#define WIN32_LEAN_AND_MEAN #define WIN32_EXTRA_LEAN #include <windows.h> #include <GL/gl.h> #include <gl/GLU.h> #include "glext.h" #include <string.h> #include "ddraw.h" #include "msys_texgen.h" #include "msys.h" //--- d a t a --------------------------------------------------------------- #include "msys_glext.h" ...
26.181015
164
0.665556
mudlord
8dbf97d5370f1cdffbfad39243fcfd0cefb30720
9,645
cc
C++
src/generators/net_caffe_convnet.cc
quadeare/deepdetect
eaf04210642fa22696d1b1fa0af1e7b9e9d25c2f
[ "Apache-2.0" ]
2
2018-08-11T20:56:47.000Z
2021-08-25T05:11:46.000Z
src/generators/net_caffe_convnet.cc
quadeare/deepdetect
eaf04210642fa22696d1b1fa0af1e7b9e9d25c2f
[ "Apache-2.0" ]
null
null
null
src/generators/net_caffe_convnet.cc
quadeare/deepdetect
eaf04210642fa22696d1b1fa0af1e7b9e9d25c2f
[ "Apache-2.0" ]
null
null
null
/** * DeepDetect * Copyright (c) 2014-2017 Emmanuel Benazera * Author: Emmanuel Benazera <beniz@droidnik.fr> * * This file is part of deepdetect. * * deepdetect is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Softw...
36.534091
123
0.668533
quadeare