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
dc9a1015313c41cee3dc673c504ea9c63cfcfab3
2,126
cc
C++
sem_01/lab_02/src/source/mainwindow.cc
bmstu-ics7/modeling
30f089cab44e8c56886acf6433abe8cc252ae722
[ "MIT" ]
2
2020-06-08T18:50:29.000Z
2021-02-27T11:20:44.000Z
sem_01/lab_02/src/source/mainwindow.cc
bmstu-ics7/modeling
30f089cab44e8c56886acf6433abe8cc252ae722
[ "MIT" ]
null
null
null
sem_01/lab_02/src/source/mainwindow.cc
bmstu-ics7/modeling
30f089cab44e8c56886acf6433abe8cc252ae722
[ "MIT" ]
1
2020-10-22T10:49:42.000Z
2020-10-22T10:49:42.000Z
#include "mainwindow.h" #include "ui_mainwindow.h" MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); QObject::connect( ui->buttonCalculate, &QPushButton::clicked, this, &MainWindow::clickButtonCalculate ); GraphicsBuilde...
29.527778
73
0.655221
bmstu-ics7
dc9d41d23ce950310202cd085a0b172f6392e8b7
51
cpp
C++
Refureku/Library/Source/Object.cpp
Angelysse/Refureku
1f01107c94cd81998068ce3fde02bb21c180166b
[ "MIT" ]
143
2020-04-07T21:38:21.000Z
2022-03-30T01:06:33.000Z
Refureku/Library/Source/Object.cpp
Angelysse/Refureku
1f01107c94cd81998068ce3fde02bb21c180166b
[ "MIT" ]
7
2021-03-30T07:26:21.000Z
2022-03-28T16:31:02.000Z
Refureku/Library/Source/Object.cpp
Angelysse/Refureku
1f01107c94cd81998068ce3fde02bb21c180166b
[ "MIT" ]
11
2020-06-06T09:45:12.000Z
2022-01-25T17:17:55.000Z
#include "Refureku/Object.h" using namespace rfk;
12.75
28
0.764706
Angelysse
dc9f8640e8e2c66788d71354eee766cea6db8ac3
47,680
cpp
C++
src/Base/PositionTagGroupItem.cpp
team-FisMa/choreonoid
83265e8ffe96eb0aec977be7a43cd8c218fc5905
[ "MIT" ]
66
2020-03-11T14:06:01.000Z
2022-03-23T23:18:27.000Z
src/Base/PositionTagGroupItem.cpp
team-FisMa/choreonoid
83265e8ffe96eb0aec977be7a43cd8c218fc5905
[ "MIT" ]
12
2020-07-23T06:13:11.000Z
2022-01-13T14:25:01.000Z
src/Base/PositionTagGroupItem.cpp
team-FisMa/choreonoid
83265e8ffe96eb0aec977be7a43cd8c218fc5905
[ "MIT" ]
18
2020-07-17T15:57:54.000Z
2022-03-29T13:18:59.000Z
#include "PositionTagGroupItem.h" #include "ItemManager.h" #include "SceneWidget.h" #include "SceneWidgetEventHandler.h" #include "PositionDragger.h" #include "CoordinateFrameMarker.h" #include "Dialog.h" #include "Buttons.h" #include "CheckBox.h" #include "LazyCaller.h" #include "Archive.h" #include "PutPropertyFuncti...
27.014164
119
0.672273
team-FisMa
dca0a556c73c1bd59e8c05acc74bd7406b28e47a
619
cpp
C++
flood-fill/flood-fill.cpp
sharmishtha2401/leetcode
0c7389877afb64b3ff277f075ed9c87b24cb587b
[ "MIT" ]
1
2022-02-14T07:57:07.000Z
2022-02-14T07:57:07.000Z
flood-fill/flood-fill.cpp
sharmishtha2401/leetcode
0c7389877afb64b3ff277f075ed9c87b24cb587b
[ "MIT" ]
null
null
null
flood-fill/flood-fill.cpp
sharmishtha2401/leetcode
0c7389877afb64b3ff277f075ed9c87b24cb587b
[ "MIT" ]
null
null
null
class Solution { public: vector<vector<int>> floodFill(vector<vector<int>>& image, int sr, int sc, int color) { if(image[sr][sc]!=color) change(image, sr, sc, image[sr][sc], color); return image; } void change(vector<vector<int>>& image, int i, int j, int og, int color) { ...
28.136364
90
0.526656
sharmishtha2401
dca0a879a4562be72836224867b8c99995e8b0ef
3,208
cpp
C++
src/lib/crypto/OSSLDHPublicKey.cpp
spacekpe/SoftHSMv2
fd5bdfd8289c5a156627cb8dfad574ec1055bdc4
[ "BSD-2-Clause" ]
null
null
null
src/lib/crypto/OSSLDHPublicKey.cpp
spacekpe/SoftHSMv2
fd5bdfd8289c5a156627cb8dfad574ec1055bdc4
[ "BSD-2-Clause" ]
null
null
null
src/lib/crypto/OSSLDHPublicKey.cpp
spacekpe/SoftHSMv2
fd5bdfd8289c5a156627cb8dfad574ec1055bdc4
[ "BSD-2-Clause" ]
null
null
null
/* * Copyright (c) 2010 SURFnet bv * 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 condition...
25.664
79
0.685162
spacekpe
dca1a8cabccbdc7ca7be7d0ff42fd6f8e1318bf2
551
cpp
C++
LinkingToDLL/MathFuncsDll/MathFuncsDll.cpp
edetoc/samples
3223b3111f77fd6cedad31b4685dd19615e91725
[ "MIT" ]
2
2019-12-16T09:31:27.000Z
2021-09-03T01:12:24.000Z
LinkingToDLL/MathFuncsDll/MathFuncsDll.cpp
edetoc/samples
3223b3111f77fd6cedad31b4685dd19615e91725
[ "MIT" ]
1
2021-08-23T14:52:46.000Z
2021-08-23T14:52:46.000Z
LinkingToDLL/MathFuncsDll/MathFuncsDll.cpp
edetoc/samples
3223b3111f77fd6cedad31b4685dd19615e91725
[ "MIT" ]
null
null
null
// MathFuncsDll.cpp : Defines the exported functions for the DLL application. // #include "stdafx.h" #include "MathFuncsDll.h" #include <stdexcept> using namespace std; namespace MathFuncs { double MyMathFuncs::Add(double a, double b) { return a + b; } double MyMathFuncs::Subtract(double a, double b) { re...
15.305556
78
0.664247
edetoc
dca260c7612b197bf23bfa54870b6428015e5963
4,814
cpp
C++
test/unit/alphabet/aminoacid/aa27_test.cpp
SGSSGene/seqan3
ab9ccb94d02c2f27b9b73b134ee2713de91bf722
[ "CC0-1.0", "CC-BY-4.0" ]
null
null
null
test/unit/alphabet/aminoacid/aa27_test.cpp
SGSSGene/seqan3
ab9ccb94d02c2f27b9b73b134ee2713de91bf722
[ "CC0-1.0", "CC-BY-4.0" ]
null
null
null
test/unit/alphabet/aminoacid/aa27_test.cpp
SGSSGene/seqan3
ab9ccb94d02c2f27b9b73b134ee2713de91bf722
[ "CC0-1.0", "CC-BY-4.0" ]
null
null
null
// ----------------------------------------------------------------------------------------------------- // Copyright (c) 2006-2019, Knut Reinert & Freie Universität Berlin // Copyright (c) 2016-2019, Knut Reinert & MPI für molekulare Genetik // This file may be used, modified and/or redistributed under the terms of th...
38.206349
116
0.537599
SGSSGene
dca88b857836702bc865159d18ab471157781016
6,048
hh
C++
dist_apps/experimental/pr_bc_v2/pr_bc_v2_sync.hh
maleen89/Galois
babc933c4306a17a41f355d510734e17af4affff
[ "BSD-3-Clause" ]
null
null
null
dist_apps/experimental/pr_bc_v2/pr_bc_v2_sync.hh
maleen89/Galois
babc933c4306a17a41f355d510734e17af4affff
[ "BSD-3-Clause" ]
null
null
null
dist_apps/experimental/pr_bc_v2/pr_bc_v2_sync.hh
maleen89/Galois
babc933c4306a17a41f355d510734e17af4affff
[ "BSD-3-Clause" ]
null
null
null
/* * This file belongs to the Galois project, a C++ library for exploiting parallelism. * The code is being released under the terms of the 3-Clause BSD License (a * copy is located in LICENSE.txt at the top-level directory). * * Copyright (C) 2018, The University of Texas at Austin. All rights reserved. * UNIVER...
36.878049
87
0.643353
maleen89
dca8b571dc0770fdd3c243f9b606499f42d0f4b4
220
hh
C++
extern/polymesh/src/polymesh/pm.hh
rovedit/Fort-Candle
445fb94852df56c279c71b95c820500e7fb33cf7
[ "MIT" ]
null
null
null
extern/polymesh/src/polymesh/pm.hh
rovedit/Fort-Candle
445fb94852df56c279c71b95c820500e7fb33cf7
[ "MIT" ]
null
null
null
extern/polymesh/src/polymesh/pm.hh
rovedit/Fort-Candle
445fb94852df56c279c71b95c820500e7fb33cf7
[ "MIT" ]
null
null
null
#pragma once // Includes most commonly used polymesh features #include <polymesh/Mesh.hh> #include <polymesh/properties.hh> #include <polymesh/formats.hh> #include <polymesh/objects.hh> #include <polymesh/hash.hh>
15.714286
48
0.759091
rovedit
dca966cd02fb2937dbe63203ebd356f39c5c136d
421
cpp
C++
HackerRank/Interview Preparation Kit/String Manipulation/AlternatingCharacters.cpp
Anni1123/competitive-programming
bfcc72ff3379d09dee22f30f71751a32c0cc511b
[ "MIT" ]
1
2021-04-03T13:33:00.000Z
2021-04-03T13:33:00.000Z
HackerRank/Interview Preparation Kit/String Manipulation/AlternatingCharacters.cpp
iamsuryakant/competitive-programming
413000f5bc4a627407e1335c35dcdbee516e8cc1
[ "MIT" ]
null
null
null
HackerRank/Interview Preparation Kit/String Manipulation/AlternatingCharacters.cpp
iamsuryakant/competitive-programming
413000f5bc4a627407e1335c35dcdbee516e8cc1
[ "MIT" ]
2
2021-01-23T14:35:48.000Z
2021-03-15T05:04:24.000Z
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int q; string s; cin >> q; while (q--) { cin >> s; int ans = 0; for (int i = 0; i < s.size() - 1; i++) { if (s[i] == ...
19.136364
49
0.391924
Anni1123
dcac5a4848f628e28b35585912029e116b5df2b2
1,611
cpp
C++
src/nvidia_samples_7_5/3_Imaging/convolutionFFT2D/convolutionFFT2D_gold (gpu-ccsl's conflicted copy 2016-03-07).cpp
marcosamaris/BSPGPUSync
b6d8f1f28e3c85c1367722b864c45994ca76afc8
[ "CC-BY-4.0" ]
1
2017-12-28T13:30:47.000Z
2017-12-28T13:30:47.000Z
src/nvidia_samples_7_5/3_Imaging/convolutionFFT2D/convolutionFFT2D_gold (gpu-ccsl's conflicted copy 2016-03-07).cpp
marcosamaris/BSPGPUSync
b6d8f1f28e3c85c1367722b864c45994ca76afc8
[ "CC-BY-4.0" ]
null
null
null
src/nvidia_samples_7_5/3_Imaging/convolutionFFT2D/convolutionFFT2D_gold (gpu-ccsl's conflicted copy 2016-03-07).cpp
marcosamaris/BSPGPUSync
b6d8f1f28e3c85c1367722b864c45994ca76afc8
[ "CC-BY-4.0" ]
null
null
null
/* * Copyright 1993-2015 NVIDIA Corporation. All rights reserved. * * Please refer to the NVIDIA end user license agreement (EULA) associated * with this source code for terms and conditions that govern your use of * this software. Any use, reproduction, disclosure, or distribution of * this software and related...
27.305085
105
0.47486
marcosamaris
dcad8c0031e013da49c7475886ecbe9d36bd7622
2,330
cc
C++
mars/sdt/sdt_logic.cc
20150723/mars
916f895d5d6c31a1f4720b189bb0a83e92e0161c
[ "Apache-2.0", "BSD-2-Clause" ]
325
2016-12-28T14:19:10.000Z
2021-11-24T07:01:51.000Z
mars/sdt/sdt_logic.cc
wblzu/mars
4396e753aee627a92b55ae7a1bc12b4d6f4f6445
[ "Apache-2.0" ]
2
2019-10-22T02:57:02.000Z
2019-10-31T23:30:17.000Z
mars/sdt/sdt_logic.cc
pengjinning/mars
227aff64a5b819555091a7d6eae6727701e9fff0
[ "Apache-2.0", "BSD-2-Clause" ]
114
2016-12-28T14:36:15.000Z
2021-12-08T09:05:50.000Z
// Tencent is pleased to support the open source community by making Mars available. // Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved. // Licensed under the MIT License (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the Licens...
26.179775
123
0.742918
20150723
dcaf88946cef0df95cc6bee507a669fa3593a807
2,902
cpp
C++
dclcomponents/pgmiddle.cpp
OlegZhavoronkov/tnk_certification
9ef3544f3fd27073b78e38bba26af76e79f55a78
[ "Unlicense" ]
null
null
null
dclcomponents/pgmiddle.cpp
OlegZhavoronkov/tnk_certification
9ef3544f3fd27073b78e38bba26af76e79f55a78
[ "Unlicense" ]
null
null
null
dclcomponents/pgmiddle.cpp
OlegZhavoronkov/tnk_certification
9ef3544f3fd27073b78e38bba26af76e79f55a78
[ "Unlicense" ]
null
null
null
#include "processor/dclprocessor_old.h" #include <storage/ObjectDescriptor.h> #include <glog/logging.h> #include <iostream> #include <string> #include <pqxx/pqxx> using namespace tmk; using namespace tmk::storage; pqxx::result insert_query(char *obj_name) { std::string connection_string("host=79.173.96.138 port...
28.174757
189
0.593039
OlegZhavoronkov
dcb50d6c49b90249b63bb1a4a41c708ef1c65eac
1,467
cpp
C++
src/bezier/main.cpp
seccoboy/opengl-demos
e829695fd930c0fc8b5403b453d0944ab8ae7202
[ "MIT" ]
37
2019-02-26T02:02:00.000Z
2021-06-06T16:08:01.000Z
src/bezier/main.cpp
seccoboy/opengl-demos
e829695fd930c0fc8b5403b453d0944ab8ae7202
[ "MIT" ]
29
2019-03-06T16:37:33.000Z
2021-05-11T09:33:54.000Z
src/bezier/main.cpp
seccoboy/opengl-demos
e829695fd930c0fc8b5403b453d0944ab8ae7202
[ "MIT" ]
26
2019-03-11T22:26:28.000Z
2021-11-18T14:54:44.000Z
/** * Programa para ilustrar: * - Curva de Bezier **/ #include <GL/glut.h> #include <GL/freeglut_ext.h> #include <cmath> void init() { glClearColor(0,0,0,1); } double x[4] = {0, 1, 4, 5}, y[4] = {0, 4, 4, 0}; //renderiza o triangulo usando interpolacao de Gouraud void render(){ glLoadIdentity(); glTransl...
21.895522
109
0.542604
seccoboy
dcb62a421c9dac7d3123ec069e665e3a3f73f446
2,233
cpp
C++
common/src/constants.cpp
tyoma/micro-profiler
32f6981c643b93997752d414f631fd6684772b28
[ "MIT" ]
194
2015-07-27T09:54:24.000Z
2022-03-21T20:50:22.000Z
common/src/constants.cpp
tyoma/micro-profiler
32f6981c643b93997752d414f631fd6684772b28
[ "MIT" ]
63
2015-08-19T16:42:33.000Z
2022-02-22T20:30:49.000Z
common/src/constants.cpp
tyoma/micro-profiler
32f6981c643b93997752d414f631fd6684772b28
[ "MIT" ]
33
2015-08-21T17:48:03.000Z
2022-02-23T03:54:17.000Z
// Copyright (c) 2011-2021 by Artem A. Gevorkyan (gevorkyan.org) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, ...
38.5
101
0.744738
tyoma
dcb7f2b0929a6c474a1e85cc56a4b526b48e08e3
2,402
cpp
C++
HAPI/optix/main.cpp
Geerthan/HAPI-GPU
a9ffe70b1b43392344fef2ba552965b4eb8cc4a2
[ "MIT" ]
null
null
null
HAPI/optix/main.cpp
Geerthan/HAPI-GPU
a9ffe70b1b43392344fef2ba552965b4eb8cc4a2
[ "MIT" ]
null
null
null
HAPI/optix/main.cpp
Geerthan/HAPI-GPU
a9ffe70b1b43392344fef2ba552965b4eb8cc4a2
[ "MIT" ]
null
null
null
/* nvcc -ptx -ccbin "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.14.26428\bin\Hostx64\x64" -I "C:\ProgramData\NVIDIA Corporation\OptiX SDK 6.0.0\include" bounding_box.cu http://blog.three-eyed-games.com/2018/05/03/gpu-ray-tracing-in-unity-part-1/ */ #include <string> #include "Rende...
32.90411
201
0.745629
Geerthan
dcb8cc2e6d3a3de8309875fc5dfc5d48ec854798
3,225
cc
C++
src/canvas/canvas/test/Persistency/Common/aggregate_clhep_t.cc
JeffersonLab/ARIEL
49054ac62a84d48e269f7171daabb98e12a0be90
[ "BSD-3-Clause" ]
null
null
null
src/canvas/canvas/test/Persistency/Common/aggregate_clhep_t.cc
JeffersonLab/ARIEL
49054ac62a84d48e269f7171daabb98e12a0be90
[ "BSD-3-Clause" ]
null
null
null
src/canvas/canvas/test/Persistency/Common/aggregate_clhep_t.cc
JeffersonLab/ARIEL
49054ac62a84d48e269f7171daabb98e12a0be90
[ "BSD-3-Clause" ]
2
2020-09-26T01:37:11.000Z
2021-05-03T13:02:24.000Z
#define BOOST_TEST_MODULE (ClhepProduct aggregation Test) #include "canvas/test/Persistency/Common/MockRun.h" #include "cetlib/quiet_unit_test.hpp" #include "CLHEP/Matrix/Matrix.h" #include "CLHEP/Matrix/SymMatrix.h" #include "CLHEP/Matrix/Vector.h" #include "CLHEP/Vector/LorentzVector.h" #include "CLHEP/Vector/ThreeV...
23.035714
70
0.658605
JeffersonLab
dcb96b84aba33e6cdc29b8d7b8b1b68b7755d207
17,300
cc
C++
sync/api/attachments/attachment_service_impl_unittest.cc
aranajhonny/chromium
caf5bcb822f79b8997720e589334266551a50a13
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
1
2019-01-16T03:57:39.000Z
2019-01-16T03:57:39.000Z
sync/api/attachments/attachment_service_impl_unittest.cc
aranajhonny/chromium
caf5bcb822f79b8997720e589334266551a50a13
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
1
2018-02-10T21:00:08.000Z
2018-03-20T05:09:50.000Z
sync/api/attachments/attachment_service_impl_unittest.cc
aranajhonny/chromium
caf5bcb822f79b8997720e589334266551a50a13
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
// 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 "sync/api/attachments/attachment_service_impl.h" #include "base/bind.h" #include "base/memory/weak_ptr.h" #include "base/message_loop/message_lo...
38.189845
80
0.720173
aranajhonny
dcbcff6885ed7ba1d73a01d031440eb9a850370f
5,031
cpp
C++
src/fastlock.cpp
gitter-badger/KeyDB
9322d604eea7b48df3feff47ce2c04f82291228f
[ "BSD-3-Clause" ]
null
null
null
src/fastlock.cpp
gitter-badger/KeyDB
9322d604eea7b48df3feff47ce2c04f82291228f
[ "BSD-3-Clause" ]
null
null
null
src/fastlock.cpp
gitter-badger/KeyDB
9322d604eea7b48df3feff47ce2c04f82291228f
[ "BSD-3-Clause" ]
null
null
null
/* * Copyright (c) 2019, John Sully <john at eqalpha dot com> * 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,...
33.317881
150
0.670642
gitter-badger
dcbd5ef46ef29baaf502f5b56ce6ac3e4a587b97
7,518
cc
C++
vize/src/vize/factory/sub_view_factory.cc
oprogramadorreal/vize
042c16f96d8790303563be6787200558e1ec00b2
[ "MIT" ]
47
2020-03-30T14:36:46.000Z
2022-03-06T07:44:54.000Z
vize/src/vize/factory/sub_view_factory.cc
oprogramadorreal/vize
042c16f96d8790303563be6787200558e1ec00b2
[ "MIT" ]
null
null
null
vize/src/vize/factory/sub_view_factory.cc
oprogramadorreal/vize
042c16f96d8790303563be6787200558e1ec00b2
[ "MIT" ]
8
2020-04-01T01:22:45.000Z
2022-01-02T13:06:09.000Z
#include "vize/factory/sub_view_factory.hpp" #include "vize/application/ui_colors.hpp" #include "vize/document/sub_view.hpp" #include "vize/painter/volume_painter_proxy.hpp" #include "vize/ui/transfer_function_editor_widget.hpp" #include "vize/ui/mpr_config_widget.hpp" #include "vize/ui/sample_step_widget.hpp" #incl...
42.235955
202
0.804336
oprogramadorreal
dcbd7f8c807e528787d051e65e39103f23aaeceb
11,017
hxx
C++
src/algorithm/frames.hxx
ikalevatykh/pinocchio
2c22ca240e78e5a6c20e7b2cb6c44e7a45658d38
[ "BSD-2-Clause-FreeBSD" ]
1
2020-04-07T07:23:34.000Z
2020-04-07T07:23:34.000Z
src/algorithm/frames.hxx
ikalevatykh/pinocchio
2c22ca240e78e5a6c20e7b2cb6c44e7a45658d38
[ "BSD-2-Clause-FreeBSD" ]
null
null
null
src/algorithm/frames.hxx
ikalevatykh/pinocchio
2c22ca240e78e5a6c20e7b2cb6c44e7a45658d38
[ "BSD-2-Clause-FreeBSD" ]
null
null
null
// // Copyright (c) 2015-2020 CNRS INRIA // #ifndef __pinocchio_frames_hxx__ #define __pinocchio_frames_hxx__ #include "pinocchio/algorithm/kinematics.hpp" #include "pinocchio/algorithm/jacobian.hpp" #include "pinocchio/algorithm/check.hpp" namespace pinocchio { template<typename Scalar, int Options, template<ty...
41.573585
139
0.651992
ikalevatykh
dcbd8f2721d67d564bc26a2a38ae1464d690b7f1
8,879
cpp
C++
openstudiocore/src/model/CoilSystemCoolingWaterHeatExchangerAssisted.cpp
BIMDataHub/OpenStudio-1
13ec115b00aa6a2af1426ceb26446f05014c8c8d
[ "blessing" ]
4
2015-05-02T21:04:15.000Z
2015-10-28T09:47:22.000Z
openstudiocore/src/model/CoilSystemCoolingWaterHeatExchangerAssisted.cpp
BIMDataHub/OpenStudio-1
13ec115b00aa6a2af1426ceb26446f05014c8c8d
[ "blessing" ]
null
null
null
openstudiocore/src/model/CoilSystemCoolingWaterHeatExchangerAssisted.cpp
BIMDataHub/OpenStudio-1
13ec115b00aa6a2af1426ceb26446f05014c8c8d
[ "blessing" ]
1
2020-11-12T21:52:36.000Z
2020-11-12T21:52:36.000Z
/********************************************************************** * Copyright (c) 2008-2015, Alliance for Sustainable Energy. * All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by t...
44.395
168
0.721703
BIMDataHub
dcbd99d4a42cc15ce1b6e28f863dd3cabf2e8f31
1,380
cpp
C++
taichi/analysis/check_fields_registered.cpp
zf38473013/taichi
ad4d7ae04f4e559e84f6dee4a64ad57c3cf0c7fb
[ "MIT" ]
1
2020-04-08T08:55:13.000Z
2020-04-08T08:55:13.000Z
taichi/analysis/check_fields_registered.cpp
zf38473013/taichi
ad4d7ae04f4e559e84f6dee4a64ad57c3cf0c7fb
[ "MIT" ]
null
null
null
taichi/analysis/check_fields_registered.cpp
zf38473013/taichi
ad4d7ae04f4e559e84f6dee4a64ad57c3cf0c7fb
[ "MIT" ]
null
null
null
#include "taichi/ir/ir.h" TLANG_NAMESPACE_BEGIN class FieldsRegisteredChecker : public BasicStmtVisitor { public: using BasicStmtVisitor::visit; FieldsRegisteredChecker() { allow_undefined_visitor = true; invoke_default_visitor = true; } void visit(Stmt *stmt) override { TI_ASSERT(stmt->fields_...
22.622951
57
0.708696
zf38473013
dcbf5af72cce16de6a893ab0df7f244b86d27cac
5,575
cpp
C++
src/fdm/models/fdm_Stabilizer.cpp
fe5084/mscsim
2b0025a9e4bda69b0d83147b1e701375fef437f8
[ "MIT" ]
1
2020-02-11T08:17:23.000Z
2020-02-11T08:17:23.000Z
src/fdm/models/fdm_Stabilizer.cpp
fe5084/mscsim
2b0025a9e4bda69b0d83147b1e701375fef437f8
[ "MIT" ]
null
null
null
src/fdm/models/fdm_Stabilizer.cpp
fe5084/mscsim
2b0025a9e4bda69b0d83147b1e701375fef437f8
[ "MIT" ]
null
null
null
/****************************************************************************//* * Copyright (C) 2020 Marek M. Cel * * 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, ...
36.92053
106
0.547982
fe5084
dcbfcfbeee2b7aad507d1fe0b233d413bdea18d6
1,178
cpp
C++
src/9000/9370.cpp14.cpp
upple/BOJ
e6dbf9fd17fa2b458c6a781d803123b14c18e6f1
[ "MIT" ]
8
2018-04-12T15:54:09.000Z
2020-06-05T07:41:15.000Z
src/9000/9370.cpp14.cpp
upple/BOJ
e6dbf9fd17fa2b458c6a781d803123b14c18e6f1
[ "MIT" ]
null
null
null
src/9000/9370.cpp14.cpp
upple/BOJ
e6dbf9fd17fa2b458c6a781d803123b14c18e6f1
[ "MIT" ]
null
null
null
#include <cstdio> #include <vector> #include <queue> #include <algorithm> using namespace std; int INF = 111111111; vector<vector<pair<int, int> > >adj; void dijk(int start, vector<int> &dist) { priority_queue<pair<int, int> > pq; dist[start] = 0; pq.push({ 0, start }); while (!pq.empty()) { int cur = pq.top()...
18.698413
59
0.511036
upple
dcc08d6db537229fa01af75ceb1a75486172d55b
783
hpp
C++
ragnarok/ds10/branches/network/netbase.hpp
kaina/sandbox
15a464fe1a1f17f4d475947ceeffa41df4b3eba5
[ "WTFPL" ]
5
2015-10-30T12:12:37.000Z
2018-04-23T15:46:26.000Z
ragnarok/ds10/trunk/network/netbase.hpp
yuiAs/sandbox
15a464fe1a1f17f4d475947ceeffa41df4b3eba5
[ "WTFPL" ]
null
null
null
ragnarok/ds10/trunk/network/netbase.hpp
yuiAs/sandbox
15a464fe1a1f17f4d475947ceeffa41df4b3eba5
[ "WTFPL" ]
2
2016-11-29T10:14:53.000Z
2017-10-23T18:05:11.000Z
#ifndef NETBASE_HPP_3F0121D8_C486_401c_88F4_771280BFC85D #define NETBASE_HPP_3F0121D8_C486_401c_88F4_771280BFC85D #include <winsock2.h> //////////////////////////////////////////////////////////////////////////////// class CNetBase { u_char* m_backBuf; int m_backLen; int m_backCnt; enum { MAX_BUF...
17.4
81
0.619413
kaina
dcc165dd0a37755f5159bafe52ba7da16c9c74b9
1,628
cc
C++
chrome/browser/ui/global_media_controls/test_helper.cc
iridium-browser/iridium-browser
907e31cf5ce5ad14d832796e3a7c11e496828959
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
575
2015-06-18T23:58:20.000Z
2022-03-23T09:32:39.000Z
chrome/browser/ui/global_media_controls/test_helper.cc
iridium-browser/iridium-browser
907e31cf5ce5ad14d832796e3a7c11e496828959
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
113
2015-05-04T09:58:14.000Z
2022-01-31T19:35:03.000Z
chrome/browser/ui/global_media_controls/test_helper.cc
DamieFC/chromium
54ce2d3c77723697efd22cfdb02aea38f9dfa25c
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
52
2015-07-14T10:40:50.000Z
2022-03-15T01:11:49.000Z
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/global_media_controls/test_helper.h" #include "chrome/browser/ui/global_media_controls/media_notification_service.h" #include...
29.6
79
0.789926
iridium-browser
dcc351e4b0764504e8127d5d7ce7b734cfbf6f81
17,775
cpp
C++
connectivity/lorawan/lorastack/mac/LoRaMacCrypto.cpp
Lljiro/mbed-os
3af9e4ece78b84fe95ca65b5433bb6452f41aac2
[ "Apache-2.0" ]
null
null
null
connectivity/lorawan/lorastack/mac/LoRaMacCrypto.cpp
Lljiro/mbed-os
3af9e4ece78b84fe95ca65b5433bb6452f41aac2
[ "Apache-2.0" ]
null
null
null
connectivity/lorawan/lorastack/mac/LoRaMacCrypto.cpp
Lljiro/mbed-os
3af9e4ece78b84fe95ca65b5433bb6452f41aac2
[ "Apache-2.0" ]
null
null
null
/** * / _____) _ | | * ( (____ _____ ____ _| |_ _____ ____| |__ * \____ \| ___ | (_ _) ___ |/ ___) _ \ * _____) ) ____| | | || |_| ____( (___| | | | * (______/|_____)_|_|_| \__)_____)\____)_| |_| * (C)2013 Semtech * ___ _____ _ ___ _ _____ ___ ___ ___ ___ * / __|_ ...
28.57717
107
0.576653
Lljiro
dcc38e88dc27673a7292a3a6f10b2b7e5ab9d54a
4,227
cpp
C++
PRO-IMU Firmware/PRO-IMU Firmware/Dynamixel/Interpreter.cpp
amirivojdan/Pro-Imu
2f331fe0f58f9cd1d86c39e309796fdca9378b68
[ "MIT" ]
1
2022-03-19T09:45:05.000Z
2022-03-19T09:45:05.000Z
PRO-IMU Firmware/PRO-IMU Firmware/Dynamixel/Interpreter.cpp
amirivojdan/Pro-Imu
2f331fe0f58f9cd1d86c39e309796fdca9378b68
[ "MIT" ]
null
null
null
PRO-IMU Firmware/PRO-IMU Firmware/Dynamixel/Interpreter.cpp
amirivojdan/Pro-Imu
2f331fe0f58f9cd1d86c39e309796fdca9378b68
[ "MIT" ]
null
null
null
/* * Interpreter.cpp * * Created: 7/4/2013 12:55:56 AM * Author: Ahmad Amiri */ #include "Interpreter.h" namespace Dynamixel{ namespace Interpreter{ volatile unsigned char state=1; volatile unsigned char id; volatile unsigned char length; volatile unsigned char instruction; volatile unsigned char param...
20.033175
166
0.600189
amirivojdan
dcc5f9d504b814705fe38a5ef790a15c5bf2b30b
3,413
cpp
C++
src/engine/audio/src/audio_mixer.cpp
sunhay/halley
fc4f153956cc34d7fa02b76850e22183b8e30e25
[ "Apache-2.0" ]
null
null
null
src/engine/audio/src/audio_mixer.cpp
sunhay/halley
fc4f153956cc34d7fa02b76850e22183b8e30e25
[ "Apache-2.0" ]
null
null
null
src/engine/audio/src/audio_mixer.cpp
sunhay/halley
fc4f153956cc34d7fa02b76850e22183b8e30e25
[ "Apache-2.0" ]
null
null
null
#include "audio_mixer.h" #include "halley/utils/utils.h" #include "audio_mixer_sse.h" #include "audio_mixer_avx.h" using namespace Halley; void AudioMixer::mixAudio(gsl::span<const AudioSamplePack> src, gsl::span<AudioSamplePack> dst, float gain0, float gain1) { const size_t nPacks = size_t(src.size()); if (gain0 ...
24.553957
121
0.648696
sunhay
dcc75e92d1b0bef4585d1d90c1dbb0e40bb9aa41
25,261
cpp
C++
src/game/WorldHandlers/LFGHandler.cpp
tbayart/mangostwoserver
fc26f650b9f72c1f7376207f9b9d3fdf66387a1e
[ "PostgreSQL", "Zlib", "OpenSSL" ]
1
2021-04-30T05:18:37.000Z
2021-04-30T05:18:37.000Z
src/game/WorldHandlers/LFGHandler.cpp
tbayart/mangostwoserver
fc26f650b9f72c1f7376207f9b9d3fdf66387a1e
[ "PostgreSQL", "Zlib", "OpenSSL" ]
null
null
null
src/game/WorldHandlers/LFGHandler.cpp
tbayart/mangostwoserver
fc26f650b9f72c1f7376207f9b9d3fdf66387a1e
[ "PostgreSQL", "Zlib", "OpenSSL" ]
null
null
null
/** * MaNGOS is a full featured server for World of Warcraft, supporting * the following clients: 1.12.x, 2.4.3, 3.3.5a, 4.3.4a and 5.4.8 * * Copyright (C) 2005-2017 MaNGOS project <https://getmangos.eu> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Gen...
35.379552
130
0.562131
tbayart
dcc89d3ad3e7491c2222884d90a9af74a94b299c
2,134
cpp
C++
src/deps/heif/srcs/api-cpp/ItemProperty.cpp
NickNaso/node-heif
fcee2801e26078c6e3c00a0117adf4f125b40a56
[ "Apache-2.0" ]
9
2018-04-28T02:27:33.000Z
2021-11-24T16:04:36.000Z
src/deps/heif/srcs/api-cpp/ItemProperty.cpp
NickNaso/node-heif
fcee2801e26078c6e3c00a0117adf4f125b40a56
[ "Apache-2.0" ]
1
2018-11-20T15:23:29.000Z
2018-11-21T05:10:58.000Z
src/deps/heif/srcs/api-cpp/ItemProperty.cpp
NickNaso/node-heif
fcee2801e26078c6e3c00a0117adf4f125b40a56
[ "Apache-2.0" ]
1
2021-01-07T06:47:02.000Z
2021-01-07T06:47:02.000Z
/* * This file is part of Nokia HEIF library * * Copyright (c) 2015-2018 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. * * Contact: heif@nokia.com * * This software, including documentation, is protected by copyright controlled by Nokia Corporation and/ or its * subsidiaries. All rights ar...
22.463158
118
0.673383
NickNaso
dcca7e1d705dcdcfa7a4e6a43706e232a6ab6844
515
cpp
C++
code/cmt/src/binningtransform.cpp
itsb/cmt
dd37a2bcc7d477d0ee82994711acd13ee02f47a9
[ "MIT" ]
33
2015-06-15T16:52:23.000Z
2019-11-26T19:49:36.000Z
code/cmt/src/binningtransform.cpp
itsb/cmt
dd37a2bcc7d477d0ee82994711acd13ee02f47a9
[ "MIT" ]
35
2015-03-17T09:27:32.000Z
2022-01-13T00:44:05.000Z
code/cmt/src/binningtransform.cpp
itsb/cmt
dd37a2bcc7d477d0ee82994711acd13ee02f47a9
[ "MIT" ]
17
2015-01-20T10:39:59.000Z
2020-12-16T10:24:13.000Z
#include "binningtransform.h" #include "exception.h" #include "utils.h" CMT::BinningTransform::BinningTransform(int binning, int dimIn, int dimOut) : AffineTransform( VectorXd::Zero(dimIn), MatrixXd::Zero(dimIn / binning, dimIn), dimOut), mBinning(binning) { if(dimIn % binning) throw Exception("Input dimens...
24.52381
81
0.673786
itsb
dccb449154a126cd7fe82ce4158a0bf3639bc2a7
16,263
hpp
C++
test/algorithms/buffer/test_buffer_svg.hpp
onlykzy/geometry
be6794b606d25cf53fe2fd312f9b5fe30ddda6fb
[ "BSL-1.0" ]
null
null
null
test/algorithms/buffer/test_buffer_svg.hpp
onlykzy/geometry
be6794b606d25cf53fe2fd312f9b5fe30ddda6fb
[ "BSL-1.0" ]
null
null
null
test/algorithms/buffer/test_buffer_svg.hpp
onlykzy/geometry
be6794b606d25cf53fe2fd312f9b5fe30ddda6fb
[ "BSL-1.0" ]
null
null
null
// Boost.Geometry (aka GGL, Generic Geometry Library) // Unit Test Helper // Copyright (c) 2010-2015 Barend Gehrels, Amsterdam, the Netherlands. // This file was modified by Oracle on 2020-2021. // Modifications copyright (c) 2020-2021 Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, o...
32.921053
126
0.562811
onlykzy
dccd3305767f42e9f303f34f8eaa85baf1f5f45f
670
cpp
C++
engine/Engine.UI/src/ui/control/ControlParent.cpp
Kartikeyapan598/Ghurund
bcdc5e1805bf82b3f9a0543a3bbe22681c5605ea
[ "MIT" ]
66
2018-12-16T21:03:36.000Z
2022-03-26T12:23:57.000Z
engine/Engine.UI/src/ui/control/ControlParent.cpp
Kartikeyapan598/Ghurund
bcdc5e1805bf82b3f9a0543a3bbe22681c5605ea
[ "MIT" ]
57
2018-04-24T20:53:01.000Z
2021-02-21T12:14:20.000Z
engine/Engine.UI/src/ui/control/ControlParent.cpp
Kartikeyapan598/Ghurund
bcdc5e1805bf82b3f9a0543a3bbe22681c5605ea
[ "MIT" ]
7
2019-07-16T08:25:25.000Z
2022-03-21T08:29:46.000Z
#include "ghuipch.h" #include "ControlParent.h" #include "core/reflection/Property.h" namespace Ghurund::UI { const Ghurund::Core::Type& ControlParent::GET_TYPE() { using namespace Ghurund::Core; static auto PROPERTY_FOCUS = Property<ControlParent, Control*>("Focus", &getFocus, &setFocus); ...
30.454545
120
0.676119
Kartikeyapan598
dcce5854944c4dd15df9063e1b3311d673c7145b
28,937
cpp
C++
src/openms/source/ANALYSIS/ID/PILISModelGenerator.cpp
mrurik/OpenMS
3bf48247423dc28a7df7b12b72fbc7751965c321
[ "Zlib", "Apache-2.0" ]
null
null
null
src/openms/source/ANALYSIS/ID/PILISModelGenerator.cpp
mrurik/OpenMS
3bf48247423dc28a7df7b12b72fbc7751965c321
[ "Zlib", "Apache-2.0" ]
null
null
null
src/openms/source/ANALYSIS/ID/PILISModelGenerator.cpp
mrurik/OpenMS
3bf48247423dc28a7df7b12b72fbc7751965c321
[ "Zlib", "Apache-2.0" ]
null
null
null
// -------------------------------------------------------------------------- // OpenMS -- Open-Source Mass Spectrometry // -------------------------------------------------------------------------- // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen, // ETH Zurich, and Freie Universit...
50.766667
204
0.615544
mrurik
dcd03392af54a2acb2d77a9fd4994981d69cb3e7
4,388
cpp
C++
ork.lev2/src/aud/portaudio/audiodevice_pa.cpp
tweakoz/orkid
e3f78dfb3375853fd512a9d0828b009075a18345
[ "BSL-1.0" ]
25
2015-02-21T04:21:21.000Z
2022-01-20T05:19:27.000Z
ork.lev2/src/aud/portaudio/audiodevice_pa.cpp
tweakoz/orkid
e3f78dfb3375853fd512a9d0828b009075a18345
[ "BSL-1.0" ]
113
2019-08-23T04:52:14.000Z
2021-09-13T04:04:11.000Z
ork.lev2/src/aud/portaudio/audiodevice_pa.cpp
tweakoz/orkid
e3f78dfb3375853fd512a9d0828b009075a18345
[ "BSL-1.0" ]
4
2017-02-20T18:17:55.000Z
2020-06-28T03:47:55.000Z
//////////////////////////////////////////////////////////////// // Orkid Media Engine // Copyright 1996-2020, Michael T. Mayers. // Distributed under the Boost Software License - Version 1.0 - August 17, 2003 // see http://www.boost.org/LICENSE_1_0.txt //////////////////////////////////////////////////////////////// ...
29.648649
79
0.569964
tweakoz
dcd08add3e77bcc5eef000d7274663a04977ea69
10,913
cpp
C++
src/tests/class_tests/openms/source/ConsensusID_test.cpp
aiche/OpenMS
5d212db863ff1ef48b3a70fe4d556ef179ae4f49
[ "Zlib", "Apache-2.0" ]
null
null
null
src/tests/class_tests/openms/source/ConsensusID_test.cpp
aiche/OpenMS
5d212db863ff1ef48b3a70fe4d556ef179ae4f49
[ "Zlib", "Apache-2.0" ]
null
null
null
src/tests/class_tests/openms/source/ConsensusID_test.cpp
aiche/OpenMS
5d212db863ff1ef48b3a70fe4d556ef179ae4f49
[ "Zlib", "Apache-2.0" ]
null
null
null
// -------------------------------------------------------------------------- // OpenMS -- Open-Source Mass Spectrometry // -------------------------------------------------------------------------- // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen, // ETH Zurich, and Freie Universit...
32.19174
78
0.65115
aiche
dcd2b7beca4d9af31d73352c94323eaecff7c248
3,851
cpp
C++
src/data/dictionary.cpp
jonasstrandstedt/owl
463e2761cf1407378d5ca18bd176f316c5c65151
[ "MIT" ]
null
null
null
src/data/dictionary.cpp
jonasstrandstedt/owl
463e2761cf1407378d5ca18bd176f316c5c65151
[ "MIT" ]
null
null
null
src/data/dictionary.cpp
jonasstrandstedt/owl
463e2761cf1407378d5ca18bd176f316c5c65151
[ "MIT" ]
null
null
null
/***************************************************************************************** * * * owl * * ...
38.89899
92
0.511555
jonasstrandstedt
dcd2c836a9fba413b998d20d38725a5a0fe2806c
10,904
cpp
C++
heap_storage.cpp
klundeen/5300-Hyena
268a4f31a028215f1182ef0b5c14c770870324f5
[ "MIT" ]
null
null
null
heap_storage.cpp
klundeen/5300-Hyena
268a4f31a028215f1182ef0b5c14c770870324f5
[ "MIT" ]
null
null
null
heap_storage.cpp
klundeen/5300-Hyena
268a4f31a028215f1182ef0b5c14c770870324f5
[ "MIT" ]
1
2021-05-02T22:26:14.000Z
2021-05-02T22:26:14.000Z
// heap_storage.cpp #include "heap_storage.h" #include <cstring> #include <map> #include <vector> // test function -- returns true if all tests pass bool test_heap_storage() { ColumnNames column_names; column_names.push_back("a"); column_names.push_back("b"); ColumnAttributes column_attributes; ColumnAttribut...
23.004219
180
0.641049
klundeen
dcd375079894a01211d0f57b1140441df0b6f9e4
727
cpp
C++
solved/Boltu vs Balti.cpp
Ahmad-Fahad/Dev-Skill
8b3f3c7d18d5636e1c2fcb626ae28b75f7ad2ffe
[ "Apache-2.0" ]
null
null
null
solved/Boltu vs Balti.cpp
Ahmad-Fahad/Dev-Skill
8b3f3c7d18d5636e1c2fcb626ae28b75f7ad2ffe
[ "Apache-2.0" ]
null
null
null
solved/Boltu vs Balti.cpp
Ahmad-Fahad/Dev-Skill
8b3f3c7d18d5636e1c2fcb626ae28b75f7ad2ffe
[ "Apache-2.0" ]
null
null
null
#include<bits/stdc++.h> using namespace std; int main() { long long int testCase = 0, cases = 0; scanf("%lld", &testCase); while(testCase--) { long long int n = 0, partialSum = 0, factorial = 1, sum = 0; scanf("%lld", &n); if(n>3) { printf("Case %lld-> NO;\n", ++cases); ...
24.233333
68
0.419532
Ahmad-Fahad
dcd4e3d875f6d2d46662a71f11df9abe700b509a
801
hpp
C++
source/framework/algorithm/include/lue/framework/algorithm/default_policies/aspect.hpp
pcraster/lue
e64c18f78a8b6d8a602b7578a2572e9740969202
[ "MIT" ]
1
2019-04-14T15:51:12.000Z
2019-04-14T15:51:12.000Z
source/framework/algorithm/include/lue/framework/algorithm/default_policies/aspect.hpp
pcraster/lue
e64c18f78a8b6d8a602b7578a2572e9740969202
[ "MIT" ]
262
2016-08-11T10:12:02.000Z
2020-10-13T18:09:16.000Z
source/framework/algorithm/include/lue/framework/algorithm/default_policies/aspect.hpp
pcraster/lue
e64c18f78a8b6d8a602b7578a2572e9740969202
[ "MIT" ]
1
2020-03-11T09:49:41.000Z
2020-03-11T09:49:41.000Z
#pragma once #include "lue/framework/algorithm/aspect.hpp" namespace lue { namespace policy::aspect { template< typename Element> using DefaultPolicies = policy::DefaultSpatialOperationPolicies< AllValuesWithinDomain<Element>, OutputElements<Element>, ...
24.272727
72
0.615481
pcraster
dcd720273ba24ae52d22547a011c5c2021a699c9
442
cpp
C++
02_Programming_Fundamentals/06_Programming_Fundamentals_CPP/02_FunctionsArraysAndVectors/Demos/15.Returning-STL-Vectors-from-Functions.cpp
Knightwalker/Knowledgebase
00c6dea5e52c0d2b0fe0dc3b7b5c298d445f0161
[ "MIT" ]
null
null
null
02_Programming_Fundamentals/06_Programming_Fundamentals_CPP/02_FunctionsArraysAndVectors/Demos/15.Returning-STL-Vectors-from-Functions.cpp
Knightwalker/Knowledgebase
00c6dea5e52c0d2b0fe0dc3b7b5c298d445f0161
[ "MIT" ]
null
null
null
02_Programming_Fundamentals/06_Programming_Fundamentals_CPP/02_FunctionsArraysAndVectors/Demos/15.Returning-STL-Vectors-from-Functions.cpp
Knightwalker/Knowledgebase
00c6dea5e52c0d2b0fe0dc3b7b5c298d445f0161
[ "MIT" ]
null
null
null
#include<iostream> #include<vector> #include<cmath> using namespace std; vector<double> getSquareRoots(int from, int to) { vector<double> roots; for (int i = from; i <= to; i++) { roots.push_back(sqrt(i)); } return roots; } void print(vector<double> numbers) { for (int number : numbers) {...
17
49
0.58371
Knightwalker
dcd72522fddf796a6fba66e293079926bec596a9
2,427
cpp
C++
examples/tsp/Main.cpp
sk177y/sexy
d3384044f91f442341edb0928267c86d80697c33
[ "Apache-2.0" ]
5
2018-03-12T14:39:44.000Z
2021-12-21T23:31:53.000Z
examples/tsp/Main.cpp
sk177y/sexy
d3384044f91f442341edb0928267c86d80697c33
[ "Apache-2.0" ]
null
null
null
examples/tsp/Main.cpp
sk177y/sexy
d3384044f91f442341edb0928267c86d80697c33
[ "Apache-2.0" ]
null
null
null
#include <iostream> #include <sstream> #include <stdlib.h> using namespace std; #include "PropertiesMap.h" #include "mtrand.h" #include "AlgorithmTSPAIS.h" #include "AlgorithmTSPAIS2.h" #include "AlgorithmTSPGA.h" #include "AlgorithmTSPGA2.h" /** * Prints default usage of the program. */ void usage(){ cout << "Usa...
25.819149
111
0.624227
sk177y
dcdd933b1d352927f8e42dab3db7ccfac35f5dfa
372
cpp
C++
Projects/009 first letter of string/first letter of string/main.cpp
RoundBearChoi/CPP_Tutorial_Projects
19b52a054f4c8c83ed7f09d834109ddb57e423ad
[ "Unlicense" ]
2
2020-11-02T18:47:33.000Z
2021-04-12T15:28:14.000Z
Projects/009 first letter of string/first letter of string/main.cpp
RoundBearChoi/CPP_Tutorial_Projects
19b52a054f4c8c83ed7f09d834109ddb57e423ad
[ "Unlicense" ]
null
null
null
Projects/009 first letter of string/first letter of string/main.cpp
RoundBearChoi/CPP_Tutorial_Projects
19b52a054f4c8c83ed7f09d834109ddb57e423ad
[ "Unlicense" ]
3
2021-02-15T13:54:36.000Z
2021-11-23T06:22:51.000Z
#include <iostream> int main() { std::string yourString; while (yourString[0] != 'q') { std::cout << "say something: "; std::cin >> yourString; std::cout << std::endl; std::cout << "you said: " << yourString << std::endl; std::cout << "first letter: " << yourString[0] << std::endl; std::cin.clear(); ...
18.6
62
0.575269
RoundBearChoi
dcde3b3d1c3e8513e9d6929a1b029d0708650e72
2,247
cpp
C++
Sources/engine/vulkangfx/private/Device.cpp
Zino2201/ZinoEngine
519d34a1d2b09412c8e2cba6b685b4556ec2c2ac
[ "MIT" ]
20
2019-12-22T20:40:22.000Z
2021-07-06T00:23:45.000Z
Sources/engine/vulkangfx/private/Device.cpp
Zino2201/ZinoEngine
519d34a1d2b09412c8e2cba6b685b4556ec2c2ac
[ "MIT" ]
32
2020-07-11T15:51:13.000Z
2021-06-07T10:25:07.000Z
Sources/engine/vulkangfx/private/Device.cpp
Zino2201/ZinoEngine
519d34a1d2b09412c8e2cba6b685b4556ec2c2ac
[ "MIT" ]
3
2019-12-19T17:04:04.000Z
2021-05-17T01:49:59.000Z
#include "Device.h" #include <set> #include "Queue.h" #include "VulkanBackend.h" namespace ze::gfx::vulkan { Device::Device(const vk::PhysicalDevice& in_phys_device) : physical_device(in_phys_device) { /** Get queue family indices */ { std::vector<vk::QueueFamilyProperties> queue_families = physical_device.getQu...
26.75
108
0.721851
Zino2201
dcded46a053879a160d78ecb168775b11f426979
26,570
cc
C++
tensorflow/examples/cc/rnn/rnn_ops_test.cc
fuhailin/tensorflow.cc
3b7bc76245cd3620ccfd98d26b674b0c1571f3fe
[ "Apache-2.0" ]
27
2019-01-02T09:36:57.000Z
2022-02-21T06:41:51.000Z
tensorflow/examples/cc/rnn/rnn_ops_test.cc
fuhailin/tensorflow.cc
3b7bc76245cd3620ccfd98d26b674b0c1571f3fe
[ "Apache-2.0" ]
3
2019-01-23T11:01:22.000Z
2022-02-24T02:53:31.000Z
tensorflow/examples/cc/rnn/rnn_ops_test.cc
fuhailin/tensorflow.cc
3b7bc76245cd3620ccfd98d26b674b0c1571f3fe
[ "Apache-2.0" ]
11
2019-03-02T12:42:23.000Z
2021-02-04T12:20:10.000Z
/* Copyright 2018 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (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, software distributed under the License is d...
38.395954
80
0.589198
fuhailin
dce41568e4034733e0af04c7610f35da93f2bdee
335
cpp
C++
_includes/leet162/leet162.cpp
mingdaz/leetcode
64f2e5ad0f0446d307e23e33a480bad5c9e51517
[ "MIT" ]
null
null
null
_includes/leet162/leet162.cpp
mingdaz/leetcode
64f2e5ad0f0446d307e23e33a480bad5c9e51517
[ "MIT" ]
8
2019-12-19T04:46:05.000Z
2022-02-26T03:45:22.000Z
_includes/leet162/leet162.cpp
mingdaz/leetcode
64f2e5ad0f0446d307e23e33a480bad5c9e51517
[ "MIT" ]
null
null
null
class Solution { public: int findPeakElement(vector<int>& nums) { if(nums.size()==1) return 0; int n = nums.size(); if(nums[0]>nums[1]) return 0; if(nums[n-1]>nums[n-2]) return n-1; for(int i=1;i<n-1;i++){ while(nums[i]>nums[i-1]) i++; return i-1; ...
23.928571
44
0.471642
mingdaz
dce470ebca5be3782233b543b7f9cc5ed1d2d438
49,427
cpp
C++
Samples/Win7Samples/multimedia/mediafoundation/topoedit/tedutil/PropertyView.cpp
windows-development/Windows-classic-samples
96f883e4c900948e39660ec14a200a5164a3c7b7
[ "MIT" ]
8
2017-04-30T17:38:27.000Z
2021-11-29T00:59:03.000Z
Samples/Win7Samples/multimedia/mediafoundation/topoedit/tedutil/PropertyView.cpp
TomeSq/Windows-classic-samples
96f883e4c900948e39660ec14a200a5164a3c7b7
[ "MIT" ]
null
null
null
Samples/Win7Samples/multimedia/mediafoundation/topoedit/tedutil/PropertyView.cpp
TomeSq/Windows-classic-samples
96f883e4c900948e39660ec14a200a5164a3c7b7
[ "MIT" ]
2
2020-08-11T13:21:49.000Z
2021-09-01T10:41:51.000Z
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. // // Copyright (c) Microsoft Corporation. All rights reserved #include "stdafx.h" ...
35.584593
172
0.638194
windows-development
dce698bc29562a04b19df7cb68f758544c555697
371
cpp
C++
C++/First Steps in Coding - Basics of C++/While Loops/Max Number.cpp
EduardV777/Softuni-Python-Exercises
79db667028aea7dfecb3dbbd834c752180c50f44
[ "Unlicense" ]
null
null
null
C++/First Steps in Coding - Basics of C++/While Loops/Max Number.cpp
EduardV777/Softuni-Python-Exercises
79db667028aea7dfecb3dbbd834c752180c50f44
[ "Unlicense" ]
null
null
null
C++/First Steps in Coding - Basics of C++/While Loops/Max Number.cpp
EduardV777/Softuni-Python-Exercises
79db667028aea7dfecb3dbbd834c752180c50f44
[ "Unlicense" ]
null
null
null
#include <cstdlib> #include <iostream> #include <string> using namespace std; int main() { int maxNum, k=0; while (true) { string currNum; cin >> currNum; if (currNum=="Stop"){ cout << maxNum; break; } else { int number = stoi(currNum); if (k == 0) { maxNum = number; k++; } if (max...
14.269231
30
0.549865
EduardV777
dce6eeb100624eba56d7fc0bb2f881ff4225f081
1,903
cpp
C++
saber/funcs/impl/x86/saber_conv_shift.cpp
pangge/Anakin
f327267d1ee2038d92d8c704ec9f1a03cb800fc8
[ "Apache-2.0" ]
533
2018-05-18T06:14:04.000Z
2022-03-23T11:46:30.000Z
saber/funcs/impl/x86/saber_conv_shift.cpp
pangge/Anakin
f327267d1ee2038d92d8c704ec9f1a03cb800fc8
[ "Apache-2.0" ]
100
2018-05-26T08:32:48.000Z
2022-03-17T03:26:25.000Z
saber/funcs/impl/x86/saber_conv_shift.cpp
pangge/Anakin
f327267d1ee2038d92d8c704ec9f1a03cb800fc8
[ "Apache-2.0" ]
167
2018-05-18T06:14:35.000Z
2022-02-14T01:44:20.000Z
#include "saber/funcs/impl/x86/saber_conv_shift.h" #include "saber/funcs/impl/x86/x86_utils.h" #include <cmath> namespace anakin { namespace saber { /* *conv shift compute formula *input: inputs[0] {N. M}; *input: inputs[1] {N, K} */ template <DataType OpDtype> SaberStatus SaberConvShift<X86, OpDtype>::dispatch(\ ...
35.240741
96
0.629007
pangge
dce6f145b7343fc30d6edb7f743b3ae53efc872a
21,745
hpp
C++
viennadata/storage.hpp
viennadata/viennadata-dev
4c64fa8e131dcc6d2574b5b9456d8c8d4456b1aa
[ "MIT" ]
1
2015-09-13T03:51:41.000Z
2015-09-13T03:51:41.000Z
viennadata/storage.hpp
viennadata/viennadata-dev
4c64fa8e131dcc6d2574b5b9456d8c8d4456b1aa
[ "MIT" ]
null
null
null
viennadata/storage.hpp
viennadata/viennadata-dev
4c64fa8e131dcc6d2574b5b9456d8c8d4456b1aa
[ "MIT" ]
null
null
null
#ifndef VIENNADATA_STORAGE_HPP #define VIENNADATA_STORAGE_HPP /* ======================================================================= Copyright (c) 2011-2013, Institute for Microelectronics, Institute for Analysis and Scientific Computing, TU Wien. ...
50.925059
164
0.699333
viennadata
dce6f68eda4cb1f4187d74f94f049975a08e1050
518
cpp
C++
DirectUI/Dispatcher.cpp
oven425/DirectUI
00bc0f018a045cbe1709e893ed10a37e2fe1e4e4
[ "MIT" ]
2
2021-01-14T00:54:58.000Z
2021-01-14T00:55:01.000Z
DirectUI/Dispatcher.cpp
oven425/DirectUI
00bc0f018a045cbe1709e893ed10a37e2fe1e4e4
[ "MIT" ]
null
null
null
DirectUI/Dispatcher.cpp
oven425/DirectUI
00bc0f018a045cbe1709e893ed10a37e2fe1e4e4
[ "MIT" ]
null
null
null
#include "pch.h" #include "Dispatcher.h" using namespace DirectUI; using namespace Threading; Dispatcher::Dispatcher() { //this->m_hTimerQueue = ::CreateTimerQueue(); //::CreateTimerQueueTimer(&this->m_hTimeUI, this->m_hTimerQueue, &Dispatcher::UITimer, this, 10000, 0, 0); this->m_Pool = thread(&Dispatcher::Pollin...
19.185185
107
0.710425
oven425
dce7bb7150885106e790e834e2d6fc754e5e2a09
2,756
cpp
C++
windows8/HookDll/HookDLL.cpp
sahwar/chrome-stylus-pressure
f218537e3d4109944d766c7d74d9592d108733c9
[ "MIT" ]
1
2019-04-14T20:20:16.000Z
2019-04-14T20:20:16.000Z
windows8/HookDll/HookDLL.cpp
sahwar/chrome-stylus-pressure
f218537e3d4109944d766c7d74d9592d108733c9
[ "MIT" ]
null
null
null
windows8/HookDll/HookDLL.cpp
sahwar/chrome-stylus-pressure
f218537e3d4109944d766c7d74d9592d108733c9
[ "MIT" ]
null
null
null
#define WIN32_LEAN_AND_MEAN #include <windows.h> #include <vector> #include <algorithm> #include "HookDLL.h" #pragma data_seg(".Segment") HWND hWndServer = NULL; //std::vector<HWND> receivers; UINT UWM_POINTERUPDATE = 0; #pragma data_seg() #pragma comment(linker, "/section:.Segment,rws") HINSTANCE hInst = NULL; HHOOK...
23.758621
97
0.718433
sahwar
dce8c11b63f254f1c21fdf6289ab97f4a0d67afa
10,522
cpp
C++
examples/49_SimpleTessellation/SimpleTessellationDemo.cpp
zsb534923374/VulkanDemos
3bda2a8f29cfb69ffdb1bed5a53ffa1c4a2c1dc5
[ "MIT" ]
1
2019-10-12T15:07:38.000Z
2019-10-12T15:07:38.000Z
examples/49_SimpleTessellation/SimpleTessellationDemo.cpp
Guangehhhh/VulkanDemos
d3b9cc113aa3657689a0e7828892fb754f73361f
[ "MIT" ]
null
null
null
examples/49_SimpleTessellation/SimpleTessellationDemo.cpp
Guangehhhh/VulkanDemos
d3b9cc113aa3657689a0e7828892fb754f73361f
[ "MIT" ]
null
null
null
#include "Common/Common.h" #include "Common/Log.h" #include "Demo/DVKCommon.h" #include "Math/Vector4.h" #include "Math/Matrix4x4.h" #include <vector> class SimpleTessellationDemo : public DemoBase { public: SimpleTessellationDemo(int32 width, int32 height, const char* title, const std::vector<std::string>& cmdLi...
26.370927
140
0.715358
zsb534923374
dceab9efa50cd68b07342828b0e837f4b50813b9
3,694
cpp
C++
CrossApp/basics/CARect.cpp
kingBook/cross-2.1.5
de4e910bd2de55d79ab3aa105d3c2f99ffa60219
[ "MIT" ]
794
2015-01-01T04:59:48.000Z
2022-03-09T03:31:13.000Z
CrossApp/basics/CARect.cpp
kingBook/cross-2.1.5
de4e910bd2de55d79ab3aa105d3c2f99ffa60219
[ "MIT" ]
83
2015-01-04T06:00:35.000Z
2021-05-20T08:48:38.000Z
CrossApp/basics/CARect.cpp
kingBook/cross-2.1.5
de4e910bd2de55d79ab3aa105d3c2f99ffa60219
[ "MIT" ]
598
2015-01-02T02:38:13.000Z
2022-03-09T03:31:37.000Z
#include "CARect.h" #include "ccMacros.h" #include "basics/CAApplication.h" // implementation of DPoint NS_CC_BEGIN DRect::DRect(void) :m_eType(DRect::Type::Frame) { setRect(0.0f, 0.0f, 0.0f, 0.0f); } DRect::DRect(const DPoint& orgin, const DSize& size) :m_eType(DRect::Type::Frame) { setRect(orgin.x, orgi...
20.522222
114
0.58392
kingBook
dceb2f7e8901d4355e71a2291388fac0b1ca53cd
30,141
cc
C++
util/makeMapSectioned.cc
MartinezTorres/Edelweiss
ef7eeaa1b8262e85f708c672fbb3310a6912be0c
[ "MIT" ]
2
2021-01-20T13:12:31.000Z
2021-02-24T17:00:36.000Z
util/makeMapSectioned.cc
MartinezTorres/Edelweiss
ef7eeaa1b8262e85f708c672fbb3310a6912be0c
[ "MIT" ]
1
2021-04-07T20:19:37.000Z
2021-04-07T20:19:37.000Z
util/makeMapSectioned.cc
MartinezTorres/Edelweiss
ef7eeaa1b8262e85f708c672fbb3310a6912be0c
[ "MIT" ]
1
2021-02-24T17:00:43.000Z
2021-02-24T17:00:43.000Z
//////////////////////////////////////////////////////////////////////// // Build MSX1 palette // // Manuel Martinez (salutte@gmail.com) // // FLAGS: -std=gnu++14 -g `pkg-config opencv --cflags --libs` -Ofast -lpthread -fopenmp -lgomp -Wno-format-nonliteral #include <opencv2/core.hpp> #include <opencv2/imgproc.hpp> #i...
39.555118
170
0.438605
MartinezTorres
dcec395fcb43c237745932adfcc3cb5206e024b7
93
cpp
C++
GDPARCM_HO3/main.cpp
NeilDG/GDADPRG-GDPARCM_Courseware
771509ec7b3eb6d6375807819ca9da957dd22641
[ "MIT" ]
null
null
null
GDPARCM_HO3/main.cpp
NeilDG/GDADPRG-GDPARCM_Courseware
771509ec7b3eb6d6375807819ca9da957dd22641
[ "MIT" ]
null
null
null
GDPARCM_HO3/main.cpp
NeilDG/GDADPRG-GDPARCM_Courseware
771509ec7b3eb6d6375807819ca9da957dd22641
[ "MIT" ]
null
null
null
#include <iostream> #include "BaseRunner.h" int main() { BaseRunner runner; runner.run(); }
15.5
23
0.698925
NeilDG
dcece1ecc68c0dcea13dbd246f3977a328a8f631
4,874
cpp
C++
offline_compiler/utilities/windows/seh_exception.cpp
cwang64/compute-runtime
440520ffdc5807574f0abfbf64b3790d1c0547e4
[ "MIT" ]
3
2019-09-20T23:26:36.000Z
2019-10-03T17:44:12.000Z
offline_compiler/utilities/windows/seh_exception.cpp
cwang64/compute-runtime
440520ffdc5807574f0abfbf64b3790d1c0547e4
[ "MIT" ]
1
2019-09-17T08:06:24.000Z
2019-09-17T08:06:24.000Z
offline_compiler/utilities/windows/seh_exception.cpp
cwang64/compute-runtime
440520ffdc5807574f0abfbf64b3790d1c0547e4
[ "MIT" ]
3
2019-05-16T07:22:51.000Z
2019-11-11T03:05:32.000Z
/* * Copyright (C) 2018-2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "seh_exception.h" #include "runtime/os_interface/os_library.h" #include <memory> #include <string> #pragma warning(push) #pragma warning(disable : 4091) #include <dbghelp.h> #pragma warning(pop) #include <windows.h> ...
29.185629
145
0.669881
cwang64
dceea8de8f2da38e8984527c0ff0a1d17fc9356a
2,088
cpp
C++
full_code/Input Combos/Motor2D/ctEntities.cpp
Wilhelman/Input-Combos
9aeb5621c0148318caf7cfbc31972856d149587e
[ "MIT" ]
null
null
null
full_code/Input Combos/Motor2D/ctEntities.cpp
Wilhelman/Input-Combos
9aeb5621c0148318caf7cfbc31972856d149587e
[ "MIT" ]
null
null
null
full_code/Input Combos/Motor2D/ctEntities.cpp
Wilhelman/Input-Combos
9aeb5621c0148318caf7cfbc31972856d149587e
[ "MIT" ]
null
null
null
#include "ctApp.h" #include "ctRender.h" #include "ctEntities.h" #include "ctTextures.h" #include "Entity.h" #include "ctAudio.h" #include "ctWindow.h" #include "ctLog.h" #include "ctFadeToBlack.h" #include "Player.h" ctEntities::ctEntities() { name = "entities"; } // Destructor ctEntities::~ctEntities() { LOG("U...
16.704
83
0.660441
Wilhelman
fd5e717ed795234e71afc48fc93f28d7840e4a38
1,645
cpp
C++
test/Quaternion_test.cpp
hhoppe/Mesh-processing-library
aa8c952fbbb00774008060767650b821bf72fa10
[ "MIT" ]
422
2017-01-12T04:44:39.000Z
2022-03-21T14:38:49.000Z
test/Quaternion_test.cpp
wangxihao/Mesh-processing-library
194ce16b8b28bbab1263ca6bc26dedfa7a0eeea2
[ "MIT" ]
1
2017-06-07T16:36:09.000Z
2017-06-07T16:36:09.000Z
test/Quaternion_test.cpp
wangxihao/Mesh-processing-library
194ce16b8b28bbab1263ca6bc26dedfa7a0eeea2
[ "MIT" ]
75
2017-01-12T04:44:41.000Z
2021-11-09T02:57:34.000Z
// -*- C++ -*- Copyright (c) Microsoft Corporation; see license.txt #include "libHh/Quaternion.h" #include "libHh/Advanced.h" // clone() #include "libHh/RangeOp.h" // round_elements() using namespace hh; static Frame round(Frame frame) { const int nrows = 3; // or 4 for_int(row, nrows) round_elements(frame[r...
27.881356
99
0.57386
hhoppe
fd5e8a799bccca7d2fdaee6a11741b7e9a3c038f
16,490
hpp
C++
dependency/pcl_util/include/pcl_util/pcl_util.hpp
ganlumomo/semantic_3d_mapping
c6d2cebd26d4c08ac3f32fe151cf1db7f2d24fe5
[ "BSD-3-Clause" ]
146
2018-03-15T13:54:51.000Z
2022-03-14T07:37:55.000Z
dependency/pcl_util/include/pcl_util/pcl_util.hpp
ganlumomo/semantic_3d_mapping
c6d2cebd26d4c08ac3f32fe151cf1db7f2d24fe5
[ "BSD-3-Clause" ]
19
2018-04-28T09:33:00.000Z
2021-04-08T23:46:00.000Z
dependency/pcl_util/include/pcl_util/pcl_util.hpp
ganlumomo/semantic_3d_mapping
c6d2cebd26d4c08ac3f32fe151cf1db7f2d24fe5
[ "BSD-3-Clause" ]
62
2018-03-21T06:54:53.000Z
2022-01-05T07:27:42.000Z
/** * @author Daniel Maturana * @year 2015 * * @attention Copyright (c) 2015 * @attention Carnegie Mellon University * @attention All rights reserved. * **@=*/ #ifndef PCL_UTIL_HPP_MWOLDV6B #define PCL_UTIL_HPP_MWOLDV6B #include <string> #include <vector> #include <numeric> #include <iostream> #include <...
29.341637
107
0.648393
ganlumomo
fd5f0ef43bf1e26a62d1702c83614711a8de2b9c
1,069
cpp
C++
vtools/Sample/src/Application.cpp
SergeyStrukov/CCore-3-xx
820507e78f8aa35ca05761e00e060c8f64c59af5
[ "BSL-1.0" ]
8
2017-12-21T07:00:16.000Z
2020-04-02T09:05:55.000Z
vtools/Sample/src/Application.cpp
SergeyStrukov/CCore-3-xx
820507e78f8aa35ca05761e00e060c8f64c59af5
[ "BSL-1.0" ]
null
null
null
vtools/Sample/src/Application.cpp
SergeyStrukov/CCore-3-xx
820507e78f8aa35ca05761e00e060c8f64c59af5
[ "BSL-1.0" ]
1
2020-03-30T09:54:18.000Z
2020-03-30T09:54:18.000Z
/* Application.cpp */ //---------------------------------------------------------------------------------------- // // Project: Sample 1.00 // // License: Boost Software License - Version 1.0 - August 17th, 2003 // // see http://www.boost.org/LICENSE_1_0.txt or the local copy // // Copyright (c) 2017 Serg...
25.452381
90
0.565014
SergeyStrukov
fd5fa10b6db556030c76f218199308328ececf93
5,256
cpp
C++
src/shapes/ofxLaserPolyline.cpp
suaretjorge/laser_ofx
42d733489947c95cc83505f5708e89309f7d856f
[ "MIT" ]
228
2015-08-19T06:33:13.000Z
2022-03-21T13:38:47.000Z
src/shapes/ofxLaserPolyline.cpp
suaretjorge/laser_ofx
42d733489947c95cc83505f5708e89309f7d856f
[ "MIT" ]
19
2018-06-29T17:22:39.000Z
2022-03-11T17:48:42.000Z
src/shapes/ofxLaserPolyline.cpp
suaretjorge/laser_ofx
42d733489947c95cc83505f5708e89309f7d856f
[ "MIT" ]
27
2015-11-21T02:31:51.000Z
2022-03-20T02:25:55.000Z
// // ofxLaserPolyline.cpp // ofxLaser // // Created by Seb Lee-Delisle on 16/11/2017. // // #include "ofxLaserPolyline.h" using namespace ofxLaser; Polyline::Polyline() { reversable = true; colour = ofColor::white; cachedProfile = NULL; multicoloured = false; tested = false; profileLabel = ""; } Poly...
22.753247
125
0.68379
suaretjorge
fd616d567fa11e1541b57700aaa19c14568de93a
1,784
cpp
C++
source/msynth/msynth/model/util/MEnvelopeFollower.cpp
MRoc/MSynth
3eb5c6cf0ad6a3d12f555ebca5fbe84c1b255829
[ "MIT" ]
1
2022-01-30T07:40:31.000Z
2022-01-30T07:40:31.000Z
source/msynth/msynth/model/util/MEnvelopeFollower.cpp
MRoc/MSynth
3eb5c6cf0ad6a3d12f555ebca5fbe84c1b255829
[ "MIT" ]
null
null
null
source/msynth/msynth/model/util/MEnvelopeFollower.cpp
MRoc/MSynth
3eb5c6cf0ad6a3d12f555ebca5fbe84c1b255829
[ "MIT" ]
null
null
null
#include "MEnvelopeFollower.h" /** * constructor */ MEnvelopeFollower::MEnvelopeFollower() : ivBUp( 0.001f ), ivBDown( 0.99999f ), ivPeak( 0.0f ) { } /** * destructor */ MEnvelopeFollower::~MEnvelopeFollower() { } /** * does a envelope follow */ void MEnvelopeFollower::goNext( MSoundB...
19.391304
95
0.612668
MRoc
fd61d39c9df23988ba4e9aab7823a7b49729f496
16,936
cpp
C++
uppsrc/ide/Debuggers/Gdb.cpp
UltimateScript/Forgotten
ac59ad21767af9628994c0eecc91e9e0e5680d95
[ "BSD-3-Clause" ]
null
null
null
uppsrc/ide/Debuggers/Gdb.cpp
UltimateScript/Forgotten
ac59ad21767af9628994c0eecc91e9e0e5680d95
[ "BSD-3-Clause" ]
null
null
null
uppsrc/ide/Debuggers/Gdb.cpp
UltimateScript/Forgotten
ac59ad21767af9628994c0eecc91e9e0e5680d95
[ "BSD-3-Clause" ]
null
null
null
#include "Debuggers.h" #define METHOD_NAME UPP_METHOD_NAME("Gdb") void Gdb::WatchMenu(Bar& bar) { bool b = !IdeIsDebugLock(); bar.Add(b, PdbKeys::AK_CLEARWATCHES, THISBACK(ClearWatches)); bar.Add(b, PdbKeys::AK_ADDWATCH, THISBACK(QuickWatch)); } void Gdb::DebugBar(Bar& bar) { using namespace PdbKeys; bar.Add("...
21.519695
110
0.604924
UltimateScript
fd641c506334c147e2f59027153d7bfaca19fe5d
114,773
cpp
C++
inetsrv/iis/svcs/cmp/asp/scrptmgr.cpp
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
inetsrv/iis/svcs/cmp/asp/scrptmgr.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
inetsrv/iis/svcs/cmp/asp/scrptmgr.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
/*=================================================================== Microsoft Denali Microsoft Confidential. Copyright 1996 Microsoft Corporation. All Rights Reserved. Component: Script Manager File: ScrptMgr.cpp Owner: AndrewS This file contains the implementation of the Scrip Manager, ie: siting a...
26.10257
151
0.58323
npocmaka
fd662d135e58429e76c382145849a71d07f032cd
4,657
cpp
C++
Structure.cpp
LingboTang/LearningFiles
efe3174dd7700d1f39851d9d813929425b4e473f
[ "Apache-2.0" ]
null
null
null
Structure.cpp
LingboTang/LearningFiles
efe3174dd7700d1f39851d9d813929425b4e473f
[ "Apache-2.0" ]
null
null
null
Structure.cpp
LingboTang/LearningFiles
efe3174dd7700d1f39851d9d813929425b4e473f
[ "Apache-2.0" ]
null
null
null
#include <unistd.h> #include "Structure.hpp" #include <boost/algorithm/string.hpp> #include <typeinfo> #include <cstdio> //#include <regex> using namespace std; unitCell::unitCell(string S1, string S2, string Mo, vector<Coord> Unit_Coords) : S1(S1), S2(S2), Mo(Mo), Unit_Coords(Unit_Coords) { this -> S1 = "S"; this ...
20.883408
100
0.602319
LingboTang
fd66b191008e9712538f706df9221440caeffdb0
8,160
hh
C++
src/sim/futex_map.hh
chisuhua/gem5
74694255d90e0892d5f5c4d13f6077cdb9b9cb95
[ "BSD-3-Clause" ]
null
null
null
src/sim/futex_map.hh
chisuhua/gem5
74694255d90e0892d5f5c4d13f6077cdb9b9cb95
[ "BSD-3-Clause" ]
null
null
null
src/sim/futex_map.hh
chisuhua/gem5
74694255d90e0892d5f5c4d13f6077cdb9b9cb95
[ "BSD-3-Clause" ]
null
null
null
/* * Copyright (c) 2017 Advanced Micro Devices, 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 ...
28.333333
77
0.595956
chisuhua
fd697b23aece466dec1118cca94e468a7ffc0b94
4,593
cpp
C++
opencv-2.4.11/samples/cpp/ffilldemo.cpp
durai-chellamuthu/node-opencv
a9c18c77b2fe0f62f2f8376854bdf33de71f5dc3
[ "MIT" ]
13
2015-03-01T07:03:17.000Z
2021-11-03T06:33:31.000Z
opencv-2.4.11/samples/cpp/ffilldemo.cpp
durai-chellamuthu/node-opencv
a9c18c77b2fe0f62f2f8376854bdf33de71f5dc3
[ "MIT" ]
1
2019-08-14T02:56:04.000Z
2019-08-14T03:53:21.000Z
opencv-2.4.11/samples/cpp/ffilldemo.cpp
durai-chellamuthu/node-opencv
a9c18c77b2fe0f62f2f8376854bdf33de71f5dc3
[ "MIT" ]
32
2015-06-08T08:59:51.000Z
2021-08-05T09:54:16.000Z
#include "opencv2/imgproc/imgproc.hpp" #include "opencv2/highgui/highgui.hpp" #include <iostream> using namespace cv; using namespace std; static void help() { cout << "\nThis program demonstrated the floodFill() function\n" "Call:\n" "./ffilldemo [image_name -- Default: fruits.jpg]\n" <<...
27.668675
84
0.490094
durai-chellamuthu
fd6a53003242b990397d35871d6c199f0e0d55bb
732
hpp
C++
musicServerMonitor.hpp
CheezeCake/muStreamer
861b43719683fb3d984b2eef0badbf606058e285
[ "MIT" ]
null
null
null
musicServerMonitor.hpp
CheezeCake/muStreamer
861b43719683fb3d984b2eef0badbf606058e285
[ "MIT" ]
null
null
null
musicServerMonitor.hpp
CheezeCake/muStreamer
861b43719683fb3d984b2eef0badbf606058e285
[ "MIT" ]
null
null
null
#pragma once #include <Ice/Ice.h> #include "server.h" #include "metaServer.hpp" class MusicServerMonitor : public Player::IMusicServerMonitor { public: MusicServerMonitor(MetaServer* ms); void newMusicServer(const std::string& hostname, const std::string& listeningPort, const std::string& streamingPort, cons...
31.826087
85
0.755464
CheezeCake
fd6ea4d689aed0719629580f075ec2d06008a897
11,246
cpp
C++
deployment/configenv/xml_jlibpt/EnvHelper.cpp
davidarcher/HPCC-Platform
fa817ab9ea7d8154ac08bc780ce9ce673f3e51e3
[ "Apache-2.0" ]
null
null
null
deployment/configenv/xml_jlibpt/EnvHelper.cpp
davidarcher/HPCC-Platform
fa817ab9ea7d8154ac08bc780ce9ce673f3e51e3
[ "Apache-2.0" ]
null
null
null
deployment/configenv/xml_jlibpt/EnvHelper.cpp
davidarcher/HPCC-Platform
fa817ab9ea7d8154ac08bc780ce9ce673f3e51e3
[ "Apache-2.0" ]
3
2021-05-02T17:01:57.000Z
2021-05-02T17:02:28.000Z
/*############################################################################## HPCC SYSTEMS software Copyright (C) 2018 HPCC Systems®. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License...
29.751323
146
0.65899
davidarcher
fd70cfc66f7fe2a203060bb684887e5724c6ecc4
3,204
cpp
C++
SDK/Plugin/Block/SidechainMerkleBlock.cpp
alexpan0610/Elastos.ELA.SPV.Cpp
18a089ed0d0c1551868442d2d7e4a1cc7087332e
[ "MIT" ]
null
null
null
SDK/Plugin/Block/SidechainMerkleBlock.cpp
alexpan0610/Elastos.ELA.SPV.Cpp
18a089ed0d0c1551868442d2d7e4a1cc7087332e
[ "MIT" ]
null
null
null
SDK/Plugin/Block/SidechainMerkleBlock.cpp
alexpan0610/Elastos.ELA.SPV.Cpp
18a089ed0d0c1551868442d2d7e4a1cc7087332e
[ "MIT" ]
null
null
null
// Copyright (c) 2012-2018 The Elastos Open Source Project // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "MerkleBlock.h" #include "SidechainMerkleBlock.h" #include <SDK/Common/Log.h> #include <SDK/Common/Utils.h> #in...
32.363636
118
0.707865
alexpan0610
fd71e098370110c1895a3f40406f7e48a715938a
6,921
cc
C++
src/xpgom/gomwrappeddocument.cc
jberkman/gom
4bccfec5e5ada830a4c5f076dfefb9ad9baab6a5
[ "MIT" ]
null
null
null
src/xpgom/gomwrappeddocument.cc
jberkman/gom
4bccfec5e5ada830a4c5f076dfefb9ad9baab6a5
[ "MIT" ]
null
null
null
src/xpgom/gomwrappeddocument.cc
jberkman/gom
4bccfec5e5ada830a4c5f076dfefb9ad9baab6a5
[ "MIT" ]
null
null
null
/* The MIT License Copyright (c) 2008 jacob berkman <jacob@ilovegom.org> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,...
27.573705
126
0.742956
jberkman
fd724fb6359a073343a734b542d42d39b738094e
2,446
hpp
C++
3rdParty/occa/include/occa/lang/transforms/builtins/replacer.hpp
krowe-alcf/nekBench
d314ca6b942076620dd7dab8f11df97be977c5db
[ "BSD-3-Clause" ]
4
2020-02-26T19:33:16.000Z
2020-12-06T07:50:11.000Z
3rdParty/occa/include/occa/lang/transforms/builtins/replacer.hpp
krowe-alcf/nekBench
d314ca6b942076620dd7dab8f11df97be977c5db
[ "BSD-3-Clause" ]
12
2020-05-13T03:50:11.000Z
2021-09-16T16:26:06.000Z
3rdParty/occa/include/occa/lang/transforms/builtins/replacer.hpp
krowe-alcf/nekBench
d314ca6b942076620dd7dab8f11df97be977c5db
[ "BSD-3-Clause" ]
10
2020-03-02T15:55:02.000Z
2021-12-03T02:44:10.000Z
#ifndef OCCA_LANG_TRANSFORMS_BUILTINS_REPLACER_HEADER #define OCCA_LANG_TRANSFORMS_BUILTINS_REPLACER_HEADER #include <occa/lang/transforms/exprTransform.hpp> #include <occa/lang/transforms/builtins/finders.hpp> namespace occa { namespace lang { namespace transforms { class typeReplacer_t : public statemen...
26.021277
64
0.560098
krowe-alcf
fd744f644061431cb2c8391e3fba39aa45203add
668
cpp
C++
skia/docs/examples/Region_Cliperator_next.cpp
jiangkang/renderer-dog
8081732e2b4dbdb97c8d1f5e23f9e52c6362ff85
[ "MIT" ]
1
2019-03-25T15:37:48.000Z
2019-03-25T15:37:48.000Z
docs/examples/Region_Cliperator_next.cpp
bryphe/esy-skia
9810a02f28270535de10b584bffc536182224c83
[ "BSD-3-Clause" ]
1
2020-09-13T11:08:17.000Z
2020-09-13T11:08:17.000Z
skia/docs/examples/Region_Cliperator_next.cpp
jiangkang/renderer-dog
8081732e2b4dbdb97c8d1f5e23f9e52c6362ff85
[ "MIT" ]
null
null
null
// Copyright 2019 Google LLC. // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. #include "fiddle/examples.h" // HASH=3bbcc7eec19c808a8167bbcc987199f8 REG_FIDDLE(Region_Cliperator_next, 256, 256, true, 0) { void draw(SkCanvas* canvas) { SkRegion region; SkIRect ...
37.111111
100
0.64521
jiangkang
fd750b85c666698388d41f77588ed3e5607c6761
2,574
cxx
C++
test/uri/TestUriEscape.cxx
CM4all/libcommon
fba0eae725b0e7a6cf93ff0be231d90e2c0aa04e
[ "BSD-2-Clause" ]
13
2017-06-30T15:38:21.000Z
2022-03-11T06:49:17.000Z
test/uri/TestUriEscape.cxx
CM4all/libcommon
fba0eae725b0e7a6cf93ff0be231d90e2c0aa04e
[ "BSD-2-Clause" ]
2
2017-10-29T18:28:28.000Z
2020-08-20T00:43:21.000Z
test/uri/TestUriEscape.cxx
CM4all/libcommon
fba0eae725b0e7a6cf93ff0be231d90e2c0aa04e
[ "BSD-2-Clause" ]
6
2017-10-29T11:38:13.000Z
2021-10-12T00:36:38.000Z
/* * Copyright 2007-2021 CM4all GmbH * All rights reserved. * * author: Max Kellermann <mk@cm4all.com> * * 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 abo...
29.586207
70
0.699689
CM4all
fd796372c8ce6bb8de7475d673d2c038b28ba278
6,428
cc
C++
test/cpp/util/test_credentials_provider.cc
mpminardi/grpc
ce9e6eeded3b9d4d7f17a5432bc79008929cb8b7
[ "Apache-2.0" ]
9
2020-12-04T07:34:08.000Z
2022-03-07T21:10:35.000Z
test/cpp/util/test_credentials_provider.cc
mpminardi/grpc
ce9e6eeded3b9d4d7f17a5432bc79008929cb8b7
[ "Apache-2.0" ]
62
2020-02-27T00:53:36.000Z
2021-02-05T06:10:53.000Z
test/cpp/util/test_credentials_provider.cc
mpminardi/grpc
ce9e6eeded3b9d4d7f17a5432bc79008929cb8b7
[ "Apache-2.0" ]
5
2021-02-19T09:46:00.000Z
2022-03-13T17:33:34.000Z
/* * * Copyright 2016 gRPC authors. * * 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 agre...
35.318681
80
0.692906
mpminardi
fd7db75527045eac097773e054eb2f529d96de3d
7,590
hpp
C++
deps/oatpp/src/oatpp/web/protocol/http/outgoing/Response.hpp
kindlychung/mediasoup-sfu-cpp
f69d2f48f7edbf4f0c57244280a47bea985f39cf
[ "Apache-2.0" ]
5,252
2018-04-04T13:52:44.000Z
2022-03-31T13:42:28.000Z
deps/oatpp/src/oatpp/web/protocol/http/outgoing/Response.hpp
kindlychung/mediasoup-sfu-cpp
f69d2f48f7edbf4f0c57244280a47bea985f39cf
[ "Apache-2.0" ]
416
2018-04-22T14:03:25.000Z
2022-03-31T13:30:56.000Z
deps/oatpp/src/oatpp/web/protocol/http/outgoing/Response.hpp
kindlychung/mediasoup-sfu-cpp
f69d2f48f7edbf4f0c57244280a47bea985f39cf
[ "Apache-2.0" ]
1,140
2018-07-31T10:09:52.000Z
2022-03-31T19:18:13.000Z
/*************************************************************************** * * Project _____ __ ____ _ _ * ( _ ) /__\ (_ _)_| |_ _| |_ * )(_)( /(__)\ )( (_ _)(_ _) * (_____)(__)(__)(__) |_| |_| * * * Copyright 2018-present, Leoni...
37.95
138
0.667062
kindlychung
fd7fdf512126c8ab72e0761c16fac614a8a22989
1,547
cpp
C++
Zork/Creature.cpp
GBMiro/Zork
219683b488c09592d0bc94deef4457524c6df1a8
[ "MIT" ]
null
null
null
Zork/Creature.cpp
GBMiro/Zork
219683b488c09592d0bc94deef4457524c6df1a8
[ "MIT" ]
null
null
null
Zork/Creature.cpp
GBMiro/Zork
219683b488c09592d0bc94deef4457524c6df1a8
[ "MIT" ]
null
null
null
#include "Creature.h" #include "Player.h" Creature::Creature(const string& name, const string& description, int HP, int damage, int defense) : Entity(name, description) { type = creature; this->HP = HP; this->currentHP = HP; this->damage = damage; this->defense = defense; } Creature::~Creature() { } void Crea...
23.439394
112
0.634777
GBMiro
fd80831654fb1dffb9e49960032d7133e85e60db
11,003
cpp
C++
src/sksl/dsl/DSLExpression.cpp
TheRakeshPurohit/skia
817dd601f85f986a99d102de8dc42ee8638a56f9
[ "BSD-3-Clause" ]
null
null
null
src/sksl/dsl/DSLExpression.cpp
TheRakeshPurohit/skia
817dd601f85f986a99d102de8dc42ee8638a56f9
[ "BSD-3-Clause" ]
null
null
null
src/sksl/dsl/DSLExpression.cpp
TheRakeshPurohit/skia
817dd601f85f986a99d102de8dc42ee8638a56f9
[ "BSD-3-Clause" ]
null
null
null
/* * Copyright 2020 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "include/sksl/DSLExpression.h" #include "include/core/SkTypes.h" #include "include/private/SkSLDefines.h" #include "include/sksl/DSLCore.h" #include "include/sksl/DSL...
36.07541
100
0.578115
TheRakeshPurohit
fd814491c924a81cee52114c28548a74daa214c4
13,078
cpp
C++
training/supplements/src/dx100/src/joint_trajectory_action.cpp
asct/industrial_training
f69c54cad966382ce93b34138696a99abc66f444
[ "Apache-2.0" ]
null
null
null
training/supplements/src/dx100/src/joint_trajectory_action.cpp
asct/industrial_training
f69c54cad966382ce93b34138696a99abc66f444
[ "Apache-2.0" ]
null
null
null
training/supplements/src/dx100/src/joint_trajectory_action.cpp
asct/industrial_training
f69c54cad966382ce93b34138696a99abc66f444
[ "Apache-2.0" ]
null
null
null
/* * Software License Agreement (BSD License) * * Copyright (c) 2011, Southwest Research Institute * 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 co...
33.793282
145
0.678238
asct
fd8152dd6f89880d227d783a8f065606c98ae465
5,724
cxx
C++
src/composeDisplacementFields.cxx
richardbeare/simul-atrophy
8d8db3206bd32fe103e4328ff14c38eed01756d6
[ "BSD-2-Clause" ]
7
2017-03-28T14:58:20.000Z
2020-11-29T06:08:24.000Z
src/composeDisplacementFields.cxx
richardbeare/simul-atrophy
8d8db3206bd32fe103e4328ff14c38eed01756d6
[ "BSD-2-Clause" ]
4
2016-08-26T14:37:32.000Z
2020-02-13T09:14:29.000Z
src/composeDisplacementFields.cxx
richardbeare/simul-atrophy
8d8db3206bd32fe103e4328ff14c38eed01756d6
[ "BSD-2-Clause" ]
3
2017-02-14T08:15:31.000Z
2020-02-15T03:43:25.000Z
//--------------------------- Compose all the input displacement fields -----------// /* Options include : --numOfFields number of fields to compose. --inPrefix inputFileBase : Filenames to be composed should be in xxNyy format. Provide xx to this argument. --inPostfix inputExt : yy (...
44.030769
147
0.674004
richardbeare
fd826f69d29d827a31d99d75a294825951f3a25d
100,699
cxx
C++
src/translation/Parser.cxx
CM4all/libcommon
fba0eae725b0e7a6cf93ff0be231d90e2c0aa04e
[ "BSD-2-Clause" ]
13
2017-06-30T15:38:21.000Z
2022-03-11T06:49:17.000Z
src/translation/Parser.cxx
CM4all/libcommon
fba0eae725b0e7a6cf93ff0be231d90e2c0aa04e
[ "BSD-2-Clause" ]
2
2017-10-29T18:28:28.000Z
2020-08-20T00:43:21.000Z
src/translation/Parser.cxx
CM4all/libcommon
fba0eae725b0e7a6cf93ff0be231d90e2c0aa04e
[ "BSD-2-Clause" ]
6
2017-10-29T11:38:13.000Z
2021-10-12T00:36:38.000Z
/* * Copyright 2007-2021 CM4all GmbH * All rights reserved. * * author: Max Kellermann <mk@cm4all.com> * * 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 abo...
26.12166
99
0.747922
CM4all
fd835969c4cb9bef93e515b2d29662f1f6643f98
4,773
cpp
C++
src/rendering/nodes/CullingNode.cpp
Shimmen/ArkoseRenderer
d39e1b3d5f5b669370b8aeed5cd1cfada5216763
[ "MIT" ]
7
2020-11-02T22:27:27.000Z
2022-01-11T04:25:48.000Z
src/rendering/nodes/CullingNode.cpp
Shimmen/ArkoseRenderer
d39e1b3d5f5b669370b8aeed5cd1cfada5216763
[ "MIT" ]
null
null
null
src/rendering/nodes/CullingNode.cpp
Shimmen/ArkoseRenderer
d39e1b3d5f5b669370b8aeed5cd1cfada5216763
[ "MIT" ]
2
2020-12-09T03:40:05.000Z
2021-09-14T03:12:40.000Z
#include "CullingNode.h" #include "SceneNode.h" #include "geometry/Frustum.h" #include "utility/Logging.h" #include "utility/Profiling.h" #include <imgui.h> // Shared shader headers using uint = uint32_t; #include "IndirectData.h" #include "LightData.h" CullingNode::CullingNode(Scene& scene) : m_scene(scene) { }...
54.862069
174
0.662057
Shimmen
fd873b7017c2da82d0993c9d7a5275bda9ca1c29
2,196
cpp
C++
Source/Runtime/Private/Scripting/Components/LuaModule_ComHingeJoint.cpp
ValtoForks/BlueshiftEngine
a6684aa3bf9b4bd22d5cc4d4b6647fea6b074fee
[ "Apache-2.0" ]
410
2017-03-03T08:56:54.000Z
2022-03-29T07:18:46.000Z
Source/Runtime/Private/Scripting/Components/LuaModule_ComHingeJoint.cpp
kbb-uran/BlueshiftEngine
beb690093ca643c38437831c93581e29686ff508
[ "Apache-2.0" ]
31
2017-03-05T11:37:44.000Z
2021-09-15T21:28:34.000Z
Source/Runtime/Private/Scripting/Components/LuaModule_ComHingeJoint.cpp
kbb-uran/BlueshiftEngine
beb690093ca643c38437831c93581e29686ff508
[ "Apache-2.0" ]
48
2017-03-18T05:28:21.000Z
2022-03-05T12:27:17.000Z
// Copyright(c) 2017 POLYGONTEK // // 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 i...
44.816327
76
0.747723
ValtoForks
fd8775e76430febd86be567ee0fa7f9f4ad3036f
5,594
cxx
C++
model_server/obj/src/tree_time.cxx
kit-transue/software-emancipation-discover
bec6f4ef404d72f361d91de954eae9a3bd669ce3
[ "BSD-2-Clause" ]
2
2015-11-24T03:31:12.000Z
2015-11-24T16:01:57.000Z
model_server/obj/src/tree_time.cxx
radtek/software-emancipation-discover
bec6f4ef404d72f361d91de954eae9a3bd669ce3
[ "BSD-2-Clause" ]
null
null
null
model_server/obj/src/tree_time.cxx
radtek/software-emancipation-discover
bec6f4ef404d72f361d91de954eae9a3bd669ce3
[ "BSD-2-Clause" ]
1
2019-05-19T02:26:08.000Z
2019-05-19T02:26:08.000Z
/************************************************************************* * Copyright (c) 2015, Synopsys, Inc. * * All rights reserved. * * * * Redistribution and...
31.077778
124
0.575617
kit-transue
fd89b6628bd423088f7f2f3fc81e295ea971659f
1,084
cpp
C++
Project/PanelScene.cpp
JaimeBea/UPCMasterEngine
5989dcb77af734993e424d0a40289d922b356519
[ "MIT" ]
null
null
null
Project/PanelScene.cpp
JaimeBea/UPCMasterEngine
5989dcb77af734993e424d0a40289d922b356519
[ "MIT" ]
null
null
null
Project/PanelScene.cpp
JaimeBea/UPCMasterEngine
5989dcb77af734993e424d0a40289d922b356519
[ "MIT" ]
null
null
null
#include "PanelScene.h" #include "Globals.h" #include "Application.h" #include "ModuleEditor.h" #include "ModuleCamera.h" #include "ModuleRender.h" #include "imgui.h" #include "Math/float3x3.h" #include "SDL_mouse.h" #include "SDL_scancode.h" #include "Leaks.h" PanelScene::PanelScene() : Panel("Scene", true) {} vo...
23.565217
90
0.685424
JaimeBea
fd8cf0a29f9abe7fc9ec982b2cb35faa3b85a33e
13,695
cpp
C++
src/3d/qgsrulebased3drenderer.cpp
dyna-mis/Hilabeling
cb7d5d4be29624a20c8a367162dbc6fd779b2b52
[ "MIT" ]
null
null
null
src/3d/qgsrulebased3drenderer.cpp
dyna-mis/Hilabeling
cb7d5d4be29624a20c8a367162dbc6fd779b2b52
[ "MIT" ]
null
null
null
src/3d/qgsrulebased3drenderer.cpp
dyna-mis/Hilabeling
cb7d5d4be29624a20c8a367162dbc6fd779b2b52
[ "MIT" ]
1
2021-12-25T08:40:30.000Z
2021-12-25T08:40:30.000Z
/*************************************************************************** qgsrulebased3drenderer.cpp -------------------------------------- Date : January 2019 Copyright : (C) 2019 by Martin Dobias Email : wonder dot sk at gmail dot com ***************************...
28.892405
200
0.669003
dyna-mis
fd8e7a8949b4f9c74c8d28a1fc6f497742ad0116
24,678
cpp
C++
tests/functional/olp-cpp-sdk-dataservice-read/DataserviceReadVersionedLayerClientTest.cpp
fermeise/here-data-sdk-cpp
e0ebd7bd74463fa3958eb0447b90227a4f322643
[ "Apache-2.0" ]
21
2019-07-03T07:26:52.000Z
2019-09-04T08:35:07.000Z
tests/functional/olp-cpp-sdk-dataservice-read/DataserviceReadVersionedLayerClientTest.cpp
fermeise/here-data-sdk-cpp
e0ebd7bd74463fa3958eb0447b90227a4f322643
[ "Apache-2.0" ]
639
2019-09-13T17:14:24.000Z
2020-05-13T11:49:14.000Z
tests/functional/olp-cpp-sdk-dataservice-read/DataserviceReadVersionedLayerClientTest.cpp
fermeise/here-data-sdk-cpp
e0ebd7bd74463fa3958eb0447b90227a4f322643
[ "Apache-2.0" ]
21
2020-05-14T15:32:28.000Z
2022-03-15T13:52:33.000Z
/* * Copyright (C) 2019-2021 HERE Europe B.V. * * 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...
37.561644
80
0.702569
fermeise
fd8e839d79ce0755493098e8bb0a7fc04e6f71e2
1,996
cpp
C++
tests/CommandTest.cpp
Superbition/Bakup-Agent
ed6beba6e14bdf7c63faef1ba70a2590419fa505
[ "Apache-2.0" ]
5
2020-03-06T13:34:16.000Z
2021-04-12T15:34:36.000Z
tests/CommandTest.cpp
Superbition/Bakup-Agent
ed6beba6e14bdf7c63faef1ba70a2590419fa505
[ "Apache-2.0" ]
2
2020-03-26T18:17:47.000Z
2021-05-30T16:02:43.000Z
tests/CommandTest.cpp
Superbition/Bakup-Agent
ed6beba6e14bdf7c63faef1ba70a2590419fa505
[ "Apache-2.0" ]
2
2021-07-07T05:53:11.000Z
2021-07-30T16:46:02.000Z
#include <gtest/gtest.h> #include <Command.h> #include <Agent.h> class CommandTest : public ::testing::Test { protected: CommandTest() { this->commandString = "echo \"Hello World\""; this->commandValue = "Hello World"; } public: string commandString; ...
25.922078
81
0.690381
Superbition
fd8e8c13da4507c2aee6a8907ac6a1719538caa8
5,630
cpp
C++
src/importer/onnx/ops/batchnorm.cpp
xhuohai/nncase
cf7921c273c7446090939c64f57ef783a62bf29c
[ "Apache-2.0" ]
510
2018-12-29T06:49:36.000Z
2022-03-30T08:36:29.000Z
src/importer/onnx/ops/batchnorm.cpp
xhuohai/nncase
cf7921c273c7446090939c64f57ef783a62bf29c
[ "Apache-2.0" ]
459
2019-02-17T13:31:29.000Z
2022-03-31T05:55:38.000Z
src/importer/onnx/ops/batchnorm.cpp
xhuohai/nncase
cf7921c273c7446090939c64f57ef783a62bf29c
[ "Apache-2.0" ]
155
2019-04-16T08:43:24.000Z
2022-03-21T07:27:26.000Z
/* Copyright 2020 Alexey Chernov <4ernov@gmail.com> * * 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 applicabl...
41.397059
182
0.671936
xhuohai
fd8f93141e43de333e55df704da361cb5f147c11
5,673
cpp
C++
rd-cpp/src/rd_core_cpp/src/test/cases/ViewableSetTest.cpp
yvvan/rd
87ce10eb012af398689fe0a5b9100a2ef8edfdcc
[ "Apache-2.0" ]
null
null
null
rd-cpp/src/rd_core_cpp/src/test/cases/ViewableSetTest.cpp
yvvan/rd
87ce10eb012af398689fe0a5b9100a2ef8edfdcc
[ "Apache-2.0" ]
null
null
null
rd-cpp/src/rd_core_cpp/src/test/cases/ViewableSetTest.cpp
yvvan/rd
87ce10eb012af398689fe0a5b9100a2ef8edfdcc
[ "Apache-2.0" ]
1
2020-06-02T12:08:09.000Z
2020-06-02T12:08:09.000Z
#include <gtest/gtest.h> #include "reactive/ViewableSet.h" #include "test_util.h" using namespace rd; TEST (viewable_set, advise) { std::unique_ptr<IViewableSet<int>> set = std::make_unique<ViewableSet<int>>(); std::vector<int> logAdvise; std::vector<int> logView1; std::vector<int> logView2; LifetimeDefinitio...
25.554054
83
0.623656
yvvan
fd9047123c4345707dee2d51554214c76598917b
4,032
cpp
C++
test/sql/parallelism/interquery/test_concurrentappend.cpp
littlelittlehorse/duckdb
22ba76e4151bb3b0556e44cef3fcf6fb64747364
[ "MIT" ]
null
null
null
test/sql/parallelism/interquery/test_concurrentappend.cpp
littlelittlehorse/duckdb
22ba76e4151bb3b0556e44cef3fcf6fb64747364
[ "MIT" ]
1
2022-03-20T03:34:29.000Z
2022-03-20T03:34:29.000Z
test/sql/parallelism/interquery/test_concurrentappend.cpp
littlelittlehorse/duckdb
22ba76e4151bb3b0556e44cef3fcf6fb64747364
[ "MIT" ]
null
null
null
#include "catch.hpp" #include "duckdb/common/value_operations/value_operations.hpp" #include "test_helpers.hpp" #include <atomic> #include <thread> using namespace duckdb; using namespace std; static constexpr int CONCURRENT_APPEND_THREAD_COUNT = 10; static constexpr int CONCURRENT_APPEND_INSERT_ELEMENTS = 1000; TE...
35.06087
115
0.730655
littlelittlehorse
fd9112c20228134f8c469e52cdd63dc99722b380
2,205
cc
C++
Fujitsu/benchmarks/resnet/implementations/mxnet/3rdparty/tvm/src/runtime/sgx/trusted/threading_backend.cc
mengkai94/training_results_v0.6
43dc3e250f8da47b5f8833197d74cb8cf1004fc9
[ "Apache-2.0" ]
64
2021-05-02T14:42:34.000Z
2021-05-06T01:35:03.000Z
src/runtime/sgx/trusted/threading_backend.cc
clhne/tvm
d59320c764bd09474775e1b292f3c05c27743d24
[ "Apache-2.0" ]
23
2019-07-29T05:21:52.000Z
2020-08-31T18:51:42.000Z
src/runtime/sgx/trusted/threading_backend.cc
clhne/tvm
d59320c764bd09474775e1b292f3c05c27743d24
[ "Apache-2.0" ]
51
2019-07-12T05:10:25.000Z
2021-07-28T16:19:06.000Z
/*! * Copyright (c) 2018 by Contributors * \file sgx/threading_backend.cc * \brief SGX threading backend */ #include <tvm/runtime/threading_backend.h> #include <dmlc/logging.h> #include <sgx_edger8r.h> #include <sgx_trts.h> #include <atomic> #include "runtime.h" #ifndef TVM_SGX_MAX_CONCURRENCY #define TVM_SGX_MAX...
27.911392
83
0.708844
mengkai94
fd9430f26909f35ddaddcaf069507d03370fe4df
675
cpp
C++
OJ/GDUT/C.cpp
Tomotoes/Algorithm
8291a7ed498a0a9d763e7e50fffacf78db101a7e
[ "Unlicense" ]
6
2018-09-06T06:46:43.000Z
2022-03-17T11:34:56.000Z
OJ/GDUT/C.cpp
Tomotoes/Algorithm
8291a7ed498a0a9d763e7e50fffacf78db101a7e
[ "Unlicense" ]
4
2020-04-18T02:32:10.000Z
2020-04-18T04:03:56.000Z
OJ/GDUT/C.cpp
Tomotoes/Algorithm
8291a7ed498a0a9d763e7e50fffacf78db101a7e
[ "Unlicense" ]
1
2020-02-10T18:57:34.000Z
2020-02-10T18:57:34.000Z
#include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> using namespace std; const int mod = 10007; const int N = 51; int f[N]; void solve() { f[0] = 1; for(int i = 1; i < N; ++ i) { f[i] = f[i-1]; if(i > 1) f[i] += f[i-2]; if(i > 2) f[i] +=...
15
34
0.376296
Tomotoes
fd9744aa80a53fca469eddd5d2a8be0b454836bb
597
cc
C++
node_modules/wiring-pi/src/extensions/pcf8591.cc
wadooddaoud/Gast_Iot_Sensor_Development
3d923cc0632e380da7f0e960d74df934735b8fea
[ "MIT" ]
2
2017-04-11T11:07:03.000Z
2021-11-03T16:19:19.000Z
node_modules/wiring-pi/src/extensions/pcf8591.cc
amd940/piDisplay
b101c2d61645dc1d49680aeb4464b1f77b9f9ce4
[ "MIT" ]
null
null
null
node_modules/wiring-pi/src/extensions/pcf8591.cc
amd940/piDisplay
b101c2d61645dc1d49680aeb4464b1f77b9f9ce4
[ "MIT" ]
null
null
null
#include "pcf8591.h" #include <pcf8591.h> DECLARE(pcf8591Setup); // Func : int pcf8591Setup(const int pinBase, const int i2cAddress) IMPLEMENT(pcf8591Setup) { SCOPE_OPEN(); SET_ARGUMENT_NAME(0, pinBase); SET_ARGUMENT_NAME(1, i2cAddress); CHECK_ARGUMENTS_LENGTH_EQUAL(2); CHECK_ARGUMENT_TYPE_INT32(0...
20.586207
67
0.740369
wadooddaoud
fd97e21efc889fb8d4db2a2c904ed4586051092b
17,866
cpp
C++
test.cpp
chessai/pltest
c5d821e86cfaac88d4905d5d5170026b66706d2c
[ "MIT" ]
1
2022-01-24T22:39:46.000Z
2022-01-24T22:39:46.000Z
test.cpp
chessai/pltest
c5d821e86cfaac88d4905d5d5170026b66706d2c
[ "MIT" ]
null
null
null
test.cpp
chessai/pltest
c5d821e86cfaac88d4905d5d5170026b66706d2c
[ "MIT" ]
1
2022-01-24T03:52:32.000Z
2022-01-24T03:52:32.000Z
#include "souffle/CompiledSouffle.h" extern "C" { } namespace souffle { static const RamDomain RAM_BIT_SHIFT_MASK = RAM_DOMAIN_SIZE - 1; struct t_btree_ii__0_1__11 { using t_tuple = Tuple<RamDomain, 2>; struct t_comparator_0{ int operator()(const t_tuple& a, const t_tuple& b) const { return (ramBitCast<RamSigned>...
37.612632
394
0.696463
chessai
fd9809d81c6462905a3e2c35553c4a796fe85aad
110
hpp
C++
src/Ball.hpp
sharkwouter/sdl-gamejam
0a376fe69f1cf21c5509e2c29a89ab107c2bc1b3
[ "MIT" ]
null
null
null
src/Ball.hpp
sharkwouter/sdl-gamejam
0a376fe69f1cf21c5509e2c29a89ab107c2bc1b3
[ "MIT" ]
null
null
null
src/Ball.hpp
sharkwouter/sdl-gamejam
0a376fe69f1cf21c5509e2c29a89ab107c2bc1b3
[ "MIT" ]
null
null
null
#ifndef BALL_HPP #define BALL_HPP struct Ball { int x; int y; int radius; }; #endif // BALL_HPP
10
18
0.618182
sharkwouter
fd9aad3497be9e9e744748a5ffb9e075298fbd87
1,372
cpp
C++
games/saloon/impl/saloon.cpp
JackLimes/Joueur.cpp
d7dc45b5f95d9b3fc8c9cb846d63d6f44c83a61b
[ "MIT" ]
null
null
null
games/saloon/impl/saloon.cpp
JackLimes/Joueur.cpp
d7dc45b5f95d9b3fc8c9cb846d63d6f44c83a61b
[ "MIT" ]
null
null
null
games/saloon/impl/saloon.cpp
JackLimes/Joueur.cpp
d7dc45b5f95d9b3fc8c9cb846d63d6f44c83a61b
[ "MIT" ]
null
null
null
// DO NOT MODIFY THIS FILE // Never try to directly create an instance of this class, or modify its member variables. // This contains implementation details, written by code, and only useful to code #include "saloon.hpp" #include "../../../joueur/src/register.hpp" #include "../../../joueur/src/exceptions.hpp" names...
22.491803
90
0.612245
JackLimes