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
108
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
67k
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
2657531345a1be7c95f5c8fdf80852b4c7419e44
190
hpp
C++
include/crucible/PointLight.hpp
pianoman373/crucible
fa03ca471fef56cf2def029a14bcc6a467996dfa
[ "MIT" ]
2
2019-02-17T02:55:38.000Z
2019-04-19T04:57:39.000Z
include/crucible/PointLight.hpp
pianoman373/crucible
fa03ca471fef56cf2def029a14bcc6a467996dfa
[ "MIT" ]
null
null
null
include/crucible/PointLight.hpp
pianoman373/crucible
fa03ca471fef56cf2def029a14bcc6a467996dfa
[ "MIT" ]
1
2018-12-03T22:39:44.000Z
2018-12-03T22:39:44.000Z
#pragma once #include <crucible/Math.hpp> class PointLight { public: vec3 m_position; vec3 m_color; float m_radius; PointLight(vec3 position, vec3 color, float radius); };
15.833333
56
0.7
pianoman373
2657fae70315ea802aa34bdf029df3baf77cbe83
275
cpp
C++
programmers/source/2-3.cpp
tdm1223/Algorithm
994149afffa21a81e38b822afcfc01f677d9e430
[ "MIT" ]
7
2019-06-26T07:03:32.000Z
2020-11-21T16:12:51.000Z
programmers/source/2-3.cpp
tdm1223/Algorithm
994149afffa21a81e38b822afcfc01f677d9e430
[ "MIT" ]
null
null
null
programmers/source/2-3.cpp
tdm1223/Algorithm
994149afffa21a81e38b822afcfc01f677d9e430
[ "MIT" ]
9
2019-02-28T03:34:54.000Z
2020-12-18T03:02:40.000Z
// JadenCase 문자열 만들기 // 2019.06.28 #include<string> using namespace std; string solution(string s) { s[0] = toupper(s[0]); for (int i = 1; i<s.size(); i++) { if (s[i - 1] == ' ') { s[i] = toupper(s[i]); } else { s[i] = tolower(s[i]); } } return s; }
11.956522
33
0.501818
tdm1223
26592a5e44863f17480bc4cb343850030f328d0b
3,361
cpp
C++
app/src/main/cpp/UI/Scoreboard/ScoreboardWindow.cpp
ArnisLielturks/Urho3D-Project-Template
998d12e2470ec8a43ec552a1c2182eecfed63ca1
[ "MIT" ]
48
2019-01-06T02:17:44.000Z
2021-09-28T15:10:30.000Z
app/src/main/cpp/UI/Scoreboard/ScoreboardWindow.cpp
urnenfeld/Urho3D-Project-Template
efd45e4edcffb232753010a3ee623d6cf9bc1c26
[ "MIT" ]
17
2019-01-22T17:48:58.000Z
2021-04-04T17:52:56.000Z
app/src/main/cpp/UI/Scoreboard/ScoreboardWindow.cpp
ArnisLielturks/Urho3D-Project-Template
998d12e2470ec8a43ec552a1c2182eecfed63ca1
[ "MIT" ]
18
2019-02-18T13:55:41.000Z
2021-04-02T14:28:00.000Z
#include <Urho3D/UI/UI.h> #include <Urho3D/Resource/ResourceCache.h> #include <Urho3D/UI/Text.h> #include <Urho3D/UI/Font.h> #include "ScoreboardWindow.h" #include "../../Player/PlayerEvents.h" #include "../../Globals/GUIDefines.h" ScoreboardWindow::ScoreboardWindow(Context* context) : BaseWindow(context) { } Sco...
31.707547
115
0.670336
ArnisLielturks
265e73379723ba9280c8780994d45196cc6eb362
3,376
cpp
C++
tests/functions.cpp
ulikoehler/aquila
d5e3bde3c8d07678a95f225b657a7bb23d0c4730
[ "MIT" ]
361
2015-01-06T20:12:35.000Z
2022-03-29T01:58:49.000Z
tests/functions.cpp
ulikoehler/aquila
d5e3bde3c8d07678a95f225b657a7bb23d0c4730
[ "MIT" ]
30
2015-01-13T12:17:13.000Z
2021-06-03T14:12:10.000Z
tests/functions.cpp
ulikoehler/aquila
d5e3bde3c8d07678a95f225b657a7bb23d0c4730
[ "MIT" ]
112
2015-01-14T12:01:00.000Z
2022-03-29T06:42:00.000Z
#include "aquila/global.h" #include "aquila/functions.h" #include "UnitTest++/UnitTest++.h" #include <vector> SUITE(Functions) { const std::size_t SIZE = 3; double arr1[SIZE] = {0, 1, 2}; std::vector<double> v1(arr1, arr1 + SIZE); double arr2[SIZE] = {1, 2, 3}; std::vector<double> v2(arr2, arr2 + ...
25.007407
87
0.582346
ulikoehler
265eb7e3d7bb380c5091c946648d17cc17b2acd0
17,977
cpp
C++
trunk/suicore/src/System/Render/Skia/SkiaDrawContext.cpp
OhmPopy/MPFUI
eac88d66aeb88d342f16866a8d54858afe3b6909
[ "MIT" ]
59
2017-08-27T13:27:55.000Z
2022-01-21T13:24:05.000Z
src/suicore/System/Render/Skia/SkiaDrawContext.cpp
BigPig0/MPFUI
7042e0a5527ab323e16d2106d715db4f8ee93275
[ "MIT" ]
5
2017-11-26T05:40:23.000Z
2019-04-02T08:58:21.000Z
src/suicore/System/Render/Skia/SkiaDrawContext.cpp
BigPig0/MPFUI
7042e0a5527ab323e16d2106d715db4f8ee93275
[ "MIT" ]
49
2017-08-24T08:00:50.000Z
2021-11-07T01:24:41.000Z
#include "skiadrawing.h" #include <System/Types/Const.h> #include <System/Types/Structure.h> #include <System/Graphics/SkiaPaint.h> #include <System/Interop/System.h> #include "SkTextOp.h" #include <Skia/effects/SkGradientShader.h> #include <Skia/core/SkTypeface.h> namespace suic { SkiaDrawing::SkiaDrawing(Handle ...
24.659808
120
0.600156
OhmPopy
2662f0342aea17a0c7cd36fc6c8edfda4fcaa9c2
2,445
cpp
C++
source/example.cpp
Nicola20/programmiersprachen-aufgabenblatt-3
3d213c3a5c46cfac04670bd9720334e9fd1fcf61
[ "MIT" ]
null
null
null
source/example.cpp
Nicola20/programmiersprachen-aufgabenblatt-3
3d213c3a5c46cfac04670bd9720334e9fd1fcf61
[ "MIT" ]
null
null
null
source/example.cpp
Nicola20/programmiersprachen-aufgabenblatt-3
3d213c3a5c46cfac04670bd9720334e9fd1fcf61
[ "MIT" ]
null
null
null
#include "window.hpp" #include "Circle.hpp" //#include "Rectangle.hpp" //#include "Vec2.hpp" #include <GLFW/glfw3.h> #include <utility> #include <cmath> #include <set> #include <iostream> #include <vector> #include <string> int main(int argc, char* argv[]) { Window win{std::make_pair(800,800)}; std::cout<<"P...
26.010638
110
0.577096
Nicola20
26671dd7edc3c49d10e07e9e2dbabdb863ebba71
637
hpp
C++
include/lol/def/LolChatPlayerPreferences.hpp
Maufeat/LeagueAPI
be7cb5093aab3f27d95b3c0e1d5700aa50126c47
[ "BSD-3-Clause" ]
1
2020-07-22T11:14:55.000Z
2020-07-22T11:14:55.000Z
include/lol/def/LolChatPlayerPreferences.hpp
Maufeat/LeagueAPI
be7cb5093aab3f27d95b3c0e1d5700aa50126c47
[ "BSD-3-Clause" ]
null
null
null
include/lol/def/LolChatPlayerPreferences.hpp
Maufeat/LeagueAPI
be7cb5093aab3f27d95b3c0e1d5700aa50126c47
[ "BSD-3-Clause" ]
4
2018-12-01T22:48:21.000Z
2020-07-22T11:14:56.000Z
#pragma once #include "../base_def.hpp" namespace lol { struct LolChatPlayerPreferences { std::string data; std::string hash; std::string type; uint64_t modified; }; inline void to_json(json& j, const LolChatPlayerPreferences& v) { j["data"] = v.data; j["hash"] = v.hash; j["type"]...
28.954545
69
0.599686
Maufeat
266a1f110a44dfe36bb5da7c8969135b31ac459b
2,173
cpp
C++
src/certificate/ObjectIdentifier.cpp
LabSEC/libcryptosec
e53030ec32b52b6abeaa973a9f0bfba0eb2c2440
[ "BSD-3-Clause" ]
22
2015-08-26T16:40:59.000Z
2022-02-22T19:52:55.000Z
src/certificate/ObjectIdentifier.cpp
LabSEC/Libcryptosec
e53030ec32b52b6abeaa973a9f0bfba0eb2c2440
[ "BSD-3-Clause" ]
14
2015-09-01T00:39:22.000Z
2018-12-17T16:24:28.000Z
src/certificate/ObjectIdentifier.cpp
LabSEC/Libcryptosec
e53030ec32b52b6abeaa973a9f0bfba0eb2c2440
[ "BSD-3-Clause" ]
22
2015-08-31T19:17:37.000Z
2021-01-04T13:38:35.000Z
#include <libcryptosec/certificate/ObjectIdentifier.h> ObjectIdentifier::ObjectIdentifier() { this->asn1Object = ASN1_OBJECT_new(); // printf("New OID: nid: %d - length: %d\n", this->asn1Object->nid, this->asn1Object->length); } ObjectIdentifier::ObjectIdentifier(ASN1_OBJECT *asn1Object) { this->asn1Object = asn1Ob...
20.12037
97
0.702255
LabSEC
266b1ad7c6660c1a355af6b7563e09eb81b04022
235
cpp
C++
1st-course/AlgSD/lab_1/B.cpp
astappev/NURE
9c148c3212993471953781dec16c9c0205daab9a
[ "MIT" ]
null
null
null
1st-course/AlgSD/lab_1/B.cpp
astappev/NURE
9c148c3212993471953781dec16c9c0205daab9a
[ "MIT" ]
null
null
null
1st-course/AlgSD/lab_1/B.cpp
astappev/NURE
9c148c3212993471953781dec16c9c0205daab9a
[ "MIT" ]
null
null
null
#include <iostream> #include <math.h> using namespace std; int main() { int a,b,c,d; cin>>a; cin>>b; cin>>c; cin>>d; if (a==0 && b==0) cout<<"INF"; else if ( a==0 || b%a!=0 || c*(-b/a)+d==0) cout<<"NO"; else cout<<-(b/a); }
14.6875
56
0.506383
astappev
266b71ec36a696e07ffe79b3426a70709a9ac0c8
864
cpp
C++
IO/IO.cpp
STEMLab/IndoorData_Conversion
cb22b0cc0088a17a5ce2a89e3c3d5a8cb2551314
[ "MIT" ]
null
null
null
IO/IO.cpp
STEMLab/IndoorData_Conversion
cb22b0cc0088a17a5ce2a89e3c3d5a8cb2551314
[ "MIT" ]
null
null
null
IO/IO.cpp
STEMLab/IndoorData_Conversion
cb22b0cc0088a17a5ce2a89e3c3d5a8cb2551314
[ "MIT" ]
null
null
null
// // Created by byeonggon on 2018-11-12. // #include "IO.h" #include "TRANSFORM/Transform.h" #include <stdio.h> #include <ctype.h> #include <iostream> int CellSpace_ID=1; int CellSpaceBoundary_ID=1; int State_id=1; int Transition_id=1; int OSM_NODE_ID=-1; int OSM_WAY_ID=-30000; int OSM_RELATION_ID=-60000; namespace I...
23.351351
99
0.603009
STEMLab
266daa49cd3e4f526a836bcde3a66b8eab32b4ae
12,976
cpp
C++
a3d/src/d3d12/a3dDescriptorSetLayout.cpp
ProjectAsura/asura-SDK
e823129856185b023b164415b7aec2de0ba9c338
[ "MIT" ]
42
2016-11-11T13:27:48.000Z
2021-07-27T17:53:43.000Z
a3d/src/d3d12/a3dDescriptorSetLayout.cpp
ProjectAsura/asura-SDK
e823129856185b023b164415b7aec2de0ba9c338
[ "MIT" ]
null
null
null
a3d/src/d3d12/a3dDescriptorSetLayout.cpp
ProjectAsura/asura-SDK
e823129856185b023b164415b7aec2de0ba9c338
[ "MIT" ]
2
2017-03-26T08:25:29.000Z
2018-10-24T06:10:29.000Z
//------------------------------------------------------------------------------------------------- // File : a3dDescriptorSetLayout.cpp // Desc : Descriptor Set Layout Implementation. // Copyright(c) Project Asura. All right reserved. //-----------------------------------------------------------------------------...
36.655367
116
0.433955
ProjectAsura
266db602595f4fddce7894fe25ad418c77987836
9,726
cpp
C++
modules/asset/src/scene.cpp
lenamueller/glpp
f7d29e5924537fd405a5bb409d67e65efdde8d9e
[ "MIT" ]
16
2019-12-10T19:44:17.000Z
2022-01-04T03:16:19.000Z
modules/asset/src/scene.cpp
lenamueller/glpp
f7d29e5924537fd405a5bb409d67e65efdde8d9e
[ "MIT" ]
null
null
null
modules/asset/src/scene.cpp
lenamueller/glpp
f7d29e5924537fd405a5bb409d67e65efdde8d9e
[ "MIT" ]
3
2021-06-04T21:56:55.000Z
2022-03-03T06:47:56.000Z
#include "glpp/asset/scene.hpp" #include <assimp/scene.h> #include <assimp/postprocess.h> #include <assimp/Importer.hpp> namespace glpp::asset { void traverse_scene_graph( const aiScene* scene, const aiNode* node, glm::mat4 old, std::vector<mesh_t>& meshes ); struct light_cast_t { const aiScene*...
30.778481
123
0.707177
lenamueller
267f44b12c7e1a6ce6e5ba457f0e28d4d3cfe4bd
2,992
cc
C++
components/previews/core/previews_data_savings.cc
google-ar/chromium
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
777
2017-08-29T15:15:32.000Z
2022-03-21T05:29:41.000Z
components/previews/core/previews_data_savings.cc
harrymarkovskiy/WebARonARCore
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
66
2017-08-30T18:31:18.000Z
2021-08-02T10:59:35.000Z
components/previews/core/previews_data_savings.cc
harrymarkovskiy/WebARonARCore
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
123
2017-08-30T01:19:34.000Z
2022-03-17T22:55:31.000Z
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/previews/core/previews_data_savings.h" #include "base/logging.h" #include "base/metrics/histogram_macros.h" #include "components/dat...
41.555556
80
0.687834
google-ar
2681f01f49362550d596e64e01dd9c88d2b11557
580
hpp
C++
src/sn_Exception/source_location_extend.hpp
Airtnp/SuperNaiveCppLib
0745aa79dc5060cd0f7025658164374b991c698e
[ "MIT" ]
4
2017-04-01T08:09:09.000Z
2017-05-20T11:35:58.000Z
src/sn_Exception/source_location_extend.hpp
Airtnp/ACppLib
0745aa79dc5060cd0f7025658164374b991c698e
[ "MIT" ]
null
null
null
src/sn_Exception/source_location_extend.hpp
Airtnp/ACppLib
0745aa79dc5060cd0f7025658164374b991c698e
[ "MIT" ]
null
null
null
// // Created by Airtnp on 10/18/2019. // #ifndef ACPPLIB_SOURCE_LOCATION_EXTEND_HPP #define ACPPLIB_SOURCE_LOCATION_EXTEND_HPP #include <utility> namespace sn_Exception { namespace source_location { /// For `std::source_location` after variadic template argumentss template <typename ...Ts> ...
23.2
98
0.655172
Airtnp
2682206794cdbd6f5715731c73a0cbaf0a403230
20,518
hxx
C++
include/vigra/multi_opencl.hxx
burgerdev/vigra
f9f8d0b3224f3dc89bc7d0caf1126d49f6d4a3ca
[ "MIT" ]
316
2015-01-01T02:06:53.000Z
2022-03-28T08:37:28.000Z
include/vigra/multi_opencl.hxx
burgerdev/vigra
f9f8d0b3224f3dc89bc7d0caf1126d49f6d4a3ca
[ "MIT" ]
232
2015-01-06T23:51:07.000Z
2022-03-18T13:14:02.000Z
include/vigra/multi_opencl.hxx
burgerdev/vigra
f9f8d0b3224f3dc89bc7d0caf1126d49f6d4a3ca
[ "MIT" ]
150
2015-01-05T02:11:18.000Z
2022-03-16T09:44:14.000Z
/************************************************************************/ /* */ /* Copyright 1998-2004 by Ullrich Koethe */ /* Copyright 2011-2011 by Michael Tesch */ /* ...
46.211712
110
0.471391
burgerdev
268324cc8e0071ff6f7753ada142d5a8a5006a36
1,004
hpp
C++
include/Config.hpp
ShimmerFairy/z64fe
e680f009814ee5f625422837a1744ad02b7d8f08
[ "ClArtistic" ]
4
2016-05-04T07:03:11.000Z
2022-02-25T18:55:15.000Z
include/Config.hpp
ShimmerFairy/z64fe
e680f009814ee5f625422837a1744ad02b7d8f08
[ "ClArtistic" ]
null
null
null
include/Config.hpp
ShimmerFairy/z64fe
e680f009814ee5f625422837a1744ad02b7d8f08
[ "ClArtistic" ]
null
null
null
/** \file Config.hpp * * \brief Declares various constant maps and such for rom-specific info. May * well be in external files someday, but this works for now. * */ #pragma once #include <map> #include <string> namespace Config { enum class Region { UNKNOWN, NTSC, PAL, ...
16.733333
77
0.5249
ShimmerFairy
2685a4500cf6be8acd15b8f171c210227adf6153
1,267
cpp
C++
aws-cpp-sdk-rekognition/source/model/S3Destination.cpp
Nexuscompute/aws-sdk-cpp
e7ef485e46e6962c9e084b8c9b104c1bfcceaf26
[ "Apache-2.0" ]
1
2022-01-05T18:20:03.000Z
2022-01-05T18:20:03.000Z
aws-cpp-sdk-rekognition/source/model/S3Destination.cpp
Nexuscompute/aws-sdk-cpp
e7ef485e46e6962c9e084b8c9b104c1bfcceaf26
[ "Apache-2.0" ]
null
null
null
aws-cpp-sdk-rekognition/source/model/S3Destination.cpp
Nexuscompute/aws-sdk-cpp
e7ef485e46e6962c9e084b8c9b104c1bfcceaf26
[ "Apache-2.0" ]
1
2021-11-09T12:02:58.000Z
2021-11-09T12:02:58.000Z
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/rekognition/model/S3Destination.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { nam...
16.893333
69
0.714286
Nexuscompute
2685a4686c01fb7cd7e7de44f972cbef3a02f9be
4,790
hh
C++
neb/inc/com/centreon/engine/configuration/hostescalation.hh
sdelafond/centreon-broker
21178d98ed8a061ca71317d23c2026dbc4edaca2
[ "Apache-2.0" ]
null
null
null
neb/inc/com/centreon/engine/configuration/hostescalation.hh
sdelafond/centreon-broker
21178d98ed8a061ca71317d23c2026dbc4edaca2
[ "Apache-2.0" ]
null
null
null
neb/inc/com/centreon/engine/configuration/hostescalation.hh
sdelafond/centreon-broker
21178d98ed8a061ca71317d23c2026dbc4edaca2
[ "Apache-2.0" ]
null
null
null
/* ** Copyright 2011-2013,2017 Centreon ** ** This file is part of Centreon Engine. ** ** Centreon Engine is free software: you can redistribute it and/or ** modify it under the terms of the GNU General Public License version 2 ** as published by the Free Software Foundation. ** ** Centreon Engine is distributed in the...
42.767857
78
0.602088
sdelafond
268612881e134b8543e320a3a65b6bc505944e36
407
cpp
C++
mine/49-group_anagrams.cpp
Junlin-Yin/myLeetCode
8a33605d3d0de9faa82b5092a8e9f56b342c463f
[ "MIT" ]
null
null
null
mine/49-group_anagrams.cpp
Junlin-Yin/myLeetCode
8a33605d3d0de9faa82b5092a8e9f56b342c463f
[ "MIT" ]
null
null
null
mine/49-group_anagrams.cpp
Junlin-Yin/myLeetCode
8a33605d3d0de9faa82b5092a8e9f56b342c463f
[ "MIT" ]
null
null
null
class Solution { public: vector<vector<string>> groupAnagrams(vector<string>& strs) { vector<vector<string>> ans; map<string, vector<string>> m; for(auto s: strs){ string key = s; sort(key.begin(), key.end()); m[key].push_back(s); } ...
27.133333
65
0.4914
Junlin-Yin
26870717ca42ee947e4d83fb9bb16c4aa5d0ffed
4,489
cpp
C++
tests/shared/src/MovingPercentileTests.cpp
ey6es/hifi
23f9c799dde439e4627eef45341fb0d53feff80b
[ "Apache-2.0" ]
1
2015-03-11T19:49:20.000Z
2015-03-11T19:49:20.000Z
tests/shared/src/MovingPercentileTests.cpp
ey6es/hifi
23f9c799dde439e4627eef45341fb0d53feff80b
[ "Apache-2.0" ]
null
null
null
tests/shared/src/MovingPercentileTests.cpp
ey6es/hifi
23f9c799dde439e4627eef45341fb0d53feff80b
[ "Apache-2.0" ]
null
null
null
// // MovingPercentileTests.cpp // tests/shared/src // // Created by Yixin Wang on 6/4/2014 // Copyright 2014 High Fidelity, Inc. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // #include "MovingPercentileTests.h" ...
26.405882
88
0.450212
ey6es
268758411a17323da5bed5c00840b7125d087d0b
3,269
hpp
C++
examples/mantevo/miniFE-1.1/optional/stk_util/parallel/Parallel.hpp
sdressler/objekt
30ee938f5cb06193871f802be0bbdae6ecd26a33
[ "BSD-3-Clause" ]
1
2019-11-26T22:24:12.000Z
2019-11-26T22:24:12.000Z
examples/mantevo/miniFE-1.1/optional/stk_util/parallel/Parallel.hpp
sdressler/objekt
30ee938f5cb06193871f802be0bbdae6ecd26a33
[ "BSD-3-Clause" ]
null
null
null
examples/mantevo/miniFE-1.1/optional/stk_util/parallel/Parallel.hpp
sdressler/objekt
30ee938f5cb06193871f802be0bbdae6ecd26a33
[ "BSD-3-Clause" ]
null
null
null
/*------------------------------------------------------------------------*/ /* Copyright 2010 Sandia Corporation. */ /* Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive */ /* license for use of this work by or on behalf of the U.S. Government. */ /* Export o...
23.517986
79
0.588559
sdressler
2692fdc36bf8a34a62e4f1893e5404eb0ec811f3
70,302
cpp
C++
sdktools/debuggers/minidump/gen.cpp
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
sdktools/debuggers/minidump/gen.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
sdktools/debuggers/minidump/gen.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
/*++ Copyright (c) 1999-2002 Microsoft Corporation Module Name: gen.c Abstract: Generic routines for minidump that work on both NT and Win9x. Author: Matthew D Hendel (math) 10-Sep-1999 Revision History: --*/ #include "pch.cpp" #include <limits.h> // // For FPO frames o...
28.508516
80
0.526884
npocmaka
26945ad97669474146a61832833e9516173e6d14
268
cpp
C++
robot_driver/src/robot_driver_node.cpp
robomechanics/quad-software
89154df18e98162249f38301b669df27ee595220
[ "MIT" ]
20
2021-12-05T03:40:28.000Z
2022-03-30T02:53:56.000Z
robot_driver/src/robot_driver_node.cpp
robomechanics/rml-spirit-firmware
89154df18e98162249f38301b669df27ee595220
[ "MIT" ]
45
2021-12-06T12:45:05.000Z
2022-03-31T22:15:47.000Z
robot_driver/src/robot_driver_node.cpp
robomechanics/rml-spirit-firmware
89154df18e98162249f38301b669df27ee595220
[ "MIT" ]
2
2021-12-06T03:20:15.000Z
2022-02-20T04:19:41.000Z
#include <ros/ros.h> #include <iostream> #include "robot_driver/robot_driver.h" int main(int argc, char** argv) { ros::init(argc, argv, "robot_driver_node"); ros::NodeHandle nh; RobotDriver robot_driver(nh, argc, argv); robot_driver.spin(); return 0; }
16.75
45
0.69403
robomechanics
2696661cdfcc1cdd32850db86f3aa38a27bdf078
52,915
cpp
C++
libraries/ble/nRF51822/nordic/ble/ble_bondmngr.cpp
hakehuang/mbed
04b488dcc418f0317cdee1781b27a59295909c77
[ "Apache-2.0" ]
null
null
null
libraries/ble/nRF51822/nordic/ble/ble_bondmngr.cpp
hakehuang/mbed
04b488dcc418f0317cdee1781b27a59295909c77
[ "Apache-2.0" ]
null
null
null
libraries/ble/nRF51822/nordic/ble/ble_bondmngr.cpp
hakehuang/mbed
04b488dcc418f0317cdee1781b27a59295909c77
[ "Apache-2.0" ]
null
null
null
/* Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved. * * The information contained herein is property of Nordic Semiconductor ASA. * Terms and conditions of usage are described in detail in NORDIC * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT. * * Licensees are granted free, non-transferable use...
33.175549
234
0.594349
hakehuang
2697c546ea3da0d71d51f7cd8512991e28feccbc
646
cpp
C++
src/215.kth_largest_element_in_an_array/code.cpp
cloudzfy/leetcode
9d32090429ef297e1f62877382bff582d247266a
[ "MIT" ]
1
2016-07-02T17:44:10.000Z
2016-07-02T17:44:10.000Z
src/215.kth_largest_element_in_an_array/code.cpp
cloudzfy/leetcode
9d32090429ef297e1f62877382bff582d247266a
[ "MIT" ]
null
null
null
src/215.kth_largest_element_in_an_array/code.cpp
cloudzfy/leetcode
9d32090429ef297e1f62877382bff582d247266a
[ "MIT" ]
1
2019-12-21T04:57:15.000Z
2019-12-21T04:57:15.000Z
class Solution { public: int findKthLargest(vector<int>& nums, int k) { int left = 0, right = nums.size() - 1; while (left < right) { int pivot = nums[left]; int i = left, j = right; while (i < j) { while (i < j && nums[j] < pivot) j--; ...
29.363636
54
0.380805
cloudzfy
269b575a872832cd67ba16173326f301c9046e39
4,527
cc
C++
modules/kernel/arch/x86_64/scheduler-arch.cc
eryjus/centuryos2
526a39c0f434b29a43d85e6b5b1ffa1ced885b25
[ "BSD-3-Clause" ]
null
null
null
modules/kernel/arch/x86_64/scheduler-arch.cc
eryjus/centuryos2
526a39c0f434b29a43d85e6b5b1ffa1ced885b25
[ "BSD-3-Clause" ]
null
null
null
modules/kernel/arch/x86_64/scheduler-arch.cc
eryjus/centuryos2
526a39c0f434b29a43d85e6b5b1ffa1ced885b25
[ "BSD-3-Clause" ]
null
null
null
//=================================================================================================================== // // scheduler-arch.cc -- Architecture-specific functions elements for the process // // Copyright (c) 2021 -- Adam Clark // Licensed under "THE BEER-WARE LICENSE" // See License...
41.53211
117
0.456815
eryjus
269d05c443de786d7da37be9593012adcfb37aa9
828
cpp
C++
Regression_test/examples/threshold/src/threshold.cpp
minseongg/dynamatic
268d97690f128569da46e4f39a99346e93ee9d4e
[ "MIT" ]
46
2019-11-16T13:44:07.000Z
2022-03-12T14:28:44.000Z
Regression_test/examples/threshold/src/threshold.cpp
minseongg/dynamatic
268d97690f128569da46e4f39a99346e93ee9d4e
[ "MIT" ]
11
2020-05-12T17:20:51.000Z
2022-02-04T10:04:59.000Z
Regression_test/examples/threshold/src/threshold.cpp
minseongg/dynamatic
268d97690f128569da46e4f39a99346e93ee9d4e
[ "MIT" ]
22
2020-02-21T21:33:40.000Z
2022-02-24T06:50:41.000Z
#include <stdlib.h> #include "threshold.h" void threshold(inout_int_t red[1000], inout_int_t green[1000], inout_int_t blue[1000], in_int_t th) { for (int i = 0; i < 1000; i++) { int sum = red[i] + green [i] + blue [i]; if (sum <= th) { red[i] = 0; green [i] = 0; blue [i] = 0; } } } #define AMOUN...
18.818182
101
0.570048
minseongg
269d8a6d9b8f916c3dda647e0ed287f1f9313bef
2,491
cpp
C++
src/io/OutputFile.cpp
feliwir/libcharta
4581ad4dc0751264ed6104a49260e7e070dfc141
[ "Apache-2.0" ]
null
null
null
src/io/OutputFile.cpp
feliwir/libcharta
4581ad4dc0751264ed6104a49260e7e070dfc141
[ "Apache-2.0" ]
8
2021-05-20T11:15:34.000Z
2021-05-21T12:29:48.000Z
src/io/OutputFile.cpp
feliwir/libcharta
4581ad4dc0751264ed6104a49260e7e070dfc141
[ "Apache-2.0" ]
2
2021-05-24T14:43:46.000Z
2021-05-25T08:31:41.000Z
/* Source File : OutputFile.cpp Copyright 2011 Gal Kahana PDFWriter 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 req...
27.988764
116
0.674428
feliwir
269ec50b603ce86bd3a199865737aeb708178b24
1,222
cpp
C++
plugins/hifiKinect/src/KinectProvider.cpp
Darlingnotin/Antisocial_VR
f1debafb784ed5a63a40fe9b80790fbaccfedfce
[ "Apache-2.0" ]
272
2021-01-07T03:06:08.000Z
2022-03-25T03:54:07.000Z
plugins/hifiKinect/src/KinectProvider.cpp
Darlingnotin/Antisocial_VR
f1debafb784ed5a63a40fe9b80790fbaccfedfce
[ "Apache-2.0" ]
1,021
2020-12-12T02:33:32.000Z
2022-03-31T23:36:37.000Z
plugins/hifiKinect/src/KinectProvider.cpp
Darlingnotin/Antisocial_VR
f1debafb784ed5a63a40fe9b80790fbaccfedfce
[ "Apache-2.0" ]
77
2020-12-15T06:59:34.000Z
2022-03-23T22:18:04.000Z
// // Created by Brad Hefta-Gaub on 2016/12/7 // Copyright 2016 High Fidelity, Inc. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // #include <mutex> #include <QtCore/QObject> #include <QtCore/QtPlugin> #include <Qt...
24.44
88
0.680033
Darlingnotin
26a0be9f2af8de90d7f9795281eff836adf25290
7,004
hh
C++
src/memo/cli/KeyValueStore.hh
infinit/memo
3a8394d0f647efe03ccb8bfe885a7279cb8be8a6
[ "Apache-2.0" ]
124
2017-06-22T19:20:54.000Z
2021-12-23T21:36:37.000Z
src/memo/cli/KeyValueStore.hh
infinit/memo
3a8394d0f647efe03ccb8bfe885a7279cb8be8a6
[ "Apache-2.0" ]
4
2017-08-21T15:57:29.000Z
2019-01-10T02:52:35.000Z
src/memo/cli/KeyValueStore.hh
infinit/memo
3a8394d0f647efe03ccb8bfe885a7279cb8be8a6
[ "Apache-2.0" ]
12
2017-06-29T09:15:35.000Z
2020-12-31T12:39:52.000Z
#pragma once #include <elle/das/cli.hh> #include <memo/cli/Object.hh> #include <memo/cli/Mode.hh> #include <memo/cli/fwd.hh> #include <memo/cli/symbols.hh> #include <memo/symbols.hh> namespace memo { namespace cli { class KeyValueStore : public Object<KeyValueStore> { public: using Self =...
34.673267
81
0.476442
infinit
26a2512667b7fa764d14d10841ddb0f642869fb1
1,205
cpp
C++
src/gfa/types.cpp
ggonnella/gfaviz
9cb990948eaf66e6f501e70908fe1d8c0ff0242d
[ "ISC" ]
41
2018-12-19T17:32:44.000Z
2021-11-27T03:44:53.000Z
src/gfa/types.cpp
ggonnella/gfaviz
9cb990948eaf66e6f501e70908fe1d8c0ff0242d
[ "ISC" ]
16
2019-01-17T13:36:02.000Z
2021-12-13T21:18:45.000Z
src/gfa/types.cpp
niehus/gfaviz
9cb990948eaf66e6f501e70908fe1d8c0ff0242d
[ "ISC" ]
2
2018-11-01T12:53:26.000Z
2018-11-07T06:31:03.000Z
#include "gfa/types.h" #include "gfa/line.h" GfaVariance::GfaVariance() { is_set = false; } void GfaVariance::set(unsigned long _val) { is_set = true; val=_val; } ostream& operator<< (ostream &out, const GfaVariance &v) { v.print(out); return out; } void GfaVariance::print(ostream &out) const { if (!is_set...
18.538462
79
0.628216
ggonnella
26a5fa3870e7d9939e9a10f6124b408b1d15a119
583
cc
C++
src/figureknight.cc
zerozez/qt-chess
4a066195f656cb57e83f49beeaa9e244796b18d3
[ "Apache-2.0" ]
5
2018-05-09T05:09:50.000Z
2021-07-30T06:48:21.000Z
src/figureknight.cc
zerozez/qt-chess
4a066195f656cb57e83f49beeaa9e244796b18d3
[ "Apache-2.0" ]
null
null
null
src/figureknight.cc
zerozez/qt-chess
4a066195f656cb57e83f49beeaa9e244796b18d3
[ "Apache-2.0" ]
5
2017-11-29T23:49:25.000Z
2021-06-10T15:13:07.000Z
#include <movepoints.hpp> #include "figureknight.hpp" FigureKnight::FigureKnight(const uint x, const uint y, FigureIntf::Color side, QObject *parent) : FigureIntf(x, y, side, new MovePoints(), parent) { MovePoints *points = defMoveList(); points->addPoint(2, 1); points->addPoint(...
24.291667
78
0.636364
zerozez
26a889910b55f98ee3c9093b47d7d9cc2bf7dd96
1,251
cpp
C++
src/Engine/Material/BSDF_CookTorrance.cpp
trygas/CGHomework
2dfff76f407b8a7ba87c5ba9d12a4428708ffbbe
[ "MIT" ]
289
2020-01-28T09:07:10.000Z
2022-03-25T09:00:25.000Z
src/Engine/Material/BSDF_CookTorrance.cpp
Ricahrd-Li/ASAP_ARAP_Parameterization
c12d83605ce9ea9cac29efbd991d21e2b363e375
[ "MIT" ]
12
2020-02-19T07:11:14.000Z
2021-08-07T06:41:27.000Z
src/Engine/Material/BSDF_CookTorrance.cpp
Ricahrd-Li/ASAP_ARAP_Parameterization
c12d83605ce9ea9cac29efbd991d21e2b363e375
[ "MIT" ]
249
2020-02-01T08:14:36.000Z
2022-03-30T14:52:58.000Z
#include <Engine/Material/BSDF_CookTorrance.h> #include <Basic/Math.h> using namespace Ubpa; using namespace std; float BSDF_CookTorrance::NDF(const normalf & h) { cout << "WARNING::BSDF_CookTorrance:" << endl << "\t" << "not implemented" << endl; return 0.f; } float BSDF_CookTorrance::Fr(const normalf & wi, c...
28.431818
112
0.663469
trygas
26a95ca0515650cbcad75558cecc3efda0da5953
1,652
cpp
C++
src/main.cpp
amitsingh19975/ML
fbd79128f86cfbd8f09e16b0ca1ab5ab2deaa11b
[ "MIT" ]
null
null
null
src/main.cpp
amitsingh19975/ML
fbd79128f86cfbd8f09e16b0ca1ab5ab2deaa11b
[ "MIT" ]
null
null
null
src/main.cpp
amitsingh19975/ML
fbd79128f86cfbd8f09e16b0ca1ab5ab2deaa11b
[ "MIT" ]
null
null
null
#include "inculde/headers.h" #include <iostream> #include <iomanip> using namespace ML; using namespace std; int main(){ // // cout<<setprecision(numeric_limits<double>::max_digits10); string trainF = "/Users/Amit/Desktop/Python/ML/test/cars"; // string testF = "/Users/Amit/Desktop/Python/ML/test/data"; ...
31.769231
77
0.577482
amitsingh19975
26aaca0b24611b659b37f098826c03e808543bb7
1,148
cpp
C++
libs/liblynel/test/src/lynel/matrix.cpp
tybl/tybl
cc74416d3d982177d46b89c0ca44f3a8e1cf00d6
[ "Unlicense" ]
1
2022-02-11T21:25:53.000Z
2022-02-11T21:25:53.000Z
libs/liblynel/test/src/lynel/matrix.cpp
tybl/tybl
cc74416d3d982177d46b89c0ca44f3a8e1cf00d6
[ "Unlicense" ]
15
2021-08-21T13:41:29.000Z
2022-03-08T14:13:43.000Z
libs/liblynel/test/src/lynel/matrix.cpp
tybl/tybl
cc74416d3d982177d46b89c0ca44f3a8e1cf00d6
[ "Unlicense" ]
null
null
null
// License: The Unlicense (https://unlicense.org) #include "lynel/matrix.hpp" #include <doctest/doctest.h> using namespace tybl::lynel; TEST_CASE("matrix::operator==()") { matrix<double,3,3> a = { 0,1,2,3,4,5,6,7,8 }; matrix<double,3,3> b = { 0,1,2,3,4,5,6,7,8 }; matrix<double,3,3> c = { 1,1,2,3,4,5,6,7,8 }; ...
24.956522
93
0.542683
tybl
26ab2352cf40ab3491f62cdd3d63bba3bc279c60
1,598
cpp
C++
src/gps/tk/ProjectionEckert4.cpp
KIT-IAI/GMLToolbox-gps
c8953e08431a2a945f7fc03f3cff114222826ece
[ "Apache-2.0" ]
1
2021-05-04T06:22:54.000Z
2021-05-04T06:22:54.000Z
src/gps/tk/ProjectionEckert4.cpp
KIT-IAI/GMLToolbox-gps
c8953e08431a2a945f7fc03f3cff114222826ece
[ "Apache-2.0" ]
null
null
null
src/gps/tk/ProjectionEckert4.cpp
KIT-IAI/GMLToolbox-gps
c8953e08431a2a945f7fc03f3cff114222826ece
[ "Apache-2.0" ]
1
2020-07-13T12:14:58.000Z
2020-07-13T12:14:58.000Z
#include "StdAfx.h" #include "Projection.h" #include "ProjectionUtils.h" #include "ProjectionEckert4.h" #define _USE_MATH_DEFINES #include <math.h> CProjectionEckert4::CProjectionEckert4 () { } CProjectionEckert4::~CProjectionEckert4 () { } void CProjectionEckert4::Initialize (CCfgMapProjection & proj) { a =...
18.581395
66
0.576971
KIT-IAI
26ac579234928e9635367395573f4d42e9a065c9
805
cpp
C++
problems/1189-maximum-number-of-balloons.cpp
ZhongRuoyu/leetcode
a905ec08e9b8ad8931d09e03efb154a648790c78
[ "MIT" ]
1
2022-01-11T06:32:41.000Z
2022-01-11T06:32:41.000Z
problems/1189-maximum-number-of-balloons.cpp
ZhongRuoyu/LeetCode
7472ef8b868165b485e5ce0676226bbe95561b73
[ "MIT" ]
null
null
null
problems/1189-maximum-number-of-balloons.cpp
ZhongRuoyu/LeetCode
7472ef8b868165b485e5ce0676226bbe95561b73
[ "MIT" ]
null
null
null
// Solved 2021-04-09 11:34 // Runtime: 4 ms (80.85%) // Memory Usage: 6.5 MB (67.36%) class Solution { public: int maxNumberOfBalloons(string text) { unordered_map<char, int> lookup[2]{ {{'a', 0}, {'b', 0}, {'n', 0}}, {{'l', 0}, {'o', 0}}}; for (auto &ch : text) { ...
26.833333
54
0.33913
ZhongRuoyu
26ac80c078b14510e88e45ebc37e3e0029bcbe72
213
cpp
C++
leetcode.com/0912 Sort an Array/main.cpp
sky-bro/AC
29bfa3f13994612887e18065fa6e854b9a29633d
[ "MIT" ]
1
2020-08-20T11:02:49.000Z
2020-08-20T11:02:49.000Z
leetcode.com/0912 Sort an Array/main.cpp
sky-bro/AC
29bfa3f13994612887e18065fa6e854b9a29633d
[ "MIT" ]
null
null
null
leetcode.com/0912 Sort an Array/main.cpp
sky-bro/AC
29bfa3f13994612887e18065fa6e854b9a29633d
[ "MIT" ]
1
2022-01-01T23:23:13.000Z
2022-01-01T23:23:13.000Z
#include <algorithm> #include <iostream> #include <vector> using namespace std; class Solution { public: vector<int> sortArray(vector<int>& nums) { sort(nums.begin(), nums.end()); return nums; } };
15.214286
44
0.661972
sky-bro
26adb3d9943b8ee8a33b935fe87e6ad5d0233046
4,140
hpp
C++
image/globals.hpp
mywoodstock/woo
7a6e39b2914ec8ff5bf52c3aa5217214532390e4
[ "BSL-1.0" ]
1
2017-05-09T14:25:18.000Z
2017-05-09T14:25:18.000Z
image/globals.hpp
mywoodstock/woo
7a6e39b2914ec8ff5bf52c3aa5217214532390e4
[ "BSL-1.0" ]
null
null
null
image/globals.hpp
mywoodstock/woo
7a6e39b2914ec8ff5bf52c3aa5217214532390e4
[ "BSL-1.0" ]
null
null
null
/** * Project: The Stock Libraries * * File: globals.hpp * Created: Jun 05, 2012 * * Author: Abhinav Sarje <abhinav.sarje@gmail.com> * * Copyright (c) 2012-2017 Abhinav Sarje * Distributed under the Boost Software License. * See accompanying LICENSE file. */ #ifndef __GLOBALS_HPP__ #define __GLOBALS_...
21.122449
80
0.572464
mywoodstock
26aed0a38df84b58cd7c72fdc67a16f3eda0840d
1,424
cpp
C++
aws-cpp-sdk-proton/source/model/ListRepositorySyncDefinitionsResult.cpp
perfectrecall/aws-sdk-cpp
fb8cbebf2fd62720b65aeff841ad2950e73d8ebd
[ "Apache-2.0" ]
1
2022-02-12T08:09:30.000Z
2022-02-12T08:09:30.000Z
aws-cpp-sdk-proton/source/model/ListRepositorySyncDefinitionsResult.cpp
perfectrecall/aws-sdk-cpp
fb8cbebf2fd62720b65aeff841ad2950e73d8ebd
[ "Apache-2.0" ]
1
2022-01-03T23:59:37.000Z
2022-01-03T23:59:37.000Z
aws-cpp-sdk-proton/source/model/ListRepositorySyncDefinitionsResult.cpp
ravindra-wagh/aws-sdk-cpp
7d5ff01b3c3b872f31ca98fb4ce868cd01e97696
[ "Apache-2.0" ]
1
2021-12-30T04:25:33.000Z
2021-12-30T04:25:33.000Z
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/proton/model/ListRepositorySyncDefinitionsResult.h> #include <aws/core/utils/json/JsonSerializer.h> #include <aws/core/AmazonWebServiceResult.h> #include <aws/core/utils/StringUtils.h> #...
28.48
138
0.778792
perfectrecall
26b30d30371c8e92875b23274f95d280f413303d
53
cc
C++
tests/CompileTests/ElsaTestCases/t0100.cc
maurizioabba/rose
7597292cf14da292bdb9a4ef573001b6c5b9b6c0
[ "BSD-3-Clause" ]
488
2015-01-09T08:54:48.000Z
2022-03-30T07:15:46.000Z
tests/CompileTests/ElsaTestCases/t0100.cc
sujankh/rose-matlab
7435d4fa1941826c784ba97296c0ec55fa7d7c7e
[ "BSD-3-Clause" ]
174
2015-01-28T18:41:32.000Z
2022-03-31T16:51:05.000Z
tests/CompileTests/ElsaTestCases/t0100.cc
sujankh/rose-matlab
7435d4fa1941826c784ba97296c0ec55fa7d7c7e
[ "BSD-3-Clause" ]
146
2015-04-27T02:48:34.000Z
2022-03-04T07:32:53.000Z
class X { int y; void foo() { X::y++; } };
7.571429
14
0.358491
maurizioabba
564be89ba37b356a87ced8fd135c687a0a5395e7
1,663
hpp
C++
ToolsDialog.hpp
chrisoldwood/FarmMonitor
5b9802ff2b9a3a64d74f8705769212822563c4cd
[ "MIT" ]
4
2018-01-31T13:12:02.000Z
2020-09-11T13:13:58.000Z
ToolsDialog.hpp
chrisoldwood/FarmMonitor
5b9802ff2b9a3a64d74f8705769212822563c4cd
[ "MIT" ]
null
null
null
ToolsDialog.hpp
chrisoldwood/FarmMonitor
5b9802ff2b9a3a64d74f8705769212822563c4cd
[ "MIT" ]
null
null
null
//////////////////////////////////////////////////////////////////////////////// //! \file ToolsDialog.hpp //! \brief The ToolsDialog class declaration. //! \author Chris Oldwood // Check for previous inclusion #ifndef TOOLSDIALOG_HPP #define TOOLSDIALOG_HPP #if _MSC_VER > 1000 #pragma once #endif #include <WCL/C...
17.88172
80
0.616957
chrisoldwood
565341ee5667668b6426c1dcb40bdf30c5d59d8e
11,305
cpp
C++
app.cpp
alxga/utils
01ca9fb2084ba5e7bead20b45f52b3557ce8c337
[ "MIT" ]
null
null
null
app.cpp
alxga/utils
01ca9fb2084ba5e7bead20b45f52b3557ce8c337
[ "MIT" ]
null
null
null
app.cpp
alxga/utils
01ca9fb2084ba5e7bead20b45f52b3557ce8c337
[ "MIT" ]
null
null
null
/* Copyright (c) 2018-2019 Alexander A. Ganin. All rights reserved. Twitter: @alxga. Website: alexganin.com. Licensed under the MIT License. See LICENSE file in the project root for full license information. */ #include "stdafx.h" #ifdef HAVE_MPI # include <mpi.h> #endif #include "Utils/utils.h" using namesp...
21.533333
94
0.603096
alxga
565489757ce1fd9e8bd5ab39a63f70b20df0e50f
4,838
cc
C++
xapian/xapian-core-1.2.13/backends/flint/flint_termlisttable.cc
pgs7179/xapian_modified
0229c9efb9eca19be4c9f463cd4b793672f24198
[ "MIT" ]
2
2021-01-13T21:17:42.000Z
2021-01-13T21:17:42.000Z
xapian/xapian-core-1.2.13/backends/flint/flint_termlisttable.cc
Loslove55/tailbench
fbbf3f31e3f0af1bb7db7f07c2e7193b84abb1eb
[ "MIT" ]
null
null
null
xapian/xapian-core-1.2.13/backends/flint/flint_termlisttable.cc
Loslove55/tailbench
fbbf3f31e3f0af1bb7db7f07c2e7193b84abb1eb
[ "MIT" ]
null
null
null
/** @file flint_termlisttable.cc * @brief Subclass of FlintTable which holds termlists. */ /* Copyright (C) 2007,2008 Olly Betts * * 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 ve...
32.689189
77
0.673419
pgs7179
56552f854b8b9d39c69acb10804e90e7397e6248
3,101
cpp
C++
CODEJAM/2014/ROUND1C/b.cpp
henviso/contests
aa8a5ce9ed4524e6c3130ee73af7640e5a86954c
[ "Apache-2.0" ]
null
null
null
CODEJAM/2014/ROUND1C/b.cpp
henviso/contests
aa8a5ce9ed4524e6c3130ee73af7640e5a86954c
[ "Apache-2.0" ]
null
null
null
CODEJAM/2014/ROUND1C/b.cpp
henviso/contests
aa8a5ce9ed4524e6c3130ee73af7640e5a86954c
[ "Apache-2.0" ]
null
null
null
#include <iostream> #include <cstdio> #include <string> #include <cstring> #include <cstdlib> #include <stack> #include <algorithm> #include <cctype> #include <vector> #include <queue> #include <tr1/unordered_map> #include <cmath> #include <map> #include <bitset> #include <set> using namespace std; typedef long long ll...
25.841667
84
0.529507
henviso
5656eb3c3c81ecbc3e43d10f40a9d44a605d675a
2,177
cpp
C++
src/catalog/catalog_entry/sequence_catalog_entry.cpp
AldoMyrtaj/duckdb
3aa4978a2ceab8df25e4b20c388bcd7629de73ed
[ "MIT" ]
1
2022-02-07T14:37:01.000Z
2022-02-07T14:37:01.000Z
src/catalog/catalog_entry/sequence_catalog_entry.cpp
AldoMyrtaj/duckdb
3aa4978a2ceab8df25e4b20c388bcd7629de73ed
[ "MIT" ]
32
2021-09-24T23:50:09.000Z
2022-03-29T09:37:26.000Z
src/catalog/catalog_entry/sequence_catalog_entry.cpp
AldoMyrtaj/duckdb
3aa4978a2ceab8df25e4b20c388bcd7629de73ed
[ "MIT" ]
null
null
null
#include "duckdb/catalog/catalog_entry/sequence_catalog_entry.hpp" #include "duckdb/catalog/catalog_entry/schema_catalog_entry.hpp" #include "duckdb/common/exception.hpp" #include "duckdb/common/field_writer.hpp" #include "duckdb/parser/parsed_data/create_sequence_info.hpp" #include "duckdb/catalog/dependency_manager....
34.555556
114
0.747359
AldoMyrtaj
56579e54ba5cf939dd05730da3ab5320b8cfbc5b
1,077
cpp
C++
proj-e/tests/internal_test.cpp
romz-pl/b-plus-tree
5af2db1c4188d507d0ff28eac91dc255d4e49a35
[ "Apache-2.0" ]
1
2019-02-01T09:10:11.000Z
2019-02-01T09:10:11.000Z
proj-e/tests/internal_test.cpp
romz-pl/b-plus-tree
5af2db1c4188d507d0ff28eac91dc255d4e49a35
[ "Apache-2.0" ]
3
2017-10-30T07:38:49.000Z
2017-10-30T08:55:50.000Z
proj-e/tests/internal_test.cpp
romz-pl/b-plus-tree
5af2db1c4188d507d0ff28eac91dc255d4e49a35
[ "Apache-2.0" ]
null
null
null
#include <gtest/gtest.h> #include <internal.h> // // // TEST(Internal, init) { using Key = int; using Data = int; btree::Internal< Key, Data > internal( nullptr ); const Key key = 2; const Data data = 3; const btree::Leaf< Key, Data >::value_type x( key, data ); internal.insert_value( 0...
22.914894
70
0.593315
romz-pl
5659f243a4ca9717204ad2bbb3d2d565772ee6ff
1,246
cpp
C++
GameGuy/src/Panels/AudioPanel.cpp
salvorizza/GameGuy
b539d5be002387907fe5d6e6e9da5deae234c182
[ "MIT" ]
null
null
null
GameGuy/src/Panels/AudioPanel.cpp
salvorizza/GameGuy
b539d5be002387907fe5d6e6e9da5deae234c182
[ "MIT" ]
null
null
null
GameGuy/src/Panels/AudioPanel.cpp
salvorizza/GameGuy
b539d5be002387907fe5d6e6e9da5deae234c182
[ "MIT" ]
null
null
null
#include "Panels/AudioPanel.h" #include <imgui.h> namespace GameGuy { AudioPanel::AudioPanel() : Panel("Audio Panel ", false, true) { } AudioPanel::~AudioPanel() { } void AudioPanel::addSample(size_t time, double left, double right) { std::lock_guard<std::mutex> lc(mMutex); if (mSamples.size() > MAX...
22.654545
127
0.654896
salvorizza
565bd4355598dc7147bc724f18a0ae8d4768cb67
5,842
cpp
C++
client/Client.cpp
MohamedAshrafTolba/http-client-server
3776f1a5ff1921564d6c288be0ba870dbdacce22
[ "MIT" ]
null
null
null
client/Client.cpp
MohamedAshrafTolba/http-client-server
3776f1a5ff1921564d6c288be0ba870dbdacce22
[ "MIT" ]
null
null
null
client/Client.cpp
MohamedAshrafTolba/http-client-server
3776f1a5ff1921564d6c288be0ba870dbdacce22
[ "MIT" ]
null
null
null
#include "Client.h" #include <sstream> #include <fstream> #include <iostream> #include <thread> #include <mutex> #include <sys/stat.h> #include <condition_variable> #include "../strutil.h" Client::Client(std::string &host_name, std::string &port_number, std::string &requests_file, bool dry_run) { socket = ...
32.455556
108
0.590894
MohamedAshrafTolba
565bd74681a343d68e75972f65068e4e72a62bf1
1,324
hpp
C++
dev/Basic/long/database/entity/TenureTransitionRate.hpp
gusugusu1018/simmobility-prod
d30a5ba353673f8fd35f4868c26994a0206a40b6
[ "MIT" ]
50
2018-12-21T08:21:38.000Z
2022-01-24T09:47:59.000Z
dev/Basic/long/database/entity/TenureTransitionRate.hpp
gusugusu1018/simmobility-prod
d30a5ba353673f8fd35f4868c26994a0206a40b6
[ "MIT" ]
2
2018-12-19T13:42:47.000Z
2019-05-13T04:11:45.000Z
dev/Basic/long/database/entity/TenureTransitionRate.hpp
gusugusu1018/simmobility-prod
d30a5ba353673f8fd35f4868c26994a0206a40b6
[ "MIT" ]
27
2018-11-28T07:30:34.000Z
2022-02-05T02:22:26.000Z
//Copyright (c) 2016 Singapore-MIT Alliance for Research and Technology //Licensed under the terms of the MIT License, as described in the file: //license.txt (http://opensource.org/licenses/MIT) /* * TenureTransitionRate.hpp * * Created on: 5 Feb 2016 * Author: Chetan Rogbeer <chetan.rogbeer@smart.mit.edu> *...
24.981132
147
0.599698
gusugusu1018
565e30463b4f98a0b1e179f888c0f6748885652a
1,029
cpp
C++
app/src/main/cpp/IPlayBuilder.cpp
yishuinanfeng/UnitedPlayer
3e3e43ac7ecaa6636965870420eda600205be34d
[ "Apache-2.0" ]
100
2020-02-01T05:39:16.000Z
2022-03-15T06:54:27.000Z
app/src/main/cpp/IPlayBuilder.cpp
yishuinanfeng/UnitedPlayer
3e3e43ac7ecaa6636965870420eda600205be34d
[ "Apache-2.0" ]
null
null
null
app/src/main/cpp/IPlayBuilder.cpp
yishuinanfeng/UnitedPlayer
3e3e43ac7ecaa6636965870420eda600205be34d
[ "Apache-2.0" ]
16
2020-02-04T05:52:42.000Z
2021-08-09T07:15:27.000Z
// // Created by yanxi on 2019/10/28. // #include "IPlayBuilder.h" #include "IPlayer.h" #include "IDemux.h" #include "XLog.h" #include "IDecode.h" #include "IResample.h" #include "IAudioPlay.h" #include "IVideoView.h" IPlayer *IPlayBuilder::BuildPlayer(unsigned int index) { IPlayer *play = CreatePalyer(index); ...
27.078947
56
0.697765
yishuinanfeng
565ea2dbe5b5bc0ade95a826f48e162f5851317d
133,992
cpp
C++
module/mpc-be/SRC/src/filters/transform/MPCVideoDec/MPCVideoDec.cpp
1aq/PBox
67ced599ee36ceaff097c6584f8100cf96006dfe
[ "MIT" ]
null
null
null
module/mpc-be/SRC/src/filters/transform/MPCVideoDec/MPCVideoDec.cpp
1aq/PBox
67ced599ee36ceaff097c6584f8100cf96006dfe
[ "MIT" ]
null
null
null
module/mpc-be/SRC/src/filters/transform/MPCVideoDec/MPCVideoDec.cpp
1aq/PBox
67ced599ee36ceaff097c6584f8100cf96006dfe
[ "MIT" ]
null
null
null
/* * (C) 2006-2020 see Authors.txt * * This file is part of MPC-BE. * * MPC-BE 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. ...
31.857347
250
0.707311
1aq
565fc0923bd94d8fe5517012355b458a73609f61
839
hpp
C++
user.hpp
chenillax/E4C_Challenge_Carbozer
3c23b9f106d6b148b84ff2af7e87f8a4ece8b771
[ "Apache-2.0" ]
null
null
null
user.hpp
chenillax/E4C_Challenge_Carbozer
3c23b9f106d6b148b84ff2af7e87f8a4ece8b771
[ "Apache-2.0" ]
null
null
null
user.hpp
chenillax/E4C_Challenge_Carbozer
3c23b9f106d6b148b84ff2af7e87f8a4ece8b771
[ "Apache-2.0" ]
null
null
null
#ifndef __USER__ #define __USER__ #include <cstdio> #include <cstdlib> #include <iostream> #include <vector> #include <string> /* The differents enumerations we need to our algortithm */ enum class Terminal_device { Phone, Pc, ChromeCast, Tablet}; enum class Quality { Auto, p144, p240, p360,p480,p720,p1080}; enum clas...
24.676471
123
0.724672
chenillax
56630015bb06d9de967c4e747d9407f2d116dd69
1,086
cpp
C++
cpp/src/main.cpp
cnloni/othello
f80f190e505b6a4dd2b2bd49054651dbea4f00fa
[ "Apache-2.0" ]
1
2021-01-16T03:34:06.000Z
2021-01-16T03:34:06.000Z
cpp/src/main.cpp
cnloni/othello
f80f190e505b6a4dd2b2bd49054651dbea4f00fa
[ "Apache-2.0" ]
null
null
null
cpp/src/main.cpp
cnloni/othello
f80f190e505b6a4dd2b2bd49054651dbea4f00fa
[ "Apache-2.0" ]
null
null
null
#include <iostream> #include "b36.hpp" #include "board.hpp" using namespace std; void execute(uint64_t bp, uint64_t wp, int turn, int alpha, int beta) { Board<B36> board; int result = board.getBestResult(bp, wp, turn, alpha, beta); cout << board.getFinalBoardString() << endl; cout << "Initial = " << board.getIni...
21.72
71
0.617864
cnloni
5664c4ef1c5b2b7b8b5d2ca9902fd2afaa132a88
23,964
cpp
C++
basecode/debugger/environment.cpp
Alaboudi1/bootstrap
4ec4629424ad6fe70c84d95d79b2132f24832379
[ "MIT" ]
32
2018-05-14T23:26:54.000Z
2020-06-14T10:13:20.000Z
basecode/debugger/environment.cpp
Alaboudi1/bootstrap
4ec4629424ad6fe70c84d95d79b2132f24832379
[ "MIT" ]
79
2018-08-01T11:50:45.000Z
2020-11-17T13:40:06.000Z
basecode/debugger/environment.cpp
Alaboudi1/bootstrap
4ec4629424ad6fe70c84d95d79b2132f24832379
[ "MIT" ]
14
2021-01-08T05:05:19.000Z
2022-03-27T14:56:56.000Z
// ---------------------------------------------------------------------------- // // Basecode Bootstrap Compiler // Copyright (C) 2018 Jeff Panici // All rights reserved. // // This software source file is licensed under the terms of MIT license. // For details, please read the LICENSE file. // // --------------------...
34.780842
151
0.473919
Alaboudi1
56659cb88b0cfa964ba4b8fa8851357d424c3a07
4,689
cpp
C++
src/library/BlackBox_Ring.cpp
RoboticsBrno/BlackBox_library
2047f0102f1aacc780b8a7ba1d20da9dba3f63b4
[ "MIT" ]
1
2021-06-23T15:34:46.000Z
2021-06-23T15:34:46.000Z
src/library/BlackBox_Ring.cpp
RoboticsBrno/BlackBox_library
2047f0102f1aacc780b8a7ba1d20da9dba3f63b4
[ "MIT" ]
9
2020-03-09T19:50:34.000Z
2021-07-18T12:06:11.000Z
src/library/BlackBox_Ring.cpp
RoboticsBrno/BlackBox_library
2047f0102f1aacc780b8a7ba1d20da9dba3f63b4
[ "MIT" ]
1
2020-03-09T16:10:25.000Z
2020-03-09T16:10:25.000Z
#include "library/BlackBox_Ring.hpp" #include "library/BlackBox_pinout.hpp" #include <SmartLeds.h> #include <cmath> #include <cstdio> #include <cstdlib> #include <mutex> namespace BlackBox { int Index::trim(int index) { return (60 + (index % ledCount)) % ledCount; } Index& Index::trimThis() { m_value = trim(...
23.923469
129
0.605246
RoboticsBrno
5667f34649cc5613d2e1363d1942879c29e8cc79
1,718
cc
C++
lib/utils.cc
pauldevine/fluxengine
a107d4f17f3ecf69cfcde916f4468b44712b1253
[ "MIT" ]
null
null
null
lib/utils.cc
pauldevine/fluxengine
a107d4f17f3ecf69cfcde916f4468b44712b1253
[ "MIT" ]
null
null
null
lib/utils.cc
pauldevine/fluxengine
a107d4f17f3ecf69cfcde916f4468b44712b1253
[ "MIT" ]
null
null
null
#include "globals.h" #include "utils.h" bool emergencyStop = false; static const char* WHITESPACE = " \t\n\r\f\v"; static const char* SEPARATORS = "/\\"; void ErrorException::print() const { std::cerr << message << '\n'; } bool beginsWith(const std::string& value, const std::string& ending) { if (ending.siz...
22.906667
73
0.638533
pauldevine
566d612e789c06c43ad236e9688c509257bc4523
7,764
hpp
C++
libraries/belle/Source/Core/Prim/Complex.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/Core/Prim/Complex.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/Core/Prim/Complex.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 > */ // ----------------------------------------------------------------------------------------------------------- // ------------------------------------------...
30.687747
110
0.238408
jogawebb
566f3a6aa4a7d3ed0971e84c8c6282ffa26cafea
1,910
hpp
C++
framework/graphics/graphics/render_target/render_target.hpp
YiJiangFengYun/vulkan-graphics-examples
e7b788b8f47dd238b08840c019940c7c52335a54
[ "MIT" ]
1
2018-03-01T01:05:25.000Z
2018-03-01T01:05:25.000Z
framework/graphics/graphics/render_target/render_target.hpp
YiJiangFengYun/vulkan-graphics-examples
e7b788b8f47dd238b08840c019940c7c52335a54
[ "MIT" ]
null
null
null
framework/graphics/graphics/render_target/render_target.hpp
YiJiangFengYun/vulkan-graphics-examples
e7b788b8f47dd238b08840c019940c7c52335a54
[ "MIT" ]
null
null
null
#ifndef VG_RENDER_TARGET_HPP #define VG_RENDER_TARGET_HPP #include "graphics/global.hpp" namespace vg { class BaseRenderTarget { public: BaseRenderTarget(uint32_t framebufferWidth = 0u , uint32_t framebufferHeight = 0u ); uint32_t getFramebufferWidth() const; ui...
32.372881
89
0.66178
YiJiangFengYun
56720c144b05a88018c932b433a8c585033f0131
2,041
cpp
C++
src/Settings.cpp
gottyduke/BunnyHopperOfSkyrim
0b7539298bd0899060cc926bf3fc2b5758835014
[ "MIT" ]
2
2021-03-24T20:39:02.000Z
2021-08-09T02:12:10.000Z
src/Settings.cpp
gottyduke/BunnyHopperOfSkyrim
0b7539298bd0899060cc926bf3fc2b5758835014
[ "MIT" ]
null
null
null
src/Settings.cpp
gottyduke/BunnyHopperOfSkyrim
0b7539298bd0899060cc926bf3fc2b5758835014
[ "MIT" ]
2
2021-03-24T20:39:04.000Z
2021-08-09T02:12:15.000Z
#include "Settings.h" bool Settings::LoadSettings(const bool a_dumpParse) { auto [log, success] = J2S::load_settings(FILE_NAME, a_dumpParse); if (!log.empty()) { _ERROR("%s", log.c_str()); } return success; } decltype(Settings::globalSpeedMult) Settings::globalSpeedMult("globalSpeedMult", 1.0f); decltype(Se...
47.465116
96
0.799118
gottyduke
5676f6326df5b8e56d60ed31f3ff4155d6890611
4,507
hpp
C++
searchlib/src/vespa/searchlib/util/posting_priority_queue_merger.hpp
alexeyche/vespa
7585981b32937d2b13da1a8f94b42c8a0833a4c2
[ "Apache-2.0" ]
null
null
null
searchlib/src/vespa/searchlib/util/posting_priority_queue_merger.hpp
alexeyche/vespa
7585981b32937d2b13da1a8f94b42c8a0833a4c2
[ "Apache-2.0" ]
null
null
null
searchlib/src/vespa/searchlib/util/posting_priority_queue_merger.hpp
alexeyche/vespa
7585981b32937d2b13da1a8f94b42c8a0833a4c2
[ "Apache-2.0" ]
null
null
null
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include "posting_priority_queue.hpp" #include "posting_priority_queue_merger.h" namespace search { template <class Reader, class Writer> void PostingPriorityQueueMerger<Reader, Writer>::mergeHeap(W...
37.247934
195
0.609274
alexeyche
56779e040eb36d545987180dc664df785d04e324
967
hpp
C++
rkt/src/MainScene.hpp
gbuzogany/dash
8667f19fdf288172dad6e28f59c55cd54b3ca8f7
[ "BSD-3-Clause" ]
null
null
null
rkt/src/MainScene.hpp
gbuzogany/dash
8667f19fdf288172dad6e28f59c55cd54b3ca8f7
[ "BSD-3-Clause" ]
null
null
null
rkt/src/MainScene.hpp
gbuzogany/dash
8667f19fdf288172dad6e28f59c55cd54b3ca8f7
[ "BSD-3-Clause" ]
null
null
null
#ifndef MainScene_hpp #define MainScene_hpp #include <stdio.h> #include <iostream> #include <ft2build.h> #include <map> #include <thread> #include <queue> #include FT_FREETYPE_H #include "Scene.hpp" #include "Definitions.h" #include "Animation.hpp" #include "Utils.hpp" #include "SpriteMap.hpp" #include "ShaderProgram....
19.34
57
0.692865
gbuzogany
56796e2def726508cf2edce78e7c18190d9ceeb1
1,905
inl
C++
dependencies/gl++/framebuffer/Framebuffer.inl
jaredhoberock/gotham
e3551cc355646530574d086d7cc2b82e41e8f798
[ "Apache-2.0" ]
6
2015-12-29T07:21:01.000Z
2020-05-29T10:47:38.000Z
dependencies/gl++/framebuffer/Framebuffer.inl
jaredhoberock/gotham
e3551cc355646530574d086d7cc2b82e41e8f798
[ "Apache-2.0" ]
null
null
null
dependencies/gl++/framebuffer/Framebuffer.inl
jaredhoberock/gotham
e3551cc355646530574d086d7cc2b82e41e8f798
[ "Apache-2.0" ]
null
null
null
/*! \file Framebuffer.inl * \author Jared Hoberock * \brief Inline file for Framebuffer.h. */ #include "Framebuffer.h" Framebuffer::Framebuffer(void):Parent() { setTarget(GL_FRAMEBUFFER_EXT); } // end Framebuffer::Framebuffer() void Framebuffer::attachTexture(const GLenum textureTarget, ...
34.636364
82
0.580577
jaredhoberock
567f9fdd36f0d77e4b5a192dc733ef3c87aa4dfd
5,320
cpp
C++
admin/wmi/wbem/providers/wdmprovider/classfac.cpp
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
admin/wmi/wbem/providers/wdmprovider/classfac.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
admin/wmi/wbem/providers/wdmprovider/classfac.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
//////////////////////////////////////////////////////////////////////////////////////// // // CLASSFAC.CPP // // Purpose: Contains the class factory. This creates objects when // connections are requested. // // Copyright (c) 1997-2002 Microsoft Corporation, All Rights Reserved // ///////////////...
25.825243
97
0.36485
npocmaka
568391550cc1ee675da1debff7b38b5cb9565139
12,373
cpp
C++
src/public/src/yssystemfont/src/windows/yswin32systemfont.cpp
rothberg-cmu/rothberg-run
a42df5ca9fae97de77753864f60d05295d77b59f
[ "MIT" ]
1
2019-08-10T00:24:09.000Z
2019-08-10T00:24:09.000Z
src/public/src/yssystemfont/src/windows/yswin32systemfont.cpp
rothberg-cmu/rothberg-run
a42df5ca9fae97de77753864f60d05295d77b59f
[ "MIT" ]
null
null
null
src/public/src/yssystemfont/src/windows/yswin32systemfont.cpp
rothberg-cmu/rothberg-run
a42df5ca9fae97de77753864f60d05295d77b59f
[ "MIT" ]
2
2019-05-01T03:11:10.000Z
2019-05-01T03:30:35.000Z
/* //////////////////////////////////////////////////////////// File Name: yswin32systemfont.cpp Copyright (c) 2017 Soji Yamakawa. All rights reserved. http://www.ysflight.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are me...
20.656093
171
0.693041
rothberg-cmu
5683b9d1393d2d9026b43d7ac0d9abaff4b5a99a
6,028
hpp
C++
source/sema/sema_node_visitor.hpp
stryku/cmakesl
e53bffed62ae9ca68c0c2de0de8e2a94bfe4d326
[ "BSD-3-Clause" ]
51
2019-05-06T01:33:34.000Z
2021-11-17T11:44:54.000Z
source/sema/sema_node_visitor.hpp
stryku/cmakesl
e53bffed62ae9ca68c0c2de0de8e2a94bfe4d326
[ "BSD-3-Clause" ]
191
2019-05-06T18:31:24.000Z
2020-06-19T06:48:06.000Z
source/sema/sema_node_visitor.hpp
stryku/cmakesl
e53bffed62ae9ca68c0c2de0de8e2a94bfe4d326
[ "BSD-3-Clause" ]
3
2019-10-12T21:03:29.000Z
2020-06-19T06:22:25.000Z
#pragma once namespace cmsl::sema { class add_declarative_file_node; class add_subdirectory_node; class add_subdirectory_with_declarative_script_node; class add_subdirectory_with_old_script_node; class binary_operator_node; class block_node; class bool_value_node; class break_node; class cast_to_reference_node; class ...
42.751773
78
0.7928
stryku
568979b22aa48321f52ee46162c98edbae691c38
41,473
cpp
C++
src/component_route.cpp
skfzyy/WEAVESS
dd529e37ebccaedebbd801a6ef9bf67373594369
[ "MIT" ]
21
2021-03-31T10:44:07.000Z
2022-03-21T03:46:43.000Z
src/component_route.cpp
skfzyy/WEAVESS
dd529e37ebccaedebbd801a6ef9bf67373594369
[ "MIT" ]
null
null
null
src/component_route.cpp
skfzyy/WEAVESS
dd529e37ebccaedebbd801a6ef9bf67373594369
[ "MIT" ]
17
2021-02-01T10:54:53.000Z
2022-03-15T02:49:18.000Z
// // Created by MurphySL on 2020/10/23. // #include "weavess/component.h" namespace weavess { void ComponentSearchRouteGreedy::RouteInner(unsigned int query, std::vector<Index::Neighbor> &pool, std::vector<unsigned int> &res) { const auto L = index->getPar...
44.787257
194
0.494732
skfzyy
568bd9ad3cb2f62679e434f75af209d2486a40cb
3,909
hpp
C++
openstudiocore/src/model/SolarCollectorFlatPlatePhotovoltaicThermal.hpp
jasondegraw/OpenStudio
2ab13f6e5e48940929041444e40ad9d36f80f552
[ "blessing" ]
1
2016-12-29T08:45:03.000Z
2016-12-29T08:45:03.000Z
openstudiocore/src/model/SolarCollectorFlatPlatePhotovoltaicThermal.hpp
jasondegraw/OpenStudio
2ab13f6e5e48940929041444e40ad9d36f80f552
[ "blessing" ]
null
null
null
openstudiocore/src/model/SolarCollectorFlatPlatePhotovoltaicThermal.hpp
jasondegraw/OpenStudio
2ab13f6e5e48940929041444e40ad9d36f80f552
[ "blessing" ]
null
null
null
/********************************************************************** * Copyright (c) 2008-2016, Alliance for Sustainable Energy. * All rights reserved. * * 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 t...
31.780488
160
0.764902
jasondegraw
568c41443b53d6196f5f1db2f8ce9c141cff4ddf
4,345
cpp
C++
third_party/WebKit/Source/platform/graphics/BitmapImageMetrics.cpp
google-ar/chromium
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
777
2017-08-29T15:15:32.000Z
2022-03-21T05:29:41.000Z
third_party/WebKit/Source/platform/graphics/BitmapImageMetrics.cpp
harrymarkovskiy/WebARonARCore
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
66
2017-08-30T18:31:18.000Z
2021-08-02T10:59:35.000Z
third_party/WebKit/Source/platform/graphics/BitmapImageMetrics.cpp
harrymarkovskiy/WebARonARCore
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
123
2017-08-30T01:19:34.000Z
2022-03-17T22:55:31.000Z
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "platform/graphics/BitmapImageMetrics.h" #include "platform/Histogram.h" #include "third_party/skia/include/core/SkColorSpaceXform.h" #include "...
33.167939
77
0.666974
google-ar
5693400ae915eb521f4cda991780ee13e607e42f
13,436
cc
C++
cpp/src/arrow/compute/exec/task_util.cc
karldw/arrow
0d995486e6eb4c94a64f03578731aad05c151596
[ "CC-BY-3.0", "Apache-2.0", "CC0-1.0", "MIT" ]
1
2020-09-30T02:48:39.000Z
2020-09-30T02:48:39.000Z
cpp/src/arrow/compute/exec/task_util.cc
karldw/arrow
0d995486e6eb4c94a64f03578731aad05c151596
[ "CC-BY-3.0", "Apache-2.0", "CC0-1.0", "MIT" ]
20
2021-05-09T06:53:01.000Z
2022-03-27T22:21:50.000Z
cpp/src/arrow/compute/exec/task_util.cc
karldw/arrow
0d995486e6eb4c94a64f03578731aad05c151596
[ "CC-BY-3.0", "Apache-2.0", "CC0-1.0", "MIT" ]
2
2021-08-05T14:58:01.000Z
2021-08-10T14:16:01.000Z
// 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 file // to you under the Apache License, Version 2.0 (the // "License"); you may...
33.012285
90
0.670735
karldw
56942edfb2262afe0789d1b4bb07fd1bee627502
17,728
cpp
C++
Development/Plugin/Warcraft3/yd_d3d8hook/Direct3DDevice8.cpp
alanoooaao/YDWE
fa9c6dc24d01f78919b5c8b2c69252291536424a
[ "Apache-2.0" ]
5
2019-01-22T02:35:35.000Z
2022-02-28T02:50:03.000Z
Development/Plugin/Warcraft3/yd_d3d8hook/Direct3DDevice8.cpp
alanoooaao/YDWE
fa9c6dc24d01f78919b5c8b2c69252291536424a
[ "Apache-2.0" ]
8
2016-10-19T00:04:05.000Z
2016-11-14T10:58:14.000Z
Development/Plugin/Warcraft3/yd_d3d8hook/Direct3DDevice8.cpp
alanoooaao/YDWE
fa9c6dc24d01f78919b5c8b2c69252291536424a
[ "Apache-2.0" ]
2
2018-01-24T04:34:16.000Z
2021-01-04T09:49:09.000Z
#include "Direct3DDevice8.h" bool gamerender = false; CDirect3DDevice8::CDirect3DDevice8(IDirect3D8* d3d, HWND hwnd, IDirect3DDevice8* device, D3DPRESENT_PARAMETERS* pPresentationParameters) : m_d3d(d3d) , m_device(device) { } CDirect3DDevice8::~CDirect3DDevice8() { } HRESULT WINAPI CDirect3DDevice8...
34.026871
274
0.79146
alanoooaao
5696b9aa3e2c61a83029c42663ffd8eb0d19ff5f
2,305
cpp
C++
Few Course Reader Exercises/Cap8-Exercises/Ex3/cap8_ex3.cpp
diogoamvasconcelos/CS106b-eroberts2015-solutions
8964130bb872990b809e74ed489237e0c1c96604
[ "MIT" ]
4
2017-06-26T09:44:28.000Z
2020-01-19T05:42:41.000Z
Few Course Reader Exercises/Cap8-Exercises/Ex3/cap8_ex3.cpp
diogoamvasconcelos/CS106b-eroberts2015-solutions
8964130bb872990b809e74ed489237e0c1c96604
[ "MIT" ]
null
null
null
Few Course Reader Exercises/Cap8-Exercises/Ex3/cap8_ex3.cpp
diogoamvasconcelos/CS106b-eroberts2015-solutions
8964130bb872990b809e74ed489237e0c1c96604
[ "MIT" ]
1
2020-10-08T08:26:07.000Z
2020-10-08T08:26:07.000Z
#include <iostream> #include "console.h" #include "simpio.h" #include "stack.h" using namespace std; struct HanoiTask { int num_disks; char start_pile; char finish_pile; char temp_pile; }; const char PILE_A = 'A'; const char PILE_B = 'B'; const char PILE_C = 'C'; void MoveHanoiTower(int n); void Move...
25.898876
78
0.660738
diogoamvasconcelos
5698e98f860d2e7e16e6b35725e4ad8d1ad5bc0e
2,682
cpp
C++
lib-src/vgui/ProgressBar.cpp
Velaron/vgui_dll
9ebb9ab4abf49ba3bd4aad8d102923a0d61d139b
[ "BSD-3-Clause" ]
22
2017-02-21T04:30:12.000Z
2022-02-13T22:40:39.000Z
lib-src/vgui/ProgressBar.cpp
FWGS/vgui_dll
4a677fc844f3d92c1b83c6a0f748242a2601286e
[ "BSD-3-Clause" ]
1
2017-05-08T18:31:26.000Z
2017-05-08T18:31:26.000Z
lib-src/vgui/ProgressBar.cpp
nagist/vgui_dll
acf73ec95a4499b229d68854819fb5e951de1759
[ "BSD-3-Clause" ]
12
2017-02-18T16:03:05.000Z
2021-12-30T16:34:27.000Z
/* * BSD 3-Clause License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disc...
29.472527
82
0.722222
Velaron
569aae33732ac9c6f639809ca8468c3ca1e3d69b
3,150
hh
C++
src/NodeList/FixedSmoothingScale.hh
jmikeowen/Spheral
3e1082a7aefd6b328bd3ae24ca1a477108cfc3c4
[ "BSD-Source-Code", "BSD-3-Clause-LBNL", "FSFAP" ]
22
2018-07-31T21:38:22.000Z
2020-06-29T08:58:33.000Z
src/NodeList/FixedSmoothingScale.hh
markguozhiming/spheral
bbb982102e61edb8a1d00cf780bfa571835e1b61
[ "BSD-Source-Code", "BSD-3-Clause-LBNL", "FSFAP" ]
41
2020-09-28T23:14:27.000Z
2022-03-28T17:01:33.000Z
src/NodeList/FixedSmoothingScale.hh
markguozhiming/spheral
bbb982102e61edb8a1d00cf780bfa571835e1b61
[ "BSD-Source-Code", "BSD-3-Clause-LBNL", "FSFAP" ]
7
2019-12-01T07:00:06.000Z
2020-09-15T21:12:39.000Z
//---------------------------------Spheral++----------------------------------// // FixedSmoothingScale // // Implements the static fixed smoothing scale option. // // Created by JMO, Wed Sep 14 13:50:49 PDT 2005 //----------------------------------------------------------------------------// #ifndef __Spheral_NodeSpac...
35.795455
80
0.546984
jmikeowen
569d1bc85900ccbadf1d6542ed46ef40ad524806
2,252
cpp
C++
Verkehrssituation/src/tests/Verkehrssituation.cpp
DavidHeiss/vs2
a00a58acab582e22e426a290eff9dd251edda992
[ "MIT" ]
null
null
null
Verkehrssituation/src/tests/Verkehrssituation.cpp
DavidHeiss/vs2
a00a58acab582e22e426a290eff9dd251edda992
[ "MIT" ]
null
null
null
Verkehrssituation/src/tests/Verkehrssituation.cpp
DavidHeiss/vs2
a00a58acab582e22e426a290eff9dd251edda992
[ "MIT" ]
null
null
null
#include "gtest/gtest.h" #include "../Verkehrssituation.h" class VerkehrssituationTest : public testing::Test { protected: void SetUp() override { verkehrssituation = Sensor::Verkehrssitation(); } Sensor::Verkehrssitation verkehrssituation; }; TEST_F(VerkehrssituationTest , has_data) { auto me...
21.245283
59
0.746892
DavidHeiss
569f52cb404ddae81549019ab9880be1adaffbaa
14,400
cc
C++
fawnds/bdb.cc
ByteHamster/silt
9970432b27db7b9ef3f23f56cdd0609183e9fd83
[ "Apache-2.0" ]
134
2015-02-02T21:32:16.000Z
2022-01-27T06:03:22.000Z
fawnds/bdb.cc
theopengroup/silt
9970432b27db7b9ef3f23f56cdd0609183e9fd83
[ "Apache-2.0" ]
null
null
null
fawnds/bdb.cc
theopengroup/silt
9970432b27db7b9ef3f23f56cdd0609183e9fd83
[ "Apache-2.0" ]
43
2015-01-02T03:12:34.000Z
2021-12-17T09:19:28.000Z
/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */ #include "bdb.h" #include "configuration.h" #include <cassert> #include <sstream> #ifdef HAVE_LIBDB namespace fawn { BDB::BDB() : dbp_(NULL) { } BDB::~BDB() { if (dbp_) Close(); } FawnDS_Return...
25.622776
120
0.497917
ByteHamster
56a06f3fe2fa251050dd996c7bc7fdc016d33694
4,924
cpp
C++
src/box2ddestructionlistener.cpp
bobweaver/qml-box2d
905841c01d6603678d34f0f8aaaf6843b70dc08a
[ "Zlib" ]
1
2022-02-09T19:14:01.000Z
2022-02-09T19:14:01.000Z
src/box2ddestructionlistener.cpp
bobweaver/qml-box2d
905841c01d6603678d34f0f8aaaf6843b70dc08a
[ "Zlib" ]
null
null
null
src/box2ddestructionlistener.cpp
bobweaver/qml-box2d
905841c01d6603678d34f0f8aaaf6843b70dc08a
[ "Zlib" ]
null
null
null
/* * box2ddestructionlistener.cpp * Copyright (c) 2011 Joonas Erkinheimo <joonas.erkinheimo@nokia.com> * Copyright (c) 2011 Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> * * This file is part of the Box2D QML plugin. * * This software is provided 'as-is', without any express or implied warranty. * In no event wi...
49.24
108
0.791024
bobweaver
56a1bd12b942ee6a6bcb244043c7eb2cad8cca1b
7,224
cc
C++
Library/Utilities/fftw++-2.05/mpi/cconv3.cc
stevend12/SolutioCpp
6fa8a12207cd1e7e806a8ef5de93dc137c33856e
[ "Apache-2.0" ]
9
2017-06-27T14:04:46.000Z
2022-02-17T17:38:03.000Z
Library/Utilities/fftw++-2.05/mpi/cconv3.cc
stevend12/SolutioCpp
6fa8a12207cd1e7e806a8ef5de93dc137c33856e
[ "Apache-2.0" ]
null
null
null
Library/Utilities/fftw++-2.05/mpi/cconv3.cc
stevend12/SolutioCpp
6fa8a12207cd1e7e806a8ef5de93dc137c33856e
[ "Apache-2.0" ]
3
2017-06-23T20:10:44.000Z
2021-01-13T10:09:46.000Z
#include "mpiconvolution.h" #include "utils.h" using namespace std; using namespace utils; using namespace fftwpp; void init(Complex **F, unsigned int X, unsigned int Y, unsigned int Z, unsigned int x0, unsigned int y0, unsigned int z0, unsigned int x, unsigned int y, unsigned int z, ...
23.006369
79
0.508029
stevend12
56a36fc4c7c1ccc621bcf16a5b0375220f0f8cd4
4,132
cc
C++
common/SettingService.cc
zhiqiang-hu/cell-phone-ux-demo
80df27f47bdf3318b60fe327890f868c3fe28969
[ "Apache-2.0" ]
13
2017-12-17T16:18:44.000Z
2022-01-07T15:40:36.000Z
common/SettingService.cc
zhiqiang-hu/cell-phone-ux-demo
80df27f47bdf3318b60fe327890f868c3fe28969
[ "Apache-2.0" ]
null
null
null
common/SettingService.cc
zhiqiang-hu/cell-phone-ux-demo
80df27f47bdf3318b60fe327890f868c3fe28969
[ "Apache-2.0" ]
8
2018-07-07T03:08:33.000Z
2022-01-27T09:25:08.000Z
/////////////////////////////////////////////////////////////////////////////// // // IMPORTANT NOTICE // // The following open source license statement does not apply to any // entity in the Exception List published by FMSoft. // // For more information, please visit: // // https://www.fmsoft....
27.006536
115
0.613262
zhiqiang-hu
56a37bab1a6013d24cb768f084cecc1faf7e8e02
1,044
cpp
C++
include/nac/ProcessLauncher.cpp
nacitar/old-projects
e5af376f868124b9828196df1f55adb682969f3d
[ "MIT" ]
1
2016-05-04T04:22:42.000Z
2016-05-04T04:22:42.000Z
include/nac/ProcessLauncher.cpp
nacitar/old-projects
e5af376f868124b9828196df1f55adb682969f3d
[ "MIT" ]
null
null
null
include/nac/ProcessLauncher.cpp
nacitar/old-projects
e5af376f868124b9828196df1f55adb682969f3d
[ "MIT" ]
6
2016-05-04T04:23:02.000Z
2020-11-30T22:32:43.000Z
#include "ProcessLauncher.h" namespace nac { ProcessLauncher::ProcessLauncher(std::string strFilePath_,std::string strDirectory_) : strFilePath(strFilePath_), strDirectory(strDirectory_) { if (strDirectory.empty()) { std::string strTemp; split_path(strFilePath,strDirectory,strTemp); } } ...
29
102
0.694444
nacitar
56a44ba46e683f431be3fabd9fd1acc81adb33ae
806
cpp
C++
calc/c_rgb_yuv.cpp
dlarue/donkey_racing
83d243b9379330ed2a4ad462106bc7c294baa92c
[ "MIT" ]
15
2017-08-18T12:26:15.000Z
2020-07-19T23:06:24.000Z
calc/c_rgb_yuv.cpp
dlarue/donkey_racing
83d243b9379330ed2a4ad462106bc7c294baa92c
[ "MIT" ]
2
2018-02-10T23:52:47.000Z
2020-06-09T00:28:47.000Z
calc/c_rgb_yuv.cpp
dlarue/donkey_racing
83d243b9379330ed2a4ad462106bc7c294baa92c
[ "MIT" ]
8
2017-08-30T04:02:47.000Z
2019-01-21T18:09:13.000Z
#include <stdio.h> #include <string.h> #include <stdlib.h> void print_rgb(int q) { float r = ((q >>16) & 0xff); float g = ((q >> 8) & 0xff); float b = (q & 0xff); float y = r * 0.299f + g * 0.587f + b * 0.114f; float u = 0.492f * (b - y); float v = 0.492f * (r - y); fprintf(stdout, "%.1f ...
22.388889
67
0.46402
dlarue
56a5da54a9181d31831549916dddaef3e59252fd
616
cpp
C++
factory.cpp
iambillzhao/Movie-Store
fdd8aea26a3169844ad011a43b8271d7cb2ed6f0
[ "MIT" ]
1
2020-07-10T06:48:34.000Z
2020-07-10T06:48:34.000Z
factory.cpp
iambillzhao/Movie-Store
fdd8aea26a3169844ad011a43b8271d7cb2ed6f0
[ "MIT" ]
null
null
null
factory.cpp
iambillzhao/Movie-Store
fdd8aea26a3169844ad011a43b8271d7cb2ed6f0
[ "MIT" ]
null
null
null
/* * factory.cpp is part of the Movie Store Simulator, a C++ program that * offers the function of borrow, return, or stock with up to 10,000 * customers and 26 genres of movies * * @author Bill Zhao, Lucas Bradley * @date March 12th */ #include "factory.h" #include <iostream> // buildMovie takes a string Inpu...
22
71
0.672078
iambillzhao
56a7158d66e5a8137e78fd42274f43080a4a3243
554
cpp
C++
test/predict/main.cpp
coffee-lord/angonoka
a8a4a79da4092630c5243c2081f92ba39d0b056c
[ "MIT" ]
2
2019-10-23T18:05:25.000Z
2022-02-21T21:53:24.000Z
test/predict/main.cpp
coffee-lord/angonoka
a8a4a79da4092630c5243c2081f92ba39d0b056c
[ "MIT" ]
3
2022-02-12T19:52:27.000Z
2022-02-12T19:55:52.000Z
test/stun/stochastic_tunneling/main.cpp
coffee-lord/angonoka
a8a4a79da4092630c5243c2081f92ba39d0b056c
[ "MIT" ]
null
null
null
#include <boost/ut.hpp> // boost::ut relies on static destructors so if // we don't defer LLVM coverage report until after // ut's destructor we won't get any coverage. #if defined(__llvm__) && defined(ANGONOKA_COVERAGE) extern "C" { int __llvm_profile_runtime; void __llvm_profile_initialize_file(void); int __llvm_pro...
22.16
51
0.718412
coffee-lord
56a9d5b4f56c4c293fe2f0c7bb6f54377a4c2296
2,791
cpp
C++
jmtpfs/src/jmtpfs-0.5/src/MtpMetadataCache.cpp
akshaykumar23399/DOTS
e7779f7c849e4d7f08eec5adce4fa8317d04b80d
[ "Unlicense" ]
null
null
null
jmtpfs/src/jmtpfs-0.5/src/MtpMetadataCache.cpp
akshaykumar23399/DOTS
e7779f7c849e4d7f08eec5adce4fa8317d04b80d
[ "Unlicense" ]
null
null
null
jmtpfs/src/jmtpfs-0.5/src/MtpMetadataCache.cpp
akshaykumar23399/DOTS
e7779f7c849e4d7f08eec5adce4fa8317d04b80d
[ "Unlicense" ]
null
null
null
/* * MtpMetadataCache.cpp * * Author: Jason Ferrara * * This software is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * version 3 as published by the Free Software Foundation. * * This software is distributed in the hope that it will be useful...
23.652542
100
0.724113
akshaykumar23399
56abeca03db4452942dae28104ef62327d65de85
4,176
hpp
C++
core/src/Simulation/AssetManager.hpp
hhsaez/crimild
e3efee09489939338df55e8af9a1f9ddc01301f7
[ "BSD-3-Clause" ]
36
2015-03-12T10:42:36.000Z
2022-01-12T04:20:40.000Z
core/src/Simulation/AssetManager.hpp
hhsaez/crimild
e3efee09489939338df55e8af9a1f9ddc01301f7
[ "BSD-3-Clause" ]
1
2015-12-17T00:25:43.000Z
2016-02-20T12:00:57.000Z
core/src/Simulation/AssetManager.hpp
hhsaez/crimild
e3efee09489939338df55e8af9a1f9ddc01301f7
[ "BSD-3-Clause" ]
6
2017-06-17T07:57:53.000Z
2019-04-09T21:11:24.000Z
/* * Copyright (c) 2013, Hernan Saez * All rights reserved. * * 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 con...
33.677419
111
0.625479
hhsaez
56afadad706c7d38fce2265cb20214649b49db93
548
hpp
C++
PP/decompose_const.hpp
Petkr/PP
646cc156603a6a9461e74d8f54786c0d5a9c32d2
[ "MIT" ]
3
2019-07-12T23:12:24.000Z
2019-09-05T07:57:45.000Z
PP/decompose_const.hpp
Petkr/PP
646cc156603a6a9461e74d8f54786c0d5a9c32d2
[ "MIT" ]
null
null
null
PP/decompose_const.hpp
Petkr/PP
646cc156603a6a9461e74d8f54786c0d5a9c32d2
[ "MIT" ]
null
null
null
#pragma once #include <PP/compose.hpp> #include <PP/cv_qualifier.hpp> #include <PP/decompose_pair.hpp> #include <PP/overloaded.hpp> #include <PP/to_type_t.hpp> #include <PP/value_t.hpp> namespace PP { PP_CIA decompose_const = compose( overloaded( []<typename T>(type_t<const T>) { return...
23.826087
80
0.625912
Petkr
56b205ff002447e58f3296486d4f79983530a652
989
cpp
C++
MNO/MATCHORDER/yujungee.cpp
Queue-ri/Advanced-Algorithm-Study
f44a75e55fffedcd988bfe8301eac224462c872d
[ "MIT" ]
5
2022-01-13T08:21:54.000Z
2022-01-31T03:37:14.000Z
MNO/MATCHORDER/yujungee.cpp
Queue-ri/Advanced-Algorithm-Study
f44a75e55fffedcd988bfe8301eac224462c872d
[ "MIT" ]
115
2022-01-13T07:37:23.000Z
2022-03-13T14:09:15.000Z
MNO/MATCHORDER/yujungee.cpp
Queue-ri/Advanced-Algorithm-Study
f44a75e55fffedcd988bfe8301eac224462c872d
[ "MIT" ]
2
2022-01-27T02:10:23.000Z
2022-02-09T14:37:04.000Z
// // matchOrder.cpp // study6 // // Created by yujeong on 2021/03/05. // #include <iostream> #include <algorithm> #include <vector> using namespace std; int tc , n; int rus_r[100], kor_r[100]; vector<int> russian; vector<int> korean; int match() { sort(korean.begin(), korean.end()); int res = 0; for ...
18.314815
45
0.436805
Queue-ri
56b3b547a5fc191f86116d140353a47f0ba15c19
9,427
cpp
C++
tests/server/barriers-validity.cpp
freedesktop-unofficial-mirror/xorg__test__xorg-integration-tests
1ffa848434ce084cf02dd1abc231ff99dad0d277
[ "MIT" ]
null
null
null
tests/server/barriers-validity.cpp
freedesktop-unofficial-mirror/xorg__test__xorg-integration-tests
1ffa848434ce084cf02dd1abc231ff99dad0d277
[ "MIT" ]
1
2020-09-07T03:24:26.000Z
2020-09-07T03:24:26.000Z
tests/server/barriers-validity.cpp
freedesktop-unofficial-mirror/xorg__test__xorg-integration-tests
1ffa848434ce084cf02dd1abc231ff99dad0d277
[ "MIT" ]
1
2020-09-07T03:04:34.000Z
2020-09-07T03:04:34.000Z
/* * Copyright © 2012-2013 Red Hat, Inc. * * 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, pu...
35.43985
98
0.647926
freedesktop-unofficial-mirror
56ba0137aeee0736e49716c019b8b1a83823a719
256
cpp
C++
1543.cpp
yyong119/ACM-OnlineJudge
5871993b15231c6615bfa3e7c2b04f0f6a23e9dc
[ "MIT" ]
22
2017-08-12T11:56:19.000Z
2022-03-27T10:04:31.000Z
1543.cpp
yyong119/ACM-OnlineJudge
5871993b15231c6615bfa3e7c2b04f0f6a23e9dc
[ "MIT" ]
2
2017-12-17T02:52:59.000Z
2018-02-09T02:10:43.000Z
1543.cpp
yyong119/ACM-OnlineJudge
5871993b15231c6615bfa3e7c2b04f0f6a23e9dc
[ "MIT" ]
4
2017-12-22T15:24:38.000Z
2020-05-18T14:51:16.000Z
#include <iostream> using namespace std; long long n; long long num(long long x) { if (x < 3) return x; long long r = x / 3, m = x - r - (r << 1); return (m + 1) * num(r) + m; } int main() { cin >> n; cout << n - num(n); return 0; }
19.692308
46
0.5
yyong119
56bfe43665188613028fba330939ebb1d49b833a
9,590
cxx
C++
pdfwiz/parsemake/new_make2proj.cxx
kit-transue/software-emancipation-discover
bec6f4ef404d72f361d91de954eae9a3bd669ce3
[ "BSD-2-Clause" ]
2
2015-11-24T03:31:12.000Z
2015-11-24T16:01:57.000Z
pdfwiz/parsemake/new_make2proj.cxx
radtek/software-emancipation-discover
bec6f4ef404d72f361d91de954eae9a3bd669ce3
[ "BSD-2-Clause" ]
null
null
null
pdfwiz/parsemake/new_make2proj.cxx
radtek/software-emancipation-discover
bec6f4ef404d72f361d91de954eae9a3bd669ce3
[ "BSD-2-Clause" ]
1
2019-05-19T02:26:08.000Z
2019-05-19T02:26:08.000Z
/************************************************************************* * Copyright (c) 2015, Synopsys, Inc. * * All rights reserved. * * * * Redistribution and...
28.040936
92
0.634202
kit-transue
56c3917f8a9590b435d02bab6a627eaa3ed8ab13
169
cpp
C++
_codeforces/486A/486a.cpp
rusucosmin/Cplusplus
0e95cd01d20b22404aa4166c71d5a9e834a5a21b
[ "MIT" ]
11
2015-08-29T13:41:22.000Z
2020-01-08T20:34:06.000Z
_codeforces/486A/486a.cpp
rusucosmin/Cplusplus
0e95cd01d20b22404aa4166c71d5a9e834a5a21b
[ "MIT" ]
null
null
null
_codeforces/486A/486a.cpp
rusucosmin/Cplusplus
0e95cd01d20b22404aa4166c71d5a9e834a5a21b
[ "MIT" ]
5
2016-01-20T18:17:01.000Z
2019-10-30T11:57:15.000Z
#include <iostream> using namespace std; int main() { long long n; cin >> n; if(n & 1) cout << -1LL * (n + 1LL) / 2LL << '\n'; else cout << n / 2LL << '\n'; }
13
41
0.497041
rusucosmin
56c5ba9bd8562df759d553e5f6081d2b713ebc66
4,417
hpp
C++
test/logdataprocessor.hpp
Bembelbots/particlefilter
7fc67763da217639de403485abf8a72029c5025a
[ "FSFAP" ]
null
null
null
test/logdataprocessor.hpp
Bembelbots/particlefilter
7fc67763da217639de403485abf8a72029c5025a
[ "FSFAP" ]
null
null
null
test/logdataprocessor.hpp
Bembelbots/particlefilter
7fc67763da217639de403485abf8a72029c5025a
[ "FSFAP" ]
null
null
null
#include <iostream> #include <string> #include <fstream> #include <definitions.h> #include <coords.h> #include <particlefilter.h> #include <random> struct LogData { int stamp; std::vector<Robot> poseEstimates; Robot wcs; std::vector<Robot> hypos; std::vector<DirectedCoord> odo; std::vector<Visi...
35.620968
115
0.465927
Bembelbots
08cb00f666f1316b124ce7bd517dd7f05c8e0ca6
473
cpp
C++
src/buffers/Vb0BufferVec2.cpp
MrMCG/MGL
894a336505b510d18dc28e3adae747fd6938816a
[ "MIT" ]
null
null
null
src/buffers/Vb0BufferVec2.cpp
MrMCG/MGL
894a336505b510d18dc28e3adae747fd6938816a
[ "MIT" ]
null
null
null
src/buffers/Vb0BufferVec2.cpp
MrMCG/MGL
894a336505b510d18dc28e3adae747fd6938816a
[ "MIT" ]
null
null
null
#include <GL/glew.h> #include "VboBufferVec2.hpp" namespace MGL { VboBufferVec2::VboBufferVec2(std::vector<Vec2> const& data) : m_data(data) {} void VboBufferVec2::bufferData(int const location) const { bind(); glBufferData(GL_ARRAY_BUFFER, m_data.size() * sizeof(Vec2), &m_data.at(0), GL_STATIC_DRAW); glVer...
23.65
93
0.710359
MrMCG
08cd1078eabbff7aaf5922dd8add205a48ea0fa8
4,515
cpp
C++
src/test/accounting_tests.cpp
gabriel-eiger/bitcredit
4f8306d98116420e7e80008426006e9fd23ee7db
[ "MIT" ]
1
2015-04-23T04:45:46.000Z
2015-04-23T04:45:46.000Z
src/test/accounting_tests.cpp
gabriel-eiger/bitcredit
4f8306d98116420e7e80008426006e9fd23ee7db
[ "MIT" ]
null
null
null
src/test/accounting_tests.cpp
gabriel-eiger/bitcredit
4f8306d98116420e7e80008426006e9fd23ee7db
[ "MIT" ]
null
null
null
// Copyright (c) 2012-2014 The Bitcoin Core developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "wallet.h" #include "walletdb.h" #include <stdint.h> #include <boost/foreach.hpp> #include <boost/test/unit_te...
32.956204
91
0.712514
gabriel-eiger
08cea99638e5b48abdbc36e54f88f24ef9a3ddc5
6,202
cpp
C++
src/Alarm/AlarmEntry.cpp
diqiu50/value
019e430ae1da9dc132369ff53b8ab7bcaedd09d7
[ "Apache-2.0" ]
1
2018-04-13T09:41:53.000Z
2018-04-13T09:41:53.000Z
src/Alarm/AlarmEntry.cpp
diqiu50/value
019e430ae1da9dc132369ff53b8ab7bcaedd09d7
[ "Apache-2.0" ]
null
null
null
src/Alarm/AlarmEntry.cpp
diqiu50/value
019e430ae1da9dc132369ff53b8ab7bcaedd09d7
[ "Apache-2.0" ]
null
null
null
//////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2005 // Packet Engineering, Inc. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification is not permitted unless authorized in writing by a duly // appointed officer of ...
23.055762
82
0.60158
diqiu50
08d1fd930599baa672ee6d5a283414de9a4c8421
13,688
cxx
C++
Utilities/FltkImageViewer/fltkImage2DViewerWindow.cxx
clwyatt/CTC
284d52dc888bcd997214804715fe690149e33f85
[ "BSD-3-Clause" ]
1
2019-07-29T02:04:06.000Z
2019-07-29T02:04:06.000Z
Utilities/FltkImageViewer/fltkImage2DViewerWindow.cxx
clwyatt/CTC
284d52dc888bcd997214804715fe690149e33f85
[ "BSD-3-Clause" ]
null
null
null
Utilities/FltkImageViewer/fltkImage2DViewerWindow.cxx
clwyatt/CTC
284d52dc888bcd997214804715fe690149e33f85
[ "BSD-3-Clause" ]
null
null
null
/*========================================================================= Program: Insight Segmentation & Registration Toolkit Module: $RCSfile: fltkImage2DViewerWindow.cxx,v $ Language: C++ Date: $Date: 2002/10/15 15:16:54 $ Version: $Revision: 1.20 $ Copyright (c) 2002 Insight Consortium....
19.064067
104
0.502192
clwyatt
08d5a67101b5f6c210a2b2213e641905cf404ba9
573
hpp
C++
Chip8lib/font/fontLoader.hpp
tstibro/chip8
fa342b8641737780e20b259f6df9dcb51127786a
[ "MIT" ]
null
null
null
Chip8lib/font/fontLoader.hpp
tstibro/chip8
fa342b8641737780e20b259f6df9dcb51127786a
[ "MIT" ]
null
null
null
Chip8lib/font/fontLoader.hpp
tstibro/chip8
fa342b8641737780e20b259f6df9dcb51127786a
[ "MIT" ]
null
null
null
/* * fontLoader.hpp * * Created on: Jul 23, 2016 * Author: Tomas Stibrany */ #ifndef FONT_FONTLOADER_HPP_ #define FONT_FONTLOADER_HPP_ #include "../chip8Types.hpp" namespace chip8 { namespace core { namespace memory { class RAM; } } } namespace chip8 { namespace font { class Font; } } using ...
12.191489
36
0.670157
tstibro
08d8c404b313187f4ba38d65810ce2ceb01a6c07
15,151
cc
C++
chrome/browser/ui/pdf/pdf_unsupported_feature.cc
Crystalnix/BitPop
1fae4ecfb965e163f6ce154b3988b3181678742a
[ "BSD-3-Clause" ]
7
2015-05-20T22:41:35.000Z
2021-11-18T19:07:59.000Z
chrome/browser/ui/pdf/pdf_unsupported_feature.cc
Crystalnix/BitPop
1fae4ecfb965e163f6ce154b3988b3181678742a
[ "BSD-3-Clause" ]
1
2015-02-02T06:55:08.000Z
2016-01-20T06:11:59.000Z
chrome/browser/ui/pdf/pdf_unsupported_feature.cc
Crystalnix/BitPop
1fae4ecfb965e163f6ce154b3988b3181678742a
[ "BSD-3-Clause" ]
2
2015-12-08T00:37:41.000Z
2017-04-06T05:34:05.000Z
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/pdf/pdf_unsupported_feature.h" #include "base/bind.h" #include "base/utf_string_conversions.h" #include "base/values.h" #...
34.200903
80
0.744901
Crystalnix
08d93b6b65eb7e4504db0d0a455eadfdd06ad947
1,897
hpp
C++
unittests/data/temporary_variable_to_be_exported.hpp
electronicvisions/pyplusplus
4d88bb8754d22654a61202ae8adc222807953e38
[ "BSL-1.0" ]
9
2016-06-07T19:14:53.000Z
2020-02-28T09:06:19.000Z
unittests/data/temporary_variable_to_be_exported.hpp
electronicvisions/pyplusplus
4d88bb8754d22654a61202ae8adc222807953e38
[ "BSL-1.0" ]
1
2018-08-15T11:33:40.000Z
2018-08-15T11:33:40.000Z
unittests/data/temporary_variable_to_be_exported.hpp
electronicvisions/pyplusplus
4d88bb8754d22654a61202ae8adc222807953e38
[ "BSL-1.0" ]
5
2016-06-23T09:37:00.000Z
2019-12-18T13:51:29.000Z
// Copyright 2004-2008 Roman Yakovenko. // 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) #ifndef __temporary_variable_to_be_exported_hpp__ #define __temporary_variable_to_be_exported_hpp__ #include <string> nam...
20.846154
72
0.680548
electronicvisions
08df8e684b33864a1b60ea7bd33b533968ba656f
20,057
ipp
C++
include/External/stlib/packages/cpt/Face3.ipp
bxl295/m4extreme
2a4a20ebb5b4e971698f7c981de140d31a5e550c
[ "BSD-3-Clause" ]
null
null
null
include/External/stlib/packages/cpt/Face3.ipp
bxl295/m4extreme
2a4a20ebb5b4e971698f7c981de140d31a5e550c
[ "BSD-3-Clause" ]
null
null
null
include/External/stlib/packages/cpt/Face3.ipp
bxl295/m4extreme
2a4a20ebb5b4e971698f7c981de140d31a5e550c
[ "BSD-3-Clause" ]
null
null
null
// -*- C++ -*- #if !defined(__cpt_Face3_ipp__) #error This file is an implementation detail of the class Face. #endif namespace cpt { //! A 3-D face on a b-rep. template<typename T> class Face<3, T> { public: // // Public types. // //! The number type. typedef T Number; //! A...
28.490057
92
0.610311
bxl295