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
93c7e23850a471b7a29c6b3ea29e36810dda0937
f9f728c04934c9fa0071e058e9546da9f7c2d8a2
/font/render/render_text.h
84672de182d05d995f254275f7ab194f73a8652a
[]
no_license
tom-010/animator
b199f4d247200157b60a98c1ff8a79666c361a0c
f45ebfb4423042e06e5885615c4093d427b8b05e
refs/heads/master
2022-11-29T22:03:38.728239
2020-08-19T08:22:04
2020-08-19T08:22:04
288,659,837
0
0
null
null
null
null
UTF-8
C++
false
false
958
h
#ifndef LIB_RENDER_TEXT_H_ #define LIB_RENDER_TEXT_H_ #include <string> #include <iostream> #include <freetype2/ft2build.h> #include FT_FREETYPE_H void render_text(std::string text) { FT_Library ft; if (FT_Init_FreeType(&ft)) { std::cout << "ERROR::FREETYPE: Could not init Freetype Library" << s...
[ "tdeniffel@acm.org" ]
tdeniffel@acm.org
6edd3347fb83616f73a1c5e8e2749cca4a0147dd
6b2e149047952bf8ce611a3097c5ce23794b4902
/B3/functions.cpp
e347f96b020920eea73090f8867cb3abab1488c8
[]
no_license
zvladn7/cpp-lab
ff9096e8b5fff5bcc39e4cd79dbd9142fc16daa1
271ecd0d9ef56fab206ca724b3bd6985158a4ac9
refs/heads/master
2020-08-28T16:16:30.871941
2019-10-31T16:05:17
2019-10-31T16:05:17
217,751,498
0
0
null
null
null
null
UTF-8
C++
false
false
1,130
cpp
#include "functions.hpp" #include <stdexcept> #include <functional> bool checkMarkName(std::string &markName) { if (std::end(markName) != std::find_if(std::begin(markName), std::end(markName), [&](char c) { return !isalnum(c) && (c != '-'); })) { throw std::invalid_argument("You've just sent wrong sequence of...
[ "zybkin11@gmail.com" ]
zybkin11@gmail.com
861b174c53e5f656619e380f0bea297eed52b316
e9c02bb0df7ad3a928cf7c97b8294451eaa8dbc8
/graph-source-code/466-E/8897115.cpp
7f78ad53734161fa10f8da148c45a6ffe4c049a8
[ "MIT" ]
permissive
AmrARaouf/algorithm-detection
b157a534545fa8920bbe94e7307d4b937a74aa60
59f3028d2298804870b32729415d71eec6116557
refs/heads/master
2021-01-13T14:37:04.074339
2015-12-06T21:14:31
2015-12-06T21:14:31
45,905,817
0
0
null
null
null
null
UTF-8
C++
false
false
4,511
cpp
//Language: GNU C++ #include <cstdio> #include <algorithm> using namespace std; #define MAXN 100003 typedef struct Tseg *Pseg; struct Tseg { int mm; int l, r; Pseg left, right; }; void buildseg(Pseg &h, int l, int r, int *a) { if (l == r) { h = NULL; return; } h = new Tseg(...
[ "amr.abdelraouf93@gmail.com" ]
amr.abdelraouf93@gmail.com
110f63e1983d38d941654659e3e539d53036bc27
ebe0cffadf5d04495905bbc75fbfd8acee832f6b
/Cameras/BulletstormFCE/InjectableGenericCameraSystem/GameImageHooker.cpp
65a6c74f880f22bf07011157703cac0e249470a4
[ "BSD-2-Clause", "LicenseRef-scancode-proprietary-license" ]
permissive
FransBouma/InjectableGenericCameraSystem
f123f31c676879561fc3a3e2d03579adf2c1f7cf
bdd9e237cef6caba38b946b18c36713f69ab09b9
refs/heads/master
2023-08-24T19:17:59.563669
2023-04-27T18:59:08
2023-04-27T18:59:08
75,194,811
718
278
BSD-2-Clause
2020-09-23T19:12:50
2016-11-30T14:30:36
C++
UTF-8
C++
false
false
5,566
cpp
//////////////////////////////////////////////////////////////////////////////////////////////////////// // Part of Injectable Generic Camera System // Copyright(c) 2017, Frans Bouma // All rights reserved. // https://github.com/FransBouma/InjectableGenericCameraSystem // // Redistribution and use in source and binary ...
[ "frans@sd.nl" ]
frans@sd.nl
19e87611495f82a5121a0bc25917c209ecdb4b2b
e692b5214140991092f83bd6a4a5186135d4c5b9
/midterm/CSCMatrix.hpp
216b906a9c6a052bdaf02edfd75ee42050fee8b6
[]
no_license
devantormey/AMATH583_HPC
cf9569364dacdaa9b18bc8b8c6736c9631cddf21
f15765bb8d9ec00bddacc7f981e9c38d09c29cad
refs/heads/master
2021-05-25T20:08:15.158066
2020-06-05T20:40:24
2020-06-05T20:40:24
253,903,402
0
0
null
null
null
null
UTF-8
C++
false
false
2,788
hpp
// // This file is part of the course materials for AMATH483/583 at the University of Washington, // Spring 2020 // // Licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License // https://creativecommons.org/licenses/by-nc-sa/4.0/ // // Author: Andrew Lumsdaine // #ifndef AMATH583_...
[ "dtormey@usc.edu" ]
dtormey@usc.edu
cbf06f634b821de69f12c31ada122aba6072b726
b0dbba5497d593039b93ec88cd2fd795f7190d08
/Module04/ex03/IMateriaSource.cpp
984fe8a0b62e263ccc029e3f9bd15f784c9001b1
[]
no_license
chaotic-binary/CPP-42
39ea2879dfbcfdd091aaa2244bdf9c478acc15ed
c0b502ac19d597af98e05a5ef951dbd337a789a0
refs/heads/master
2023-02-17T20:02:40.031194
2021-01-18T17:17:37
2021-01-18T17:17:37
321,784,741
0
0
null
null
null
null
UTF-8
C++
false
false
263
cpp
#include "IMateriaSource.hpp" IMateriaSource::IMateriaSource() { } IMateriaSource::~IMateriaSource() { } IMateriaSource::IMateriaSource(const IMateriaSource &copy) { } IMateriaSource &IMateriaSource::operator=(const IMateriaSource &copy) { return (*this); }
[ "ttamesha@student.21-school.ru" ]
ttamesha@student.21-school.ru
bc5c5a509901b000b6fa58a7805567ad1d6b3913
27ce4604fb653591b83545e064ed0512c3cee09a
/AKBAR - Akbar, the great.cpp
3ebe51ad59b4849c9f9a3640fd1413e3edc38141
[]
no_license
PrinceCuet77/SPOJ
1bfc1e6526161de969359de0331d7605ecc6e400
4994904b1e317ae6578cca0ddfbb1ba108f8f55d
refs/heads/master
2022-11-10T18:46:36.609907
2020-06-20T04:51:21
2020-06-20T04:51:21
261,901,873
0
0
null
null
null
null
UTF-8
C++
false
false
2,699
cpp
#include <bits/stdc++.h> using namespace std; #define node 1000005 vector < int > dist(node), a[node]; vector < bool > visited(node); void bfs(int source, int strength) { queue < int > q; q.push(source); visited[source] = true; dist[source] = 0; while ( !q.empty() ) { ...
[ "prince.cuet.77@gmail.com" ]
prince.cuet.77@gmail.com
f19a936db8c432983efae6c88efe8927b76b750c
6f16173ebd132247ce620dcea38cc5e62750d9fd
/搜索问题/图的遍历顺序-bfs.cpp
5fb8c3671099c90f62029e0ff504884d60e2e08c
[]
no_license
liangwg/codes
74c07982827636ecfdd01232b3a835a31df64d40
7c290f02810eec0f19f73aca74e29cfcae9036a3
refs/heads/master
2021-01-21T10:05:19.680463
2018-10-25T13:20:08
2018-10-25T13:20:08
91,678,828
0
0
null
null
null
null
GB18030
C++
false
false
955
cpp
#include<iostream> using namespace std; int e[101][101],book[101],que[10001]; int main() { int n,m;//n表示有多少个节点,m表示节点之间相连的边数 cin>>n>>m; int i,j; //初始化临接矩阵 for(i=1;i<=n;i++) for(j=1;j<=n;j++) { if(i!=j) e[i][j]=99999999; else e[i][j]=0; } //输入矩阵的相连点 int num1,num2;...
[ "2870875593@qq.com" ]
2870875593@qq.com
8e6ff6e56686345e51351bf3c9223f4e37eb28ac
92a16cec343de1ea988d4f7d611a0b6e44698519
/00-1dof_passivity/simviz.cpp
19b27f54497ec0cab0b8f293c9ee273b8ed75f4e
[]
no_license
mikael-jorda/PandaApplications
216f9a9c05e922457cb5e91f80f8cb6b3fb10042
e01f7cb54a417cad94518fb9b1da8fab5a4360c9
refs/heads/master
2021-06-26T19:56:06.968411
2020-10-29T01:31:23
2020-10-29T01:31:23
144,872,792
3
4
null
null
null
null
UTF-8
C++
false
false
13,328
cpp
// This example application loads a URDF world file and simulates two robots // with physics and contact in a Dynamics3D virtual world. A graphics model of it is also shown using // Chai3D. #include "Sai2Model.h" #include "Sai2Graphics.h" #include "Sai2Simulation.h" #include <dynamics3d.h> #include "redis/RedisClient...
[ "mjorda@stanford.edu" ]
mjorda@stanford.edu
87fd4cbc2a4be4a23360e1a8b207d1678576fe82
b059f48da8e91f9980382d79cad4ff37d48a2ce0
/features/net/netsocket/SocketAddress.h
4aa7f30ecc4f50b50ab1d883d9968ae9594bd1fc
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
WSCKY/RDA5981_Develop
14e784acb68bac313aa439000d848a548a4feadc
318297f6a2a633f72d25ae6fd927f63400a12a34
refs/heads/master
2022-12-01T08:29:47.245168
2020-08-17T09:12:23
2020-08-17T09:12:23
119,050,033
4
8
Apache-2.0
2020-03-08T00:28:14
2018-01-26T12:39:45
C
UTF-8
C++
false
false
5,035
h
/** \addtogroup netsocket */ /** @{*/ /* SocketAddress * Copyright (c) 2015 ARM Limited * * 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-...
[ "hello.kychu@gmail.com" ]
hello.kychu@gmail.com
ee588511a0e3dcca5e1f43dfd75e96443e104229
a9fac4c42e7e284ed1cd020c55eee7f787b380e9
/src/obfuscation.cpp
063884affca28c20153bf7f226e34c565d70ce9b
[ "MIT" ]
permissive
StarNeit/DKCoin
329c943193fe256be143bef33567b91f4d27ac6e
4978663b027f4b1166a98211537a895aa2a4a1c1
refs/heads/master
2020-03-14T07:41:37.461808
2018-04-29T16:40:28
2018-04-29T16:40:28
131,483,630
0
0
null
null
null
null
UTF-8
C++
false
false
83,860
cpp
// Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The DARKCOIN developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "obfuscation.h" #include "coincontrol.h" #include "init.h" #include "...
[ "koneits@outlook.com" ]
koneits@outlook.com
3e8abf7dc7f82aeec76d870028fe4b3b36b6a3ab
7a21e89832c628eed89c6b3bc20c7bdbf609579e
/parralell programming/mpi/search.cpp
c349f697632c2cfaac91991282f52b97b3da0016
[]
no_license
ChaolunWang/neumeric-computation
6880ba9c597a7dcdf9f6f5d5c39315afa111bd88
758d8b8ea7ae757245f4f484f89a24293f1f40c1
refs/heads/master
2021-08-09T03:04:45.096755
2017-11-12T02:50:26
2017-11-12T02:50:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,291
cpp
//----------------------------------search.cpp------------------------- /*This is the cpp file which implement the search algorithm. MPI was used for the parrallel of the code. This code is modified by Chaolun Wang at 09/15/2016 */ # include <cstdlib> # include <iostream> # include <iomanip> # include <ctime> # inclu...
[ "cw13f@my.fsu.edu" ]
cw13f@my.fsu.edu
f9f2699a7bbea80d93fa88ce4f19fc886b50a6fc
22093d268c2901ad92868e1020ea02e618614a33
/tutorial/ports/of/Ex_7_2_texpixlight/src/main.cpp
611b214892d35cd30476d23085e2ef01c017e33e
[]
no_license
jaquinonesg/ShadersProcessing
cda37b29a51ced3dddcf9854c2e6f6ff1ee05c99
2523116b648068d94c0fd64c5a2b89ea60a1d42f
refs/heads/master
2021-01-25T09:10:52.792785
2017-06-05T01:47:35
2017-06-05T01:47:35
93,797,436
0
0
null
null
null
null
UTF-8
C++
false
false
305
cpp
#include "ofMain.h" #include "ofApp.h" //======================================================================== int main( ){ ofGLWindowSettings settings; settings.width = 640; settings.height = 360; settings.setGLVersion(3,2); ofCreateWindow(settings); ofRunApp(new ofApp()); }
[ "jaquinonesg@unal.edu.co" ]
jaquinonesg@unal.edu.co
24d3fe47f1d6aac85f0e43a0c5e37b04db7de5a8
536d9f483fa32939209cae370ee4cebefc97faec
/test-king-of-new-york/TestMonsterCard.cpp
3760cd115096cf2a5de667c64f2de9141acccae3
[]
no_license
guillaumerm/king-of-new-york
c91ad8c44107c27cf2ea2eae04e431fd6b1970f4
7b0605e401c191b9933782bf26a01b058ad543e6
refs/heads/master
2020-03-29T04:24:06.674071
2018-12-03T03:31:07
2018-12-03T03:31:07
149,529,904
0
0
null
null
null
null
UTF-8
C++
false
false
3,513
cpp
#include "pch.h" #include "Card.h" #include "Card.cpp" #include "MonsterCard.h" #include "MonsterCard.cpp" TEST(MonsterCard, TestClassInit) { string emptyName = ""; string emptyDescription = ""; MonsterCard mc1; EXPECT_EQ(mc1.getName(), emptyName); EXPECT_EQ(mc1.getDescription(), emptyDescription); string name...
[ "guillaume.rochefort.mathieu@gmail.com" ]
guillaume.rochefort.mathieu@gmail.com
2d0b02efaca2534b3751e2d07869b54dea5e88d2
9b9ffd89dc5bda4bbec60ba9e0898de950d3fea6
/faceRecFW/trainingdialog.h
5653a38d69b74675adb1d3389bbfbf9115fed0b2
[]
no_license
glenlancer/Old_FaceRecFW
7c8489672fd70e371d14e05700eda669304e434f
75a46fb20bae147598ff3ec291b85262d70e04ca
refs/heads/main
2023-02-16T13:56:09.818052
2021-01-17T10:49:19
2021-01-17T10:49:19
309,937,523
0
0
null
null
null
null
UTF-8
C++
false
false
784
h
#ifndef TRAININGDIALOG_H #define TRAININGDIALOG_H #include <QDialog> #include <vector> #include "common.h" #include "trainingserver.h" namespace Ui { class TrainingDialog; } class TrainingDialog : public QDialog { Q_OBJECT public: explicit TrainingDialog(QWidget *parent = 0); ~TrainingDialog(); ...
[ "504037276@qq.com" ]
504037276@qq.com
0541d970753cc7f2af63f87d0ecb882ab1e830e2
eea1820cc4fdff2035ca53d3a464b79798512c48
/1-Codeforces/Educational Round 101/D.cpp
e860f653d8cbcb24316f32fd98fea65d090cd697
[]
no_license
anubhavitis/Competitive-Programming
96711d60fc26d6d89cbacf3733bfde839dda31c6
6d7d681d1d4774f0a81245705883433dfccc2a64
refs/heads/master
2023-05-13T16:20:42.214627
2021-06-06T12:37:17
2021-06-06T12:37:17
174,858,724
12
0
null
null
null
null
UTF-8
C++
false
false
1,568
cpp
//Mark XXXIII #include<bits/stdc++.h> #define ll long long #define mp make_pair #define pb push_back #define lb lower_bound #define ub upper_bound #define all(x) x.begin(), x.end() #define big(x) greater<x>() #define sp fi...
[ "ss.lfsgd@gmail.com" ]
ss.lfsgd@gmail.com
9e3c8cf8a31fbbdb11c48f1fe32728b67e9140cd
1dbf007249acad6038d2aaa1751cbde7e7842c53
/drs/include/huaweicloud/drs/v3/model/Tag.h
1fd3d6f5c87eb69860294c2cf7fc280a0bceab7b
[]
permissive
huaweicloud/huaweicloud-sdk-cpp-v3
24fc8d93c922598376bdb7d009e12378dff5dd20
71674f4afbb0cd5950f880ec516cfabcde71afe4
refs/heads/master
2023-08-04T19:37:47.187698
2023-08-03T08:25:43
2023-08-03T08:25:43
324,328,641
11
10
Apache-2.0
2021-06-24T07:25:26
2020-12-25T09:11:43
C++
UTF-8
C++
false
false
1,394
h
#ifndef HUAWEICLOUD_SDK_DRS_V3_MODEL_Tag_H_ #define HUAWEICLOUD_SDK_DRS_V3_MODEL_Tag_H_ #include <huaweicloud/drs/v3/DrsExport.h> #include <huaweicloud/core/utils/ModelBase.h> #include <huaweicloud/core/http/HttpResponse.h> #include <string> namespace HuaweiCloud { namespace Sdk { namespace Drs { namespace V3 { na...
[ "hwcloudsdk@huawei.com" ]
hwcloudsdk@huawei.com
cc484f2a44c465f7c53a65b1189a9539c5707d92
1ea4ac794c9c52582f182d609194566472dac792
/src/plugins/anim/datatypes/skinning.cpp
eacf1355e14cd6457562d9f35ec9bae52236c881
[ "MIT" ]
permissive
Pinyupen/possumwood
1b3a95b00c3fecca669645eeb8f63f71e9e57458
0ee3e0fe13ef27cf14795a79fb497e4d700bef63
refs/heads/master
2023-06-21T09:11:36.808752
2021-07-18T09:44:45
2021-07-18T09:44:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,156
cpp
#include "skinning.h" #include <cassert> namespace anim { void Skinning::addWeight(std::size_t bone, float weight) { m_weights.push_back(Weight(bone, weight)); } void Skinning::normalize() { float total = 0.0f; for(auto& w : m_weights) total += w.weight; if(total > 0.0f) for(auto& w : m_weights) w.weigh...
[ "martin.prazak@gmail.com" ]
martin.prazak@gmail.com
e0c1c711331e004e4f73328c3a87a80d3270ae6b
964b754233ab5990b16b9d395ae7bb9fecbf91a0
/src/xelect/xutil.h
b600e657d436c12fb5f2ebc25bb9346dfaafbb67
[]
no_license
Yarkin/x-research-prototype
351a2cea9a0dd5fdcb65ef353ec93b50c1112fe7
695c7d7f273e305c881d81d0a37e490714ea6665
refs/heads/master
2020-04-12T13:59:24.032176
2018-12-25T01:46:06
2018-12-25T01:46:06
162,538,417
1
0
null
2018-12-20T06:47:27
2018-12-20T06:47:27
null
UTF-8
C++
false
false
1,782
h
#pragma once #include "xdefine.h" #include "xblock.h" #include <time.h> NS_BEG2(top, elect2) class xutil { public: static std::string format_str(const std::string &fmt ...); // for struct xelect_result static std::string to_string(const xshard &shard); static std::string to_string(const xzone &zone)...
[ "blue.shi@topnetwork.org" ]
blue.shi@topnetwork.org
378562b4d1d9ca143f83104bc43223307b7c1816
f601338dd9f3c5187537fcc24ce1fe1925c99ebb
/code/src/server/epoller.cpp
f49ea0af55043c08f0bce2f75a6d82ec973effc8
[ "Apache-2.0" ]
permissive
qiao12/webserver_cpp
d7b8a726caed4c7dd47d51c741cc695630657d52
649f4af41f61f966b6a1b5d49f98eba43d3aeeb5
refs/heads/master
2023-05-14T11:04:12.929662
2021-06-05T07:34:54
2021-06-05T07:34:54
374,046,893
0
0
null
null
null
null
UTF-8
C++
false
false
1,243
cpp
/* * @Author : mark * @Date : 2020-06-19 * @copyleft Apache 2.0 */ #include "../../include/server/epoller.h" Epoller::Epoller(int maxEvent):epollFd_(epoll_create(512)), events_(maxEvent){ assert(epollFd_ >= 0 && events_.size() > 0); } Epoller::~Epoller() { close(epollFd_); } bool Epoller::...
[ "467205871@qq.com" ]
467205871@qq.com
0d55750fcbb9785996c4ea9857f87ce19285ce62
d661f7df403e1947175f19000e118542dfc7ecaf
/fairseq/data/data_utils_fast.cpp
47cea9d880f2ff99d8ef7d6ed46a30cba317d95b
[ "MIT" ]
permissive
kaustubhdhole/fairseq
c893abbe61346fc2a740cbacc2ce4f6e32095f39
5918aa3665a6a1e9387b493cf6e56d1ef782479f
refs/heads/master
2020-07-11T13:10:02.579784
2019-08-26T20:48:20
2019-08-26T20:48:20
204,548,263
0
0
null
2019-08-27T01:08:54
2019-08-26T19:38:54
null
UTF-8
C++
false
true
945,001
cpp
/* Generated by Cython 0.29.13 */ #define PY_SSIZE_T_CLEAN #include "Python.h" #ifndef Py_PYTHON_H #error Python headers needed to compile C extensions, please install development version of Python. #elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) #error Cython...
[ "121server@ipsoft.com" ]
121server@ipsoft.com
bd3f20d4ee321be8de8acafae31e7ab54e891fea
e28649f737bd35a117c5ff564c5f1d5253f207c5
/书籍资料/Kinect与OpenCV/Kinect2.0文档开发笔记C++描述/Kinect2.0文档/代码/KinectHDFace1/KinectHDFace1/ThisApp.h
36881b96d003ad8718d78463bf459ce8702c1828
[]
no_license
dj-boy/Point-Cloud-Materials
db94230f70fe5e115b17c676e3f58aa71b1a0af9
d2f628af2fe60d539280d1327e62b2c0fe91e53a
refs/heads/master
2021-01-08T03:07:04.650144
2019-08-10T06:46:05
2019-08-10T06:46:05
null
0
0
null
null
null
null
GB18030
C++
false
false
2,216
h
// ThisApp类 本程序的抽象 #pragma once #define TITLE L"Title" #define WNDWIDTH 1024 #define WNDHEIGHT 768 // ThisApp类 class ThisApp { public: // 构造函数 ThisApp(); // 析构函数 ~ThisApp(); // 初始化 HRESULT Initialize(HINSTANCE hInstance, int nCmdShow); // 消息循环 void RunMessageLoop(); private: // 窗口过程函数 static LRESULT CALLBAC...
[ "tiger5331819@163.com" ]
tiger5331819@163.com
8acd51242c4e81db92a6353c5ca8856887e5a0c7
1bdf251c53917c5f4e1c85eda86c385771083205
/udz1.0/common/util.cpp
e1e8c8f8961d11caf6ddefe64a229d940817a857
[]
no_license
Kanakoo/ope-hub
88531f2e213602a541a1e2fc2985a067990ee6e7
4fd6211c821e4104fa371d997a10a40c6b36843d
refs/heads/master
2022-04-09T06:47:17.438807
2020-03-11T07:33:02
2020-03-11T07:33:02
235,311,289
0
0
null
null
null
null
UTF-8
C++
false
false
2,283
cpp
#include "util.h" #include <unistd.h> int64_t M=281474976710656/*2251799813685248*/; int64_t ERR=-9999; //int send_msg(int Sd,send_item& item) //{ // usleep(1); // char msg[item.get_serialize_size()]; // memset(msg, 0, sizeof(msg)); // item.serialize(msg); // int n=send(Sd, (char*)&msg, item.get_serializ...
[ "1459035851@qq.com" ]
1459035851@qq.com
e1ff478f3eb5679adf2bf4e3d4137d25661d9054
f3251cda54d23fce2f66514294a632b165dfe310
/BMP280/BMP280.cpp
3ed1c55e52e0a969f021a78b3c9a338a7faec0a9
[]
no_license
ryker1990/CE_ARDUINO_LIB
7f20c330b6bbe3347328465c95b4710a928ea19d
3ac9780d73255b4b2c5c85d308093339e44433ed
refs/heads/master
2021-05-13T15:32:29.347345
2018-01-09T05:54:33
2018-01-09T05:54:33
116,772,431
0
2
null
null
null
null
UTF-8
C++
false
false
15,168
cpp
/**************************************************************************/ /* Distributed with a free-will license. Use it any way you want, profit or free, provided it fits in the licenses of its associated works. BMP280 This code is designed to work with the BMP280_I2CS I2C Mini Modu...
[ "ryker1990@gmail.com" ]
ryker1990@gmail.com
69dcf125bff0fd8377f31118b7dd997e89b48385
bfb370732e48ab73b48d50dcefc1491b14e113d8
/include/messageutils/pdu_splitter.h
12d7eeb23e372698059979d6b0e54587d248adf2
[]
no_license
javatai/gr-messageutils
6d11dd1fba5beb712015982a0962d30b6b296b9e
fc500180b8bfa3a72254308409d042d08595de54
refs/heads/master
2021-06-17T02:45:36.310373
2017-04-29T16:44:03
2017-04-29T16:44:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,348
h
/* -*- c++ -*- */ /* * Copyright 2016 Adam Gannon. * * This 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, or (at your option) * any later version. * * This software is distribute...
[ "adamgann@buffalo.edu" ]
adamgann@buffalo.edu
f6c2ffed07e80c6abadab433f74d5be85366e55b
6ab81ff69f08ae39ea9d062d3e81c4d9e32f3e65
/Comp Graphics/CompGraph_lab1/glowingedges.cpp
5fdd4fdd2d7588b36de2f4d5ae40fb91ec5bad4f
[]
no_license
SozinovAP/NNGU_labs
5955dba9c5c7b57e5737e1ce3c1fe56800ef8f7d
436d3cc51d8892487970756c15534beff69f9782
refs/heads/master
2023-05-03T19:39:40.051163
2021-05-30T15:48:59
2021-05-30T15:48:59
371,925,901
0
1
null
null
null
null
UTF-8
C++
false
false
952
cpp
#include "glowingedges.h" GlowingEdgesFilter::GlowingEdgesFilter(const QPixmap& pix) : MatrixFilter(pix) { } void GlowingEdgesFilter::ProcImg() { //обработка медианным фильтром MedianFilter _med(workimg); connect(&_med, SIGNAL(result(QPixmap)), this, SLOT(ResultImg(QPixmap))); _med.ProcImg(); //об...
[ "alexsozinov73@gmail.com" ]
alexsozinov73@gmail.com
320f4fec35489d7745e70b3964e0a44bcb28796d
2535c8f12d3f8eeff58ded47b70b3652f432f6e0
/src/GRT/FeatureExtractionModules/MovementTrajectoryFeatures/MovementTrajectoryFeatures.h
fd5c2ee13ff3262861d1f316448476bfa34b32f8
[]
no_license
mdqyy/diabolo_tracking
f2a267ea604c85955d5d5cf9deddfe36d53a6504
5ba0936fe8ef8724182e12906c52eb92f139baa8
refs/heads/master
2016-08-04T15:53:37.636293
2013-12-22T17:57:37
2013-12-22T17:57:37
15,446,397
0
1
null
null
null
null
UTF-8
C++
false
false
9,078
h
/** @file @author Nicholas Gillian <ngillian@media.mit.edu> @version 1.0 @section LICENSE GRT MIT License Copyright (c) <2012> <Nicholas Gillian, Media Lab, MIT> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ...
[ "eliegenard@orange.fr" ]
eliegenard@orange.fr
adbffa99fe865c4953803b4878a1a8626e639044
b3fb3dbd5bcc93ff712a9fdfeb3d97b23179d4e3
/cartographer-master/cartographer/mapping/pose_extrapolator.cc
6d63d705843fd72f8b7e77d88062c494610a60fb
[ "Apache-2.0" ]
permissive
swxind/draw.io
bc36f01457715939c3473899fd6ddd5739998284
3b04e46b331f9aea346665332b8b33a2d741b660
refs/heads/master
2021-08-19T09:22:52.672884
2018-12-18T03:58:59
2018-12-18T03:58:59
108,530,574
0
0
null
null
null
null
UTF-8
C++
false
false
5,684
cc
/* * Copyright 2017 The Cartographer Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
[ "wxind@foxmail.com" ]
wxind@foxmail.com
887741f1f3ba6fd02a36841076fbf7e214eea944
4260927079b1b71dcac37d720e4f3d9bbd589dc0
/DirectX9/manager.cpp
f83cc4266758474c85507d1a9933eb6924ed4554
[]
no_license
lihaosheng123/DirectX3D-Tool-Game
7ffdc2afb786ad81a913b9ac8e78b0d1057d77f1
017720e4422d4be632ab9151c2566174fd403f06
refs/heads/master
2021-01-20T06:53:00.547743
2017-03-26T13:01:59
2017-03-26T13:01:59
83,876,104
1
0
null
null
null
null
SHIFT_JIS
C++
false
false
4,533
cpp
/******************************************************************************** * タイトル 01 * ファイル名 manager.cpp * 作成者 AT13B284 42 李昊盛 * 作成日 2016/05/09 * ********************************************************************************/ #include "manager.h" CMode* CManager::m_Mode; CManager::MODE CManager::m_OldMode; ...
[ "2219069309@qq.com" ]
2219069309@qq.com
186634b6bb23650793ebc0bdea540068595c2fe3
771a5f9d99fdd2431b8883cee39cf82d5e2c9b59
/SDK/BP_PromptActor_EmissaryActivated_OOS_parameters.h
ab3f4ea705aea0a770044876bf0492c4a835cc9f
[ "MIT" ]
permissive
zanzo420/Sea-Of-Thieves-SDK
6305accd032cc95478ede67d28981e041c154dce
f56a0340eb33726c98fc53eb0678fa2d59aa8294
refs/heads/master
2023-03-25T22:25:21.800004
2021-03-20T00:51:04
2021-03-20T00:51:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,541
h
#pragma once // Name: SeaOfThieves, Version: 2.0.23 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //-------------------------------------------------...
[ "40242723+alxalx14@users.noreply.github.com" ]
40242723+alxalx14@users.noreply.github.com
e3c6fd7d9d038047492cb3cbf200245db25d7a1c
89dbc119599e39d49b55a7d7904c417d98b357fe
/ScreenList.cpp
9bb99f19cd29dc5d4af42be03e7421c0cfdffe28
[]
no_license
MentisaurusRex/Snicker
6436b8684da2e2c91e55af3d09795206301d669c
f3c5145ccf72fe3c4d89ae5587755a3a2e558612
refs/heads/master
2021-01-10T16:22:51.830119
2016-03-25T01:56:08
2016-03-25T01:56:08
54,159,006
0
0
null
null
null
null
UTF-8
C++
false
false
1,323
cpp
#include "ScreenList.h" #include "IGameScreen.h" namespace Snicker { ScreenList::ScreenList(IMainGame* game) : m_game(game) { } ScreenList::~ScreenList() { destroy(); } IGameScreen* ScreenList::moveNext() { IGameScreen* currentScreen = getCurrent(); if ((currentScreen->getNextScreenIndex()) != SCREEN_IN...
[ "NTDymorBiz@Gmail.com" ]
NTDymorBiz@Gmail.com
b77578d176b87a8ff0f8d099d7349572bf4dccb7
e3728ec90949bc6f7bb6f8782c49bd5fb973ef84
/d200114_zNote/Anyone/main.cpp
2d1023c45117d16420396a876ba994cf2f0cfec7
[]
no_license
zhenghello/QTobj
7d3c5b351b4fa05d03d7b306b03ab4e02415f139
051a78c242e60ce2c6620d2106fad364707e2d58
refs/heads/master
2020-05-25T12:51:37.484297
2020-05-04T13:39:32
2020-05-04T13:39:32
187,807,663
0
0
null
null
null
null
UTF-8
C++
false
false
275
cpp
#include "anyone.h" #include <QApplication> // 解决中文乱码的问题. #if _MSC_VER >= 1600 #pragma execution_character_set("utf-8") #endif int main(int argc, char *argv[]) { QApplication a(argc, argv); AnyOne w; w.show(); return a.exec(); }
[ "1049771392@qq.com" ]
1049771392@qq.com
1265f8e6d9c47286003f6ebfc71e6254de390558
3a84ae16ff6058ca85a13f4e406d7ed23bc94844
/src/main.cpp
7fb980a62a27bf61f7d48f58409ce16cf633236b
[ "MIT" ]
permissive
jdogewow/liracoin
1224fc80b7bef3da5e9d72536d19ce42b704a364
5f23434fc4bd9310273e754dfb594fa100897f74
refs/heads/main
2023-06-14T18:16:24.353908
2021-06-22T11:41:27
2021-06-22T11:41:27
379,246,188
0
0
null
null
null
null
UTF-8
C++
false
false
171,415
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 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 "alert.h" #include "checkpoints.h" #include "db.h" #include "txdb.h" #inc...
[ "jdogewow@gmail.com" ]
jdogewow@gmail.com
51f2dedacd876016c8a91f566dc476b903014516
61af2d058ff5b90cbb5a00b5d662c29c8696c8cc
/EZOJ/Contests/1329/A.cpp
67c3d464a547251fe77dbc437aba2d0cfec35de9
[ "MIT" ]
permissive
sshockwave/Online-Judge-Solutions
eac6963be485ab0f40002f0a85d0fd65f38d5182
9d0bc7fd68c3d1f661622929c1cb3752601881d3
refs/heads/master
2021-01-24T11:45:39.484179
2020-03-02T04:02:40
2020-03-02T04:02:40
69,444,295
7
4
null
null
null
null
UTF-8
C++
false
false
954
cpp
#include <iostream> #include <cstdio> #include <cstring> #include <cassert> #include <cctype> using namespace std; typedef long long lint; #define cout cerr #define ni (next_num<int>()) template<class T>inline T next_num(){ T i=0;char c; while(!isdigit(c=getchar())&&c!='-'); bool flag=c=='-'; flag?(c=getchar()):0; ...
[ "i_sukai@live.com" ]
i_sukai@live.com
91182c1ef80dfbf2cc8cc7fea5dd779674090a29
79db9240cb99cb2480d48b8270502cd39c6704a1
/154.find-minimum-in-rotated-sorted-array-ii.cpp
64afeb30a59aaa8591bc63bc0d1be313c035a16e
[]
no_license
aditya-vaish5/myLeetcode
bad68f889db43dc9f6e5331e9c30c1c1637b2bcb
cc386e8e5c720d6eab0f9507df5f82dde1793101
refs/heads/master
2022-11-04T22:48:05.259640
2020-06-27T21:23:20
2020-06-27T21:23:20
263,740,561
0
0
null
null
null
null
UTF-8
C++
false
false
651
cpp
/* * @lc app=leetcode id=154 lang=cpp * * [154] Find Minimum in Rotated Sorted Array II */ // @lc code=start class Solution { public: int findMin(vector<int> &num) { int lo = 0; int hi = num.size() - 1; int mid = 0; while(lo < hi) { mid = lo + (hi - lo) / 2;...
[ "f20170379@pilani.bit-pilani.ac.in" ]
f20170379@pilani.bit-pilani.ac.in
c81d0501c6a13094dd5762414b1388b9a1a2c982
0be4bae6dd84c2e2c26b5a084758a056d2e61aa7
/check.cpp
d30a2e369e9534e8a6eb754d1b19f37faaad1368
[]
no_license
eddiebarry/data_structure_algorithms
7ca3b3da834ac38fa92965f3034136de22b63b74
adf5577c5a21923e17e3e4a4a3d26f324b88e61f
refs/heads/master
2021-04-30T00:55:50.416362
2018-04-03T13:25:39
2018-04-03T13:25:39
121,467,239
0
0
null
null
null
null
UTF-8
C++
false
false
60
cpp
// for initialising the git repo and checking new commands
[ "edgarmonis@Edgars-MacBook-Air.local" ]
edgarmonis@Edgars-MacBook-Air.local
0dadf1e645d37c375ef36fcb006a512892dbfc43
2a582f35e436cec0addcb822c9f4a213f4712d47
/tests/src/unstructured/test_MeshRefiner.cpp
03d23b496c3f45c06ce95f891ce89302260e6e10
[ "Apache-2.0" ]
permissive
CODARcode/MGARD
10bd77f5a4ca4739d396a2fbc4fc2d83d6780ca3
7f9fd661cb8083d5fd5d7c345d5453ddabc3633e
refs/heads/master
2023-08-04T16:15:23.518453
2023-07-14T19:04:19
2023-07-21T03:19:57
157,610,031
32
27
Apache-2.0
2023-07-21T03:19:59
2018-11-14T20:57:29
C++
UTF-8
C++
false
false
92
cpp
#include "catch2/catch_test_macros.hpp" #include "unstructured/MeshRefiner.hpp" // Empty.
[ "qing.liu@njit.edu" ]
qing.liu@njit.edu
45d7e412af1f54c5e15740ecdc8d98250b0d4cdc
017f4a4aa14b740d84cc5ed7817ff904bbf2258d
/WPI_3_IMGD_3000_Game_Engine/dragonfly_only_ezra/unit_tests/ObjectListIteratorTests.cpp
9223f6b0a14b67d5aa400e3e099f0399e5ce3873
[]
no_license
ezraezra101/coursework
ff4ea60c924c3d4c4f43ae444156ced2d5dd482f
7048a8fa16db897e31b73c2ac497659389943e26
refs/heads/master
2020-06-06T02:59:56.422594
2019-06-18T21:56:04
2019-06-18T21:56:04
192,617,463
0
0
null
null
null
null
UTF-8
C++
false
false
1,315
cpp
#include <stdio.h> #include "ObjectListIterator.h" int main() { int failed_tests = 0; df::ObjectList list = df::ObjectList(); df::Object o1 = df::Object(); df::Object o2 = df::Object(); list.insert(&o1); list.insert(&o2); df::ObjectListIterator iter = df::ObjectListIterator(&list); if(iter.currentObject()...
[ "ezra.davis@yale.edu" ]
ezra.davis@yale.edu
fde06f50770e87258fdfef8e4489e66ccfcbce9a
2a88b58673d0314ed00e37ab7329ab0bbddd3bdc
/blazetest/src/mathtest/dmatdmatsub/UDbLDa.cpp
2aa6131838e810bb98b0560623c470e71be3b07f
[ "BSD-3-Clause" ]
permissive
shiver/blaze-lib
3083de9600a66a586e73166e105585a954e324ea
824925ed21faf82bb6edc48da89d3c84b8246cbf
refs/heads/master
2020-09-05T23:00:34.583144
2016-08-24T03:55:17
2016-08-24T03:55:17
66,765,250
2
1
NOASSERTION
2020-04-06T05:02:41
2016-08-28T11:43:51
C++
UTF-8
C++
false
false
4,026
cpp
//================================================================================================= /*! // \file src/mathtest/dmatdmatsub/UDbLDa.cpp // \brief Source file for the UDbLDa dense matrix/dense matrix subtraction math test // // Copyright (C) 2013 Klaus Iglberger - All Rights Reserved // // This file is ...
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
2eebd24f67bca702874289041866bd8032c846f2
87d8af054e17e0c346b6f59636402883fbf0158d
/Cpp/SDK/sot_frontend_01_arena_start_anim_functions.cpp
b57f5fc920740b5ea7fceeebfccc4e59a28ae7d7
[]
no_license
AthenaVision/SoT-SDK-2
53676d349bca171b5e48dc812fd7bb97b9a4f1d8
4a803206d707a081b86c89a4b866a1761119613d
refs/heads/main
2023-03-20T10:48:21.491008
2021-03-10T21:55:10
2021-03-10T21:55:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,308
cpp
// Name: sot, Version: 4.2 #include "../pch.h" /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Functions //--------------------------------------------------------...
[ "59620169+NtLoadDriverEx@users.noreply.github.com" ]
59620169+NtLoadDriverEx@users.noreply.github.com
d6a9bd58c08d5ee593375e4f041eecb6c4355175
e97522ff5d9c1f51da835f82984da5ae41b424d5
/libraries/I2C_24LC1025/examples/24LC1025_format/24LC1025_format.ino
2f686a69083c8f64776aa9073ac3d19be15b86f0
[ "MIT" ]
permissive
Spitfaer/Arduino
1f61d95601350d1825b5d26d9cb68f69d45ccb56
ad3cf039916342524e7a7caffe168ffac65a1dcc
refs/heads/master
2023-09-05T11:36:28.246871
2021-11-11T19:36:58
2021-11-11T19:36:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
729
ino
// // FILE: 24LC1025_format.ino // AUTHOR: Rob Tillaart // PURPOSE: clear 24LC1025 EEPROM // DATE: 2021-01-27 #include "I2C_24LC1025.h" I2C_24LC1025 ee(0x50); uint32_t start, stop; void setup() { Serial.begin(115200); Serial.println(__FILE__); if (! ee.begin()) { Serial.println("EEPROM not foun...
[ "rob.tillaart@gmail.com" ]
rob.tillaart@gmail.com
53776afdb7baf5d9e5effb13c01ea3e38441dd66
61070bede040a6f5318adafdd661dcb1bbe622e2
/src/hsdk/win/wictextureloader.h
883af6310c69da7da808732e71ec8304b9a1c7cf
[]
no_license
hanjuho/mysdk
835694f73bc8b808b2ec87f23043f6fd63090bac
284922ed3f962bb46124f3553e15ca7cfd94d613
refs/heads/master
2021-01-10T11:04:57.272796
2015-12-27T15:07:48
2015-12-27T15:07:48
44,182,150
0
0
null
null
null
null
UHC
C++
false
false
5,771
h
//-------------------------------------------------------------------------------------- // File: WICTextureLoader.h // // Function for loading a WIC image and creating a Direct3D 11 runtime texture for it // (auto-generating mipmaps if possible) // // Note: Assumes application has already called CoInitializeEx // // W...
[ "han_juho@naver.com" ]
han_juho@naver.com
2a734cf7f57f187ca28534e2539fbcd11b23c3ea
25a98198b8ccf89a13d7f736aee0cc48c7f45803
/BRICIU CATALIN/Laborator4_template/Ackerman/Ackerman_stack/Ackerman_stack/Ackerman.cpp
e17c1ada68d10352c5b4b292fd54d98fd10ecfbb
[]
no_license
catalinbriciu/TP_2020
e0c140924b1e6085d8c53b428dfda8dbd3729cde
887687956123276d59c85ee5b3f24eb349928201
refs/heads/master
2021-04-13T06:30:52.803883
2020-06-01T10:47:50
2020-06-01T10:47:50
249,143,656
3
14
null
2020-03-27T11:05:07
2020-03-22T08:39:17
C
UTF-8
C++
false
false
2,497
cpp
// Ackerman.cpp : Defines the entry point for the console application. // #include "stdio.h" #include "stdlib.h" #include "conio.h" #define MAX_STACK_SIZE 12u typedef struct AckermanStack { unsigned char X; unsigned char Y; }; void Push(AckermanStack* Stack, unsigned char * SP, unsigned char ValueToAdd); Ackerman...
[ "briciucatalin@yahoo.com" ]
briciucatalin@yahoo.com
94fb519b376c036c89c606847f86414fbdce5b28
268ede58c03098c3201ad20f843e217cbf131d95
/libdash/test/dash-static-test.cpp
ca1eb791e5434ab02f64a3e5c63bb04dfd863dbd
[ "MIT" ]
permissive
OpenTYeung/media-server-1
7f53207d035ab0c3fc649b636a4f68dc9d3e6c72
f8373cc8d97776cd78fc8f4c25295b69011d4d8e
refs/heads/master
2020-03-23T22:34:00.653745
2018-07-21T12:47:17
2018-07-21T12:47:17
142,182,811
1
0
MIT
2018-07-24T16:07:53
2018-07-24T16:07:53
null
UTF-8
C++
false
false
2,710
cpp
#include "dash-mpd.h" #include "dash-proto.h" #include "mov-format.h" #include "mov-reader.h" #include <assert.h> #include <string.h> #include <stdio.h> extern "C" const struct mov_buffer_t* mov_file_buffer(void); static char s_packet[2 * 1024 * 1024]; static uint32_t s_track_video; static uint32_t s_track_audio; sta...
[ "tao3@outlook.com" ]
tao3@outlook.com
f74a136e0d09d7db1385279fa0feed22b63a65f8
b993e65c54852d06a535bcc7b238929418087433
/glutil/glutil.h
9c54232e177a71ce47fda0ea5b3b5e44978ad7e0
[]
no_license
mandelbrotset/Eld
0a400344101f167ba44f645961dfdc3e1c18a56e
25f23afa58ef561b3483e167059f70b0c9e0e10d
refs/heads/master
2021-01-10T07:50:32.433229
2015-06-07T17:07:47
2015-06-07T17:07:47
36,806,919
0
0
null
null
null
null
UTF-8
C++
false
false
5,636
h
#ifndef LAB_GL_UTILS_H #define LAB_GL_UTILS_H /** This file contains utility functions to be used for the labs in computer * graphics at chalmers, they are not covered by any particular license... */ #include "float4x4.h" #include "float3.h" #include <string> #include <cassert> #include <GL/glew.h> // Sometimes ...
[ "isak.eriksson@mail.com" ]
isak.eriksson@mail.com
9209b7d7248269fc430ef4a8bd65eac1b6fcfcb5
65c6b7f2c31574b231192bfa010e36edccb634b0
/src/graphics/BatchRenderer2d.h
f56f3b3dfd395443b78790a902aaff1b882b2ea0
[]
no_license
massile/FlowEngine
d130dbc16b88c4b9dfbca2a817b1242fd8ab603b
329e5f557dcfc14f69e4bc433b8f95558ab458bd
refs/heads/master
2021-01-10T07:22:11.886474
2016-11-17T00:36:29
2016-11-17T00:36:29
55,522,380
11
0
null
null
null
null
UTF-8
C++
false
false
1,287
h
#pragma once #include "Renderer2d.h" #include "buffer/IndexBuffer.h" #include "Sprite.h" #include "FrameBuffer.h" #include "PostEffect.h" #include "Vertex.h" namespace FlowEngine { namespace Graphics { class BatchRenderer2D : public Renderer2D { private: VertexArray* mVAO = new VertexArray; ...
[ "mokhtari.massinissa@gmail.com" ]
mokhtari.massinissa@gmail.com
a3fa3e7e23429472338347c2115f21654c8d2c00
604a6bbe45af747831649fe04b05372f6004f1d7
/LIB/argv_321.hpp
01214547a2338e3ae7ae9c0ef340b25527dbe274
[]
no_license
tybins99/CRYPTANALYSIS.BabyStep_GiantStep_GMP
c633b3885a931eded5e95c46381719eec87f48c9
0cd70cab5c41dc949bd8c31ab2bedfb184efa502
refs/heads/master
2021-05-11T23:40:48.897640
2018-01-15T08:27:23
2018-01-15T08:27:23
117,516,914
2
0
null
null
null
null
UTF-8
C++
false
false
2,385
hpp
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@ FILE: argv_321.hpp // @@ // @@ DESCRIPTION: // @@ communication layer that uses // @@ TCP/IP sockets. Derivates from the // @@ argv_874 argv_2785. // @@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
[ "flegardien@kertel.com" ]
flegardien@kertel.com
a3b37002a2240a4748b908526ad5aa55b4a60ada
ed5669151a0ebe6bcc8c4b08fc6cde6481803d15
/magma-1.6.1/sparse-iter/src/cpbicgstab.cpp
5b8cb5a8921b07f4935f17cd98425d0b79af3905
[]
no_license
JieyangChen7/DVFS-MAGMA
1c36344bff29eeb0ce32736cadc921ff030225d4
e7b83fe3a51ddf2cad0bed1d88a63f683b006f54
refs/heads/master
2021-09-26T09:11:28.772048
2018-05-27T01:45:43
2018-05-27T01:45:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,468
cpp
/* -- MAGMA (version 1.6.1) -- Univ. of Tennessee, Knoxville Univ. of California, Berkeley Univ. of Colorado, Denver @date January 2015 @generated from zpbicgstab.cpp normal z -> c, Fri Jan 30 19:00:30 2015 @author Hartwig Anzt */ #include "common_magma.h" #include "magma...
[ "cjy7117@gmail.com" ]
cjy7117@gmail.com
e682fb84c9d09666c0bd6d6240fc7bfd1ede0089
ed9438518a037de013aab3e3eb8493e1acdf7701
/Game Scripting Mastery/Programs/Chapter 13/13_02/Source/lexer.cpp
bb198a601b6beac765dffa4daeb38bc657543af7
[]
no_license
esheroe/Book
9c5923a24f11f71ee0e0e3fe556a722a3e1766b6
48a2cc07a5e2675c024ce8a4c0724ea33bcbb4f6
refs/heads/master
2020-08-07T10:04:12.137221
2018-11-25T20:39:26
2018-11-25T20:39:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
19,461
cpp
/* Project. Lexical Analyzer Demo Abstract. Upgrades the lexer to lex: - Numerics - Identifiers - Reserved Words Date Created. 8.21.2002 Author. Alex Varanese */ // ---- Include Files ------------------------------------------------...
[ "SeaCanFly@gmail.com" ]
SeaCanFly@gmail.com
82902eb8ede16c1e02c3fd9da63155c199aea088
91eec30d4a0361da5e9493417ea8c5d391e78855
/pngui/grid/QConditionalDecorationDialog.cpp
d4ff18d3c20da7cefe8d66ade87c1295f4163757
[]
no_license
chenchy/Praaline
d49f088fb8dd6e1861458de3354c8bcfb4c0a79f
58455554029c7ed31249b0d38f9e8cf038cfc187
refs/heads/master
2023-04-10T05:00:20.595290
2021-04-25T23:19:34
2021-04-25T23:19:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
18,846
cpp
/****************************************************************************** ** This file is part of qadvanceditemviews. ** ** Copyright (c) 2011-2012 Martin Hoppe martin@2x2hoppe.de ** ** qadvanceditemviews is free software: you can redistribute it ** and/or modify it under the terms of the GNU Lesser General...
[ "george@mycontent.gr" ]
george@mycontent.gr
89403022bfdc4386501115c96526b4a438c01f73
7ff9e90911aef91ef2e4cf9485cd4ea5edaee47a
/include/cpp/reproc/parser.hpp
f0c299c93ec5f51097ab340ff979f55cd8d720d4
[ "MIT" ]
permissive
bstaletic/reproc
c7e9f2676e952a06a2315918a2daa20c7a30a989
0decdee87f38a41b091efaecc282292edf59a1b0
refs/heads/master
2020-03-29T12:45:52.532362
2018-09-22T20:01:54
2018-09-22T20:01:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
852
hpp
/*! \file parser.hpp */ #ifndef REPROC_PARSER_HPP #define REPROC_PARSER_HPP #include <ostream> /*! \namespace reproc */ namespace reproc { /*! Reads the entire output of a child process into the given string. \see \ref reproc::process::read */ class string_parser { std::string &out_; public: string_parser(std...
[ "daan.j.demeyer@gmail.com" ]
daan.j.demeyer@gmail.com
ba12be8c5b1901150344fefcc8c77cc384a7ad63
4730259de6eb577b3de2b8e7ed282ef57c912076
/SPOJ_POSTERIN.cpp
3b4973b3bd765c3482876eb94f18906393d33598
[]
no_license
ujwalll/Junior-sheet-solutions
4c86011ba99b0bbfd27c58eb156e7510c93a807e
d917df8cf7d25ccb54cf7ccc1c4b5a13fadbf5cb
refs/heads/master
2022-12-11T03:59:36.372624
2020-08-28T20:26:30
2020-08-28T20:26:30
270,616,861
0
0
null
null
null
null
UTF-8
C++
false
false
2,162
cpp
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0;i<(n);i++) #define for1(i,n) for(int i=1;i<=n;i++) #define FOR(i,a,b) for(int i=(a);i<=(b);i++) #define FORD(i,a,b) for(int i=(a);i>=(b);i--) const int INF = 1<<29; const int MOD=1000000007; #define pp pair<ll,ll> typedef long long int ll; bool...
[ "ujwal@iitg.ac.in" ]
ujwal@iitg.ac.in
9387c4f6d2a0dee7acc9c989455c6093568a1f9b
b81fa9e4354f93964c9d6796b783373f3966216c
/link-error-odr-global/baz.cpp
9fae07084be8322768166600738feb9bc7881ea1
[]
no_license
cgold-examples/library-examples
9e70eaa66ac5e9c858773c3a7a59d54024311ada
772d0c43b80e08e18c0b55812be1b88addd5753c
refs/heads/master
2020-05-21T18:05:11.901138
2017-12-29T13:29:02
2017-12-29T13:29:02
65,504,271
4
0
null
null
null
null
UTF-8
C++
false
false
135
cpp
// baz.cpp #include <iostream> // std::cout #include <foo/Foo.hpp> int main() { std::cout << "Foo: " << Foo::foo() << std::endl; }
[ "ruslan_baratov@yahoo.com" ]
ruslan_baratov@yahoo.com
020108c8d6612848013278638de6d8be018d6298
957e9b26f83929f9915fcce7cc16dca8137f5c2a
/include/kubeent/persistent_volume_claim.hpp
e2b6b290e2372c05a0ffca00ae023e039f68236e
[]
no_license
Gscienty/navagraha
3605579285d23252b8e328cb0aae77deb7b000c6
1b64cff910b062fad78f27210fb3d4853b56a760
refs/heads/master
2020-04-29T11:55:13.707829
2019-09-09T02:21:45
2019-09-09T02:21:45
176,118,314
21
5
null
2019-07-19T03:14:07
2019-03-17T15:08:41
C++
UTF-8
C++
false
false
1,247
hpp
#ifndef _NAVAGRAHA_KUBEENT_PERSISTENT_VOLUME_CLAIM_H #define _NAVAGRAHA_KUBEENT_PERSISTENT_VOLUME_CLAIM_H #include "extensions/field.hpp" #include "extensions/serializer_helper.hpp" #include "extensions/serializable.hpp" #include "kubeent/object_meta.hpp" #include "kubeent/persistent_volume_claim_spec.hpp" #include "k...
[ "gaoxiaochuan@hotmail.com" ]
gaoxiaochuan@hotmail.com
6aa9e3864c335edb0a426a07a9b67958d0190843
e3a8ea459ebb9ccee59bc7d5013163a03ee381b5
/libirboard/IrBoard.h
30882d3759ea8cade062327c2979312c50f816b2
[]
no_license
Ingener74/IR-White-Board
c0a2e889759438a4172f1a308737c341d1360e70
3684d707e9f5c8a5cc4004122bbad3f1eb7f2727
refs/heads/master
2016-09-05T19:31:17.929836
2015-05-18T05:22:59
2015-05-18T05:22:59
7,989,936
0
0
null
null
null
null
UTF-8
C++
false
false
516
h
/* * IrBoard.h * * Created on: Apr 24, 2015 * Author: pavel */ #ifndef LIBIRBOARD_IRBOARD_H_ #define LIBIRBOARD_IRBOARD_H_ #ifdef SWIG #else #include <string> #include <thread> #include <atomic> #endif namespace irboard { class IrBoard { public: IrBoard(class ImageOutput *imageOutput = nullptr); ...
[ "shnaiderpasha@gmail.com" ]
shnaiderpasha@gmail.com
cf173fdde63cd139ab10b9d2ec3fda1dd60a0ba5
5cc3b5ebf9ad1d9ded53d7a1cbac9a1f6352dc88
/Epoch.Engine/Renderer/Backend/Vulkan/VulkanCommandBuffer.cpp
d0bf6490fc387a7ad4b644bd832943bd2fbfa847
[]
no_license
reptilmo/epoch
a597099e9ec774ad32e38a5fa8766eddbbb90323
c44e6fc83be1ba0d96e5ecb981b034b895667539
refs/heads/master
2023-01-07T03:04:58.866372
2020-11-01T03:24:59
2020-11-01T03:24:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,017
cpp
#include "../../../Memory/Memory.h" #include "VulkanUtilities.h" #include "VulkanDevice.h" #include "VulkanCommandPool.h" #include "VulkanRenderPass.h" #include "VulkanSemaphore.h" #include "VulkanCommandBuffer.h" namespace Epoch { VulkanCommandBuffer::VulkanCommandBuffer( VkCommandBuffer handle, VulkanCommandP...
[ "travisvroman@gmail.com" ]
travisvroman@gmail.com
6db9f5abae06abcb06253de5acdd27a0a6a738fb
bbeb7e4c334f9f33ea1106810a7113b58f281b27
/POJ/1330(离线LCA).cpp
6cc4dda4df00924ceed2ee675569a645d3b67d82
[]
no_license
Drone-Banks/ACM
18638af3f3307ecb26dc5e79d0a06d58c87dedaf
937224c32f8a00ce4885f12ffd83e35b9c99718c
refs/heads/master
2021-04-15T13:41:20.077221
2018-04-16T13:17:33
2018-04-16T13:17:33
126,587,158
0
0
null
null
null
null
UTF-8
C++
false
false
3,153
cpp
#include <iostream> #include <stdio.h> #include <algorithm> #include <string.h> using namespace std; const int maxn=10010;//顶点数 const int maxq=100;//最多查询次数,根据题目而定,本题中其实每组数据只有一个查询. //并查集 int f[maxn];//根节点 int find(int x) { if(f[x]==-1) return x; return f[x]=find(f[x]); }...
[ "qaq.febr2.qaq@gmail.com" ]
qaq.febr2.qaq@gmail.com
442f57963d807b0c8fd6ddde4e03978b5c1cd0e7
0cc2e8e77f7f25e5c6789c5d740d2f88fb490188
/src/effects/SkOverdrawColorFilter.cpp
266c5b1fd432a2131877a0c10f7281246ec75045
[ "BSD-3-Clause" ]
permissive
jimbertools/skia
429479d45ecdb25a9bb03f5eda7d68b43c7c21ff
11c79c5984024832d1d9e62ad2c2ab1a9617f7eb
refs/heads/master
2021-07-06T09:07:30.316473
2020-03-06T13:38:42
2020-03-06T13:38:42
195,405,343
0
0
null
2019-07-05T12:25:23
2019-07-05T12:25:23
null
UTF-8
C++
false
false
3,186
cpp
/* * Copyright 2016 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "include/effects/SkOverdrawColorFilter.h" #include "src/core/SkArenaAlloc.h" #include "src/core/SkEffectPriv.h" #include "src/core/SkRasterPipeline.h" #include "src/c...
[ "skia-commit-bot@chromium.org" ]
skia-commit-bot@chromium.org
fd07f77a0e1983c0462db8769f1a0afd1abdaf0f
fec81bfe0453c5646e00c5d69874a71c579a103d
/blazetest/src/mathtest/operations/dmatsmatschur/UDbUCb.cpp
1d3aa7c7e3758ddfa3f41fe845836fcfdd46507b
[ "BSD-3-Clause" ]
permissive
parsa/blaze
801b0f619a53f8c07454b80d0a665ac0a3cf561d
6ce2d5d8951e9b367aad87cc55ac835b054b5964
refs/heads/master
2022-09-19T15:46:44.108364
2022-07-30T04:47:03
2022-07-30T04:47:03
105,918,096
52
7
null
null
null
null
UTF-8
C++
false
false
4,194
cpp
//================================================================================================= /*! // \file src/mathtest/operations/dmatsmatschur/UDbUCb.cpp // \brief Source file for the UDbUCb dense matrix/sparse matrix Schur product math test // // Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved...
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
d5ead44eaf21d288d5191e6d56bec4854a194ef0
b113abd0a16e9e405db4ae3db5fa69c73dd4bc7d
/Queues/PriorityQueue.cpp
8b0a4e251086bddacd8015f7ee7203627255ca7e
[]
no_license
shabaaz1729/DataStructuresCPP
32fb0e19584c8ef8ef640d06fff16112f83136fc
bce3667e373f580d7200c1d94153b60ebe141cfe
refs/heads/master
2020-03-21T10:39:01.752133
2019-06-14T06:16:04
2019-06-14T06:16:04
138,463,190
0
0
null
null
null
null
UTF-8
C++
false
false
865
cpp
#include <iostream> using namespace std; struct Node { int data; int priority; Node* link; }; Node *head=NULL; bool isEmpty() { if(head==NULL) return true; return false; } void pop() { if(head == NULL) return; Node* temp = head; head = temp->link; delete temp; } void push(int d, int p) { Node* temp =...
[ "shabaaz.nita@gmail.com" ]
shabaaz.nita@gmail.com
e89ddaf75eeec9dc0f54c03a628b593a25564393
490bdddfcccfaee8a7ea11363a696ea064e17c59
/TtbarReconstructions/Tools/src/MyMEzCalculator.cc
b51474c46ed095a10ee5a6719d1d1adaa4740e9d
[]
no_license
fhoehle/UserCode
f5c252228927ec91ee38fff89b4ced2374f5462b
8e51a8779edf695604ebc963727f489b0587aa18
refs/heads/master
2021-01-10T21:11:30.419054
2012-11-08T09:02:10
2012-11-08T09:02:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,586
cc
#include "TtbarReconstructions/Tools/interface/MyMEzCalculator.h" #include "TMath.h" /// constructor MyMEzCalculator::MyMEzCalculator() { isComplex_ = false; isMuon_ = true; } /// destructor MyMEzCalculator::~MyMEzCalculator() { } /// member functions std::vector<double> MyMEzCalculator::TwoSolCalculate() { //...
[ "" ]
19fc848564bb40ac3513f4654ff4e20a33a34ab0
817cc371e2eb56f37c400b7f96d658d0683476b1
/202001_practice/arc075/d.cpp
33e9d2bf79ea45543bf2bfe873d2cedf2d5af077
[]
no_license
KanadeSiina/PracticeCode
c696495bd71395648ac62a41d0a41869f50c5eb4
146c8d5889eee7917a355feb8b03d1415a29ae9d
refs/heads/master
2020-09-05T00:49:29.165600
2020-06-30T12:48:15
2020-06-30T12:48:15
219,937,221
2
0
null
null
null
null
UTF-8
C++
false
false
1,566
cpp
#include<bits/stdc++.h> using namespace std; #ifndef ONLINE_JUDGE #define dbg(x...) do { cout << "\033[32;1m " << #x << " -> "; err(x); } while (0) void err() { cout << "\033[39;0m" << endl; } template<template<typename...> class T, typename t, typename... A> void err(T<t> a, A... x) { for (auto v: a) cout << v <...
[ "lluozheyan@gmail.com" ]
lluozheyan@gmail.com
c3c06c0d11fa30b3c979444c0b07108c3344bd87
5c99869355a0c315061aa7eef36c19c49aca7b92
/bank/src/netutils.cpp
3e39b894675fc273c2a964bf5614e349cd180c68
[]
no_license
wijagels/CS457
0092da4ba3c7a35912ac4d9d0a3e4b3481fd894c
1f3430c8cb6aa0300e1edff1ad79b089bd057c9f
refs/heads/master
2021-03-24T13:36:30.095740
2017-12-28T22:26:47
2017-12-28T22:26:47
102,519,864
2
0
null
null
null
null
UTF-8
C++
false
false
893
cpp
#include "netutils.hpp" #include <cstring> #include <string> #include <stdexcept> extern "C" { #include <arpa/inet.h> #include <ifaddrs.h> #include <netinet/in.h> } std::string get_public_ip() { ifaddrs* ifAddrStruct = nullptr; ifaddrs* ifa = nullptr; in_addr* tmpAddrPtr = nullptr; getifaddrs(&ifAddrStruct)...
[ "william@jagels.us" ]
william@jagels.us
723dcc5c510c2d3d37be005f716c4f95cc436947
a50dca02b270c16d26e293f4b21706c4862d8059
/WorldEditor3D/imgui_impl_sdl_gl3.cpp
da5b1e8d9340f666e91c1dc16ad78bdab36b213e
[]
no_license
AlexandruScutaru/Engine
45e3a02bb822208401e1c745ba86bebe52e492ca
90bca5e28e0eba26fed29891d9d0860cdafe46ec
refs/heads/master
2021-06-28T01:16:43.691513
2019-06-24T19:26:23
2019-06-24T19:26:23
117,293,538
0
0
null
null
null
null
UTF-8
C++
false
false
18,706
cpp
// ImGui SDL2 binding with OpenGL3 // In this binding, ImTextureID is used to store an OpenGL 'GLuint' texture identifier. Read the FAQ about ImTextureID in imgui.cpp. // (SDL is a cross-platform general purpose library for handling windows, inputs, OpenGL/Vulkan graphics context creation, etc.) // (GL3W is a helper li...
[ "alex_cw15@yahoo.com" ]
alex_cw15@yahoo.com
40c9390f32ad355d680c484b13b3e37a659bd06c
1247d047cbf5d0dd703dade28122a647bbb2a272
/FixDST/pass1/source/fixdstpass1.cc
0807433f6f91714047a071b84a12547e5d50d91f
[]
no_license
pinkenburg/myutils
aa1eed3acd5b79a7f4e9ded2c10e9f8b61cdf562
4525066e2b0ca0829b9dbb5426aad4819b6e0ac2
refs/heads/master
2021-06-07T17:26:49.528486
2021-06-01T20:48:13
2021-06-01T20:48:13
148,370,590
0
0
null
null
null
null
UTF-8
C++
false
false
8,753
cc
#include "fixdstpass1.h" #include "AssocInfoContainerTmp.h" #include "TrkrHitTmp.h" #include "TrkrHitSetTmp.h" #include "TrkrHitSetContainerTmp.h" #include "TrkrHitTruthAssocTmp.h" #include "TrkrClusterHitAssocTmp.h" #include "TrkrClusterContainerTmp.h" #include <mvtx/MvtxHit.h> #include <intt/InttHit.h> #include ...
[ "pinkenburg@bnl.gov" ]
pinkenburg@bnl.gov
f53779c07dcbeb04ed90d9ad1ad95ec2b2e0c149
2daee68008be75bbcd01323fefc4aacb61f8bffb
/include/mtp/list/implementation/List.hpp
6b9571a17e4778bb0a0ced4d02a7e40a931422c5
[]
no_license
Hazurl/meta-programming
445f7bfd32ee7a4d7cc4abf47189a06c8de6d7c5
24b05432d1850a7d0eaaba6ff6c7c1609c29179f
refs/heads/master
2021-08-09T02:25:44.146168
2017-11-11T23:01:53
2017-11-11T23:01:53
105,864,360
0
0
null
null
null
null
UTF-8
C++
false
false
509
hpp
#pragma once #include <mtp/Config.hpp> #include <mtp/Utils.hpp> MTP_NAMESPACE { MTP_NAMESPACE_DETAILS { template<typename... Xs> struct List_impl {}; template<typename L> struct List_is_list_impl : False {}; template<typename...Args> struct List_is_list_impl<List_impl<Args...>> : True {}; } template<typename...X...
[ "ricoujules69@gmail.com" ]
ricoujules69@gmail.com
d20ab200df7b6fe861f2e2de2471d224988d52dd
dccd1058e723b6617148824dc0243dbec4c9bd48
/aoj/vol23/2305.cpp
2a2668133b828c130dcbbe56eb2eb9bcdd38d319
[]
no_license
imulan/procon
488e49de3bcbab36c624290cf9e370abfc8735bf
2a86f47614fe0c34e403ffb35108705522785092
refs/heads/master
2021-05-22T09:24:19.691191
2021-01-02T14:27:13
2021-01-02T14:27:13
46,834,567
7
1
null
null
null
null
UTF-8
C++
false
false
835
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr) #define all(x) (x).begin(),(x).end() #define pb push_back #define fi first #define se second const int N=200000; double...
[ "k0223.teru@gmail.com" ]
k0223.teru@gmail.com
55a27ca92445053f63d9a6ab719531e2ee58801b
d7db098f4b1d1cd7d32952ebde8106e1f297252e
/AtCoder/ABC/091/b.cpp
362ca6007f88092f36ca387fb2ae58f2a4b8af3d
[]
no_license
monman53/online_judge
d1d3ce50f5a8a3364a259a78bb89980ce05b9419
dec972d2b2b3922227d9eecaad607f1d9cc94434
refs/heads/master
2021-01-16T18:36:27.455888
2019-05-26T14:03:14
2019-05-26T14:03:14
25,679,069
0
0
null
null
null
null
UTF-8
C++
false
false
1,146
cpp
// header {{{ #include <bits/stdc++.h> using namespace std; // {U}{INT,LONG,LLONG}_{MAX,MIN} #define INF INT_MAX/3 #define LLINF LLONG_MAX/3 #define MOD (1000000007LL) #define MODA(a, b) a=((a)+(b))%MOD #define MODP(a, b) a=((a)*(b))%MOD #define inc(i, l, r) for(int i=(l);i<(r);i++) #define d...
[ "monman.cs@gmail.com" ]
monman.cs@gmail.com
a84ca0e39d914cde2a8ca9a20ccf95850ce1f5cd
fe2362eda423bb3574b651c21ebacbd6a1a9ac2a
/VTK-7.1.1/Filters/ParallelMPI/vtkDistributedDataFilter.h
e049888631fb7eb1568980b4bbffab352cd527a8
[ "BSD-3-Clause" ]
permissive
likewatchk/python-pcl
1c09c6b3e9de0acbe2f88ac36a858fe4b27cfaaf
2a66797719f1b5af7d6a0d0893f697b3786db461
refs/heads/master
2023-01-04T06:17:19.652585
2020-10-15T21:26:58
2020-10-15T21:26:58
262,235,188
0
0
NOASSERTION
2020-05-08T05:29:02
2020-05-08T05:29:01
null
UTF-8
C++
false
false
21,343
h
/*========================================================================= Program: Visualization Toolkit Module: vtkDistributedDataFilter.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This so...
[ "likewatchk@gmail.com" ]
likewatchk@gmail.com
70cc11759ecbc3526c312e80869e91f88b2a3b86
8bd51ca8d29f3a40ad38a9ee6abbedbc7f30387b
/Messier12/GraphicsDevice.h
14f56129d46b4322059776d40d13639382970dca
[]
no_license
himanshugoel2797/Messier12
b8eceec07546fcb6df6c5189b46e4bad1ecad4c3
2d900200293fdf6ddcf2030dde2e5da3b2a3f663
refs/heads/master
2021-01-10T10:00:37.936149
2016-01-10T04:27:58
2016-01-10T04:27:58
49,351,090
0
0
null
null
null
null
UTF-8
C++
false
false
538
h
#pragma once #include "stdafx.h" class GraphicsDevice { public: static const int FrameCount = 2; static void InitializePipeline(); static void Render(); static void FSM(); private: static ComPtr<ID3D12Device> m_device; static ComPtr<ID3D12CommandQueue> m_commandQueue; static ComPtr<IDXGISwapChain3> m_swapChain;...
[ "himanshu.goel2797@gmail.com" ]
himanshu.goel2797@gmail.com
2209ffbff256d2a4934eada6c82443654e378eea
df818e3f9b73ee4477718856e5bd1fd99f2e4a9b
/ixwebsocket/IXSelectInterruptFactory.cpp
f0c09c1404db03384540dc4aac685234ede222cc
[ "BSD-3-Clause" ]
permissive
tiwariashish86/IXWebSocket
66fdcdd298603f80b7b1bde6005232eff8275fad
761b6b70bd8004817293c80897d61dbb9ac01040
refs/heads/master
2020-05-21T02:19:47.490980
2019-05-09T22:05:01
2019-05-09T22:05:01
185,875,746
2
0
BSD-3-Clause
2019-05-09T21:43:42
2019-05-09T21:43:41
null
UTF-8
C++
false
false
580
cpp
/* * IXSelectInterruptFactory.cpp * Author: Benjamin Sergeant * Copyright (c) 2019 Machine Zone, Inc. All rights reserved. */ #include "IXSelectInterruptFactory.h" #if defined(__linux__) || defined(__APPLE__) # include <ixwebsocket/IXSelectInterruptPipe.h> #else # include <ixwebsocket/IXSelectInterrupt.h> #end...
[ "bsergeant@mz.com" ]
bsergeant@mz.com
5530ea2c319c129e09944bfbf1e5961121313be9
dc0367494f9b6ac1929616256ff667191a60ed8d
/include/messagedecodersystem.h
df48e48b6f9198b354e4496ed2cef973cff1c385
[]
no_license
Iris-Lights/Iris-Light-Controller
8d3b2c337628884e5003587743902a888f63f2d2
b759710e55468dbeb4a6e3baccc6d3513d72d64d
refs/heads/main
2023-08-14T08:46:16.527119
2021-09-07T15:01:48
2021-09-07T15:01:48
405,779,230
0
0
null
null
null
null
UTF-8
C++
false
false
1,190
h
/** * @file messagedecodersystem.h * * @brief This file outlines the functions that are available for message decoding * @version 0.1 * @date 2021-08-14 * * @copyright Copyright (c) 2021 * */ #include "ArduinoJson.h" #include "globals.h" #include "message.h" #include "messagedecoderbase.h" ...
[ "fvolcic@umich.edu" ]
fvolcic@umich.edu
52f0e624074c2a478d530115e405bfe40f65dcf4
16ff11b5b0aa1ef0effc252da2a288988ae566bb
/entity/spectest.h
9bf65b7a83e8bc6ee9b66b06c2f45ba68e3f97f3
[]
no_license
vince7839/GmsAutoTool
0087782b840b389077654c7d53afbcb2262ea0d7
9ec9fa21f8a0d14f1189ca2490caf8afd7d3fdda
refs/heads/master
2021-10-11T09:37:16.408269
2019-01-24T08:17:34
2019-01-24T08:17:34
108,853,208
7
0
null
null
null
null
UTF-8
C++
false
false
414
h
#ifndef SPECTEST_H #define SPECTEST_H #include<QMetaType> #include<QObject> class SpecTest : public QObject{ public: enum status{ PASS, FAIL, UNKNOWN }; virtual void run() = 0; virtual QString getName() = 0; virtual QString getExpect() = 0; virtual QString getResult() =...
[ "liaowenxing@sagereal.com" ]
liaowenxing@sagereal.com
d382867eb38c9b7875110702e23ff4aee9215b09
6eaad2ae08cb7ea790ed94bede65a48098bc0225
/tensorflow/compiler/mlir/tfrt/jit/tf_jitrt_pipeline.cc
90144f76b8db832083b60646ad360602c6c298a3
[ "Apache-2.0", "LicenseRef-scancode-generic-cla", "BSD-2-Clause" ]
permissive
eudemonchan/tensorflow
86e1b168300cc639584d9e9b00b67dbf5262356d
9eacd0bec0161541865c5c60b3959faf3f5caaa3
refs/heads/master
2022-11-05T15:30:41.468034
2022-10-10T11:58:28
2022-10-10T12:05:50
62,118,984
1
0
null
2016-06-28T07:18:09
2016-06-28T07:18:08
null
UTF-8
C++
false
false
12,537
cc
/* 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...
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
053203a4f674fe81b3caa43eb02297276fd14edb
85d93411c38bd3b573e856467380102d9dfd2dd5
/src/pendulum/ddp_pendulum.cpp
f3c0c2f7ab3bd2f5ae0bb8bdd0fc22fda1340e27
[]
no_license
choward1491/DeterministicDP
f65cb9d9d0b7664a04560b0ccf83f60aabe0a2f3
d5359820428812f4da1c405c1c8ad0b2a777636e
refs/heads/master
2021-01-11T17:28:26.822219
2017-09-05T04:54:01
2017-09-05T04:54:01
79,779,396
2
0
null
null
null
null
UTF-8
C++
false
false
3,088
cpp
#include "ddp_pendulum.hpp" #define _USE_MATH_DEFINES #include <math.h> namespace ddp { pendulum::pendulum() { } pendulum::~pendulum() { } void pendulum::init() { } double pendulum::finalCost(int state_idx) { int idx1 = 0, idx2 = 0; getIndicies(state_idx, idx1, idx2); struct state s = { t[idx1],td...
[ "choward1491@gmail.com" ]
choward1491@gmail.com
8c31c344ad2457893ee8f5d9962e5358c870c0a9
e73580b1e9abc605df0811296fb82268e0b65fc7
/xa_nnlib/test/android_nn/runtime/test/generated/examples_hifi/conv_1_h3_w2_VALID.example.cpp
ba7dc174ad2dceb1c1e66ac4a0f05c009cb95daf
[ "LicenseRef-scancode-other-permissive" ]
permissive
hongshui3000/nnlib-hifi4
d09a7fe02f29792869a5b9ff7c64f86a09d1ed2b
2e21151e574e8c86fe76b6d6dde3596ef95facf9
refs/heads/master
2022-11-25T19:14:21.516763
2020-08-05T13:05:24
2020-08-05T13:05:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,765
cpp
/******************************************************************************* * Copyright (c) 2018-2020 Cadence Design Systems, Inc. * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to use this Software with Ca...
[ "nyadla@cadence.com" ]
nyadla@cadence.com
42eaacf6002b798ce11dbf4671e01baf06d6ebad
e572189d60a70df27b95fc84b63cc24048b90d09
/bjoj/9935.cpp
1e8d3e222667608e5d05efe3547af4b1d3751406
[]
no_license
namhong2001/Algo
00f70a0f6132ddf7a024aa3fc98ec999fef6d825
a58f0cb482b43c6221f0a2dd926dde36858ab37e
refs/heads/master
2020-05-22T12:29:30.010321
2020-05-17T06:16:14
2020-05-17T06:16:14
186,338,640
0
0
null
null
null
null
UTF-8
C++
false
false
594
cpp
#include <iostream> #include <vector> using namespace std; typedef unsigned int ui; int main() { string A, B; cin >> A >> B; ui blen = B.size(); vector<char> ans; for (char a : A) { ans.push_back(a); if (ans.size() >= blen) { ui start = ans.size() - blen; bool match = true; for (ui i=0; i<blen; ++i...
[ "namhong2001@gmail.com" ]
namhong2001@gmail.com
7bb813adaf1a28b7f397c75a4ffe393ef46b032d
1bfd698b2c1f5760734dc42632fe54c65a286086
/IfcPlusPlus/src/ifcpp/IFC4/include/IfcWasteTerminal.h
c9705641c578c7d6fc8738ec1a5559dc02e6482c
[]
no_license
wartburgritter0/old_IfcPlusPlus
c0bd0b784396c100d0d96fc7af6146a0325a9e1b
d0f9d81462b295990d3eb83c9c406d520840330e
refs/heads/master
2021-05-27T21:54:14.456425
2014-06-03T21:23:14
2014-06-03T21:23:14
19,681,159
1
0
null
null
null
null
UTF-8
C++
false
false
5,373
h
/* -*-c++-*- IfcPlusPlus - www.ifcplusplus.com - Copyright (C) 2011 Fabian Gerold * * This library is open source and may be redistributed and/or modified under * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or * (at your option) any later version. The full license is in LICENSE file * in...
[ "fabian.gerold@gmail.com@06f6d6f3-f2e0-f239-6e86-ba6a5d17d3a5" ]
fabian.gerold@gmail.com@06f6d6f3-f2e0-f239-6e86-ba6a5d17d3a5
f2a9241e61d6c73e89e4bf519b56d30e3124cf97
9a3b9d80afd88e1fa9a24303877d6e130ce22702
/src/Providers/UNIXProviders/tests/UNIXProviders.Tests/UNIX_NetworkPolicyActionFixture.cpp
0e8faee9f19c86211086cfb23faee2f2942e5919
[ "MIT" ]
permissive
brunolauze/openpegasus-providers
3244b76d075bc66a77e4ed135893437a66dd769f
f24c56acab2c4c210a8d165bb499cd1b3a12f222
refs/heads/master
2020-04-17T04:27:14.970917
2015-01-04T22:08:09
2015-01-04T22:08:09
19,707,296
0
0
null
null
null
null
UTF-8
C++
false
false
3,504
cpp
//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor lice...
[ "brunolauze@msn.com" ]
brunolauze@msn.com
8fb009781033cbabaee519ad918f0b25ccb1dc78
2a018dd401bae6a8e6ee091b44d841a7e1c04660
/Source/Dieseland/Public/BaseProjectile.h
3115606968b11f1ceb644503ff6dfe68ec20aa6f
[]
no_license
rsc8472/Dieseland
9f6d74326ac0961d236ec5127ab2b1e78c8b6121
e70e93f2fc139e0a8d76502902aa333d46fad0e7
refs/heads/master
2020-12-11T02:02:17.735657
2014-09-08T01:24:10
2014-09-08T01:24:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
750
h
#pragma once #include "GameFramework/Actor.h" #include "BaseProjectile.generated.h" /** * */ UCLASS() class DIESELAND_API ABaseProjectile : public AActor { GENERATED_UCLASS_BODY() public: // Displayed Mesh UPROPERTY(Category = Combat, BlueprintReadOnly, VisibleAnywhere) TSubobjectPtr<class UStaticMeshCompon...
[ "tarwine@live.com" ]
tarwine@live.com
5f32359aeed7cce008fe96a0c6c5e6bbf8dd7ac4
f84a0ee6bee670736b64427b93d5141061be22ba
/codeforces/374/B.cpp
d49d661b2e542f8f6f6e1a3e871b00b840ffd479
[]
no_license
joseleite19/competitive-programming
eaeb03b6a250619a4490f5da5274da3ba8017b62
f00e7a6cb84d7b06b09d00fffd7c5ac68a7b99e3
refs/heads/master
2020-04-15T14:05:40.261419
2017-12-19T18:34:42
2017-12-19T18:34:42
57,311,825
1
0
null
null
null
null
UTF-8
C++
false
false
498
cpp
#include <bits/stdc++.h> #define ff first #define ss second #define mp make_pair using namespace std; int cnt[200]; int main(){ int n, k; char s[200]; scanf("%d %d", &n, &k); for(int i = 0; i < n; i++){ scanf(" %s", s); cnt[ strlen(s) ]++; } scanf(" %s", s); int pass = strlen(s); int ans = 0; for(i...
[ "leite.josemarcos@gmail.com" ]
leite.josemarcos@gmail.com
4fe5c7a16b4c286b6144f28888802748490d53f0
9cd41530e6d686ef43a78e15b2d69268d81b3fd9
/minimal/dynamic.cpp
85ad15304e402bd2683896ad4b450786a5f6f3ff
[]
no_license
quicknir/globals
7ff53202080b9b0a8f90c492b2d783af7dcb8463
576365ec448548fe571903360f222d9d41e1cee8
refs/heads/master
2021-01-12T15:17:33.608314
2016-11-01T03:58:07
2016-11-01T03:58:07
71,747,896
0
0
null
null
null
null
UTF-8
C++
false
false
91
cpp
#include "dynamic.h" #include "static.h" std::string globalGetter() { return g_str; }
[ "quicknir@gmail.com" ]
quicknir@gmail.com
eb66a88b2ef0afdb3e75b4b479f23204ce3bf3c6
7049ba52f8098dd6131ac8f0e9fc212f563edec4
/Dio/Dio/DioDlg.h
753d1251ee692972042897b1d25b4cfdce3b262d
[ "MIT" ]
permissive
tkopacz/2016windows-upboard
2066f59e37bb4743f545981275429a858daacfc0
3b198045c45a2b83e88fe09a45e4a7b3011066fb
refs/heads/master
2021-01-11T08:59:54.996022
2016-12-27T21:39:57
2016-12-27T21:39:57
77,483,795
0
0
null
null
null
null
UTF-8
C++
false
false
1,476
h
// DioDlg.h : header file // #include "afxwin.h" #pragma once // CDioDlg dialog class CDioDlg : public CDialog { // Construction public: CDioDlg(CWnd* pParent = NULL); // standard constructor // Dialog Data enum { IDD = IDD_DIO_DIALOG }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV...
[ "tkopacz@tomaszkopacz.com" ]
tkopacz@tomaszkopacz.com
bc8ff5ff6f48a565651f5a9bff4e51e47ae6dbed
4292022e05dcc8b92fe7b85fe1901101d420cf0f
/example_cpu.cpp
cee39b5a9e45233771df1ec53aa00b026a83e758
[ "MIT" ]
permissive
msiva21/Graph-Executor
96066d2a29eef4267a337e5f95645db75d0b050a
9e06bf1fbb6f19817a587a276d8c2103ed3a5b0c
refs/heads/master
2021-10-26T03:21:11.079947
2019-04-10T08:13:57
2019-04-10T08:13:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,484
cpp
#include <example_cpu.hpp> Vector_int::Vector_int(size_t sz, bool nonzero): nums(sz) { assert(sz); if (nonzero) for (size_t i = 0; i < sz; ++i) nums[i] = i; } std::unique_ptr<Example_result> Vector_int::clone() const { auto ret(std::make_unique<Vector_int>(nums.size())); ret->num...
[ "kongaskristjan@gmail.com" ]
kongaskristjan@gmail.com
d26d8549dfd1c83b76dd4c16c0a3d6a6ea09c88a
fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd
/content/common/indexed_db/indexed_db_key_unittest.cc
30f1c815c26cd7fab6d559b431dadb2786f3a842
[ "BSD-3-Clause" ]
permissive
wzyy2/chromium-browser
2644b0daf58f8b3caee8a6c09a2b448b2dfe059c
eb905f00a0f7e141e8d6c89be8fb26192a88c4b7
refs/heads/master
2022-11-23T20:25:08.120045
2018-01-16T06:41:26
2018-01-16T06:41:26
117,618,467
3
2
BSD-3-Clause
2022-11-20T22:03:57
2018-01-16T02:09:10
null
UTF-8
C++
false
false
1,691
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 <stddef.h> #include <vector> #include "base/strings/string16.h" #include "content/common/indexed_db/indexed_db_key.h" #include "testing/gtest/i...
[ "jacob-chen@iotwrt.com" ]
jacob-chen@iotwrt.com
0e0884e632426f79f5dd9933c876f94156389994
37a3e81f3ca08b9250af711315270c162f1aceaf
/First A/capitalize/main.cpp
71b2309658b54b48603da900d76439e0d00051fc
[]
no_license
AbdElrahmanMSalim/PS
ce2ed4ccbd50e8edb9aa1dd243677b6ceb902e65
4880d6a4d2699ff71f6068d6abe25c32d294cdc7
refs/heads/master
2021-04-26T23:07:13.536457
2018-03-06T18:58:13
2018-03-06T18:58:13
123,934,247
0
0
null
null
null
null
UTF-8
C++
false
false
273
cpp
#include <iostream> #include <string> using namespace std; int main() { string a; cin >> a; if (a.length() > 1000 and a.length() != 0){ return -1;} if (a.at(0) > 96 and a.at(0) < 123) a.at(0) = a.at(0) - 32; cout << a; return 0; }
[ "abdelrahman.m.salim@gmail.com" ]
abdelrahman.m.salim@gmail.com
5122e7c9b8e531531539f419d0fde10ec7638d04
5cad8d9664c8316cce7bc57128ca4b378a93998a
/CI/rule/pclint/pclint_include/include_linux/c++/4.8.2/javax/crypto/CipherInputStream.h
e4c16e173750736c007922a4eb27cb7f460f9f0c
[ "LicenseRef-scancode-unknown-license-reference", "GPL-2.0-only", "GPL-3.0-only", "curl", "Zlib", "LicenseRef-scancode-warranty-disclaimer", "OpenSSL", "GPL-1.0-or-later", "MIT", "LicenseRef-scancode-other-copyleft", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows", "BSD-3-...
permissive
huaweicloud/huaweicloud-sdk-c-obs
0c60d61e16de5c0d8d3c0abc9446b5269e7462d4
fcd0bf67f209cc96cf73197e9c0df143b1d097c4
refs/heads/master
2023-09-05T11:42:28.709499
2023-08-05T08:52:56
2023-08-05T08:52:56
163,231,391
41
21
Apache-2.0
2023-06-28T07:18:06
2018-12-27T01:15:05
C
UTF-8
C++
false
false
1,264
h
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- #ifndef __javax_crypto_CipherInputStream__ #define __javax_crypto_CipherInputStream__ #pragma interface #include <java/io/FilterInputStream.h> #include <gcj/array.h> extern "Java" { namespace javax { namespace crypto { class Cipher;...
[ "xiangshijian1@huawei.com" ]
xiangshijian1@huawei.com
41b2e66a7877e3750b5aa77d146e21286f27d5c5
64744a7d04e63bfd51da635adb69c8ca2da80b20
/arduino/MAIN/main_ESP-12/Screens.h
986e7d24ed118fb77234dc7d38e9252ff9388103
[]
no_license
MichalZima/GPS-tachometer
9b085cdf78180bada53b09c06a91da98bd56d35e
a69c94489d3b98504abce43769353ebea3a76bf9
refs/heads/master
2023-04-21T07:04:43.800641
2021-05-10T19:10:49
2021-05-10T19:10:49
268,513,254
0
1
null
null
null
null
UTF-8
C++
false
false
2,618
h
#include "mySD.h" #include "Menu.h" MySD mySD; Menu menu; class Screens { public: String savedToSD; void First() { myTFT.Settings(2, 10, 10); myTFT.Print(gps.speed.kmph(), 4, 1); tft.setTextSize(1); tft.print(" km/h "); myGPS.realDate(); printValuesForObservation()...
[ "michal.zima01@gmail.com" ]
michal.zima01@gmail.com
f9e714b4154a67177bad6e702f7e87cc6d92e53c
b65808b2c0d1252d7744006603ef790887f5a81f
/c++/include/euler.h
8267961cbe31e09d52a458ab5890e8c0fa5a733b
[]
no_license
NFA/euler
374507259fde3a7b884c49ea11307ccc0da17d67
5871b5164257a2311e299454f4f982256dd1a75d
refs/heads/master
2021-01-19T07:40:59.858425
2013-12-23T22:38:46
2013-12-23T22:38:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
484
h
#include <iostream> namespace euler { template <typename T> void print(std::vector<T> vec, std::ostream& out = std::cout, bool fold = false) { out << "{ "; if (!fold) { std::copy(vec.begin(), vec.end(), std::ostream_iterator<T>(out, " ")); } else { std::copy(vec.begin(), vec.begin() + 5, std::ostream_it...
[ "nfa106@gmail.com" ]
nfa106@gmail.com
8fcf64dbdc1f32b48c9ae36639fa3a18d687d20b
b22588340d7925b614a735bbbde1b351ad657ffc
/athena/Database/APR/StorageSvc/StorageSvc/DbArray.h
9d8fdb5e16dcd4a4c6471d0dbf0c8f95ba673b68
[]
no_license
rushioda/PIXELVALID_athena
90befe12042c1249cbb3655dde1428bb9b9a42ce
22df23187ef85e9c3120122c8375ea0e7d8ea440
refs/heads/master
2020-12-14T22:01:15.365949
2020-01-19T03:59:35
2020-01-19T03:59:35
234,836,993
1
0
null
null
null
null
UTF-8
C++
false
false
2,640
h
/* Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ //==================================================================== // // Package : pool/StorageSvc (The POOL project) // // Author : M.Frank //==================================================================== #ifndef POOL_R...
[ "rushioda@lxplus754.cern.ch" ]
rushioda@lxplus754.cern.ch
5c6ec6c29191fec548a9e6ee9b4eacc36009184d
cf747dc21df7a382fdde232d6866eeb3a6e61dc8
/rotate-list/rotate-list.cpp
4931b83056749d5ce5006141447e97ec6655afb7
[]
no_license
Ketan-Suthar/leetcode
777117ffeb6fbe215a985a73cb818f1e4fb40481
76daa0a76384106fb10c439307d630d8355f6b61
refs/heads/main
2023-06-27T09:36:58.509676
2021-07-18T09:01:55
2021-07-18T09:01:55
372,232,110
5
0
null
null
null
null
UTF-8
C++
false
false
1,428
cpp
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode() : val(0), next(nullptr) {} * ListNode(int x) : val(x), next(nullptr) {} * ListNode(int x, ListNode *next) : val(x), next(next) {} * }; */ class Solution { public: ListNode* reverse(Lis...
[ "ketansuthar899@gmail.com" ]
ketansuthar899@gmail.com
e1c8bdfe4fdb7e619275b47be9b2cbcbe751d986
54b5faea99fb06c9f729740832c30a9b77280b45
/round386_div2/G.cpp
e22c58a6bc62947bd03e17d7b847ca28e554e16b
[]
no_license
vovanhuy/codeforces-code
5b0da7a48c1cd76d99a707d067d900bfc38ff254
6fd65d63246ec377f606d8479482edd0bbea7658
refs/heads/master
2021-01-12T01:25:43.245750
2017-01-09T11:39:45
2017-01-09T11:39:45
78,383,685
0
0
null
null
null
null
UTF-8
C++
false
false
2,896
cpp
// #include <bits/stdc++.h> #include <iostream> #include <limits> #include <iomanip> #include <cstdio> #include <algorithm> #include <cstring> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <set> #include <map> #include <cmath> #include <sstream> using namespace std; #...
[ "vovanhuyworkspace@gmail.com" ]
vovanhuyworkspace@gmail.com
fa4437cd11ce3e40df51784096145fff253ccf12
e385b91e8bf091e1f6f79dafde0937ed872863ef
/euphoria/input-connectedunits.cc
26a572f8ed629444d575695450b513da293d154c
[]
no_license
madeso/spacehustler
7da29fe83e846e9c9c99906e99c2116278f9f227
18cdbc0e6eea5d13c2537804715cd968dc2c9926
refs/heads/master
2020-05-20T21:48:30.260256
2017-03-13T22:20:54
2017-03-13T22:20:54
84,531,246
4
0
null
null
null
null
UTF-8
C++
false
false
1,100
cc
// Euphoria - Copyright (c) Gustav #include "euphoria/input-connectedunits.h" #include <cassert> #include <string> #include "euphoria/input-activeunit.h" #include "euphoria/input-activelist.h" #include "euphoria/str.h" namespace euphoria { namespace input { ConnectedUnits::ConnectedUnits(std::shared_ptr<ActiveLis...
[ "sir.gustav.the.coder@gmail.com" ]
sir.gustav.the.coder@gmail.com
5c81f728126447e803e9a620d4e800f7c9994700
307676d65d5c656c8c8d9ace29df9475f4bcc379
/Library/card.h
eb730dcdba31874aed65c6d2ab95e8e8b442c865
[]
no_license
weisensee/PinochleGame
e1fa5b6c219d6dde741cd9dbe2194df32cb6316b
55cac0dccec69fc0cf44bee7351694fe6fb55be2
refs/heads/master
2020-04-22T05:40:53.211336
2015-03-12T05:15:16
2015-03-12T05:15:16
26,974,202
1
0
null
null
null
null
UTF-8
C++
false
false
1,545
h
/* card.h -- Card Game 'card' class Lucas Weisensee 2015 stores and operates on a single card Card values: the card value is the exact card in the deck that the card represents the values are 1-24 such that 1,2,...6 = A,10,K,Q,J,9 = value%6 and 0,1,2,3 = Spades,Clubs,Diamonds,Hears = value/6 */ #pra...
[ "lucas.weisensee@gmail.com" ]
lucas.weisensee@gmail.com
d83ee6cf4adf56fe7e283c35d6807423d63985df
9fe07e835e5b88d03da9f926f122e7f36cbde831
/Waman/symmetricTree.cpp
eeb6a92f890ff651f537e59f1c07affd56b73d20
[]
no_license
SuyashDD/HYD-CODES
7f279b80b9ec7f86f5d949632301ea3f6e11b28c
45ef89ddcc66141a276c97cc5283429281f30d20
refs/heads/master
2022-12-26T04:06:05.433238
2020-10-09T15:31:33
2020-10-09T15:31:33
299,528,187
0
0
null
null
null
null
UTF-8
C++
false
false
2,752
cpp
// { Driver Code Starts #include<bits/stdc++.h> using namespace std; struct Node { int data; struct Node *left; struct Node *right; }; Node* newNode(int val) { Node* temp = new Node; temp->data = val; temp->left = NULL; temp->right = NULL; return temp; } Node* buildTree(string str) ...
[ "waman.murudkar@gmail.com" ]
waman.murudkar@gmail.com
06e11a937d71f433c2e3904cb738bd91fdfbd19f
d4446dd5e3590110225ecff0d273c5effe2e5e76
/solutions/boxDelivering.cpp
724f1ccff0669e483e8055ef6893a3a7080fc058
[]
no_license
realmelan/leetcode
7f41dd4cadfe8e55cfbbee8d00c3a2683b74411b
e8d147908dac7e357a22af31921459ee9ed3c5dc
refs/heads/master
2021-08-19T09:18:20.781322
2021-05-05T20:25:56
2021-05-05T20:25:56
120,499,148
0
0
null
null
null
null
UTF-8
C++
false
false
6,244
cpp
// // boxDelivering.cpp // leetcode // // Created by Song Ding on 2/12/21. // Copyright © 2021 Song Ding. All rights reserved. // #include "common.h" using namespace std; namespace boxDelivering { /* // TODO: copy problem statement here 1687. Delivering Boxes from Storage to Ports My SubmissionsBack to Contest ...
[ "dingsong.net@gmail.com" ]
dingsong.net@gmail.com
f0f287fa7ca53032e9879627ecc554257d2728a5
829b412097aee6f3077c39190e6c8dc118cbd7d8
/app/validate-geometry.cxx
721de3558c529f58ef2472fdc4e5804fa12451c4
[]
no_license
captain-col/captEvent
88074c9aa89bbb4cc19312cd8c885d99b824d899
97f64512667e220345a9c03ac41aacc11d770175
refs/heads/master
2021-01-20T22:14:39.591288
2018-07-30T20:47:11
2018-07-30T20:47:11
101,805,593
0
0
null
null
null
null
UTF-8
C++
false
false
4,304
cxx
/// Copy the geometry found in a ROOT file into a second root file. #include <memory> #include <iostream> #include <sstream> #include <cstdlib> #include <unistd.h> #include <string> #include <vector> #include <map> #include <algorithm> #include <TFile.h> #include <TGeoManager.h> #include <TGeoOverlap.h> #include <TM...
[ "clark.mcgrew@stonybrook.edu" ]
clark.mcgrew@stonybrook.edu
f1f411ea6ac2d89974983679d4000af73cb44e2b
f0bd42c8ae869dee511f6d41b1bc255cb32887d5
/Codeforces/578A. A Problem about Polyline.cpp
60f2ac2fe688ed4f81e7bbbda8fa59700710c712
[]
no_license
osamahatem/CompetitiveProgramming
3c68218a181d4637c09f31a7097c62f20977ffcd
a5b54ae8cab47b2720a64c68832a9c07668c5ffb
refs/heads/master
2021-06-10T10:21:13.879053
2020-07-07T14:59:44
2020-07-07T14:59:44
113,673,720
3
1
null
null
null
null
UTF-8
C++
false
false
776
cpp
/* * 578A. A Problem about Polyline.cpp * * Created on: Sep 16, 2015 * Author: Osama Hatem */ #include <bits/stdtr1c++.h> #include <ext/numeric> using namespace std; int main() { #ifndef ONLINE_JUDGE freopen("in.in", "r", stdin); // freopen("out.out", "w", stdout); #endif long long x, y; cin >> x >> y...
[ "osama@elysian.team" ]
osama@elysian.team
c69be8158a959caacb3548c6b8837a8969b46a11
73268e99452206c2d8e50e20bfc9d1de9d6d3cd5
/problems/ctci/graph/build-order.cc
dd206d077725fdcd195e9f998e546929fb3498cc
[]
no_license
aidenbenner/competitive-programming
701dc5667f9ef371a82b08de524f2041457c742f
4ab8b177c9fa8216767c566c73e8bb168efd2033
refs/heads/master
2021-05-01T05:08:36.369356
2019-08-31T04:09:42
2019-08-31T04:09:42
72,895,780
2
0
null
null
null
null
UTF-8
C++
false
false
1,585
cc
#include <iostream> #include <queue> #include <cassert> #include <vector> #include <map> using namespace std; struct Dep { char a; char b; Dep(char a, char b) : a(a), b(b) { } }; typedef map<char, vector<char>> AdjList; queue<char> getBuildOrder(vector<Dep> deps, vector<char> projects) { queue<cha...
[ "aiden.benner@gmail.com" ]
aiden.benner@gmail.com
151da8e14c22cae5e53e4a5eeb8dca59032baf0b
7ababa53f162fa7bc9c591bf9b9d42abfbd7f1f7
/flight_source/UCSB/EncoderReader/stdafx.cpp
bd2a778cca4ecdee916288a46e176ce7be9989c2
[]
no_license
woody62/cofe-fts-flight-code-archive
938f045f17770e3959e77c944cf064e2de1b154f
5a97da37608df75d5e308f94bee64f7c3c8d09e7
refs/heads/master
2021-01-12T10:08:47.669158
2013-08-21T21:47:39
2013-08-21T21:47:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
292
cpp
// stdafx.cpp : source file that includes just the standard includes // EncoderReader.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "peterm@deepspace.ucsb.edu" ]
peterm@deepspace.ucsb.edu