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
float64
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
float64
1
77k
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
float64
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
653k
max_line_length
int64
6
990k
alphanum_fraction
float64
0.01
1
335cf0ef3cfb3c0478f8f48740f0f2ca47759b91
836
cpp
C++
Data Structures and Libraries/Linear Data Structures with Built-in Libraries/10264 The Most Potent Corner.cpp
satvik007/UvaRevision
b2473130eb17435ac55132083e85262491db3d1b
[ "MIT" ]
null
null
null
Data Structures and Libraries/Linear Data Structures with Built-in Libraries/10264 The Most Potent Corner.cpp
satvik007/UvaRevision
b2473130eb17435ac55132083e85262491db3d1b
[ "MIT" ]
null
null
null
Data Structures and Libraries/Linear Data Structures with Built-in Libraries/10264 The Most Potent Corner.cpp
satvik007/UvaRevision
b2473130eb17435ac55132083e85262491db3d1b
[ "MIT" ]
null
null
null
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector <ll> vi; int n; vi a, b; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); freopen("in.txt", "r", stdin); freopen("out.txt", "w", stdout); while(cin >> n){ a.resize(1 << n); b.resize(a.size());...
24.588235
63
0.404306
335f2459bf433f0f369bf98d4226422b110deaf2
2,805
cpp
C++
src/utilities/Convertible.cpp
gle8098/succotash
7f4189418301b4f9322a4cfa6dc205fcbe999d40
[ "MIT" ]
2
2020-05-19T10:52:20.000Z
2020-10-26T18:39:22.000Z
src/utilities/Convertible.cpp
gle8098/succotash
7f4189418301b4f9322a4cfa6dc205fcbe999d40
[ "MIT" ]
2
2020-04-27T08:27:22.000Z
2020-05-06T17:27:06.000Z
src/utilities/Convertible.cpp
gle8098/succotash
7f4189418301b4f9322a4cfa6dc205fcbe999d40
[ "MIT" ]
null
null
null
#include "Convertible.hpp" #include <functional> #include <stdexcept> namespace succotash::utilities { //------------------------------------------------------------------------------ // Local functions which are not for export //------------------------------------------------------------------------------ inline ...
26.214953
80
0.547594
3362d8f4beef1376eb5dba1aaad9fe6cb430e9fe
872
hpp
C++
modules/classes/HoldQueue1.hpp
PercyPanJX/Scheduling-and-Deadlock-Avoidance
d51d6a7b3da7333559592e7381add1c0ef25fb2e
[ "Apache-2.0" ]
null
null
null
modules/classes/HoldQueue1.hpp
PercyPanJX/Scheduling-and-Deadlock-Avoidance
d51d6a7b3da7333559592e7381add1c0ef25fb2e
[ "Apache-2.0" ]
null
null
null
modules/classes/HoldQueue1.hpp
PercyPanJX/Scheduling-and-Deadlock-Avoidance
d51d6a7b3da7333559592e7381add1c0ef25fb2e
[ "Apache-2.0" ]
1
2020-07-24T20:07:23.000Z
2020-07-24T20:07:23.000Z
/* * HoldQueue1.hpp * * Created on: 2018/5/13 * Author: Qun Cheng * Author: Jiaxuan(Percy) Pan */ #ifndef HOLDQUEUE1_HPP_ #define HOLDQUEUE1_HPP_ #include "HoldQueue2.hpp" class HoldQueue1{ std::list<Job> q; public: HoldQueue1(){} bool empty(){ return q.empty(); } ...
12.823529
43
0.516055
33644ce440a5f006d9304c5e93ae4520c2eb71f8
4,892
cc
C++
validator/cpp/htmlparser/renderer.cc
li-cai/amphtml
78fed1a5551cae5486717acbd45878a1e36343a0
[ "Apache-2.0" ]
3
2016-02-25T15:32:53.000Z
2021-01-21T16:11:38.000Z
validator/cpp/htmlparser/renderer.cc
ColombiaOnline/amphtml
92f8b2681933d3904c64f1d162f6e25dc8fb617c
[ "Apache-2.0" ]
93
2020-03-05T19:09:47.000Z
2021-05-13T15:12:03.000Z
validator/cpp/htmlparser/renderer.cc
ColombiaOnline/amphtml
92f8b2681933d3904c64f1d162f6e25dc8fb617c
[ "Apache-2.0" ]
1
2018-04-03T08:10:10.000Z
2018-04-03T08:10:10.000Z
#include <algorithm> #include "atomutil.h" #include "elements.h" #include "renderer.h" #include "strings.h" namespace htmlparser { namespace { inline void WriteToBuffer(const std::string& str, std::stringbuf* buf) { buf->sputn(str.c_str(), str.size()); } // Writes str surrounded by quotes to buf. Normally it wil...
28.44186
78
0.55601
3364b3d7bf5e8c34701a087abd3890bbd3554559
5,878
cpp
C++
src/rpg_setup.cpp
MarianoGnu/liblcf
02c640335ad13f2d815409a171045c42b23f7b86
[ "MIT" ]
null
null
null
src/rpg_setup.cpp
MarianoGnu/liblcf
02c640335ad13f2d815409a171045c42b23f7b86
[ "MIT" ]
null
null
null
src/rpg_setup.cpp
MarianoGnu/liblcf
02c640335ad13f2d815409a171045c42b23f7b86
[ "MIT" ]
null
null
null
/* * This file is part of liblcf. Copyright (c) 2018 liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. * For the full copyright and license information, please view the COPYING * file that was distributed with t...
28.259615
77
0.732052
3365a5ad57e6c45f7114f0b79dd29353013c7b01
2,490
cpp
C++
Codeforces/915C/greedy.cpp
codgician/ACM
391f3ce9b89b0a4bbbe3ff60eb2369fef57460d4
[ "MIT" ]
2
2018-02-14T01:59:31.000Z
2018-03-28T03:30:45.000Z
Codeforces/915C/greedy.cpp
codgician/ACM
391f3ce9b89b0a4bbbe3ff60eb2369fef57460d4
[ "MIT" ]
null
null
null
Codeforces/915C/greedy.cpp
codgician/ACM
391f3ce9b89b0a4bbbe3ff60eb2369fef57460d4
[ "MIT" ]
2
2017-12-30T02:46:35.000Z
2018-03-28T03:30:49.000Z
#include <iostream> #include <cstdio> #include <cmath> #include <algorithm> #include <cstring> #include <string> #include <iomanip> #include <climits> #include <vector> #include <set> #include <queue> #define SIZE 10 using namespace std; int arr[SIZE]; int main() { ios::sync_with_stdio(false); string origNum,...
22.035398
62
0.323293
3365b0a0467138b16194c86b4580da019d4859d4
703
cpp
C++
backend/tests/test-helib-fp-int8_t-multByConst.cpp
vkurilin/SHEEP
2ccaef32c16efcf5dbc8eefd1dc243bed4ac2fbb
[ "MIT" ]
40
2018-12-03T13:01:06.000Z
2022-02-23T13:04:12.000Z
backend/tests/test-helib-fp-int8_t-multByConst.cpp
vkurilin/SHEEP
2ccaef32c16efcf5dbc8eefd1dc243bed4ac2fbb
[ "MIT" ]
63
2018-09-11T14:13:31.000Z
2020-01-14T16:12:39.000Z
backend/tests/test-helib-fp-int8_t-multByConst.cpp
vkurilin/SHEEP
2ccaef32c16efcf5dbc8eefd1dc243bed4ac2fbb
[ "MIT" ]
7
2019-07-10T14:48:31.000Z
2022-03-23T09:12:11.000Z
#include <memory> #include <algorithm> #include <cassert> #include <cstdint> #include "circuit-repo.hpp" #include "circuit-test-util.hpp" #include "context-helib.hpp" int main(void) { using namespace SHEEP; ContextHElib_Fp<int8_t> ctx; std::vector<ContextHElib_Fp<int8_t>::Plaintext> pt_input = {55, -42, 120};...
22.677419
79
0.70128
3365bc9ea0ff7a332d8d478b2da52f7d8acda705
11,408
cpp
C++
wallet/swaps/swap_offers_board.cpp
DavidBurkett/beam
c352f54fb18136188d4470d2178a95b1deb335c2
[ "Apache-2.0" ]
null
null
null
wallet/swaps/swap_offers_board.cpp
DavidBurkett/beam
c352f54fb18136188d4470d2178a95b1deb335c2
[ "Apache-2.0" ]
null
null
null
wallet/swaps/swap_offers_board.cpp
DavidBurkett/beam
c352f54fb18136188d4470d2178a95b1deb335c2
[ "Apache-2.0" ]
null
null
null
// Copyright 2019 The Beam Team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
37.526316
149
0.579856
3365dfa70b4ebb775aa8effd904b37fe9c221358
3,005
hpp
C++
libHCore/inc/time.hpp
adeliktas/Hayha3
a505b6e79e6cabd8ef8d899eeb9f7e39251b58b5
[ "MIT" ]
15
2021-11-22T07:31:22.000Z
2022-02-22T22:53:51.000Z
libHCore/inc/time.hpp
adeliktas/Hayha3
a505b6e79e6cabd8ef8d899eeb9f7e39251b58b5
[ "MIT" ]
1
2021-11-26T19:27:40.000Z
2021-11-26T19:27:40.000Z
libHCore/inc/time.hpp
adeliktas/Hayha3
a505b6e79e6cabd8ef8d899eeb9f7e39251b58b5
[ "MIT" ]
5
2021-11-20T18:21:24.000Z
2021-12-26T12:32:47.000Z
#ifndef TIME_HPP #define TIME_HPP #include <chrono> using namespace std::chrono; using timeStamp = time_point<steady_clock,microseconds>; using timeStampSeconds = time_point<steady_clock,seconds>; extern timeStamp programStart; timeStamp getCurrentTimeMicro(); timeStamp getTimeInFuture(uint64_t usec); int64_t ti...
22.095588
70
0.607654
3367bee0403b76726145b57b717270d602017c5b
15,126
cc
C++
chromeos/services/secure_channel/ble_advertiser_impl.cc
Ron423c/chromium
2edf7b980065b648f8b2a6e52193d83832fe36b7
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
575
2015-06-18T23:58:20.000Z
2022-03-23T09:32:39.000Z
chromeos/services/secure_channel/ble_advertiser_impl.cc
Ron423c/chromium
2edf7b980065b648f8b2a6e52193d83832fe36b7
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
113
2015-05-04T09:58:14.000Z
2022-01-31T19:35:03.000Z
chromeos/services/secure_channel/ble_advertiser_impl.cc
iridium-browser/iridium-browser
907e31cf5ce5ad14d832796e3a7c11e496828959
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
52
2015-07-14T10:40:50.000Z
2022-03-15T01:11:49.000Z
// Copyright 2018 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 "chromeos/services/secure_channel/ble_advertiser_impl.h" #include "base/bind.h" #include "base/containers/contains.h" #include "base/logging.h" ...
38.48855
83
0.741108
336a74ffe49d50fe6f417490dd822e9a5b42d1b7
1,420
cpp
C++
aws-cpp-sdk-ssm/source/model/LabelParameterVersionResult.cpp
Neusoft-Technology-Solutions/aws-sdk-cpp
88c041828b0dbee18a297c3cfe98c5ecd0706d0b
[ "Apache-2.0" ]
1
2022-02-10T08:06:54.000Z
2022-02-10T08:06:54.000Z
aws-cpp-sdk-ssm/source/model/LabelParameterVersionResult.cpp
Neusoft-Technology-Solutions/aws-sdk-cpp
88c041828b0dbee18a297c3cfe98c5ecd0706d0b
[ "Apache-2.0" ]
1
2021-10-14T16:57:00.000Z
2021-10-18T10:47:24.000Z
aws-cpp-sdk-ssm/source/model/LabelParameterVersionResult.cpp
ravindra-wagh/aws-sdk-cpp
7d5ff01b3c3b872f31ca98fb4ce868cd01e97696
[ "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/ssm/model/LabelParameterVersionResult.h> #include <aws/core/utils/json/JsonSerializer.h> #include <aws/core/AmazonWebServiceResult.h> #include <aws/core/utils/StringUtils.h> #include <aw...
27.307692
122
0.764085
336b38c40225cee0bbdf06e838432a167b048ea0
7,082
cc
C++
src/unix/ibus/key_event_handler.cc
sousuke0422/crIME
abc711e0c2cad19950703d59ed4d1ffe4bd76953
[ "BSD-3-Clause" ]
1
2021-02-24T07:03:26.000Z
2021-02-24T07:03:26.000Z
src/unix/ibus/key_event_handler.cc
sousuke0422/crIME
abc711e0c2cad19950703d59ed4d1ffe4bd76953
[ "BSD-3-Clause" ]
108
2018-05-29T17:33:53.000Z
2019-07-22T00:01:54.000Z
src/unix/ibus/key_event_handler.cc
sousuke0422/crIME
abc711e0c2cad19950703d59ed4d1ffe4bd76953
[ "BSD-3-Clause" ]
1
2021-12-29T08:15:14.000Z
2021-12-29T08:15:14.000Z
// Copyright 2010-2018, Google Inc. // 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 condit...
35.059406
79
0.670291
336b462ccee7e5caea92825ff3340f8f06560b62
1,868
hpp
C++
include/rba/RBASoundContent.hpp
NaohiroNISHIGUCHI/RBA
ac86e4ffa643b8050b25161c951bb43f4e36235a
[ "Apache-2.0" ]
2
2020-07-17T11:13:48.000Z
2020-07-30T09:37:08.000Z
include/rba/RBASoundContent.hpp
NaohiroNISHIGUCHI/RBA
ac86e4ffa643b8050b25161c951bb43f4e36235a
[ "Apache-2.0" ]
null
null
null
include/rba/RBASoundContent.hpp
NaohiroNISHIGUCHI/RBA
ac86e4ffa643b8050b25161c951bb43f4e36235a
[ "Apache-2.0" ]
3
2020-06-25T07:19:19.000Z
2020-06-26T13:06:13.000Z
// Copyright (c) 2018 DENSO CORPORATION. All rights reserved. /** * Sound content class */ #ifndef RBASOUNDCONTENT_HPP #define RBASOUNDCONTENT_HPP #ifdef _MSC_VER #ifdef _WINDLL #define DLL_EXPORT __declspec(dllexport) #else #define DLL_EXPORT __declspec(dllimport) #endif #else #define DLL_EXPORT #endif #include <...
22.238095
83
0.728587
336ef2fb6bfaec758b0a786ded531b6e095dcf91
3,858
cc
C++
obj/pillar.cc
vinijabes/simutrans
cb90d7e29e8f7910936d98733fe9fe5f24893535
[ "Artistic-1.0" ]
null
null
null
obj/pillar.cc
vinijabes/simutrans
cb90d7e29e8f7910936d98733fe9fe5f24893535
[ "Artistic-1.0" ]
null
null
null
obj/pillar.cc
vinijabes/simutrans
cb90d7e29e8f7910936d98733fe9fe5f24893535
[ "Artistic-1.0" ]
null
null
null
/* * This file is part of the Simutrans project under the Artistic License. * (see LICENSE.txt) */ #include <string.h> #include "../simworld.h" #include "../simobj.h" #include "../simmem.h" #include "../display/simimg.h" #include "../bauer/brueckenbauer.h" #include "../descriptor/bridge_desc.h" #include "../bod...
26.606897
202
0.666407
336f1b15eae0ec9e0b76c2b529b9a3c57d7e2b3e
2,988
hpp
C++
include/veriblock/signutil.hpp
overcookedpanda/alt-integration-cpp
7932e79a77d9514ca0e0354636e77fba1845d707
[ "MIT" ]
null
null
null
include/veriblock/signutil.hpp
overcookedpanda/alt-integration-cpp
7932e79a77d9514ca0e0354636e77fba1845d707
[ "MIT" ]
null
null
null
include/veriblock/signutil.hpp
overcookedpanda/alt-integration-cpp
7932e79a77d9514ca0e0354636e77fba1845d707
[ "MIT" ]
null
null
null
// Copyright (c) 2019-2020 Xenios SEZC // https://www.veriblock.org // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef __SIGNUTIL__HPP__ #define __SIGNUTIL__HPP__ #include <stdexcept> #include <vector> #include "slice.hpp"...
32.478261
70
0.754351
3370fb7140a0863746381561b69e4f83ba5faa0b
53,641
cpp
C++
legacy/btmux-mux20/mux/src/btech/mech.hitloc.cpp
murrayma/btmux
3519fdbfb9d5d27b4ce8e46ee16796961f1a0bfa
[ "ClArtistic", "Naumen", "Condor-1.1", "MS-PL" ]
1
2020-07-09T17:37:42.000Z
2020-07-09T17:37:42.000Z
legacy/btmux-mux20/mux/src/btech/mech.hitloc.cpp
murrayma/btmux
3519fdbfb9d5d27b4ce8e46ee16796961f1a0bfa
[ "ClArtistic", "Naumen", "Condor-1.1", "MS-PL" ]
null
null
null
legacy/btmux-mux20/mux/src/btech/mech.hitloc.cpp
murrayma/btmux
3519fdbfb9d5d27b4ce8e46ee16796961f1a0bfa
[ "ClArtistic", "Naumen", "Condor-1.1", "MS-PL" ]
1
2020-11-07T00:02:47.000Z
2020-11-07T00:02:47.000Z
/* * $Id: mech.hitloc.c,v 1.1.1.1 2005/01/11 21:18:17 kstevens Exp $ * * Author: Markus Stenberg <fingon@iki.fi> * * Copyright (c) 1996 Markus Stenberg * Copyright (c) 1998-2002 Thomas Wouters * Copyright (c) 2000-2002 Cord Awtry * All rights reserved * * Created: Fri Sep 20 19:54:48 1996 fingon * ...
23.787583
122
0.489793
33727831f41b819ff16ff7f11aef09eb0e2644a4
587
cpp
C++
Quick-Sort.cpp
cirno99/Algorithms
6425b143f406693caf8f882bdfe5497c81df255a
[ "Unlicense" ]
1,210
2016-08-07T13:32:12.000Z
2022-03-21T01:01:57.000Z
Quick-Sort.cpp
NeilQingqing/Algorithms-2
c10d4c212fa1fbf8b9fb3c781d61f41e75e96aaa
[ "Unlicense" ]
7
2016-09-11T11:41:03.000Z
2017-10-29T02:12:57.000Z
Quick-Sort.cpp
NeilQingqing/Algorithms-2
c10d4c212fa1fbf8b9fb3c781d61f41e75e96aaa
[ "Unlicense" ]
514
2016-10-17T03:52:16.000Z
2022-03-19T16:23:33.000Z
#include <cstdio> #include <cstdlib> #define MAX_ELEMENT_COUNT 1000000 using namespace std; int d[MAX_ELEMENT_COUNT]; void qsort(int l, int r) { if (l < r) { int x = d[r]; int j = l - 1; for (int i = l; i <= r; i++) { if (d[i] <= x) { j++; int temp = d[i]; d[i] = d[j]; d[j] = temp...
11.979592
44
0.49063
33742d5fccf1faefb39775097644bbf70fa1b965
22,255
cpp
C++
fdbserver/workloads/RandomSelector.actor.cpp
dlambrig/foundationdb
f02c3523d6ea3b52cbcce09a4f3e81b020abe9b7
[ "Apache-2.0" ]
null
null
null
fdbserver/workloads/RandomSelector.actor.cpp
dlambrig/foundationdb
f02c3523d6ea3b52cbcce09a4f3e81b020abe9b7
[ "Apache-2.0" ]
4
2018-09-12T20:32:19.000Z
2019-07-27T19:10:01.000Z
fdbserver/workloads/RandomSelector.actor.cpp
dlambrig/foundationdb
f02c3523d6ea3b52cbcce09a4f3e81b020abe9b7
[ "Apache-2.0" ]
null
null
null
/* * RandomSelector.actor.cpp * * This source file is part of the FoundationDB open source project * * Copyright 2013-2018 Apple Inc. and the FoundationDB project authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You...
39.599644
293
0.597079
33755a50eb1476a6e77c3e9b7b8f35bbc38bf95a
3,532
cpp
C++
tests/distance_test.cpp
xjdr/VectorSearch
ab2c14c8f49d840a69ee1c93ec2c334704f59153
[ "MIT" ]
null
null
null
tests/distance_test.cpp
xjdr/VectorSearch
ab2c14c8f49d840a69ee1c93ec2c334704f59153
[ "MIT" ]
null
null
null
tests/distance_test.cpp
xjdr/VectorSearch
ab2c14c8f49d840a69ee1c93ec2c334704f59153
[ "MIT" ]
null
null
null
#include "gtest/gtest.h" #include "../vsearch/distance.h" #include "../vsearch/vsearch.pb.h" #include <iostream> #include <fstream> #include <string> class DistanceTest : public testing::Test { }; TEST(DistanceTest, DistanceTest_L2_Test_Far) { float pX[] = {1.3, 1.3}; float pY[] = {6.6, 6.2}; float r = vsear...
33.320755
86
0.669309
3375a210611a7809cb44d906e6387f69bbe34d7d
12,887
cpp
C++
win/XBrowseForFolder.cpp
andreaspeters/dynamic-windows
b76a16b076c235aa51d3181c8af60d77120eed1b
[ "BSD-3-Clause" ]
null
null
null
win/XBrowseForFolder.cpp
andreaspeters/dynamic-windows
b76a16b076c235aa51d3181c8af60d77120eed1b
[ "BSD-3-Clause" ]
null
null
null
win/XBrowseForFolder.cpp
andreaspeters/dynamic-windows
b76a16b076c235aa51d3181c8af60d77120eed1b
[ "BSD-3-Clause" ]
null
null
null
// XBrowseForFolder.cpp Version 1.2 // // Author: Hans Dietrich // hdietrich@gmail.com // // Description: // XBrowseForFolder.cpp implements XBrowseForFolder(), a function that // wraps SHBrowseForFolder(). // // History // Version 1.2 - 2008 February 29 // - Changed API to allow f...
29.024775
95
0.608753
337677706c3aa68ffd78265ced8be2125a993e25
1,892
cpp
C++
src/util/BalanceTests.cpp
fonero-project/fonero-core
75d6bcadf36df2bfe10c4b7777281540566f1f34
[ "Apache-2.0", "BSD-2-Clause", "MIT", "ECL-2.0", "BSL-1.0", "BSD-3-Clause" ]
null
null
null
src/util/BalanceTests.cpp
fonero-project/fonero-core
75d6bcadf36df2bfe10c4b7777281540566f1f34
[ "Apache-2.0", "BSD-2-Clause", "MIT", "ECL-2.0", "BSL-1.0", "BSD-3-Clause" ]
null
null
null
src/util/BalanceTests.cpp
fonero-project/fonero-core
75d6bcadf36df2bfe10c4b7777281540566f1f34
[ "Apache-2.0", "BSD-2-Clause", "MIT", "ECL-2.0", "BSL-1.0", "BSD-3-Clause" ]
null
null
null
// Copyright 2017 Fonero Development Foundation and contributors. Licensed // under the Apache License, Version 2.0. See the COPYING file at the root // of this distribution or at http://www.apache.org/licenses/LICENSE-2.0 #include "lib/catch.hpp" #include "util/types.h" using namespace fonero; bool addBalance(int64...
34.4
74
0.638478
337698b6aedd957da61d9b6c57a7325651b7ace2
34,406
cc
C++
Geometry/HGCalGeometry/src/HGCalGeometry.cc
tklijnsma/cmssw
d7f103c459dd195eaa651ce0c30e4bd4bfd0fe43
[ "Apache-2.0" ]
1
2020-07-12T11:51:32.000Z
2020-07-12T11:51:32.000Z
Geometry/HGCalGeometry/src/HGCalGeometry.cc
tklijnsma/cmssw
d7f103c459dd195eaa651ce0c30e4bd4bfd0fe43
[ "Apache-2.0" ]
3
2020-02-19T08:33:16.000Z
2020-03-13T10:02:19.000Z
Geometry/HGCalGeometry/src/HGCalGeometry.cc
tklijnsma/cmssw
d7f103c459dd195eaa651ce0c30e4bd4bfd0fe43
[ "Apache-2.0" ]
1
2018-01-22T10:20:10.000Z
2018-01-22T10:20:10.000Z
/* for High Granularity Calorimeter * This geometry is essentially driven by topology, * which is thus encapsulated in this class. * This makes this geometry not suitable to be loaded * by regular CaloGeometryLoader<T> */ #include "FWCore/MessageLogger/interface/MessageLogger.h" #include "FWCore/Utilities/interf...
44.166881
120
0.602627
3377c4fe87b370c2b62636485d384f0a7bfa2d26
2,764
hpp
C++
include/sprout/range/adaptor/reversed.hpp
thinkoid/Sprout
a5a5944bb1779d3bb685087c58c20a4e18df2f39
[ "BSL-1.0" ]
4
2021-12-29T22:17:40.000Z
2022-03-23T11:53:44.000Z
dsp/lib/sprout/sprout/range/adaptor/reversed.hpp
TheSlowGrowth/TapeLooper
ee8d8dccc27e39a6f6f6f435847e4d5e1b97c264
[ "MIT" ]
16
2021-10-31T21:41:09.000Z
2022-01-22T10:51:34.000Z
include/sprout/range/adaptor/reversed.hpp
thinkoid/Sprout
a5a5944bb1779d3bb685087c58c20a4e18df2f39
[ "BSL-1.0" ]
null
null
null
/*============================================================================= Copyright (c) 2011-2019 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout 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) ==...
31.05618
106
0.709479
33782bfb7cfbdce14ac6dbc52b9be958ce0ed8dc
181
cpp
C++
VisceralCombatEngine/src/VCE/Renderer/RenderCommand.cpp
celestialkey/VisceralCombatEngine
b8021218401be5504ff07b087d9562c8c8ddbfb4
[ "Apache-2.0" ]
null
null
null
VisceralCombatEngine/src/VCE/Renderer/RenderCommand.cpp
celestialkey/VisceralCombatEngine
b8021218401be5504ff07b087d9562c8c8ddbfb4
[ "Apache-2.0" ]
null
null
null
VisceralCombatEngine/src/VCE/Renderer/RenderCommand.cpp
celestialkey/VisceralCombatEngine
b8021218401be5504ff07b087d9562c8c8ddbfb4
[ "Apache-2.0" ]
null
null
null
#include "vcepch.h" #include "RenderCommand.h" #include "Platform/OpenGL/OpenGLRendererAPI.h" namespace VCE { RendererAPI* RenderCommand::s_RendererAPI = new OpenGLRendererAPI; }
22.625
67
0.790055
3378ca8ab9cff2eb2f2ba1cbcba5f8f9e8d4bc8d
797
cpp
C++
0139 Word Break/solution.cpp
Aden-Tao/LeetCode
c34019520b5808c4251cb76f69ca2befa820401d
[ "MIT" ]
1
2019-12-19T04:13:15.000Z
2019-12-19T04:13:15.000Z
0139 Word Break/solution.cpp
Aden-Tao/LeetCode
c34019520b5808c4251cb76f69ca2befa820401d
[ "MIT" ]
null
null
null
0139 Word Break/solution.cpp
Aden-Tao/LeetCode
c34019520b5808c4251cb76f69ca2befa820401d
[ "MIT" ]
null
null
null
#include<bits/stdc++.h> using namespace std; class Solution { public: bool wordBreak(string s, vector<string>& wordDict) { unordered_set<string> dict(wordDict.begin(), wordDict.end()); vector<bool> dp(s.size() + 1, false);//dp表示字符之间的隔板,n个字符有n+1个隔板 dp[0] = true;//dp[0]是s[0]前面的隔板 ...
25.709677
70
0.460477
337a5ca724a532b719ac2574692b24f9b9005041
1,236
cpp
C++
joins/src/generators/uniform_generator.cpp
wagjamin/HashJoins
143ef7a90d8226ce26b8a5e2ec1be33af0f00d74
[ "MIT" ]
1
2022-01-08T05:55:07.000Z
2022-01-08T05:55:07.000Z
joins/src/generators/uniform_generator.cpp
wagjamin/HashJoins
143ef7a90d8226ce26b8a5e2ec1be33af0f00d74
[ "MIT" ]
null
null
null
joins/src/generators/uniform_generator.cpp
wagjamin/HashJoins
143ef7a90d8226ce26b8a5e2ec1be33af0f00d74
[ "MIT" ]
1
2020-05-08T03:58:17.000Z
2020-05-08T03:58:17.000Z
// // Benjamin Wagner 2018 // #include "generators/uniform_generator.h" #include <random> namespace generators { uniform_generator::uniform_generator(size_t min, uint64_t max, uint64_t count): built(false), min(min), max(max), count (count), data() { // Generate a pseudo random seed value ...
24.235294
100
0.604369
337b718539ddfe0f1fc0481bc8ceb14308fa1609
29,280
cpp
C++
include/aegis/impl/guild.cpp
willem640/aegis.cpp
8b560dc641c5c941c9474bec171999ca4b2c4108
[ "X11" ]
null
null
null
include/aegis/impl/guild.cpp
willem640/aegis.cpp
8b560dc641c5c941c9474bec171999ca4b2c4108
[ "X11" ]
null
null
null
include/aegis/impl/guild.cpp
willem640/aegis.cpp
8b560dc641c5c941c9474bec171999ca4b2c4108
[ "X11" ]
null
null
null
// // guild.cpp // ********* // // Copyright (c) 2019 Sharon W (sharon at aegis dot gg) // // Distributed under the MIT License. (See accompanying file LICENSE) // #include "aegis/guild.hpp" #include <string> #include <memory> #include "aegis/core.hpp" #include "aegis/member.hpp" #include "aegis/channel.hpp" #include ...
32.533333
186
0.645048
337d99d360949b5d94b5b3af654da0c7c8ce1e4b
1,597
hpp
C++
src/core/level/graph.hpp
guillaume-haerinck/imac-tower-defense
365a32642ea0d3ad8b2b7d63347d585c44d9f670
[ "MIT" ]
44
2019-06-06T21:33:30.000Z
2022-03-26T06:18:23.000Z
src/core/level/graph.hpp
guillaume-haerinck/imac-tower-defense
365a32642ea0d3ad8b2b7d63347d585c44d9f670
[ "MIT" ]
1
2019-09-27T12:04:52.000Z
2019-09-29T13:30:42.000Z
src/core/level/graph.hpp
guillaume-haerinck/imac-tower-defense
365a32642ea0d3ad8b2b7d63347d585c44d9f670
[ "MIT" ]
8
2019-07-26T16:44:26.000Z
2020-11-24T17:56:18.000Z
#pragma once #include <vector> #include <spdlog/spdlog.h> struct graphNode { graphNode(int x, int y) : x(x), y(y) {} int x; int y; }; struct graphEdge { graphEdge(int neighbourIndex, float dist) : neighbourIndex(neighbourIndex), dist(dist) {} int neighbourIndex; float dist; }; class Graph { public: Graph(); ...
32.591837
186
0.745773
337f2c5a53e818d883538f2d45c3750f01531b8f
1,932
cc
C++
proxy/http/Http1ClientTransaction.cc
jhiapple/trafficserver
b85d9fd8481bc55547aade92f5b9cf7a8db5099f
[ "Apache-2.0" ]
1
2021-06-13T16:20:12.000Z
2021-06-13T16:20:12.000Z
proxy/http/Http1ClientTransaction.cc
lvf25/trafficserver
3d584af796bad1e9e3c03b2af5485b630ffedafb
[ "Apache-2.0" ]
null
null
null
proxy/http/Http1ClientTransaction.cc
lvf25/trafficserver
3d584af796bad1e9e3c03b2af5485b630ffedafb
[ "Apache-2.0" ]
null
null
null
/** @file Http1ClientTransaction.cc - The Client Transaction class for Http1* @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 ownershi...
29.272727
97
0.776398
337ff47c0be48b980a20638b4332ce25cd37f980
1,765
cc
C++
pcraster/pcraster-4.2.0/pcraster-4.2.0/source/pcraster_aguila/ag_LegendBody.cc
quanpands/wflow
b454a55e4a63556eaac3fbabd97f8a0b80901e5a
[ "MIT" ]
null
null
null
pcraster/pcraster-4.2.0/pcraster-4.2.0/source/pcraster_aguila/ag_LegendBody.cc
quanpands/wflow
b454a55e4a63556eaac3fbabd97f8a0b80901e5a
[ "MIT" ]
null
null
null
pcraster/pcraster-4.2.0/pcraster-4.2.0/source/pcraster_aguila/ag_LegendBody.cc
quanpands/wflow
b454a55e4a63556eaac3fbabd97f8a0b80901e5a
[ "MIT" ]
null
null
null
#include "ag_LegendBody.h" #include <QApplication> /*! \file This file contains the implementation of the LegendBody class. */ namespace ag { //------------------------------------------------------------------------------ // DEFINITION OF STATIC CLASS MEMBERS //----------------------------------------------...
16.495327
80
0.415297
33815308bd8d30f2771ee2020bb087d87e69c96d
22,259
cpp
C++
extras/jbcoin-libpp/extras/jbcoind/src/jbcoin/json/impl/json_reader.cpp
trongnmchainos/validator-keys-tool
cae131d6ab46051c0f47509b79b6efc47a70eec0
[ "BSL-1.0" ]
2
2020-03-03T12:46:29.000Z
2020-11-14T09:52:14.000Z
extras/jbcoin-libpp/extras/jbcoind/src/jbcoin/json/impl/json_reader.cpp
trongnmchainos/validator-keys-tool
cae131d6ab46051c0f47509b79b6efc47a70eec0
[ "BSL-1.0" ]
null
null
null
extras/jbcoin-libpp/extras/jbcoind/src/jbcoin/json/impl/json_reader.cpp
trongnmchainos/validator-keys-tool
cae131d6ab46051c0f47509b79b6efc47a70eec0
[ "BSL-1.0" ]
1
2020-03-03T12:46:30.000Z
2020-03-03T12:46:30.000Z
//------------------------------------------------------------------------------ /* This file is part of jbcoind: https://github.com/jbcoin/jbcoind Copyright (c) 2012, 2013 Jbcoin Labs Inc. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby ...
23.138254
131
0.508334
3384423eb091f293f99d66f52a09831939616fde
32,676
cpp
C++
applications/mne_scan/plugins/ssvepbci/ssvepbci.cpp
13grife37/mne-cpp-swpold
9b89b3d7fe273d9f4ffd69b504e17f284eaba263
[ "BSD-3-Clause" ]
2
2017-04-20T20:21:16.000Z
2017-04-26T16:30:25.000Z
applications/mne_scan/plugins/ssvepbci/ssvepbci.cpp
13grife37/mne-cpp-swpold
9b89b3d7fe273d9f4ffd69b504e17f284eaba263
[ "BSD-3-Clause" ]
null
null
null
applications/mne_scan/plugins/ssvepbci/ssvepbci.cpp
13grife37/mne-cpp-swpold
9b89b3d7fe273d9f4ffd69b504e17f284eaba263
[ "BSD-3-Clause" ]
1
2017-04-23T15:55:31.000Z
2017-04-23T15:55:31.000Z
//============================================================================================================= /** * @file ssvepbci.cpp * @author Viktor Klüber <viktor.klueber@tu-ilmenau.de>; * Lorenz Esch <lorenz.esch@tu-ilmenau.de>; * Matti Hamalainen <msh@nmr.mgh.harvard.edu> * @version 1...
37.344
191
0.562095
33858aa8773c010d80a42ebadd564f73db9b6324
1,549
hpp
C++
include/wtengine/mnu/apply.hpp
wtfsystems/wtengine
0fb56d6eb2ac6359509e7a52876c8656da6b3ce0
[ "MIT" ]
7
2020-06-16T18:47:35.000Z
2021-08-25T13:41:13.000Z
include/wtengine/mnu/apply.hpp
wtfsystems/wtengine
0fb56d6eb2ac6359509e7a52876c8656da6b3ce0
[ "MIT" ]
15
2020-07-23T14:03:39.000Z
2022-01-28T02:32:07.000Z
include/wtengine/mnu/apply.hpp
wtfsystems/wtengine
0fb56d6eb2ac6359509e7a52876c8656da6b3ce0
[ "MIT" ]
null
null
null
/*! * WTEngine | File: apply.hpp * * \author Matthew Evans * \version 0.7 * \copyright See LICENSE.md for copyright information. * \date 2019-2021 */ #ifndef WTE_MNU_ITEM_APPLY_HPP #define WTE_MNU_ITEM_APPLY_HPP #include <string> #include <vector> #include "wtengine/mnu/item.hpp" #include "wtengine/mgr/men...
19.858974
69
0.564881
33870031d521da5415d0ce25043318749bbee966
8,413
cxx
C++
genericio/python/lib/gio.cxx
lanl/VizAly
c4ee01737e1ed9977dfb2cc882cfdc3925832a9f
[ "Unlicense", "BSD-3-Clause" ]
4
2019-02-15T20:11:18.000Z
2020-03-19T06:56:02.000Z
genericio/python/lib/gio.cxx
lanl/VizAly
c4ee01737e1ed9977dfb2cc882cfdc3925832a9f
[ "Unlicense", "BSD-3-Clause" ]
null
null
null
genericio/python/lib/gio.cxx
lanl/VizAly
c4ee01737e1ed9977dfb2cc882cfdc3925832a9f
[ "Unlicense", "BSD-3-Clause" ]
1
2020-03-19T06:56:04.000Z
2020-03-19T06:56:04.000Z
/* * Copyright (C) 2015, UChicago Argonne, LLC * All Rights Reserved * * Generic IO (ANL-15-066) * Hal Finkel, Argonne National Laboratory * * OPEN SOURCE LICENSE * * Under the terms ...
31.275093
84
0.636753
3387d237c719d492424256f0b05d786d35e7c624
6,132
cpp
C++
tbb/tbb41_20120718oss/src/test/test_task_arena.cpp
glycerine/shore-mt
39f1802ba9588bc9d32d34386ed0193477f7e8d1
[ "Spencer-94", "Spencer-86", "Xnet", "Linux-OpenIB", "Spencer-99", "X11", "CECILL-B" ]
3
2016-07-15T08:22:56.000Z
2019-10-10T02:26:08.000Z
tbb/tbb41_20120718oss/src/test/test_task_arena.cpp
glycerine/shore-mt
39f1802ba9588bc9d32d34386ed0193477f7e8d1
[ "Spencer-94", "Spencer-86", "Xnet", "Linux-OpenIB", "Spencer-99", "X11", "CECILL-B" ]
null
null
null
tbb/tbb41_20120718oss/src/test/test_task_arena.cpp
glycerine/shore-mt
39f1802ba9588bc9d32d34386ed0193477f7e8d1
[ "Spencer-94", "Spencer-86", "Xnet", "Linux-OpenIB", "Spencer-99", "X11", "CECILL-B" ]
2
2020-12-23T06:49:23.000Z
2021-03-05T07:00:28.000Z
/* Copyright 2005-2012 Intel Corporation. All Rights Reserved. This file is part of Threading Building Blocks. Threading Building Blocks 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 Foundat...
33.878453
130
0.687378
3387d358d277fef00633b6280e123b1db20e7898
14,098
cpp
C++
src/handler/handler.cpp
fangxiaoying/pangolin_aarch64_linux_gles
dadde0827b42d0c5a861a5206b4903fbe3b7806d
[ "MIT" ]
null
null
null
src/handler/handler.cpp
fangxiaoying/pangolin_aarch64_linux_gles
dadde0827b42d0c5a861a5206b4903fbe3b7806d
[ "MIT" ]
null
null
null
src/handler/handler.cpp
fangxiaoying/pangolin_aarch64_linux_gles
dadde0827b42d0c5a861a5206b4903fbe3b7806d
[ "MIT" ]
null
null
null
/* This file is part of the Pangolin Project. * http://github.com/stevenlovegrove/Pangolin * * Copyright (c) 2013 Steven Lovegrove * * 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 wit...
34.724138
168
0.594411
3387f7cceec9f7b22b107e00570175c4f67730f5
921
cpp
C++
dev/TreeView/TreeViewDragItemsCompletedEventArgs.cpp
riverar/microsoft-ui-xaml
ef3a0fcd85d200c98514e765eea94323b943cf1e
[ "MIT" ]
3,788
2019-05-07T02:41:36.000Z
2022-03-30T12:34:15.000Z
dev/TreeView/TreeViewDragItemsCompletedEventArgs.cpp
riverar/microsoft-ui-xaml
ef3a0fcd85d200c98514e765eea94323b943cf1e
[ "MIT" ]
6,170
2019-05-06T21:32:43.000Z
2022-03-31T23:46:55.000Z
dev/TreeView/TreeViewDragItemsCompletedEventArgs.cpp
riverar/microsoft-ui-xaml
ef3a0fcd85d200c98514e765eea94323b943cf1e
[ "MIT" ]
532
2019-05-07T12:15:58.000Z
2022-03-31T11:36:26.000Z
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. #include "pch.h" #include "common.h" #include "Vector.h" #include "TreeViewDragItemsCompletedEventArgs.h" TreeViewDragItemsCompletedEventArgs::TreeViewDragI...
30.7
163
0.785016
338935672ccf113b972a0343825e98e27b4f3d91
13,245
cc
C++
cpp/tests/test_five_round_distinguisher_present_sbox_small.cc
medsec/expectation-cryptanalysis-on-round-reduced-aes
52a4d5b4dd7555a1b4badafd95c5aeed92a70872
[ "Unlicense" ]
2
2019-06-04T00:52:17.000Z
2022-01-19T08:06:44.000Z
cpp/tests/test_five_round_distinguisher_present_sbox_small.cc
medsec/expectation-cryptanalysis-on-round-reduced-aes
52a4d5b4dd7555a1b4badafd95c5aeed92a70872
[ "Unlicense" ]
null
null
null
cpp/tests/test_five_round_distinguisher_present_sbox_small.cc
medsec/expectation-cryptanalysis-on-round-reduced-aes
52a4d5b4dd7555a1b4badafd95c5aeed92a70872
[ "Unlicense" ]
2
2019-06-03T08:12:29.000Z
2019-06-03T12:53:26.000Z
/** * __author__ = anonymized * __date__ = 2019-05 * __copyright__ = Creative Commons CC0 */ #include <array> #include <vector> #include <stdint.h> #include <stdlib.h> #include "ciphers/random_function.h" #include "ciphers/small_aes_present_sbox.h" #include "ciphers/small_state.h" #include "ciphers/speck64.h" ...
34.672775
80
0.564137
3389df337ccdcea5c21e2c71a970049bec6a7382
6,003
cxx
C++
StRoot/StEEmcUtil/EEfeeRaw/EEfeeDataBlock.cxx
xiaohaijin/RHIC-STAR
a305cb0a6ac15c8165bd8f0d074d7075d5e58752
[ "MIT" ]
2
2018-12-24T19:37:00.000Z
2022-02-28T06:57:20.000Z
StRoot/StEEmcUtil/EEfeeRaw/EEfeeDataBlock.cxx
xiaohaijin/RHIC-STAR
a305cb0a6ac15c8165bd8f0d074d7075d5e58752
[ "MIT" ]
null
null
null
StRoot/StEEmcUtil/EEfeeRaw/EEfeeDataBlock.cxx
xiaohaijin/RHIC-STAR
a305cb0a6ac15c8165bd8f0d074d7075d5e58752
[ "MIT" ]
null
null
null
#include <cassert> #include <string.h> #include "EEdims.h" #include "EEfeeDataBlock.h" ClassImp(EEfeeDataBlock) const int EEfeeDataBlock::DefaultMaxHead=4; const int EEfeeDataBlock::DefaultMaxData=192; //-------------------------------------------------- //-------------------------------------------------- //-----...
26.328947
126
0.47243
338b6b44beba7b2b1c91901f024088df8166a69d
486
cpp
C++
Uncategorized/bts18p1.cpp
crackersamdjam/DMOJ-Solutions
97992566595e2c7bf41b5da9217d8ef61bdd1d71
[ "MIT" ]
null
null
null
Uncategorized/bts18p1.cpp
crackersamdjam/DMOJ-Solutions
97992566595e2c7bf41b5da9217d8ef61bdd1d71
[ "MIT" ]
null
null
null
Uncategorized/bts18p1.cpp
crackersamdjam/DMOJ-Solutions
97992566595e2c7bf41b5da9217d8ef61bdd1d71
[ "MIT" ]
null
null
null
#include <bits/stdc++.h> #define MM 1002 using namespace std; string a, b; int c; int main(){ getline(cin,a); getline(cin,b); cin >> c; for(int i = 0; i < a.length(); i++){ if(a[i] != b[i]){ if(a[i] == ' ' || b[i] == ' '){ c = -1; break; ...
21.130435
51
0.358025
338d473bb21c5a5342db27c4e180bfd44e2c98ad
178
cpp
C++
OO1Lab2V1/Carolija.cpp
shkemilo/Lab1HomeworkOO1
3f32a980c44c9df009c128791e28e90d23c86358
[ "MIT" ]
null
null
null
OO1Lab2V1/Carolija.cpp
shkemilo/Lab1HomeworkOO1
3f32a980c44c9df009c128791e28e90d23c86358
[ "MIT" ]
null
null
null
OO1Lab2V1/Carolija.cpp
shkemilo/Lab1HomeworkOO1
3f32a980c44c9df009c128791e28e90d23c86358
[ "MIT" ]
null
null
null
#include <string> #include "Carolija.h" Carolija::Carolija(std::string ime, int cost) : Karta(ime, cost) { } std::string Carolija::GetCategory() const { return "CAROLIJA"; }
13.692308
64
0.691011
3391d4ec4e8475f0efde936f6982ebe7ad0db7af
4,624
cc
C++
EventGenerator/src/PrimaryProtonGunR_module.cc
pavel1murat/Offline
729840761324a4d9c49c037114dd3a3ec38e3358
[ "Apache-2.0" ]
null
null
null
EventGenerator/src/PrimaryProtonGunR_module.cc
pavel1murat/Offline
729840761324a4d9c49c037114dd3a3ec38e3358
[ "Apache-2.0" ]
null
null
null
EventGenerator/src/PrimaryProtonGunR_module.cc
pavel1murat/Offline
729840761324a4d9c49c037114dd3a3ec38e3358
[ "Apache-2.0" ]
null
null
null
/* This is a Replicated Module. A plug-in for running PrimaryProtonGun-based event generator for running in MT art. It produces a GenParticleCollection of primary protons using the PrimaryProtonGun. These Collections are used in Mu2eG4_module.cc. Original author Lisa Goodenough */ // Mu2e includes. #in...
34.766917
113
0.683824
3392c25bc82629445d57429d1aaac874c7306995
635
hpp
C++
pythran/pythonic/numpy/ones_like.hpp
rfiischer/pythran
a580245b1b45e5eb0df01c518e442041b89afa21
[ "BSD-3-Clause" ]
null
null
null
pythran/pythonic/numpy/ones_like.hpp
rfiischer/pythran
a580245b1b45e5eb0df01c518e442041b89afa21
[ "BSD-3-Clause" ]
null
null
null
pythran/pythonic/numpy/ones_like.hpp
rfiischer/pythran
a580245b1b45e5eb0df01c518e442041b89afa21
[ "BSD-3-Clause" ]
null
null
null
#ifndef PYTHONIC_NUMPY_ONESLIKE_HPP #define PYTHONIC_NUMPY_ONESLIKE_HPP #include "pythonic/include/numpy/ones_like.hpp" #include "pythonic/utils/functor.hpp" #include "pythonic/numpy/ones.hpp" PYTHONIC_NS_BEGIN namespace numpy { template <class E, class dtype> auto ones_like(E const &expr, dtype d) -> decltype...
21.166667
75
0.710236
33932ff95bdbcc48833f4df2f6624d26ae3dcf50
23,687
cc
C++
third_party/libvpx/source/libvpx/test/vp9_quantize_test.cc
zipated/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
2,151
2020-04-18T07:31:17.000Z
2022-03-31T08:39:18.000Z
third_party/libvpx/source/libvpx/test/vp9_quantize_test.cc
cangulcan/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
395
2020-04-18T08:22:18.000Z
2021-12-08T13:04:49.000Z
third_party/libvpx/source/libvpx/test/vp9_quantize_test.cc
cangulcan/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
338
2020-04-18T08:03:10.000Z
2022-03-29T12:33:22.000Z
/* * Copyright (c) 2014 The WebM project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributin...
40.284014
80
0.615781
3393c2e5e346e56e56e54c1a428f3a9e3110f643
3,341
cpp
C++
bindings/java/LSFJava/jni/XControllerServiceManagerCallback.cpp
alljoyn/lighting-apps
f423a252d64cbd41d575dcfe554a1cb5b49fa307
[ "Apache-2.0" ]
null
null
null
bindings/java/LSFJava/jni/XControllerServiceManagerCallback.cpp
alljoyn/lighting-apps
f423a252d64cbd41d575dcfe554a1cb5b49fa307
[ "Apache-2.0" ]
null
null
null
bindings/java/LSFJava/jni/XControllerServiceManagerCallback.cpp
alljoyn/lighting-apps
f423a252d64cbd41d575dcfe554a1cb5b49fa307
[ "Apache-2.0" ]
null
null
null
/****************************************************************************** * Copyright (c) Open Connectivity Foundation (OCF), AllJoyn Open Source * Project (AJOSP) Contributors and others. * * SPDX-License-Identifier: Apache-2.0 * * All rights reserved. This program and the accompanying ...
37.539326
154
0.709368
33945075e34bacee54c2f5c3effe95f5674874e5
3,225
cpp
C++
src/MushGame/MushGameMessageControlInfo.cpp
quimnuss/adanaxis
a04eb945fe808aeb9be5da305a37ff47e04dd006
[ "MIT" ]
null
null
null
src/MushGame/MushGameMessageControlInfo.cpp
quimnuss/adanaxis
a04eb945fe808aeb9be5da305a37ff47e04dd006
[ "MIT" ]
null
null
null
src/MushGame/MushGameMessageControlInfo.cpp
quimnuss/adanaxis
a04eb945fe808aeb9be5da305a37ff47e04dd006
[ "MIT" ]
null
null
null
//%Header { /***************************************************************************** * * File: src/MushGame/MushGameMessageControlInfo.cpp * * Author: Andy Southgate 2002-2005 * * This file contains original work by Andy Southgate. The author and his * employer (Mushware Limited) irrevocably waive all of ...
28.794643
116
0.674419
33949f698540e0c307de44ebe94117d7d98436bd
95,213
cpp
C++
HotSpot1.7-JVM-Linux-x86/src/share/vm/adlc/output_h.cpp
codefollower/Open-Source-Research
b9f2aed9d0f060b80be45f713c3d48fe91f247b2
[ "Apache-2.0" ]
184
2015-01-04T03:38:20.000Z
2022-03-30T05:47:21.000Z
HotSpot1.7/src/share/vm/adlc/output_h.cpp
doczyw/Open-Source-Research
b9f2aed9d0f060b80be45f713c3d48fe91f247b2
[ "Apache-2.0" ]
1
2016-01-17T09:18:17.000Z
2016-01-17T09:18:17.000Z
HotSpot1.7/src/share/vm/adlc/output_h.cpp
doczyw/Open-Source-Research
b9f2aed9d0f060b80be45f713c3d48fe91f247b2
[ "Apache-2.0" ]
101
2015-01-16T23:46:31.000Z
2022-03-30T05:47:06.000Z
/* * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
43.258973
232
0.602449
3396f42fe13c591266185b7fc6000f416a4fbfb5
5,273
cc
C++
chrome/browser/android/preferences/prefs_unittest.cc
sarang-apps/darshan_browser
173649bb8a7c656dc60784d19e7bb73e07c20daa
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
chrome/browser/android/preferences/prefs_unittest.cc
sarang-apps/darshan_browser
173649bb8a7c656dc60784d19e7bb73e07c20daa
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
chrome/browser/android/preferences/prefs_unittest.cc
sarang-apps/darshan_browser
173649bb8a7c656dc60784d19e7bb73e07c20daa
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
// Copyright 2017 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/android/preferences/prefs.h" #include "base/stl_util.h" #include "chrome/browser/android/preferences/pref_service_bridge.h" #inc...
47.504505
79
0.779632
3397195f0f5fc2b4b3f9b200ccb92e83f1cb48f7
6,744
hpp
C++
se_core/include/se/geometry/octree_collision.hpp
hexagon-geo-surv/supereight-public
29a978956d2b169a3f34eed9bc374e325551c10b
[ "MIT" ]
null
null
null
se_core/include/se/geometry/octree_collision.hpp
hexagon-geo-surv/supereight-public
29a978956d2b169a3f34eed9bc374e325551c10b
[ "MIT" ]
null
null
null
se_core/include/se/geometry/octree_collision.hpp
hexagon-geo-surv/supereight-public
29a978956d2b169a3f34eed9bc374e325551c10b
[ "MIT" ]
null
null
null
/* Copyright 2016 Emanuele Vespa, Imperial College London 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 ...
37.675978
96
0.714561
3397507940455c76012aaa8f7131477356eca3a0
11,711
hh
C++
third_party/masstree-beta/masstree_remove.hh
nilyibo/eRPC
c9ec2c81672c45cca04a8bb2e0d7887c3e8cff32
[ "Apache-2.0" ]
1
2022-03-08T00:36:10.000Z
2022-03-08T00:36:10.000Z
third_party/masstree-beta/masstree_remove.hh
nilyibo/eRPC
c9ec2c81672c45cca04a8bb2e0d7887c3e8cff32
[ "Apache-2.0" ]
null
null
null
third_party/masstree-beta/masstree_remove.hh
nilyibo/eRPC
c9ec2c81672c45cca04a8bb2e0d7887c3e8cff32
[ "Apache-2.0" ]
null
null
null
/* Masstree * Eddie Kohler, Yandong Mao, Robert Morris * Copyright (c) 2012-2016 President and Fellows of Harvard College * Copyright (c) 2012-2016 Massachusetts Institute of Technology * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation...
31.566038
112
0.590129
3397d33cd6d6363a04c6089ed501d6436280c7cb
384
hpp
C++
Test/Common.hpp
chrisoldwood/Core
9c9dd95d8912c0108dc14e2409e6368bcdd7687e
[ "MIT" ]
6
2017-04-27T14:24:50.000Z
2020-09-11T13:13:05.000Z
Test/Common.hpp
chrisoldwood/XML
78913e7b9fbc1fbfec3779652d034ebd150668bc
[ "MIT" ]
1
2019-08-08T23:02:46.000Z
2020-04-29T21:42:31.000Z
Test/Common.hpp
chrisoldwood/XML
78913e7b9fbc1fbfec3779652d034ebd150668bc
[ "MIT" ]
1
2019-07-31T08:32:22.000Z
2019-07-31T08:32:22.000Z
//////////////////////////////////////////////////////////////////////////////// //! \file Common.hpp //! \brief File to include the most commonly used headers. //! \author Chris Oldwood // Check for previous inclusion #ifndef APP_COMMON_HPP #define APP_COMMON_HPP #if _MSC_VER > 1000 #pragma once #endif #include ...
21.333333
80
0.580729
3398acb2bdb811ba7dd7a028188a3433e558a85a
1,387
cpp
C++
learncpp/classes/exercise1.cpp
Ethic41/learning_c-
17a444d5a41d4f559330cf54bfb4bf6d0f7bd8b3
[ "MIT" ]
2
2019-11-06T20:14:18.000Z
2020-12-26T20:30:28.000Z
learncpp/classes/exercise1.cpp
Ethic41/learning_c-
17a444d5a41d4f559330cf54bfb4bf6d0f7bd8b3
[ "MIT" ]
null
null
null
learncpp/classes/exercise1.cpp
Ethic41/learning_c-
17a444d5a41d4f559330cf54bfb4bf6d0f7bd8b3
[ "MIT" ]
null
null
null
/** * -=-<[ Bismillahirrahmanirrahim ]>-=- * Date : 2021-01-11 06:31:32 * Author : Dahir Muhammad Dahir (dahirmuhammad3@gmail.com) * About : Compile with g++ */ #include <iostream> #include <string> #include <sstream> using namespace std; class Student { private: int age; string first...
19.814286
96
0.516222
33994ee700fdc9232832e312423cbf656c2b79b4
35,534
cpp
C++
src/sedml/SedFunctionalRange.cpp
AMDmi3/libSEDML
a59c87df9298c8d72b199531f96b531bf4b4d9bb
[ "BSD-2-Clause" ]
7
2016-01-12T03:53:45.000Z
2019-10-17T21:23:37.000Z
src/sedml/SedFunctionalRange.cpp
AMDmi3/libSEDML
a59c87df9298c8d72b199531f96b531bf4b4d9bb
[ "BSD-2-Clause" ]
138
2015-05-29T19:18:34.000Z
2022-03-07T08:32:44.000Z
src/sedml/SedFunctionalRange.cpp
AMDmi3/libSEDML
a59c87df9298c8d72b199531f96b531bf4b4d9bb
[ "BSD-2-Clause" ]
12
2015-02-24T23:37:26.000Z
2021-11-02T17:11:27.000Z
/** * @file SedFunctionalRange.cpp * @brief Implementation of the SedFunctionalRange class. * @author DEVISER * * <!-------------------------------------------------------------------------- * This file is part of libSEDML. Please visit http://sed-ml.org for more * information about SED-ML. The latest version of...
19.675526
80
0.69328
3399b4eeb9d5e099b57c74d423684c4d0aec8b53
18,883
hpp
C++
reef-env/rocclr/device/comgrctx.hpp
SJTU-IPADS/reef-artifacts
8750974f2d6655525a2cc317bf2471914fe68dab
[ "Apache-2.0" ]
7
2022-03-23T07:04:20.000Z
2022-03-30T02:44:42.000Z
reef-env/rocclr/device/comgrctx.hpp
SJTU-IPADS/reef-artifacts
8750974f2d6655525a2cc317bf2471914fe68dab
[ "Apache-2.0" ]
null
null
null
reef-env/rocclr/device/comgrctx.hpp
SJTU-IPADS/reef-artifacts
8750974f2d6655525a2cc317bf2471914fe68dab
[ "Apache-2.0" ]
null
null
null
/* Copyright (c) 2008-present Advanced Micro Devices, 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, me...
66.25614
228
0.829794
339ca18e3a3898ed03dc2eac6a3b97a6f2dd0139
47,119
cxx
C++
inetcore/mshtml/src/edit/edutil.cxx
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
inetcore/mshtml/src/edit/edutil.cxx
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
inetcore/mshtml/src/edit/edutil.cxx
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
//+--------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation, 1998. // // File: EDUTIL.CXX // // Contents: Utility functions for CMsHtmled // // History: 15-Jan-98 raminh Created // // Notes: This file contains some utility function...
32.185109
131
0.511407
339cfee207ba0db4e066b4a04a55a4a710578796
8,710
cpp
C++
RemoteControl/LinuxDevice.cpp
dwrobel/WPEFrameworkPlugins
0cf410aebe5b9d7a516eb0995e32383cc944f838
[ "Apache-2.0" ]
null
null
null
RemoteControl/LinuxDevice.cpp
dwrobel/WPEFrameworkPlugins
0cf410aebe5b9d7a516eb0995e32383cc944f838
[ "Apache-2.0" ]
null
null
null
RemoteControl/LinuxDevice.cpp
dwrobel/WPEFrameworkPlugins
0cf410aebe5b9d7a516eb0995e32383cc944f838
[ "Apache-2.0" ]
null
null
null
#include "RemoteAdministrator.h" #include <interfaces/IKeyHandler.h> #include <libudev.h> #include <linux/uinput.h> namespace WPEFramework { namespace Plugin { static char Locator[] = _T("/dev/input"); class LinuxDevice : public Exchange::IKeyProducer, Core::Thread { private: LinuxDevice(const L...
32.259259
137
0.443169
339dce0367f9e7ea9b31beb134823f9b12d7d9d2
1,900
cpp
C++
src/+cv/colorChange.cpp
1123852253/mexopencv
17db690133299f561924a45e9092673a4df66c5b
[ "BSD-3-Clause" ]
571
2015-01-04T06:23:19.000Z
2022-03-31T07:37:19.000Z
src/+cv/colorChange.cpp
1123852253/mexopencv
17db690133299f561924a45e9092673a4df66c5b
[ "BSD-3-Clause" ]
362
2015-01-06T14:20:46.000Z
2022-01-20T08:10:46.000Z
src/+cv/colorChange.cpp
1123852253/mexopencv
17db690133299f561924a45e9092673a4df66c5b
[ "BSD-3-Clause" ]
300
2015-01-20T03:21:27.000Z
2022-03-31T07:36:37.000Z
/** * @file colorChange.cpp * @brief mex interface for cv::colorChange * @ingroup photo * @author Amro * @date 2015 */ #include "mexopencv.hpp" #include "opencv2/photo.hpp" using namespace std; using namespace cv; /** * Main entry called from Matlab * @param nlhs number of left-hand-side arguments * @param pl...
29.230769
76
0.584737
339e0d3a8aba3297551cefdabb6e799b63201e1a
438,399
cc
C++
deps/v8/src/hydrogen.cc
Myrannas/runtime
d81f9ec641bb84e6713ae2ad8de29e1e54c65f4d
[ "ECL-2.0", "Apache-2.0" ]
1
2018-03-06T20:08:50.000Z
2018-03-06T20:08:50.000Z
deps/v8/src/hydrogen.cc
Myrannas/runtime
d81f9ec641bb84e6713ae2ad8de29e1e54c65f4d
[ "ECL-2.0", "Apache-2.0" ]
null
null
null
deps/v8/src/hydrogen.cc
Myrannas/runtime
d81f9ec641bb84e6713ae2ad8de29e1e54c65f4d
[ "ECL-2.0", "Apache-2.0" ]
null
null
null
// Copyright 2013 the V8 project 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 "src/hydrogen.h" #include <algorithm> #include "src/v8.h" #include "src/allocation-site-scopes.h" #include "src/codegen.h" #include "src/ful...
35.463436
80
0.654931
339e40e5fab70166359edc36a8c25359479c08d0
470
cpp
C++
Exemplo13/sources/data/Face.cpp
alencarrh/ComputacaoGrafica
b7ea6b46956e47f695e4437fe254fd974a2b90de
[ "MIT" ]
null
null
null
Exemplo13/sources/data/Face.cpp
alencarrh/ComputacaoGrafica
b7ea6b46956e47f695e4437fe254fd974a2b90de
[ "MIT" ]
null
null
null
Exemplo13/sources/data/Face.cpp
alencarrh/ComputacaoGrafica
b7ea6b46956e47f695e4437fe254fd974a2b90de
[ "MIT" ]
null
null
null
#include "../../headers/data/Face.h" Face::Face() {} Face::~Face() { vertices.clear(); vertices.shrink_to_fit(); normais.clear(); normais.shrink_to_fit(); textures.clear(); textures.shrink_to_fit(); } void Face::addVerticeId(int idVertice) { this->vertices.push_back(idVertice); } void Face::addN...
17.407407
40
0.682979
339f12faeca90e0dda5926fb9e53fdad5c1fabea
177
cpp
C++
src/Example/project_WhiteBoxStudio/code/WhiteboxTestingPlatform/WhiteboxTestingPlatform/WhiteboxTestingPlatform/ThirdStandardDataModel.cpp
yds086/HereticOS-ObjectSystem
bdbf48bc3a5ef96c54b3d1652b90740c28c5cf49
[ "Apache-2.0" ]
5
2017-09-07T06:58:34.000Z
2021-07-21T08:41:26.000Z
src/Example/project_WhiteBoxStudio/code/WhiteboxTestingPlatform/WhiteboxTestingPlatform/WhiteboxTestingPlatform/ThirdStandardDataModel.cpp
yds086/HereticOS-ObjectSystem
bdbf48bc3a5ef96c54b3d1652b90740c28c5cf49
[ "Apache-2.0" ]
null
null
null
src/Example/project_WhiteBoxStudio/code/WhiteboxTestingPlatform/WhiteboxTestingPlatform/WhiteboxTestingPlatform/ThirdStandardDataModel.cpp
yds086/HereticOS-ObjectSystem
bdbf48bc3a5ef96c54b3d1652b90740c28c5cf49
[ "Apache-2.0" ]
2
2017-09-27T06:31:11.000Z
2020-05-13T12:29:58.000Z
#include "StdAfx.h" #include "ThirdStandardDataModel.h" CThirdStandardDataModel::CThirdStandardDataModel(void) { } CThirdStandardDataModel::~CThirdStandardDataModel(void) { }
16.090909
55
0.813559
339fd28879d12676327871f30ea0de3c01012193
4,667
cpp
C++
Nacro/SDK/FN_GA_DefaultPlayer_InteractSearch_functions.cpp
Milxnor/Nacro
eebabf662bbce6d5af41820ea0342d3567a0aecc
[ "BSD-2-Clause" ]
11
2021-08-08T23:25:10.000Z
2022-02-19T23:07:22.000Z
Nacro/SDK/FN_GA_DefaultPlayer_InteractSearch_functions.cpp
Milxnor/Nacro
eebabf662bbce6d5af41820ea0342d3567a0aecc
[ "BSD-2-Clause" ]
1
2022-01-01T22:51:59.000Z
2022-01-08T16:14:15.000Z
Nacro/SDK/FN_GA_DefaultPlayer_InteractSearch_functions.cpp
Milxnor/Nacro
eebabf662bbce6d5af41820ea0342d3567a0aecc
[ "BSD-2-Clause" ]
8
2021-08-09T13:51:54.000Z
2022-01-26T20:33:37.000Z
// Fortnite (1.8) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "../SDK.hpp" namespace SDK { //--------------------------------------------------------------------------- //Functions //--------------------------------------------------------------------------- // Function GA_DefaultPlayer_InteractSea...
37.943089
185
0.78573
33a03b45d3a7f9aad320034c272f015d93063494
208
cpp
C++
ue/Drone_Simulator/Drone_Simulator.cpp
gabriserra/CatchingDrone
65bab95d3dbd8085f79082db672954f752c77b12
[ "MIT" ]
null
null
null
ue/Drone_Simulator/Drone_Simulator.cpp
gabriserra/CatchingDrone
65bab95d3dbd8085f79082db672954f752c77b12
[ "MIT" ]
null
null
null
ue/Drone_Simulator/Drone_Simulator.cpp
gabriserra/CatchingDrone
65bab95d3dbd8085f79082db672954f752c77b12
[ "MIT" ]
null
null
null
// Fill out your copyright notice in the Description page of Project Settings. #include "Drone_Simulator.h" IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, Drone_Simulator, "Drone_Simulator" );
34.666667
93
0.802885
33a08d1dba7069d2c5790e63ee7974f3c9c0fb3f
83,350
cpp
C++
src/PE/EnumToString.cpp
junghee/LIEF
de7492ee49ef813cd8db3a858892e4ed5a5638c5
[ "Apache-2.0" ]
2,999
2017-04-03T13:43:23.000Z
2022-03-31T15:24:27.000Z
src/PE/EnumToString.cpp
junghee/LIEF
de7492ee49ef813cd8db3a858892e4ed5a5638c5
[ "Apache-2.0" ]
626
2017-04-04T15:57:04.000Z
2022-03-31T19:25:18.000Z
src/PE/EnumToString.cpp
junghee/LIEF
de7492ee49ef813cd8db3a858892e4ed5a5638c5
[ "Apache-2.0" ]
498
2017-04-04T14:18:25.000Z
2022-03-29T19:31:38.000Z
/* Copyright 2017 - 2021 R. Thomas * Copyright 2017 - 2021 Quarkslab * * 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...
59.92092
117
0.623863
33a1533625818e7d82b92ebf0eadfb77d6937f29
3,749
cpp
C++
TabGraph/src/Driver/OpenGL/Renderer/Light/PointLightRenderer.cpp
Gpinchon/TabGraph
29eae2d9982b6ce3e4ff43c707c87c2f57ab39bb
[ "Apache-2.0" ]
1
2020-08-28T09:35:18.000Z
2020-08-28T09:35:18.000Z
TabGraph/src/Driver/OpenGL/Renderer/Light/PointLightRenderer.cpp
Gpinchon/TabGraph
29eae2d9982b6ce3e4ff43c707c87c2f57ab39bb
[ "Apache-2.0" ]
null
null
null
TabGraph/src/Driver/OpenGL/Renderer/Light/PointLightRenderer.cpp
Gpinchon/TabGraph
29eae2d9982b6ce3e4ff43c707c87c2f57ab39bb
[ "Apache-2.0" ]
1
2020-10-08T11:21:13.000Z
2020-10-08T11:21:13.000Z
/* * @Author: gpinchon * @Date: 2021-04-11 20:53:00 * @Last Modified by: gpinchon * @Last Modified time: 2021-04-11 20:53:22 */ #include <Driver/OpenGL/Renderer/Light/PointLightRenderer.hpp> #include <Light/PointLight.hpp> #include <Surface/SphereMesh.hpp> #include <Renderer/Surface/GeometryRenderer.hpp>...
34.081818
113
0.696452
33a6f4edb73161265f12cd527183a5926bdfc4e1
21,467
cpp
C++
iyan3d/trunk/assimp-master/code/ComputeUVMappingProcess.cpp
RCGamer21/appanimar
4161f1c2dc319256b5e489cdbb439757e03bcd07
[ "MIT" ]
1
2019-12-21T08:15:08.000Z
2019-12-21T08:15:08.000Z
iyan3d/trunk/assimp-master/code/ComputeUVMappingProcess.cpp
lanping100/Iyan3d
c21bb191cec06039a3f6e9b2f19381cbd7537757
[ "MIT" ]
null
null
null
iyan3d/trunk/assimp-master/code/ComputeUVMappingProcess.cpp
lanping100/Iyan3d
c21bb191cec06039a3f6e9b2f19381cbd7537757
[ "MIT" ]
null
null
null
/* Open Asset Import Library (assimp) ---------------------------------------------------------------------- Copyright (c) 2006-2016, assimp team All rights reserved. Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions ...
42.508911
120
0.532026
33a7bb186eb03cb7a7360dc6d49ac69078089216
3,126
cpp
C++
source/Core/AddressResolverFileLine.cpp
xiaobai/swift-lldb
9238527ce430e6837108a16d2a91b147551fb83c
[ "Apache-2.0" ]
765
2015-12-03T16:44:59.000Z
2022-03-07T12:41:10.000Z
source/Core/AddressResolverFileLine.cpp
xiaobai/swift-lldb
9238527ce430e6837108a16d2a91b147551fb83c
[ "Apache-2.0" ]
1,815
2015-12-11T23:56:05.000Z
2020-01-10T19:28:43.000Z
source/Core/AddressResolverFileLine.cpp
xiaobai/swift-lldb
9238527ce430e6837108a16d2a91b147551fb83c
[ "Apache-2.0" ]
284
2015-12-03T16:47:25.000Z
2022-03-12T05:39:48.000Z
//===-- AddressResolverFileLine.cpp -----------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
36.348837
80
0.631798
33a81c2af4a95b2a563fb7c3d993bbd10e9e2c52
6,236
cpp
C++
libs/StateSync-pinvoke-cpp/src/ReplicatedState-pinvoke.cpp
ivte-ms/MixedReality-Sharing
edb38467be6dcd09447962a3c1f998fe700b8832
[ "MIT" ]
24
2019-12-11T18:56:39.000Z
2021-12-28T02:48:59.000Z
libs/StateSync-pinvoke-cpp/src/ReplicatedState-pinvoke.cpp
ivte-ms/MixedReality-Sharing
edb38467be6dcd09447962a3c1f998fe700b8832
[ "MIT" ]
23
2019-12-11T20:21:30.000Z
2020-02-12T12:12:05.000Z
libs/StateSync-pinvoke-cpp/src/ReplicatedState-pinvoke.cpp
ivte-ms/MixedReality-Sharing
edb38467be6dcd09447962a3c1f998fe700b8832
[ "MIT" ]
14
2019-12-11T18:56:44.000Z
2021-06-09T18:13:10.000Z
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #include "src/pch.h" #include <Microsoft/MixedReality/Sharing/StateSync/NetworkConnection.h> #include <Microsoft/MixedReality/Sharing/StateSync/NetworkListener.h> #include <Microsoft/MixedReality/Sharing/StateSync/NetworkManager.h> #include <M...
37.119048
88
0.747915
33a8b6d7bde33154b777c11f6be691b84d5f1873
23,824
cc
C++
chrome/browser/safe_browsing/safe_browsing_test.cc
robclark/chromium
f097b6ea775c27e5352c94ddddd264dd2af21479
[ "BSD-3-Clause" ]
1
2019-07-22T23:03:26.000Z
2019-07-22T23:03:26.000Z
chrome/browser/safe_browsing/safe_browsing_test.cc
robclark/chromium
f097b6ea775c27e5352c94ddddd264dd2af21479
[ "BSD-3-Clause" ]
null
null
null
chrome/browser/safe_browsing/safe_browsing_test.cc
robclark/chromium
f097b6ea775c27e5352c94ddddd264dd2af21479
[ "BSD-3-Clause" ]
null
null
null
// 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. // // This test uses the safebrowsing test server published at // http://code.google.com/p/google-safe-browsing/ to test the safebrowsing // protocol i...
36.428135
80
0.694384
33aa7913d2ba041c244e75a53cf72d2ae073a76e
3,385
cpp
C++
src/plugins/nacheku/directorywatcher.cpp
MellonQ/leechcraft
71cbb238d2dade56b3865278a6a8e6a58c217fc5
[ "BSL-1.0" ]
1
2017-01-12T07:05:45.000Z
2017-01-12T07:05:45.000Z
src/plugins/nacheku/directorywatcher.cpp
MellonQ/leechcraft
71cbb238d2dade56b3865278a6a8e6a58c217fc5
[ "BSL-1.0" ]
null
null
null
src/plugins/nacheku/directorywatcher.cpp
MellonQ/leechcraft
71cbb238d2dade56b3865278a6a8e6a58c217fc5
[ "BSL-1.0" ]
null
null
null
/********************************************************************** * LeechCraft - modular cross-platform feature rich internet client. * Copyright (C) 2006-2014 Georg Rudoy * * Boost Software License - Version 1.0 - August 17th, 2003 * * Permission is hereby granted, free of charge, to any person or organiz...
31.055046
85
0.684195
33ab91c9a2e3071407b27fa4c02d1b3f11630a69
24,414
cc
C++
apps/rosetta/riflib/rifdock_tasks/OutputResultsTasks.cc
chnorn/rifdock
5a1e50e53ce4af1f58edce2ca75d30cfb8d27838
[ "Apache-2.0" ]
null
null
null
apps/rosetta/riflib/rifdock_tasks/OutputResultsTasks.cc
chnorn/rifdock
5a1e50e53ce4af1f58edce2ca75d30cfb8d27838
[ "Apache-2.0" ]
null
null
null
apps/rosetta/riflib/rifdock_tasks/OutputResultsTasks.cc
chnorn/rifdock
5a1e50e53ce4af1f58edce2ca75d30cfb8d27838
[ "Apache-2.0" ]
null
null
null
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*- // vi: set ts=2 noet: // // (c) Copyright Rosetta Commons Member Institutions. // (c) This file is part of the Rosetta software suite and is made available under license. // (c) The Rosetta software is developed by the co...
44.714286
161
0.564594
33abe561f89c1c591a40feb8a2272c0547fb96f2
2,528
cpp
C++
src/client/particles/FireworkParticle.cpp
AzariasB/MultiPlayerPong
4b9af38198945b31b05ca83acadccef333e32284
[ "MIT" ]
null
null
null
src/client/particles/FireworkParticle.cpp
AzariasB/MultiPlayerPong
4b9af38198945b31b05ca83acadccef333e32284
[ "MIT" ]
null
null
null
src/client/particles/FireworkParticle.cpp
AzariasB/MultiPlayerPong
4b9af38198945b31b05ca83acadccef333e32284
[ "MIT" ]
null
null
null
/* * The MIT License * * Copyright 2017-2019 azarias. * * 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, mo...
30.095238
108
0.721915
33acac7974d9e7125b1d23005899f74f4db4c16f
2,616
cpp
C++
ls_base/malloc_hook.cpp
bbxionglei/LoveSnow
f6f4b73e9cc18817480cb53a08d936c0e0cc8029
[ "MIT" ]
3
2019-04-19T02:59:36.000Z
2019-10-16T05:55:28.000Z
ls_base/malloc_hook.cpp
bbxionglei/LoveSnow
f6f4b73e9cc18817480cb53a08d936c0e0cc8029
[ "MIT" ]
2
2019-11-11T04:28:42.000Z
2019-11-11T04:30:54.000Z
ls_base/malloc_hook.cpp
bbxionglei/LoveSnow
f6f4b73e9cc18817480cb53a08d936c0e0cc8029
[ "MIT" ]
null
null
null
#include <stdio.h> #include <string.h> #include <assert.h> #include <stdlib.h> #include <lua.hpp> #include <stdio.h> #include "malloc_hook.h" #include "ls.h" // turn on MEMORY_CHECK can do more memory check, such as double free // #define MEMORY_CHECK #define MEMORY_ALLOCTAG 0x20140605 #define MEMORY_FREETAG 0x0badf...
19.235294
108
0.676988
33ad6e203837391221313ed27c618f0e5d0a08ed
3,280
cpp
C++
extensions/http-curl/tests/C2VerifyServeResults.cpp
kevdoran/nifi-minifi-cpp
4bb1fd97f5df103d5bee9a884839b24e2f77a2c5
[ "Apache-2.0", "OpenSSL" ]
null
null
null
extensions/http-curl/tests/C2VerifyServeResults.cpp
kevdoran/nifi-minifi-cpp
4bb1fd97f5df103d5bee9a884839b24e2f77a2c5
[ "Apache-2.0", "OpenSSL" ]
null
null
null
extensions/http-curl/tests/C2VerifyServeResults.cpp
kevdoran/nifi-minifi-cpp
4bb1fd97f5df103d5bee9a884839b24e2f77a2c5
[ "Apache-2.0", "OpenSSL" ]
null
null
null
/** * * 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 ...
33.814433
122
0.716159
33aedd12a0d47e9eb26bfe0db53dbf7f807298da
9,214
hh
C++
centreon-engine/modules/external_commands/inc/com/centreon/engine/modules/external_commands/processing.hh
centreon/centreon-collect
e63fc4d888a120d588a93169e7d36b360616bdee
[ "Unlicense" ]
8
2020-07-26T09:12:02.000Z
2022-03-30T17:24:29.000Z
centreon-engine/modules/external_commands/inc/com/centreon/engine/modules/external_commands/processing.hh
centreon/centreon-collect
e63fc4d888a120d588a93169e7d36b360616bdee
[ "Unlicense" ]
47
2020-06-18T12:11:37.000Z
2022-03-16T10:28:56.000Z
centreon-engine/modules/external_commands/inc/com/centreon/engine/modules/external_commands/processing.hh
centreon/centreon-collect
e63fc4d888a120d588a93169e7d36b360616bdee
[ "Unlicense" ]
5
2020-06-29T14:22:02.000Z
2022-03-17T10:34:10.000Z
/* ** Copyright 2011-2019 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 hope...
31.233898
80
0.661059
33af8d76293ddeefd555843efc6a527f36cbe0df
32,679
cpp
C++
lib/AST/DeclContext.cpp
arguiot/swift
dbe99d771e4eb3d3d9472201746ddc7950036dc7
[ "Apache-2.0" ]
1
2020-10-13T07:26:20.000Z
2020-10-13T07:26:20.000Z
lib/AST/DeclContext.cpp
arguiot/swift
dbe99d771e4eb3d3d9472201746ddc7950036dc7
[ "Apache-2.0" ]
null
null
null
lib/AST/DeclContext.cpp
arguiot/swift
dbe99d771e4eb3d3d9472201746ddc7950036dc7
[ "Apache-2.0" ]
null
null
null
//===--- DeclContext.cpp - DeclContext implementation ---------------------===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/L...
32.419643
94
0.687383
33b0d447893668d87306e25e7210c48469f6d67e
23,895
hxx
C++
Modules/IO/ImageBase/include/itkConvertPixelBuffer.hxx
jond01/ITK
88d152f65ff8982d4b926e8ab01f81dddf06291b
[ "Apache-2.0" ]
945
2015-01-09T00:43:52.000Z
2022-03-30T08:23:02.000Z
Modules/IO/ImageBase/include/itkConvertPixelBuffer.hxx
jond01/ITK
88d152f65ff8982d4b926e8ab01f81dddf06291b
[ "Apache-2.0" ]
2,354
2015-02-04T21:54:21.000Z
2022-03-31T20:58:21.000Z
Modules/IO/ImageBase/include/itkConvertPixelBuffer.hxx
jond01/ITK
88d152f65ff8982d4b926e8ab01f81dddf06291b
[ "Apache-2.0" ]
566
2015-01-04T14:26:57.000Z
2022-03-18T20:33:18.000Z
/*========================================================================= * * Copyright NumFOCUS * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.or...
39.561258
120
0.670475
33b14adf56d17d2402ebe668b7e63522721a6d99
35,998
cpp
C++
TEDStore/src/client/chunker.cpp
jingwei87/ted
112ec68b33fd00b4adb89c99af2fe94a9376da47
[ "MIT" ]
4
2020-03-04T18:36:23.000Z
2021-06-11T10:25:25.000Z
TEDStore/src/client/chunker.cpp
jingwei87/ted
112ec68b33fd00b4adb89c99af2fe94a9376da47
[ "MIT" ]
null
null
null
TEDStore/src/client/chunker.cpp
jingwei87/ted
112ec68b33fd00b4adb89c99af2fe94a9376da47
[ "MIT" ]
3
2020-11-22T23:29:52.000Z
2021-11-05T14:00:29.000Z
#include "chunker.hpp" #include "sys/time.h" extern Configure config; struct timeval timestartChunker; struct timeval timeendChunker; struct timeval timestartChunker_VarSizeInsert; struct timeval timeendChunker_VarSizeInsert; struct timeval timestartChunker_VarSizeHash; struct timeval timeendChunker_VarSizeHash; uint...
39.689085
208
0.617201
33b44f8e28ed0adc0ab594d2485f0e2d63b25e6e
8,664
cpp
C++
libs/base/src/utils/CMHPropertiesValuesList.cpp
tg1716/SLAM
b8583fb98a4241d87ae08ac78b0420c154f5e1a5
[ "BSD-3-Clause" ]
4
2017-08-04T15:44:04.000Z
2021-02-02T02:00:18.000Z
libs/base/src/utils/CMHPropertiesValuesList.cpp
tg1716/SLAM
b8583fb98a4241d87ae08ac78b0420c154f5e1a5
[ "BSD-3-Clause" ]
null
null
null
libs/base/src/utils/CMHPropertiesValuesList.cpp
tg1716/SLAM
b8583fb98a4241d87ae08ac78b0420c154f5e1a5
[ "BSD-3-Clause" ]
2
2017-10-03T23:10:09.000Z
2018-07-29T09:41:33.000Z
/* +------------------------------------------------------------------------+ | Mobile Robot Programming Toolkit (MRPT) | | http://www.mrpt.org/ | | | | Cop...
28.221498
80
0.504386
33b6d91d17d429a0ffd4bc42d00634c77a91956e
1,647
hpp
C++
generator/maxspeeds_builder.hpp
kudlav/organicmaps
390236365749e0525b9229684132c2888d11369d
[ "Apache-2.0" ]
4,879
2015-09-30T10:56:36.000Z
2022-03-31T18:43:03.000Z
generator/maxspeeds_builder.hpp
mbrukman/omim
d22fe2b6e0beee697f096e931df97a64f9db9dc1
[ "Apache-2.0" ]
7,549
2015-09-30T10:52:53.000Z
2022-03-31T22:04:22.000Z
generator/maxspeeds_builder.hpp
mbrukman/omim
d22fe2b6e0beee697f096e931df97a64f9db9dc1
[ "Apache-2.0" ]
1,493
2015-09-30T10:43:06.000Z
2022-03-21T09:16:49.000Z
#pragma once #include "routing_common/maxspeed_conversion.hpp" #include "platform/measurement_utils.hpp" #include "base/geo_object_id.hpp" #include <cstdint> #include <map> #include <string> #include <vector> namespace routing { using OsmIdToMaxspeed = std::map<base::GeoObjectId, Maxspeed>; /// \brief Parses csv ...
41.175
100
0.730419
33b9d1f934c771c9a9298b4390ca08c246303577
9,199
cpp
C++
MavLinkCom/src/impl/AdHocConnectionImpl.cpp
jeyong/AirSim
1fd6a3fc311c704bbbb0b2b6b245e8fa0ba26c8b
[ "MIT" ]
8
2018-06-13T08:44:13.000Z
2020-06-29T06:43:31.000Z
MavLinkCom/src/impl/AdHocConnectionImpl.cpp
jeyong/AirSim
1fd6a3fc311c704bbbb0b2b6b245e8fa0ba26c8b
[ "MIT" ]
4
2018-05-08T20:40:25.000Z
2018-10-22T13:02:19.000Z
MavLinkCom/src/impl/AdHocConnectionImpl.cpp
jeyong/AirSim
1fd6a3fc311c704bbbb0b2b6b245e8fa0ba26c8b
[ "MIT" ]
5
2018-06-28T13:05:31.000Z
2021-02-04T12:44:53.000Z
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "AdHocConnectionImpl.hpp" #include "Utils.hpp" #include "ThreadUtils.hpp" #include "../serial_com/Port.h" #include "../serial_com/SerialPort.hpp" #include "../serial_com/UdpClientPort.hpp" #include "../ser...
31.83045
168
0.618437
33bce9c40270adb9d2ef0ac5de01957f887e7b72
521
hpp
C++
SimipleNetworkProtocol/src/PeriodicExecutor.hpp
DrLk/MultiThreaded-Socket
54d0b4b7c99cf0eeed7c6182501778f1e4a35333
[ "Apache-2.0" ]
null
null
null
SimipleNetworkProtocol/src/PeriodicExecutor.hpp
DrLk/MultiThreaded-Socket
54d0b4b7c99cf0eeed7c6182501778f1e4a35333
[ "Apache-2.0" ]
null
null
null
SimipleNetworkProtocol/src/PeriodicExecutor.hpp
DrLk/MultiThreaded-Socket
54d0b4b7c99cf0eeed7c6182501778f1e4a35333
[ "Apache-2.0" ]
null
null
null
#pragma once #include <chrono> #include <functional> namespace FastTransport::Protocol { class PeriodicExecutor { public: PeriodicExecutor(std::function<void()>, const std::chrono::microseconds& interval); void Run(); private: using clock = std::chrono::steady_clock; std::function<...
20.84
88
0.675624
33be1b92715b0dce2bcc58a0178894f7b6dbf2e1
34,188
hpp
C++
lib/gpc/buffer.hpp
bamert/openGPC
ac61f9b0420ddf42bae02a7b9366f3744906cc72
[ "BSD-3-Clause" ]
8
2019-02-13T10:47:28.000Z
2020-09-26T02:36:26.000Z
lib/gpc/buffer.hpp
bamert/openGPC
ac61f9b0420ddf42bae02a7b9366f3744906cc72
[ "BSD-3-Clause" ]
1
2019-05-30T13:39:07.000Z
2020-08-25T09:03:05.000Z
lib/gpc/buffer.hpp
bamert/openGPC
ac61f9b0420ddf42bae02a7b9366f3744906cc72
[ "BSD-3-Clause" ]
3
2020-04-16T06:05:20.000Z
2020-10-28T14:18:06.000Z
// Copyright (c) 2018, ETH Zurich // All rights reserved. // // 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...
33.616519
118
0.515386
33bfdf5f02dfd5caff52b16a6d2a98ff3bf2cd43
2,519
cc
C++
android_webview/browser/aw_web_ui_controller_factory.cc
zipated/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
2,151
2020-04-18T07:31:17.000Z
2022-03-31T08:39:18.000Z
android_webview/browser/aw_web_ui_controller_factory.cc
cangulcan/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
395
2020-04-18T08:22:18.000Z
2021-12-08T13:04:49.000Z
android_webview/browser/aw_web_ui_controller_factory.cc
cangulcan/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
338
2020-04-18T08:03:10.000Z
2022-03-29T12:33:22.000Z
// Copyright 2017 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 "android_webview/browser/aw_web_ui_controller_factory.h" #include "components/safe_browsing/web_ui/constants.h" #include "components/safe_browsi...
28.954023
80
0.755855
33c0d6843bb1f0fd477ec8b7140daa053a9db842
1,609
hpp
C++
src/utility.hpp
BigDataAnalyticsGroup/ACM-SIGMOD-19-Programming-Contest
6193d5db300dad97737fa2438d0c7cede8e3550e
[ "Apache-2.0" ]
2
2020-03-27T21:28:41.000Z
2020-10-29T11:58:21.000Z
src/utility.hpp
BigDataAnalyticsGroup/ACM-SIGMOD-19-Programming-Contest
6193d5db300dad97737fa2438d0c7cede8e3550e
[ "Apache-2.0" ]
null
null
null
src/utility.hpp
BigDataAnalyticsGroup/ACM-SIGMOD-19-Programming-Contest
6193d5db300dad97737fa2438d0c7cede8e3550e
[ "Apache-2.0" ]
null
null
null
//===== utility.hpp ==================================================================================================== // // Author: Immanuel Haffner <haffner.immanuel@gmail.com> // // Licence: // Copyright 2019 Immanuel Haffner // // Licensed under the Apache License, Version 2.0 (the "License"); // ...
34.234043
120
0.599751
33c12ed0990371e8c51a7019ec7918b9a5b2b7dc
2,460
cpp
C++
examples/3d/pointCloudExample/src/ofApp.cpp
MicrosoftArchive/openFrameworks
4029c12e01e54407f1ee238ce12c52d016a80f5c
[ "MIT" ]
3
2017-12-27T23:02:50.000Z
2018-10-14T00:50:49.000Z
examples/3d/pointCloudExample/src/ofApp.cpp
MicrosoftArchive/openFrameworks
4029c12e01e54407f1ee238ce12c52d016a80f5c
[ "MIT" ]
null
null
null
examples/3d/pointCloudExample/src/ofApp.cpp
MicrosoftArchive/openFrameworks
4029c12e01e54407f1ee238ce12c52d016a80f5c
[ "MIT" ]
null
null
null
#include "ofApp.h" //-------------------------------------------------------------- void ofApp::setup() { ofSetVerticalSync(true); // load an image from disk img.loadImage("linzer.png"); // we're going to load a ton of points into an ofMesh mesh.setMode(OF_PRIMITIVE_POINTS); // loop through the image in th...
25.102041
77
0.443496
33c2358a81265eb5e06c41c74703d79ad98a9e97
465
hpp
C++
extensions/arduino/kit/QHRobot/lib/ArduinoJson6_8/src/ArduinoJson/Operators/VariantCasts.hpp
Suku1989/external-resources
5d2b8fba60556d325cd31d29caa02508885910be
[ "MIT" ]
2
2020-01-14T08:38:42.000Z
2020-10-06T15:22:23.000Z
extensions/arduino/kit/QHRobot/lib/ArduinoJson6_8/src/ArduinoJson/Operators/VariantCasts.hpp
Suku1989/external-resources
5d2b8fba60556d325cd31d29caa02508885910be
[ "MIT" ]
6
2022-03-08T04:11:48.000Z
2022-03-11T05:46:05.000Z
extensions/arduino/kit/QHRobot/lib/ArduinoJson6_8/src/ArduinoJson/Operators/VariantCasts.hpp
Suku1989/external-resources
5d2b8fba60556d325cd31d29caa02508885910be
[ "MIT" ]
8
2022-01-19T18:15:39.000Z
2022-03-26T06:07:17.000Z
// ArduinoJson - arduinojson.org // Copyright Benoit Blanchon 2014-2018 // MIT License #pragma once #include "../Polyfills/attributes.hpp" namespace ARDUINOJSON_NAMESPACE { template <typename TImpl> class VariantCasts { public: template <typename T> FORCE_INLINE operator T() const { return impl()->template...
18.6
44
0.709677
33c37075e4cc5313304a21b87476bf25bbcff28d
4,845
cpp
C++
game/song1.cpp
kaplaars/gba-sprite-engine
2653846d2c50a4eb57010e389288d23854d34eba
[ "MIT" ]
null
null
null
game/song1.cpp
kaplaars/gba-sprite-engine
2653846d2c50a4eb57010e389288d23854d34eba
[ "MIT" ]
null
null
null
game/song1.cpp
kaplaars/gba-sprite-engine
2653846d2c50a4eb57010e389288d23854d34eba
[ "MIT" ]
1
2019-12-05T10:30:36.000Z
2019-12-05T10:30:36.000Z
#include <libgba-sprite-engine/scene.h> #include <libgba-sprite-engine/sprites/sprite_builder.h> #include <libgba-sprite-engine/background/text_stream.h> #include <libgba-sprite-engine/gba/tonc_memdef.h> #include <libgba-sprite-engine/gba_engine.h> #include "karakter.h" #include "SongSelect.h" #include "song1.h" #incl...
34.361702
132
0.606192
33c3d267c8db8f08c53a219f506a50bee3ca0b84
1,788
cpp
C++
GUI_Framework_JCS/JCS_TreeNode.cpp
jcs090218/JCSCC_Engine
eac6c55203bd804acb439305ff977cfca9365e1e
[ "MIT" ]
4
2019-12-09T05:28:04.000Z
2021-02-18T14:05:09.000Z
GUI_Framework_JCS/JCS_TreeNode.cpp
jcs090218/JCSCC_Engine
eac6c55203bd804acb439305ff977cfca9365e1e
[ "MIT" ]
null
null
null
GUI_Framework_JCS/JCS_TreeNode.cpp
jcs090218/JCSCC_Engine
eac6c55203bd804acb439305ff977cfca9365e1e
[ "MIT" ]
2
2019-12-25T15:05:49.000Z
2021-02-18T14:05:14.000Z
/** * $File: JCS_TreeNode.cpp $ * $Date: $ * $Revision: $ * $Creator: Jen-Chieh Shen $ * $Notice: See LICENSE.txt for modification and distribution information * Copyright (c) 2016 by Shen, Jen-Chieh $ */ #include "JCS_TreeNode.h" #include "JCS_TreeView.h" namespace JCS_GUI { JCS_TreeNo...
21.804878
73
0.555928
33c42ef08a21e70945aa20bc67542f2ddb456dab
12,365
cc
C++
chrome/browser/banners/app_banner_settings_helper.cc
hefen1/chromium
52f0b6830e000ca7c5e9aa19488af85be792cc88
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
chrome/browser/banners/app_banner_settings_helper.cc
hefen1/chromium
52f0b6830e000ca7c5e9aa19488af85be792cc88
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
chrome/browser/banners/app_banner_settings_helper.cc
hefen1/chromium
52f0b6830e000ca7c5e9aa19488af85be792cc88
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
2
2020-04-04T13:34:56.000Z
2020-11-04T07:17:52.000Z
// Copyright 2014 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/banners/app_banner_settings_helper.h" #include <algorithm> #include <string> #include "base/command_line.h" #include "chrome/br...
34.063361
80
0.71484
33c440860bb47ff41cba083cc8f0baa836e92681
465
cpp
C++
Flick/src/Flick/Renderer/VertexArray.cpp
firo1738/FLICK
a6ccb0f23c212d0f1b97f71520beb3a89be57f2d
[ "Apache-2.0" ]
null
null
null
Flick/src/Flick/Renderer/VertexArray.cpp
firo1738/FLICK
a6ccb0f23c212d0f1b97f71520beb3a89be57f2d
[ "Apache-2.0" ]
null
null
null
Flick/src/Flick/Renderer/VertexArray.cpp
firo1738/FLICK
a6ccb0f23c212d0f1b97f71520beb3a89be57f2d
[ "Apache-2.0" ]
null
null
null
#include "fipch.h" #include "VertexArray.h" #include "Renderer.h" #include "Platform/OpenGL/OpenGLVertexArray.h" namespace Flick { VertexArray* VertexArray::Create() { switch (Renderer::GetAPI()) { case RendererAPI::API::None: FI_CORE_ASSERT(false, "RendererAPI::None is not yet supported by Flick!"); return ...
22.142857
121
0.722581
33c4473609facd7821cbef2b3c8b6e4c01521e29
28,944
cc
C++
components/password_manager/core/browser/android_affiliation/affiliated_match_helper_unittest.cc
Ron423c/chromium
2edf7b980065b648f8b2a6e52193d83832fe36b7
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
components/password_manager/core/browser/android_affiliation/affiliated_match_helper_unittest.cc
Ron423c/chromium
2edf7b980065b648f8b2a6e52193d83832fe36b7
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
components/password_manager/core/browser/android_affiliation/affiliated_match_helper_unittest.cc
Ron423c/chromium
2edf7b980065b648f8b2a6e52193d83832fe36b7
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
1
2021-03-07T14:20:02.000Z
2021-03-07T14:20:02.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 "components/password_manager/core/browser/android_affiliation/affiliated_match_helper.h" #include <stddef.h> #include <memory> #include <utilit...
40.311978
101
0.763094
33c46982cc7dc4a9725b31f0be427aef3b71a382
616
cpp
C++
src/osm.ReferenceObject.cpp
rydotyosh/OpenSoundMixer
d81472a79655ba02b2456300f5ba345df8350b14
[ "BSD-3-Clause" ]
3
2018-05-31T11:06:57.000Z
2019-10-13T16:08:44.000Z
src/osm.ReferenceObject.cpp
rydotyosh/OpenSoundMixer
d81472a79655ba02b2456300f5ba345df8350b14
[ "BSD-3-Clause" ]
1
2015-09-13T12:35:23.000Z
2015-09-13T12:35:23.000Z
src/osm.ReferenceObject.cpp
rydotyosh/OpenSoundMixer
d81472a79655ba02b2456300f5ba345df8350b14
[ "BSD-3-Clause" ]
3
2015-12-15T05:10:43.000Z
2019-11-17T10:13:13.000Z
 #include "osm.ReferenceObject.h" namespace osm { ReferenceObject::ReferenceObject() : m_reference(1) {} ReferenceObject::~ReferenceObject() {} int ReferenceObject::AddRef() { std::atomic_fetch_add_explicit(&m_reference, 1, std::memory_order_consume); return m_reference; } int ReferenceObject::GetRef() { r...
22
99
0.694805
33c4c98476a813dd59ad1452ef1293dfd1abe55b
2,081
cpp
C++
src/qt/qtwebkit/Source/WebCore/rendering/style/StyleDeprecatedFlexibleBoxData.cpp
viewdy/phantomjs
eddb0db1d253fd0c546060a4555554c8ee08c13c
[ "BSD-3-Clause" ]
1
2015-05-27T13:52:20.000Z
2015-05-27T13:52:20.000Z
src/qt/qtwebkit/Source/WebCore/rendering/style/StyleDeprecatedFlexibleBoxData.cpp
mrampersad/phantomjs
dca6f77a36699eb4e1c46f7600cca618f01b0ac3
[ "BSD-3-Clause" ]
null
null
null
src/qt/qtwebkit/Source/WebCore/rendering/style/StyleDeprecatedFlexibleBoxData.cpp
mrampersad/phantomjs
dca6f77a36699eb4e1c46f7600cca618f01b0ac3
[ "BSD-3-Clause" ]
1
2022-02-18T10:41:38.000Z
2022-02-18T10:41:38.000Z
/* * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundat...
34.683333
103
0.725132
33c5628d0344aa34fe0adbc9881b594c10f0ea1d
342
cpp
C++
C++ Programs/Reverse.cpp
Chibi-Shem/Hacktoberfest2020-Expert
324843464aec039e130e85a16e74b76d310f1497
[ "MIT" ]
77
2020-10-01T10:06:59.000Z
2021-11-08T08:57:18.000Z
C++ Programs/Reverse.cpp
Chibi-Shem/Hacktoberfest2020-Expert
324843464aec039e130e85a16e74b76d310f1497
[ "MIT" ]
55
2020-10-05T06:21:13.000Z
2021-09-11T18:06:50.000Z
C++ Programs/Reverse.cpp
Chibi-Shem/Hacktoberfest2020-Expert
324843464aec039e130e85a16e74b76d310f1497
[ "MIT" ]
327
2020-09-26T17:06:03.000Z
2021-10-09T06:04:39.000Z
#include <iostream> using namespace std; int main() { int n, reversedNumber = 0, remainder; cout << "Enter an integer: "; cin >> n; while(n != 0) { remainder = n%10; reversedNumber = reversedNumber*10 + remainder; n /= 10; } cout << "Reversed Number = " << reversedNum...
17.1
55
0.552632
33c79eb81d45de364cab2f21a8e524ccc7d084fc
8,758
cpp
C++
ace/QoS/SOCK_Dgram_Mcast_QoS.cpp
cflowe/ACE
5ff60b41adbe1772372d1a43bcc1f2726ff8f810
[ "DOC" ]
36
2015-01-10T07:27:33.000Z
2022-03-07T03:32:08.000Z
Oem/ACE/ACE_wrappers/ace/QoS/SOCK_Dgram_Mcast_QoS.cpp
achilex/MgDev
f7baf680a88d37659af32ee72b9a2046910b00d8
[ "PHP-3.0" ]
2
2018-08-13T07:30:51.000Z
2019-02-25T03:04:31.000Z
ace/QoS/SOCK_Dgram_Mcast_QoS.cpp
cflowe/ACE
5ff60b41adbe1772372d1a43bcc1f2726ff8f810
[ "DOC" ]
38
2015-01-08T14:12:06.000Z
2022-01-19T08:33:00.000Z
// $Id: SOCK_Dgram_Mcast_QoS.cpp 96985 2013-04-11 15:50:32Z huangh $ #include "SOCK_Dgram_Mcast_QoS.h" #include "ace/Log_Category.h" #include "ace/OS_NS_sys_socket.h" #if defined (ACE_WIN32) #include "ace/Sock_Connect.h" // needed for subscribe_ifs() #endif /* ACE_WIN32 */ #if !defined (__ACE_INLINE__) #include "SO...
34.345098
97
0.523407
33c8a08e2877efa578534cb6f768c6ffe6a21d4a
4,589
cpp
C++
src/opengl/debugcontext.cpp
OpenSpace/Ghoul
af5545a13d140b15e7b37f581ea7dde522be2b5b
[ "MIT" ]
8
2016-09-13T12:39:49.000Z
2022-03-21T12:30:50.000Z
src/opengl/debugcontext.cpp
OpenSpace/Ghoul
af5545a13d140b15e7b37f581ea7dde522be2b5b
[ "MIT" ]
33
2016-07-07T20:35:05.000Z
2021-10-15T03:12:13.000Z
src/opengl/debugcontext.cpp
OpenSpace/Ghoul
af5545a13d140b15e7b37f581ea7dde522be2b5b
[ "MIT" ]
16
2015-06-24T20:41:28.000Z
2022-01-08T04:14:03.000Z
/***************************************************************************************** * * * GHOUL * * General Helpful Open Utility Library ...
44.125
90
0.548486
33c8d159e7f8588c819bf84b5024a9364e2083ed
249
cpp
C++
partitioner/problem/default_partitioner_inputs.cpp
elenabac/dgswemv2
ecc776811de304cbae7bfa696b3d22c513e7d4de
[ "MIT" ]
5
2018-05-30T08:43:10.000Z
2021-12-14T18:33:10.000Z
partitioner/problem/default_partitioner_inputs.cpp
elenabac/dgswemv2
ecc776811de304cbae7bfa696b3d22c513e7d4de
[ "MIT" ]
57
2018-05-08T21:44:14.000Z
2019-11-07T17:13:30.000Z
partitioner/problem/default_partitioner_inputs.cpp
elenabac/dgswemv2
ecc776811de304cbae7bfa696b3d22c513e7d4de
[ "MIT" ]
7
2018-05-07T21:50:49.000Z
2021-04-30T14:02:02.000Z
#include "default_partitioner_inputs.hpp" DefaultPartitionerInputs::DefaultPartitionerInputs(const MeshMetaData& mesh) { for (const auto& elt : mesh.elements) { weights.insert(std::make_pair(elt.first, std::vector<double>{1.})); } }
35.571429
78
0.726908
33ca6ee86f02ec007a04d2125f9aabdbea0ea620
1,952
cc
C++
python/paddle/fluid/tests/custom_op/dispatch_test_op.cc
OuyangChao/Paddle
cac9635a6733ffbbd816b33e21c3054e0cd81ab1
[ "Apache-2.0" ]
1
2021-03-04T07:51:32.000Z
2021-03-04T07:51:32.000Z
python/paddle/fluid/tests/custom_op/dispatch_test_op.cc
OuyangChao/Paddle
cac9635a6733ffbbd816b33e21c3054e0cd81ab1
[ "Apache-2.0" ]
1
2021-03-01T18:17:48.000Z
2021-03-01T18:17:48.000Z
python/paddle/fluid/tests/custom_op/dispatch_test_op.cc
OuyangChao/Paddle
cac9635a6733ffbbd816b33e21c3054e0cd81ab1
[ "Apache-2.0" ]
null
null
null
// Copyright (c) 2021 PaddlePaddle 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...
30.030769
75
0.672643
33caa8cba2e71a171072eb009157adf123bba03e
18,658
cpp
C++
src/geometry/geometry_ply.cpp
Yoyochen0106/Pangolin
e55463bd2bdd758e46ded7d95332e31f9cdc4f71
[ "MIT" ]
662
2019-09-01T02:16:59.000Z
2022-03-29T19:24:07.000Z
src/geometry/geometry_ply.cpp
Yoyochen0106/Pangolin
e55463bd2bdd758e46ded7d95332e31f9cdc4f71
[ "MIT" ]
38
2019-09-05T05:02:20.000Z
2022-03-30T02:59:49.000Z
src/geometry/geometry_ply.cpp
Yoyochen0106/Pangolin
e55463bd2bdd758e46ded7d95332e31f9cdc4f71
[ "MIT" ]
104
2019-09-01T07:41:58.000Z
2022-03-27T16:24:54.000Z
/* This file is part of the Pangolin Project. * http://github.com/stevenlovegrove/Pangolin * * Copyright (c) 2014 Steven Lovegrove * * 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 wit...
38.549587
107
0.571873
33cb22cd51682af287618954337dae81db4000a9
2,128
cc
C++
columnar_batch/columnar_batch_encoder_test.cc
google/fusion-power-video
5edaa6549870807b5ca3cb0ead90cd584e745bcd
[ "Apache-2.0" ]
11
2020-03-13T04:18:09.000Z
2021-11-19T21:01:00.000Z
columnar_batch/columnar_batch_encoder_test.cc
google/fusion-power-video
5edaa6549870807b5ca3cb0ead90cd584e745bcd
[ "Apache-2.0" ]
5
2020-03-09T10:24:59.000Z
2020-08-19T09:28:36.000Z
columnar_batch/columnar_batch_encoder_test.cc
google/fusion-power-video
5edaa6549870807b5ca3cb0ead90cd584e745bcd
[ "Apache-2.0" ]
6
2020-03-09T10:00:16.000Z
2020-10-13T16:42:50.000Z
#include <iostream> #include <memory> #include "columnar_batch_encoder.h" std::unique_ptr<fpvc::columnarbatch::ColumnarBatchEncoder> encoder; std::unique_ptr<fpvc::columnarbatch::ColumnarBatchEncoder> encoder2; void printRecordBatch(fpvc::columnarbatch::BatchPtr batch) { if (batch) { std::cout << "Got the...
40.150943
151
0.603853