blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
1f2bb6d6aee1be36f2a180df0dd73189c47bb735
d5d189fff2e027f7aa38ecde58952bcb4b636d47
/include/caffe/layers/tanh_layer.hpp
7a137a681ab9ac3a0588dad08a13842de79673a7
[]
no_license
wyc2015fq/cstd
5979a3c26d5c7f00aadda440b04176dcf043e7dc
664bcb4680a32811767f5541a8aae1551d621598
refs/heads/master
2020-05-15T20:22:19.209717
2019-04-20T16:08:03
2019-04-20T16:08:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,705
hpp
#ifndef CAFFE_TANH_LAYER_HPP_ #define CAFFE_TANH_LAYER_HPP_ #include <vector> #include "caffe/blob.hpp" #include "caffe/layer.hpp" #include "caffe/proto/caffe.pb.h" #include "caffe/layers/neuron_layer.hpp" namespace caffe { /** * @brief TanH hyperbolic tangent non-linearity @f$ * y = \frac{\exp(2x)...
[ "31720406@qq.com" ]
31720406@qq.com
a9262e6ffc0ad336e244a288e71b0c9567ea497b
3ed05581d6fb5044115448e40cee43a6136daa27
/src/token.h
6568facef28f17c183a145e1280187df84eaf3a7
[]
no_license
rwaldron/iv
acb0addbcb682772d437ff738e9555147a108882
40bdb765d82d8e6fa09ffd39f0869f275d238a5a
refs/heads/master
2021-01-17T21:46:42.421227
2010-12-03T16:04:04
2010-12-03T16:04:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,396
h
#ifndef _IV_TOKEN_H_ #define _IV_TOKEN_H_ #include <cstddef> #include <cassert> #include "none.h" namespace iv { namespace core { namespace detail { template<typename T> struct TokenContents { static const char* kContents[]; }; } // namespace iv::core::detail typedef detail::TokenContents<None> TokenContents; class...
[ "utatane.tea@gmail.com" ]
utatane.tea@gmail.com
0884faf714f868d8ff6ac1bff6a149cd1ea7aadd
e3806a74a79aed7dadbb53e41586f9ac8e39199f
/include/deco/types/floating_point.h
614b7aa855be8b824365fb5df5c67046a3ca9e75
[ "Apache-2.0", "LLVM-exception" ]
permissive
Enhex/Deco
8a4f87a6b23e64564064ba6820fd1539ae4623a6
9d5b1532f753d17c979eaa46b4b5b5dcf08198b2
refs/heads/master
2023-06-08T16:27:07.175076
2023-06-06T13:31:08
2023-06-06T13:31:08
115,511,298
92
2
null
2017-12-28T21:15:01
2017-12-27T10:46:49
C++
UTF-8
C++
false
false
1,004
h
#ifndef deco_floating_point_h #define deco_floating_point_h #include "../InputStream.h" #include "../OutputStream.h" #include <fmt/format.h> namespace deco { template<typename T> struct is_single_entry<T, std::enable_if_t<std::is_floating_point_v<T>> > : std::true_type {}; template<typename T> std::enable_if_t<...
[ "enhex0@gmail.com" ]
enhex0@gmail.com
73d197120f878a970986834dcdbe5645dc412ff6
40a725a41533c20c90c0cb7f48a0a2f3f79d7357
/binomial_coefficient.cpp
761954c65850f96c7affaf6d0afb5d5365cad6c3
[]
no_license
akhilchoudhary2k/Solutions-CSES-Problem-Set
ffe98f349340dca45d45252e479771add499bc7e
5a14356f99c5bd17d835e0de754d1fdad85e0451
refs/heads/main
2023-06-12T02:16:05.625796
2021-07-03T20:03:57
2021-07-03T20:03:57
363,860,463
0
0
null
null
null
null
UTF-8
C++
false
false
716
cpp
#include<bits/stdc++.h> using namespace std; #define int long long int mod = 1e9+7; const int N = 1e6; int fact[N+1]; // a^b int power(int a, int b){ if(b==0) return 1; int small = power(a,b/2); int ans = (small*small)%mod; if(b&1) ans *= a; return ans%mod; } int fermat_inverse(int x){ return power(x,mod-2);...
[ "akhil.choudhary2000@gmail.com" ]
akhil.choudhary2000@gmail.com
8fa3196eca92b20258ae2b070ef1caef02e99bfb
58f46a28fc1b58f9cd4904c591b415c29ab2842f
/chromium-courgette-redacted-29.0.1547.57/chrome/browser/storage_monitor/storage_monitor_win.cc
4fcc8f6b2856f377ee57f7c3c533f1c08fb14c9e
[ "BSD-3-Clause" ]
permissive
bbmjja8123/chromium-1
e739ef69d176c636d461e44d54ec66d11ed48f96
2a46d8855c48acd51dafc475be7a56420a716477
refs/heads/master
2021-01-16T17:50:45.184775
2015-03-20T18:38:11
2015-03-20T18:42:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,963
cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/storage_monitor/storage_monitor_win.h" #include <windows.h> #include <dbt.h> #include <fileapi.h> #include "base/win/wrappe...
[ "Khilan.Gudka@cl.cam.ac.uk" ]
Khilan.Gudka@cl.cam.ac.uk
ed436191ff299ed802259d50f8ff00a0c11d42d2
31c3ee6d0ac9a216b4173fe6ab242c36fac62d07
/Disjoint_set.h
dc6fdf716c9d776908599a9c4fff8d6f6f563491
[]
no_license
aishwarya-an/Maze-Solver
d893998e5fc15cf5beb437d30fab81e08ad12959
c5066ce64c88e311964024122c79d9d30ae36c7c
refs/heads/master
2020-05-29T08:48:09.165563
2015-08-10T03:15:12
2015-08-10T03:15:12
68,880,395
0
0
null
null
null
null
UTF-8
C++
false
false
531
h
// This is the declaration of the Disjoint_set class #include <iostream> #include <vector> #ifndef DISJOINT_SET_H #define DISJOINT_SET_H using namespace std; struct cell{ int index; int rank; int representative; }; class Disjoint_set{ private: vector<cell>* set; int elements; int num_of_sets; public: Disjoi...
[ "aishwarya.an95@gmail.com" ]
aishwarya.an95@gmail.com
3b2b93c7e503fd1bf376c4763f07031c07893f36
a83057e19bcfcb208bedf45855b2fd65f7877e73
/WS07/Project1/Project1/Hero.cpp
b4be202b747ce123a9ba43a4014fed6d271acd06
[]
no_license
chenzhao7920/C-Workshops
900d271c3e403d37e7cc1d8b1e19cc83daaa788b
c2379ec04668a03749ea642bddb1a62740c18766
refs/heads/master
2020-06-24T20:42:05.947198
2019-07-26T21:31:53
2019-07-26T21:31:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,684
cpp
//Student Name:Chen Zhao //Student Id:120122189 //Section: SAA #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <cstring> #include "Hero.h" using namespace std; namespace sict { // public function //defalte constructor Hero::Hero() { name[0] = '?'; health = 0; strength = 0; } //three paramete...
[ "chenzhao7920@gmail.com" ]
chenzhao7920@gmail.com
0e6099ac0318df59fc0ae5d265ab005b32c0ab9a
a7eb6c84d31b2cd1e46654102fdfd9c2d3d789a2
/engines/engine/inc/tcp/connection.h
d82bc344c171414c993ae1ca14f62ce6af17282e
[]
no_license
zjh-tech/cplusplus
cd4f90f7d3d7a1537cc658a2cb7038cca017a87c
3388999b537e543cf0249b93cb16ac5376c63ef5
refs/heads/master
2023-03-29T12:03:49.551352
2021-04-07T07:50:26
2021-04-07T07:50:26
333,028,332
1
0
null
null
null
null
UTF-8
C++
false
false
2,940
h
#pragma once #include <string> #include <tuple> #include "engine/inc/tcp/iconnection.h" #include "engine/inc/tcp/netdefine.h" using namespace std; namespace Framework { namespace Tcp { class ISession; class Connection : public enable_shared_from_this<Connection>, public IConnection {...
[ "zhengjinhong@bilibili.com" ]
zhengjinhong@bilibili.com
2b6fcdf502093ce99a181d72ec2f4a68f2c7e10a
f221ab39e0d2c307be6fbf7adf58f636b24bdeea
/include/MIPOMDP.h
d310c17baab7d1e93da50f4b61fe8492319ab64f
[ "BSD-3-Clause" ]
permissive
ChristianFrisson/NMPT
3a40e81e5e69f03980d7460d1d3ccf18d4bc3978
dda56fa5202bde140500120ee472465d386b685c
refs/heads/master
2021-01-20T07:00:10.101779
2018-07-18T00:46:30
2018-07-18T00:46:30
11,305,943
5
1
null
null
null
null
UTF-8
C++
false
false
28,936
h
/* * MIPOMDP.h * FaceTracker * * Created by Nicholas Butko on 10/3/08. * Copyright 2008 __MyCompanyName__. All rights reserved. * */ #ifndef _MIPOMDP_H #define _MIPOMDP_H #include <opencv2/core/core_c.h> #include <iostream> #include <string> #include "OpenCVHaarDetector.h" #include "ObjectDetector.h" #incl...
[ "christian.frisson@gmail.com" ]
christian.frisson@gmail.com
0b6239a59318c6e5d89a699e901a4cb852acbc29
2c4d79335c37fb6c6b207b3d662e1d189909d4c9
/a_game/screens.h
f8cdbdc61c3abdce894233d12a5e3866e98fa062
[]
no_license
bringmethehorizon/TankBattle
40cb1092644587262d1ec8b4b72b5bd471c21033
95807f3df01e7f3b9e63e2e7a9a173d6ead2fae6
refs/heads/master
2021-01-19T14:57:26.813485
2014-04-16T15:23:01
2014-04-16T15:23:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
249
h
#pragma once #include <SFML/Graphics.hpp> #include <iostream> #include <fstream> #include <string> #include <sstream> #include <vector> #include <chrono> #include <random> class cScreen { public : virtual int run (sf::RenderWindow &App) = 0; };
[ "teodor_me@yahoo.com" ]
teodor_me@yahoo.com
de8f0fbab536dd9463e2cf85705e157d7ba9a1d6
5bb2d3364a529f7b15c97d2f3aa175e77af3c695
/cf133A.cpp
f66de85e218c45f696ae1bc4f42ecbc31db4ae9c
[]
no_license
suraj021/Codeforces-Solutions
c589cf3ff72aa5297d06e854c73aa2d587ed4257
7d669635778700c4772674865c7b7560abe2cf89
refs/heads/master
2021-01-17T02:22:27.159917
2018-06-23T15:12:05
2018-06-23T15:12:05
37,797,992
1
0
null
null
null
null
UTF-8
C++
false
false
276
cpp
#include <bits/stdc++.h> using namespace std; int main(){ string s; cin >> s; bool flag= false; for( int i=0; i< s.length(); ++i ) if( s[i]== 'H' || s[i]== 'Q' || s[i]== '9' ){ flag= true; break; } if( flag ) printf("YES\n"); else printf("NO\n"); }
[ "surajbora021@gmail.com" ]
surajbora021@gmail.com
e1f5d7e97913b0b281974c6bcd2d8339305c540e
04af3b839eb8fde7a1662fc9e625864d9673ec05
/core/src/cluster/ClusterControllerClient.cpp
c0a6f58c537eab383ea002e0510043ff24574979
[]
no_license
gralkapk/megamol_pub_backup
d7a53adf53011f9e8b9b2069f908db0413f6baae
7b405a4003d578adbb70cb6a29ffcc8d01e0fca1
refs/heads/master
2021-06-21T17:58:40.648674
2017-08-03T10:32:54
2017-08-03T10:32:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,100
cpp
/* * ClusterControllerClient.cpp * * Copyright (C) 2009 - 2010 by VISUS (Universitaet Stuttgart). * Alle Rechte vorbehalten. */ #include "stdafx.h" #include "mmcore/cluster/ClusterControllerClient.h" #include "mmcore/cluster/CallRegisterAtController.h" #include "mmcore/param/StringParam.h" #include "vi...
[ "grottel@77d55b08-817d-0410-979b-1fec1beb8c2e" ]
grottel@77d55b08-817d-0410-979b-1fec1beb8c2e
ce72e31a7ff6c03000aaa96ea5ae87291d4e6b11
f6bfb3f1ec8708d47a9deb1f2575cab12f85ad0e
/src/UtilConstant.cc
7ed94b0b841354bdd649efd2ce110a160815e816
[]
no_license
hclspring/user-event-code
8216be5942018e8fb02f02d664049a3c13d1d1d2
f3f3bfecf7371e9eeb9c916d5c1dc6945e31717d
refs/heads/master
2023-03-07T18:57:24.590677
2019-02-09T13:57:46
2019-02-09T13:57:46
56,387,611
0
1
null
2023-02-19T14:42:53
2016-04-16T14:21:31
C++
UTF-8
C++
false
false
5,705
cc
#include "UtilConstant.h" #include <iostream> //#include <boost/algorithm/string/case_conv.hpp> #include "Util.h" Problem UtilConstant::toProblem(const std::string& val) { std::string lowercase = Util::to_lower_copy(val); if (lowercase.compare("calc_cost") == 0) { return CALC_COST; } else if (lowercase.compare("...
[ "yespow@gmail.com" ]
yespow@gmail.com
674400c8825c1443e0223cdcf9df1c144d3aba24
d10324106e797b80a8449eddf48ebdb803eab429
/myPTM.cpp
45b1154d0208b58f5b9ea63ba884c9a2d836f405
[]
no_license
yongpitt/PTMOpt
fd370031f94fbc80fac93f0445f65e958c06fb34
0d219f6b41723f3d6bc2c83ee2374a86b47119c9
refs/heads/master
2020-05-17T10:08:20.610390
2013-06-15T21:41:36
2013-06-15T21:41:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,962
cpp
// myIQO.cpp : // #include "stdafx.h" #include <boost/assign.hpp> #include "TranManager.h" #include "Scheduler.h" #include "DataManager.h" using namespace std; string ReadAll(const char* fileName){ string inFileBuf; ifstream ifs(fileName); if (!ifs){ return inFileBuf; } ifs.unsetf(ios::skipws);//unset sk...
[ "mysec@126.com" ]
mysec@126.com
8af6d186ceea7808b0e52a740e81cb851e81ae05
4f995c4e5f995540a20cd86994559ca2a3073cba
/include/fieldkit/gl/PointCloud.h
fb540ba9190d43466b8bca556890b724c130b60f
[]
no_license
rockolo/FieldKit.cpp
ad91ed7ec3e353a403a031f814922242e7d4cabf
097978a23ca1e5407863670d51254267ae42e1b0
refs/heads/master
2021-01-18T03:48:34.206326
2011-03-23T13:51:25
2011-03-23T13:51:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,581
h
/* * _____ __ _____ __ ____ * / ___/ / / /____/ / / / \ FieldKit * / ___/ /_/ /____/ / /__ / / / (c) 2010, FIELD. All rights reserved. * /_/ /____/ /__...
[ "marcus@field.io" ]
marcus@field.io
ad825a7612904cd7727c71faf6189163a0379aae
e11856e67da14193ee29ed150ada1cf9f25930c4
/seq_rtmidi/src/midi_alsa.cpp
61ccf08265f7d18d90e88ed0ca11655240022b67
[]
no_license
fourks/seq66
5f00184e9b9502cbd37fc6028fc4092c71face23
d8edfd5dbbca44d82214a32de4d63d4843c5be79
refs/heads/master
2020-11-27T23:35:37.081999
2019-10-20T13:53:01
2019-10-20T13:53:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
26,934
cpp
/* * This file is part of seq66. * * seq66 is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * seq66 is distributed in th...
[ "ahlstromcj@gmail.com" ]
ahlstromcj@gmail.com
26d47b1b692ebc9fdfcffe2741342ad7dc3cbd3c
f54f058d973efd641cd65b84715b27eec2a6cba7
/DemoDirectX/FrameWork/GameObjects/Player/PlayerJumpThrowingState.cpp
306812fc1a6b11ad3a60366349b37323f9e61d25
[]
no_license
nganle97/Aladdin
bd9cb355e23b2fb9add8442bd5758b9a5912fa73
1c64eb701525dd751820c586acd0e6eaeb8f7278
refs/heads/master
2020-09-05T17:05:50.553274
2019-11-07T06:16:11
2019-11-07T06:16:11
220,164,396
0
0
null
null
null
null
UTF-8
C++
false
false
2,984
cpp
#include "PlayerStandingState.h" #include "Player.h" #include "PlayerRunningState.h" #include "PlayerJumpThrowingState.h" #include "PlayerThrowingState.h" #include "PlayerFallingState.h" #include "PlayerLandingState.h" #include "../../GameDefines/define.h" PlayerJumpThrowingState::PlayerJumpThrowingState(PlayerData* ...
[ "lephutrongngan@gmail.com" ]
lephutrongngan@gmail.com
2c6af4d744732aee3e8e92d6d952fa35501c7b9e
94d1bffbf4b9c7ebe3f97ead01e2ea5df6eb7e39
/src/ShipGraphicsComponent.cpp
b3a6ebb6c1aadc2f66f3d461347bbb447c4dc4c3
[]
no_license
cwbriones/sfml-game
062e968859525ffb65ffc797d02bc04ff96acd70
8b0ad6092185b0af84bad1ef122b7bb2345c65b1
refs/heads/master
2020-05-20T05:59:19.493019
2013-07-18T23:59:58
2013-07-18T23:59:58
9,860,024
0
0
null
null
null
null
UTF-8
C++
false
false
1,215
cpp
#include "Component/ShipGraphicsComponent.h" #include "Entity.h" #include <SFML/Graphics/VertexArray.hpp> namespace demo { ShipGraphicsComponent::ShipGraphicsComponent() { const int NUM_VERTICES = 4; const float SCALE = 2.5; vertices_ = sf::VertexArray(sf::LinesStrip, NUM_VERTICES + 1); const int x...
[ "cwbriones@gmail.com" ]
cwbriones@gmail.com
e54f2be012b01dc8c2df2cd0598e76fa2a5d5b8b
d2190cbb5ea5463410eb84ec8b4c6a660e4b3d0e
/old_hydra/hydra/tags/v8_21/showertofino/hshowertofpidfinder.cc
2091030d832119c47c6373b7a1be9b19e87d50e5
[]
no_license
wesmail/hydra
6c681572ff6db2c60c9e36ec864a3c0e83e6aa6a
ab934d4c7eff335cc2d25f212034121f050aadf1
refs/heads/master
2021-07-05T17:04:53.402387
2020-08-12T08:54:11
2020-08-12T08:54:11
149,625,232
0
0
null
null
null
null
UTF-8
C++
false
false
11,624
cc
//*-- AUTHOR : Jacek Otwinowski //*-- Modified : 19/04/05 by Jacek Otwinowski // //_HADES_CLASS_DESCRIPTION /////////////////////////////////////////////////////////////////////// // // // HShowerTofPIDFinder // // HShowerTofPIDFinder reconstructor is looking for good lepton candidates // in Shower/Tofino detector. I...
[ "waleed.physics@gmail.com" ]
waleed.physics@gmail.com
2587bd0233e2d617cdaab8ef37d658e3140635a9
d2e549a72ae4b7c351183ebd10f4dc3db6459537
/linux/my_application.cc
ceea3d3accbd89380411b589f9ac7a88e76e7723
[ "MIT" ]
permissive
bigV4/termare_ssh
97254525d36a9406f5ae659db6cec69257be529d
d7030e5524282bf907cca7f533380ec69a4db4f2
refs/heads/main
2023-06-25T14:16:06.424289
2021-08-01T03:41:30
2021-08-01T03:41:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,654
cc
#include "my_application.h" #include <flutter_linux/flutter_linux.h> #ifdef GDK_WINDOWING_X11 #include <gdk/gdkx.h> #endif #include "flutter/generated_plugin_registrant.h" struct _MyApplication { GtkApplication parent_instance; char** dart_entrypoint_arguments; }; G_DEFINE_TYPE(MyApplication, my_application, GT...
[ "906262255@qq.com" ]
906262255@qq.com
f3fc13c52d6b910efe03b3823dbe889b0ab972d3
4117c318b7e0cd551a17e6187e675ff3ac2fdcbe
/Clase 2/Ejemplos de clase/firstFor.cpp
20a0a322f70ab50b5e4604bdd08406281006c014
[]
no_license
agustinbc/ICOMDS-ME
2de06bfc67e2ab36cb2b0077362abcd522733564
9a05988a31f1a94cc1b47a8e5d1e9fddff1a53a3
refs/heads/master
2022-11-13T09:28:27.446190
2020-07-08T17:49:59
2020-07-08T17:49:59
272,009,501
1
1
null
null
null
null
UTF-8
C++
false
false
316
cpp
#include <iostream> using namespace std; int main() { int a; cout<<"Ingrese un numero positivo, menor a 128." <<endl; cin>>a; for(int i=0; i<a; i++){ /* i++ es equivalente a decir i = i + 1 que es equivalente a i += 1*/ cout<<"Contando numeros: "<<i+1<<endl; } return 0; }
[ "agustin.bernardo.sfe@gmail.com" ]
agustin.bernardo.sfe@gmail.com
79211dc283fd59815597b0aab636006287370eee
26e688fa40ccfd40a363c70afd3d972d55128a15
/ShoppingSystem/ShoppingSystem/DAL/Ado.h
4af31e50a66b7b9416294ed0b53bf4ed024df1ef
[]
no_license
presscad/OOP-Exercise
963be0aa9e853cad0c8ee88f05dcd3084a4dc9a9
70676e1b9cba2a950f9f72b4804411441b28d4bc
refs/heads/master
2021-06-23T18:28:43.052059
2017-06-03T14:35:44
2017-06-03T14:35:44
null
0
0
null
null
null
null
GB18030
C++
false
false
5,261
h
/*######################################################################## 【文件名】: ado.h 【名 称】: ADO 封装类. 【版 本】: 0.20 【作 者】: 成真 【E-mail】: anyou@sina.com --------------------------------------------------------- 【创建时间】: 20/1/2003 19:08 【修改时间】: 09/4/2003 ------------------------------------------------...
[ "zhouxiaochun_000@163.com" ]
zhouxiaochun_000@163.com
b7e22f8ca0b9f3e4930d8e93b670a2f87f6422af
ee24ef7aaa7d4ab6a66c56e95953414306302df3
/Cpp/SDK/Menu_MainMenu_Lobby_classes.h
aeeb69c754f4ed57d19be40830d427a1cf2a755f
[]
no_license
zH4x-SDK/zAWL-SDK
bfc0573125d3398d892c85eac05a6575592db187
3d7001585dab120480e0d16fc24396f61a1d46c6
refs/heads/main
2023-07-15T11:05:51.834741
2021-08-31T15:10:19
2021-08-31T15:10:19
401,745,502
0
0
null
null
null
null
UTF-8
C++
false
false
1,703
h
#pragma once // Name: AWL, Version: 4.24.3 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Classes //-------------------------------------------------------------...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
c7421d5eca2e87f0735f81d296d2f93c65fbc0ec
6dc16c030b82a731e21057dc613cc44a780b5422
/src/qt/bitcoinunits.cpp
93522beed5c05617843b19f6dc72c9dd3ce02218
[ "MIT" ]
permissive
jajorda2/cryptobugcoin-2
e664c88e9a7bb6314d36213332d7abf173d9d09f
7ac548e30a4eaa4e9c8c03cd52c4c27e00da7ec9
refs/heads/master
2021-05-12T07:45:30.279628
2018-01-12T19:22:20
2018-01-12T19:22:20
117,256,561
0
0
null
null
null
null
UTF-8
C++
false
false
4,299
cpp
#include "bitcoinunits.h" #include <QStringList> BitcoinUnits::BitcoinUnits(QObject *parent): QAbstractListModel(parent), unitlist(availableUnits()) { } QList<BitcoinUnits::Unit> BitcoinUnits::availableUnits() { QList<BitcoinUnits::Unit> unitlist; unitlist.append(BTC); unitlist.append(mBT...
[ "jajorda2@me.com" ]
jajorda2@me.com
a506db3ffbf1bf15ffa9d6583b8457327da80d44
855ca9e93e9bf15fde74fe66c1991920605011e4
/resource/Paragraph.hpp
e4706c0a30b4fb2331cdda84e6fdda6807b28fc8
[ "SGI-B-1.1", "BSD-2-Clause" ]
permissive
szk/reprize
0526959a4affa87ec926c31b7f71c3f925c9a470
a827aa0247f7954f9f36ae573f97db1397645bf5
refs/heads/master
2016-09-06T01:53:33.862334
2016-01-28T15:09:33
2016-01-28T15:09:33
11,900,571
0
1
null
null
null
null
UTF-8
C++
false
false
1,454
hpp
#ifndef PARAGRAPH_HPP_ #define PARAGRAPH_HPP_ namespace reprize { namespace res { class Paragraph : public Node { public: Paragraph(const Str name_, Size32 max_ln_ = 512) : Node(name_), max_ln(max_ln_), updated_ln(0), idx_gap(0), overall_ln(0) { for (Size32 i = 0; max_ln_ > i; ++i) { hi...
[ "s@vram.org" ]
s@vram.org
e5c58c5ad6822ba455937f8a85512db6aa8f9f0d
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE762_Mismatched_Memory_Management_Routines/s01/CWE762_Mismatched_Memory_Management_Routines__delete_array_class_calloc_10.cpp
6efeb6acd2d2a7c3b4f25d452b5f4900fdaca63b
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
4,678
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE762_Mismatched_Memory_Management_Routines__delete_array_class_calloc_10.cpp Label Definition File: CWE762_Mismatched_Memory_Management_Routines__delete_array.label.xml Template File: sources-sinks-10.tmpl.cpp */ /* * @description * CWE: 762 Mismatched Memory Man...
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
6dafe43874d9d5556c3004a0f52e4a84e7c8c91e
9354c19849e72bba1c49c30948803fd6f2b54002
/include/mapnik/plugin.hpp
f2b4ebd58e5de015cec93e016f4079f44d0a70ad
[]
no_license
Whirlwind/mapnik-ios-framework
f3cdb34176421f08e2d406b93d2c45f2237479ce
c85998fd2fdb91cadadfdeec2cd431da9dacfe7e
refs/heads/master
2021-01-17T07:29:50.477130
2013-10-23T06:32:21
2013-10-23T06:32:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,438
hpp
/***************************************************************************** * * This file is part of Mapnik (c++ mapping toolkit) * * Copyright (C) 2011 Artem Pavlenko * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as p...
[ "whirlwindjames@foxmail.com" ]
whirlwindjames@foxmail.com
a94afd07ca2a18e0530e388d7f05fb5f772502fe
600df3590cce1fe49b9a96e9ca5b5242884a2a70
/chrome/browser/search/instant_io_context.cc
6c2c43a56897790a9dcb573c9867a975fb770d00
[ "BSD-3-Clause" ]
permissive
metux/chromium-suckless
efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a
72a05af97787001756bae2511b7985e61498c965
refs/heads/orig
2022-12-04T23:53:58.681218
2017-04-30T10:59:06
2017-04-30T23:35:58
89,884,931
5
3
BSD-3-Clause
2022-11-23T20:52:53
2017-05-01T00:09:08
null
UTF-8
C++
false
false
3,262
cc
// Copyright 2013 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/search/instant_io_context.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/resource_contex...
[ "enrico.weigelt@gr13.net" ]
enrico.weigelt@gr13.net
b4ebbb11683c1bb2e1171028faca790b7e54ec34
17708ae24a167e0a9a8f338a8fa0b5d7096739d7
/binarytree/源.cpp
04b905462c3b37b2928fe6e2b7f475efc4202484
[]
no_license
bobo607/BinaryTree
169df57ae41cc256ba833e20d1654fdb3126e2d9
3956cf5628801b4bbade29b845270ed8f54f1ead
refs/heads/master
2020-07-22T22:44:19.176244
2016-09-09T15:15:54
2016-09-09T15:15:54
67,809,470
0
0
null
null
null
null
GB18030
C++
false
false
3,856
cpp
#include <iostream> using namespace std; #include <stack> #include <assert.h> #include <queue> template <class T> struct Binarytreenode { struct Binarytreenode(T _data) :data(_data) ,PRight(NULL) ,PLeft(NULL) {} T data; Binarytreenode<T>* PLeft; Binarytreenode<T>* PRight; }; template<class T> class Binarytree...
[ "1291048987@qq.com" ]
1291048987@qq.com
0ee35d694a010a0a11a49df9292277966afb1def
011359e589f99ae5fe8271962d447165e9ff7768
/src/burn/misc/post90s/d_tumbleb.cpp
1e55eab42d1edc5b46d00968f84f870adfd3256a
[]
no_license
PS3emulators/fba-next-slim
4c753375fd68863c53830bb367c61737393f9777
d082dea48c378bddd5e2a686fe8c19beb06db8e1
refs/heads/master
2021-01-17T23:05:29.479865
2011-12-01T18:16:02
2011-12-01T18:16:02
2,899,840
1
0
null
null
null
null
UTF-8
C++
false
false
148,258
cpp
#include "tiles_generic.h" #include "burn_ym2151.h" #include "msm6295.h" #include "burn_ym3812.h" static unsigned char DrvInputPort0[8] = {0, 0, 0, 0, 0, 0, 0, 0}; static unsigned char DrvInputPort1[8] = {0, 0, 0, 0, 0, 0, 0, 0}; static unsigned char DrvInputPort2[8] = {0, 0, 0, 0, 0, 0, 0, 0}; static unsigned...
[ "twinaphex1@gmail.com" ]
twinaphex1@gmail.com
623efa29c752cc100a7316a414d8d91e9fc67bb5
4bdb20c69bbc289c491d76179b77fcee4f262f29
/ogsr_engine/xrGame/visual_memory_manager.cpp
36f889f0b8e17174bce6e5e08b48fe7605a9a677
[]
no_license
Roman-n/ogsr-engine
1a42e3f378c93c55ca918be171e2feb0ffd50e4c
6b16bf6593bd8a647f7f150e5cf6f80d7474585f
refs/heads/main
2023-02-22T01:38:06.681481
2018-05-02T20:54:55
2018-05-02T20:54:55
332,519,405
0
0
null
null
null
null
UTF-8
C++
false
false
24,881
cpp
//////////////////////////////////////////////////////////////////////////// // Module : visual_memory_manager.cpp // Created : 02.10.2001 // Modified : 19.11.2003 // Author : Dmitriy Iassenev // Description : Visual memory manager //////////////////////////////////////////////////////////////////////////// #inc...
[ "kdementev@gmail.com" ]
kdementev@gmail.com
15eb571bdfb1a4d9ae52c8260496c134d155cf3a
607066c66f84520792159cc48c0b6fe54d365f7c
/UPCScanner Hash/UPCScanner/BarcodeBSTScanner.cpp
195f3214a094fcbedfa26fbb5599b79943d7c528
[]
no_license
billythemoose/CS300
89fa90f0ed319e1c5391c811390f32a5aa8644a4
90b490f810bf5170d38515fc5e8d8804ebebbdbf
refs/heads/master
2020-03-31T03:53:59.619734
2018-12-03T01:32:27
2018-12-03T01:32:27
151,883,266
0
0
null
null
null
null
UTF-8
C++
false
false
1,267
cpp
#include "BarcodeBSTScanner.h" #include <iostream> #include <fstream> #include <sstream> #include <codecvt> // initialize BST void BarcodeBSTScanner::initialize() { scanner = new BinarySearchTree<UPC>(); } // BST constructor base BarcodeBSTScanner::BarcodeBSTScanner() { initialize(); } // BST destructor Barcode...
[ "mdiegothomas@outlook.com" ]
mdiegothomas@outlook.com
8fdfdb4be7f8b584e15b0dfcec16a976a70fd6d4
b45af136dec39636d6c98f0cae5938b49da9538f
/threads_examples/thread_guard.h
44c1b335dc1b9402350205f8d31aa6d2fd3b70ca
[ "Apache-2.0" ]
permissive
carlosb1/examples-c14
d7647c9913e6782eabe96c64d5cd076500c8fa9c
1db742781a6bfcc5d50cfbd1fed16678399dfcce
refs/heads/master
2020-12-12T11:53:14.934728
2019-03-14T16:57:39
2019-03-14T16:57:39
42,791,871
0
0
null
null
null
null
UTF-8
C++
false
false
331
h
#include <thread> #ifndef THREADGUARD #define THREADGUARD class ThreadGuard { std::thread& t; public: explicit ThreadGuard(std::thread& t_): t(t_) {} ~ThreadGuard(){ if (t.joinable()){ t.join(); } } ThreadGuard(ThreadGuard const&)=delete; ThreadGuard& operator=(ThreadGuard const&)=delete; ...
[ "carlos.baezruiz@gmail.com" ]
carlos.baezruiz@gmail.com
5ca88f0689ca41d765d5da6960159a1fdb8e1174
ad465fee1da7eb36b1c65fd097f6849eb26c0588
/software/arduino/mailbox/mailbox_client/mailbox_client.ino
34d05bfb88b90d74102958c97480862a2c1ca55d
[]
no_license
ermo32/NRF905_sensor
c0065455e1950fe51b6857d795788790fe9b6071
a11c37b7050f3621d1dc7802b4e13fe605b3113e
refs/heads/master
2020-03-14T08:09:58.937917
2018-07-14T19:53:45
2018-07-14T19:53:45
131,518,903
0
0
null
null
null
null
UTF-8
C++
false
false
3,694
ino
/* * Project: nRF905 AVR/Arduino Library/Driver (Low power ping client example) * Author: Zak Kemble, contact@zakkemble.co.uk * Copyright: (C) 2017 by Zak Kemble * License: GNU GPL v3 (see License.txt) * Web: http://blog.zakkemble.co.uk/nrf905-avrarduino-librarydriver/ */ /* * Similar to the ping client example...
[ "erik@moddejonge.com" ]
erik@moddejonge.com
1325ea3a7a99198279fff6c595e36a55a6fb055d
7723ca535274cb071407ccd59ad357ae2029610c
/Count_and_Say/Count_and_Say.cpp
d0e08976446a46843edc9dda488cbd12439cb066
[]
no_license
u-shannne/Leetcode-Practice
11962c4195cbcad098233978fe3d0113eb511fe1
c4544733bcb063f98d73eda695e93ce49c11e50c
refs/heads/master
2023-05-22T19:26:19.308789
2021-06-14T15:38:18
2021-06-14T15:38:18
371,708,970
0
0
null
null
null
null
UTF-8
C++
false
false
742
cpp
#include <iostream> #include <string> #include <vector> #include <math.h> using namespace std; string process(string s = "1") { int times = 0; char sign; string _s; int i = 0; while (i < s.size()) { times = 0; sign = s[i]; while (s[i] == sign) { times+...
[ "ccushane115@alum.ccu.edu.tw" ]
ccushane115@alum.ccu.edu.tw
2ecdce336354f4896a47d6e218a626c786912334
f12fba78fbe3ea306766cb32e27d16a693418203
/ACM-Codebook/Book1 - Graph Theory/spanning-tree/ratio.cpp
aab48ffbe6b5f68c94b74e9dc7dc8d2348d21a7f
[]
no_license
wx-csy/ACM-Code-Library
ffb51f965d84116c8c749428070be951a62a6484
9c0e4d1c434801fae799469add43730a6605da6a
refs/heads/master
2021-01-20T05:37:18.682370
2018-10-16T07:14:50
2018-10-16T07:14:50
89,795,537
1
2
null
null
null
null
UTF-8
C++
false
false
429
cpp
double k; struct edge{ int u, v; double cost, dist; double w(return cost - dist * w); bool operator < (const edge& rhs) const { return w() < rhs.w(); } }; double mst(){ // return sum(dist[e])/sum(cost[e]) for all e in mst } double solve(){ k = 1e5; // initial k estimate double ...
[ "sy_chen@smail.nju.edu.cn" ]
sy_chen@smail.nju.edu.cn
abae6ba8b9cfd842f0c8928ba23846fe6861d8b9
b0bfa899191d57adc5599d3bf3d1df5776bf6e9e
/notes/Monday - 0614/asdf/main.cpp
21f0ae3fae0e5b72243bd6c61b864bcefde41a90
[]
no_license
chris-womack/dataStructures
2e71cc6e0ee9baf43825c83a90bff2f5fe5d221d
717d50a767287643da08d8693d57ed368bd5125c
refs/heads/master
2021-01-01T16:40:02.517650
2014-09-14T00:59:14
2014-09-14T00:59:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,526
cpp
#include <iostream> #include "LinkedListNotes.h" //#include "LinkedListNotes.cpp" using namespace std; struct node{ int x; node *next; // this will be an address }; int main() { int a[4]; for(int i = 0; i < 4; i++) cout << "address of a " << &a[i] << endl; // dynamic memory allocation int *iArray; iArray =...
[ "RedBeard@Chriss-MacBook-Air.local" ]
RedBeard@Chriss-MacBook-Air.local
713ba34c2756d89ba55ea65d544c69f0c5c0bf8c
152f13462437d042efab568e514d4ab6c1e182ee
/Baselib/MsgObjectMgr.cpp
c82957f3024843f1cb0e9f4e470d9bed8aacaedb
[]
no_license
ZhouchaoAlbert/MiniQQ
fc900290482e700dd2908529b37cd44f2e28ed1d
387540f24ec7467c3908cadd6445acf91365e97b
refs/heads/master
2020-09-16T22:03:40.879243
2018-02-25T09:46:43
2018-02-25T09:46:43
66,358,640
4
1
null
null
null
null
UTF-8
C++
false
false
2,172
cpp
#include "MsgObjectMgr.h" CMsgObjectMgr::CMsgObjectMgr() { } CMsgObjectMgr::~CMsgObjectMgr() { } void CMsgObjectMgr::Register(CMsgBase* pMsgBase) { map<CMsgBase*, CMsgObject*>::iterator iter = m_mapMsgObject.find(pMsgBase); if (iter == m_mapMsgObject.end()) { CMsgObject* pMsgObject = new CM...
[ "838944042@qq.com" ]
838944042@qq.com
a329a61f568060b6daa168ed4af576a93d6e591e
b3439873c106d69b6ae8110c36bcd77264e8c5a7
/server/Common/Packets/CGShopSell.h
455d23bf795122f796c08aeca5126cd6fcedbb8d
[]
no_license
cnsuhao/web-pap
b41356411dc8dad0e42a11e62a27a1b4336d91e2
7c9b1f49d9ba8d8e40f8fddae829c2e414ccfeca
refs/heads/master
2021-05-28T01:01:18.122567
2013-11-19T06:49:41
2013-11-19T06:49:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,821
h
// CGShopSell.h // // 客户端通知服务器要卖什么东西 // ////////////////////////////////////////////////////// #ifndef __CGSHOPSELL_H__ #define __CGSHOPSELL_H__ #include "Type.h" #include "Packet.h" #include "PacketFactory.h" #include "DB_Struct.h" namespace Packets { class CGShopSell : public Packet { public: ...
[ "viticm@126.com" ]
viticm@126.com
a17a0212e63f52329a5d1b5260155b6b183ac841
45546c170f5786f52925c34e5cde68e51af119ee
/bluetooth/test.cpp
d76f88b458ffe22bd1209ce0c7375a0e3c48a9da
[]
no_license
Yukariko/raspberry
f0f23cd090bdbf3b2697e7f9a5110f82e40248a5
c3a962b203baeb14c777290aa1122fd2c9288e99
refs/heads/master
2020-03-10T17:54:51.770046
2018-04-14T11:50:33
2018-04-14T11:50:33
129,512,066
0
0
null
null
null
null
UTF-8
C++
false
false
1,033
cpp
#include <stdio.h> #include <string.h> #include <errno.h> #include <wiringPi.h> #include <wiringSerial.h> #include <pthread.h> pthread_t Run_thread; char Data_in[10]; int fd, rcv_cnt=0, rcv_flag=99; void *Thread1(void *pArg) { int i=0; for(;;) { if(serialDataAvail(fd) && (Data_in[i] = serialGetchar(fd)) > 0) { ...
[ "yukariko@github.com" ]
yukariko@github.com
9c1a0b6bbdda11f5974075543e5fb3505efbb910
7fc8fb0260617667635a04589dda0b4e5cf021b5
/Custom Factions/OPFOR/SLA/opfor_standard.hpp
8fa6e7955b81ceb7ba93ba4f1495e3ec50bda867
[]
no_license
The-Slime/missions
e41ca709b017028bbe80bf5f3b4e71b201715571
55de729d3fa25f1976a59bb51b5517fe7fb3317d
refs/heads/master
2021-01-21T04:37:19.590423
2016-05-02T23:41:51
2016-05-02T23:41:51
35,856,046
2
0
null
null
null
null
UTF-8
C++
false
false
13,170
hpp
//Author: //Description: OPFOR (CSAT) Standard class opf_f { //Rifle #define EAST_RIFLE "rhs_weap_akm" #define EAST_RIFLE_MAG "rhs_30Rnd_762x39mm:8","rhs_30Rnd_762x39mm_tracer:2" //GL Rifle #define EAST_GLRIFLE "rhs_weap_akm_gp25" #define EAST_GLRIFLE_MAG "rhs_30Rnd_762x39mm:8","rhs_30Rnd_762x39...
[ "muchopug@gmail.com" ]
muchopug@gmail.com
f13d30135aaef2fb2f5d07b9be7209038f11c46f
fbeaf1efd36bcb937c31e417bc61bc6804fdb5a2
/src/TrajectoryGenerator.cpp
9038ee34edc63799638515f265f795716eb2e89a
[]
no_license
anupriyachhabra/CarND-Path-Planning
c78fc20dd94a4219a1f9df825db40b1f25976beb
c499c81e76666125a75ac99b280048bb9fa6af76
refs/heads/master
2020-12-30T10:50:57.337195
2017-08-14T12:48:03
2017-08-14T12:48:03
98,832,630
2
0
null
null
null
null
UTF-8
C++
false
false
3,976
cpp
// // Created by Anupriya Chhabra on 7/31/17. // #include "TrajectoryGenerator.h" #include "utils/spline.h" vector<vector<double>> TrajectoryGenerator::generateTrajectories(vector<double> car_state, vector<double> previous_path_x, vector<double> previou...
[ "achhabra@stayz.com.au" ]
achhabra@stayz.com.au
b663b83f60235023344dd0eb30fcdf280d559844
dda21f4378e37cf448d17b720da4a1c9eb2b24d7
/SDK/SB_BP_Puddle_Shock_functions.cpp
d5cb3e722c13b29d0422cee17e4dfd76e8781bc0
[]
no_license
zH4x/SpellBreak-FULL-SDK
ef45d77b63494c8771554a5d0e017cc297d8dbca
cca46d4a13f0e8a56ab8ae0fae778dd389d3b404
refs/heads/master
2020-09-12T17:25:58.697408
2018-12-09T22:49:03
2018-12-09T22:49:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
373
cpp
// SpellBreak By Respecter (0.15.340) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "SB_BP_Puddle_Shock_parameters.hpp" namespace SpellSDK { //--------------------------------------------------------------------------- //Functions //---------------------------------------------------------------------...
[ "45327951+realrespecter@users.noreply.github.com" ]
45327951+realrespecter@users.noreply.github.com
bfd56411da78100f3702ad6f9ac122d5fa974b47
0df201774f0f454d13ab46a574cd1cc6c4480da3
/src/HeadingProvider.cpp
3a04038426380a4917a59d49d6d6a29706af9dfe
[]
no_license
PedroHRPBS/positioning_system
b312c46f744bffa6cab132d577e74c349ab7cd87
ddaff3ab756fcd46fd4c40656462f9cfd5e9572b
refs/heads/master
2020-08-30T22:32:46.729178
2019-10-30T11:12:51
2019-10-30T11:12:51
218,508,399
0
0
null
null
null
null
UTF-8
C++
false
false
113
cpp
#include "HeadingProvider.hpp" HeadingProvider::HeadingProvider() { } HeadingProvider::~HeadingProvider() { }
[ "pedro.silva@ku.ac.ae" ]
pedro.silva@ku.ac.ae
903014516cbb84388abe2b62bb8849f27cddaa36
d0d1d920d675eecd86898f369f5c29846674d278
/src/core/alien.cc
bf4ac5c230f638aac163c91ba1899a728567718c
[]
no_license
VSarabudla/spaceships-and-aliens
a243791e4ba22316a3e547dd86d3fabe922a449b
784b2991ec8d6528d105cd4f1130caa2a36e437e
refs/heads/main
2023-01-30T06:22:17.377881
2020-12-14T02:41:04
2020-12-14T02:41:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,003
cc
#include "core/alien.h" shooter::Alien::Alien(const glm::vec2& position, float radius, float movement_speed, int health_points, const ci::Color& bullet_color, float bullet_movement_speed) : Character(position, radius, movement_speed, health_points),...
[ "woodsofnarnia@gail.com" ]
woodsofnarnia@gail.com
4ab2db2cda16dfef5a6c526dc9de5f1e41f3d3b3
6828f3e02ae9935161c3ef4183be012a9216fd0f
/OnlineJudge/BOJ/BOJ/edit algorithm.cpp
bf0a643a71b5e8c620218afa87f51bec74669716
[]
no_license
JungwooKim92/Algorithm
b02ce176daf16fce1a57b5a0b223874f3923793d
b600af27d8b8bf46160bca0c5c0f77e43124372a
refs/heads/master
2020-12-30T16:58:32.411108
2017-07-03T00:48:04
2017-07-03T00:48:04
91,040,678
0
0
null
null
null
null
UTF-8
C++
false
false
652
cpp
#include <iostream> #include <cstdio> #include <algorithm> #include <string> using namespace std; int dp[8][8]; int editDistDP(string str1, string str2, int m, int n) { for (int i = 0; i <= m; i++) { for (int j = 0; j <= m; j++) { if (i == 0) dp[i][j] = j; else if (j == 0) dp[i][j] = i; else if (str1[...
[ "kimwoo0002@naver.com" ]
kimwoo0002@naver.com
079a4d5a2a54f63bdf3486bcff967d24f2444b7a
52ca17dca8c628bbabb0f04504332c8fdac8e7ea
/boost/iostreams/detail/select_by_size.hpp
d429095f06ddce623fb84cec42bb716920f727dd
[]
no_license
qinzuoyan/thirdparty
f610d43fe57133c832579e65ca46e71f1454f5c4
bba9e68347ad0dbffb6fa350948672babc0fcb50
refs/heads/master
2021-01-16T17:47:57.121882
2015-04-21T06:59:19
2015-04-21T06:59:19
33,612,579
0
0
null
2015-04-08T14:39:51
2015-04-08T14:39:51
null
UTF-8
C++
false
false
77
hpp
#include "thirdparty/boost_1_58_0/boost/iostreams/detail/select_by_size.hpp"
[ "qinzuoyan@xiaomi.com" ]
qinzuoyan@xiaomi.com
aa575fc7169ea743d8a9d88f557663b2b991413a
b677894966f2ae2d0585a31f163a362e41a3eae0
/ns3/ns-3.26/src/stats/model/omnet-data-output.cc
106d85cb36d1c8faef48fd32b02d62abcbc0f563
[ "Apache-2.0", "LicenseRef-scancode-free-unknown", "GPL-2.0-only" ]
permissive
cyliustack/clusim
667a9eef2e1ea8dad1511fd405f3191d150a04a8
cbedcf671ba19fded26e4776c0e068f81f068dfd
refs/heads/master
2022-10-06T20:14:43.052930
2022-10-01T19:42:19
2022-10-01T19:42:19
99,692,344
7
3
Apache-2.0
2018-07-04T10:09:24
2017-08-08T12:51:33
Python
UTF-8
C++
false
false
8,043
cc
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2008 Drexel University * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is...
[ "you@example.com" ]
you@example.com
8cb5927090b36397fe16372564ca16f50e65e4ee
66ed3b3bd1f43c5cfed2b2cf0e8343a0bd168e24
/Practica1/codigo/permutacion/codigo/src/pruebapermutacion.cpp
01e751aa4886f4c1ca728370a2022db469347ce9
[]
no_license
matl1995/ALG
f34af5691d118cc690d99e7f39b50921ba50e5e1
275b1e2966bab8e39d5404c70a971c04644459f8
refs/heads/master
2021-03-28T15:17:54.109822
2018-06-02T16:34:29
2018-06-02T16:34:29
123,285,930
0
0
null
null
null
null
UTF-8
C++
false
false
3,381
cpp
#include <iostream> #include "permutacion.h" #include <string> #include <chrono>// Recursos para medir tiempos using namespace std::chrono; template <class T> ostream & operator<<(ostream &os, const vector<T> & d){ for (int i=0;i<d.size();i++) os<<d[i]<<" "; os<<endl; return os; } void MuestraPermutac...
[ "matl1995@correo.ugr.es" ]
matl1995@correo.ugr.es
62fff0c1ab4691c8a91513498c63cef6c2496371
0637909f5b230f9d2907dd8a3031d648cc6cbce1
/mex/armadillo_bits/spdiagview_meat.hpp
cc1c3da37b1df5006db316d387d2bbacaf6cb40a
[ "Apache-2.0" ]
permissive
davidakelley/MFSS
ebcbad0b29e22ed6cffa604fbd8a80ac261616dc
3f7718f6403db69575adff997a05d21d452acbf9
refs/heads/master
2022-11-06T14:57:33.449813
2022-10-31T17:41:42
2022-10-31T17:41:42
165,262,685
12
10
NOASSERTION
2020-05-28T05:25:40
2019-01-11T15:08:34
MATLAB
UTF-8
C++
false
false
19,487
hpp
// Copyright (C) 2015-2016 National ICT Australia (NICTA) // // 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/. // -----------------------------------------------------...
[ "dkelley@frbchi.org" ]
dkelley@frbchi.org
7d6b85a71ac064c38c05d8f726689b6e79aef204
877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a
/app/src/main/cpp/dir521/dir3871/dir5864/dir6285/dir6632/dir6633/file6802.cpp
dac292fe72b0a50348426cb4cc313edca51a3867
[]
no_license
tgeng/HugeProject
829c3bdfb7cbaf57727c41263212d4a67e3eb93d
4488d3b765e8827636ce5e878baacdf388710ef2
refs/heads/master
2022-08-21T16:58:54.161627
2020-05-28T01:54:03
2020-05-28T01:54:03
267,468,475
0
0
null
null
null
null
UTF-8
C++
false
false
111
cpp
#ifndef file6802 #error "macro file6802 must be defined" #endif static const char* file6802String = "file6802";
[ "tgeng@google.com" ]
tgeng@google.com
f217bb12412570ff11ac2da724612df3079839f8
a57efa8fb3aba5e27f9115cc56948fe2b2fd1758
/include/recognition/recog_cdnn.h
05b03f7267b9952cb54a182763edae23df8ed3c8
[]
no_license
zc911/lfstmp
dc4fa8f7c086705fcdd51675a4b1acaa231dc4ee
2817cfdf99f4e77bb186d9a2308934e510d51da6
refs/heads/master
2022-01-19T13:00:32.681388
2017-02-15T02:42:03
2017-02-15T02:42:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
673
h
#ifndef _dgfacesdk_recognition_cdnn_h_ #define _dgfacesdk_recognition_cdnn_h_ #include <string> #include <recognition.h> #include "ExtractMPMetricFeature.h" namespace DGFace{ class CdnnRecog: public Recognition { public: CdnnRecog(std::string configPath, std::string modelDir, bool multi_thread, bool is_encrypt); ...
[ "dell@ubuntu.ubuntu" ]
dell@ubuntu.ubuntu
2e7c5ced280940bb1293e459e39639b571f2c9c0
46671ad91f97e9745c9ba9577de88d12cdcbbcf6
/src/bitcoinrpc.cpp
b8a1d7d1471678f4ce86b3d6fd3c824e6bf47384
[ "MIT" ]
permissive
midnight109/XPP-PennyPinchers
53f8d44e599a4d7b6455d73b5c14289dd2a493b0
7d97fbc1cec4b0c5f6453a6a4b6780df2f4dc5d7
refs/heads/master
2016-09-05T16:59:38.286226
2014-12-13T08:11:09
2014-12-13T08:11:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
48,601
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "init.h" #include "util.h" #include "sync.h" #include "ui_interface.h" #includ...
[ "peacemakers109@gmail.com" ]
peacemakers109@gmail.com
160562f71f0418a5cdc478a49f25ca36a32a228a
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE197_Numeric_Truncation_Error/s01/CWE197_Numeric_Truncation_Error__int_fscanf_to_char_84_bad.cpp
43f1b7a6f6dac031358853c57d0c2ee985a9233c
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
1,392
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE197_Numeric_Truncation_Error__int_fscanf_to_char_84_bad.cpp Label Definition File: CWE197_Numeric_Truncation_Error__int.label.xml Template File: sources-sink-84_bad.tmpl.cpp */ /* * @description * CWE: 197 Numeric Truncation Error * BadSource: fscanf Read data...
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
99a4c7d4b45cb2f4fde41fed40012aae79e4829d
06bed8ad5fd60e5bba6297e9870a264bfa91a71d
/Tables/audiotableframe.cpp
85c6438effc9bbbce7980cac0954b745cc761f5f
[]
no_license
allenck/DecoderPro_app
43aeb9561fe3fe9753684f7d6d76146097d78e88
226c7f245aeb6951528d970f773776d50ae2c1dc
refs/heads/master
2023-05-12T07:36:18.153909
2023-05-10T21:17:40
2023-05-10T21:17:40
61,044,197
4
3
null
null
null
null
UTF-8
C++
false
false
2,545
cpp
#include "audiotableframe.h" #include "audiotablepanel.h" #include <QBoxLayout> #include <QMenu> #include <QMenuBar> #include "savemenu.h" //AudioTableFrame::AudioTableFrame(QWidget *parent) : // BeanTableFrame(parent) //{ //} /** * * <hr> * This file is part of JMRI. * <P> * JMRI is free software; you can redis...
[ "allenck@windstream.net" ]
allenck@windstream.net
befc19a887e3166f065c0fdeda0cfc42faf23887
70ed73fa6cd01661d9cd3f9874a7571ffac4d006
/inc/KMRlum.h
32c16c22a64cc46840eab97346628b430171ee80
[]
no_license
zleba/mcExclusive
87177c3e538dee0e378aab169286c219c97e84ea
cb5f83f0de53a8575625e3dbbb153ff6448f6255
refs/heads/master
2021-09-04T18:51:04.432644
2018-01-21T09:26:26
2018-01-21T09:26:26
109,682,766
0
0
null
null
null
null
UTF-8
C++
false
false
4,281
h
#ifndef _KMRlum_ #define _KMRlum_ #include "Basics.h" #include <iostream> #include <vector> #include <cmath> #include <cstdlib> #include <complex> #include "Pythia8/Pythia.h" using namespace std; class Vec2; struct STATUS; class KMRlum { public: KMRlum(Double sqrtS, Double qMin, Double alphaS, Double mc, Doub...
[ "radek.zlebcik@cern.ch" ]
radek.zlebcik@cern.ch
ad5346e467cab8dd6b8e89f964ee4332c7699a1b
ad0940e1d7bdc25a9c49d71a498e5b6fe34cbfb3
/TrianglePainting/GA.h
6392b27f08b0d201092224dc253ab04752da2a91
[]
no_license
Radostinaa/GeneticDrawing
6c7bb7144cece8b2d813c7dfbce3dc255c54e462
321721400071add2e11614346c56f5b5670dd0cc
refs/heads/master
2020-04-05T23:15:13.986115
2016-06-30T09:17:01
2016-06-30T09:17:01
60,121,469
0
0
null
null
null
null
UTF-8
C++
false
false
672
h
#pragma once #include "Image.h" #include "Vector.h" #include <SDL.h> #include "Random.h" class GA { public: GA(const int _trianglesCount, const SDL_Surface* _original) : trianglesCount(_trianglesCount) { this->originalPixels = (Uint32 *)_original->pixels; } void fitness(Image& image); Image cross(const Image& ...
[ "radostina.dimovaa@gmail.com" ]
radostina.dimovaa@gmail.com
485785e0818e991bd04b0e5260c60cff2274a283
5d83739af703fb400857cecc69aadaf02e07f8d1
/Archive2/86/013655330eb340/main.cpp
bfc79b3736b07a8195a69cfe6a06364687ba4eb2
[]
no_license
WhiZTiM/coliru
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
2c72c048846c082f943e6c7f9fa8d94aee76979f
refs/heads/master
2021-01-01T05:10:33.812560
2015-08-24T19:09:22
2015-08-24T19:09:22
56,789,706
3
0
null
null
null
null
UTF-8
C++
false
false
414
cpp
#include <sstream> #include <map> #include <boost/property_tree/ptree.hpp> #include <boost/property_tree/json_parser.hpp> class Bar; class Foo{ public: Foo() : i(99) {} friend class Bar; private: int i; }; class Bar { static void Test(Foo foo){ std::cout << f...
[ "francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df" ]
francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df
23ba8c2e3c3ea824e580bcc6675079483ce0b983
c9607c45fbffb58e76bc292210b96841329a3893
/SensorOrientation/QuaternionOrientation/QuaternionOrientation.ino
8cd0823b7907f1954733653b83fba6a93489a302
[]
no_license
tanmoyAtb/winger
089ea052de18a5d7407731921239a7c8ad85818f
98add64d3c39021de11dea7173768ccdbbc04595
refs/heads/master
2021-06-07T09:14:48.911213
2016-10-23T10:45:43
2016-10-23T10:45:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,135
ino
/* ================================================================== I2Cdev device library code is placed under the MIT license Copyright (c) 2012 Jeff Rowberg J_RPM: modified to suit reading with PROCESSING 2 ===================================================================== */ // I2Cdev and MPU6050 must be inst...
[ "tanmoy.buet12@gmail.com" ]
tanmoy.buet12@gmail.com
d2d4738be231fffe4c5c3c3d411be9d0be2adede
fb0187e10f0a6834015bd427ee89c34d3c40e3bb
/Arduino/libraries/ros_lib/concert_msgs/AllocateSoftware.h
fad9d089abfa6b3afa8afc3c0ab68aa5523bbb66
[]
no_license
lmgarciagoncalves/nboat
53a40068f82a55a09dfef8c66c73727ff7e3d6cf
1329bb6a8ec4f9be984be62ee9946cc8141ba46a
refs/heads/master
2023-08-24T11:56:43.525177
2021-10-23T18:41:52
2021-10-23T18:41:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,289
h
#ifndef _ROS_SERVICE_AllocateSoftware_h #define _ROS_SERVICE_AllocateSoftware_h #include <stdint.h> #include <string.h> #include <stdlib.h> #include "ros/msg.h" #include "rocon_std_msgs/KeyValue.h" namespace concert_msgs { static const char ALLOCATESOFTWARE[] = "concert_msgs/AllocateSoftware"; class AllocateSoftwa...
[ "davihenriqueds@gmail.com" ]
davihenriqueds@gmail.com
880dce88993ab90f9a4fc16941b7bcbb438edefb
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/ash/metrics/stylus_metrics_recorder.cc
a648c04e4970cb8cb0fcf9265947dd2b7db18f41
[ "BSD-3-Clause" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C++
false
false
5,160
cc
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ash/metrics/stylus_metrics_recorder.h" #include "ash/shell.h" #include "base/logging.h" /* Emit metrics related to stylus utilization: * StylusDetachedFromGarage...
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
2c1ab0b2735c6cd01e5355cf84637875b6c324aa
091afb7001e86146209397ea362da70ffd63a916
/inst/include/boost/simd/ieee/include/functions/ulpdist.hpp
194c4ceef498f7c957eb09738669bec0ec70f9ce
[]
no_license
RcppCore/RcppNT2
f156b58c08863243f259d1e609c9a7a8cf669990
cd7e548daa2d679b6ccebe19744b9a36f1e9139c
refs/heads/master
2021-01-10T16:15:16.861239
2016-02-02T22:18:25
2016-02-02T22:18:25
50,460,545
15
1
null
2019-11-15T22:08:50
2016-01-26T21:29:34
C++
UTF-8
C++
false
false
301
hpp
#ifndef BOOST_SIMD_IEEE_INCLUDE_FUNCTIONS_ULPDIST_HPP_INCLUDED #define BOOST_SIMD_IEEE_INCLUDE_FUNCTIONS_ULPDIST_HPP_INCLUDED #include <boost/simd/ieee/functions/ulpdist.hpp> #include <boost/simd/ieee/functions/scalar/ulpdist.hpp> #include <boost/simd/ieee/functions/simd/common/ulpdist.hpp> #endif
[ "kevinushey@gmail.com" ]
kevinushey@gmail.com
efe40142c86f47c86d84d4b073bc106e67473147
b8623613a8b1af55c60aed34d5bb6133e7ff5753
/College/TicTacToeConFunciones.cpp
b3367cb6b55d2ae1f6838a081351509547f0398e
[]
no_license
alexjr2001/Free
ace5e75b1043de5c951d82a0f5f6ded58bcf5fea
db1f2bc23347b381d89f8f03b3e70be8be9a0fda
refs/heads/master
2023-04-13T12:39:59.922478
2023-04-11T21:40:55
2023-04-11T21:40:55
298,112,913
0
0
null
null
null
null
ISO-8859-1
C++
false
false
9,144
cpp
#include <iostream> //TicTacToe con funciones y play again int jugadores = 0; std::string player1 = "X"; std::string player2 = "O"; int a; //Random quien va a comenzar char lugar[100] = "\nLugares: \n 1) __| 2) |__| 3) |__ \n 4) __| 5) |__| 6) |__ \n 7) | 8) | | 9) |\n\n"; //Leyenda del tablero std::string v1 = " ",...
[ "alexander.gomez@ucsp.edu.pe" ]
alexander.gomez@ucsp.edu.pe
73a5fde4381fbee18dddeb7cbe6ab35d2a1a0c4e
1702be86fb699140f05db0dc153368c19e59e1cc
/vtkm/BinaryOperators.h
99303c966e294425df65e2e492cc6eaf5e6b5f67
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
yisyuanliou/vtk-m-v1.5.0
7377e5ef962032aec0977a7248605958a562caf0
66e5fb7aa78ac327c2154b1a2ace7f88566358f2
refs/heads/main
2023-03-28T09:44:08.181818
2021-04-02T11:34:55
2021-04-02T11:34:55
329,729,614
0
0
NOASSERTION
2021-04-02T11:34:55
2021-01-14T20:42:29
C++
UTF-8
C++
false
false
4,643
h
//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURP...
[ "yisyuan@liuyixuandeMacBook-Pro.local" ]
yisyuan@liuyixuandeMacBook-Pro.local
e76d6bdcf43f4aac2f0158c158dc0ed8be16c0a1
4e643c06d258850b9392dac96b63fa92acacca5e
/160.相交链表.cpp
7351720d7b1ab1978b85d8d9508ce44d27708150
[]
no_license
Mrxiangquan/Leetcode
edeec19ad6b6754ffc97489d909f63dab227723f
f08e1e8421ee1487a0f2b9ed4c36cf16310211c0
refs/heads/main
2023-06-24T19:54:55.521184
2021-07-28T13:16:38
2021-07-28T13:16:38
306,583,042
1
0
null
null
null
null
UTF-8
C++
false
false
1,238
cpp
/* * @lc app=leetcode.cn id=160 lang=cpp * * [160] 相交链表 */ // @lc code=start /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ /* class Solution { public: ListNode *getIntersectionNode(ListNode *headA,...
[ "13297949626@163.com" ]
13297949626@163.com
f2831cc96cd72a534d68bd6345837413b4b5347e
670af94f93e7c7ef680dcc63b770a9bb7bf5071b
/libs/guicore/pre/grid/grid2d.h
2542bcee8276818bf3f62995f15a0b49efea92a6
[]
no_license
Leon-Zhang/prepost-gui
ef2e570bed88bd3232253cfd99e89b3eadfc661f
bff4db57df6a282f6e76e3942dbb02d66fbb5d9e
refs/heads/master
2021-01-01T19:05:10.124321
2017-07-27T04:36:47
2017-07-27T04:36:47
98,504,251
0
0
null
2017-07-27T07:00:00
2017-07-27T07:00:00
null
UTF-8
C++
false
false
665
h
#ifndef GRID2D_H #define GRID2D_H #include "../../guicore_global.h" #include "grid.h" class QVector2D; /// Absract class to store two-dimensional grids. class GUICOREDLL_EXPORT Grid2D : public Grid { public: Grid2D(vtkPointSet* ps, SolverDefinitionGridType::GridType type, ProjectDataItem* parent); G...
[ "kinoue@2cc7cdd0-1db9-4218-aa4a-1d8dad43e0f0" ]
kinoue@2cc7cdd0-1db9-4218-aa4a-1d8dad43e0f0
fa421b183f5bdceaa77cb229f94080af30d9f4ed
96730d79a4f1e874944869458cf76c38d5926bbf
/src/rpcdump.cpp
94567f9b42b7617313316932fa47c33f650403e3
[ "MIT" ]
permissive
HorseCoinProject/Horsecoin
ae40225796570af2211da20d4af07adab101f46f
057bdf236c1d71d5986be469e1f197f345d3bc0c
refs/heads/master
2016-08-06T16:58:33.284292
2014-03-08T14:57:55
2014-03-08T14:57:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,757
cpp
// Copyright (c) 2009-2012 Bitcoin Developers // Copyright (c) 2011-2012 Litecoin Developers // Copyright (c) 2013 HorseCoin Developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "init.h" // for pwalletMain #in...
[ "jack@jack-desktop.(none)" ]
jack@jack-desktop.(none)
a6a04f496ab69fd9b1fedb6bb9bcdfc82fe43338
e9ebdfd1bbe907ac20dc93bb447648e7db3fd793
/System/Library/PrivateFrameworks/AXMediaUtilities.framework/AXMediaUtilities-Structs.h
89e2bdbe88a156fefe7ef627c05ed9fec6724535
[ "MIT" ]
permissive
lechium/tvOS144Headers
ebf9c2b63dc0f497a2173ad7536c46b60170e3cc
e22dcf52662ae03002e3a6d57273f54e74013cb0
refs/heads/master
2023-04-11T05:40:03.461549
2021-04-14T23:52:15
2021-04-14T23:52:15
358,069,450
2
0
null
null
null
null
UTF-8
C++
false
false
3,317
h
/* * This header is generated by classdump-dyld 1.5 * on Wednesday, April 14, 2021 at 2:25:53 PM Mountain Standard Time * Operating System: Version 14.4 (Build 18K802) * Image Source: /System/Library/PrivateFrameworks/AXMediaUti...
[ "kevin.w.bradley@me.com" ]
kevin.w.bradley@me.com
7a48ea1d54191b1c896a4ee958a4b01ac88e7186
937e5fa6f458c070273d5ca6e86929f0130ed538
/src/screens/setup.cpp
b6e9a3b6daeaa17225006dc623359874073315a3
[]
no_license
ivgiuliani/inkframe
80758ee7fe0181c1998d0fee2caf059a22688b14
03dc9ca8914c062819dbbdb55130d2f1a6db3020
refs/heads/master
2023-05-29T18:48:56.793308
2021-06-08T19:49:23
2021-06-08T19:49:23
367,615,931
0
0
null
null
null
null
UTF-8
C++
false
false
319
cpp
#include <Arduino.h> #include "screens/setup.h" #include "fonts/UbuntuMonoBold20pt8b.h" #include "ui.h" void Screen::Setup::setup(Display *display) { UIRoot root(display); auto setup_header = root.insert_relative<UITextBox>(300, 220); setup_header->set("Welcome", &UbuntuMonoBold20pt8b); root.render(); }
[ "giuliani.v@gmail.com" ]
giuliani.v@gmail.com
6b6c622365c5cd57087fcbe9e239aee0a4029d83
855446a66887b383017b8c34aa5305c0e0ee3f2c
/vahan/circle/circleMain.cpp
b5818574ceb617921bf6c573383aac0308e81cbc
[]
no_license
hamletgrigoryan/training
448c7923e03e9662c209398a1b67d1ccd261146f
7893425c09a42c9d46bd2bb49221e413fe1b7c0e
refs/heads/master
2021-01-01T20:35:04.366547
2015-06-04T19:47:17
2015-06-04T19:47:17
34,216,981
0
0
null
2019-04-30T11:31:50
2015-04-19T17:43:22
C++
UTF-8
C++
false
false
727
cpp
#include <iostream> #include "circle.h" /* int main() { double x, y, radius; std::cout << "Input coordinates of circle's center" << "\nx = "; std::cin >> x; std::cout <<"\ny = "; std::cin >> y; Point center(x, y); std::cout << "\nInput the radius" << "\nradius = "; std::cin >> radius; Circle circle(center, ra...
[ "vahan@example.com" ]
vahan@example.com
8477dffd0d9c41ccd90d4d69673cca0d3e6d134e
536e32946c26427a24dda02bec4f33639fbdad91
/robot_sem.h
7153b2ec1117d192868180a60910cf7ed70b6246
[]
no_license
iksanov/concurrent-computing
c8ff8c50f39f78a45ad50c7a1c3e46740129874b
7d834148330e25296252dff67476136690159e7b
refs/heads/master
2021-09-12T22:10:08.601259
2018-04-21T14:57:32
2018-04-21T14:57:32
111,940,152
0
0
null
null
null
null
UTF-8
C++
false
false
1,202
h
#pragma once #include <iostream> #include <mutex> #include <condition_variable> #include <atomic> #include <vector> #include <memory> class Semaphore { public: Semaphore(unsigned long long _cnt = 0): cnt_(_cnt) {}; void signal() { std::unique_lock<std::mutex> lock(mutex_); if (cnt_.fetch_add(...
[ "iksanov@yahoo.com" ]
iksanov@yahoo.com
93b05bbebb471379586c92729f4ab9a182d3d6ae
ef94bb6da6f93eadca46b30ff78dcd7d2e4beee3
/Juki_PCB/Software/pc/NSL_Picky/Pickobear/videoInput0.1995/videoInputSrcAndDemos/VC2005-videoInputDemoWithLib/src/simpleApp.h
dfd389d227d73c1266b1292040266288bbadd36e
[]
no_license
glocklueng/032
10cf69ef5604f993d42f787011642f62261c4473
69bb94e002867f14048c0c9907ce5731bfab5f15
refs/heads/master
2021-01-13T09:47:20.395124
2017-01-27T07:00:07
2017-01-27T07:00:07
80,231,375
1
1
null
null
null
null
UTF-8
C++
false
false
574
h
#ifndef _SIMPLE_APP #define _SIMPLE_APP #include <stdio.h> #include "glfw.h" #define PI 3.141592654 #include <math.h> class simpleApp{ public: simpleApp(); void printYo(); virtual void idle(); virtual void init(); virtual void draw(); virtual void keyDown (char c); virtual void m...
[ "charliex@47c6005b-331e-4be2-8628-a174f3e7207f" ]
charliex@47c6005b-331e-4be2-8628-a174f3e7207f
58e35eec7334111eb1b9f1eb46699f4acc9008ab
3d86cbbe918712d461025018e130f779dfab3f2b
/cpp/test/transfer_returned_uptr_to_sptr.cpp
8e8491026f03f5e300d1e209443b9631a320fc89
[]
no_license
xiaotdl/Sandbox
89a9632b01f92bb7e2b0acf2dbe2988af6c4a57d
653d33345d8493264b4d5bba4361274ff86cc961
refs/heads/master
2022-12-21T06:56:51.771378
2019-04-23T01:43:35
2019-04-23T01:43:35
48,220,817
0
0
null
2022-12-08T02:18:51
2015-12-18T07:26:08
HTML
UTF-8
C++
false
false
755
cpp
#include <iostream> using namespace std; class Klass { public: Klass() { cout << "constructed" << endl; cout << this << endl; } Klass(const Klass& kls) { cout << "copy constructed" << endl; } }; std::unique_ptr<Klass> makeKlass() { return make_unique<Klass>(); // return nullptr; } // To Run:...
[ "xiaotdl@gmail.com" ]
xiaotdl@gmail.com
98bdd0eda968f4c4804b2484677c4537d252d02a
1384ca8daf96ab8a0c2ee55887a0a76024dcc6cf
/Advection/Advection/Source.cpp
adcf49b7e322c9a7fd69c1aa3538fe07d9a8cb8c
[]
no_license
AwakeHateYou/Advection
f336011bb9bd7bfee09609f7f7b193ac81c523d6
3084ff15507e095d471b40d21e14c5c2970c986a
refs/heads/master
2016-09-01T09:41:08.324710
2016-04-11T08:15:53
2016-04-11T08:15:53
55,619,939
0
0
null
null
null
null
UTF-8
C++
false
false
3,377
cpp
#include <fstream> #include <iostream> #include <complex> #include <math.h> #include <omp.h> #define M_PI 3.14159265358979323846 #define N 20 #define D 1.0 #define D1 1.0 #define D2 -3.0 #define W 1.0 #define C 1.0 #define M 1.0 #define P 1.0 using namespace std; complex<double> matrixInitializatio...
[ "eterente94@gmail.com" ]
eterente94@gmail.com
629d9571d22b5fe33dd3b199f145262104f348de
3ea34c23f90326359c3c64281680a7ee237ff0f2
/Data/3649/E
74144421c29f483766fad88151d54aa05b5fea0e
[]
no_license
lcnbr/EM
c6b90c02ba08422809e94882917c87ae81b501a2
aec19cb6e07e6659786e92db0ccbe4f3d0b6c317
refs/heads/master
2023-04-28T20:25:40.955518
2020-02-16T23:14:07
2020-02-16T23:14:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
80,837
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | foam-extend: Open Source CFD | | \\ / O peration | Version: 4.0 | ...
[ "huberlulu@gmail.com" ]
huberlulu@gmail.com
dabfa9bc829e4c8725cd0e47108c2da4d2bd3b72
6b1e2035a7a3d0e556417ee3b984ecd057f4b63a
/include/zephyr/QueueLoop.h
c35d2a122059c2c34cde297c8e10a45330e3bc39
[ "MIT" ]
permissive
DeonPoncini/zephyr
282c557803988e64144bcb641bfcdb4d61f2f6a0
b95616444b44229e5473be13a56d55a04cad0f63
refs/heads/master
2021-01-23T18:50:39.198407
2015-01-31T23:24:36
2015-01-31T23:24:36
28,121,736
0
0
null
null
null
null
UTF-8
C++
false
false
1,556
h
#ifndef ZEPHYR_QUEUELOOP_H #define ZEPHYR_QUEUELOOP_H #include <condition_variable> #include <deque> #include <mutex> #include <utility> namespace zephyr { template <typename T> class QueueLoop { public: QueueLoop(); ~QueueLoop(); bool shouldExit(); void terminate(); bool more() const; void ...
[ "dex1337@gmail.com" ]
dex1337@gmail.com
71754530478ddb2451ebf7d3d981b66ad9d2e754
cdfc9d6fa555dd60f8b5a7c51c187ffb0335cad1
/DiningPhilosophers/DiningPhilosophers-Order/philosopher.h
ea990c091fcf5ca5ed743aa4ed4e93e084262d8d
[ "Apache-2.0" ]
permissive
mexuaz/Concurrency
09867c4f852b90e387e8f5422acec9c02593587e
e7025dc0fa2b95f66ff608ff7eba5cdef837a7d4
refs/heads/master
2020-03-30T17:39:12.925855
2018-10-16T16:22:05
2018-10-16T16:22:05
151,464,374
0
0
null
null
null
null
UTF-8
C++
false
false
1,165
h
#ifndef PHILOSOPHER_H #define PHILOSOPHER_H #include "fork.h" #include "spaghetti_bowl.h" #include <chrono> #include <random> #include <atomic> class philosopher { size_t m_id; fork* mp_leftFork; fork* mp_rightFork; spaghetti_bowl* mp_bowl; bool m_left_first = true; static std::atomic<in...
[ "mehrafsa@live.com" ]
mehrafsa@live.com
2d2d13a8db20dea9de0209d4c18a5430ac7d8a5a
970f176b715614aec2a0569de4ee7c3836a2764f
/PC2/SerialCommandDisposer.cpp
190cc4b13bb9931818570dd02a41db0180e9ada3
[]
no_license
spmno/PC2CPP
9f915eec63cf24f053af1a302edf42ee4f7b18c6
0ba0cfb823a23082c2f3b5358fb662ff1293299d
refs/heads/master
2020-05-20T01:45:01.388028
2015-04-27T03:17:03
2015-04-27T03:17:03
30,697,143
1
0
null
null
null
null
WINDOWS-1252
C++
false
false
801
cpp
#include <memory> #include <mutex> #include "SerialCommandDisposer.h" #include "PartFactory.h" #include "NetServer.h" #include "SerialPortManager.h" #include "MXLogger.h" namespace mxnavi { SerialCommandDisposer::SerialCommandDisposer(void) { } SerialCommandDisposer::~SerialCommandDisposer(void) { } void SerialCom...
[ "sunqingpeng@hotmail.com" ]
sunqingpeng@hotmail.com
34da6ee3c5be327caffc7ec9d28346f05f072b09
dfb7297f114bbff7a89fea86cb9b8e0e16243d01
/TTS/TTS/L1-015.cpp
beb86259a84e6718da84f7ad764425349eea674a
[]
no_license
rainingapple/algorithm-competition-code
c06bd549d44e14c64e808d7026a0204d285f1fb3
809bff5cdf092568de47def7d24d36edef8d0c1e
refs/heads/main
2023-03-30T13:11:23.359366
2021-04-09T01:29:18
2021-04-09T01:29:18
343,407,072
0
0
null
null
null
null
UTF-8
C++
false
false
243
cpp
//#include<iostream> //using namespace std; //int main() { // int n; // char c; // cin >> n >> c; // for (int i = 0;i < (n+1) / 2;i++) { // for (int j = 0;j < n;j++) { // cout << c; // } // cout << endl; // } // return 0; //}
[ "825140645@qq.com" ]
825140645@qq.com
016be5626fe947ed7afa268fcf11fef0923f0bd1
f3a729d3588f6c31975d44b37f1b3a29c01db3cd
/1075B.cpp
dd74379dc894c0a129067136eeafb2eaf9f04e84
[]
no_license
yongwhan/codeforces
887e7cca0b47aa2ba65b1133300c63a808a15590
aa8fa27ca1a07fcb7f9dac5b1ce908b7bfcd49e2
refs/heads/master
2020-11-28T01:47:52.239077
2019-12-23T04:16:29
2019-12-23T04:16:29
229,671,486
0
0
null
2019-12-23T04:05:28
2019-12-23T03:43:38
C++
UTF-8
C++
false
false
825
cpp
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> ii; int main() { cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0); int n,m; cin>>n>>m; vector<int> x(n+m), t(n+m); for (int i=0; i<n+m; i++) cin>>x[i]; for (int i=0; i<n+m; i++) cin>>t[i]; set<int> taxi; int j=0; map...
[ "yongwhan@yongwhan-macbookpro.roam.corp.google.com" ]
yongwhan@yongwhan-macbookpro.roam.corp.google.com
fc6b060a5ec6b6909284866ee432fb38365da9b4
7140863b91f7e85916ce394a9836c82acd40e11e
/game/server/hl2mp/hl2mp_client.cpp
56acd5ee72ffd613786b7758371788d38b5bc702
[]
no_license
newroob/bg2-2007
7e7f7bdd79ef232ca32228fec8a01e7469cbe57f
220c3f3d33840804e0520c37c225e4f6a2748e5e
refs/heads/master
2016-09-06T06:02:41.180887
2013-07-11T17:26:27
2013-07-11T17:26:27
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
6,267
cpp
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============// // // Purpose: // // $NoKeywords: $ // //=============================================================================// /* ===== tf_client.cpp ======================================================== HL2 client/se...
[ "bgmod@d519a5cf-78fe-0310-83d0-8aec7336fec8" ]
bgmod@d519a5cf-78fe-0310-83d0-8aec7336fec8
402787296975a36267f52e22e1854177c843e155
b92919b31f053842ffcd2cb80724e2c5fe14fa46
/!_32bit_Stride_ADD_STRIGNS/marc/marc_INIT.cpp
0fbb67a75c1ff0978c92c2149462a5bf558f354d
[]
no_license
marcclintdion/6_PERSPECTIVE_SHADOW_CONFIG_07
40159088466509ce2ad052a8ad080cc9ed682b2a
8bd02b33946bedcc81e4162475c14442b2c7edee
refs/heads/master
2020-05-22T13:58:21.453173
2015-09-18T11:20:11
2015-09-18T11:20:11
42,717,232
0
0
null
null
null
null
UTF-8
C++
false
false
15,299
cpp
//------------------------------------------------------------------------------------------ #ifdef __APPLE__ ...
[ "marcclintdion@Marcs-iMac.local" ]
marcclintdion@Marcs-iMac.local
b5af6f60d2ad3ab439a95e18fc72e7285ecf96d4
c32ee8ade268240a8064e9b8efdbebfbaa46ddfa
/Libraries/m2sdk/C_XFactoryWorker_TPL_5B2EB7D5.h
d4c37a0c77e1813db18b5b5bb9759d9d358a1a04
[]
no_license
hopk1nz/maf2mp
6f65bd4f8114fdeb42f9407a4d158ad97f8d1789
814cab57dc713d9ff791dfb2a2abeb6af0e2f5a8
refs/heads/master
2021-03-12T23:56:24.336057
2015-08-22T13:53:10
2015-08-22T13:53:10
41,209,355
19
21
null
2015-08-31T05:28:13
2015-08-22T13:56:04
C++
UTF-8
C++
false
false
494
h
// auto-generated file (rttidump-exporter by h0pk1nz) #pragma once #include <C_XFactory_TPL_0D55566A.h> /** C_XFactoryWorker<C_StealableAmmoActorAction,int,C_XFactory<C_ActorAction,int,0,X_FactoryLess<int>>> (VTable=0x01E524C8) */ class C_XFactoryWorker_TPL_5B2EB7D5 : public C_XFactory_TPL_0D55566A::C_XFactoryWorker...
[ "hopk1nz@gmail.com" ]
hopk1nz@gmail.com
c3e74be72c2522fcdd2d27756f95bb7552c6affe
164e709dcf03ce4769c3ba8f874da0666c35bc03
/RtTpsProtoLib/rt_ms_importfromfile.pb.cc
0200f35b9e312ec2cf510a1a0619b96bf8fbe15d
[]
no_license
liq07lzucn/tps
b343894bcfd59a71be48bd47d6eff6e010464457
a3be6dc50c5f9a2ff448ecff3f5df1956e26ad4f
refs/heads/master
2021-06-23T16:35:01.349523
2017-08-30T08:09:02
2017-08-30T08:09:02
null
0
0
null
null
null
null
UTF-8
C++
false
true
94,564
cc
// Generated by the protocol buffer compiler. DO NOT EDIT! #define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION #include "rt_ms_importfromfile.pb.h" #include <algorithm> #include <google/protobuf/stubs/once.h> #include <google/protobuf/io/coded_stream.h> #include <google/protobuf/wire_format_lite_inl.h> #include <g...
[ "genius52@qq.com" ]
genius52@qq.com
44af0d187be01f302c65553e0fd9e34dd7300296
cd3006b1d0970a2f27ac9d9a4040936b64349dbd
/project/1106/imgTool.cpp
3b307372b19fa1f8ea0386c5a5529a0efb9d4e95
[]
no_license
jrvstw/homework
2528194a1b917d290b338bf31fe3a5515a7bf02d
fea8f724465283aec911f4084cd640fa8e3efa5a
refs/heads/master
2021-01-20T10:21:31.027181
2018-11-23T08:21:29
2018-11-23T08:21:29
90,347,870
0
1
null
null
null
null
UTF-8
C++
false
false
6,942
cpp
#include "imgTool.h" using namespace std; const QRgb black = 0xFF000000; const QRgb white = 0xFFFFFFFF; const QRgb label = 0xFFFFFFFE; const double pi = 3.1415926; QImage dwt(QImage source, int level, int width, int height) { QImage copy = source.scaled(width, height, Qt::IgnoreAspectRatio); int m[1024][1024]...
[ "ye.jia.wei@outlook.com" ]
ye.jia.wei@outlook.com
c850b5370227c0ed313289b9935104192b776aa1
72278efb45375cff45a253a53e74dc27c7fe6575
/caffe/include/caffe/layers/filter_layer.hpp
88f8bd80fc843f06edb76dc85944c6b3133f4155
[ "LicenseRef-scancode-public-domain", "BSD-2-Clause", "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "BSD-2-Clause-Views" ]
permissive
psnewer/caffe_openGLES31
acae523f2d166fb3f8c718f7868491b9dd48a2e9
f734d6defe8318ced2858739b359eee8de8ef9bc
refs/heads/master
2021-01-11T12:27:18.971726
2016-12-19T11:35:27
2016-12-19T11:35:27
76,653,182
1
0
null
null
null
null
UTF-8
C++
false
false
2,808
hpp
#ifndef CAFFE_FILTER_LAYER_HPP_ #define CAFFE_FILTER_LAYER_HPP_ #include <vector> #include "caffe/blob.hpp" #include "caffe/layer.hpp" #include "caffe/proto/caffe.pb.h" namespace caffe { /** * @brief Takes two+ Blobs, interprets last Blob as a selector and * filter remaining Blobs accordingly with selector data ...
[ "adnewer@gmail.com" ]
adnewer@gmail.com
c58339df8d431ed6fb99f95943cd359141309965
cefd6c17774b5c94240d57adccef57d9bba4a2e9
/WebKit/Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceValue.cpp
19c6cf003bee840ee1e343734ade5a3615a011a5
[ "BSD-2-Clause", "LGPL-2.0-only", "LGPL-2.1-only", "BSL-1.0" ]
permissive
adzhou/oragle
9c054c25b24ff0a65cb9639bafd02aac2bcdce8b
5442d418b87d0da161429ffa5cb83777e9b38e4d
refs/heads/master
2022-11-01T05:04:59.368831
2014-03-12T15:50:08
2014-03-12T15:50:08
17,238,063
0
1
BSL-1.0
2022-10-18T04:23:53
2014-02-27T05:39:44
C++
UTF-8
C++
false
false
4,870
cpp
/* * Copyright (C) 2011, 2012 Igalia S.L. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This lib...
[ "adzhou@hp.com" ]
adzhou@hp.com
b12679d92872b36d613f1a51dfca095aa976f911
8f05bdf65aef32496a64b29142c67a233a1c1be9
/Amazon/mostCommonWord.cpp
b6d7b7086d3668323c287d7e1ed139f67f317b51
[]
no_license
someshgupta41/leetcode
c3c29f574a4476ad057367718312decb8332c8ca
0c7bcbfd4217645bbf250c4a13c76cbef36221fa
refs/heads/master
2020-04-08T04:01:12.892336
2019-03-20T03:25:53
2019-03-20T03:25:53
158,999,051
0
0
null
null
null
null
UTF-8
C++
false
false
518
cpp
class Solution { public: string mostCommonWord(string p, vector<string>& banned) { unordered_set<string> ban(banned.begin(), banned.end()); unordered_map<string, int> count; for (auto & c: p) c = isalpha(c) ? tolower(c) : ' '; istringstream iss(p); string w; pair<st...
[ "someshgupta41@hotmail.com" ]
someshgupta41@hotmail.com
d6fb8ce6e1ec38cdfa50aa7f39e0788983a6fd51
1302a788aa73d8da772c6431b083ddd76eef937f
/WORKING_DIRECTORY/system/tpm/tpm_manager/server/mock_tpm_nvram.cc
1cc6a7798821623dc75d1d77568a909f9c8ee574
[ "Apache-2.0" ]
permissive
rockduan/androidN-android-7.1.1_r28
b3c1bcb734225aa7813ab70639af60c06d658bf6
10bab435cd61ffa2e93a20c082624954c757999d
refs/heads/master
2021-01-23T03:54:32.510867
2017-03-30T07:17:08
2017-03-30T07:17:08
86,135,431
2
1
null
null
null
null
UTF-8
C++
false
false
3,212
cc
// // 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...
[ "duanliangsilence@gmail.com" ]
duanliangsilence@gmail.com
fa939a20e8c7cd9b0631c135806b14211eedf8a5
a6dd777dc6092146f22af27e835c33b68b6f7a21
/Scan.cpp
4c690baa882671e014d636eb8378016ecc0ce39e
[ "MIT" ]
permissive
Jin02/HeroRPG
0fe41a59ba8344781f0c4221bd50736587f11b68
bcf686ce9d57843e2e29eb495636c42f28b6ebe1
refs/heads/master
2021-05-05T09:11:06.177375
2018-01-28T11:16:44
2018-01-28T11:16:44
119,251,400
1
0
null
null
null
null
UTF-8
C++
false
false
4,246
cpp
#include "MyInclude.h" #include "MyExtern.h" SCAN Scan; void ScanDraw1() { for(int l=0; l<8; l++) { if(Monster2[l].Hp<1) { Monster2[l].blsDead=false; Filed.blsDead2=true; Hero.blsDead2=true; Hero.exp+=90; Hero.money+=80...
[ "quaggan02@gmail.com" ]
quaggan02@gmail.com
c5f4e75aa68c9fc513cc27ad3b33aa6547997730
45b3191a339e696da2e215e765cd3463b78d0d25
/CS370-Shared/homework/ResistanceMatcher/resistancematcher.cpp
cae4175301200daa7165039c6cfa9f0021e41015
[]
no_license
ericaltenburg/cs370
aa9cddc8979d770ce2905e4fd8dbaca3ea742e98
053761826974ad5a1f91b1f9622529b4038a3508
refs/heads/main
2023-05-13T14:46:34.873662
2021-06-06T04:20:24
2021-06-06T04:20:24
321,582,151
0
0
null
null
null
null
UTF-8
C++
false
false
13,100
cpp
/******************************************************************************* * Name : resistancematcher.cpp * Author : Eric Altenburg, Hamzah Nizami, Constance Xu * Date : April 7th, 2020 * Description : Program to match the resistance that the user seeks * Pledge : I pledge my honor th...
[ "ealtenbu@stevens.edu" ]
ealtenbu@stevens.edu
267fda4859b7ccf610ab7447039490feaf708d40
307dee9f6f5e90f4cbd0fd58022b244f5b6288c1
/MQO/MQO/MQO/DebugGraphOverlapQG.h
9606a0979cff035ee8b8704206ef0e08572e47fe
[]
no_license
anhlt18vn/ESSIso
a85bc1210d6eb0fb3591befc1bf3bb66b68e22ea
1ab55fb1f5af9fb0e357cdc6d74f5a6e2e8f2c8e
refs/heads/master
2023-06-05T05:17:28.369905
2021-06-22T13:56:41
2021-06-22T13:56:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
699
h
#pragma once #ifndef DEBUG_GRAPH_OVERLAP_QG_H #define DEBUG_GRAPH_OVERLAP_QG_H #include"AdjacenceListsGraph.h" #include<fstream> /* * Temparary query generator for debugging purpose */ class DebugGraphOverlapQG { private: AdjacenceListsGRAPH * dataGraph; std::ofstream * resultFile; std::ofstream * resultFile...
[ "hoangdzung@github.com" ]
hoangdzung@github.com
9d97fb296807362b1dbbdaa5ae85b9a616d9271a
7925aeb2fda7314a487774e82f2bea63ae75e0d3
/chapter_twelve/practise12-23.cpp
b4d58aef65404da533ccfa90db95b6108ec66629
[]
no_license
zkx349113864/c-_primer_5th
ab3dcb431c7c4634c3f83af1e13affc3523d73ed
b3fd7c3d3dd9f57b8e8033e79d09876edb5e0293
refs/heads/master
2022-02-18T22:55:05.898786
2019-10-07T11:53:24
2019-10-07T11:53:24
192,095,363
0
0
null
null
null
null
UTF-8
C++
false
false
844
cpp
#include <iostream> #include <string> #include <new> #include <string.h> using std::cin; using std::cout; using std::endl; using std::string; int main() { char c1[7] = "hello"; char c2[8] = "world!"; char c3[15]; strcat(c3, c1); strcat(c3, c2); char *cp1 = new char[15]; for (int i = 0; i !=...
[ "zhang349113864@gmail.com" ]
zhang349113864@gmail.com
9919d77b0f41a2074ce98a8366f6420a98f51ad2
ff048f7cbe35ae81c8ec4765a3fa29b829adf782
/Galerkin/src/IO/Segy/SegySeismo.inl
cc7bae5806503f32dbdd7206d864949ccd186c19
[]
no_license
lzhw1991/CNN-for-inverse-problems-in-wave-dynamics
2366911c06d695ebbe16697f71a172a2ece0af59
3d0154cec845e5779891254da4d9bf858d8233df
refs/heads/master
2022-04-02T16:13:57.223232
2020-02-12T20:04:36
2020-02-12T20:04:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
21,447
inl
#include <vector> #include <string> #include <sstream> #include <fstream> #include <iostream> #include <climits> #include <algorithm> #include <math.h> #include "../../Utils/Utils.h" std::vector<std::string> getNextLineAndSplitIntoTokens(std::istream& str, char delim = ';') { std::vector<std::string> result; ...
[ "stankevich.as@phystech.edu" ]
stankevich.as@phystech.edu
dfd0169fae7c379daf94bb0721dec250ea653588
7faf50fcbe2bb69f93210864a7970cf33d276679
/Easy/ArrayPartitionI.hpp
16dda56a9591cdf2a8b873b0856ab53109d4d0dd
[]
no_license
Skifary/leetcode
7e76188aa2e5989d410f06a1e64865486e586710
880462cdeb887ab7b0ca3ff8f4099b8e79d7d13a
refs/heads/master
2021-03-12T20:36:02.751215
2017-07-15T07:36:37
2017-07-15T07:36:37
91,458,735
1
0
null
null
null
null
UTF-8
C++
false
false
624
hpp
// // ArrayPartitionI.hpp // LeetCode // // Created by Skifary on 20/05/2017. // Copyright © 2017 Skifary. All rights reserved. // /* * 561. Array Partition I * * Given an array of 2n integers, your task is to group these integers into n pairs of integer, * * say (a1, b1), (a2, b2), ..., (an, bn) which ma...
[ "376512563@qq.com" ]
376512563@qq.com
f8b953711742e0891f25f56060de97c4399ae39f
fab77712e8dfd19aea9716b74314f998093093e2
/Utility/ShareResource.cpp
0159c442b8cc969b737b2524f68c3512f6008511
[]
no_license
alandigi/tsfriend
95f98b123ae52f1f515ab4a909de9af3724b138d
b8f246a51f01afde40a352248065a6a42f0bcbf8
refs/heads/master
2016-08-12T07:09:23.928793
2011-11-13T15:12:54
2011-11-13T15:12:54
45,849,814
0
2
null
null
null
null
UTF-8
C++
false
false
1,271
cpp
#include "StdAfx.h" #include "include.h" CShareResource::CShareResource(u8 IntSem ) { /* CSemaphore( LONG lInitialCount = 1, LONG lMaxCount = 1, LPCTSTR pstrName = NULL, LPSECURITY_ATTRIBUTES lpsaAttributes = NULL ); */ ptrSemaphore=new CSemaphore(IntSem,1); /* explicit CSingleLock...
[ "soupyman@gmail.com" ]
soupyman@gmail.com
f854a392a7ecd1aaaff1a991e160c62f741e1ee5
07168407ae9a8ac5856b1ba17d56e222fae9ed23
/Max/model1_output/arduivis_MaxMSP_model1_output/arduivis_MaxMSP_model1_output.ino
1f7b3eded3d9e010b19121b3be025450a4f95bdf
[]
no_license
cskonopka/arduivis
67d7ef1957d60b94b47cbc5f9a8a63408fe859ea
b309f364de29ca71829937a50cb250ecf4c35f7d
refs/heads/master
2020-04-15T23:51:46.836524
2020-02-10T04:26:30
2020-02-10T04:26:30
20,000,617
47
16
null
null
null
null
UTF-8
C++
false
false
1,253
ino
/* ~~~~~~~ arduivis - MaxMSP ~~~~~~~ ~~~~~~~~ model#1: output ~~~~~~~~ MaxMSP: arduivis_Max7_model1_MaxMSP_output.maxpat This is an example of how to send data from an Arduino and read it in MaxMSP via a serial buffer. This code is in the public domain written by Christopher Konopka http://cskonopka.github.io/ar...
[ "cskonopka@gmail.com" ]
cskonopka@gmail.com
9b5f653bc8b763b3b2ae9b1ed41f49af15394b4a
33c8b0c3d7428fb6f8eb47c4e745a441c53059d5
/tmp/Code/Runtime/BerserkCore/Strings/Unicode.cpp
5251fe6a40c7ea4e3da8aa6f0d531859ca936acb
[ "MIT" ]
permissive
EgorOrachyov/Berserk
be8d084d8f536d3fb8fa0502e597cdaf84a0e521
13972d73df813e7c2de6a680f3c100171d7be5e7
refs/heads/master
2022-01-12T22:30:31.124909
2021-12-31T17:14:21
2021-12-31T17:14:21
134,462,378
44
4
null
2019-01-22T23:21:32
2018-05-22T19:00:04
C++
UTF-8
C++
false
false
49,380
cpp
/**********************************************************************************/ /* This file is part of Berserk Engine project */ /* https://github.com/EgorOrachyov/Berserk */ /****************************************************************...
[ "egororachyov5@gmail.com" ]
egororachyov5@gmail.com
60e3ab3294973b032592c75145a4581f19cc768a
8ddcc457419e800810c6601060a55c9357140b13
/include/BrownianPointAnimation.h
52d45ccd7c55f2443dae1517f8ed34ef08d85f03
[]
no_license
kimpekoy/Pixel-Effect
3348ad26bcc75147834c0ba7026dda3aa118a332
80450da0b9c8f1264876e2d4d57b2a959366e777
refs/heads/master
2021-01-01T04:31:07.161042
2016-05-26T05:48:45
2016-05-26T05:48:45
59,594,728
0
0
null
null
null
null
UTF-8
C++
false
false
688
h
#pragma once #include "VertexConnectionAnimation.h" class BrownianPointAnimation : public VertexConnectionAnimation { public: void readConfig(Bit::JsonTree* tree); void readParams(Bit::JsonTree* tree, Bit::ParamsRef params); void setup(); void update(); void draw(); void reset(); std::string getConfigName(){...
[ "kimpekoy@hotmail.com" ]
kimpekoy@hotmail.com
1c90c9a202841dbd8b24cae75afd086c289f5bc9
a9ab72c3dd7fdfe8b6e0b1b5e296bf4c39b9989d
/google_list/leetcode354.cpp
6d4a14bf8775908f4f73bdf9995864d8926679c0
[]
no_license
keqhe/leetcode
cd82fc3d98b7fc71a9a08c5e438aa1f82737d76f
86b2a453255c909f94f9ea3be7f2a97a6680a854
refs/heads/master
2020-12-24T06:38:15.444432
2016-12-07T19:15:02
2016-12-07T19:15:02
48,405,123
0
0
null
null
null
null
UTF-8
C++
false
false
947
cpp
bool myCmp(const pair<int, int> & p1, const pair<int, int> & p2) { if (p1.first != p2.first) return p1.first < p2.first; else return p1.second > p2.second; } int LIS(vector<int> & nums) { if (nums.empty()) return 0; int size = nums.size(); //dp[i] denotes the LIS ending at n...
[ "keqhe@cs.wisc.edu" ]
keqhe@cs.wisc.edu