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
104a22b0f1934b314928702965216b76141ca16f
2,975
cpp
C++
src/third_party/mozjs-45/extract/js/src/jit/x86/Assembler-x86.cpp
SunguckLee/real-mongodb
fef0e44fafc6d3709a84101327e7d2f54dd18d88
[ "Apache-2.0" ]
4
2018-02-06T01:53:12.000Z
2018-02-20T01:47:36.000Z
src/third_party/mozjs-45/extract/js/src/jit/x86/Assembler-x86.cpp
SunguckLee/real-mongodb
fef0e44fafc6d3709a84101327e7d2f54dd18d88
[ "Apache-2.0" ]
null
null
null
src/third_party/mozjs-45/extract/js/src/jit/x86/Assembler-x86.cpp
SunguckLee/real-mongodb
fef0e44fafc6d3709a84101327e7d2f54dd18d88
[ "Apache-2.0" ]
3
2018-02-06T01:53:18.000Z
2021-07-28T09:48:15.000Z
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * vim: set ts=8 sts=4 et sw=4 tw=99: * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/....
28.605769
91
0.646723
SunguckLee
104a327f80da397e5fb8c252289e938fc8389797
8,166
cpp
C++
hardware/test/cpu_instruction_set_test.cpp
vinders/pandora_toolbox
f32e301ebaa2b281a1ffc3d6d0c556091420520a
[ "MIT" ]
2
2020-11-19T03:23:35.000Z
2021-02-25T03:34:40.000Z
hardware/test/cpu_instruction_set_test.cpp
vinders/pandora_toolbox
f32e301ebaa2b281a1ffc3d6d0c556091420520a
[ "MIT" ]
null
null
null
hardware/test/cpu_instruction_set_test.cpp
vinders/pandora_toolbox
f32e301ebaa2b281a1ffc3d6d0c556091420520a
[ "MIT" ]
null
null
null
/******************************************************************************* MIT License Copyright (c) 2021 Romain Vinders 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, ...
48.035294
128
0.75447
vinders
104b88ded841f8ea686069bd5c9fc4a560c0315a
1,156
cpp
C++
huawei/binarysearch/binarysearch/main.cpp
RainChang/My_ACM_Exercises
36872bdcb49cbb3eebde4bb9c7d154d057775b72
[ "Apache-2.0" ]
1
2017-03-16T09:38:48.000Z
2017-03-16T09:38:48.000Z
huawei/binarysearch/binarysearch/main.cpp
RainChang/My_ACM_Exercises
36872bdcb49cbb3eebde4bb9c7d154d057775b72
[ "Apache-2.0" ]
null
null
null
huawei/binarysearch/binarysearch/main.cpp
RainChang/My_ACM_Exercises
36872bdcb49cbb3eebde4bb9c7d154d057775b72
[ "Apache-2.0" ]
null
null
null
// // main.cpp // binarysearch // // Created by Rain on 12/04/2017. // Copyright © 2017 Rain. All rights reserved. // #include <iostream> #include <vector> using namespace std; int getPos(vector<int> A, int n, int val) { // write code here vector<int>count(10000,0); for(int i=0;i<n;i++)...
20.280702
47
0.390138
RainChang
104c4a39144277fd702a673cd41acae54291cf78
426
cpp
C++
level1/p02_isPrime/_isPrime.cpp
KenNN99/c2019
a668b7aa67187c8ef44bdefe5e7813d665084ff3
[ "MIT" ]
null
null
null
level1/p02_isPrime/_isPrime.cpp
KenNN99/c2019
a668b7aa67187c8ef44bdefe5e7813d665084ff3
[ "MIT" ]
null
null
null
level1/p02_isPrime/_isPrime.cpp
KenNN99/c2019
a668b7aa67187c8ef44bdefe5e7813d665084ff3
[ "MIT" ]
null
null
null
#include <stdio.h> #include <stdlib.h> void NotPrime(); int main() { int i; scanf("%d", &i); if (i == 1) { NotPrime(); } for (int n = 2; n*n <= i; n++) { if (i%n == 0) { NotPrime(); return 0; } } printf("This is a Prime."); system("pause"); return 0; } void NotPrime() { printf("This is not ...
11.833333
48
0.528169
KenNN99
104c691c27d95e1ba124b9aec6463c2cd4d733d0
430
hpp
C++
NWNXLib/API/Mac/API/Schema.hpp
Qowyn/unified
149d0b7670a9d156e64555fe0bd7715423db4c2a
[ "MIT" ]
null
null
null
NWNXLib/API/Mac/API/Schema.hpp
Qowyn/unified
149d0b7670a9d156e64555fe0bd7715423db4c2a
[ "MIT" ]
null
null
null
NWNXLib/API/Mac/API/Schema.hpp
Qowyn/unified
149d0b7670a9d156e64555fe0bd7715423db4c2a
[ "MIT" ]
null
null
null
#pragma once #include <cstdint> #include "Hash.hpp" namespace NWNXLib { namespace API { // Forward class declarations (defined in the source file) struct Table; struct Schema { int32_t schema_cookie; int32_t iGeneration; Hash tblHash; Hash idxHash; Hash trigHash; Hash fkeyHash; Table* ...
13.4375
58
0.686047
Qowyn
104d77282d146d7a6193a61bb24274bc0bd3ca6b
5,540
cpp
C++
test/test_pex.cpp
svn2github/libtorrent-rasterbar-RC_0_16
c2c8dc24c82816c336d7c45c3ae7a3ab3821077a
[ "BSL-1.0", "BSD-3-Clause" ]
null
null
null
test/test_pex.cpp
svn2github/libtorrent-rasterbar-RC_0_16
c2c8dc24c82816c336d7c45c3ae7a3ab3821077a
[ "BSL-1.0", "BSD-3-Clause" ]
1
2019-02-03T09:54:54.000Z
2019-02-03T09:54:54.000Z
test/test_pex.cpp
svn2github/libtorrent-rasterbar-RC_0_16
c2c8dc24c82816c336d7c45c3ae7a3ab3821077a
[ "BSL-1.0", "BSD-3-Clause" ]
null
null
null
/* Copyright (c) 2008, Arvid Norberg 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 conditions and the f...
32.588235
96
0.718412
svn2github
104dd44c38c2bb09a043d6c92870c7c210012d1f
29,388
cpp
C++
Engine/source/Alux3D/shotgunprojectile.cpp
fr1tz/alux3d
249a3b51751ce3184d52879b481f83eabe89e7e3
[ "MIT" ]
null
null
null
Engine/source/Alux3D/shotgunprojectile.cpp
fr1tz/alux3d
249a3b51751ce3184d52879b481f83eabe89e7e3
[ "MIT" ]
null
null
null
Engine/source/Alux3D/shotgunprojectile.cpp
fr1tz/alux3d
249a3b51751ce3184d52879b481f83eabe89e7e3
[ "MIT" ]
1
2018-10-26T03:18:22.000Z
2018-10-26T03:18:22.000Z
// Copyright information can be found in the file named COPYING // located in the root directory of this distribution. #include "platform/platform.h" #include "Alux3D/shotgunprojectile.h" #include "scene/sceneRenderState.h" #include "scene/sceneManager.h" #include "lighting/lightInfo.h" #include "lighting/lightManage...
23.757478
132
0.671124
fr1tz
104f273a3cd6bfc289799d35170c6753a04d80e8
2,026
hpp
C++
src/ME136/SensorCalibration.hpp
lassepe/ME292B-UserCode-Group14
a6a637340439ca75b129dc9dd6c560558c22e2ff
[ "BSD-3-Clause" ]
null
null
null
src/ME136/SensorCalibration.hpp
lassepe/ME292B-UserCode-Group14
a6a637340439ca75b129dc9dd6c560558c22e2ff
[ "BSD-3-Clause" ]
null
null
null
src/ME136/SensorCalibration.hpp
lassepe/ME292B-UserCode-Group14
a6a637340439ca75b129dc9dd6c560558c22e2ff
[ "BSD-3-Clause" ]
null
null
null
#pragma once #include "MainLoopTypes.hpp" #include "Vec3f.hpp" class SensorCalibration { public: /** * @brief SensorCalibration the constructor for this class. This class wraps away * the calibration routine. The user can specify over how many iterations he * wants to calibrate; * @param measurementsTo...
31.169231
83
0.698914
lassepe
10506bb2f6449ce70be8d9cd41f032a088a927da
1,129
hpp
C++
include/dtc/cell/cell.hpp
tsung-wei-huang/DtCraft
80cc9e1195adc0026107814243401a1fc47b5be2
[ "MIT" ]
69
2019-03-16T20:13:26.000Z
2022-03-24T14:12:19.000Z
include/dtc/cell/cell.hpp
Tsung-Wei/DtCraft
80cc9e1195adc0026107814243401a1fc47b5be2
[ "MIT" ]
12
2017-12-02T05:38:30.000Z
2019-02-08T11:16:12.000Z
include/dtc/cell/cell.hpp
Tsung-Wei/DtCraft
80cc9e1195adc0026107814243401a1fc47b5be2
[ "MIT" ]
12
2019-04-13T16:27:29.000Z
2022-01-07T14:42:46.000Z
/****************************************************************************** * * * Copyright (c) 2018, Tsung-Wei Huang, Chun-Xun Lin, and Martin D. F. Wong, * * University of Illinois at Urbana-Champaign (UIUC), IL, USA. * ...
49.086957
80
0.355182
tsung-wei-huang
10520c36a175ae4aceb9a500270a9bbd45dfafbb
170,457
cc
C++
third_party/blink/renderer/core/html/media/html_media_element.cc
DamieFC/chromium
54ce2d3c77723697efd22cfdb02aea38f9dfa25c
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
1
2020-10-18T02:33:40.000Z
2020-10-18T02:33:40.000Z
third_party/blink/renderer/core/html/media/html_media_element.cc
DamieFC/chromium
54ce2d3c77723697efd22cfdb02aea38f9dfa25c
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
3
2021-05-17T16:28:52.000Z
2021-05-21T22:42:22.000Z
third_party/blink/renderer/core/html/media/html_media_element.cc
DamieFC/chromium
54ce2d3c77723697efd22cfdb02aea38f9dfa25c
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
null
null
null
/* * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple 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: * 1. Redistributions of source code must retain the above copyright ...
36.244312
96
0.722065
DamieFC
10523a3eaec88d2cc899f57e981f7d4acd7a9853
9,250
cpp
C++
zurch_barzer.cpp
barzerman/barzer
3211507d5ed0294ee77986f58d781a2fa4142e0d
[ "MIT" ]
1
2018-10-22T12:53:13.000Z
2018-10-22T12:53:13.000Z
zurch_barzer.cpp
barzerman/barzer
3211507d5ed0294ee77986f58d781a2fa4142e0d
[ "MIT" ]
null
null
null
zurch_barzer.cpp
barzerman/barzer
3211507d5ed0294ee77986f58d781a2fa4142e0d
[ "MIT" ]
null
null
null
#include <zurch_barzer.h> #include <zurch_docidx.h> #include <zurch_settings.h> /// Copyright Barzer LLC 2012 /// Code is property Barzer for authorized use only /// ////// THIS IS A TEMPLATE forcustomized XML PARSER ///// clone it into a new file and fill out the TAGS (search for XXX) #include <iostream> #includ...
29.742765
143
0.617189
barzerman
10535a22ff7c6548667fedb088a3596c5bb22ef7
787
cpp
C++
windows/advcore/gdiplus/test/functest/chalfpixel.cpp
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
windows/advcore/gdiplus/test/functest/chalfpixel.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
windows/advcore/gdiplus/test/functest/chalfpixel.cpp
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
/******************************Module*Header*******************************\ * Module Name: CAntialias.cpp * * This file contains the code to support the functionality test harness * for GDI+. This includes menu options and calling the appropriate * functions for execution. * * Created: 05-May-2000 - Jeff Vezi...
25.387097
77
0.579416
npocmaka
105390b9e6ff92441f266aad23094bdf083e5570
9,997
cpp
C++
winsdkfb-master/samples/SDKCppUnit/SDKCppUnit.Shared/TestRunner.cpp
NestedWorld/NestedWorld-Windows-10
96e9e8d8b97199bc1d9ce3f8cd5133e63db513a5
[ "MIT" ]
null
null
null
winsdkfb-master/samples/SDKCppUnit/SDKCppUnit.Shared/TestRunner.cpp
NestedWorld/NestedWorld-Windows-10
96e9e8d8b97199bc1d9ce3f8cd5133e63db513a5
[ "MIT" ]
null
null
null
winsdkfb-master/samples/SDKCppUnit/SDKCppUnit.Shared/TestRunner.cpp
NestedWorld/NestedWorld-Windows-10
96e9e8d8b97199bc1d9ce3f8cd5133e63db513a5
[ "MIT" ]
null
null
null
//****************************************************************************** // // Copyright (c) 2015 Microsoft Corporation. All rights reserved. // // This code is licensed under the MIT License (MIT). // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LI...
26.946092
93
0.607582
NestedWorld
1054666e5dc6a9be623b69119f9add414b7ad7d6
3,498
cpp
C++
src/src/fractals/julia/Julia.cpp
migregal/bmstu_iu7_cg_course
8ec2bb5c319328d9b0de307c1a8236b6b5188136
[ "MIT" ]
null
null
null
src/src/fractals/julia/Julia.cpp
migregal/bmstu_iu7_cg_course
8ec2bb5c319328d9b0de307c1a8236b6b5188136
[ "MIT" ]
null
null
null
src/src/fractals/julia/Julia.cpp
migregal/bmstu_iu7_cg_course
8ec2bb5c319328d9b0de307c1a8236b6b5188136
[ "MIT" ]
null
null
null
#include <fractals/julia/Julia.h> #include <algorithm> #include <cmath> #include <math/Vector.h> #include <QDebug> #define MAX_RAYCAST_STEP 128 namespace CGCP::fractal { float JuliaParametrized::raycast( math::Vector3 const &ro, math::Vector3 const &rd, math::Vector4 &resco...
33.314286
107
0.445969
migregal
1054d6d9d8f0cb216d372576bf8147d76d19b906
3,646
cpp
C++
kernel/node/Directory.cpp
busybox11/skift
778ae3a0dc5ac29d7de02200c49d3533e47854c5
[ "MIT" ]
2
2020-07-14T21:16:54.000Z
2020-10-08T08:40:47.000Z
kernel/node/Directory.cpp
busybox11/skift
778ae3a0dc5ac29d7de02200c49d3533e47854c5
[ "MIT" ]
null
null
null
kernel/node/Directory.cpp
busybox11/skift
778ae3a0dc5ac29d7de02200c49d3533e47854c5
[ "MIT" ]
null
null
null
#include <libsystem/Logger.h> #include <libsystem/Result.h> #include <libsystem/core/CString.h> #include "kernel/node/Directory.h" #include "kernel/node/Handle.h" static Result directory_open(FsDirectory *node, FsHandle *handle) { DirectoryListing *listing = (DirectoryListing *)malloc(sizeof(DirectoryListing) + ...
24.469799
134
0.657707
busybox11
10550b46ecac278de7d8e133f356940e447e8b84
3,291
cc
C++
FWCore/Framework/src/HCTypeTag.cc
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
852
2015-01-11T21:03:51.000Z
2022-03-25T21:14:00.000Z
FWCore/Framework/src/HCTypeTag.cc
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
30,371
2015-01-02T00:14:40.000Z
2022-03-31T23:26:05.000Z
FWCore/Framework/src/HCTypeTag.cc
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
3,240
2015-01-02T05:53:18.000Z
2022-03-31T17:24:21.000Z
#ifndef Framework_HCTypeTag_icc #define Framework_HCTypeTag_icc // -*- C++ -*- // // Package: HeteroContainer // Module: HCTypeTag // // Description: <one line class summary> // // Implementation: // <Notes on implementation> // // Author: Chris D. Jones // Created: Sun Sep 20 15:27:25 EDT 1998 //...
24.377778
121
0.613187
ckamtsikis
10563e7a19863fd6b7c1c62240c38c3222a06c1f
1,488
cpp
C++
src/main_collector.cpp
despargy/KukaImplementation-kinetic
3a9ab106b117acfc6478fbf3e60e49b7e94b2722
[ "MIT" ]
1
2021-08-21T12:49:27.000Z
2021-08-21T12:49:27.000Z
src/main_collector.cpp
despargy/KukaImplementation-kinetic
3a9ab106b117acfc6478fbf3e60e49b7e94b2722
[ "MIT" ]
null
null
null
src/main_collector.cpp
despargy/KukaImplementation-kinetic
3a9ab106b117acfc6478fbf3e60e49b7e94b2722
[ "MIT" ]
null
null
null
#include <ros/ros.h> #include <thread> // #include <autharl_core/controller/gravity_compensation.h> // #include <autharl_core/robot/robot_sim.h> #include <autharl_core> #include <lwr_robot/robot.h> // // #include <autharl_core/viz/ros_state_publisher.h> // #include <autharl_core/robot/ros_model.h> #include <kuka_imp...
28.075472
104
0.719758
despargy
105733a2cf1f9575daf8c3ca8fe0d4a164591a0b
2,245
cc
C++
net/spdy/spdy_protocol_test.cc
iplo/Chain
8bc8943d66285d5258fffc41bed7c840516c4422
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
231
2015-01-08T09:04:44.000Z
2021-12-30T03:03:10.000Z
net/spdy/spdy_protocol_test.cc
JasonEric/chromium
c7361d39be8abd1574e6ce8957c8dbddd4c6ccf7
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
1
2017-02-14T21:55:58.000Z
2017-02-14T21:55:58.000Z
net/spdy/spdy_protocol_test.cc
JasonEric/chromium
c7361d39be8abd1574e6ce8957c8dbddd4c6ccf7
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
268
2015-01-21T05:53:28.000Z
2022-03-25T22:09:01.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 "net/spdy/spdy_protocol.h" #include <limits> #include "base/basictypes.h" #include "base/memory/scoped_ptr.h" #include "net/spdy/spdy_bitma...
27.716049
73
0.703786
iplo
105793bb3faf489b211eac8900a8075c54b92406
1,179
cpp
C++
SISASG/Source/genericEntity.cpp
Ristellise/JUMP-Sprint
f664270aebabec60fc527f7e875319885bc43749
[ "WTFPL" ]
2
2019-02-12T00:34:01.000Z
2019-02-12T00:36:27.000Z
SISASG/Source/genericEntity.cpp
Ristellise/JUMP-Sprint
f664270aebabec60fc527f7e875319885bc43749
[ "WTFPL" ]
22
2019-02-11T04:53:50.000Z
2019-02-27T05:38:06.000Z
SISASG/Source/genericEntity.cpp
Ristellise/JUMP-Sprint
f664270aebabec60fc527f7e875319885bc43749
[ "WTFPL" ]
null
null
null
#include "genericEntity.h" #include "Application.h" genericEntity::genericEntity() { } genericEntity::~genericEntity() { } void genericEntity::Init(const Vector3& pos, const Vector3& target, const Vector3& up) { this->position = pos; this->target = target; view = (target - position).Normalized(); r...
21.436364
107
0.626802
Ristellise
10584bac766b71c8bedf792af1ae53c0665fe320
612
cpp
C++
src/RE/TESContainer.cpp
FruitsBerriesMelons123/CommonLibSSE
7ae21d11b9e9c86b0596fc1cfa58b6993a568125
[ "MIT" ]
1
2020-09-25T18:18:09.000Z
2020-09-25T18:18:09.000Z
src/RE/TESContainer.cpp
FruitsBerriesMelons123/CommonLibSSE
7ae21d11b9e9c86b0596fc1cfa58b6993a568125
[ "MIT" ]
null
null
null
src/RE/TESContainer.cpp
FruitsBerriesMelons123/CommonLibSSE
7ae21d11b9e9c86b0596fc1cfa58b6993a568125
[ "MIT" ]
1
2020-10-26T19:05:05.000Z
2020-10-26T19:05:05.000Z
#include "RE/TESContainer.h" #include "RE/FormTypes.h" #include "RE/TESForm.h" namespace RE { auto TESContainer::GetContainerObjectAt(UInt32 a_idx) const -> std::optional<ContainerObject*> { if (a_idx < numContainerObjects) { return std::make_optional(containerObjects[a_idx]); } else { return std::null...
18.545455
77
0.69281
FruitsBerriesMelons123
105bcf462092ff27827ffc0a14e2ee79ecbcb6e0
426
hpp
C++
include/3dstris/gui/widget.hpp
geniiii/3DStris
556ef42ec2e131ffd7ac92065773dbaa483d743a
[ "MIT" ]
null
null
null
include/3dstris/gui/widget.hpp
geniiii/3DStris
556ef42ec2e131ffd7ac92065773dbaa483d743a
[ "MIT" ]
null
null
null
include/3dstris/gui/widget.hpp
geniiii/3DStris
556ef42ec2e131ffd7ac92065773dbaa483d743a
[ "MIT" ]
null
null
null
#pragma once #include <3dstris/util.hpp> class GUI; class Widget { public: Widget(GUI& parent, const Pos pos, const WH wh); virtual ~Widget() = default; virtual void draw() const = 0; virtual void update(const touchPosition touch, const touchPosition previousTouch) = 0; Pos getPos() const noexcept { r...
17.75
49
0.683099
geniiii
105c103a138ed79b39bd4eee2f74f05f80c12d92
3,180
hpp
C++
include/eve/module/core/regular/impl/reduce.hpp
clayne/eve
dc268b5db474376e1c53f5a474f5bb42b7c4cb59
[ "MIT" ]
null
null
null
include/eve/module/core/regular/impl/reduce.hpp
clayne/eve
dc268b5db474376e1c53f5a474f5bb42b7c4cb59
[ "MIT" ]
null
null
null
include/eve/module/core/regular/impl/reduce.hpp
clayne/eve
dc268b5db474376e1c53f5a474f5bb42b7c4cb59
[ "MIT" ]
null
null
null
//================================================================================================== /* EVE - Expressive Vector Engine Copyright : EVE Contributors & Maintainers SPDX-License-Identifier: MIT */ //================================================================================================== #pr...
38.313253
100
0.628931
clayne
105cab27d49365dbaf757988f845fbdbf7e5449c
9,785
cc
C++
chrome/utility/importer/edge_database_reader_win.cc
zipated/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
2,151
2020-04-18T07:31:17.000Z
2022-03-31T08:39:18.000Z
chrome/utility/importer/edge_database_reader_win.cc
cangulcan/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
395
2020-04-18T08:22:18.000Z
2021-12-08T13:04:49.000Z
chrome/utility/importer/edge_database_reader_win.cc
cangulcan/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
338
2020-04-18T08:03:10.000Z
2022-03-29T12:33:22.000Z
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/utility/importer/edge_database_reader_win.h" #include <windows.h> #include <stddef.h> #include <stdint.h> #include <vector> namespace...
37.490421
80
0.633112
zipated
105e8a8c8849240134205cbad4b48cc321374235
3,738
cpp
C++
src/eigensolve.cpp
norlab-ulaval/wmrde
69e1f20bedd9c145878d44dbe17b3de405696fe3
[ "BSD-2-Clause" ]
18
2015-05-09T21:53:43.000Z
2021-12-01T07:52:09.000Z
src/eigensolve.cpp
norlab-ulaval/wmrde
69e1f20bedd9c145878d44dbe17b3de405696fe3
[ "BSD-2-Clause" ]
5
2016-05-29T09:02:09.000Z
2021-05-07T16:36:38.000Z
src/eigensolve.cpp
norlab-ulaval/wmrde
69e1f20bedd9c145878d44dbe17b3de405696fe3
[ "BSD-2-Clause" ]
11
2016-07-15T16:46:51.000Z
2022-03-14T13:11:22.000Z
#include <wmrde/eigensolve.h> void eigenSolveDynamic( const int nrows, const int ncols, Real* A, Real* b, Real* x ) { Eigen::Map<MatrixXr> A_(A,nrows,ncols); Eigen::Map<MatrixXr> b_(b,nrows,1); Eigen::Map<MatrixXr> x_(x,ncols,1); if ( nrows == ncols ) { x_ = A_.llt().solve(b_); //requires positive definite } el...
26.892086
104
0.67603
norlab-ulaval
105eae46a93cf2dfed9c56935880b1b46319e7b6
827
cpp
C++
src/StillDataTask.cpp
stefunkk/openstill
17cc439fe9dbe7dea02588d77e51652fc1cc50ce
[ "MIT" ]
1
2021-02-13T08:40:50.000Z
2021-02-13T08:40:50.000Z
src/StillDataTask.cpp
stefunkk/openstill
17cc439fe9dbe7dea02588d77e51652fc1cc50ce
[ "MIT" ]
null
null
null
src/StillDataTask.cpp
stefunkk/openstill
17cc439fe9dbe7dea02588d77e51652fc1cc50ce
[ "MIT" ]
null
null
null
#include "StillDataTask.h" StillDataTaskClass::StillDataTaskClass(StillDataContextClass &context, FileServiceClass &fileService, SensorDataClass &data, SettingsClass &settings) : _settings(settings), _data(data), _fileService(fileService), _context(context) { } void StillDataTaskClass::exec() { if (_context.clear...
33.08
230
0.729141
stefunkk
105ebb36a30368684c583ffef1020750b09a6c59
3,176
cc
C++
gazebo/rendering/Grid_TEST.cc
traversaro/gazebo
6fd426b3949c4ca73fa126cde68f5cc4a59522eb
[ "ECL-2.0", "Apache-2.0" ]
887
2020-04-18T08:43:06.000Z
2022-03-31T11:58:50.000Z
gazebo/rendering/Grid_TEST.cc
traversaro/gazebo
6fd426b3949c4ca73fa126cde68f5cc4a59522eb
[ "ECL-2.0", "Apache-2.0" ]
462
2020-04-21T21:59:19.000Z
2022-03-31T23:23:21.000Z
gazebo/rendering/Grid_TEST.cc
traversaro/gazebo
6fd426b3949c4ca73fa126cde68f5cc4a59522eb
[ "ECL-2.0", "Apache-2.0" ]
421
2020-04-21T09:13:03.000Z
2022-03-30T02:22:01.000Z
/* * Copyright (C) 2016 Open Source Robotics Foundation * * 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 appl...
30.538462
79
0.628463
traversaro
105edc5729ebb32360624ec4625447ed5f1c6029
1,303
cxx
C++
VTK/Common/vtkTensor.cxx
certik/paraview
973d37b466552ce770ac0674f30040bb7e31d7fe
[ "BSD-3-Clause" ]
1
2016-05-09T00:36:44.000Z
2016-05-09T00:36:44.000Z
VTK/Common/vtkTensor.cxx
certik/paraview
973d37b466552ce770ac0674f30040bb7e31d7fe
[ "BSD-3-Clause" ]
null
null
null
VTK/Common/vtkTensor.cxx
certik/paraview
973d37b466552ce770ac0674f30040bb7e31d7fe
[ "BSD-3-Clause" ]
3
2015-05-14T21:18:53.000Z
2022-03-07T02:53:45.000Z
/*========================================================================= Program: Visualization Toolkit Module: $RCSfile: vtkTensor.cxx,v $ Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This s...
26.591837
78
0.523408
certik
105fe483961cb78caa1f8d264789e68c31b7447f
6,327
cpp
C++
src/VAC/VectorAnimationComplex/ProperCycle.cpp
CELLINKAB/VPaint
7f415b54bdaeff8b0bbd11f101d4aa34135a4404
[ "ECL-2.0", "Apache-2.0" ]
null
null
null
src/VAC/VectorAnimationComplex/ProperCycle.cpp
CELLINKAB/VPaint
7f415b54bdaeff8b0bbd11f101d4aa34135a4404
[ "ECL-2.0", "Apache-2.0" ]
3
2022-01-16T22:33:35.000Z
2022-03-25T07:27:52.000Z
src/VAC/VectorAnimationComplex/ProperCycle.cpp
CELLINKAB/VPaint
7f415b54bdaeff8b0bbd11f101d4aa34135a4404
[ "ECL-2.0", "Apache-2.0" ]
null
null
null
// Copyright (C) 2012-2019 The VPaint Developers. // See the COPYRIGHT file at the top-level directory of this distribution // and at https://github.com/dalboris/vpaint/blob/master/COPYRIGHT // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the ...
28.245536
117
0.549708
CELLINKAB
106028bea8c96f4985efaf4ab67d71352f11a2f7
1,473
cpp
C++
SDK/ARKSurvivalEvolved_PlayerPawnTest_Male_functions.cpp
2bite/ARK-SDK
c38ca9925309516b2093ad8c3a70ed9489e1d573
[ "MIT" ]
10
2020-02-17T19:08:46.000Z
2021-07-31T11:07:19.000Z
SDK/ARKSurvivalEvolved_PlayerPawnTest_Male_functions.cpp
2bite/ARK-SDK
c38ca9925309516b2093ad8c3a70ed9489e1d573
[ "MIT" ]
9
2020-02-17T18:15:41.000Z
2021-06-06T19:17:34.000Z
SDK/ARKSurvivalEvolved_PlayerPawnTest_Male_functions.cpp
2bite/ARK-SDK
c38ca9925309516b2093ad8c3a70ed9489e1d573
[ "MIT" ]
3
2020-07-22T17:42:07.000Z
2021-06-19T17:16:13.000Z
// ARKSurvivalEvolved (329.9) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "ARKSurvivalEvolved_PlayerPawnTest_Male_parameters.hpp" namespace sdk { //--------------------------------------------------------------------------- //Functions //--------------------------------------------------------------...
25.842105
140
0.700611
2bite
10602be24a2497a4266315d313a235479c764566
5,441
cpp
C++
l-ten/optimizer.cpp
adeobootpin/light-tensor
dfc2d19495848e773b7367427cf848e4ac30b29d
[ "MIT" ]
null
null
null
l-ten/optimizer.cpp
adeobootpin/light-tensor
dfc2d19495848e773b7367427cf848e4ac30b29d
[ "MIT" ]
null
null
null
l-ten/optimizer.cpp
adeobootpin/light-tensor
dfc2d19495848e773b7367427cf848e4ac30b29d
[ "MIT" ]
null
null
null
#include <cmath> #include <string.h> #include "tensor.h" #include "layers.h" #include "net.h" #include "optimizer.h" #include "error.h" namespace lten { void SGDOptimizer::setup_optimizer() { int i; uint64_t numels; for (i = 0; i < num_params_; i++) { numels = network_params_ptr_[i].param_->get_numels();...
28.78836
187
0.679287
adeobootpin
1060d8c918966a41ece1a66555cd052063418fbf
46,376
cpp
C++
compiler/src/iree/compiler/Codegen/LLVMCPU/KernelDispatch.cpp
mariecwhite/iree
6031ff4080f5755bcc52826a8d41ae7360106ffd
[ "Apache-2.0" ]
null
null
null
compiler/src/iree/compiler/Codegen/LLVMCPU/KernelDispatch.cpp
mariecwhite/iree
6031ff4080f5755bcc52826a8d41ae7360106ffd
[ "Apache-2.0" ]
null
null
null
compiler/src/iree/compiler/Codegen/LLVMCPU/KernelDispatch.cpp
mariecwhite/iree
6031ff4080f5755bcc52826a8d41ae7360106ffd
[ "Apache-2.0" ]
null
null
null
// Copyright 2020 The IREE Authors // // Licensed under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception #include "iree/compiler/Codegen/LLVMCPU/KernelDispatch.h" #include <numeric> #include "iree-dia...
41.518353
80
0.697149
mariecwhite
106272359d63eaacfdb71a1a111401c3f2153631
5,015
cpp
C++
src/bwtransform.cpp
Mathtin/mazip
5d06f7934c801dc7d9433511fa0eb84225792a0a
[ "MIT" ]
null
null
null
src/bwtransform.cpp
Mathtin/mazip
5d06f7934c801dc7d9433511fa0eb84225792a0a
[ "MIT" ]
null
null
null
src/bwtransform.cpp
Mathtin/mazip
5d06f7934c801dc7d9433511fa0eb84225792a0a
[ "MIT" ]
null
null
null
#include "bwtransform.h" /* * Author: Daniil [Mathtin] Shigapov * Copyright (c) 2017 Mathtin <wdaniil@mail.ru> * This file is released under the MIT license. */ size_t sa[L_PAGE]; size_t tmp[L_PAGE]; size_t tmp2[L_PAGE]; size_t count[L_PAGE]; size_t *cl, *workTmp; #define REP(i, n) for (size_t i = 0; i < n; ++...
23.434579
80
0.485543
Mathtin
1062ce617d1f9a3bdc8442fd27d859de02c7627b
5,990
cpp
C++
src/array_list.cpp
Algorithms-and-Data-Structures-2021/h02_data_structures-DRIbaev004
8f61838429414fec507b26db48d2546d31066e94
[ "MIT" ]
null
null
null
src/array_list.cpp
Algorithms-and-Data-Structures-2021/h02_data_structures-DRIbaev004
8f61838429414fec507b26db48d2546d31066e94
[ "MIT" ]
null
null
null
src/array_list.cpp
Algorithms-and-Data-Structures-2021/h02_data_structures-DRIbaev004
8f61838429414fec507b26db48d2546d31066e94
[ "MIT" ]
null
null
null
#include "array_list.hpp" // подключаем заголовочный файл с объявлениями #include <algorithm> // copy, fill #include <cassert> // assert #include <stdexcept> // out_of_range, invalid_argument #include "private/internal.hpp" // вспомогательные функции namespace itis { ArrayList::ArrayList(int capacity) : capa...
31.197917
106
0.676294
Algorithms-and-Data-Structures-2021
106323492a98902789dfeb47937ab53fcc9a0397
74,686
hpp
C++
packages/kokkos/core/unit_test/TestViewSubview.hpp
mathstuf/seacas
49b3466e3bba12ec6597e364ce0f0f149f9ca909
[ "BSD-3-Clause", "NetCDF", "Zlib", "MIT" ]
null
null
null
packages/kokkos/core/unit_test/TestViewSubview.hpp
mathstuf/seacas
49b3466e3bba12ec6597e364ce0f0f149f9ca909
[ "BSD-3-Clause", "NetCDF", "Zlib", "MIT" ]
null
null
null
packages/kokkos/core/unit_test/TestViewSubview.hpp
mathstuf/seacas
49b3466e3bba12ec6597e364ce0f0f149f9ca909
[ "BSD-3-Clause", "NetCDF", "Zlib", "MIT" ]
null
null
null
/* //@HEADER // ************************************************************************ // // Kokkos v. 2.0 // Copyright (2014) Sandia Corporation // // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, // the U.S. Government retains certain rights in this softw...
57.494996
206
0.619808
mathstuf
10657de129cf0bec27e58132bad7f2a326edd139
17,327
cpp
C++
third/3rd_qwt/qwt_plot_spectrogram.cpp
alexwang815/QWidgetDemo
293a8d9c40d686397829c5d415fc531b6956883e
[ "MulanPSL-1.0" ]
3,095
2019-10-11T03:00:33.000Z
2022-03-31T08:15:13.000Z
third/3rd_qwt/qwt_plot_spectrogram.cpp
alexwang815/QWidgetDemo
293a8d9c40d686397829c5d415fc531b6956883e
[ "MulanPSL-1.0" ]
28
2019-11-12T07:24:06.000Z
2022-02-28T02:04:48.000Z
third/3rd_qwt/qwt_plot_spectrogram.cpp
alexwang815/QWidgetDemo
293a8d9c40d686397829c5d415fc531b6956883e
[ "MulanPSL-1.0" ]
1,023
2019-10-09T12:54:07.000Z
2022-03-30T04:02:07.000Z
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- ***************************** * Qwt Widget Library * Copyright (C) 1997 Josef Wilgen * Copyright (C) 2002 Uwe Rathmann * * This library is free software; you can redistribute it and/or * modify it under the terms of the Qwt License, Version 1.0 **************...
25.593796
80
0.638656
alexwang815
1065eeaf318f78ed4feed93033341be6eec19c41
1,077
hpp
C++
libs/core/include/fcppt/math/from_array.hpp
pmiddend/fcppt
9f437acbb10258e6df6982a550213a05815eb2be
[ "BSL-1.0" ]
null
null
null
libs/core/include/fcppt/math/from_array.hpp
pmiddend/fcppt
9f437acbb10258e6df6982a550213a05815eb2be
[ "BSL-1.0" ]
null
null
null
libs/core/include/fcppt/math/from_array.hpp
pmiddend/fcppt
9f437acbb10258e6df6982a550213a05815eb2be
[ "BSL-1.0" ]
null
null
null
// Copyright Carl Philipp Reh 2009 - 2018. // 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 FCPPT_MATH_FROM_ARRAY_HPP_INCLUDED #define FCPPT_MATH_FROM_ARRAY_HPP_INCLUDED #include <f...
13.987013
68
0.702878
pmiddend
10677ee5952433bf423e50d1f02b932be93f7c50
2,067
cpp
C++
logdevice/common/configuration/nodes/ServiceDiscoveryConfig.cpp
mickvav/LogDevice
24a8b6abe4576418eceb72974083aa22d7844705
[ "BSD-3-Clause" ]
1
2021-05-19T23:01:58.000Z
2021-05-19T23:01:58.000Z
logdevice/common/configuration/nodes/ServiceDiscoveryConfig.cpp
mickvav/LogDevice
24a8b6abe4576418eceb72974083aa22d7844705
[ "BSD-3-Clause" ]
null
null
null
logdevice/common/configuration/nodes/ServiceDiscoveryConfig.cpp
mickvav/LogDevice
24a8b6abe4576418eceb72974083aa22d7844705
[ "BSD-3-Clause" ]
null
null
null
/** * Copyright (c) 2017-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ #include "ServiceDiscoveryConfig.h" #include <folly/Range.h> #include "logdevice/common/debug.h" #include...
27.56
78
0.652637
mickvav
1069154212618384b2b5d27c09594afb0fdf6f97
32,407
cpp
C++
filament/src/Engine.cpp
tombsar/filament
20dadf06f1399fc03aaa7c8796daaf237f96416d
[ "Apache-2.0" ]
1
2021-06-12T21:17:58.000Z
2021-06-12T21:17:58.000Z
filament/src/Engine.cpp
tombsar/filament
20dadf06f1399fc03aaa7c8796daaf237f96416d
[ "Apache-2.0" ]
null
null
null
filament/src/Engine.cpp
tombsar/filament
20dadf06f1399fc03aaa7c8796daaf237f96416d
[ "Apache-2.0" ]
null
null
null
/* * Copyright (C) 2015 The Android 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
31.160577
100
0.654612
tombsar
106d74f8240eaa35c87f3ee5222180f298987580
5,684
cc
C++
chrome/browser/android/metrics/launch_metrics.cc
zipated/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
2,151
2020-04-18T07:31:17.000Z
2022-03-31T08:39:18.000Z
chrome/browser/android/metrics/launch_metrics.cc
cangulcan/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
395
2020-04-18T08:22:18.000Z
2021-12-08T13:04:49.000Z
chrome/browser/android/metrics/launch_metrics.cc
cangulcan/src
2b8388091c71e442910a21ada3d97ae8bc1845d3
[ "BSD-3-Clause" ]
338
2020-04-18T08:03:10.000Z
2022-03-29T12:33:22.000Z
// Copyright (c) 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/android/jni_string.h" #include "base/metrics/histogram_macros.h" #include "base/time/time.h" #include "chrome/browser/android/shortcut_...
42.103704
80
0.725897
zipated
106df08aa4f507ae607ea7a170e973388c577b8a
651
cc
C++
src/include/XESystem/Entityx/help/Timer.cc
devxkh/FrankE
72faca02759b54aaec842831f3c7a051e7cf5335
[ "MIT" ]
11
2017-01-17T15:02:25.000Z
2020-11-27T16:54:42.000Z
src/include/XESystem/Entityx/help/Timer.cc
devxkh/FrankE
72faca02759b54aaec842831f3c7a051e7cf5335
[ "MIT" ]
9
2016-10-23T20:15:38.000Z
2018-02-06T11:23:17.000Z
src/include/XESystem/Entityx/help/Timer.cc
devxkh/FrankE
72faca02759b54aaec842831f3c7a051e7cf5335
[ "MIT" ]
2
2019-08-29T10:23:51.000Z
2020-04-03T06:08:34.000Z
/* * Copyright (C) 2013 Antony Woods <antony@teamwoods.org> * All rights reserved. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. * * Author: Antony Woods <antony@teamwoods.org> */ #include "Timer.h" namespace entityx { namespace ...
19.727273
90
0.680492
devxkh
106ffdd4c86ffa7dbfe8caeeb09fa5fa4ef75185
3,644
hpp
C++
Math/include/Extended/AABB3.hpp
C-And-Cpp-Libraries/handycpp
85f4e4f93856988e729e1e81512eab99a02b5a5a
[ "Unlicense", "Apache-2.0", "BSD-2-Clause", "MIT" ]
25
2017-12-28T22:09:11.000Z
2020-04-02T15:49:51.000Z
Math/include/Extended/AABB3.hpp
C-And-Cpp-Libraries/handycpp
85f4e4f93856988e729e1e81512eab99a02b5a5a
[ "Unlicense", "Apache-2.0", "BSD-2-Clause", "MIT" ]
1
2019-07-30T08:59:00.000Z
2019-07-30T21:35:50.000Z
Math/include/Extended/AABB3.hpp
C-And-Cpp-Libraries/handycpp
85f4e4f93856988e729e1e81512eab99a02b5a5a
[ "Unlicense", "Apache-2.0", "BSD-2-Clause", "MIT" ]
1
2021-12-26T14:14:09.000Z
2021-12-26T14:14:09.000Z
/// See ../../License.txt for license info. #pragma once #include <cmath> #include <vector> #include "../Core/Vector3.hpp" namespace HANDYMATH_NS { struct AABB3 { Vector3 Min; Vector3 Max; AABB3(); AABB3(Vector3 const & point); AABB3(std::vector<Vector3> const & points); AABB3(Vector3 const & min, Vector3 ...
25.843972
130
0.642975
C-And-Cpp-Libraries
10719b53b8cce6cf10b9b0a139d37b6637b560a4
6,660
cpp
C++
examples/Cpp/RealSense.cpp
fangchuan/Open3D
61f991ba5d9fe3ee1e4e195a607bf48f4695d821
[ "MIT" ]
null
null
null
examples/Cpp/RealSense.cpp
fangchuan/Open3D
61f991ba5d9fe3ee1e4e195a607bf48f4695d821
[ "MIT" ]
null
null
null
examples/Cpp/RealSense.cpp
fangchuan/Open3D
61f991ba5d9fe3ee1e4e195a607bf48f4695d821
[ "MIT" ]
null
null
null
// ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- // The MIT License (MIT) // // Copyright (c) 2018 www.open3d.org // // Permissio...
41.886792
80
0.572823
fangchuan
10727506f5e0bdde87cb655c781abe724f11ae6c
2,090
cpp
C++
clib/RecursiveMutex.cpp
dehilsterlexis/eclide-1
0c1685cc7165191b5033d450c59aec479f01010a
[ "Apache-2.0" ]
8
2016-08-29T13:34:18.000Z
2020-12-04T15:20:36.000Z
clib/RecursiveMutex.cpp
dehilsterlexis/eclide-1
0c1685cc7165191b5033d450c59aec479f01010a
[ "Apache-2.0" ]
221
2016-06-20T19:51:48.000Z
2022-03-29T20:46:46.000Z
clib/RecursiveMutex.cpp
dehilsterlexis/eclide-1
0c1685cc7165191b5033d450c59aec479f01010a
[ "Apache-2.0" ]
13
2016-06-24T15:59:31.000Z
2022-01-01T11:48:20.000Z
#include "StdAfx.h" #include ".\recursivemutex.h" #include "atlsync.h" namespace clib { recursive_mutex::recursive_mutex() : m_lockCount(0) { } recursive_mutex::~recursive_mutex() { } LONG recursive_mutex::GetLockCount() { return m_lockCount; } void recursive_mutex::do_lock() { ::InterlockedIncrement(&m_lo...
17.131148
74
0.669378
dehilsterlexis
107329f5ce381018f781bb18961bc0a19004c420
7,386
cpp
C++
src/ObservableVectorUnitTest.cpp
k2snowman69/threadily-sample-cpp-test
2edf49d11032ff8efa2dc77ea67cf7092c60b0b8
[ "MIT" ]
null
null
null
src/ObservableVectorUnitTest.cpp
k2snowman69/threadily-sample-cpp-test
2edf49d11032ff8efa2dc77ea67cf7092c60b0b8
[ "MIT" ]
null
null
null
src/ObservableVectorUnitTest.cpp
k2snowman69/threadily-sample-cpp-test
2edf49d11032ff8efa2dc77ea67cf7092c60b0b8
[ "MIT" ]
null
null
null
// Main test framework #include <bandit/bandit.h> // std includes #include <iostream> #include <memory> // Threadily includes #include <ReadyEvent.h> #include <Observable.h> #include <ThreadManager.h> #include <ThreadQueueItem.h> #include <ThreadIds.h> using namespace snowhouse; using namespace bandit; namespace thre...
34.514019
149
0.69537
k2snowman69
1076475f1860606c70a4de5c9685e6ccf0440147
46,677
cpp
C++
ocv/text/ocr_hmm_decoder.cpp
privet56/qRabbifier
4289016f9ba40658ad444580818292456574ffb5
[ "Apache-2.0" ]
16
2016-07-04T10:32:22.000Z
2021-11-10T11:26:45.000Z
ocv/text/ocr_hmm_decoder.cpp
privet56/qRabbifier
4289016f9ba40658ad444580818292456574ffb5
[ "Apache-2.0" ]
null
null
null
ocv/text/ocr_hmm_decoder.cpp
privet56/qRabbifier
4289016f9ba40658ad444580818292456574ffb5
[ "Apache-2.0" ]
22
2015-10-23T19:36:18.000Z
2021-02-02T12:20:32.000Z
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, instal...
36.869668
182
0.546715
privet56
1076b2333ef3bf8cc319dbab583179a11e05836c
4,376
cpp
C++
test/mafCoreTest/mafObjectFactoryTest.cpp
tartarini/MAF3
f9614d36591754544b23e3a670980799254dfd2c
[ "Apache-2.0" ]
1
2021-05-10T19:01:48.000Z
2021-05-10T19:01:48.000Z
test/mafCoreTest/mafObjectFactoryTest.cpp
examyes/MAF3
f9614d36591754544b23e3a670980799254dfd2c
[ "Apache-2.0" ]
null
null
null
test/mafCoreTest/mafObjectFactoryTest.cpp
examyes/MAF3
f9614d36591754544b23e3a670980799254dfd2c
[ "Apache-2.0" ]
1
2018-02-06T03:51:57.000Z
2018-02-06T03:51:57.000Z
/* * mafObjectFactoryTest.cpp * mafCoreTest * * Created by Paolo Quadrani on 22/09/09. * Copyright 2009 SCS-B3C. All rights reserved. * * See Licence at: http://tiny.cc/QXJ4D * */ #include <mafTestSuite.h> #include <mafObjectBase.h> #include <mafObject.h> #include <mafSmartPointer.h> using namespace maf...
28.415584
130
0.714808
tartarini
10774cef6d1870a500580c378f09a70b58456ebe
5,943
cc
C++
tensorflow/compiler/tf2xla/side_effect_util.cc
yage99/tensorflow
c7fa71b32a3635eb25596ae80d007b41007769c4
[ "Apache-2.0" ]
78
2020-08-04T12:36:25.000Z
2022-03-25T04:23:40.000Z
tensorflow/compiler/tf2xla/side_effect_util.cc
sseung0703/tensorflow
be084bd7a4dd241eb781fc704f57bcacc5c9b6dd
[ "Apache-2.0" ]
203
2019-06-14T23:53:10.000Z
2022-02-10T02:27:23.000Z
tensorflow/compiler/tf2xla/side_effect_util.cc
sseung0703/tensorflow
be084bd7a4dd241eb781fc704f57bcacc5c9b6dd
[ "Apache-2.0" ]
66
2020-05-15T10:05:12.000Z
2022-02-14T07:28:18.000Z
/* Copyright 2018 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...
37.377358
80
0.639071
yage99
10780f16b1b92e9d72ac1ac15e2bda4b0a7ddae8
1,645
cpp
C++
proxygen/lib/http/codec/compress/test/HPACKHeaderTests.cpp
rhzx3519/proxygen
ad1f5dc3c90d6215e322360d77bbd920f846d27b
[ "BSD-3-Clause" ]
8
2015-09-05T14:24:38.000Z
2019-09-02T05:48:28.000Z
proxygen/lib/http/codec/compress/test/HPACKHeaderTests.cpp
Yeolar/coral-proxygen
345b69711852698326634c295266c1823a9c668b
[ "BSD-3-Clause" ]
null
null
null
proxygen/lib/http/codec/compress/test/HPACKHeaderTests.cpp
Yeolar/coral-proxygen
345b69711852698326634c295266c1823a9c668b
[ "BSD-3-Clause" ]
1
2021-09-19T12:13:52.000Z
2021-09-19T12:13:52.000Z
/* * Copyright (c) 2015, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * */ #include <gl...
25.307692
79
0.674772
rhzx3519
1079356793ededa288a040e9c60eda37a3c91ca1
6,989
cpp
C++
src/Master/Interface/GridCtrlSource/GridCell.cpp
averkhaturau/Tarificator
90a976d16ecab8c6a1cd75f4cb6a860dc4c76ce5
[ "MIT" ]
null
null
null
src/Master/Interface/GridCtrlSource/GridCell.cpp
averkhaturau/Tarificator
90a976d16ecab8c6a1cd75f4cb6a860dc4c76ce5
[ "MIT" ]
null
null
null
src/Master/Interface/GridCtrlSource/GridCell.cpp
averkhaturau/Tarificator
90a976d16ecab8c6a1cd75f4cb6a860dc4c76ce5
[ "MIT" ]
null
null
null
// GridCell.cpp : implementation file // // MFC Grid Control - Main grid cell class // // Provides the implementation for the "default" cell type of the // grid control. Adds in cell editing. // // Written by Chris Maunder <cmaunder@mail.com> // Copyright (c) 1998-2001. All Rights Reserved. // // This code ma...
25.050179
95
0.586922
averkhaturau
1079bd8161b38341748a734f38734f58fe95344f
472
cpp
C++
leetcode_archived_cpp/LeetCode_402.cpp
Sean10/Algorithm_code
46ff1cb5b81400cbcc324dabdf4298bf7a55e5eb
[ "BSD-3-Clause" ]
null
null
null
leetcode_archived_cpp/LeetCode_402.cpp
Sean10/Algorithm_code
46ff1cb5b81400cbcc324dabdf4298bf7a55e5eb
[ "BSD-3-Clause" ]
7
2021-03-19T04:41:21.000Z
2021-10-19T15:46:36.000Z
leetcode_archived_cpp/LeetCode_402.cpp
Sean10/Algorithm_code
46ff1cb5b81400cbcc324dabdf4298bf7a55e5eb
[ "BSD-3-Clause" ]
null
null
null
class Solution { public: string removeKdigits(string num, int k) { string ans = ""; for (char i: num) { while (ans.length() && ans.back() > i && k) { ans.pop_back(); k--; } if (ans.length() || i != '0') ...
19.666667
55
0.372881
Sean10
107a40d24c606582780a0f24666762bf478b59ff
8,094
cpp
C++
src/MySimple3D.cpp
Qt-Widgets/EasyQPainter
328d4fc22dc96f8219cb7153f140327c66417b5a
[ "MIT" ]
4
2021-01-10T06:31:11.000Z
2021-09-07T23:16:19.000Z
src/MySimple3D.cpp
Qt-Widgets/EasyQPainter
328d4fc22dc96f8219cb7153f140327c66417b5a
[ "MIT" ]
null
null
null
src/MySimple3D.cpp
Qt-Widgets/EasyQPainter
328d4fc22dc96f8219cb7153f140327c66417b5a
[ "MIT" ]
2
2020-12-16T03:20:38.000Z
2021-02-24T05:26:03.000Z
#include "MySimple3D.h" #include <QPaintEvent> #include <QResizeEvent> #include <QPainter> #include <QPainterPath> #include <QtMath> #include <algorithm> #include <QTimer> #include <QtConcurrent> #include <QDebug> MySimple3D::MySimple3D(QWidget *parent) : QWidget(parent) { initItems(); //异步处理结束,获取结果并刷新窗...
35.5
119
0.578453
Qt-Widgets
107b6ea10ec0c7ffabde63763b40b16f15bb4380
12,809
hpp
C++
include/GlobalNamespace/TutorialPause.hpp
RedBrumbler/BeatSaber-Quest-Codegen
73dda50b5a3e51f10d86b766dcaa24b0c6226e25
[ "Unlicense" ]
null
null
null
include/GlobalNamespace/TutorialPause.hpp
RedBrumbler/BeatSaber-Quest-Codegen
73dda50b5a3e51f10d86b766dcaa24b0c6226e25
[ "Unlicense" ]
null
null
null
include/GlobalNamespace/TutorialPause.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: IGamePause #include "Global...
50.231373
190
0.727145
RedBrumbler
107ba00900206a88c11f64b4bcb2d22ec3d73aa0
7,117
cpp
C++
gen/blink/bindings/core/v8/V8TrackEvent.cpp
wenfeifei/miniblink49
2ed562ff70130485148d94b0e5f4c343da0c2ba4
[ "Apache-2.0" ]
5,964
2016-09-27T03:46:29.000Z
2022-03-31T16:25:27.000Z
gen/blink/bindings/core/v8/V8TrackEvent.cpp
w4454962/miniblink49
b294b6eacb3333659bf7b94d670d96edeeba14c0
[ "Apache-2.0" ]
459
2016-09-29T00:51:38.000Z
2022-03-07T14:37:46.000Z
gen/blink/bindings/core/v8/V8TrackEvent.cpp
w4454962/miniblink49
b294b6eacb3333659bf7b94d670d96edeeba14c0
[ "Apache-2.0" ]
1,006
2016-09-27T05:17:27.000Z
2022-03-30T02:46:51.000Z
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! #include "config.h" #include "V8TrackEvent.h" #include "bindings/c...
42.363095
515
0.739216
wenfeifei
107d7ec8a92c6a27de175150a6be5eda68ed18cc
797
cpp
C++
nowcoder/9799B.cpp
freedomDR/coding
310a68077de93ef445ccd2929e90ba9c22a9b8eb
[ "MIT" ]
null
null
null
nowcoder/9799B.cpp
freedomDR/coding
310a68077de93ef445ccd2929e90ba9c22a9b8eb
[ "MIT" ]
null
null
null
nowcoder/9799B.cpp
freedomDR/coding
310a68077de93ef445ccd2929e90ba9c22a9b8eb
[ "MIT" ]
null
null
null
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { int n; cin >> n; vector<vector<int> > arr(n, vector<int>()); for(int i = 0; i < n; i++) { int nums = 0; cin >> nums; for(int j = 0; j < nums; j++) { int v; cin >> v; arr[i].push...
22.771429
68
0.410289
freedomDR
107fa58a6b11c81278fd518782e586f36ea81e45
52,694
cpp
C++
XMPCore/source/XMPUtils-FileInfo.cpp
freedesktop-unofficial-mirror/exempi
2f6450de4e8e02003b8fb27ace5cf802571b761e
[ "BSD-3-Clause-Clear", "BSD-3-Clause" ]
null
null
null
XMPCore/source/XMPUtils-FileInfo.cpp
freedesktop-unofficial-mirror/exempi
2f6450de4e8e02003b8fb27ace5cf802571b761e
[ "BSD-3-Clause-Clear", "BSD-3-Clause" ]
null
null
null
XMPCore/source/XMPUtils-FileInfo.cpp
freedesktop-unofficial-mirror/exempi
2f6450de4e8e02003b8fb27ace5cf802571b761e
[ "BSD-3-Clause-Clear", "BSD-3-Clause" ]
null
null
null
// ================================================================================================= // Copyright 2003 Adobe Systems Incorporated // All Rights Reserved. // // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms // of the Adobe license agreement accompanying i...
35.270415
150
0.626978
freedesktop-unofficial-mirror
108070f6094b0b08212bb82111a07086e41f5b00
16,332
cc
C++
src/algorithms/RSAPI.cc
litlpoet/beliefbox
6b303e49017f8054f43c6c840686fcc632205e4e
[ "OLDAP-2.3" ]
null
null
null
src/algorithms/RSAPI.cc
litlpoet/beliefbox
6b303e49017f8054f43c6c840686fcc632205e4e
[ "OLDAP-2.3" ]
null
null
null
src/algorithms/RSAPI.cc
litlpoet/beliefbox
6b303e49017f8054f43c6c840686fcc632205e4e
[ "OLDAP-2.3" ]
null
null
null
/* -*- Mode: C++; -*- */ // copyright (c) 2010 by Christos Dimitrakakis <christos.dimitrakakis@gmail.com> /*************************************************************************** * * * This program is free software; you can redistribute it ...
31.712621
80
0.604274
litlpoet
10808f845b91b608644aec96cdbbfe9f9e0ebbc0
2,929
cpp
C++
implementations/bowtie2/presets.cpp
r-barnes/sw_comparison
1ac2c9cc10a32badd6b8fb1e96516c97f7800176
[ "BSD-Source-Code" ]
null
null
null
implementations/bowtie2/presets.cpp
r-barnes/sw_comparison
1ac2c9cc10a32badd6b8fb1e96516c97f7800176
[ "BSD-Source-Code" ]
null
null
null
implementations/bowtie2/presets.cpp
r-barnes/sw_comparison
1ac2c9cc10a32badd6b8fb1e96516c97f7800176
[ "BSD-Source-Code" ]
null
null
null
/* * Copyright 2011, Ben Langmead <langmea@cs.jhu.edu> * * This file is part of Bowtie 2. * * Bowtie 2 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 opt...
30.510417
72
0.567771
r-barnes
10838fc9048120c9519b496bbca4dc7ae3f0560d
102,010
cpp
C++
external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmCrossStageInterfaceTests.cpp
jingpad-bsp/android_external_deqp
50f948294cb12f5384633efc9327c571feb0fa21
[ "Apache-2.0" ]
1
2021-02-25T09:06:00.000Z
2021-02-25T09:06:00.000Z
external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmCrossStageInterfaceTests.cpp
jingpad-bsp/android_external_deqp
50f948294cb12f5384633efc9327c571feb0fa21
[ "Apache-2.0" ]
null
null
null
external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmCrossStageInterfaceTests.cpp
jingpad-bsp/android_external_deqp
50f948294cb12f5384633efc9327c571feb0fa21
[ "Apache-2.0" ]
null
null
null
/*------------------------------------------------------------------------- * Vulkan Conformance Tests * ------------------------ * * Copyright (c) 2017 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may ob...
36.933382
342
0.659867
jingpad-bsp
10845e1302b9122a421d8ccdce499eab41c65933
18,919
cpp
C++
sources/modules/contrib/src/fuzzymeanshifttracker.cpp
ovb197310/opencv_2.4.13.2
940159dab8ea8f5ee019d2038b59e1daf4119d1c
[ "BSD-3-Clause" ]
null
null
null
sources/modules/contrib/src/fuzzymeanshifttracker.cpp
ovb197310/opencv_2.4.13.2
940159dab8ea8f5ee019d2038b59e1daf4119d1c
[ "BSD-3-Clause" ]
null
null
null
sources/modules/contrib/src/fuzzymeanshifttracker.cpp
ovb197310/opencv_2.4.13.2
940159dab8ea8f5ee019d2038b59e1daf4119d1c
[ "BSD-3-Clause" ]
null
null
null
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, i...
26.239945
175
0.543052
ovb197310
1084b2d9e3d1eb38da6196c82593f51170b5a413
1,608
cpp
C++
src/poc/ncpp_build_exceptions.cpp
grendello/notcurses
a2cc5f096adb3991f264d96657b45a050fa8df2a
[ "ECL-2.0", "Apache-2.0" ]
null
null
null
src/poc/ncpp_build_exceptions.cpp
grendello/notcurses
a2cc5f096adb3991f264d96657b45a050fa8df2a
[ "ECL-2.0", "Apache-2.0" ]
null
null
null
src/poc/ncpp_build_exceptions.cpp
grendello/notcurses
a2cc5f096adb3991f264d96657b45a050fa8df2a
[ "ECL-2.0", "Apache-2.0" ]
null
null
null
#define NCPP_EXCEPTIONS_PLEASE // // This is a **build** test - it does nothing else except ensure that all the C++ wrapper classes are included and that // the program builds. // // Once there are demos which exercise all the C++ classes this "test" can be removed // #include <cstdlib> #include <clocale> #include <ios...
22.971429
119
0.648632
grendello
10881826d9401c0b6c63184528df5f059833ca13
5,429
hxx
C++
Modules/Filtering/AnisotropicSmoothing/include/itkCurvatureNDAnisotropicDiffusionFunction.hxx
HongdaZ/ITK
f5d004fa3607b8e11edc30f1ba299df35af8aff8
[ "Apache-2.0" ]
1
2021-01-10T14:19:08.000Z
2021-01-10T14:19:08.000Z
Modules/Filtering/AnisotropicSmoothing/include/itkCurvatureNDAnisotropicDiffusionFunction.hxx
HongdaZ/ITK
f5d004fa3607b8e11edc30f1ba299df35af8aff8
[ "Apache-2.0" ]
1
2017-03-19T12:56:50.000Z
2018-10-24T10:40:21.000Z
Modules/Filtering/AnisotropicSmoothing/include/itkCurvatureNDAnisotropicDiffusionFunction.hxx
HongdaZ/ITK
f5d004fa3607b8e11edc30f1ba299df35af8aff8
[ "Apache-2.0" ]
1
2020-07-24T22:58:19.000Z
2020-07-24T22:58:19.000Z
/*========================================================================= * * Copyright NumFOCUS * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.or...
32.90303
111
0.620556
HongdaZ
1088318220664097cf7016c1710c3dd20f6a2ace
3,346
hpp
C++
include/bit/stl/utilities/monostate.hpp
bitwizeshift/bit-stl
cec555fbda2ea1b6e126fa719637dde8d3f2ddd3
[ "MIT" ]
6
2017-03-29T07:20:30.000Z
2021-12-28T20:17:33.000Z
include/bit/stl/utilities/monostate.hpp
bitwizeshift/bit-stl
cec555fbda2ea1b6e126fa719637dde8d3f2ddd3
[ "MIT" ]
6
2017-10-11T02:26:07.000Z
2018-04-16T03:09:48.000Z
include/bit/stl/utilities/monostate.hpp
bitwizeshift/bit-stl
cec555fbda2ea1b6e126fa719637dde8d3f2ddd3
[ "MIT" ]
1
2018-08-27T15:03:47.000Z
2018-08-27T15:03:47.000Z
/***************************************************************************** * \file * \brief This header defines the type 'monotype' *****************************************************************************/ /* The MIT License (MIT) Bit Standard Template Library. https://github.com/bitwizeshift/bit-st...
38.906977
79
0.558279
bitwizeshift
c80604d80e3dcda59957c5edb6dc48ca03cc44c1
18,607
cpp
C++
server/api/src/rsQuerySpecColl.cpp
JustinKyleJames/irods
59e9db75200e95796ec51ec20eb3b185d9e4b5f5
[ "BSD-3-Clause" ]
333
2015-01-15T15:42:29.000Z
2022-03-19T19:16:15.000Z
server/api/src/rsQuerySpecColl.cpp
JustinKyleJames/irods
59e9db75200e95796ec51ec20eb3b185d9e4b5f5
[ "BSD-3-Clause" ]
3,551
2015-01-02T19:55:40.000Z
2022-03-31T21:24:56.000Z
server/api/src/rsQuerySpecColl.cpp
JustinKyleJames/irods
59e9db75200e95796ec51ec20eb3b185d9e4b5f5
[ "BSD-3-Clause" ]
148
2015-01-31T16:13:46.000Z
2022-03-23T20:23:43.000Z
/*** Copyright (c), The Unregents of the University of California *** *** For more information please refer to files in the COPYRIGHT directory ***/ /* rsQuerySpecColl.c */ #include "querySpecColl.h" #include "rcMisc.h" #include "fileOpendir.h" #include "fileReaddir.h" #include "fileClosedir.h" #include "...
35.714012
104
0.599291
JustinKyleJames
c8066f8a93d79afc2b8617619e8c4a6373223281
609
cpp
C++
Sistem Bilangan Digital/05_Decimal_to_Hexa.cpp
wardimanxixv/CPP-Basic
332adde53ebc73bef20080a7cf7f195820394c37
[ "MIT" ]
null
null
null
Sistem Bilangan Digital/05_Decimal_to_Hexa.cpp
wardimanxixv/CPP-Basic
332adde53ebc73bef20080a7cf7f195820394c37
[ "MIT" ]
null
null
null
Sistem Bilangan Digital/05_Decimal_to_Hexa.cpp
wardimanxixv/CPP-Basic
332adde53ebc73bef20080a7cf7f195820394c37
[ "MIT" ]
null
null
null
#include <iostream> using namespace std; int main() { long int decimalNumber, remainder, quotient; int i = 1, j, temp; char hexadecimalNumber[100]; cout << "Masukkan Bilangan Decimal : "; cin >> decimalNumber; quotient = decimalNumber; while (quotient != 0) { temp = quotient % 16; if (temp < 10)...
19.03125
63
0.584565
wardimanxixv
c807bd8d0fbb1cc985db83edcbc2d5d1384e1cf9
5,697
hpp
C++
include/engine/Logger.hpp
Mathieu-Lala/NewDimension
9200692e79dc1d983f51043f3c195eb1b865a74d
[ "0BSD" ]
4
2019-11-19T23:53:26.000Z
2019-12-10T11:19:28.000Z
include/engine/Logger.hpp
Mathieu-Lala/NewDimension
9200692e79dc1d983f51043f3c195eb1b865a74d
[ "0BSD" ]
null
null
null
include/engine/Logger.hpp
Mathieu-Lala/NewDimension
9200692e79dc1d983f51043f3c195eb1b865a74d
[ "0BSD" ]
null
null
null
/* ** EPITECH PROJECT, 2019 ** NewDimension ** File description: ** Logger */ #ifndef LOGGER_HPP_ # define LOGGER_HPP_ # include <ostream> # include <iostream> # include <array> # include <ctime> # include <functional> # include "config/config.hpp" namespace nd { namespace engine { class Logger { public: Logger...
35.385093
111
0.610848
Mathieu-Lala
c807e185b44fcba37d206a60d9a6e874368e4074
16,032
cpp
C++
common.cpp
SBcodework/Minesweeper-in-C-
e2ca6364f5afc6faa3ca723a926c64603d0f4ffc
[ "BSD-2-Clause" ]
null
null
null
common.cpp
SBcodework/Minesweeper-in-C-
e2ca6364f5afc6faa3ca723a926c64603d0f4ffc
[ "BSD-2-Clause" ]
4
2019-06-28T18:08:49.000Z
2019-07-04T03:41:32.000Z
common.cpp
SBcodework/Minesweeper-in-C-
e2ca6364f5afc6faa3ca723a926c64603d0f4ffc
[ "BSD-2-Clause" ]
null
null
null
/** BSD 2-Clause License Copyright (c) 2019, SBcodework 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 ...
31.130097
162
0.515594
SBcodework
c808a321f8cdb343a50a97fd6a0744fea37e4fd2
37,360
cpp
C++
llvm/lib/MC/MCContext.cpp
lxbndr/llvm-project
2b715b15f5f4c6dd60f05d1b62f9c404e8b56e34
[ "Apache-2.0" ]
null
null
null
llvm/lib/MC/MCContext.cpp
lxbndr/llvm-project
2b715b15f5f4c6dd60f05d1b62f9c404e8b56e34
[ "Apache-2.0" ]
null
null
null
llvm/lib/MC/MCContext.cpp
lxbndr/llvm-project
2b715b15f5f4c6dd60f05d1b62f9c404e8b56e34
[ "Apache-2.0" ]
null
null
null
//===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
37.66129
82
0.641247
lxbndr
c808ab04bf668e3806d4b1e55823bf4a3b80a69c
1,731
cpp
C++
ui/widget/ChangeFrontBackColorWidget.cpp
shinehanx/openphoto
e4466e5e80829385d2aa84813f2d5a8960053845
[ "Apache-2.0" ]
5
2021-03-11T00:30:25.000Z
2021-07-28T00:31:20.000Z
ui/widget/ChangeFrontBackColorWidget.cpp
shinehanx/openphoto
e4466e5e80829385d2aa84813f2d5a8960053845
[ "Apache-2.0" ]
null
null
null
ui/widget/ChangeFrontBackColorWidget.cpp
shinehanx/openphoto
e4466e5e80829385d2aa84813f2d5a8960053845
[ "Apache-2.0" ]
1
2021-09-14T16:28:26.000Z
2021-09-14T16:28:26.000Z
#include "ChangeFrontBackColorWidget.h" #include <QDebug> #define CHANGEFRONTBACKCOLORWIDGET_MARGIN 3 #define CHANGEFRONTBACKCOLORWIDGET_BTN_W 12 #define CHANGEFRONTBACKCOLORWIDGET_BTN_H 12 ChangeFrontBackColorWidget::ChangeFrontBackColorWidget(QWidget *parent) : QWidget(parent) { setAutoFillBackground(true); } /...
36.829787
92
0.732525
shinehanx
c809e3589cfc1978c63cd92586504509d741b649
9,270
cpp
C++
rviz_default_plugins/test/rviz_default_plugins/displays/path/path_display_test.cpp
Tobias-Fischer/rviz-1
2d84e191873befa86c1b4060ddf7e25b39d095c1
[ "BSD-3-Clause-Clear" ]
108
2017-08-29T11:01:08.000Z
2022-03-31T06:07:52.000Z
rviz_default_plugins/test/rviz_default_plugins/displays/path/path_display_test.cpp
Tobias-Fischer/rviz-1
2d84e191873befa86c1b4060ddf7e25b39d095c1
[ "BSD-3-Clause-Clear" ]
741
2017-08-29T06:30:27.000Z
2022-03-29T14:46:07.000Z
rviz_default_plugins/test/rviz_default_plugins/displays/path/path_display_test.cpp
Tobias-Fischer/rviz-1
2d84e191873befa86c1b4060ddf7e25b39d095c1
[ "BSD-3-Clause-Clear" ]
141
2017-08-31T08:31:26.000Z
2022-03-31T14:46:36.000Z
/* * Copyright (c) 2018, Bosch Software Innovations GmbH. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted (subject to the limitations in the disclaimer * below) provided that the following conditions are met: * * * Redistributions o...
38.46473
98
0.763323
Tobias-Fischer
c80b8970465cd21883aa8b06d13425182124e32c
233
cpp
C++
test/po/gtest.cpp
JieDing/WasmEdge
b2f17c807ba2b4b6294af9e15113cca04919906e
[ "Apache-2.0" ]
2,084
2021-04-30T11:20:17.000Z
2022-03-31T21:31:47.000Z
test/po/gtest.cpp
JieDing/WasmEdge
b2f17c807ba2b4b6294af9e15113cca04919906e
[ "Apache-2.0" ]
990
2021-04-29T18:43:51.000Z
2022-03-31T15:32:51.000Z
test/po/gtest.cpp
JieDing/WasmEdge
b2f17c807ba2b4b6294af9e15113cca04919906e
[ "Apache-2.0" ]
343
2021-05-04T20:27:10.000Z
2022-03-29T03:31:26.000Z
// SPDX-License-Identifier: Apache-2.0 // SPDX-FileCopyrightText: 2019-2022 Second State INC #include "gtest/gtest.h" GTEST_API_ int main(int argc, char **argv) { testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }
23.3
53
0.729614
JieDing
c80c61f83383dd0e7ad4570bcc5265a725ed5d94
13,390
cpp
C++
SDK/BP_Mast_functions.cpp
alxalx14/Sea-Of-Thieves-SDK
f56a0340eb33726c98fc53eb0678fa2d59aa8294
[ "MIT" ]
3
2021-03-27T08:30:37.000Z
2021-04-18T19:32:53.000Z
SDK/BP_Mast_functions.cpp
alxalx14/Sea-Of-Thieves-SDK
f56a0340eb33726c98fc53eb0678fa2d59aa8294
[ "MIT" ]
null
null
null
SDK/BP_Mast_functions.cpp
alxalx14/Sea-Of-Thieves-SDK
f56a0340eb33726c98fc53eb0678fa2d59aa8294
[ "MIT" ]
1
2021-06-01T03:05:50.000Z
2021-06-01T03:05:50.000Z
// Name: SeaOfThieves, Version: 2.0.23 #include "../pch.h" /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Functions //--------------------------------------------...
36.785714
274
0.776699
alxalx14
c80cf7b6a374680e884cff2ef4acdb1c77deae35
794
hpp
C++
test-suite/generated-src/cwrapper/dh__foo_some_other_record.hpp
trafi/trafi-djinni
47cd2c849782e2ab4b38e5dc6a5a3104cc87f673
[ "Apache-2.0" ]
3
2019-11-07T03:38:03.000Z
2020-03-28T10:24:40.000Z
test-suite/generated-src/cwrapper/dh__foo_some_other_record.hpp
trafi/trafi-djinni
47cd2c849782e2ab4b38e5dc6a5a3104cc87f673
[ "Apache-2.0" ]
null
null
null
test-suite/generated-src/cwrapper/dh__foo_some_other_record.hpp
trafi/trafi-djinni
47cd2c849782e2ab4b38e5dc6a5a3104cc87f673
[ "Apache-2.0" ]
2
2020-12-01T18:39:26.000Z
2021-02-04T03:55:31.000Z
// AUTOGENERATED FILE - DO NOT MODIFY! // This file generated by Djinni from foo_client_interface.djinni #pragma once #include <atomic> #include <experimental/optional> #include "foo_some_other_record.hpp" #ifdef __cplusplus extern "C" { #endif #include "dh__foo_some_other_record.h" #ifdef __cplusplus } #endif stru...
33.083333
127
0.789673
trafi
c80eb117a88136d8a488b4d0ae220c3ce70ceb17
5,486
cc
C++
src/Core/Algorithms/Field/Tests/GetFieldBoundaryTests.cc
Haydelj/SCIRun
f7ee04d85349b946224dbff183438663e54b9413
[ "MIT" ]
92
2015-02-09T22:42:11.000Z
2022-03-25T09:14:50.000Z
src/Core/Algorithms/Field/Tests/GetFieldBoundaryTests.cc
Haydelj/SCIRun
f7ee04d85349b946224dbff183438663e54b9413
[ "MIT" ]
1,618
2015-01-05T19:39:13.000Z
2022-03-27T20:28:45.000Z
src/Core/Algorithms/Field/Tests/GetFieldBoundaryTests.cc
Haydelj/SCIRun
f7ee04d85349b946224dbff183438663e54b9413
[ "MIT" ]
64
2015-02-20T17:51:23.000Z
2021-11-19T07:08:08.000Z
/* For more information, please see: http://software.sci.utah.edu The MIT License Copyright (c) 2020 Scientific Computing and Imaging Institute, University of Utah. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ...
34.503145
153
0.644185
Haydelj
c81028836b3520283ef874f8e452541d01b699db
5,695
cc
C++
chrome/browser/chromeos/file_system_provider/throttled_file_system_unittest.cc
Wzzzx/chromium-crosswalk
768dde8efa71169f1c1113ca6ef322f1e8c9e7de
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
2
2019-01-28T08:09:58.000Z
2021-11-15T15:32:10.000Z
chrome/browser/chromeos/file_system_provider/throttled_file_system_unittest.cc
maidiHaitai/haitaibrowser
a232a56bcfb177913a14210e7733e0ea83a6b18d
[ "BSD-3-Clause" ]
1
2016-07-11T15:19:20.000Z
2017-04-02T20:38:55.000Z
chrome/browser/chromeos/file_system_provider/throttled_file_system_unittest.cc
maidiHaitai/haitaibrowser
a232a56bcfb177913a14210e7733e0ea83a6b18d
[ "BSD-3-Clause" ]
6
2020-09-23T08:56:12.000Z
2021-11-18T03:40:49.000Z
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/chromeos/file_system_provider/throttled_file_system.h" #include <stddef.h> #include <memory> #include <vector> #include "base/...
34.93865
117
0.731168
Wzzzx
c811c8e0527012cbdded435ce014a7ac3b332128
967
cc
C++
src/media/audio/audio_core/pipeline_config_unittest.cc
wwjiang007/fuchsia-1
0db66b52b5bcd3e27c8b8c2163925309e8522f94
[ "BSD-2-Clause" ]
210
2019-02-05T12:45:09.000Z
2022-03-28T07:59:06.000Z
src/media/audio/audio_core/pipeline_config_unittest.cc
wwjiang007/fuchsia-1
0db66b52b5bcd3e27c8b8c2163925309e8522f94
[ "BSD-2-Clause" ]
56
2021-06-03T03:16:25.000Z
2022-03-20T01:07:44.000Z
src/media/audio/audio_core/pipeline_config_unittest.cc
wwjiang007/fuchsia-1
0db66b52b5bcd3e27c8b8c2163925309e8522f94
[ "BSD-2-Clause" ]
73
2019-03-06T18:55:23.000Z
2022-03-26T12:04:51.000Z
// Copyright 2020 The Fuchsia Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/media/audio/audio_core/pipeline_config.h" #include <gtest/gtest.h> namespace media::audio { namespace { TEST(PipelineConfigTest, Calculate...
34.535714
93
0.715615
wwjiang007
c81318664086f895c7665d7bece4e25cd0ec40f8
8,272
cpp
C++
src/GPU/pair_beck_gpu.cpp
luwei0917/GlpG_Nature_Communication
a7f4f8b526e633b158dc606050e8993d70734943
[ "MIT" ]
1
2018-11-28T15:04:55.000Z
2018-11-28T15:04:55.000Z
src/GPU/pair_beck_gpu.cpp
luwei0917/GlpG_Nature_Communication
a7f4f8b526e633b158dc606050e8993d70734943
[ "MIT" ]
null
null
null
src/GPU/pair_beck_gpu.cpp
luwei0917/GlpG_Nature_Communication
a7f4f8b526e633b158dc606050e8993d70734943
[ "MIT" ]
null
null
null
/* ---------------------------------------------------------------------- LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator http://lammps.sandia.gov, Sandia National Laboratories Steve Plimpton, sjplimp@sandia.gov Copyright (2003) Sandia Corporation. Under the terms of Contract DE-AC04...
33.763265
84
0.525145
luwei0917
c813490b6f20955ac18a0b771bb4fc7c506fa4ef
3,157
cpp
C++
test/src/thd/monitor_test.cpp
CppPhil/philslib
9d60d7f3a43b9de62f7e5d9550541293e0b15333
[ "Unlicense" ]
3
2017-10-29T09:36:18.000Z
2022-03-07T20:04:08.000Z
test/src/thd/monitor_test.cpp
CppPhil/philslib
9d60d7f3a43b9de62f7e5d9550541293e0b15333
[ "Unlicense" ]
1
2018-02-13T16:07:30.000Z
2018-02-13T16:07:30.000Z
test/src/thd/monitor_test.cpp
CppPhil/philslib
9d60d7f3a43b9de62f7e5d9550541293e0b15333
[ "Unlicense" ]
3
2017-10-29T09:24:20.000Z
2018-11-03T09:53:46.000Z
/* This is free and unencumbered software released into the public domain. * * Anyone is free to copy, modify, publish, use, compile, sell, or * distribute this software, either in source code form or as a compiled * binary, for any purpose, commercial or non-commercial, and by any * means. * * In jurisdictions ...
31.888889
80
0.649351
CppPhil
c813af4fe5af344c979ee5bb7ec4f8f332ea8838
7,886
cpp
C++
testsams/sams_crypto/software/DLLDemo.cpp
quchunguang/test
dd1dde14a69d9e8b2c9ed3efbf536df7840f0487
[ "MIT" ]
1
2021-05-06T02:02:59.000Z
2021-05-06T02:02:59.000Z
testsams/sams_crypto/software/DLLDemo.cpp
SrikanthParsha14/test
8cee69e09c8557d53d8d30382cec8ea5c1f82f6e
[ "MIT" ]
null
null
null
testsams/sams_crypto/software/DLLDemo.cpp
SrikanthParsha14/test
8cee69e09c8557d53d8d30382cec8ea5c1f82f6e
[ "MIT" ]
1
2019-06-17T13:20:39.000Z
2019-06-17T13:20:39.000Z
// DLLDemo.cpp : Defines the entry point for the DLL application. // #include "sense4.h" #include <stdlib.h> #include <stdio.h> #include <assert.h> #include "common.h" #include "..\inc\sample_26.h" #include "DLLDemo.h" /* global variables definition */ SENSE4_CONTEXT stS4Ctx = {0}; unsigned long dwBytesR...
24.490683
107
0.644433
quchunguang
c8143f4acce02eb5866bb688628c0da88133b559
10,360
cpp
C++
src/sim/airframe/atmos.cpp
Terebinth/freefalcon-central
c28d807183ab447ef6a801068aa3769527d55deb
[ "BSD-2-Clause" ]
117
2015-01-13T14:48:49.000Z
2022-03-16T01:38:19.000Z
src/sim/airframe/atmos.cpp
darongE/freefalcon-central
c28d807183ab447ef6a801068aa3769527d55deb
[ "BSD-2-Clause" ]
4
2015-05-01T13:09:53.000Z
2017-07-22T09:11:06.000Z
src/sim/airframe/atmos.cpp
darongE/freefalcon-central
c28d807183ab447ef6a801068aa3769527d55deb
[ "BSD-2-Clause" ]
78
2015-01-13T09:27:47.000Z
2022-03-18T14:39:09.000Z
/******************************************************************************/ /* */ /* Unit Name : atmos.cpp */ /* ...
35.479452
207
0.415444
Terebinth
c815d1e6895510162db703d82cf0f2cf848efa33
3,661
cpp
C++
Worms/src/InGame/Entity/World/World.cpp
GearEngine/GearEngine
fa5ed49ca6289a215799a7b84ece1241eb33bd36
[ "Apache-2.0" ]
3
2020-03-05T06:56:51.000Z
2020-03-12T09:36:20.000Z
Worms/src/InGame/Entity/World/World.cpp
GearEngine/GearEngine
fa5ed49ca6289a215799a7b84ece1241eb33bd36
[ "Apache-2.0" ]
2
2020-03-05T15:40:28.000Z
2020-03-11T16:04:44.000Z
Worms/src/InGame/Entity/World/World.cpp
GearEngine/GearEngine
fa5ed49ca6289a215799a7b84ece1241eb33bd36
[ "Apache-2.0" ]
null
null
null
#include "wmpch.h" #include "World.h" namespace InGame { float World::s_LimitTurnTime = 0; int World::s_LimitSuddenDeathTurn = 0; int World::s_CurrentTurn = 0; World::World(const InitiateData& initData) { s_LimitSuddenDeathTurn = initData.LimitSuddenDeathTurn; s_LimitTurnTime = initData.LimitTurnTime; s_C...
40.677778
153
0.734772
GearEngine
c81825bda8ba08b264adf5b80f6e9a3c5fe6a9d4
8,739
cpp
C++
src/mfx/pi/nzbl/FilterBank.cpp
mikelange49/pedalevite
a81bd8a6119c5920995ec91b9f70e11e9379580e
[ "WTFPL" ]
null
null
null
src/mfx/pi/nzbl/FilterBank.cpp
mikelange49/pedalevite
a81bd8a6119c5920995ec91b9f70e11e9379580e
[ "WTFPL" ]
null
null
null
src/mfx/pi/nzbl/FilterBank.cpp
mikelange49/pedalevite
a81bd8a6119c5920995ec91b9f70e11e9379580e
[ "WTFPL" ]
null
null
null
/***************************************************************************** FilterBank.cpp Author: Laurent de Soras, 2017 --- Legal stuff --- This program is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the ...
26.164671
86
0.594347
mikelange49
c8182c8564f7b2f7088cae92ac19ea7d58a7bc76
10,958
cc
C++
tensorflow/core/kernels/sparse_concat_op_gpu.cu.cc
EricRemmerswaal/tensorflow
141ff27877579c81a213fa113bd1b474c1749aca
[ "Apache-2.0" ]
190,993
2015-11-09T13:17:30.000Z
2022-03-31T23:05:27.000Z
tensorflow/core/kernels/sparse_concat_op_gpu.cu.cc
EricRemmerswaal/tensorflow
141ff27877579c81a213fa113bd1b474c1749aca
[ "Apache-2.0" ]
48,461
2015-11-09T14:21:11.000Z
2022-03-31T23:17:33.000Z
tensorflow/core/kernels/sparse_concat_op_gpu.cu.cc
EricRemmerswaal/tensorflow
141ff27877579c81a213fa113bd1b474c1749aca
[ "Apache-2.0" ]
104,981
2015-11-09T13:40:17.000Z
2022-03-31T19:51:54.000Z
/* Copyright 2021 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...
41.195489
80
0.68069
EricRemmerswaal
c81a8400836f894b503597b48b8c795fc7afccd0
36,032
cxx
C++
PWGCF/FEMTOSCOPY/AliFemtoUser/AliFemtoESDTrackCut.cxx
Tingchenxi/AliPhysics
16ea676341c0d417efa849673baa54bed717cd54
[ "BSD-3-Clause" ]
null
null
null
PWGCF/FEMTOSCOPY/AliFemtoUser/AliFemtoESDTrackCut.cxx
Tingchenxi/AliPhysics
16ea676341c0d417efa849673baa54bed717cd54
[ "BSD-3-Clause" ]
null
null
null
PWGCF/FEMTOSCOPY/AliFemtoUser/AliFemtoESDTrackCut.cxx
Tingchenxi/AliPhysics
16ea676341c0d417efa849673baa54bed717cd54
[ "BSD-3-Clause" ]
1
2018-09-22T01:09:25.000Z
2018-09-22T01:09:25.000Z
/* *************************************************************************** * * $Id$ * * *************************************************************************** * * * * *************************************************************************** * * $Log$ * Revision 1.3 2007/05/22 09:01:42 akisiel * Add the pos...
29.437908
136
0.578264
Tingchenxi
c81d02b987611180df979fc2e4d959b222069e79
4,595
hpp
C++
vm/builtin/float.hpp
godfat/rubinius
d6a7a3323af0348800118ccd0b13fdf80adbbcef
[ "BSD-3-Clause" ]
3
2015-02-02T01:21:27.000Z
2016-04-29T22:30:01.000Z
vm/builtin/float.hpp
godfat/rubinius
d6a7a3323af0348800118ccd0b13fdf80adbbcef
[ "BSD-3-Clause" ]
null
null
null
vm/builtin/float.hpp
godfat/rubinius
d6a7a3323af0348800118ccd0b13fdf80adbbcef
[ "BSD-3-Clause" ]
1
2018-03-04T03:19:02.000Z
2018-03-04T03:19:02.000Z
#ifndef RBX_FLOAT_HPP #define RBX_FLOAT_HPP #include "builtin/class.hpp" #include "builtin/object.hpp" #include "type_info.hpp" /* Begin borrowing from MRI 1.8.6 stable */ #if defined(__FreeBSD__) && __FreeBSD__ < 4 #include <floatingpoint.h> #endif #include <math.h> #include <float.h> namespace rubinius { class ...
28.899371
68
0.663765
godfat
c81d408903f8057f36faf3dace43172b0bced3b4
1,253
cpp
C++
MMOCoreORB/src/server/zone/objects/tangible/sign/SignObjectImplementation.cpp
V-Fib/FlurryClone
40e0ca7245ec31b3815eb6459329fd9e70f88936
[ "Zlib", "OpenSSL" ]
18
2017-02-09T15:36:05.000Z
2021-12-21T04:22:15.000Z
MMOCoreORB/src/server/zone/objects/tangible/sign/SignObjectImplementation.cpp
V-Fib/FlurryClone
40e0ca7245ec31b3815eb6459329fd9e70f88936
[ "Zlib", "OpenSSL" ]
61
2016-12-30T21:51:10.000Z
2021-12-10T20:25:56.000Z
MMOCoreORB/src/server/zone/objects/tangible/sign/SignObjectImplementation.cpp
V-Fib/FlurryClone
40e0ca7245ec31b3815eb6459329fd9e70f88936
[ "Zlib", "OpenSSL" ]
71
2017-01-01T05:34:38.000Z
2022-03-29T01:04:00.000Z
/* * SignObjectImplementation.cpp * * Created on: Nov 20, 2010 * Author: crush */ #include "server/zone/objects/tangible/sign/SignObject.h" #include "server/zone/objects/creature/CreatureObject.h" #include "server/zone/objects/player/sui/messagebox/SuiMessageBox.h" #include "server/zone/objects/building/Bu...
29.139535
97
0.782123
V-Fib
c81e7a2bdc8f3d46e5e2b0358aa0644afae5a269
4,919
cpp
C++
src/devices/bus/nes/cne.cpp
Robbbert/messui
49b756e2140d8831bc81335298ee8c5471045e79
[ "BSD-3-Clause" ]
26
2015-03-31T06:25:51.000Z
2021-12-14T09:29:04.000Z
src/devices/bus/nes/cne.cpp
Robbbert/messui
49b756e2140d8831bc81335298ee8c5471045e79
[ "BSD-3-Clause" ]
null
null
null
src/devices/bus/nes/cne.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:Fabio Priuli /*********************************************************************************************************** NES/Famicom cartridge emulation for C&E PCBs Here we emulate the following PCBs * C&E Decathlon [mapper 244] * C&E Feng Shen Bang [mapper 246] ...
22.257919
127
0.603985
Robbbert
c81f7ec1089411b0df479216d500b675ca1b6ff4
399
cpp
C++
docs/parallel/concrt/codesnippet/CPP/best-practices-in-the-parallel-patterns-library_8.cpp
bobbrow/cpp-docs
769b186399141c4ea93400863a7d8463987bf667
[ "CC-BY-4.0", "MIT" ]
965
2017-06-25T23:57:11.000Z
2022-03-31T14:17:32.000Z
docs/parallel/concrt/codesnippet/CPP/best-practices-in-the-parallel-patterns-library_8.cpp
bobbrow/cpp-docs
769b186399141c4ea93400863a7d8463987bf667
[ "CC-BY-4.0", "MIT" ]
3,272
2017-06-24T00:26:34.000Z
2022-03-31T22:14:07.000Z
docs/parallel/concrt/codesnippet/CPP/best-practices-in-the-parallel-patterns-library_8.cpp
bobbrow/cpp-docs
769b186399141c4ea93400863a7d8463987bf667
[ "CC-BY-4.0", "MIT" ]
951
2017-06-25T12:36:14.000Z
2022-03-26T22:49:06.000Z
// Performs the given work function on the data element of the tree and // on each child. template<class Function> void tree::for_all(Function& action) { // Perform the action on each child. parallel_for_each(begin(_children), end(_children), [&](tree& child) { child.for_all(action);...
30.692308
76
0.626566
bobbrow
c81fe98c66e0a10ea0fb3ed08c3f4a34de5072df
2,545
cpp
C++
Online Judges/Huxley/955OLabirintoDoKruskaltauro.cpp
NelsonGomesNeto/ProgramC
e743b1b869f58f7f3022d18bac00c5e0b078562e
[ "MIT" ]
3
2018-12-18T13:39:42.000Z
2021-06-23T18:05:18.000Z
Online Judges/Huxley/955OLabirintoDoKruskaltauro.cpp
NelsonGomesNeto/ProgramC
e743b1b869f58f7f3022d18bac00c5e0b078562e
[ "MIT" ]
1
2018-11-02T21:32:40.000Z
2018-11-02T22:47:12.000Z
Online Judges/Huxley/955OLabirintoDoKruskaltauro.cpp
NelsonGomesNeto/ProgramC
e743b1b869f58f7f3022d18bac00c5e0b078562e
[ "MIT" ]
6
2018-10-27T14:07:52.000Z
2019-11-14T13:49:29.000Z
#include <bits/stdc++.h> #include <limits.h> using namespace std; #define pb(a) push_back(a) #define mp(a,b) make_pair(a,b) #define inf INT_MAX int waitTime(int period, int tempo) { return(period - tempo % period); } void dijkstra(vector<vector<pair<int, int> > > graph, int **cost, int start, int period) { for (i...
25.969388
88
0.489194
NelsonGomesNeto
c820581005b20220c023f536b9d1545fd55bf07a
5,608
cpp
C++
modules/juce_dsp/processors/juce_ProcessorChain_test.cpp
luzpaz/JUCE
2b16c1b94c90d0db3072f6dc9da481a9484d0435
[ "ISC" ]
null
null
null
modules/juce_dsp/processors/juce_ProcessorChain_test.cpp
luzpaz/JUCE
2b16c1b94c90d0db3072f6dc9da481a9484d0435
[ "ISC" ]
null
null
null
modules/juce_dsp/processors/juce_ProcessorChain_test.cpp
luzpaz/JUCE
2b16c1b94c90d0db3072f6dc9da481a9484d0435
[ "ISC" ]
null
null
null
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2022 - Raw Material Software Limited JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of...
33.380952
100
0.532275
luzpaz
c821041336f42b23b4131c3abccb6bced4e64d39
7,363
cpp
C++
winston/external/asio/src/examples/cpp11/operations/composed_3.cpp
danie1kr/winston
18fe865dc59e8315cb1d85c6fa60c4ddeaf83202
[ "MIT" ]
172
2018-10-31T13:47:10.000Z
2022-02-21T12:08:20.000Z
winston/external/asio/src/examples/cpp11/operations/composed_3.cpp
danie1kr/winston
18fe865dc59e8315cb1d85c6fa60c4ddeaf83202
[ "MIT" ]
51
2018-11-01T12:46:25.000Z
2021-12-14T15:16:15.000Z
winston/external/asio/src/examples/cpp11/operations/composed_3.cpp
danie1kr/winston
18fe865dc59e8315cb1d85c6fa60c4ddeaf83202
[ "MIT" ]
72
2018-10-31T13:50:02.000Z
2022-03-14T09:10:35.000Z
// // composed_3.cpp // ~~~~~~~~~~~~~~ // // Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // 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) // #include <asio/bind_executor.hpp> #incl...
38.150259
80
0.682602
danie1kr
c82275b68ae3cee945f5187d4807aef8b105eea5
10,641
cc
C++
src/msgpass/GlobalSynchronizeDevThr.cc
cea-hpc/pattern4gpu
bf606708b6a8bad1041369814e8443b7f1dedcef
[ "Apache-2.0" ]
1
2022-03-23T10:33:16.000Z
2022-03-23T10:33:16.000Z
src/msgpass/GlobalSynchronizeDevThr.cc
cea-hpc/pattern4gpu
bf606708b6a8bad1041369814e8443b7f1dedcef
[ "Apache-2.0" ]
null
null
null
src/msgpass/GlobalSynchronizeDevThr.cc
cea-hpc/pattern4gpu
bf606708b6a8bad1041369814e8443b7f1dedcef
[ "Apache-2.0" ]
null
null
null
#include "msgpass/VarSyncMng.h" #include "msgpass/PackTransfer.h" #include <arcane/IParallelMng.h> #include <arcane/MeshVariableScalarRef.h> #include <arcane/MeshVariableArrayRef.h> #include <arcane/VariableBuildInfo.h> #include <thread> #include <mpi.h> /*------------------------------------------------------------...
36.56701
106
0.698807
cea-hpc
c824e57865e8752c5e9f6a7d37207b4e21d82cee
1,095
cpp
C++
coj.uci.cu/TobbyandSequence.cpp
facug91/OJ-Solutions
9aa55be066ce5596e4e64737c28cd3ff84e092fe
[ "Apache-2.0" ]
6
2016-09-10T03:16:34.000Z
2020-04-07T14:45:32.000Z
coj.uci.cu/TobbyandSequence.cpp
facug91/OJ-Solutions
9aa55be066ce5596e4e64737c28cd3ff84e092fe
[ "Apache-2.0" ]
null
null
null
coj.uci.cu/TobbyandSequence.cpp
facug91/OJ-Solutions
9aa55be066ce5596e4e64737c28cd3ff84e092fe
[ "Apache-2.0" ]
2
2018-08-11T20:55:35.000Z
2020-01-15T23:23:11.000Z
/* By: facug91 From: http://coj.uci.cu/24h/problem.xhtml?abb=2972 Name: Tobby and Sequence Number: 2972 Date: 11/07/2014 */ #include <iostream> #include <cstdio> #include <cstdlib> #include <string> #include <cstring> #include <cmath> #include <algorithm> #include <vector> #include <queue> #inclu...
17.95082
52
0.627397
facug91
c825e7f6b100bab1168fd79d5f5f1a856dc46b24
2,232
cpp
C++
OVFP426/Plugins/OVFPPlugin/Source/OVFPPlugin/Private/OVFPPluginStyle.cpp
ACaesuraIsStillMusic/Open-Virtual-Film-Project
f4cfb901da32d8101b7635aa5caed3fc075d6dd7
[ "Unlicense", "MIT" ]
15
2020-12-11T17:00:02.000Z
2022-03-08T04:43:56.000Z
OVFP425/Plugins/OVFPPlugin/Source/OVFPPlugin/Private/OVFPPluginStyle.cpp
ACaesuraIsStillMusic/Open-Virtual-Film-Project
f4cfb901da32d8101b7635aa5caed3fc075d6dd7
[ "Unlicense", "MIT" ]
null
null
null
OVFP425/Plugins/OVFPPlugin/Source/OVFPPlugin/Private/OVFPPluginStyle.cpp
ACaesuraIsStillMusic/Open-Virtual-Film-Project
f4cfb901da32d8101b7635aa5caed3fc075d6dd7
[ "Unlicense", "MIT" ]
2
2020-12-10T22:54:05.000Z
2021-07-22T10:25:22.000Z
// Copyright Dan Corrigan 2020 All Rights Reserved. #include "OVFPPluginStyle.h" #include "OVFPPlugin.h" #include "Framework/Application/SlateApplication.h" #include "Styling/SlateStyleRegistry.h" #include "Slate/SlateGameResources.h" #include "Interfaces/IPluginManager.h" TSharedPtr< FSlateStyleSet > FOVFPPluginStyl...
31
129
0.765681
ACaesuraIsStillMusic
c826867517354d4f1c4da53834c26f2709b20b43
1,615
cpp
C++
Sample14_1/app/src/main/cpp/bndev/ThreadTask.cpp
luopan007/Vulkan_Develpment_Samples
1be40631e3b2d44aae7140f0ef17c5643a86545e
[ "Unlicense" ]
5
2020-11-20T00:06:30.000Z
2021-12-07T11:39:17.000Z
Sample15_2/app/src/main/cpp/bndev/ThreadTask.cpp
luopan007/Vulkan_Develpment_Samples
1be40631e3b2d44aae7140f0ef17c5643a86545e
[ "Unlicense" ]
null
null
null
Sample15_2/app/src/main/cpp/bndev/ThreadTask.cpp
luopan007/Vulkan_Develpment_Samples
1be40631e3b2d44aae7140f0ef17c5643a86545e
[ "Unlicense" ]
7
2021-01-01T10:54:58.000Z
2022-01-13T02:21:54.000Z
#include "ThreadTask.h" #include "MyVulkanManager.h" #include "ShaderQueueSuit_CommonTexLight.h" void ThreadTask::doTask() { MyVulkanManager::init_vulkan_instance(); MyVulkanManager::enumerate_vulkan_phy_devices(); MyVulkanManager::create_vulkan_devices(); MyVulkanManager::create_vulkan_CommandBuffer();...
37.55814
54
0.778947
luopan007
c82831f16eef38e0e073485241d80aa03272da99
78
cxx
C++
Modules/ThirdParty/VNL/src/vxl/core/vnl/Templates/vnl_matrix_fixed+double.2.8-.cxx
rdsouza10/ITK
07cb23f9866768b5f4ee48ebec8766b6e19efc69
[ "Apache-2.0" ]
3
2019-11-19T09:47:25.000Z
2022-02-24T00:32:31.000Z
Modules/ThirdParty/VNL/src/vxl/core/vnl/Templates/vnl_matrix_fixed+double.2.8-.cxx
rdsouza10/ITK
07cb23f9866768b5f4ee48ebec8766b6e19efc69
[ "Apache-2.0" ]
1
2019-03-18T14:19:49.000Z
2020-01-11T13:54:33.000Z
Modules/ThirdParty/VNL/src/vxl/core/vnl/Templates/vnl_matrix_fixed+double.2.8-.cxx
rdsouza10/ITK
07cb23f9866768b5f4ee48ebec8766b6e19efc69
[ "Apache-2.0" ]
1
2022-02-24T00:32:36.000Z
2022-02-24T00:32:36.000Z
#include <vnl/vnl_matrix_fixed.hxx> VNL_MATRIX_FIXED_INSTANTIATE(double,2,8);
26
41
0.833333
rdsouza10
c829ca837e3e275e946ac03ba0341d1c7314fdec
919
cpp
C++
ch16/ex16.5/main.cpp
regconfi/Cpp-Primer
6e59f24f4c7f3be4f679b7d29084d9d859a463d9
[ "CC0-1.0" ]
46
2015-07-07T11:13:12.000Z
2022-03-27T10:20:54.000Z
ch16/ex16.5/main.cpp
lafener/Cpp-Primer
8cf1568f2d27622bce2d41493158f58527e5072f
[ "CC0-1.0" ]
11
2015-03-10T12:52:06.000Z
2015-04-20T12:24:00.000Z
ch16/ex16.5/main.cpp
lafener/Cpp-Primer
8cf1568f2d27622bce2d41493158f58527e5072f
[ "CC0-1.0" ]
65
2015-07-01T14:15:48.000Z
2021-04-10T08:44:19.000Z
/*************************************************************************** * @file main.cpp * @author Alan.W * @date 02 Feb 2014 * 13 Oct 2014 * @remark This code is for the exercises from C++ Primer 5th Edition * @note ***************************************************...
24.184211
77
0.460283
regconfi
c829db6408df02dec00f6c8868b7671672578f89
6,263
cc
C++
mindspore/core/ops/dynamic_resize_nearest_neighbor.cc
httpsgithu/mindspore
c29d6bb764e233b427319cb89ba79e420f1e2c64
[ "Apache-2.0" ]
1
2022-02-23T09:13:43.000Z
2022-02-23T09:13:43.000Z
mindspore/core/ops/dynamic_resize_nearest_neighbor.cc
949144093/mindspore
c29d6bb764e233b427319cb89ba79e420f1e2c64
[ "Apache-2.0" ]
null
null
null
mindspore/core/ops/dynamic_resize_nearest_neighbor.cc
949144093/mindspore
c29d6bb764e233b427319cb89ba79e420f1e2c64
[ "Apache-2.0" ]
null
null
null
/** * Copyright 2021 Huawei Technologies Co., Ltd * * 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...
44.735714
120
0.695673
httpsgithu
c82ad37e70c228f2baedd5caa9553d6d07b8d2fa
277
cpp
C++
benchmark/raycast.cilk.cpp
mikerainey/taskparts
27d4bdda15a5c370c25df6ce8be1233362107cc8
[ "MIT" ]
null
null
null
benchmark/raycast.cilk.cpp
mikerainey/taskparts
27d4bdda15a5c370c25df6ce8be1233362107cc8
[ "MIT" ]
null
null
null
benchmark/raycast.cilk.cpp
mikerainey/taskparts
27d4bdda15a5c370c25df6ce8be1233362107cc8
[ "MIT" ]
null
null
null
#include "cilk.hpp" #include "raycast.hpp" int main() { taskparts::benchmark_cilk([&] { // benchmark benchmark(); }, [&] { // setup gen_input(); }, [&] { // teardown // later: write results to outfile }, [&] { // reset reset(); }); return 0; }
17.3125
46
0.519856
mikerainey
c82bbdfa543410901a5507226ae6a2c12e406136
3,292
cc
C++
cplusplus/leetcode/valid_parentheses/valid_parentheses.cc
ASMlover/study
5878f862573061f94c5776a351e30270dfd9966a
[ "BSD-2-Clause" ]
22
2015-05-18T07:04:36.000Z
2021-08-02T03:01:43.000Z
cplusplus/leetcode/valid_parentheses/valid_parentheses.cc
ASMlover/study
5878f862573061f94c5776a351e30270dfd9966a
[ "BSD-2-Clause" ]
1
2017-08-31T22:13:57.000Z
2017-09-05T15:00:25.000Z
cplusplus/leetcode/valid_parentheses/valid_parentheses.cc
ASMlover/study
5878f862573061f94c5776a351e30270dfd9966a
[ "BSD-2-Clause" ]
6
2015-06-06T07:16:12.000Z
2021-07-06T13:45:56.000Z
// Copyright (c) 2020 ASMlover. 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 ofconditions and...
28.877193
81
0.648542
ASMlover
c82bd1b45b8f3949576cb1a37c6c04ea1f32bbb7
21,098
cpp
C++
src/vm/contractimpl.cpp
danmosemsft/coreclr
04a3d11e4eecec2a4b7dcc81ab1575a57e30e3e2
[ "MIT" ]
6
2017-09-22T06:55:45.000Z
2021-07-02T07:07:08.000Z
src/vm/contractimpl.cpp
danmosemsft/coreclr
04a3d11e4eecec2a4b7dcc81ab1575a57e30e3e2
[ "MIT" ]
3
2018-01-03T00:57:25.000Z
2018-10-05T16:17:52.000Z
src/vm/contractimpl.cpp
danmosemsft/coreclr
04a3d11e4eecec2a4b7dcc81ab1575a57e30e3e2
[ "MIT" ]
2
2017-06-04T15:47:12.000Z
2020-03-16T07:01:47.000Z
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. // // File: contractimpl.cpp // // Keeps track of contract implementations, used primarily in stub dispatch. // // ...
29.46648
130
0.545218
danmosemsft