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
5908e7163dbd2312fd54a7ff3a83fee267b8a2cb
12,153
cpp
C++
code/pilotfile/JSONFileHandler.cpp
brihernandez/fs2open.github.com
5b173c6060a884bba83ef965ba32f8ad67709de1
[ "Unlicense" ]
307
2015-04-10T13:27:32.000Z
2022-03-21T03:30:38.000Z
code/pilotfile/JSONFileHandler.cpp
brihernandez/fs2open.github.com
5b173c6060a884bba83ef965ba32f8ad67709de1
[ "Unlicense" ]
2,231
2015-04-27T10:47:35.000Z
2022-03-31T19:22:37.000Z
code/pilotfile/JSONFileHandler.cpp
brihernandez/fs2open.github.com
5b173c6060a884bba83ef965ba32f8ad67709de1
[ "Unlicense" ]
282
2015-01-05T12:16:57.000Z
2022-03-28T04:45:11.000Z
#include <jansson.h> #include "pilotfile/JSONFileHandler.h" #include "libs/jansson.h" #include "parse/parselo.h" namespace { const SCP_vector<std::pair<Section, const char*>> SectionMapping { std::pair<Section, const char*>(Section::Unnamed, nullptr), std::pair<Section, const char*>(Section::Flags, "flags"), std::...
32.669355
129
0.731177
brihernandez
590a291983afeefb12708b6508a51a8bc91d1b97
11,669
cpp
C++
B2G/gecko/content/media/FileBlockCache.cpp
wilebeast/FireFox-OS
43067f28711d78c429a1d6d58c77130f6899135f
[ "Apache-2.0" ]
3
2015-08-31T15:24:31.000Z
2020-04-24T20:31:29.000Z
B2G/gecko/content/media/FileBlockCache.cpp
wilebeast/FireFox-OS
43067f28711d78c429a1d6d58c77130f6899135f
[ "Apache-2.0" ]
null
null
null
B2G/gecko/content/media/FileBlockCache.cpp
wilebeast/FireFox-OS
43067f28711d78c429a1d6d58c77130f6899135f
[ "Apache-2.0" ]
3
2015-07-29T07:17:15.000Z
2020-11-04T06:55:37.000Z
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim:set ts=2 sw=2 sts=2 et cindent: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2....
34.020408
88
0.678207
wilebeast
590b7ccb1d133c82228e9abfa46f5f7410db9919
9,361
cpp
C++
lib/fractoid/src/painter.cpp
tjira/fractoid
95973199329627b7e12a09ad9825e4357021c3b8
[ "MIT" ]
null
null
null
lib/fractoid/src/painter.cpp
tjira/fractoid
95973199329627b7e12a09ad9825e4357021c3b8
[ "MIT" ]
null
null
null
lib/fractoid/src/painter.cpp
tjira/fractoid
95973199329627b7e12a09ad9825e4357021c3b8
[ "MIT" ]
null
null
null
#include "painter.h" #include "barnsley.h" #include "julia.h" #include "mandelbrot.h" #include "sierpinski.h" using namespace Fractoid; template<class A, class C> Backend::Painter<A, C>::Painter(const Fractal *fractal, const A &algorithm, const C &color, rgb bg) : bg(bg), algorithm(algorithm), color(color) { thi...
51.153005
146
0.610939
tjira
590c24fd1b86d64e06a3a16af91beb0fb44ded4e
365
cpp
C++
C++/reverse-string-ii.cpp
bssrdf/LeetCode-5
746df5cff523361145a74d9d429dc541a7b99910
[ "MIT" ]
3,269
2018-10-12T01:29:40.000Z
2022-03-31T17:58:41.000Z
C++/reverse-string-ii.cpp
pnandini/LeetCode
e746c3298be96dec8e160da9378940568ef631b1
[ "MIT" ]
53
2018-12-16T22:54:20.000Z
2022-02-25T08:31:20.000Z
C++/reverse-string-ii.cpp
pnandini/LeetCode
e746c3298be96dec8e160da9378940568ef631b1
[ "MIT" ]
1,236
2018-10-12T02:51:40.000Z
2022-03-30T13:30:37.000Z
// Time: O(n) // Space: O(1) class Solution { public: string reverseStr(string s, int k) { for (int left = 0; left < s.size(); left += 2 * k) { for (int i = left, j = min(left + k - 1, static_cast<int>(s.size()) - 1); i < j; ++i, --j) { swap(s[i], s[j]); ...
22.8125
85
0.39726
bssrdf
590e04cee7f8234dda2fa64d1ca6e6662bce3804
908
hpp
C++
src/FourierPlan.hpp
develancer/coulombo
4e19a9f20d97427f2ba150f86e48bfc0d07ad555
[ "CC-BY-4.0" ]
null
null
null
src/FourierPlan.hpp
develancer/coulombo
4e19a9f20d97427f2ba150f86e48bfc0d07ad555
[ "CC-BY-4.0" ]
null
null
null
src/FourierPlan.hpp
develancer/coulombo
4e19a9f20d97427f2ba150f86e48bfc0d07ad555
[ "CC-BY-4.0" ]
null
null
null
// Coulombo Ⓒ 2018 // [Computer Physics Communications] Różański & Zieliński: // Efficient computation of Coulomb and exchange integrals for multi-million atom nanostructures #ifndef COULOMBO_FOURIERPLAN_HPP #define COULOMBO_FOURIERPLAN_HPP #include <cassert> #include <memory> #include <fftw3.h> #include "base.hpp" /...
20.636364
96
0.595815
develancer
59141fa4584ac89b07bc0089dd0bdbcce0058ba5
496
hpp
C++
hpx/parallel/memory.hpp
kempj/hpx
ffdbfed5dfa029a0f2e97e7367cb66d12103df67
[ "BSL-1.0" ]
null
null
null
hpx/parallel/memory.hpp
kempj/hpx
ffdbfed5dfa029a0f2e97e7367cb66d12103df67
[ "BSL-1.0" ]
null
null
null
hpx/parallel/memory.hpp
kempj/hpx
ffdbfed5dfa029a0f2e97e7367cb66d12103df67
[ "BSL-1.0" ]
null
null
null
// Copyright (c) 2007-2014 Hartmut Kaiser // // 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) #if !defined(HPX_PARALLEL_MEMORY_OCT_05_2014_0414PM) #define HPX_PARALLEL_MEMORY_OCT_05_2014_0414PM #include <hpx/hpx...
26.105263
80
0.780242
kempj
59153c5de017714e9d7f9dfa09472f4523813428
41,876
cpp
C++
cegui/src/FreeTypeFont.cpp
Costallat/cegui
a398f9264c3223966c903c92f61ad110c5286fc1
[ "MIT" ]
null
null
null
cegui/src/FreeTypeFont.cpp
Costallat/cegui
a398f9264c3223966c903c92f61ad110c5286fc1
[ "MIT" ]
null
null
null
cegui/src/FreeTypeFont.cpp
Costallat/cegui
a398f9264c3223966c903c92f61ad110c5286fc1
[ "MIT" ]
null
null
null
/*********************************************************************** created: 21/2/2004 author: Paul D Turner purpose: Implements FreeTypeFont class *************************************************************************/ /********************************************************************...
34.045528
115
0.642253
Costallat
59177d027f15bcebeac6707e574ecf11ce5c49e6
2,919
cc
C++
src/modules/audio_coding/neteq/timestamp_scaler.cc
ilya-fedin/tg_owt
d5c3d43b959c7e9e7d8004b9b7fdadd12ce7d589
[ "BSD-3-Clause" ]
162
2018-04-03T04:29:45.000Z
2022-03-30T19:41:27.000Z
src/modules/audio_coding/neteq/timestamp_scaler.cc
ilya-fedin/tg_owt
d5c3d43b959c7e9e7d8004b9b7fdadd12ce7d589
[ "BSD-3-Clause" ]
59
2020-08-24T09:17:42.000Z
2022-02-27T23:33:37.000Z
src/modules/audio_coding/neteq/timestamp_scaler.cc
ilya-fedin/tg_owt
d5c3d43b959c7e9e7d8004b9b7fdadd12ce7d589
[ "BSD-3-Clause" ]
62
2018-03-26T08:38:18.000Z
2022-03-14T02:29:47.000Z
/* * Copyright (c) 2012 The WebRTC 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 contribut...
33.170455
78
0.700582
ilya-fedin
59185c0f2ac685f082098b6714e89a0b17737fa8
384
cpp
C++
easy/count-the-number-of-consistent-strings/Solution.cpp
xandersavvy/Problem-solving
de9fa307467f9823acfc32754b15671c93000bf1
[ "Unlicense" ]
null
null
null
easy/count-the-number-of-consistent-strings/Solution.cpp
xandersavvy/Problem-solving
de9fa307467f9823acfc32754b15671c93000bf1
[ "Unlicense" ]
null
null
null
easy/count-the-number-of-consistent-strings/Solution.cpp
xandersavvy/Problem-solving
de9fa307467f9823acfc32754b15671c93000bf1
[ "Unlicense" ]
null
null
null
class Solution { public: int countConsistentStrings(string allowed, vector<string>& words) { int count=words.size(); for(int i=0;i<words.size();i++){ for(char j:words[i]){ if(allowed.find(j)==string::npos){ count--; break; ...
24
71
0.440104
xandersavvy
5918b9d55ef96fbb1d68804a9b6ddf6c2780c245
38,960
cpp
C++
admin/snapin/certentp/templategeneralpropertypage.cpp
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
admin/snapin/certentp/templategeneralpropertypage.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
admin/snapin/certentp/templategeneralpropertypage.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
///////////////////////////////////////////////////////////////////////////////// // // Microsoft Windows // Copyright (C) Microsoft Corporation, 2000-2002. // // File: TemplateGeneralPropertyPage.cpp // // Contents: Implementation of CTemplateGeneralPropertyPage // //------------------------------...
32.877637
127
0.549897
npocmaka
591ab5701e1049fbcc412a9ff0b6b11eddc75a58
5,004
cpp
C++
FHEOffline/PairwiseGenerator.cpp
sachaservan/star-spdz
c6ae2b94e52d530f42739d10e2bc7f8e0925e9c6
[ "BSD-4-Clause-UC" ]
185
2016-09-02T19:40:58.000Z
2022-03-31T18:10:50.000Z
FHEOffline/PairwiseGenerator.cpp
ycj2643/SPDZ-2
721abfae849625a02ea49aabc534f9cf41ca643f
[ "BSD-4-Clause-UC" ]
67
2016-09-12T17:14:40.000Z
2020-05-25T06:25:58.000Z
FHEOffline/PairwiseGenerator.cpp
ycj2643/SPDZ-2
721abfae849625a02ea49aabc534f9cf41ca643f
[ "BSD-4-Clause-UC" ]
78
2016-09-07T19:16:18.000Z
2022-03-09T08:50:17.000Z
// (C) 2018 University of Bristol. See License.txt /* * PairwiseGenerator.cpp * */ #include "FHEOffline/PairwiseGenerator.h" #include "FHEOffline/PairwiseMachine.h" #include "FHEOffline/Producer.h" template <class FD> PairwiseGenerator<FD>::PairwiseGenerator(int thread_num, PairwiseMachine& machine) : ...
34.040816
84
0.616707
sachaservan
591f8df0d55ce50fbf1d179b4b74649d5a2cd378
29,653
cpp
C++
CPP/Windows/FileFind.cpp
fooziex/7-Zip-zstd
3e0e78700e56e126c3615fe606f4d2bbd6cd2928
[ "BSD-3-Clause" ]
4
2016-07-09T18:03:44.000Z
2016-07-13T18:06:07.000Z
CPP/Windows/FileFind.cpp
fooziex/7-Zip-zstd
3e0e78700e56e126c3615fe606f4d2bbd6cd2928
[ "BSD-3-Clause" ]
1
2021-11-17T14:15:23.000Z
2021-11-17T14:15:23.000Z
CPP/Windows/FileFind.cpp
fooziex/7-Zip-zstd
3e0e78700e56e126c3615fe606f4d2bbd6cd2928
[ "BSD-3-Clause" ]
null
null
null
// Windows/FileFind.cpp #include "StdAfx.h" // #include <stdio.h> #ifndef _WIN32 #include <fcntl.h> /* Definition of AT_* constants */ #include "TimeUtils.h" #endif #include "FileFind.h" #include "FileIO.h" #include "FileName.h" #ifndef _UNICODE extern bool g_IsNT; #endif using namespace NWindows; using...
23.855994
110
0.616194
fooziex
59212c39e765ca3d92e32419a9de7b493aaf71dd
23,018
cc
C++
chrome_frame/chrome_frame_activex.cc
pozdnyakov/chromium-crosswalk
0fb25c7278bf1d93e53a3b0bcb75aa8b99d4b26e
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
2
2020-05-03T06:33:56.000Z
2021-11-14T18:39:42.000Z
chrome_frame/chrome_frame_activex.cc
pozdnyakov/chromium-crosswalk
0fb25c7278bf1d93e53a3b0bcb75aa8b99d4b26e
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
chrome_frame/chrome_frame_activex.cc
pozdnyakov/chromium-crosswalk
0fb25c7278bf1d93e53a3b0bcb75aa8b99d4b26e
[ "BSD-3-Clause-No-Nuclear-License-2014", "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. #include "chrome_frame/chrome_frame_activex.h" #include <wininet.h> #include <algorithm> #include <map> #include "base/basictypes.h" #include "base...
32.696023
80
0.665523
pozdnyakov
5921bf1e86faca66e55aa79bab604ed77ed19a64
1,414
cpp
C++
src/QtTracker/treeitem.cpp
spayne/vrtracker
53249748c0c4d0e3a1a9d9c200ed010600a4e27e
[ "MIT" ]
null
null
null
src/QtTracker/treeitem.cpp
spayne/vrtracker
53249748c0c4d0e3a1a9d9c200ed010600a4e27e
[ "MIT" ]
null
null
null
src/QtTracker/treeitem.cpp
spayne/vrtracker
53249748c0c4d0e3a1a9d9c200ed010600a4e27e
[ "MIT" ]
null
null
null
/* treeitem.cpp A container for items of data supplied by the simple tree model. */ #include <QStringList> #include "treeitem.h" //! [0] TreeItem::TreeItem(const QList<QVariant> &data, TreeItem *parent) { m_parentItem = parent; m_itemData = data; } //! [0] //! [1] TreeItem::~Tr...
14.729167
69
0.556577
spayne
5921f77619308d7b3573c68b0c78684ed5c21f0b
62,956
cpp
C++
shared/lsqfit.cpp
gjsoto/ssc
70ef4fdafb9afe0418a9c552485a7116a1b3a743
[ "BSD-3-Clause" ]
61
2017-08-09T15:10:59.000Z
2022-02-15T21:45:31.000Z
shared/lsqfit.cpp
gjsoto/ssc
70ef4fdafb9afe0418a9c552485a7116a1b3a743
[ "BSD-3-Clause" ]
462
2017-07-31T21:26:46.000Z
2022-03-30T22:53:50.000Z
shared/lsqfit.cpp
gjsoto/ssc
70ef4fdafb9afe0418a9c552485a7116a1b3a743
[ "BSD-3-Clause" ]
73
2017-08-24T17:39:31.000Z
2022-03-28T08:37:47.000Z
/* * MINPACK-1 Least Squares Fitting Library * * Original public domain version by B. Garbow, K. Hillstrom, J. More' * (Argonne National Laboratory, MINPACK project, March 1980) * See the file DISCLAIMER for copyright information. * * Tranlation to C Language by S. Moshier (moshier.net) * * Enhancements a...
26.485486
91
0.575799
gjsoto
5923538aa2b82a7c660cdb1022bd0d96c12cb472
32,201
cc
C++
lib/poisson/poisson.cc
usmanianas/saras_latest
c9eb0dd800076a5d92d04c96a14031739998bb60
[ "BSD-3-Clause" ]
null
null
null
lib/poisson/poisson.cc
usmanianas/saras_latest
c9eb0dd800076a5d92d04c96a14031739998bb60
[ "BSD-3-Clause" ]
null
null
null
lib/poisson/poisson.cc
usmanianas/saras_latest
c9eb0dd800076a5d92d04c96a14031739998bb60
[ "BSD-3-Clause" ]
null
null
null
/******************************************************************************************************************************************** * Saras * * Copyright (C) 2019, Mahendra K. Verma * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are pe...
49.312404
178
0.536412
usmanianas
5925847a4f3771206b6016a19b9cf4738f9d65ee
819
cpp
C++
Model Algorithms/Dynamic Programming/Longest Increasing Subsequence.cpp
UtkarshPathrabe/Competitive-Coding
ba322fbb1b88682d56a9b80bdd92a853f1caa84e
[ "MIT" ]
13
2021-09-02T07:30:02.000Z
2022-03-22T19:32:03.000Z
Model Algorithms/Dynamic Programming/Longest Increasing Subsequence.cpp
UtkarshPathrabe/Competitive-Coding
ba322fbb1b88682d56a9b80bdd92a853f1caa84e
[ "MIT" ]
null
null
null
Model Algorithms/Dynamic Programming/Longest Increasing Subsequence.cpp
UtkarshPathrabe/Competitive-Coding
ba322fbb1b88682d56a9b80bdd92a853f1caa84e
[ "MIT" ]
3
2021-08-24T16:06:22.000Z
2021-09-17T15:39:53.000Z
/* Time Complexity: O(n^2) */ #include <bits/stdc++.h> using namespace std; int LIS (vector<int> &arr) { int max = INT_MIN, n = arr.size(); vector<int> lis; for (int i = 0; i < n; i++) { lis.push_back(1); } for (int i = 1; i < n; i++) { for (int j = 0; j < i; j++) { if ((arr[i] > arr[j]) && (lis[i] < lis...
18.2
83
0.537241
UtkarshPathrabe
5927738a0fa14fae876f0e31dd0ffa42b89e7745
490
cc
C++
apps/SerStacker/src/c_display_function.cc
amyznikov/SerStacker
6657240210af0b35fff1c5adc1d6f9d51b469e80
[ "CC0-1.0" ]
1
2021-09-03T06:02:59.000Z
2021-09-03T06:02:59.000Z
apps/SerStacker/src/c_display_function.cc
amyznikov/SerStacker
6657240210af0b35fff1c5adc1d6f9d51b469e80
[ "CC0-1.0" ]
1
2021-09-03T03:43:54.000Z
2021-09-10T01:30:46.000Z
apps/SerStacker/src/c_display_function.cc
amyznikov/SerStacker
6657240210af0b35fff1c5adc1d6f9d51b469e80
[ "CC0-1.0" ]
null
null
null
/* * c_display_function.cc * * Created on: Dec 14, 2020 * Author: amyznikov */ #include "c_display_function.h" #include <core/debug.h> c_display_function::c_display_function() : mtf_(c_pixinsight_midtones_transfer_function::create()) { } const c_pixinsight_midtones_transfer_function::ptr & c_display_f...
18.148148
91
0.714286
amyznikov
59277bb00641c2064e1eaf2c288f10de7f3e750e
418
cpp
C++
src/TriangleSoup.cpp
ericpko/computer-graphics-ray-tracing
033293a94a5076c79c1fc7d3dac8931fdab6a44c
[ "MIT" ]
null
null
null
src/TriangleSoup.cpp
ericpko/computer-graphics-ray-tracing
033293a94a5076c79c1fc7d3dac8931fdab6a44c
[ "MIT" ]
null
null
null
src/TriangleSoup.cpp
ericpko/computer-graphics-ray-tracing
033293a94a5076c79c1fc7d3dac8931fdab6a44c
[ "MIT" ]
null
null
null
#include "TriangleSoup.h" #include "Triangle.h" #include "first_hit.h" bool TriangleSoup::intersect( const Ray & ray, const double min_t, double & t, Eigen::Vector3d & n) const { //////////////////////////////////////////////////////////////////////////// int hit_id; return first_hit(ray, min_t, this->triangles...
34.833333
78
0.440191
ericpko
592804a8be48daefdefab1578fc8b96d21c19190
5,073
cpp
C++
LibCarla/source/carla/geom/Math.cpp
simon0628/carla
b49664f94f87291be36805315593571678c8da28
[ "MIT" ]
null
null
null
LibCarla/source/carla/geom/Math.cpp
simon0628/carla
b49664f94f87291be36805315593571678c8da28
[ "MIT" ]
null
null
null
LibCarla/source/carla/geom/Math.cpp
simon0628/carla
b49664f94f87291be36805315593571678c8da28
[ "MIT" ]
1
2019-05-28T18:49:44.000Z
2019-05-28T18:49:44.000Z
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma // de Barcelona (UAB). // // This work is licensed under the terms of the MIT license. // For a copy, see <https://opensource.org/licenses/MIT>. #include "carla/geom/Math.h" #include "carla/geom/Rotation.h" namespace carla { namespace geo...
35.475524
102
0.643603
simon0628
592bc212f2de54cf0157c023fceee51af36f1d94
3,447
hpp
C++
aslam_optimizer/aslam_backend_expressions/include/aslam/backend/MatrixExpressionNode.hpp
stefangachter/kalibr
a455e4444a79de4af01d9eb4b351f0f79cd21d81
[ "BSD-4-Clause" ]
null
null
null
aslam_optimizer/aslam_backend_expressions/include/aslam/backend/MatrixExpressionNode.hpp
stefangachter/kalibr
a455e4444a79de4af01d9eb4b351f0f79cd21d81
[ "BSD-4-Clause" ]
null
null
null
aslam_optimizer/aslam_backend_expressions/include/aslam/backend/MatrixExpressionNode.hpp
stefangachter/kalibr
a455e4444a79de4af01d9eb4b351f0f79cd21d81
[ "BSD-4-Clause" ]
1
2020-02-11T06:51:54.000Z
2020-02-11T06:51:54.000Z
#ifndef ASLAM_BACKEND_DV_MATRIX_HPP #define ASLAM_BACKEND_DV_MATRIX_HPP #include <aslam/backend/JacobianContainer.hpp> #include <boost/shared_ptr.hpp> #include <set> namespace aslam { namespace backend { /** * \class MatrixExpressionNode * \brief The superclass of all classes representing transf...
34.128713
135
0.733681
stefangachter
592c15135d6013ce2289270a7d1d204246176382
4,506
cpp
C++
CPPProjects/LongestCommonSubsequence.cpp
ducaddepar/ProgrammingContest
4c47cada50ed23bd841cfea06a377a4129d4d88f
[ "MIT" ]
39
2018-08-26T05:53:19.000Z
2021-12-11T07:47:24.000Z
CPPProjects/LongestCommonSubsequence.cpp
ducaddepar/ProgrammingContest
4c47cada50ed23bd841cfea06a377a4129d4d88f
[ "MIT" ]
1
2018-06-21T00:40:41.000Z
2018-06-21T00:40:46.000Z
CPPProjects/LongestCommonSubsequence.cpp
ducaddepar/ProgrammingContest
4c47cada50ed23bd841cfea06a377a4129d4d88f
[ "MIT" ]
8
2018-08-27T00:34:23.000Z
2020-09-27T12:51:22.000Z
//#define SUBMIT #ifdef SUBMIT #define LOGLEVEL 0 #define NDEBUG #else #define LOGLEVEL 1 #endif #include <cstdio> #include <algorithm> #include <cstring> #include <cassert> #include <iostream> #include <vector> #include <map> #include <set> #include <cmath> #include <cstdlib> #include <array> #include <type_traits> ...
21.15493
84
0.524412
ducaddepar
592d2cbaf6d84488c6ef527becbe20d9f118b572
17,721
cc
C++
quic/core/qpack/qpack_header_table_test.cc
hanpfei/quiche
a366010c5f5736436338acad1e2a11d17f80c0fe
[ "BSD-3-Clause" ]
8
2019-11-08T04:16:04.000Z
2021-07-11T11:56:52.000Z
quic/core/qpack/qpack_header_table_test.cc
hanpfei/quiche
a366010c5f5736436338acad1e2a11d17f80c0fe
[ "BSD-3-Clause" ]
null
null
null
quic/core/qpack/qpack_header_table_test.cc
hanpfei/quiche
a366010c5f5736436338acad1e2a11d17f80c0fe
[ "BSD-3-Clause" ]
6
2019-09-08T05:40:06.000Z
2021-03-31T01:19:10.000Z
// Copyright (c) 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 "net/third_party/quiche/src/quic/core/qpack/qpack_header_table.h" #include "net/third_party/quiche/src/quic/core/qpack/qpack_static_table.h"...
35.8
80
0.707974
hanpfei
592d61922f5631770827bd8bfe8dfe1ad1184b33
26,286
cpp
C++
src/control/velocity_controller/src/velocity_controller_core.cpp
zqw-hooper/AutowareArchitectureProposal
93ca87fd7255be697219a100a97a639a56f6c4a7
[ "Apache-2.0" ]
null
null
null
src/control/velocity_controller/src/velocity_controller_core.cpp
zqw-hooper/AutowareArchitectureProposal
93ca87fd7255be697219a100a97a639a56f6c4a7
[ "Apache-2.0" ]
null
null
null
src/control/velocity_controller/src/velocity_controller_core.cpp
zqw-hooper/AutowareArchitectureProposal
93ca87fd7255be697219a100a97a639a56f6c4a7
[ "Apache-2.0" ]
4
2021-06-21T11:58:51.000Z
2021-08-06T08:25:54.000Z
/* * Copyright 2018-2019 Autoware Foundation. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not enable 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 re...
39.057949
119
0.723275
zqw-hooper
592e8867399e10c8e956d9759ba667daeb494455
215
hpp
C++
include/zisa/mpi/mpi.hpp
1uc/ZisaMPI
4a832e6ea3e3806a5aa26e8bfd6dcdf89902cf2e
[ "MIT" ]
null
null
null
include/zisa/mpi/mpi.hpp
1uc/ZisaMPI
4a832e6ea3e3806a5aa26e8bfd6dcdf89902cf2e
[ "MIT" ]
null
null
null
include/zisa/mpi/mpi.hpp
1uc/ZisaMPI
4a832e6ea3e3806a5aa26e8bfd6dcdf89902cf2e
[ "MIT" ]
null
null
null
// SPDX-License-Identifier: MIT // Copyright (c) 2021 ETH Zurich, Luc Grosheintz-Laval #ifndef ZISA_MPI_HPP_CIKDL #define ZISA_MPI_HPP_CIKDL #include "mpi_decl.hpp" #include "mpi_impl.hpp" #endif // ZISA_MPI_HPP
19.545455
54
0.772093
1uc
59320cb7a543e86a75f1dda55da6389a2c0d611e
1,126
hpp
C++
Zadatak 5.5/trezor.hpp
pikacxe/Cpp_Projects
4c1defc292a284b359a7583fa48ef51f2fec484b
[ "MIT" ]
null
null
null
Zadatak 5.5/trezor.hpp
pikacxe/Cpp_Projects
4c1defc292a284b359a7583fa48ef51f2fec484b
[ "MIT" ]
null
null
null
Zadatak 5.5/trezor.hpp
pikacxe/Cpp_Projects
4c1defc292a284b359a7583fa48ef51f2fec484b
[ "MIT" ]
null
null
null
#ifndef DEF_TREZOR #define DEF_TREZOR #include <iostream> using namespace std; template <class T, int N> class Trezor{ private: T sefovi[N]; bool popunjeni[N]; public: Trezor(){ for (int i = 0; i< N;i++){ sefovi[i] = T(); popunjeni[i] = fal...
22.078431
45
0.408526
pikacxe
5933c571fdfd1a8905dc21d08d06dd5a442c4694
3,968
cpp
C++
Tudat/Astrodynamics/Propagators/UnitTests/unitTestFullPropagationLambertTargeter.cpp
ViktorJordanov/tudat
069ceeab8f12405c356e19f50d6df037914df85c
[ "BSD-3-Clause" ]
null
null
null
Tudat/Astrodynamics/Propagators/UnitTests/unitTestFullPropagationLambertTargeter.cpp
ViktorJordanov/tudat
069ceeab8f12405c356e19f50d6df037914df85c
[ "BSD-3-Clause" ]
null
null
null
Tudat/Astrodynamics/Propagators/UnitTests/unitTestFullPropagationLambertTargeter.cpp
ViktorJordanov/tudat
069ceeab8f12405c356e19f50d6df037914df85c
[ "BSD-3-Clause" ]
null
null
null
<<<<<<< HEAD /* Copyright (c) 2010-2017, Delft University of Technology ======= /* Copyright (c) 2010-2019, Delft University of Technology >>>>>>> origin/master * All rigths reserved * * This file is part of the Tudat. Redistribution and use in source and * binary forms, with or without modification,...
38.524272
159
0.722278
ViktorJordanov
59367cf9297e5ccdb6022b930e4a2176f39b1462
10,013
cc
C++
qpdf/test_large_file.cc
1006079161/qpdf
baeb0f06124c859f71e614d8089ef2e6e6ff954f
[ "Apache-2.0" ]
1,812
2015-01-27T09:07:20.000Z
2022-03-30T23:03:15.000Z
qpdf/test_large_file.cc
1006079161/qpdf
baeb0f06124c859f71e614d8089ef2e6e6ff954f
[ "Apache-2.0" ]
584
2015-01-24T00:31:12.000Z
2022-03-24T21:42:38.000Z
qpdf/test_large_file.cc
1006079161/qpdf
baeb0f06124c859f71e614d8089ef2e6e6ff954f
[ "Apache-2.0" ]
204
2015-04-09T16:28:06.000Z
2022-03-29T14:29:45.000Z
// NOTE: This test program doesn't do anything special to enable large // file support. This is important since it verifies that programs // don't have to do anything special -- all the work is done // internally by the library as long as they don't do their own file // I/O. #include <qpdf/QPDF.hh> #include <qpdf/QPD...
27.135501
77
0.633177
1006079161
59383b4273145a68c8066dcbad1a07610c9d55f6
5,070
cpp
C++
src/hikogui/time_stamp_count.cpp
sthagen/ttauri-project-ttauri
ece6eeb0094a37610e34cdf89af0569584c660c2
[ "BSL-1.0" ]
null
null
null
src/hikogui/time_stamp_count.cpp
sthagen/ttauri-project-ttauri
ece6eeb0094a37610e34cdf89af0569584c660c2
[ "BSL-1.0" ]
null
null
null
src/hikogui/time_stamp_count.cpp
sthagen/ttauri-project-ttauri
ece6eeb0094a37610e34cdf89af0569584c660c2
[ "BSL-1.0" ]
null
null
null
#include "time_stamp_count.hpp" #include "time_stamp_utc.hpp" #include "log.hpp" #include <emmintrin.h> #include <array> #include <cstdint> namespace hi::inline v1 { [[nodiscard]] ssize_t time_stamp_count::cpu_id_fallback() const noexcept { auto aux_value_ = _mm_set1_epi32(_aux); hilet num_aux_values = _num...
33.8
110
0.667061
sthagen
59385a9dcf20c4042c5bae157db6e38bac235608
12,992
cpp
C++
legion/engine/core/scheduling/scheduler.cpp
Legion-Engine/Legion-Engine
a2b898e1cc763b82953c6990dde0b379491a30d0
[ "MIT" ]
258
2020-10-22T07:09:57.000Z
2021-09-09T05:47:09.000Z
legion/engine/core/scheduling/scheduler.cpp
LeonBrands/Legion-Engine
40aa1f4a8c59eb0824de1cdda8e17d8dba7bed7c
[ "MIT" ]
51
2020-11-17T13:02:10.000Z
2021-09-07T18:19:39.000Z
legion/engine/core/scheduling/scheduler.cpp
LeonBrands/Legion-Engine
40aa1f4a8c59eb0824de1cdda8e17d8dba7bed7c
[ "MIT" ]
13
2020-12-08T08:06:48.000Z
2021-09-09T05:47:19.000Z
#include <core/scheduling/scheduler.hpp> #include <core/events/events.hpp> #include <core/engine/engine.hpp> namespace legion::core::scheduling { void Scheduler::onInit() { reportDependency<events::EventBus>(); reportDependency<Clock>(); events::EventBus::bindToEvent<events::exit>([](e...
31.843137
133
0.558267
Legion-Engine
59390517cbee25f8bb3d2fb018f4001ade33a99e
4,110
cc
C++
tools/accessibility/inspect/ax_tree_server.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
tools/accessibility/inspect/ax_tree_server.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
tools/accessibility/inspect/ax_tree_server.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 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 "tools/accessibility/inspect/ax_tree_server.h" #include <iostream> #include <string> #include "base/at_exit.h" #include "base/bind.h" #include ...
34.537815
79
0.66764
Ron423c
593b161afaef7e0b72adced5a6162694b17503f8
1,212
hpp
C++
include/operations/data.hpp
rationalis-petra/hydra
a1c14e560f5f1c64983468e5fd0be7b32824971d
[ "MIT" ]
2
2021-01-14T11:19:02.000Z
2021-03-07T03:08:08.000Z
include/operations/data.hpp
rationalis-petra/hydra
a1c14e560f5f1c64983468e5fd0be7b32824971d
[ "MIT" ]
null
null
null
include/operations/data.hpp
rationalis-petra/hydra
a1c14e560f5f1c64983468e5fd0be7b32824971d
[ "MIT" ]
null
null
null
#ifndef __MODULUS_OPERATIONS_DATA_HPP #define __MODULUS_OPERATIONS_DATA_HPP #include "expressions.hpp" namespace op { void initialize_data(); void initialize_symbol(); void initialize_string(); void initialize_vector(); void initialize_tuple(); void initialize_object(); void initialize_cons(); void i...
24.24
80
0.744224
rationalis-petra
593b47ad75165b450d6a91392ec5677550553dad
9,614
cc
C++
chrome/browser/safe_browsing/ad_redirect_trigger_browsertest.cc
zealoussnow/chromium
fd8a8914ca0183f0add65ae55f04e287543c7d4a
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
14,668
2015-01-01T01:57:10.000Z
2022-03-31T23:33:32.000Z
chrome/browser/safe_browsing/ad_redirect_trigger_browsertest.cc
zealoussnow/chromium
fd8a8914ca0183f0add65ae55f04e287543c7d4a
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
86
2015-10-21T13:02:42.000Z
2022-03-14T07:50:50.000Z
chrome/browser/safe_browsing/ad_redirect_trigger_browsertest.cc
zealoussnow/chromium
fd8a8914ca0183f0add65ae55f04e287543c7d4a
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
5,941
2015-01-02T11:32:21.000Z
2022-03-31T16:35:46.000Z
// Copyright 2019 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 "base/bind.h" #include "base/callback_helpers.h" #include "base/containers/contains.h" #include "base/memory/ref_counted.h" #include "base/string...
40.737288
82
0.714271
zealoussnow
593c4327a4a7631b41377359a3e2dc8627314753
5,786
cpp
C++
VC2010Samples/MFC/Visual C++ 2008 Feature Pack/VisualStudioDemo/ResourceView.cpp
alonmm/VCSamples
6aff0b4902f5027164d593540fcaa6601a0407c3
[ "MIT" ]
300
2019-05-09T05:32:33.000Z
2022-03-31T20:23:24.000Z
VC2010Samples/MFC/Visual C++ 2008 Feature Pack/VisualStudioDemo/ResourceView.cpp
JaydenChou/VCSamples
9e1d4475555b76a17a3568369867f1d7b6cc6126
[ "MIT" ]
9
2016-09-19T18:44:26.000Z
2018-10-26T10:20:05.000Z
VC2010Samples/MFC/Visual C++ 2008 Feature Pack/VisualStudioDemo/ResourceView.cpp
JaydenChou/VCSamples
9e1d4475555b76a17a3568369867f1d7b6cc6126
[ "MIT" ]
633
2019-05-08T07:34:12.000Z
2022-03-30T04:38:28.000Z
// This is a part of the Microsoft Foundation Classes C++ library. // Copyright (c) Microsoft Corporation. All rights reserved. // // This source code is only intended as a supplement to the // Microsoft Foundation Classes Reference and related // electronic documentation provided with the library. // See these source...
26.3
117
0.728483
alonmm
593d17d4fec0394c83f877e2b1d4154a035f2cbb
4,958
cpp
C++
core/waterPipeSimulator.cpp
simonmeister/hydraulic-terrain-modeler
025fb38493344c6fa676e5b9ab9422aea3d3309c
[ "MIT" ]
4
2018-04-11T07:56:01.000Z
2020-06-26T20:31:31.000Z
core/waterPipeSimulator.cpp
simonmeister/2d-terrain-water-sim
025fb38493344c6fa676e5b9ab9422aea3d3309c
[ "MIT" ]
1
2018-04-11T08:14:20.000Z
2018-04-11T08:14:20.000Z
core/waterPipeSimulator.cpp
simonmeister/hydraulic-terrain-modeler
025fb38493344c6fa676e5b9ab9422aea3d3309c
[ "MIT" ]
null
null
null
#include "WaterPipeSimulator.h" #include <cuda_runtime.h> #include "3rdParty\cuda-helper\helper_cuda.h" #include "util\global.h" extern void writePipeBounds(boundCond* b); extern void cw_setConstant(WaterPipeSimulatorConst c, float value); extern void cw_memsetCell4(float value, const cell4Mem& repr, size_2...
27.544444
125
0.703913
simonmeister
593db3f71938d2e738eb27496cb8e9cf3ad3c715
142,438
cpp
C++
external/gaps/pkgs/R3Graphics/R3Scene.cpp
Tiamat-Tech/npms
2d1bce8c98b0f24aa69273975c52b2fbdb101c29
[ "MIT" ]
119
2021-03-28T06:26:57.000Z
2022-03-30T03:32:07.000Z
external/gaps/pkgs/R3Graphics/R3Scene.cpp
Tiamat-Tech/npms
2d1bce8c98b0f24aa69273975c52b2fbdb101c29
[ "MIT" ]
15
2021-04-08T11:40:19.000Z
2022-03-08T15:45:12.000Z
external/gaps/pkgs/R3Graphics/R3Scene.cpp
Tiamat-Tech/npms
2d1bce8c98b0f24aa69273975c52b2fbdb101c29
[ "MIT" ]
15
2021-04-02T13:32:47.000Z
2022-03-13T03:37:44.000Z
/* Source file for the R3 scene class */ /* Include files */ #include "R3Graphics.h" // Namespace namespace gaps { /* Member functions */ int R3InitScene() { /* Return success */ return TRUE; } void R3StopScene() { } R3Scene:: R3Scene(void) : nodes(), lights(), materials(), brdfs()...
31.780009
163
0.594181
Tiamat-Tech
86c8792fb1229559a8fe3edcba44ccbe6e41f5b0
456
cpp
C++
exercises/4/seminar/10/SoftwareCompany/SoftwareCompany.cpp
triffon/oop-2019-20
db199631d59ddefdcc0c8eb3d689de0095618f92
[ "MIT" ]
19
2020-02-21T16:46:50.000Z
2022-01-26T19:59:49.000Z
exercises/4/seminar/10/SoftwareCompany/SoftwareCompany.cpp
triffon/oop-2019-20
db199631d59ddefdcc0c8eb3d689de0095618f92
[ "MIT" ]
1
2020-03-14T08:09:45.000Z
2020-03-14T08:09:45.000Z
exercises/4/seminar/10/SoftwareCompany/SoftwareCompany.cpp
triffon/oop-2019-20
db199631d59ddefdcc0c8eb3d689de0095618f92
[ "MIT" ]
11
2020-02-23T12:29:58.000Z
2021-04-11T08:30:12.000Z
// SoftwareCompany.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <iostream> #include "Person.h" #include "Client.h" #include "Employee.h" using namespace std; int main() { Person p1("georgi", "todorov", 42); cout << p1; string ordersArr[] = { "order...
18.24
105
0.627193
triffon
86cb2f98c386e8bf3258725260e3e9158753bc1d
3,319
cpp
C++
Wrappers/d3d8/d3d8wrapper.cpp
FrozenFish24/Silent-Hill-2-Enhancements
36c55524824c1e0bb3bdfcaac88ee4a564881a33
[ "Zlib" ]
null
null
null
Wrappers/d3d8/d3d8wrapper.cpp
FrozenFish24/Silent-Hill-2-Enhancements
36c55524824c1e0bb3bdfcaac88ee4a564881a33
[ "Zlib" ]
null
null
null
Wrappers/d3d8/d3d8wrapper.cpp
FrozenFish24/Silent-Hill-2-Enhancements
36c55524824c1e0bb3bdfcaac88ee4a564881a33
[ "Zlib" ]
null
null
null
/** * Copyright (C) 2020 Elisha Riedlinger * * This software is provided 'as-is', without any express or implied warranty. In no event will the * authors be held liable for any damages arising from the use of this software. * Permission is granted to anyone to use this software for any purpose, including co...
31.311321
128
0.726122
FrozenFish24
86cb3adc3de2254aa1b6e4f516d0f39eda47847b
1,923
cpp
C++
src/video_splitter.cpp
Kazz47/my_utils
ece2018b42e7f4d3e9c02d29e4d87358c1744c03
[ "MIT" ]
null
null
null
src/video_splitter.cpp
Kazz47/my_utils
ece2018b42e7f4d3e9c02d29e4d87358c1744c03
[ "MIT" ]
null
null
null
src/video_splitter.cpp
Kazz47/my_utils
ece2018b42e7f4d3e9c02d29e4d87358c1744c03
[ "MIT" ]
null
null
null
#include <sstream> #include <glog/logging.h> #include <opencv2/highgui/highgui.hpp> #include "vcrop.cpp" //#define VISUAL // Name of the main program window static const std::string W_NAME = "WINDOW"; // Frequency in seconds to write frame to disk size_t WRITE_FREQUENCY = 5; std::string getUsage() { std::stri...
24.653846
96
0.593344
Kazz47
86cb86bde4fefb6372d13c98bcf09c852749a124
8,586
cpp
C++
src/net/LocalResponseNormalizationLayer.cpp
cvjena/cn24-active
5f40b63aebd14c0658136b402e3df010e405de05
[ "BSD-3-Clause" ]
2
2019-08-22T02:15:03.000Z
2020-02-13T13:28:56.000Z
src/net/LocalResponseNormalizationLayer.cpp
cvjena/cn24-active
5f40b63aebd14c0658136b402e3df010e405de05
[ "BSD-3-Clause" ]
1
2019-12-26T16:58:51.000Z
2019-12-26T17:01:06.000Z
src/net/LocalResponseNormalizationLayer.cpp
cvjena/cn24-active
5f40b63aebd14c0658136b402e3df010e405de05
[ "BSD-3-Clause" ]
1
2020-10-12T13:10:27.000Z
2020-10-12T13:10:27.000Z
/* * This file is part of the CN24 semantic segmentation software, * copyright (C) 2015 Clemens-Alexander Brust (ikosa dot de at gmail dot com). * * For licensing information, see the LICENSE file included with this project. */ #include <limits> #include <cmath> #include "Log.h" #include "LocalResponseNormaliza...
41.478261
160
0.585022
cvjena
86cbb51d76787ea3229d814cc1ff3e1cc8c74dd9
1,687
hpp
C++
generator/translator_geocoder_base.hpp
kadetlessy/omim
f28560ac36899ef8694e75a36535b0f1487b285b
[ "Apache-2.0" ]
1
2021-07-02T08:45:02.000Z
2021-07-02T08:45:02.000Z
generator/translator_geocoder_base.hpp
kadetlessy/omim
f28560ac36899ef8694e75a36535b0f1487b285b
[ "Apache-2.0" ]
1
2020-06-15T15:16:23.000Z
2020-06-15T15:59:19.000Z
generator/translator_geocoder_base.hpp
maksimandrianov/omim
cbc5a80d09d585afbda01e471887f63b9d3ab0c2
[ "Apache-2.0" ]
null
null
null
#pragma once #include "generator/osm_element.hpp" #include "generator/translator_interface.hpp" #include "indexer/feature_data.hpp" #include <memory> #include <vector> #include <string> class FeatureBuilder1; struct OsmElement; namespace feature { struct GenerateInfo; } // namespace feature namespace generator {...
28.116667
87
0.771784
kadetlessy
86cbd23a49f3ee553a61116b2b23462644fb10d8
312
cc
C++
DataFormats/EcalDigi/src/EcalFEMSample.cc
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
852
2015-01-11T21:03:51.000Z
2022-03-25T21:14:00.000Z
DataFormats/EcalDigi/src/EcalFEMSample.cc
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
30,371
2015-01-02T00:14:40.000Z
2022-03-31T23:26:05.000Z
DataFormats/EcalDigi/src/EcalFEMSample.cc
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
3,240
2015-01-02T05:53:18.000Z
2022-03-31T17:24:21.000Z
#include "DataFormats/EcalDigi/interface/EcalFEMSample.h" EcalFEMSample::EcalFEMSample(int adc, int gainId) { theSample = (adc & 0xFFF) | ((gainId & 0x3) << 12); } std::ostream& operator<<(std::ostream& s, const EcalFEMSample& samp) { s << "ADC=" << samp.adc() << ", gainId=" << samp.gainId(); return s; }
34.666667
105
0.650641
ckamtsikis
86ce6ba56deb9630a300c67eb817c923731f78da
466
hpp
C++
src/util/serialization/serialization.hpp
wchang22/Nova
3db1e8f8a0dea1dcdd3d3d02332534d5945e17bb
[ "MIT" ]
21
2020-05-02T06:32:23.000Z
2021-07-14T11:22:07.000Z
src/util/serialization/serialization.hpp
wchang22/Nova
3db1e8f8a0dea1dcdd3d3d02332534d5945e17bb
[ "MIT" ]
null
null
null
src/util/serialization/serialization.hpp
wchang22/Nova
3db1e8f8a0dea1dcdd3d3d02332534d5945e17bb
[ "MIT" ]
1
2021-05-24T13:44:56.000Z
2021-05-24T13:44:56.000Z
#ifndef SERIALIZATION_HPP #define SERIALIZATION_HPP #include <iostream> #include <vector> template <typename T> std::istream& operator>>(std::istream& in, std::vector<T>& vec) { T t; while (in >> t) { vec.emplace_back(std::move(t)); } return in; } template <typename T> std::ostream& operator<<(std::ostre...
18.64
72
0.645923
wchang22
86cf0e5004c2483ad70219fa72d7daad7e430a4b
4,153
hpp
C++
openstudiocore/src/utilities/core/ApplicationPathHelpers.hpp
jasondegraw/OpenStudio
2ab13f6e5e48940929041444e40ad9d36f80f552
[ "blessing" ]
1
2016-12-29T08:45:03.000Z
2016-12-29T08:45:03.000Z
openstudiocore/src/utilities/core/ApplicationPathHelpers.hpp
jasondegraw/OpenStudio
2ab13f6e5e48940929041444e40ad9d36f80f552
[ "blessing" ]
null
null
null
openstudiocore/src/utilities/core/ApplicationPathHelpers.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 the...
46.662921
116
0.748375
jasondegraw
86d19d1336c945d1de4b4b3a01c94cf9a65b2dbf
738
hh
C++
include/lowi/registers/r10d.hh
kmc7468/lowi
067358f6b1beaf94286488675b3efaa89359a48b
[ "MIT" ]
4
2017-10-01T07:08:58.000Z
2017-12-03T02:40:49.000Z
include/lowi/registers/r10d.hh
kmc7468/lowi
067358f6b1beaf94286488675b3efaa89359a48b
[ "MIT" ]
null
null
null
include/lowi/registers/r10d.hh
kmc7468/lowi
067358f6b1beaf94286488675b3efaa89359a48b
[ "MIT" ]
null
null
null
#ifndef LOWI_HEADER_REGISTERS_R10D_HH #define LOWI_HEADER_REGISTERS_R10D_HH #include <lowi/register_type.hh> namespace lowi { namespace registers { class r10d final : public register_type { public: r10d(); r10d(const r10d& r10d) = default; r10d(r10d&& r10d) noexcept = default; virtual ~r10d() over...
21.085714
52
0.693767
kmc7468
86d4f06ee7cc06073e9f6aba981d247ecb20924d
931
hpp
C++
PUTM_EV_TELEMETRY_2022/Core/Inc/lib/CanHeaders/PM08-CANBUS-BMS_HV.hpp
PUT-Motorsport/PUTM_EV_TELEMETRY_2022
808ed3e7c9b4263b541a804233e5905f6a9b4240
[ "Apache-2.0" ]
null
null
null
PUTM_EV_TELEMETRY_2022/Core/Inc/lib/CanHeaders/PM08-CANBUS-BMS_HV.hpp
PUT-Motorsport/PUTM_EV_TELEMETRY_2022
808ed3e7c9b4263b541a804233e5905f6a9b4240
[ "Apache-2.0" ]
null
null
null
PUTM_EV_TELEMETRY_2022/Core/Inc/lib/CanHeaders/PM08-CANBUS-BMS_HV.hpp
PUT-Motorsport/PUTM_EV_TELEMETRY_2022
808ed3e7c9b4263b541a804233e5905f6a9b4240
[ "Apache-2.0" ]
1
2021-11-22T20:06:58.000Z
2021-11-22T20:06:58.000Z
//Generated on Sat Apr 30 12:45:15 2022 #ifndef BMS_HV #define BMS_HV #include <cstdint> #include "lib/message_abstraction.hpp" enum struct BMS_HV_states: uint8_t { AIR_opened, // normal AIR_closed, // normal Precharge, // normal Charger_connected, // normal Unbalanced, // warning Unbalanced_critical, // shut d...
23.275
83
0.765843
PUT-Motorsport
86d62028db76db5e8e68caf4f76b0bae74d438ce
38,267
hpp
C++
include/HoudiniEngineUnity/HEU_ObjectNode.hpp
RedBrumbler/BeatSaber-Quest-Codegen
73dda50b5a3e51f10d86b766dcaa24b0c6226e25
[ "Unlicense" ]
null
null
null
include/HoudiniEngineUnity/HEU_ObjectNode.hpp
RedBrumbler/BeatSaber-Quest-Codegen
73dda50b5a3e51f10d86b766dcaa24b0c6226e25
[ "Unlicense" ]
null
null
null
include/HoudiniEngineUnity/HEU_ObjectNode.hpp
RedBrumbler/BeatSaber-Quest-Codegen
73dda50b5a3e51f10d86b766dcaa24b0c6226e25
[ "Unlicense" ]
null
null
null
// Autogenerated from CppHeaderCreator // Created by Sc2ad // ========================================================================= #pragma once // Begin includes #include "beatsaber-hook/shared/utils/typedefs.h" #include "beatsaber-hook/shared/utils/byref.hpp" // Including type: UnityEngine.ScriptableObject #inclu...
65.525685
324
0.774924
RedBrumbler
86d629595d8750b14d1ac5acf316403bf7ca8e4d
6,383
cpp
C++
extrautils/SimpleShredder.cpp
jlzhangfafafa/blasr
be8b7929e05f14cd7199003fd21528df9261dbdd
[ "BSD-3-Clause-Clear" ]
129
2015-01-29T17:18:38.000Z
2022-01-29T14:01:10.000Z
extrautils/SimpleShredder.cpp
jlzhangfafafa/blasr
be8b7929e05f14cd7199003fd21528df9261dbdd
[ "BSD-3-Clause-Clear" ]
268
2015-01-26T16:54:32.000Z
2021-05-27T18:15:35.000Z
extrautils/SimpleShredder.cpp
jlzhangfafafa/blasr
be8b7929e05f14cd7199003fd21528df9261dbdd
[ "BSD-3-Clause-Clear" ]
99
2015-01-02T18:21:38.000Z
2021-10-08T06:49:36.000Z
#include <sstream> #include <string> #include <alignment/statistics/StatUtils.hpp> #include <pbdata/CommandLineParser.hpp> #include <pbdata/FASTAReader.hpp> #include <pbdata/FASTASequence.hpp> #include <pbdata/FASTQSequence.hpp> #include <pbdata/metagenome/FindRandomSequence.hpp> #include <pbdata/utils.hpp> int main(...
38.920732
100
0.575905
jlzhangfafafa
86d96364c570e7a4215e527422095d29374bba76
3,881
cpp
C++
ql/models/marketmodels/products/multistep/multistepinversefloater.cpp
universe1987/QuantLib
bbb0145aff285853755b9f6ed013f53a41163acb
[ "BSD-3-Clause" ]
4
2016-03-28T15:05:23.000Z
2020-02-17T23:05:57.000Z
ql/models/marketmodels/products/multistep/multistepinversefloater.cpp
universe1987/QuantLib
bbb0145aff285853755b9f6ed013f53a41163acb
[ "BSD-3-Clause" ]
1
2015-02-02T20:32:43.000Z
2015-02-02T20:32:43.000Z
ql/models/marketmodels/products/multistep/multistepinversefloater.cpp
pcaspers/quantlib
bbb0145aff285853755b9f6ed013f53a41163acb
[ "BSD-3-Clause" ]
10
2015-01-26T14:50:24.000Z
2015-10-23T07:41:30.000Z
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2006 Giorgio Facchinetti This file is part of QuantLib, a free-software/open-source library for financial quantitative analysts and developers - http://quantlib.org/ QuantLib is free software: you can redistribute it and...
47.329268
170
0.709096
universe1987
86d965b17b30c231f31e9a177ce6b24dffde99f2
3,371
cpp
C++
ExtraLifeEngine/Texture/OpenGL/OpenGLCubeMapCompiler.cpp
paulburgess1357/ExtraLifeEngine
e0d1f95fa57ea9e5016d1e3800815cdb24b1eb0f
[ "MIT" ]
1
2020-11-13T05:39:46.000Z
2020-11-13T05:39:46.000Z
ExtraLifeEngine/Texture/OpenGL/OpenGLCubeMapCompiler.cpp
paulburgess1357/ExtraLifeEngine
e0d1f95fa57ea9e5016d1e3800815cdb24b1eb0f
[ "MIT" ]
null
null
null
ExtraLifeEngine/Texture/OpenGL/OpenGLCubeMapCompiler.cpp
paulburgess1357/ExtraLifeEngine
e0d1f95fa57ea9e5016d1e3800815cdb24b1eb0f
[ "MIT" ]
null
null
null
#include "OpenGLCubeMapCompiler.h" #include "OpenGLTexture.h" #include "OpenGLTextureFormatFinder.h" #include "Texture/Neutral/TextureLoaderFromFile.h" #include "Constants/GraphicsConstants.h" #include "Utility/Print.h" #include "Utility/SBTIUtilities.h" #include <glad/glad.h> namespace ExtraLife { OpenGL::OpenGLCub...
44.946667
198
0.801543
paulburgess1357
86ddbd9fc929077f83e42ffa0b4da80fb82bbb60
7,826
cpp
C++
arangod/Statistics/RequestStatistics.cpp
iamjpn/arangodb
818b3dcbbcf7dc323bbbb8f3fac34444a8afdb25
[ "Apache-2.0" ]
1
2020-10-27T12:19:33.000Z
2020-10-27T12:19:33.000Z
arangod/Statistics/RequestStatistics.cpp
charity1475/arangodb
32bef3ed9abef6f41a11466fe6361ae3e6d99b5e
[ "Apache-2.0" ]
null
null
null
arangod/Statistics/RequestStatistics.cpp
charity1475/arangodb
32bef3ed9abef6f41a11466fe6361ae3e6d99b5e
[ "Apache-2.0" ]
1
2020-10-01T08:49:12.000Z
2020-10-01T08:49:12.000Z
//////////////////////////////////////////////////////////////////////////////// /// DISCLAIMER /// /// Copyright 2014-2020 ArangoDB GmbH, Cologne, Germany /// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany /// /// Licensed under the Apache License, Version 2.0 (the "License"); /// you may not use this file except...
33.878788
103
0.613596
iamjpn
86ddeae3c50affcfd7122d5ce163beab90bf0e58
1,150
cpp
C++
search_and_graph/bfs/demo/leetcode_lp07.cpp
Fanjunmin/algorithm-template
db0d37a7c9c37ee9a167918fb74b03d1d09b6fad
[ "MIT" ]
1
2021-04-26T11:03:04.000Z
2021-04-26T11:03:04.000Z
search_and_graph/bfs/demo/leetcode_lp07.cpp
Fanjunmin/algrithm-template
db0d37a7c9c37ee9a167918fb74b03d1d09b6fad
[ "MIT" ]
null
null
null
search_and_graph/bfs/demo/leetcode_lp07.cpp
Fanjunmin/algrithm-template
db0d37a7c9c37ee9a167918fb74b03d1d09b6fad
[ "MIT" ]
null
null
null
class Solution { private: int h[15]; int e[100], ne[100], idx; void init() { memset(h, -1, sizeof(h)); memset(e, 0, sizeof(e)); memset(ne, 0, sizeof(ne)); idx = 0; } void add(int a, int b) { idx++; e[idx] = b; ne[idx] = h[a]; h[a] = idx...
23.958333
62
0.36
Fanjunmin
86df9c9b5f6f471382314d4371ef4ac688ca5e0c
1,382
cpp
C++
z80/z80_processor.cpp
lukka/CppOpenGLWebAssemblyCMake
1e2f161812f808d4467cec7cfd8c2e7181af0a75
[ "MIT" ]
59
2018-06-10T03:29:03.000Z
2022-01-19T18:01:05.000Z
z80/z80_processor.cpp
BlueSolei/CppOpenGLWebAssemblyCMake
4da1c47dd3548aa9595ee8d78b5c01c94b217dad
[ "MIT" ]
3
2019-05-04T10:58:19.000Z
2020-05-15T03:08:20.000Z
z80/z80_processor.cpp
BlueSolei/CppOpenGLWebAssemblyCMake
4da1c47dd3548aa9595ee8d78b5c01c94b217dad
[ "MIT" ]
7
2018-07-02T22:31:07.000Z
2021-05-10T12:07:26.000Z
#include "z80_processor.h" #include "z80_processor_impl.h" namespace Z80 { Processor::Processor(double clockFrequency, uint8_t ram[], Emulator::IOHandler& ioHandler, const std::string tag, Emulator::IMemoryHandler* memoryHandler, Emulator::Cpu& c...
30.043478
78
0.686686
lukka
86dff121a4ec4b6e167c4a3c5bc9ebaa9800f091
32,540
cc
C++
asv_wave_sim_gazebo_plugins/src/HydrodynamicsPlugin.cc
minzlee/asv_wave_sim
d9426e1b7b75d43f0c1bd3201e6ba62e54af968f
[ "Apache-2.0" ]
25
2019-05-29T04:55:19.000Z
2022-03-18T19:07:07.000Z
asv_wave_sim_gazebo_plugins/src/HydrodynamicsPlugin.cc
minzlee/asv_wave_sim
d9426e1b7b75d43f0c1bd3201e6ba62e54af968f
[ "Apache-2.0" ]
12
2019-02-14T16:26:57.000Z
2022-03-30T19:44:33.000Z
asv_wave_sim_gazebo_plugins/src/HydrodynamicsPlugin.cc
minzlee/asv_wave_sim
d9426e1b7b75d43f0c1bd3201e6ba62e54af968f
[ "Apache-2.0" ]
11
2019-05-29T04:55:22.000Z
2022-02-23T11:55:32.000Z
// Copyright (C) 2019 Rhys Mainwaring // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is dist...
35.837004
111
0.619852
minzlee
86e0b4c1b97c1c8ba62c9f80f7a981c8a15b2a9b
6,431
cpp
C++
src/Libraries/Analytics.FaceAnalyzer/FaceAnalyzer.cpp
digitalmacgyver/viblio_faces
a1066a59bf2f7dba434013588519f2486eac976d
[ "Xnet", "Linux-OpenIB", "X11" ]
null
null
null
src/Libraries/Analytics.FaceAnalyzer/FaceAnalyzer.cpp
digitalmacgyver/viblio_faces
a1066a59bf2f7dba434013588519f2486eac976d
[ "Xnet", "Linux-OpenIB", "X11" ]
null
null
null
src/Libraries/Analytics.FaceAnalyzer/FaceAnalyzer.cpp
digitalmacgyver/viblio_faces
a1066a59bf2f7dba434013588519f2486eac976d
[ "Xnet", "Linux-OpenIB", "X11" ]
null
null
null
/* The entry point into the application. Parses command line options (or config files) and sets up the program flow based on said options Date: 01/07/2013 Author: Jason Catchpole (jason@viblio.com) */ #include "FaceAnalyzer.h" #include "FaceAnalyzerConfiguration.h" #include "TrackingController.h" ...
33.321244
176
0.735033
digitalmacgyver
86e0d493313f553ad3cad6bc3462c262489d56ce
1,940
cpp
C++
src/COLLADA2GLTFExtrasHandler.cpp
roman0yurin/COLLADA2GLTF
0fa78477f4a853f09ad1a4d2bec42dbb70f0e917
[ "MIT" ]
null
null
null
src/COLLADA2GLTFExtrasHandler.cpp
roman0yurin/COLLADA2GLTF
0fa78477f4a853f09ad1a4d2bec42dbb70f0e917
[ "MIT" ]
null
null
null
src/COLLADA2GLTFExtrasHandler.cpp
roman0yurin/COLLADA2GLTF
0fa78477f4a853f09ad1a4d2bec42dbb70f0e917
[ "MIT" ]
null
null
null
#include <COLLADAFW.h> #include <COLLADASaxFWLFileLoader.h> #include <COLLADASaxFWLLibraryEffectsLoader.h> #include "COLLADA2GLTFExtrasHandler.h" bool COLLADA2GLTF::ExtrasHandler::elementBegin(const COLLADASaxFWL::ParserChar* elementName, const GeneratedSaxParser::xmlChar** attributes) { std::string name = std::stri...
34.035088
142
0.728866
roman0yurin
86e472d8c66dc9851e97165a52f73c2d32184440
6,792
cc
C++
ppapi/thunk/ppb_file_ref_thunk.cc
google-ar/chromium
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
2,151
2020-04-18T07:31:17.000Z
2022-03-31T08:39:18.000Z
ppapi/thunk/ppb_file_ref_thunk.cc
harrymarkovskiy/WebARonARCore
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
395
2020-04-18T08:22:18.000Z
2021-12-08T13:04:49.000Z
ppapi/thunk/ppb_file_ref_thunk.cc
harrymarkovskiy/WebARonARCore
2441c86a5fd975f09a6c30cddb57dfb7fc239699
[ "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
338
2020-04-18T08:03:10.000Z
2022-03-29T12:33:22.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 <stdint.h> #include "ppapi/c/pp_completion_callback.h" #include "ppapi/c/pp_errors.h" #include "ppapi/c/pp_file_info.h" #include "ppapi/c/pp...
28.658228
79
0.702886
google-ar
86e61add482dfb0bba74ce5d5a6bc7b042a2b158
17,629
cpp
C++
PyDK/DCMatrix4.cpp
hhg128/DKGL
c61bc6546ac5655da97462cc532a9034ba08516d
[ "PSF-2.0", "BSD-3-Clause" ]
14
2015-09-12T01:32:05.000Z
2021-10-13T02:52:53.000Z
PyDK/DCMatrix4.cpp
hhg128/DKGL
c61bc6546ac5655da97462cc532a9034ba08516d
[ "PSF-2.0", "BSD-3-Clause" ]
null
null
null
PyDK/DCMatrix4.cpp
hhg128/DKGL
c61bc6546ac5655da97462cc532a9034ba08516d
[ "PSF-2.0", "BSD-3-Clause" ]
3
2015-11-10T03:12:49.000Z
2018-10-15T15:38:31.000Z
#include <Python.h> #include <structmember.h> #include <DK/DK.h> #include "DCObject.h" struct DCMatrix4 { PyObject_HEAD DKMatrix4 matrix4; }; static PyObject* DCMatrix4New(PyTypeObject* type, PyObject* args, PyObject* kwds) { DCMatrix4* self = (DCMatrix4*)type->tp_alloc(type, 0); if (self) { new (&self->matrix...
31.146643
135
0.651824
hhg128
86e7afa82e18b86e1b68a3d1ca0e4161a7aaccf2
3,019
hpp
C++
src/auth.hpp
planetbeing/cpp-driver
90b683cb7fce9ab480765f8ed50185af53df791c
[ "Apache-2.0" ]
null
null
null
src/auth.hpp
planetbeing/cpp-driver
90b683cb7fce9ab480765f8ed50185af53df791c
[ "Apache-2.0" ]
null
null
null
src/auth.hpp
planetbeing/cpp-driver
90b683cb7fce9ab480765f8ed50185af53df791c
[ "Apache-2.0" ]
null
null
null
/* Copyright (c) 2015 DataStax Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, sof...
26.955357
84
0.741968
planetbeing
86e8170aa89ead1bc561f5d3049344f1d5b59f38
2,464
cc
C++
src/engine/json/test/TestEnumMapLoader.cc
aburgm/freeisle
5175897b31e471b4cf9bc2a9be7a88f8b4201d2a
[ "MIT" ]
1
2021-05-24T00:31:20.000Z
2021-05-24T00:31:20.000Z
src/engine/json/test/TestEnumMapLoader.cc
aburgm/freeisle
5175897b31e471b4cf9bc2a9be7a88f8b4201d2a
[ "MIT" ]
null
null
null
src/engine/json/test/TestEnumMapLoader.cc
aburgm/freeisle
5175897b31e471b4cf9bc2a9be7a88f8b4201d2a
[ "MIT" ]
null
null
null
#include "core/EnumMap.hh" #include "json/LoadUtil.hh" #include "json/Loader.hh" #include "core/test/util/Util.hh" #include <gtest/gtest.h> namespace { enum class TestEnum { Enum1, Enum2, Enum3, Num }; constexpr freeisle::core::EnumEntry<TestEnum> entries[] = { {TestEnum::Enum1, "Enum1"}, {TestEnum::Enum2,...
26.494624
78
0.662744
aburgm
86ecdf5bfe9d9917260727331b6a2f176a6a7d36
6,782
cc
C++
media/base/mac/video_frame_mac_unittests.cc
zipated/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
2,151
2020-04-18T07:31:17.000Z
2022-03-31T08:39:18.000Z
media/base/mac/video_frame_mac_unittests.cc
cangulcan/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
395
2020-04-18T08:22:18.000Z
2021-12-08T13:04:49.000Z
media/base/mac/video_frame_mac_unittests.cc
cangulcan/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
338
2020-04-18T08:03:10.000Z
2022-03-29T12:33:22.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 "media/base/mac/video_frame_mac.h" #include <stddef.h> #include <utility> #include "base/bind.h" #include "base/callback_helpers.h" #inclu...
34.602041
80
0.675022
zipated
86f0d8ec95ee742ecac5506bdedfed5bb6db6d64
611
cpp
C++
Adim1_Ornekler/18_Switch_Case/src/main.cpp
KMACEL/TR-Cpp
dac7bebd1d5fd2d69a76be5a9809417333f01817
[ "Apache-2.0" ]
1
2021-05-25T22:11:13.000Z
2021-05-25T22:11:13.000Z
Adim1_Ornekler/18_Switch_Case/src/main.cpp
KMACEL/TR-Cpp
dac7bebd1d5fd2d69a76be5a9809417333f01817
[ "Apache-2.0" ]
null
null
null
Adim1_Ornekler/18_Switch_Case/src/main.cpp
KMACEL/TR-Cpp
dac7bebd1d5fd2d69a76be5a9809417333f01817
[ "Apache-2.0" ]
null
null
null
//============================================================================ // İsim : 18_Switch_Case // Yazan : Mert AceL // Version : 1.0 // Copyright : AceL // Açıklama : Switch Case //============================================================================ #include<iostream> using namesp...
21.068966
78
0.332242
KMACEL
86f5752ead3afab60f241e2e4cd2e0f8d6a89a3b
2,527
hpp
C++
map/bookmark_manager.hpp
xblonde/omim
d940a4761786c994884d2488a469635a4ac76d28
[ "Apache-2.0" ]
1
2021-01-19T08:31:19.000Z
2021-01-19T08:31:19.000Z
map/bookmark_manager.hpp
frankiewb/omim
0d9302e7b1be470735655337f0183ad04c55b6ad
[ "Apache-2.0" ]
null
null
null
map/bookmark_manager.hpp
frankiewb/omim
0d9302e7b1be470735655337f0183ad04c55b6ad
[ "Apache-2.0" ]
null
null
null
#pragma once #include "map/bookmark.hpp" #include "map/user_mark_container.hpp" #include "geometry/any_rect2d.hpp" #include <functional> #include <memory> #include <string> #include <vector> class Framework; class PaintEvent; class BookmarkManager : private noncopyable { using CategoriesCollection = std::vector<...
27.467391
88
0.770875
xblonde
86f5ad4eb2ce4ea6d1bcb85d08e85de2048dace3
2,193
cpp
C++
2018/day12/main.cpp
batduck27/Advent_of_code
6b2dadf28bebd2301464c864f5112dccede9762b
[ "MIT" ]
null
null
null
2018/day12/main.cpp
batduck27/Advent_of_code
6b2dadf28bebd2301464c864f5112dccede9762b
[ "MIT" ]
null
null
null
2018/day12/main.cpp
batduck27/Advent_of_code
6b2dadf28bebd2301464c864f5112dccede9762b
[ "MIT" ]
null
null
null
#include <iostream> #include <fstream> #include <map> const std::string INIT = "initial state: "; const std::string SEP = " => "; const int WSIZE = 5; const int PART1 = 20; const long long PART2 = 50000000000; std::map <std::string, char> M; std::map <std::string, int> seen; int potSum(std::string str, int first...
25.206897
119
0.481532
batduck27
86f7558fb9efc5c7a36bd1712be6578c4262ad8c
10,428
cc
C++
tensorflow/core/kernels/variable_ops.cc
ShaunHeNJU/DeepRec-1
e280fb19de179f03dc05e1d8e3f4f7459796d96e
[ "Apache-2.0" ]
292
2021-12-24T03:24:33.000Z
2022-03-31T15:41:05.000Z
tensorflow/core/kernels/variable_ops.cc
ShaunHeNJU/DeepRec-1
e280fb19de179f03dc05e1d8e3f4f7459796d96e
[ "Apache-2.0" ]
54
2021-12-24T06:40:09.000Z
2022-03-30T07:57:24.000Z
tensorflow/core/kernels/variable_ops.cc
ShaunHeNJU/DeepRec-1
e280fb19de179f03dc05e1d8e3f4f7459796d96e
[ "Apache-2.0" ]
75
2021-12-24T04:48:21.000Z
2022-03-29T10:13:39.000Z
/* Copyright 2015 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or a...
43.090909
96
0.600115
ShaunHeNJU
86f8062cf684df0db59fd55781ec4292809a27b1
1,304
cpp
C++
gxruntime/gxmesh.cpp
ZiYueCommentary/Blitz3D
866cce504c3b1b8592d034cf50468459f1c767ca
[ "Zlib" ]
null
null
null
gxruntime/gxmesh.cpp
ZiYueCommentary/Blitz3D
866cce504c3b1b8592d034cf50468459f1c767ca
[ "Zlib" ]
null
null
null
gxruntime/gxmesh.cpp
ZiYueCommentary/Blitz3D
866cce504c3b1b8592d034cf50468459f1c767ca
[ "Zlib" ]
null
null
null
#include "std.h" #include "gxmesh.h" #include "gxgraphics.h" #include "gxruntime.h" extern gxRuntime* gx_runtime; gxMesh::gxMesh(gxGraphics* g, IDirect3DVertexBuffer7* vs, WORD* is, int max_vs, int max_ts) : graphics(g), locked_verts(0), vertex_buff(vs), tri_indices(is), max_verts(max_vs), max_tris(max_ts), mesh_d...
19.757576
121
0.69862
ZiYueCommentary
86f97d6aad32a73ea1aa9fd7383771193c3a3b1f
6,794
cpp
C++
Co-Simulation/Sumo/sumo-1.7.0/src/netedit/elements/additional/GNETAZElement.cpp
uruzahe/carla
940c2ab23cce1eda1ef66de35f66b42d40865fb1
[ "MIT" ]
null
null
null
Co-Simulation/Sumo/sumo-1.7.0/src/netedit/elements/additional/GNETAZElement.cpp
uruzahe/carla
940c2ab23cce1eda1ef66de35f66b42d40865fb1
[ "MIT" ]
null
null
null
Co-Simulation/Sumo/sumo-1.7.0/src/netedit/elements/additional/GNETAZElement.cpp
uruzahe/carla
940c2ab23cce1eda1ef66de35f66b42d40865fb1
[ "MIT" ]
null
null
null
/****************************************************************************/ // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo // Copyright (C) 2001-2020 German Aerospace Center (DLR) and others. // This program and the accompanying materials are made available under the // terms of the Ecli...
39.730994
174
0.620548
uruzahe
86fc8f25323f0a53a53d7cba34504408babb84ae
545,722
cpp
C++
src/devices/cpu/upd7810/upd7810_table.cpp
Robbbert/messui
49b756e2140d8831bc81335298ee8c5471045e79
[ "BSD-3-Clause" ]
26
2015-03-31T06:25:51.000Z
2021-12-14T09:29:04.000Z
src/devices/cpu/upd7810/upd7810_table.cpp
Robbbert/messui
49b756e2140d8831bc81335298ee8c5471045e79
[ "BSD-3-Clause" ]
null
null
null
src/devices/cpu/upd7810/upd7810_table.cpp
Robbbert/messui
49b756e2140d8831bc81335298ee8c5471045e79
[ "BSD-3-Clause" ]
10
2015-03-27T05:45:51.000Z
2022-02-04T06:57:36.000Z
// license:BSD-3-Clause // copyright-holders:Juergen Buchmueller /***************************************************************************** * * Portable uPD7810/11, 7810H/11H, 78C10/C11/C14 emulator V0.2 * * 7810tbl.inc - function pointer tables * *********************************************************...
87.273629
112
0.540156
Robbbert
86fe02cf2bca1e0ba3340f5be92d9e9a13733bd8
1,075
cpp
C++
code/970.cpp
Nightwish-cn/my_leetcode
40f206e346f3f734fb28f52b9cde0e0041436973
[ "MIT" ]
23
2020-03-30T05:44:56.000Z
2021-09-04T16:00:57.000Z
code/970.cpp
Nightwish-cn/my_leetcode
40f206e346f3f734fb28f52b9cde0e0041436973
[ "MIT" ]
1
2020-05-10T15:04:05.000Z
2020-06-14T01:21:44.000Z
code/970.cpp
Nightwish-cn/my_leetcode
40f206e346f3f734fb28f52b9cde0e0041436973
[ "MIT" ]
6
2020-03-30T05:45:04.000Z
2020-08-13T10:01:39.000Z
#include <bits/stdc++.h> #define INF 2000000000 using namespace std; typedef long long ll; int read(){ int f = 1, x = 0; char c = getchar(); while(c < '0' || c > '9'){if(c == '-') f = -f; c = getchar();} while(c >= '0' && c <= '9')x = x * 10 + c - '0', c = getchar(); return f * x; } class Solution { public: v...
23.369565
64
0.452093
Nightwish-cn
86fe1ebedf55725c4731b2ee88f421843c65a244
4,626
cpp
C++
effectNodes-for-cocos2dx-3x/code/splash/layer_splash.cpp
songxiaopeng/EffectNodes-for-cocos2dx
905694e6a0c3063f62f2424e22e0e8c1e8b5586c
[ "MIT" ]
2
2016-08-07T01:38:56.000Z
2016-11-03T04:27:21.000Z
effectNodes-for-cocos2dx-3x/code/splash/layer_splash.cpp
songxiaopeng/EffectNodes-for-cocos2dx
905694e6a0c3063f62f2424e22e0e8c1e8b5586c
[ "MIT" ]
null
null
null
effectNodes-for-cocos2dx-3x/code/splash/layer_splash.cpp
songxiaopeng/EffectNodes-for-cocos2dx
905694e6a0c3063f62f2424e22e0e8c1e8b5586c
[ "MIT" ]
4
2016-05-04T05:47:55.000Z
2020-05-27T07:40:38.000Z
// // layer_splash.cpp // HelloWorld // // Created by yang chao (wantnon) on 14/12/15. // // #include "layer_splash.h" #include "chooseScene.h" void Clayer_splash::controlButtonEvent_back(Ref *senderz, Control::EventType controlEvent){ CchooseScene*scene=new CchooseScene(); scene->autorelease(); scene-...
29.464968
162
0.601167
songxiaopeng
810270c6305731de926d23c73fd0d9aa0a40301f
816
hh
C++
Testcase4-Application-breakdown/online-compiling/src/util/signalfd.hh
hunhoffe/ServerlessBench
529eb835638cad0edb5be3343166c7ade375ece2
[ "MulanPSL-1.0" ]
129
2020-08-09T12:02:30.000Z
2022-03-31T15:26:03.000Z
Testcase4-Application-breakdown/online-compiling/src/util/signalfd.hh
hunhoffe/ServerlessBench
529eb835638cad0edb5be3343166c7ade375ece2
[ "MulanPSL-1.0" ]
11
2020-09-17T09:42:07.000Z
2022-03-30T19:05:38.000Z
Testcase4-Application-breakdown/online-compiling/src/util/signalfd.hh
hunhoffe/ServerlessBench
529eb835638cad0edb5be3343166c7ade375ece2
[ "MulanPSL-1.0" ]
22
2020-08-20T06:59:24.000Z
2022-03-18T21:00:05.000Z
/* -*-mode:c++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ #ifndef SIGNALFD_HH #define SIGNALFD_HH #include <sys/signalfd.h> #include <initializer_list> #include "file_descriptor.hh" /* wrapper class for Unix signal masks and signal file descriptor */ class SignalMask { private: sigset_t mask_...
20.4
77
0.703431
hunhoffe
8102ee3d833dbb863456b2a29b78b8785802ff8d
2,983
hpp
C++
inst/include/geometries/utils/rleid/rleid.hpp
dcooley/geometries
2ffd841a5b4204d2460c278fe1430ac8f309fa01
[ "MIT" ]
27
2020-04-27T12:31:55.000Z
2021-07-16T18:14:37.000Z
inst/include/geometries/utils/rleid/rleid.hpp
dcooley/geometries
2ffd841a5b4204d2460c278fe1430ac8f309fa01
[ "MIT" ]
16
2020-04-27T14:17:02.000Z
2021-05-04T22:42:46.000Z
inst/include/geometries/utils/rleid/rleid.hpp
dcooley/geometries
2ffd841a5b4204d2460c278fe1430ac8f309fa01
[ "MIT" ]
1
2020-04-27T12:32:55.000Z
2020-04-27T12:32:55.000Z
#ifndef R_GEOMETRIES_UTILS_RLEID_H #define R_GEOMETRIES_UTILS_RLEID_H namespace geometries { namespace utils { // from data.table // https://github.com/Rdatatable/data.table/blob/8b93bb22715b45d38acf185f40d573bda8748cb4/src/uniqlist.c#L164 inline Rcpp::IntegerVector rleid( Rcpp::DataFrame& df, Rcpp::IntegerVect...
25.495726
111
0.507543
dcooley
8104741d655e13d449fb5320366c002ab5eba050
20,556
cpp
C++
tools/CodePolygons/src/Utils/GManager.cpp
wallarelvo/CRoPS
12ecd0afefa6528fc8b2c7d2667ed3b73301d5ec
[ "Apache-2.0" ]
null
null
null
tools/CodePolygons/src/Utils/GManager.cpp
wallarelvo/CRoPS
12ecd0afefa6528fc8b2c7d2667ed3b73301d5ec
[ "Apache-2.0" ]
null
null
null
tools/CodePolygons/src/Utils/GManager.cpp
wallarelvo/CRoPS
12ecd0afefa6528fc8b2c7d2667ed3b73301d5ec
[ "Apache-2.0" ]
null
null
null
#include "Utils/GManager.hpp" #include "Utils/GDraw.hpp" #include "Utils/PrintMsg.hpp" #include "Utils/Constants.hpp" #include "Utils/PseudoRandom.hpp" #include <cstdlib> #include <cmath> namespace Abetare { GManager *m_gManager = NULL; void GManager::CallbackEventOnActiveMouseMove(int x, int y) { if...
28.870787
94
0.652121
wallarelvo
8109953b83c24dc2568bc0fa2944ed4e50e32288
5,875
cxx
C++
resip/dum/DumTimeout.cxx
dulton/reSipServer
ac4241df81c1e3eef2e678271ffef4dda1fc6747
[ "Apache-2.0" ]
1
2019-04-15T14:10:58.000Z
2019-04-15T14:10:58.000Z
resip/dum/DumTimeout.cxx
dulton/reSipServer
ac4241df81c1e3eef2e678271ffef4dda1fc6747
[ "Apache-2.0" ]
null
null
null
resip/dum/DumTimeout.cxx
dulton/reSipServer
ac4241df81c1e3eef2e678271ffef4dda1fc6747
[ "Apache-2.0" ]
2
2019-10-31T09:11:09.000Z
2021-09-17T01:00:49.000Z
#include <cassert> #include "DumTimeout.hxx" #include "rutil/WinLeakCheck.hxx" #include "resip/dum/BaseUsage.hxx" using namespace resip; DumTimeout::DumTimeout(Type type, unsigned long duration, BaseUsageHandle targetBu, unsigned int seq, ...
27.453271
86
0.630638
dulton
810df11717669e7c77c48499a802e6b3013e6518
2,552
hpp
C++
include/eagine/sslplus/api/result.hpp
matus-chochlik/eagine-sslplus
c136220a5f2dafdcecf847e517728f8fa8e43959
[ "BSL-1.0" ]
null
null
null
include/eagine/sslplus/api/result.hpp
matus-chochlik/eagine-sslplus
c136220a5f2dafdcecf847e517728f8fa8e43959
[ "BSL-1.0" ]
null
null
null
include/eagine/sslplus/api/result.hpp
matus-chochlik/eagine-sslplus
c136220a5f2dafdcecf847e517728f8fa8e43959
[ "BSL-1.0" ]
null
null
null
/// @file /// /// Copyright Matus Chochlik. /// 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 EAGINE_SSLPLUS_API_RESULT_HPP #define EAGINE_SSLPLUS_API_RESULT_HPP #include "config.hpp" #include <eagin...
31.9
80
0.535658
matus-chochlik
810e64b5f4052c160d46a26d6a7ce69aace66021
2,362
cpp
C++
Sources/Elastos/Frameworks/Droid/Base/Core/src/elastos/droid/internal/policy/impl/LogDecelerateInterpolator.cpp
jingcao80/Elastos
d0f39852356bdaf3a1234743b86364493a0441bc
[ "Apache-2.0" ]
7
2017-07-13T10:34:54.000Z
2021-04-16T05:40:35.000Z
Sources/Elastos/Frameworks/Droid/Base/Core/src/elastos/droid/internal/policy/impl/LogDecelerateInterpolator.cpp
jingcao80/Elastos
d0f39852356bdaf3a1234743b86364493a0441bc
[ "Apache-2.0" ]
null
null
null
Sources/Elastos/Frameworks/Droid/Base/Core/src/elastos/droid/internal/policy/impl/LogDecelerateInterpolator.cpp
jingcao80/Elastos
d0f39852356bdaf3a1234743b86364493a0441bc
[ "Apache-2.0" ]
9
2017-07-13T12:33:20.000Z
2021-06-19T02:46:48.000Z
//========================================================================= // Copyright (C) 2012 The Elastos Open Source Project // // 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 // // ...
29.160494
117
0.617273
jingcao80
8110fe1adfcaf3ed9036cf16f4d9f8c9994b1ffc
11,154
inl
C++
include/LinearAlgebra/tmlVector4.inl
mbatc/Template-Math-Library
66aa61edbe8c16e636b28a355be0fe5e9989742f
[ "MIT" ]
null
null
null
include/LinearAlgebra/tmlVector4.inl
mbatc/Template-Math-Library
66aa61edbe8c16e636b28a355be0fe5e9989742f
[ "MIT" ]
null
null
null
include/LinearAlgebra/tmlVector4.inl
mbatc/Template-Math-Library
66aa61edbe8c16e636b28a355be0fe5e9989742f
[ "MIT" ]
null
null
null
template<typename T> inline tmlVector4<T>::tmlVector4() : x(0) , y(0) , z(0) , w(0) {} template<typename T> inline tmlVector4<T>::tmlVector4(T val) : x(val) , y(val) , z(val) , w(val) {} template<typename T> inline tmlVector4<T>::tmlVector4(T _x, T _y, T _z, T _w) : x(_x) , y(_y) , z(_z) , w(...
19.671958
119
0.659674
mbatc
81113e19d53d4c767bf79cadb8bd97b1fe302858
3,338
cpp
C++
C++/University/2017-2018/Metody programowania/E.cpp
Wowol/Education
95f1b86a0f70fd8cd0ce66bc546cd38871572a8b
[ "MIT" ]
null
null
null
C++/University/2017-2018/Metody programowania/E.cpp
Wowol/Education
95f1b86a0f70fd8cd0ce66bc546cd38871572a8b
[ "MIT" ]
null
null
null
C++/University/2017-2018/Metody programowania/E.cpp
Wowol/Education
95f1b86a0f70fd8cd0ce66bc546cd38871572a8b
[ "MIT" ]
null
null
null
#include <iostream> #define MAX 100005 #include <map> using namespace std; int n; int preOrder[MAX]; int inOrder[MAX]; int postOrder[MAX]; map<int, int> where; int currentIndex; void preIn(int inFirst, int inLast) { if (inFirst > inLast) { return; } cout << '('; if (inFirst == inLast) ...
18.043243
107
0.423008
Wowol
81117cb768a2108e7a06bd5afb9b1ababa912b65
6,810
cpp
C++
src/Character.cpp
venGaza/combatGame
8839b587afb319d7c3dd1e5b65bbd9e24b16d7c9
[ "MIT" ]
null
null
null
src/Character.cpp
venGaza/combatGame
8839b587afb319d7c3dd1e5b65bbd9e24b16d7c9
[ "MIT" ]
null
null
null
src/Character.cpp
venGaza/combatGame
8839b587afb319d7c3dd1e5b65bbd9e24b16d7c9
[ "MIT" ]
null
null
null
/* * Class: Character * ------------------------- * This is the interface file for the Character class. This class stores the character attributes for * each of the character types. This class also serves as the superclass for all the character types. */ #include "Character.hpp" #include "randomNumber.hpp" #inclu...
29.868421
101
0.539354
venGaza
81128248d36351b171fb0249d8f1db04b568dc40
2,247
cc
C++
solutions/kattis/cookieselection.cc
zwliew/ctci
871f4fc957be96c6d0749d205549b7b35dc53d9e
[ "MIT" ]
4
2020-11-07T14:38:02.000Z
2022-01-03T19:02:36.000Z
solutions/kattis/cookieselection.cc
zwliew/ctci
871f4fc957be96c6d0749d205549b7b35dc53d9e
[ "MIT" ]
1
2019-04-17T06:55:14.000Z
2019-04-17T06:55:14.000Z
solutions/kattis/cookieselection.cc
zwliew/ctci
871f4fc957be96c6d0749d205549b7b35dc53d9e
[ "MIT" ]
null
null
null
#include <algorithm> #include <array> #include <bitset> #include <chrono> #include <climits> #include <cmath> #include <cstring> #include <deque> #include <ext/pb_ds/assoc_container.hpp> #include <fstream> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include ...
23.40625
78
0.545171
zwliew
8113150dfb348382492944415f1bc06d7286c299
4,363
cpp
C++
src/tests/containerizer/composing_containerizer_tests.cpp
NinthDecimal/mesos
601c3cd3dfaa8e353a1f404676bf779bd2989843
[ "Apache-2.0" ]
null
null
null
src/tests/containerizer/composing_containerizer_tests.cpp
NinthDecimal/mesos
601c3cd3dfaa8e353a1f404676bf779bd2989843
[ "Apache-2.0" ]
null
null
null
src/tests/containerizer/composing_containerizer_tests.cpp
NinthDecimal/mesos
601c3cd3dfaa8e353a1f404676bf779bd2989843
[ "Apache-2.0" ]
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...
25.219653
75
0.691955
NinthDecimal
8113e2d88e70ccf91376a17bc61b2e535acd3031
3,186
cpp
C++
LEDA/test/graphics/geowin/geowin_esri.cpp
2ashish/smallest_enclosing_circle
889916a3011ab2b649ab7f1fc1e042f879acecce
[ "MIT" ]
null
null
null
LEDA/test/graphics/geowin/geowin_esri.cpp
2ashish/smallest_enclosing_circle
889916a3011ab2b649ab7f1fc1e042f879acecce
[ "MIT" ]
null
null
null
LEDA/test/graphics/geowin/geowin_esri.cpp
2ashish/smallest_enclosing_circle
889916a3011ab2b649ab7f1fc1e042f879acecce
[ "MIT" ]
null
null
null
/******************************************************************************* + + LEDA 6.3 + + + geowin_esri.c + + + Copyright (c) 1995-2010 + by Algorithmic Solutions Software GmbH + All rights reserved. + *******************************************************************************/ #include <LEDA/grap...
21.24
106
0.629316
2ashish
8115d66462ee123dc86f5ff58d206fb39b2c7f99
1,094
cpp
C++
239. Sliding Window Maximum/main.cpp
shenzheyu/LeetCode
08478996f9c41a526ea8560233b4e91ed04c9682
[ "MIT" ]
6
2018-04-20T14:43:06.000Z
2021-01-17T21:51:22.000Z
239. Sliding Window Maximum/main.cpp
shenzheyu/LeetCode
08478996f9c41a526ea8560233b4e91ed04c9682
[ "MIT" ]
1
2018-04-29T13:10:02.000Z
2018-04-29T14:47:44.000Z
239. Sliding Window Maximum/main.cpp
shenzheyu/LeetCode
08478996f9c41a526ea8560233b4e91ed04c9682
[ "MIT" ]
null
null
null
#include <iostream> #include <vector> #include <deque> using namespace std; class MonotonicQueue { public: // push element n at back void push(int n) { while (!data.empty() && data.back() < n) { data.pop_back(); } data.push_back(n); } // return the max value in que...
19.535714
60
0.474406
shenzheyu
8117495cdf7132a902636fce0b5868cf605663bb
2,195
cpp
C++
src/library/tactic/check_expr_tactic.cpp
javra/lean
cc70845332e63a1f1be21dc1f96d17269fc85909
[ "Apache-2.0" ]
130
2016-12-02T22:46:10.000Z
2022-03-22T01:09:48.000Z
src/library/tactic/check_expr_tactic.cpp
soonhokong/lean
38607e3eb57f57f77c0ac114ad169e9e4262e24f
[ "Apache-2.0" ]
8
2017-05-03T01:21:08.000Z
2020-02-25T11:38:05.000Z
src/library/tactic/check_expr_tactic.cpp
soonhokong/lean
38607e3eb57f57f77c0ac114ad169e9e4262e24f
[ "Apache-2.0" ]
28
2016-12-02T22:46:20.000Z
2022-03-18T21:28:20.000Z
/* Copyright (c) 2015 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ #include <string> #include "util/fresh_name.h" #include "library/constants.h" #include "library/reducible.h" #include "library/flycheck.h" #include "library...
41.415094
107
0.561731
javra
81176652cbe335ebbd559a62bda42f6ce58f336d
22,324
cpp
C++
admin/activec/samples/sdksamples/taskpads/people.cpp
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
admin/activec/samples/sdksamples/taskpads/people.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
admin/activec/samples/sdksamples/taskpads/people.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
//==============================================================; // // This source code is only intended as a supplement to // existing Microsoft documentation. // // // // // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT ...
30.622771
127
0.584617
npocmaka
8118a3bbdbc29795c14623c592d641eb8f0fc21e
3,328
cpp
C++
Source/ProjectX/Character/AI/EnemyAI/EnemyAIController.cpp
pz64/project-x-college
fb269fb343db2d532cb205b691ee143207d75bdb
[ "Apache-2.0" ]
1
2019-04-16T17:40:51.000Z
2019-04-16T17:40:51.000Z
Source/ProjectX/Character/AI/EnemyAI/EnemyAIController.cpp
pz64/project-x-college
fb269fb343db2d532cb205b691ee143207d75bdb
[ "Apache-2.0" ]
null
null
null
Source/ProjectX/Character/AI/EnemyAI/EnemyAIController.cpp
pz64/project-x-college
fb269fb343db2d532cb205b691ee143207d75bdb
[ "Apache-2.0" ]
null
null
null
// Fill out your copyright notice in the Description page of Project Settings. #include "EnemyAIController.h" #include "BehaviorTree/BehaviorTreeComponent.h" #include "BehaviorTree/BlackboardComponent.h" #include "BehaviorTree/Blackboard/BlackboardKeyAllTypes.h" #include "BehaviorTree/BehaviorTree.h" #include "...
29.714286
110
0.746695
pz64
81191e4d57b73ce523fb017f0ead0fc674167c99
19,033
cpp
C++
gltbx/util_ext.cpp
rimmartin/cctbx_project
644090f9432d9afc22cfb542fc3ab78ca8e15e5d
[ "BSD-3-Clause-LBNL" ]
155
2016-11-23T12:52:16.000Z
2022-03-31T15:35:44.000Z
gltbx/util_ext.cpp
rimmartin/cctbx_project
644090f9432d9afc22cfb542fc3ab78ca8e15e5d
[ "BSD-3-Clause-LBNL" ]
590
2016-12-10T11:31:18.000Z
2022-03-30T23:10:09.000Z
gltbx/util_ext.cpp
rimmartin/cctbx_project
644090f9432d9afc22cfb542fc3ab78ca8e15e5d
[ "BSD-3-Clause-LBNL" ]
115
2016-11-15T08:17:28.000Z
2022-02-09T15:30:14.000Z
#include <scitbx/array_family/boost_python/flex_fwd.h> #include <boost/python/module.hpp> #include <boost/python/class.hpp> #include <boost/python/def.hpp> #include <boost/python/args.hpp> #include <boost/python/list.hpp> #include <boost/python/return_arg.hpp> #include <boost/python/return_value_policy.hpp> #include <...
26.844852
79
0.604529
rimmartin
811c3c9d52df9cab749f26292de6aadaa7357c49
80
cpp
C++
test/llvm_test_code/constness/basic/basic_03.cpp
flix-/phasar
85b30c329be1766136c8cbc6f925cb4fd1bafd27
[ "BSL-1.0" ]
581
2018-06-10T10:37:55.000Z
2022-03-30T14:56:53.000Z
test/llvm_test_code/constness/basic/basic_03.cpp
flix-/phasar
85b30c329be1766136c8cbc6f925cb4fd1bafd27
[ "BSL-1.0" ]
172
2018-06-13T12:33:26.000Z
2022-03-26T07:21:41.000Z
test/llvm_test_code/constness/basic/basic_03.cpp
flix-/phasar
85b30c329be1766136c8cbc6f925cb4fd1bafd27
[ "BSL-1.0" ]
137
2018-06-10T10:31:14.000Z
2022-03-06T11:53:56.000Z
/* i | %2 (ID: 1) */ int main() { int i = 10; int j = 14; i = j; return 0; }
11.428571
20
0.4125
flix-
811d0da723efb3321f23b74f2e0cf6129f80803c
5,102
cc
C++
ui/ozone/platform/drm/gpu/proxy_helpers_unittest.cc
zealoussnow/chromium
fd8a8914ca0183f0add65ae55f04e287543c7d4a
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
14,668
2015-01-01T01:57:10.000Z
2022-03-31T23:33:32.000Z
ui/ozone/platform/drm/gpu/proxy_helpers_unittest.cc
zealoussnow/chromium
fd8a8914ca0183f0add65ae55f04e287543c7d4a
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
113
2015-05-04T09:58:14.000Z
2022-01-31T19:35:03.000Z
ui/ozone/platform/drm/gpu/proxy_helpers_unittest.cc
zealoussnow/chromium
fd8a8914ca0183f0add65ae55f04e287543c7d4a
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
5,941
2015-01-02T11:32:21.000Z
2022-03-31T16:35:46.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 "ui/ozone/platform/drm/gpu/proxy_helpers.h" #include <memory> #include <utility> #include "base/bind.h" #include "base/run_loop.h" #include "ba...
31.109756
80
0.684633
zealoussnow
811eb35e66c76d275bd0210476f0c4cfab46baed
68,899
hpp
C++
svntrunk/src/BlueMatter/kerngen/NeighborList.hpp
Bhaskers-Blu-Org1/BlueMatter
1ab2c41af870c19e2e1b1095edd1d5c85eeb9b5e
[ "BSD-2-Clause" ]
7
2020-02-25T15:46:18.000Z
2022-02-25T07:04:47.000Z
svntrunk/src/BlueMatter/kerngen/NeighborList.hpp
IBM/BlueMatter
5243c0ef119e599fc3e9b7c4213ecfe837de59f3
[ "BSD-2-Clause" ]
null
null
null
svntrunk/src/BlueMatter/kerngen/NeighborList.hpp
IBM/BlueMatter
5243c0ef119e599fc3e9b7c4213ecfe837de59f3
[ "BSD-2-Clause" ]
5
2019-06-06T16:30:21.000Z
2020-11-16T19:43:01.000Z
/* Copyright 2001, 2019 IBM Corporation * * 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 d...
39.665515
131
0.415826
Bhaskers-Blu-Org1
8120601166c08f98f91dc185b9d391fd47258a40
4,109
cpp
C++
Dev/Cpp/EffekseerSoundDSound/EffekseerSound/EffekseerSoundDSound.SoundPlayer.cpp
NumAniCloud/Effekseer
f4547a57eea4c85b55cb8218bf6cac6af6d6dd37
[ "Apache-2.0", "BSD-3-Clause" ]
1
2020-11-21T01:34:30.000Z
2020-11-21T01:34:30.000Z
Dev/Cpp/EffekseerSoundDSound/EffekseerSound/EffekseerSoundDSound.SoundPlayer.cpp
NumAniCloud/Effekseer
f4547a57eea4c85b55cb8218bf6cac6af6d6dd37
[ "Apache-2.0", "BSD-3-Clause" ]
null
null
null
Dev/Cpp/EffekseerSoundDSound/EffekseerSound/EffekseerSoundDSound.SoundPlayer.cpp
NumAniCloud/Effekseer
f4547a57eea4c85b55cb8218bf6cac6af6d6dd37
[ "Apache-2.0", "BSD-3-Clause" ]
null
null
null
 //---------------------------------------------------------------------------------- // Include //---------------------------------------------------------------------------------- #include "EffekseerSoundDSound.SoundPlayer.h" #include "EffekseerSoundDSound.SoundImplemented.h" #include "EffekseerSoundDSound.SoundVoic...
32.354331
131
0.293989
NumAniCloud
812221fc845508a99f8b91e2a2f8091e63516a26
19,580
hpp
C++
source/backend/cpu/x86_x64/avx512/Gemm48_8.hpp
JujuDel/MNN
8a82f5c5a7ae37192784c2dbd6dfc8ca8833565a
[ "Apache-2.0" ]
1
2021-09-17T03:22:16.000Z
2021-09-17T03:22:16.000Z
source/backend/cpu/x86_x64/avx512/Gemm48_8.hpp
JujuDel/MNN
8a82f5c5a7ae37192784c2dbd6dfc8ca8833565a
[ "Apache-2.0" ]
null
null
null
source/backend/cpu/x86_x64/avx512/Gemm48_8.hpp
JujuDel/MNN
8a82f5c5a7ae37192784c2dbd6dfc8ca8833565a
[ "Apache-2.0" ]
null
null
null
#ifndef __AVX512_GEMM48_8_HPP__ #define __AVX512_GEMM48_8_HPP__ #define MNNAVXFMA _mm256_fmadd_ps #define MNNAVX512FMA _mm512_fmadd_ps #define INIT_MAIN_4_8 \ auto s0 = _mm256_loadu_ps(weight + 0 * 8); \ auto w0 = _mm256_broadcast_ss(A + 0 * aStri...
58.975904
78
0.416701
JujuDel
81267c0199e66e47b58c3584fb4f3fcffca9c063
23,789
cpp
C++
vegastrike/src/gfx/nav/navpath.cpp
Ezeer/VegaStrike_win32FR
75891b9ccbdb95e48e15d3b4a9cd977955b97d1f
[ "MIT" ]
null
null
null
vegastrike/src/gfx/nav/navpath.cpp
Ezeer/VegaStrike_win32FR
75891b9ccbdb95e48e15d3b4a9cd977955b97d1f
[ "MIT" ]
null
null
null
vegastrike/src/gfx/nav/navpath.cpp
Ezeer/VegaStrike_win32FR
75891b9ccbdb95e48e15d3b4a9cd977955b97d1f
[ "MIT" ]
null
null
null
/* * Vega Strike * Copyright (C) 2003 Mike Byron * * http://vegastrike.sourceforge.net/ * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your ...
29.699126
143
0.52869
Ezeer
8126b2edf7e4822264b46a28debcf5b97c40d736
5,299
hpp
C++
src/model/CoilCoolingDXVariableRefrigerantFlow.hpp
muehleisen/OpenStudio
3bfe89f6c441d1e61e50b8e94e92e7218b4555a0
[ "blessing" ]
354
2015-01-10T17:46:11.000Z
2022-03-29T10:00:00.000Z
src/model/CoilCoolingDXVariableRefrigerantFlow.hpp
muehleisen/OpenStudio
3bfe89f6c441d1e61e50b8e94e92e7218b4555a0
[ "blessing" ]
3,243
2015-01-02T04:54:45.000Z
2022-03-31T17:22:22.000Z
src/model/CoilCoolingDXVariableRefrigerantFlow.hpp
jmarrec/OpenStudio
5276feff0d8dbd6c8ef4e87eed626bc270a19b14
[ "blessing" ]
157
2015-01-07T15:59:55.000Z
2022-03-30T07:46:09.000Z
/*********************************************************************************************************************** * OpenStudio(R), Copyright (c) 2008-2021, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without m...
41.398438
147
0.758256
muehleisen
812874564e4064e32a54583b67e77fbb410fcfe6
303
cpp
C++
C++/Programming_Principles_and_Practice_Using_C++/Chapter3/input_type.cpp
MaRauder111/Cplusplus
9b18f95b5aee67f67c6e579ba7f3e80d3a3c68a5
[ "MIT" ]
null
null
null
C++/Programming_Principles_and_Practice_Using_C++/Chapter3/input_type.cpp
MaRauder111/Cplusplus
9b18f95b5aee67f67c6e579ba7f3e80d3a3c68a5
[ "MIT" ]
null
null
null
C++/Programming_Principles_and_Practice_Using_C++/Chapter3/input_type.cpp
MaRauder111/Cplusplus
9b18f95b5aee67f67c6e579ba7f3e80d3a3c68a5
[ "MIT" ]
null
null
null
#include <iostream> int main() { std::cout << "Enter you name and age : "; std::string first_name; std::cin >> first_name; double age = 0; std::cin >> age; int months = age * 12; std::cout << "First name " << first_name << " age is " << months << std::endl; return 0; }
21.642857
82
0.547855
MaRauder111
8128b3efd57e9e20211f08cbc63a7e9e3367762d
2,916
cpp
C++
src/rx/render/frontend/timer.cpp
DethRaid/rex
21ba92d38398240faa45a402583c11f8c72e6e41
[ "MIT" ]
2
2020-06-13T11:39:46.000Z
2021-03-10T01:03:03.000Z
src/rx/render/frontend/timer.cpp
DethRaid/rex
21ba92d38398240faa45a402583c11f8c72e6e41
[ "MIT" ]
null
null
null
src/rx/render/frontend/timer.cpp
DethRaid/rex
21ba92d38398240faa45a402583c11f8c72e6e41
[ "MIT" ]
1
2021-01-06T03:47:08.000Z
2021-01-06T03:47:08.000Z
#include "rx/render/frontend/timer.h" #include "rx/core/math/abs.h" #include "rx/core/time/qpc.h" #include "rx/core/time/delay.h" namespace Rx::Render::Frontend { FrameTimer::FrameTimer() : m_frequency{Time::qpc_frequency()} , m_resolution{1.0 / m_frequency} , m_max_frame_ticks{0.0f} , m_last_second_ticks{0...
28.871287
102
0.705418
DethRaid
812933dd664995465fa398aabcb94905bebc5df9
1,230
cpp
C++
test/next_power_of_2.cpp
jgmbenoit/primecount
1c39ff8daeb149d100108d1cb364d20f20f48009
[ "BSD-2-Clause" ]
259
2015-01-31T15:44:26.000Z
2022-03-31T07:09:13.000Z
test/next_power_of_2.cpp
jgmbenoit/primecount
1c39ff8daeb149d100108d1cb364d20f20f48009
[ "BSD-2-Clause" ]
36
2016-05-14T22:13:16.000Z
2022-02-14T07:27:50.000Z
test/next_power_of_2.cpp
jgmbenoit/primecount
1c39ff8daeb149d100108d1cb364d20f20f48009
[ "BSD-2-Clause" ]
44
2015-02-03T17:37:42.000Z
2022-03-02T21:01:36.000Z
/// /// @file next_power_of_2.cpp /// @brief Round up to nearest power of 2. /// /// Copyright (C) 2017 Kim Walisch, <kim.walisch@gmail.com> /// /// This file is distributed under the BSD License. See the COPYING /// file in the top level directory. /// #include <imath.hpp> #include <stdint.h> #include <iostream> ...
19.83871
67
0.527642
jgmbenoit
81299e39f70fdeedb02bdf7b47e31b2e35eefd42
1,527
cc
C++
src/kk-chan.cc
hailongz/kk-surface
d87cd8f26682f7c96dc4becc6e6f705d60e8941a
[ "MIT" ]
null
null
null
src/kk-chan.cc
hailongz/kk-surface
d87cd8f26682f7c96dc4becc6e6f705d60e8941a
[ "MIT" ]
null
null
null
src/kk-chan.cc
hailongz/kk-surface
d87cd8f26682f7c96dc4becc6e6f705d60e8941a
[ "MIT" ]
null
null
null
// // kk-chan.cpp // KKGame // // Created by hailong11 on 2018/7/30. // Copyright © 2018年 kkmofang.cn. All rights reserved. // #include "kk-config.h" #include "kk-chan.h" namespace kk { void ChanObjectRelease(Chan * chan,ChanObject object) { kk::Object * v = (kk::Object *) object; if...
19.329114
65
0.464964
hailongz
8129afc07a2dd40d10bfdafb9163f25678886f98
498
cpp
C++
test/main_test.cpp
connectivecpp/utility-rack
5ff69a2258726d56da15248f70be65817bed8f1e
[ "BSL-1.0" ]
3
2019-04-30T02:42:21.000Z
2020-05-14T16:35:43.000Z
test/main_test.cpp
connectivecpp/utility-rack
5ff69a2258726d56da15248f70be65817bed8f1e
[ "BSL-1.0" ]
10
2019-03-12T07:31:56.000Z
2020-03-09T21:39:33.000Z
test/main_test.cpp
connectivecpp/utility-rack
5ff69a2258726d56da15248f70be65817bed8f1e
[ "BSL-1.0" ]
1
2019-05-21T02:12:43.000Z
2019-05-21T02:12:43.000Z
/** @file * * @defgroup test_module Unit tests for the various Chops Utility Rack components. * * @ingroup test_module * * @brief Source file for combining (i.e. linking) all Chops tests together. * * @author Cliff Green * * Copyright (c) 2017-2019 by Cliff Green * * Distributed under the Boost Softwa...
22.636364
87
0.702811
connectivecpp
8129d2222df166d9cbfe0ca9a698c02ab4f8ec94
41,465
cpp
C++
dev/Gems/Multiplayer/Code/Source/FlowMultiplayerFunctionNodes.cpp
Kezryk/lumberyard
d21172c26536133a4213873469a171f4f0c4280c
[ "AML" ]
1
2019-02-06T19:12:41.000Z
2019-02-06T19:12:41.000Z
dev/Gems/Multiplayer/Code/Source/FlowMultiplayerFunctionNodes.cpp
Kezryk/lumberyard
d21172c26536133a4213873469a171f4f0c4280c
[ "AML" ]
null
null
null
dev/Gems/Multiplayer/Code/Source/FlowMultiplayerFunctionNodes.cpp
Kezryk/lumberyard
d21172c26536133a4213873469a171f4f0c4280c
[ "AML" ]
null
null
null
/* * All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or * its licensors. * * For complete copyright and license terms please see the LICENSE at the root of this * distribution (the "License"). All use of this software is governed by the License, * or, if provided, by the license below or t...
36.662246
233
0.606077
Kezryk