blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
58aa1379708ac1441f3b06f87d036cb1ddd1d1c1
6aa9dfba2a7b05f33a042b7b35d5e030ac5e3c65
/filesearcher.h
55a3e47233d358be722b1e5e120160d85adec91d
[]
no_license
BabajotaUA/DublicatesDetector
ec6d920f0ad8b28e0bb51e1900976a9db82945b4
d3aec6ecdd1fae08f5f3fe0a604b37c0afd7f413
refs/heads/master
2016-09-15T19:51:04.996094
2013-07-09T16:16:20
2013-07-09T16:16:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
445
h
#pragma once #include <QObject> class FileSearcher : public QObject { Q_OBJECT public: explicit FileSearcher(QObject *parent = 0); virtual ~FileSearcher() {} QList<QString> getDirectoryList() const; void setDirectoryList(const QList<QString> &value); QList<QString> getFileList() const; ...
[ "yfshaolin@gmail.com" ]
yfshaolin@gmail.com
9cce45dba79e7b20da6689bad23c8ed9e45e4e2b
62811a1a8c56b10d71f7e857040582b1bf78882c
/3-Computer-Network/lab1-Socket编程/Server/lock.cpp
09bf7ce0965e39f7b003901d74ad43cd1a3dc376
[ "MIT" ]
permissive
ftxj/5th-Semester
9ebbfa10bc0bcd5008ef47bbb7524e81c01963ba
37410c3497b5392ba74616fe34f7635acca67bae
refs/heads/master
2021-09-05T13:37:03.185061
2018-01-28T09:28:23
2018-01-28T09:28:23
119,241,213
1
0
null
null
null
null
UTF-8
C++
false
false
518
cpp
#include "lock.h" #include<QFile> #include <QMessageBox> #include <QTextCodec> lock::lock() { } QString lock::encryption(const QString &st){ QByteArray ba = st.toUtf8().toBase64(); QString DataAsString = QTextCodec::codecForMib(106)->toUnicode(ba); return DataAsString; } QString lock::Deciphering(const Q...
[ "932141413@qq.com" ]
932141413@qq.com
5c9ad35b47a52254c225c21a29e12b24868e807b
5ea09a949bdcf7ef5c3ea504fb14751f57d3f328
/Project2/fish.h
a5af7fa5f7c39a059dde6dbf1110063d108e1b2f
[]
no_license
staatsty/CSE_335
0e4600e7748b8a42c057fa2f64947bc4c080aaf7
53d32188869a3a58a4b259b974f217ac7df5f588
refs/heads/master
2020-04-01T05:48:08.654789
2018-10-13T22:45:26
2018-10-13T22:45:26
152,920,091
0
0
null
null
null
null
UTF-8
C++
false
false
2,086
h
/* * Derived from Pet base class */ /* * File: Fish.h * Author: Tyler Staats, Samuel Batali * * */ #ifndef FISH_H #define FISH_H #include <QTableWidget> #include <string> #include <iostream> #include <iomanip> #include "visitor.h" #include "pet.h" using namespace std; class Fish: publi...
[ "noreply@github.com" ]
noreply@github.com
2dbe1251aabda67b791440c00869200432fc056f
a95ecfd2d1d6d01aad3257dba5876b9be4295faf
/Calculator.cpp
ff0ee63a9cadaea75411cf001197ca8eb5751200
[]
no_license
Revan20911/Calculator
4877db46a060b5a7edb586461b4c068b1d78de33
50fef104044c93974bf109f63ccbff547f12f3d3
refs/heads/master
2020-04-26T18:55:06.146135
2019-03-04T14:23:57
2019-03-04T14:23:57
173,759,089
0
0
null
null
null
null
UTF-8
C++
false
false
1,025
cpp
// ConsoleApplication1.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include "pch.h" #include <iostream> using namespace std; int add(int num1,int num2); int sub(int num1,int num2); int divv(int num1,int num2); int mul(int num1,int num2); void calc() { int nu...
[ "noreply@github.com" ]
noreply@github.com
9c80e00de860f5c4e15e366ed05ad22c11fbf477
d4d085e130b60726d7167f537856da6820f1c6b4
/2-algorithms/lca-sparse-matrix.cpp
8b5f2684edfc7e7d63a998af153ff1dbc430f411
[]
no_license
RobertYL/USACO
8962864484e8cdd9eb49d01280ec20f363db879a
b585a98521053fd997bf5051ceb4f42d3cf9984a
refs/heads/master
2021-10-16T16:27:25.305499
2019-02-12T06:25:45
2019-02-12T06:25:45
109,755,583
0
0
null
null
null
null
UTF-8
C++
false
false
1,495
cpp
#define REP(i, a, b) for (int i = int(a); i < int(b); i++) #include <algorithm> #include <cstdlib> #include <cstring> #include <climits> #include <fstream> #include <iostream> #include <string> #include <vector> #include <queue> using namespace std; int N = 5; int LOG = 2; vector<int> tree[1000]; int depth[1000], p...
[ "rob3rtyl33@gmail.com" ]
rob3rtyl33@gmail.com
698d6c11c7ca7842bdfb6ff2061aae34ec4f6cc7
1270b15e0d93b6686592c6f909f062722c57dcce
/src/MarkEmptyDirs/Api/markemptydirsapi_global.hpp
0fab01a588f9ff89f353b1aca4ed4314db607698
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
jonnydee/markemptydirs-cpp
7b951add303345c560054cebd2f6387876118eb5
b2d9ea2e518fc7bb39e480af6a832749a562ec73
refs/heads/master
2021-05-28T09:07:33.781753
2014-01-24T21:51:51
2014-01-24T21:51:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,019
hpp
// Copyright 2013-2014 Johann Duscher (a.k.a. Jonny Dee). All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, are // permitted provided that the following conditions are met: // // 1. Redistributions of source code must retain the above copyright notice, this l...
[ "jonny.dee@gmx.net" ]
jonny.dee@gmx.net
fb751903116079cb9fda51f4be90d86e0e4a94af
42b50020d2914500979fe0143dc7b60c94697c15
/App1/Scripts/CameraInputScript.h
2308c18fc3e3f0c4becee078d09574bf9223fe6d
[]
no_license
999eagle/cga
6eb2bff1f82ead9cfd20afd2009aeb6d33a19118
5d8786c46c049e0187001a9449901e60f742c42c
refs/heads/master
2021-01-19T13:14:50.902182
2017-12-15T17:10:59
2017-12-15T17:10:59
88,075,815
0
1
null
null
null
null
UTF-8
C++
false
false
2,606
h
#pragma once #include "..\ECS\Components\ScriptComponent.h" #include "..\ECS\Components\TransformComponent.h" namespace Scripts { class CameraInputScript : public ECS::Components::Script { public: CameraInputScript(GLFWwindow * window) { glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED); glfwGe...
[ "erik@tauchert.de" ]
erik@tauchert.de
3c2b8e935060f628be8c5f14e66118c1a382cb40
e4390f57196dfbdb8a8bcc6071464d537f7edf72
/src/domain/World.cpp
e2bd202c5d7ffd8cc6408048b35610e333a55ef6
[]
no_license
janpene/RPG_game
1f2e43db106574a5c4b5a76f7224f7a4887d6f5a
4da1e4306ba27a5491ac892c5f024d651cf5442f
refs/heads/master
2023-04-20T11:41:25.758586
2021-05-07T18:25:34
2021-05-07T18:25:34
365,317,682
0
0
null
null
null
null
UTF-8
C++
false
false
58
cpp
// // Created by 71M3 on 7.5.2021. // #include "World.h"
[ "janpene11@gmail.com" ]
janpene11@gmail.com
0c3e597db7ee0a12ad85aee9c3ffb53d827c8c92
614650a63543180d0d2b5cb12851868e93a0820a
/book.cpp
09235a2a098c8cd0c27be94f10c116554e576d07
[]
no_license
LDercher/AVL_tree
8f81096c33f6d8fb45fc647489ec13db31e77634
46abd1f81ab60ae8d66f0909262ac3c2a755f578
refs/heads/master
2021-08-31T14:29:39.069312
2017-12-21T17:44:00
2017-12-21T17:44:00
115,031,518
0
0
null
null
null
null
UTF-8
C++
false
false
663
cpp
#include "book.hpp" #include "util.hpp" Book::Book(int id, std::string name, std::string publisher, int copyCount) { this->id = id; this->name = name; this->publisher = publisher; this->currentCount = copyCount; this->totalCount = copyCount; } int Book::getId() { return this->id; } std::string Book::getNam...
[ "luke.dercher@gmail.com" ]
luke.dercher@gmail.com
a2107018276a87a74c3ded1c45ee35a718421501
e6c9769aea608f8adc946e546d5efa80cee8c58b
/include/SSVBloodshed/GUI/Controls/FormBar.hpp
5bfc5f7e7b416ce587bba7fbafdddce7a6dc9e15
[ "AFL-3.0", "AFL-2.1", "LicenseRef-scancode-unknown-license-reference" ]
permissive
maxlimitz/SSVBloodshed
c49b1dc1c2c78a345e4c446d18256c1eca5def7a
63800034a0cfa9d61f9406001072b38f1268883a
refs/heads/master
2021-01-20T00:08:45.777950
2016-10-05T23:19:14
2016-10-05T23:19:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,098
hpp
// Copyright (c) 2013-2015 Vittorio Romeo // License: Academic Free License ("AFL") v. 3.0 // AFL License page: http://opensource.org/licenses/AFL-3.0 #ifndef SSVOB_GUI_CONTROLS_FORMBAR #define SSVOB_GUI_CONTROLS_FORMBAR #include "SSVBloodshed/OBCommon.hpp" #include "SSVBloodshed/GUI/Widget.hpp" #include "SSVBloodshe...
[ "vittorio.romeo@outlook.com" ]
vittorio.romeo@outlook.com
3a8a6c0fad9136fee2cdf510e09b67ae6000aa69
be93022a5982f31658793b2ac15243b458f9ea49
/DecisionTreeClassification/hp0010DTFileWriter.h
9b6f79c467f687f0a05af59b8466c29fd22cb154
[]
no_license
haripradhan/DataMiningAlgorithms
182011c8da87c3c3d51e9f70e90128e6734c0d6d
7f4eb1bf37ee8e1925652ba3e2282bb96cb3eefc
refs/heads/master
2021-01-19T08:16:23.277292
2013-09-11T00:21:22
2013-09-11T00:21:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,161
h
/* ------------------- ** hp0010DTFileWriter.cpp ** Hari Pradhan ** 09/22/2012 ** ------------------*/ #ifndef FILEWRITER_H #define FILEWRITER_H #include <iostream> #include <ostream> #include <fstream> #include <vector> #include "hp0010DTParser.h" using namespace std; /**FileWriter writes the contents to the file *...
[ "starling.lucky@gmail.com" ]
starling.lucky@gmail.com
780863cefcb87544b50510d9f98fa6c28194aec6
fc38a55144a0ad33bd94301e2d06abd65bd2da3c
/thirdparty/cgal/CGAL-4.13/include/CGAL/Modular_arithmetic/Residue_type.h
d2ddb6a8dcc874d1d5234bcc7c6707480f7f112f
[ "LGPL-3.0-only", "GPL-3.0-only", "GPL-1.0-or-later", "LGPL-2.1-or-later", "LicenseRef-scancode-free-unknown", "LGPL-2.0-or-later", "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-unknown-license-reference", "MIT-0", "MIT", "LGPL-3.0-or-later", "LicenseRef-scancode-warranty-disc...
permissive
bobpepin/dust3d
20fc2fa4380865bc6376724f0843100accd4b08d
6dcc6b1675cb49ef3fac4a58845f9c9025aa4c9f
refs/heads/master
2022-11-30T06:00:10.020207
2020-08-09T09:54:29
2020-08-09T09:54:29
286,051,200
0
0
MIT
2020-08-08T13:45:15
2020-08-08T13:45:14
null
UTF-8
C++
false
false
8,084
h
// Copyright (c) 2007 INRIA Sophia-Antipolis (France), Max-Planck-Institute // Saarbruecken (Germany). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Founda...
[ "huxingyi@msn.com" ]
huxingyi@msn.com
8ce0348d1c750de99a76cb0bdcfd8718e7d3c931
2f557f60fc609c03fbb42badf2c4f41ef2e60227
/CommonTools/Utils/interface/RangeObjectPairSelector.h
7eacdb0b753ed878911a7aa6e08327ce2e6eb11c
[ "Apache-2.0" ]
permissive
CMS-TMTT/cmssw
91d70fc40a7110832a2ceb2dc08c15b5a299bd3b
80cb3a25c0d63594fe6455b837f7c3cbe3cf42d7
refs/heads/TMTT_1060
2020-03-24T07:49:39.440996
2020-03-04T17:21:36
2020-03-04T17:21:36
142,576,342
3
5
Apache-2.0
2019-12-05T21:16:34
2018-07-27T12:48:13
C++
UTF-8
C++
false
false
745
h
#ifndef RecoAlgos_RangeObjectPairSelector_h #define RecoAlgos_RangeObjectPairSelector_h /* \class RangeObjectPairSelector * * \author Luca Lista, INFN * * $Id: RangeObjectPairSelector.h,v 1.4 2007/06/18 18:33:54 llista Exp $ */ template<typename F> struct RangeObjectPairSelector { typedef F function; RangeObj...
[ "sha1-73801ca8ca16918e053d407e1ed9c2469728f170@cern.ch" ]
sha1-73801ca8ca16918e053d407e1ed9c2469728f170@cern.ch
0c14ad8b7f8326875f98f312422382e418d49c21
5ac3ae1f74d9a53ef8083387bf594c06690b56da
/TDARecordFile.h
225714b3802f725bc4a01977c300fa8bff0a19e4
[]
no_license
MatamorosF3/RecordsFiles
5dc8e2b4f30998f36d72f3b7d2c1e0f3342d8eb1
c1226c66bd0411cef970af007134cc655484319a
refs/heads/master
2020-03-29T12:56:20.435532
2014-03-24T15:32:46
2014-03-24T15:32:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
501
h
#ifndef TDARECORDFILE #define TDARECORDFILE #include "tdafile.h" using namespace::std; class TDARecordFile : public TDAFile { public: TDARecordFile(); ~TDARecordFile(); virtual int readrecord(char*,int)=0; virtual int writerecord(const char*,int ind)=0; virtual int findrecord(int)=0; virtual int fi...
[ "matamorosf3@gmail.com" ]
matamorosf3@gmail.com
e0610b24857b304f8b31cae68fb90d6324586193
970f500658a3dfc7cfdbfd8ac626cd422985f67b
/src/MPEG4LATMAudioRTPSink.cpp
6075aec7614a73151a21f0853a5c0e0f1736d644
[]
no_license
jianghaibobo2016/RTSP_CLIENT
1e214adc56aa3c344803475ffcd39a6ab12d732c
50ec7bf5bbee3266a906c24302978c777bae9c80
refs/heads/master
2020-03-27T13:38:12.034715
2018-09-30T06:39:57
2018-09-30T06:39:57
146,620,149
0
1
null
null
null
null
UTF-8
C++
false
false
2,436
cpp
/* * MPEG4LATMAudioRTPSink.cpp * * Created on: Aug 13, 2018 * Author: jhb */ #include "strDup.h" #include "MPEG4LATMAudioRTPSink.h" MPEG4LATMAudioRTPSink::MPEG4LATMAudioRTPSink(UsageEnvironment& env, CommonPlay *cpObj, Groupsock* RTPgs, u_int8_t rtpPayloadFormat, u_int32_t rtpTimestampFrequency, char c...
[ "jianghaibobo2007@126.com" ]
jianghaibobo2007@126.com
5a746c41dd4552e39dd8c7dd07c6f216c3266c83
b13b51704390ee6af926a85ab8e7890b6aa8976e
/LRU_Cache.cpp
eadfa51970865429e13fe1b775573eb245603da1
[]
no_license
kxingit/LeetCode
7308eb306fe899e3f68a7cf90b43a37da46416cc
a0ef8e5454bd29076b50ffedc5b1720dd7273a9d
refs/heads/master
2021-01-14T08:03:20.811221
2017-03-20T19:25:56
2017-03-20T19:25:56
35,183,062
0
1
null
null
null
null
UTF-8
C++
false
false
1,513
cpp
/* * tag * Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set. * get(key) - Get the value (will always be positive) of the key if the key exists in the cache, otherwise return -1. * set(key, value) - Set or insert the value if the key i...
[ "kxin@me.com" ]
kxin@me.com
8c484a5e26e74d0538f6ecc0654e7b09d181bf09
bd9d40d0bd8a4759b3db20e10d2dda616a411c48
/Include/Graphics/DX11/GteDX11Texture1.h
5dba151efe541a6aef409677c74c2e5548e297ff
[]
no_license
lai3d/GeometricToolsEngine3p16
d07f909da86e54aa597abd49c57d17981f3dc72f
50a6096e1b9f021483cf42aaf244587ff9a81f5b
refs/heads/master
2020-04-01T19:28:22.495042
2018-10-18T06:27:05
2018-10-18T06:27:05
153,555,419
1
0
null
null
null
null
UTF-8
C++
false
false
1,249
h
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2018 // Distributed under the Boost Software License, Version 1.0. // http://www.boost.org/LICENSE_1_0.txt // http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // File Version: 3.0.0 (2016/06/19) #pragma once #include <Graphics/GteText...
[ "larry@qjt.sg" ]
larry@qjt.sg
d6609ac5d8b0bd0c2b44abe08642d790f113d00f
b14d5833a79518a40d302e5eb40ed5da193cf1b2
/cpp/extern/xercesc++/2.6.0/src/xercesc/dom/deprecated/DeepNodeListImpl.hpp
bf703a7d8a0cd27346980792408a6f4ae0b30b53
[ "Apache-2.0" ]
permissive
andyburke/bitflood
dcb3fb62dad7fa5e20cf9f1d58aaa94be30e82bf
fca6c0b635d07da4e6c7fbfa032921c827a981d6
refs/heads/master
2016-09-10T02:14:35.564530
2011-11-17T09:51:49
2011-11-17T09:51:49
2,794,411
1
0
null
null
null
null
UTF-8
C++
false
false
2,574
hpp
#ifndef DeepNodeListImpl_HEADER_GUARD_ #define DeepNodeListImpl_HEADER_GUARD_ /* * Copyright 1999-2002,2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the...
[ "aburke@bitflood.org" ]
aburke@bitflood.org
de0634e5bf2ebaff4cb0fe3b7842d48ab6a1bc1c
d24fdcbb7da3c74d49399a154ff66e88564fa4bb
/Laba2/Laba2/Laba2.cpp
dbf4d0f2f75fe959f450f5953f8ff706403b3291
[]
no_license
Nazyrick/OAP_2
57e180686821049b0feee8efb659ce31fe288162
28c4902f36317b47d143c60e00a3513b858c9828
refs/heads/master
2021-05-18T04:42:50.435310
2020-03-31T19:30:27
2020-03-31T19:30:27
251,112,500
0
0
null
null
null
null
UTF-8
C++
false
false
1,536
cpp
// Скопировать из файла F1 в файл F2 все строки, в которых есть слова, // совпадающие с первым словом. // Определить количество согласных букв в последней строке файла F2. #include <iostream> #include <fstream> #include <string> #include <sstream> using namespace std; int main() { setlocale(LC_ALL, "Russian"); /*if...
[ "ulasevich_nazar@mail.ru" ]
ulasevich_nazar@mail.ru
a7f6100ebfac6a5561d5d9d224a746b3c6fb02c1
4d20bc226477d3ce2a82f17eb4c5d78e7adb59ef
/Source/Platform/FileDirectory.cpp
e76ba016379d37e823e730a0a89f73bf5dac6f6b
[]
no_license
destinydai/Chaos
82150a3e3cd77c4e2d93ad4cc5c8e87af0da6414
17baa4db5b918bafbb90eb829479fc9c0b76057b
refs/heads/master
2016-09-01T19:26:11.299398
2013-04-24T10:45:03
2013-04-25T03:01:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
445
cpp
#include "stdafx.h" NS_CH_BEG FileDirectory::FileDirectory( const string &szPath): m_szDirectoryPath(szPath) { if(m_szDirectoryPath.size()==0) { CH_ERROR("[pl] szPath length is zero."); return; } if(m_szDirectoryPath[m_szDirectoryPath.size()-1]!='/') { m_szDirectoryPath.push_back('/'); } } FileDirect...
[ "dairba@qq.com" ]
dairba@qq.com
277eb439d25aec4150c069a80f71b2e12c8cf8e3
c36f0407b9199e7d859e98acfc4f30f1e790eba1
/ImageProcessingUsingResultTable/ImageProcessingSolarization.cpp
543e3073e37ec72b6e8383d3776a7b25ff3eaaa2
[]
no_license
astrowidow/ImageProcessing
03eb27962ddad90ff60dd9326d7c89d5a8b15265
2ff5c48f241fedf9355cf2601a3499c7bc1ae823
refs/heads/master
2020-03-28T14:35:09.123979
2018-11-05T13:20:52
2018-11-05T13:20:52
148,501,686
0
0
null
null
null
null
UTF-8
C++
false
false
967
cpp
// // Created by 俵京佑 on 2018/10/22. // #include "ImageProcessingSolarization.h" ImageProcessingSolarization::ImageProcessingSolarization (Image* src_image, Image* dst_image, double wave_num) : ImageProcessingUsingResultTable(src_image, dst_ima...
[ "astrowidow@gmail.com" ]
astrowidow@gmail.com
cf957a523b27b335395c7ad09b0691de57707632
387549ab27d89668e656771a19c09637612d57ed
/DRGLib UE project/Source/FSD/Private/FSDAudioComponent.cpp
e4661783f14197b3f9e3c02ad8c990109d14076b
[ "MIT" ]
permissive
SamsDRGMods/DRGLib
3b7285488ef98b7b22ab4e00fec64a4c3fb6a30a
76f17bc76dd376f0d0aa09400ac8cb4daad34ade
refs/heads/main
2023-07-03T10:37:47.196444
2023-04-07T23:18:54
2023-04-07T23:18:54
383,509,787
16
5
MIT
2023-04-07T23:18:55
2021-07-06T15:08:14
C++
UTF-8
C++
false
false
78
cpp
#include "FSDAudioComponent.h" UFSDAudioComponent::UFSDAudioComponent() { }
[ "samamstar@gmail.com" ]
samamstar@gmail.com
23460b7fd419afb300ae31c9b2623bba0ed1beb8
5f85bc10ebeebab64e670b6be98d9f1946b3b28b
/main.cpp
7367d8a0347591655437b8df5f0aa020279a3bf0
[ "MIT" ]
permissive
pengge/RPAutoBuild
bee871213ff11cdc499bf7e09f32ed22b5887a31
00a5e7abf57f561547745479cffeb7b0705cdcbd
refs/heads/master
2023-08-05T22:57:46.105812
2021-09-28T07:22:33
2021-09-28T07:22:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,700
cpp
#include "rpauto.h" #include "configman.h" namespace fs = std::filesystem; //uint8_t flags = 0b00000000; int main(int argc, char** argv) { RPAutoManager* manager; std::string cloneName = ""; std::string autofile = ""; if (argc < 2 || argc > 5) { std::cout << "Invalid Repo" << std::end...
[ "antonr@live.dk" ]
antonr@live.dk
26d8ce90ea67e790e23cbc2dda01b110b4f8dfb9
6c0e8ace1b3993cca54c096c28d013474e38a552
/caffe-master/include/caffe/solver.hpp
31084a5ce9c04c045390894e90514d811c7a4e19
[ "LicenseRef-scancode-generic-cla", "BSD-2-Clause", "LicenseRef-scancode-public-domain", "BSD-3-Clause" ]
permissive
BarCodeReader/HRSOD
4d408c94abf21c5888ddc928b38fd323884ba33b
166e6d7f433277c1f55c08d145732b7219f675e5
refs/heads/master
2022-04-19T04:23:58.784934
2020-04-19T08:23:28
2020-04-19T08:23:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,720
hpp
#ifndef CAFFE_SOLVER_HPP_ #define CAFFE_SOLVER_HPP_ #include <boost/function.hpp> #include <string> #include <vector> #include "caffe/net.hpp" #include "caffe/solver_factory.hpp" namespace caffe { /** * @brief Enumeration of actions that a client of the Solver may request by * implementing the Solver's action re...
[ "yi94code" ]
yi94code
06ffadd45e58b37ccbfdebc790f44f826178a8fe
d3954d4770f72f6d8b1704b0c508903d6f74f0f5
/graphics/skia_utility.c++
8b39cdfbe1a18d9bd7bda5f0536a06daa2e45ebf
[ "MIT" ]
permissive
skui-org/skui
83b0779c63c9332e86f4e9e2f1f02ceb7aba501f
f04d74d1938f053dc876e85ae469a711ed2edbc5
refs/heads/master
2022-01-31T08:21:45.375334
2022-01-21T15:24:51
2022-01-21T15:24:51
85,348,438
382
57
MIT
2022-01-01T01:29:57
2017-03-17T19:37:28
C++
UTF-8
C++
false
false
1,528
/** * The MIT License (MIT) * * Copyright © 2017-2020 Ruben Van Boxem * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * ...
[ "vanboxem.ruben@gmail.com" ]
vanboxem.ruben@gmail.com
65bc20b6cf87c0e8ba5cee5fb028851b667960e3
5f1d38514f4b5fc113fb7a7e4c53e1325a936229
/tools/map_maker/osm_converter/src/OsmJunctionProcessor.cpp
b4878157fea66109214d110bb17a309836d8c192
[ "MIT" ]
permissive
sm-azure/map
71b230263d1bbf0235e5ba286a46fc75dca11b06
d950a21b79d052b0d6c90395511172afc1ad528b
refs/heads/master
2021-01-15T06:06:23.974735
2020-01-27T15:12:03
2020-01-28T07:55:16
242,896,964
0
0
null
2020-02-25T03:05:22
2020-02-25T03:05:21
null
UTF-8
C++
false
false
18,814
cpp
// ----------------- BEGIN LICENSE BLOCK --------------------------------- // // INTEL CONFIDENTIAL // // Copyright (c) 2017-2019 Intel Corporation // // This software and the related documents are Intel copyrighted materials, and // your use of them is governed by the express license under which they were // provided ...
[ "johannesquast@users.noreply.github.com" ]
johannesquast@users.noreply.github.com
18fdaa07d7060a8b569f32e7b4d1c0b4b78ee59d
d0a3ceac982fd8ad5f7f18980eb31dcd51239de2
/OpenGL/src/dynamics/Solver.cpp
a7d49b723e76145c508cfb56644191d0f6706500
[]
no_license
apizon/InfoGraph
aa9cebf5980adf950da252198dcb4b4229933076
b2dd14cfc7ee2a8ee9236f46b44ec0d88c5af8f8
refs/heads/master
2021-09-04T19:02:35.786260
2018-01-21T12:55:23
2018-01-21T12:55:23
111,242,656
1
0
null
null
null
null
UTF-8
C++
false
false
155
cpp
# include "../../include/dynamics/Solver.hpp" void Solver::solve( const float& dt, std::vector<ParticlePtr>& particles ) { do_solve( dt, particles ); }
[ "pizon.antoine@gmail.com" ]
pizon.antoine@gmail.com
5d2a01038486bf363ad7b04ca5a9e38aeba091de
f8ea7e042a62404b1f420a7cc84b7c3167191f57
/SimLib/Median.h
e310f64be790ed640ab88913147481703ecfa859
[]
no_license
alexbikfalvi/SimNet
0a22d8bd0668e86bf06bfb72d123767f24248b48
20b24e15647db5467a1187f8be5392570023d670
refs/heads/master
2016-09-15T17:50:23.459189
2013-07-05T14:41:18
2013-07-05T14:41:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,090
h
/* * Copyright (C) 2011 Alex Bikfalvi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is dis...
[ "alex@bikfalvi.com" ]
alex@bikfalvi.com
cadc289cf45a08b2c43d8f4aaefe454d9c000393
0841c948188711d194835bb19cf0b4dae04a5695
/gsdm/sources/gsdm/src/netio/unixacceptcmd.cpp
b58ccaf8dc5605b4fdb957aa9c861a84dd9de7da
[]
no_license
gjhbus/sh_project
0cfd311b7c0e167e098bc4ec010822f1af2d0289
1d4d7df4e92cff93aba9d28226d3dbce71639ed6
refs/heads/master
2020-06-15T16:11:33.335499
2016-06-15T03:41:22
2016-06-15T03:41:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
643
cpp
#include "netio/unixacceptcmd.h" #include "netio/networker.h" #include "netio/epoll/unixcarrier.h" #include "netio/baseworkerex.h" #include "logging/logger.h" namespace gsdm { UNIXAcceptCmd::UNIXAcceptCmd(int fd, const std::string &unix_path) : BaseCmd(false),fd_(fd),unix_path_(unix_path) { } UNIXAcceptCmd::~...
[ "greatmiffa@gmail.com" ]
greatmiffa@gmail.com
d694bebfd7a209a2e083952216156e881a130987
6ea7b412da513c1b0650d490de0e860c278ee9aa
/map-generator.hpp
610aee6ab7fbabc389ebcee716c87ce19c280b13
[]
no_license
gurmsc5/A_star-search
06ce67ef2eeaafc724fe85d40acb278aa8860a9e
6a47808c7b266c59fcb1de7aba8e3c3e98d98410
refs/heads/master
2020-03-17T23:01:30.208546
2018-05-21T14:41:45
2018-05-21T14:41:45
134,028,354
0
0
null
null
null
null
UTF-8
C++
false
false
1,750
hpp
#ifndef MAP_GENERATOR_HPP #define MAP_GENERATOR_HPP #include <vector> #include <utility> struct Coordinates { int x, y; Coordinates(int _x, int _y) :x(_x), y(_y) {}; Coordinates() {}; }; struct Cell { /*first is x coordinate second is y coordinate*/ Coordinates parent; double F, G, H; /*custom constructor*/...
[ "gurmsc5@vt.edu" ]
gurmsc5@vt.edu
53078aacb00296c707ecc530c593b4700b99ba73
3b13eedb87e6545f832e1c62b8cb05b8428a897b
/src/main/avikodak/prep/company/google/geeksforgeeks/arrays/page16/sortedarraysgeneration.h
859779afa1716715b38a52d44d71d2bf5ff5320a
[]
no_license
avikodak/algos_v2
a9c66b2f2b862318f12feb216240a9a66249aa2b
e1c77f1064c83599d0e57f426319ab536a6eeb29
refs/heads/master
2021-01-19T20:43:29.366352
2017-03-25T17:15:22
2017-03-25T17:15:22
24,980,353
0
1
null
null
null
null
UTF-8
C++
false
false
7,514
h
/**************************************************************************************************************************************************** * File Name : sortedarraysgeneration.h * File Location : /algos_v2/src/main/avikodak/prep/company/google/geeksforgeeks/arrays/page16/s...
[ "avikodak@gmail.com" ]
avikodak@gmail.com
05867866cffa4ed9b503a25b2a0c379d1213574b
544a465731b44638ad61a4afa4f341aecf66f3cd
/src/ivkapp/module/RenewalModelerWidget.h
71bb2b0e0f59b6aedfaffd45ddd26f815cbf46e2
[]
no_license
skempken/interverdikom
e13cbe592aa6dc5b67d8b2fbb4182bcb2b8bc15b
dde091ee71dc1d88bbedb5162771623f3ab8a6f4
refs/heads/master
2020-05-29T15:29:18.076702
2014-01-03T10:10:03
2014-01-03T10:10:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
797
h
#ifndef ONESTATEMODELERWIDGET_H_ #define ONESTATEMODELERWIDGET_H_ #include "ModuleWidget.h" #include "ui_RenewalModelerWidget.h" #include "ComputationThread.hpp" #include "data/Trace.h" #include "computation/RenewalModeler.h" using namespace ivk; class RenewalModelerWidget : public ModuleWidget, private Ui::Renewa...
[ "sebastian@ivk-virtualbox.(none)" ]
sebastian@ivk-virtualbox.(none)
a210c71faf75e83617b6199320a10dd7b7249d74
584165ef8b92e290cf549e510611d85d27c115c4
/QUADTREE/lacti.cpp
44defe5303485390b9d441bc507b6e6a1d821072
[]
no_license
PoolC/algospot
9a5fa2dd84cad6a64b21a9841b29896d78fdb0a1
3cd95b044ec91b131018b024bdc8ef545b238900
refs/heads/master
2021-01-13T01:17:21.059827
2014-08-12T12:46:57
2014-08-12T12:46:57
21,388,147
2
1
null
2014-08-05T11:03:31
2014-07-01T13:13:49
C++
UTF-8
C++
false
false
1,003
cpp
#include <iostream> #include <vector> typedef std::vector<char> result_t; const int max_length = 1000; static void reverse(const char*& input, result_t& output); int main(int argc, char* argv[]) { int count; std::cin >> count; std::cin.ignore(1024, '\n'); char buffer[max_length]; result_t output; output.r...
[ "lactrious@gmail.com" ]
lactrious@gmail.com
a140c15e9a2c7bf6da5392ddde0ffb7e475efc87
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/mutt/gumtree/mutt_repos_function_985_mutt-1.6.2.cpp
f1baa68f164068bb782aee0672bf8359932f7895
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,983
cpp
static int multipart_handler (BODY *a, STATE *s) { BODY *b, *p; char length[5]; struct stat st; int count; int rc = 0; if (a->encoding == ENCBASE64 || a->encoding == ENCQUOTEDPRINTABLE || a->encoding == ENCUUENCODED) { fstat (fileno (s->fpin), &st); b = mutt_new_body (); b->length = (lo...
[ "993273596@qq.com" ]
993273596@qq.com
0fc007ebe925740d65bf17376d8da601b155dacc
6b7cb5e1a66f4af9ea0a8b675a6abb8f6927b9fc
/src/06_Font1/NimotsuKunWithFont/Image.cpp
6c55a3b3f8f1d2538bb296c950d1378548a4d167
[]
no_license
supercaracal/game-programmer-book-build
dc405763ed255e81ea8244d2c48dc24a8d98293e
c9e1f65cab3f59a4d552128d0ee22233d79b2773
refs/heads/master
2022-06-10T14:17:00.122380
2020-04-29T04:03:14
2020-04-29T04:03:14
259,812,505
1
0
null
2020-04-29T03:14:35
2020-04-29T03:14:34
null
SHIFT_JIS
C++
false
false
2,662
cpp
#include "Image.h" #include "File.h" #include "GameLib/Framework.h" using namespace GameLib; Image::Image( const char* filename ) : mWidth( 0 ), mHeight( 0 ), mData( 0 ){ File f( filename ); mHeight = f.getUnsigned( 12 ); mWidth = f.getUnsigned( 16 ); mData = new unsigned[ mWidth * mHeight ]; for ...
[ "slash@watery.dip.jp" ]
slash@watery.dip.jp
16e84c7ca027f600c4460e2028397637557b8b86
a86512404935e8bb4140886e87fd6ae953451f3e
/Horoscopes/src/data/horoscopedto.cc
b7ff3219fb5dff50d0dfa9f1a860cfc4b401e837
[]
no_license
JasF/horo
9b8bbc6caa21641db6e857849084ea8b48517c68
80e818cef0e453e4b6993cacbcc04282cd7df431
refs/heads/master
2021-09-05T01:47:27.977200
2018-01-23T09:50:09
2018-01-23T09:50:09
114,524,144
0
0
null
null
null
null
UTF-8
C++
false
false
744
cc
// // horoscopedto.c // Horoscopes // // Created by Jasf on 30.10.2017. // Copyright © 2017 Mail.Ru. All rights reserved. // #include "horoscopedto.h" namespace horo { void _HoroscopeDTO::encode(Json::Value &coder) { coder["type"] = type_; coder["content"] = content_; coder["date"] ...
[ "andreivoe@gmail.com" ]
andreivoe@gmail.com
66bd18952a5fb9053d925ac2d4f5a4fbad448471
c9706cd56d7f9a4c468aecdee9dc2a03e5c1aa42
/publishglmaprenderer.cpp
ef4c72984a4c8bf893d1def68fd2f04a1c25a58e
[]
no_license
dm-helper/dm-helper-oglvideo
78f9e259576c41f8fa18fa45d4cfb5a2948b9621
16962276c99a6827c1df1aed6af6f7d6e98bd16a
refs/heads/main
2023-08-26T07:55:46.423389
2021-10-31T09:24:40
2021-10-31T09:24:40
423,102,773
0
0
null
null
null
null
UTF-8
C++
false
false
9,568
cpp
#include "publishglmaprenderer.h" #include "map.h" #include "videoplayerglplayer.h" #include "battleglbackground.h" #include "publishglobject.h" #include "publishglimage.h" #include <QOpenGLWidget> #include <QOpenGLContext> #include <QOpenGLFunctions> #include <QMatrix4x4> #include <QDebug> PublishGLMapRenderer::Publi...
[ "44725987+dm-helper@users.noreply.github.com" ]
44725987+dm-helper@users.noreply.github.com
ef2b33ad2013bfaa653aaad835e4d904088d1d90
4c263bc119474aa771935f78d1cb21c8c1ec0163
/Source/ajdr/Cabinet/AutoSet/AutoSetCabinet.h
990332ff76d7492cdaf9761f8ca1571aa3210dd0
[]
no_license
zhouchao0924/RTX_Render
bbed5d067550aeb6d6a82adbe4505ae40c17bf87
1d1bdcb7511dc22a1bd0ce30cc9e80e4fe753fbb
refs/heads/master
2022-11-11T18:12:36.598745
2020-06-22T08:36:38
2020-06-22T08:36:38
268,670,065
0
1
null
null
null
null
UTF-8
C++
false
false
159
h
#pragma once #include "CabinetSetBase.h" namespace AutoSetCabinet { class FAutoSetCabinet :public FAutoSetBase { public: SINGLE(FAutoSetCabinet); }; }
[ "hl1282456555@outlook.com" ]
hl1282456555@outlook.com
33fb8667071b382d2b50feaa3266cefe85adff4b
56ac424e4e487d9af70f4dc4ffaf9d5ac314c826
/src/wecook/LowLevelMotionNodes/GrabMotionNode.cpp
0eca7eaa453980e7ca810c08d85a8a0e1b16730b
[ "BSD-3-Clause" ]
permissive
icaros-usc/wecook
44bcf18ff78ba4aacabd7885e4c7029992e006bc
a29337484f3c4232559d2a2aafc3e9a0cf3b1c5a
refs/heads/master
2023-06-23T19:36:22.598515
2023-06-07T06:43:23
2023-06-07T06:43:23
198,618,219
16
2
BSD-3-Clause
2022-07-06T06:13:29
2019-07-24T11:02:19
C++
UTF-8
C++
false
false
420
cpp
// // Created by hejia on 8/6/19. // #include "wecook/LowLevelMotionNodes/GrabMotionNode.h" using namespace wecook; void GrabMotionNode::plan(const std::shared_ptr<ada::Ada> &ada, const std::shared_ptr<ada::Ada> &adaImg, Result *result) { if (m_grab) { ada->getHand()->grab(m_bodyToGrab); } else { ada->ge...
[ "hjzh578@gmail.com" ]
hjzh578@gmail.com
7c968df2c60e5f5690a5f3628975de43ea50db16
60805f5904764782c5e16f6bf49266ec4acc2af1
/lib_eplayer/src/main/cpp/mediaplayer/source/render/filter/effect/header/GLFrameTwoFilter.h
659e95d6f16ab726b63cbcc92963637403f73167
[]
no_license
gaudiwen/EPlayer
57fb606571998178035c183a7cdfec0dbc92cbea
f4b0556f3dc9f1c77fb293c7a2274c02278c0652
refs/heads/master
2023-03-16T00:12:41.796886
2020-05-23T04:19:42
2020-05-23T04:19:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
230
h
#ifndef GLFRAMETWOFILTER_H #define GLFRAMETWOFILTER_H #include "GLFilter.h" /** * 仿抖音两屏特效 */ class GLFrameTwoFilter : public GLFilter { public: void initProgram() override; }; #endif //GLFRAMETWOFILTER_H
[ "lxrongdke@163.com" ]
lxrongdke@163.com
496cd5c06b9341174818334125760fd439ed0e11
fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd
/third_party/WebKit/Source/core/html/custom/CustomElementDescriptorTest.cpp
85933b6b08f03ca91022896c4c43de489cd3e165
[ "BSD-3-Clause", "BSD-2-Clause", "LGPL-2.1-only", "LGPL-2.0-only", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer", "GPL-2.0-only", "LicenseRef-scancode-other-copyleft" ]
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
2,838
cpp
// Copyright 2016 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 "core/html/custom/CustomElementDescriptor.h" #include "core/html/custom/CustomElementDescriptorHash.h" #include "core/html/custom/CustomElementT...
[ "jacob-chen@iotwrt.com" ]
jacob-chen@iotwrt.com
53dd8af71bc90302a0997ca4ed80a1d690b82eb9
534ab10a710ef5caa12f3b557bb782310aa8ae55
/AbstractFactory/widget.h
55e4b5aaa8f9849c66e4ddeccb4a7610ef62301f
[]
no_license
Matttteo/CPPDesignPattern
bad354bc93ecc49004a2b55b51637860fa04078b
c68e164b7b52fbc7d343b082f21835ae75a78085
refs/heads/master
2021-01-17T20:48:48.752570
2016-08-05T15:31:54
2016-08-05T15:31:54
64,854,967
0
0
null
null
null
null
UTF-8
C++
false
false
189
h
#pragma once #include <string> class Widget{ public: Widget(std::string system) : style(system) {}; virtual void Click() = 0; virtual void Insert() = 0; protected: std::string style; };
[ "baiyunhan.cs@gmail.com" ]
baiyunhan.cs@gmail.com
b6b68f810e2ddf35666709bd9e95b215c96a4ef2
b836d06a41172681fcf683eee1f26956999011a7
/三角形.cpp
5346ae7fd57b4488cfc8c11e6a3dc55632b69b05
[]
no_license
xinlan1/zuoye
b3efd341bfbda50f0011d8e9786a82334b467332
c2a9791e4c078568dfbd329fd1003e15172104e8
refs/heads/main
2023-04-05T06:19:48.482135
2021-04-05T04:32:24
2021-04-05T04:32:24
344,694,117
0
0
null
null
null
null
GB18030
C++
false
false
2,280
cpp
//目的:让用户输入三个值,判断这三个数可不可以围成三角形, //如果可以围成三角形,那么计算三角形的面积, //并判断该三角形是不是等边三角形,或者等腰三角形 //编写人:唐嘉慧 //编写日期:4月1日 #include<stdio.h>//标准的输入和输出流 #include<stdlib.h>//system("pause")要用 #include<math.h>//因为sqrt()函数要用 int main(void)//主函数 { float a, b, c, d, s;//定义三个双精度类型的变量 //为什么要定义为浮点数,因为用户输入的整数可能不是整数 //可能有小数点 printf(...
[ "noreply@github.com" ]
noreply@github.com
fce8a55e50156def09bc415dffd52d116dd61548
2f10f807d3307b83293a521da600c02623cdda82
/deps/boost/win/debug/include/boost/graph/tree_traits.hpp
5ccf9a5ea6667006700145a4a5628df8f27283f4
[]
no_license
xpierrohk/dpt-rp1-cpp
2ca4e377628363c3e9d41f88c8cbccc0fc2f1a1e
643d053983fce3e6b099e2d3c9ab8387d0ea5a75
refs/heads/master
2021-05-23T08:19:48.823198
2019-07-26T17:35:28
2019-07-26T17:35:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
129
hpp
version https://git-lfs.github.com/spec/v1 oid sha256:44dfaefbac08282023e1ffe31ef708e6b925dd89df40ac5f4b10b28abe442976 size 1351
[ "YLiLarry@gmail.com" ]
YLiLarry@gmail.com
d5fa1b2ced3970c0ec4975b672728a02a7d41229
883409877f109af6cbfb254cd7a4e9f9dee9d2fe
/WeeklyCode/week2/Reverse Linked List II/chenhao.cpp
7d1ed90d608b4b65fd70c09c8f07ae41fc0bf7ed
[]
no_license
coderfengyun/TCSE2012
f83b0256d7b1a7c8b906d6ca52c6b5cdfd6cd578
43aee67600f1a3c2f29922e827d05e6c6e8a9364
refs/heads/master
2021-01-22T20:34:40.911809
2014-09-30T03:09:34
2014-09-30T03:09:34
18,791,865
2
2
null
2014-05-13T09:27:44
2014-04-15T07:52:36
Java
UTF-8
C++
false
false
851
cpp
#include<iostream> #include<algorithm> #include<vector> using namespace std; struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; class Solution { public: ListNode *reverseBetween(ListNode *head, int m, int n) { ListNode vHead=ListNode(0); vHead.next=he...
[ "chenh1024@gmail.com" ]
chenh1024@gmail.com
ba4c2db0161e332a710ec1cf38f66e37d7a6eae2
9498e8ef4e21f240e7eb4c90a0719773bc92bcf5
/coinramp.h
cf2b8b9895c1dfa77d7f614fda0248b68d4b62ba
[]
no_license
De-etz/Honors-Engineering-Robot-Project
df17514a29ab6f63ac012e1c795ea2438665fba2
66b724d53431a4bfd1b4d173e169214813f4b0fa
refs/heads/master
2021-10-26T23:26:55.820710
2019-04-14T20:46:26
2019-04-14T20:46:26
171,723,286
1
0
null
null
null
null
UTF-8
C++
false
false
946
h
#ifndef COINRAMP_H #define COINRAMP_H #include <FEHServo.h> /** * @brief The CoinRamp class * * Used to control coinramp with a Futaba servo. */ class CoinRamp { private: FEHServo servo; float lower, reset; public: CoinRamp(FEHServo::FEHServoPort servoPort) : servo(servoPort) { servo.Se...
[ "dialadityasingh@gmail.coom" ]
dialadityasingh@gmail.coom
1801cd5e7bcac92aee02e09e165e9590ec05c046
2a88b58673d0314ed00e37ab7329ab0bbddd3bdc
/blazetest/src/mathtest/smatdmatadd/MCaUDa.cpp
75dfbe447dba37eff8429622c89efecf09710ba1
[ "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,080
cpp
//================================================================================================= /*! // \file src/mathtest/smatdmatadd/MCaUDa.cpp // \brief Source file for the MCaUDa sparse matrix/dense matrix addition math test // // Copyright (C) 2013 Klaus Iglberger - All Rights Reserved // // This file is pa...
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
8bc69e0c5e231c7353a24853bf13f499993ef03c
1a20961af3b03b46c109b09812143a7ef95c6caa
/ZGame/DX11/DirectX-Graphics-Samples/MiniEngine/ModelConverter/IndexOptimizePostTransform.h
f978e3f2e583ee7b2efc67073f884d26f71df3ee
[ "MIT" ]
permissive
JetAr/ZNginx
eff4ae2457b7b28115787d6af7a3098c121e8368
698b40085585d4190cf983f61b803ad23468cdef
refs/heads/master
2021-07-16T13:29:57.438175
2017-10-23T02:05:43
2017-10-23T02:05:43
26,522,265
3
1
null
null
null
null
UTF-8
C++
false
false
1,450
h
// // Copyright (c) Microsoft. All rights reserved. // This code is licensed under the MIT License (MIT). // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. // // ...
[ "126.org@gmail.com" ]
126.org@gmail.com
7f0dcf505aec45ea62c727774a39e3a316e4534c
321e09bac02b6a98df34e8ebef2fd05bcabf2c53
/src/interpreter/abstract/Multiplexer.cpp
c6bb7b5c3f51e090c8e1cbed1e562dab1b2da180
[ "MIT" ]
permissive
liamstask/joedb
ad42a3298b1f69825ff3888c5b9354f26f9a72af
7e505464a6494acf5843753865b7c3db5ceff1f1
refs/heads/master
2021-09-01T12:10:29.684450
2017-12-18T20:35:11
2017-12-18T20:35:11
115,459,986
1
1
null
2017-12-26T22:44:10
2017-12-26T22:44:09
null
UTF-8
C++
false
false
4,496
cpp
#include "Multiplexer.h" ///////////////////////////////////////////////////////////////////////////// void joedb::Multiplexer::add_writeable(Writeable &writeable) ///////////////////////////////////////////////////////////////////////////// { writeables.push_back(&writeable); } #define MULTIPLEX(x) do {for (auto w:...
[ "remi.coulom@free.fr" ]
remi.coulom@free.fr
622091e2fb240ce480366e53c129db04560bff2e
6b260a7b47d7ffca423bef6e64f49f93f31c38ff
/components/animations/Plasma.cpp
088ec7ea28765cab1bcf355f3b1ea0f1591eb0ef
[ "MIT" ]
permissive
fweiss/badge
9c60525cc9580d27a7885a105fd49413728de0b9
86a7e8e473df32eb1e90aa29db0f35971cab1322
refs/heads/master
2023-05-26T03:57:52.127868
2023-04-30T14:03:45
2023-04-30T14:03:45
54,276,110
3
0
null
null
null
null
UTF-8
C++
false
false
1,163
cpp
#include "Plasma.h" #include <math.h> Plasma::Plasma(Display &display) : Animation(display, 100), phase(0) { } struct Point { float x; float y; }; Point lissajous(float phase, float a, float b) { const float rows = 8; const float cols = 8; const float scale = 1.0f; float x = sinf(phase * a) ...
[ "feweiss@gmail.com" ]
feweiss@gmail.com
722af4093d94ddfbee5b4079c951c1f37242e84b
dadd28571ab162cf87734357710be81cb27b6282
/app/viscreator.cc
a2b1fea3915576a706c844c19921ab819de636fa
[]
no_license
Sophrinix/streams
cf30f75b662c2cb825f950f1d1b246212b6b9a64
c222d01f909f9f3bddd6597d2e1fb346fd15b97d
refs/heads/master
2021-01-15T18:59:40.754514
2009-08-24T16:12:09
2009-08-24T16:12:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
658
cc
#include "viscreator.h" #include "waveviswidget.h" #include "pipelinegui.h" VisCreator::VisCreator(PipelineGUI & pg) : pipelineGUI_(pg) { } VisCreator::~VisCreator() { } void VisCreator::visit(VisBase * ) { std::cout << "VisCreator: Visiting for VisBase" << std::endl; } void VisCreator::visit(Sin...
[ "jonas@mit.edu" ]
jonas@mit.edu
b40f7b201edc152f9b2606594003206587e2dfd7
fcdea24e6466d4ec8d7798555358a9af8acf9b35
/Engine/mrayEngine/src/TextureBank.cpp
5234a71b1d805707d9acba7f9405108e96c66853
[]
no_license
yingzhang536/mrayy-Game-Engine
6634afecefcb79c2117cecf3e4e635d3089c9590
6b6fcbab8674a6169e26f0f20356d0708620b828
refs/heads/master
2021-01-17T07:59:30.135446
2014-11-30T16:10:54
2014-11-30T16:10:54
27,630,181
2
0
null
null
null
null
UTF-8
C++
false
false
949
cpp
#include "stdafx.h" #include "TextureBank.h" namespace mray{ namespace video{ TextureBank::TextureBank() { #ifdef ___DEBUG___ setDebugName("TextureBank"); #endif } TextureBank::~TextureBank() { textures.clear(); } void TextureBank::addTexture(const ITexturePtr& tex){ textures.push_back(tex); ...
[ "mrayyamen@gmail.com" ]
mrayyamen@gmail.com
e358c13d0517d2daad9a572a8e2da208264f6a30
83b13e5504e884599a91ae0b37a3cee22f7c29e4
/deps/v8/src/mksnapshot.cc
97b8a7edf0082b914c011a68fe8f964510b573f8
[ "Apache-2.0", "BSD-3-Clause", "bzip2-1.0.6" ]
permissive
alkhe/runtime
9663982dc44138827970274a0955fba5087dee40
acb6330185c1be88449198c28059d24bc4fb62c2
refs/heads/master
2021-05-28T03:00:41.745109
2015-01-21T02:09:51
2015-01-21T02:09:51
29,563,042
1
0
null
null
null
null
UTF-8
C++
false
false
9,452
cc
// Copyright 2006-2008 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <errno.h> #include <signal.h> #include <stdio.h> #include "src/v8.h" #include "include/libplatform/libplatform.h" #include "src/assemble...
[ "iefserge@runtimejs.org" ]
iefserge@runtimejs.org
9e96b84c12d3fbc35c89fec9aa6153354fa50163
07367bcd68c3c94a57376e5a3889c01f5ff70806
/tag_estimator/src/estimator.cpp
907172e17c57bfab37d11081d259577429a8155b
[]
no_license
manghuang/tightly_coupled_VLC_aided_visual_inertial_SLAM
efd2cd629e975d5c306f4a07f063044f0e05e409
34a0af429957fa4b7157e07111419878cc3d2a09
refs/heads/master
2021-09-15T16:41:01.718612
2018-06-07T00:54:00
2018-06-07T00:54:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
53,007
cpp
#include "estimator.h" #include "frame.h" #include "feature.h" #include "point.h" #include "aprilTag.h" namespace basic { Estimator::Estimator(): window_counter(0), first_imu(true), first_tag_img(true), solver_flag(INITIAL), initial_timestamp(0.0) { for (unsigned int i = 0; i <= WINDOW_SIZ...
[ "qinchaom4a1@163.com" ]
qinchaom4a1@163.com
c1538d6cb573fdab76421372cc3a0f5c28c355ca
4e1791de29f9a74b1ce57c7bce6359c493116534
/aten/src/ATen/core/boxing/KernelFunction_impl.h
3459a10d162f0c50cbfd76bf96505aa67519cbf5
[ "BSD-2-Clause", "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "Apache-2.0" ]
permissive
play201861/pytorch
af0959bb8bf5c6d937b22ffc566fc7a2ce39ae25
916084d933792f7ee619aee7155fedf68d1a8cd1
refs/heads/master
2022-09-07T13:20:57.841773
2020-05-27T06:19:00
2020-05-27T06:21:54
267,240,073
2
0
NOASSERTION
2020-05-27T06:34:33
2020-05-27T06:34:33
null
UTF-8
C++
false
false
9,431
h
#include <ATen/core/boxing/impl/boxing.h> #include <ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h> #include <ATen/core/boxing/impl/WrapFunctionIntoFunctor.h> #include <ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h> namespace c10 { inline KernelFunction::KernelFunction() : functor_(nullptr) , boxed_...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
680606c0d6829efcfb917c418cde4979172b518c
3fa4da4ec11dff76882d85de4cdbff5bd9dff9fa
/[new 4.4]3D_ESSUE/Client/Code/ShockWave.cpp
248e3eb21bc86ba76c59083f609c96d5ef880111
[]
no_license
buseog/Direct3D_Solo
4561259cb8b7d46d0e1e209c5b17a73fa28e0b84
cb7610976edaa7cc413a32ae60b2382e2ac89d45
refs/heads/master
2021-06-20T09:30:21.969667
2017-05-11T18:32:47
2017-05-11T18:32:47
null
0
0
null
null
null
null
UHC
C++
false
false
19,327
cpp
#include "StdAfx.h" #include "ShockWave.h" #include "DefaultCamera.h" #include "BossSword.h" CShockWave::CShockWave( LPDIRECT3DDEVICE9 pDevice) : CEffect(pDevice) { } CShockWave::~CShockWave( void ) { } HRESULT CShockWave::Initialize( const _uint& iType) { m_iType = iType; if (m_iType < 10) { m_pBone = ((Eng...
[ "buseog1991@naver.com" ]
buseog1991@naver.com
09df90765aa44fe32409406bedcecf3b3906e6f7
654e898008a1cb0ee081233c359c276b8c937a5e
/syscall/mocks/bf_reg_t.hpp
dd8fd1c3421ba30e69b9626528945f55912ec240
[ "MIT" ]
permissive
shutupandhack-club/hypervisor
a925d287487b6d8231f39b47a7f3a1e91da20a2e
58418ae1da8364200f2f06225ac801c45bea590a
refs/heads/master
2023-08-14T01:03:37.208229
2021-09-19T01:45:34
2021-09-19T01:45:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,776
hpp
/// @copyright /// Copyright (C) 2020 Assured Information Security, Inc. /// /// @copyright /// Permission is hereby granted, free of charge, to any person obtaining a copy /// of this software and associated documentation files (the "Software"), to deal /// in the Software without restriction, including without limita...
[ "rianquinn@gmail.com" ]
rianquinn@gmail.com
f8267fd40a94cfdff90b18214aa68fea794a5fc7
22bd625b1a2ffc102761914469c9673f62cf8e78
/benchmarks/src/cuda/cutlass-bench/cutlass/gemm/device_gemm_traits.h
1ff2a11cc90cb034be16f7c6d9d90371fa514cec
[ "BSD-3-Clause", "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
purdue-aalp/gpgpu-sim_simulations
f1c32ac5a88c4120d326d1053c82e598ca2d05fe
84113a92a4aacfdd1ddbc1beb2f01746060dfb05
refs/heads/master
2021-08-05T21:56:58.378115
2021-01-28T23:31:26
2021-01-28T23:31:26
154,350,995
6
15
BSD-2-Clause
2021-05-18T15:28:08
2018-10-23T15:18:42
HTML
UTF-8
C++
false
false
6,790
h
/*************************************************************************************************** * Copyright (c) 2017-2019, NVIDIA CORPORATION. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted * provided that the following conditions are met: *...
[ "k.mkhairy@yahoo.com" ]
k.mkhairy@yahoo.com
d40028321bb6f90608f0207191ec02f7ef6d3abc
45b82fe5a86b7d803dd495dda67e13ca231d2754
/SketchBook/libraries/I2Cdev/I2Cdev.cpp
e9221090b044497a47dfb73a73926773002394d1
[ "Apache-2.0" ]
permissive
willie68/OpenSeaMapLogger
4e1dc502976ba7325103e9916e11821f3d3a36b2
7a48096f4c1d5aaea8c04a3f61e489774383913d
refs/heads/master
2020-06-04T17:37:01.000828
2018-04-12T08:41:20
2018-04-12T08:41:20
13,522,905
7
5
null
null
null
null
UTF-8
C++
false
false
54,750
cpp
// I2Cdev library collection - Main I2C device class // Abstracts bit and byte I2C R/W functions into a convenient class // 6/9/2012 by Jeff Rowberg <jeff@rowberg.net> // // Changelog: // 2013-05-05 - fix issue with writing bit values to words (Sasquatch/Farzanegan) // 2012-06-09 - fix major issue with reading ...
[ "w.klaas@gmx.de" ]
w.klaas@gmx.de
e4baeac096e1227cc34c8ca7c4a14c04a033803d
91e4a4f778b00748bd70e0e7e3d608e6b2060f26
/Function/cprime 1-n.cpp
3c91d923a5a8f8109866319003a579f4989e5bab
[]
no_license
Devansh707/DSA-In-CPP
d0d70f52667cfc7052fcc07bd2eb5dabed5aae8e
28c4eb0e5fc7157785e21679cefbc479aa265cc4
refs/heads/main
2023-07-05T01:22:37.436819
2021-08-13T05:17:26
2021-08-13T05:17:26
395,246,637
0
0
null
null
null
null
UTF-8
C++
false
false
286
cpp
#include<iostream> using namespace std; int prime(int n) { int i; for(i=2;i<n;i++) { if(n%i==0) { break; } else { return (n); } } } int main() { int n; cout<<"enter n:"<<endl; cin>>n; for(int i=1;i<=n;i++) { if(prime(i)); { cout<<i<<endl; } } }
[ "devanshsrivastava707@gmail.com" ]
devanshsrivastava707@gmail.com
baa8d3289f4ce6821ccfdf8446ba453c541144a4
8d9eed7eb8163ba64c49835c04db140f73821b56
/eowu-gl/src/shader-builder/Components.cpp
369a0066fa83c7427bab07ab3247085744a46640
[]
no_license
nfagan/eowu
96dba654495e26ab3e39cd20ca489acf55de6a5d
5116f3306a3f7e813502ba00427fdc418850d28f
refs/heads/master
2020-03-27T14:18:11.835137
2019-01-02T18:08:19
2019-01-02T18:08:19
146,655,600
0
0
null
null
null
null
UTF-8
C++
false
false
1,414
cpp
// // Components.cpp // eowu-gl // // Created by Nick Fagan on 8/29/18. // #include "Components.hpp" std::string eowu::components::declare_variable(const std::string &name, eowu::glsl::Types type) { return eowu::glsl::get_string_type(type) + " " + name + ";"; } std::string eowu::components::declare_variable(con...
[ "nick@fagan.org" ]
nick@fagan.org
4dbf233a0df817fc32d84efd0f5544421f111457
ce35164b9286114439944ccb2ff0a99d1b74c92a
/code/client_qt/library-manager/mainwindow.cpp
a5265b6ca5c589c86f8c17f47a4c6ef4cbe49db8
[]
no_license
NorthWardTop/library-procurement-manager
f4f797d6e24f8e3ab16d964689e553eea60a942b
7fb29fda58aa0720a110c46d4f7cf8f69a7c2907
refs/heads/master
2020-04-28T17:47:53.976978
2019-05-07T14:33:54
2019-05-07T14:33:54
175,457,978
0
2
null
null
null
null
UTF-8
C++
false
false
4,340
cpp
#include "mainwindow.h" #include "ui_mainwindow.h" #include "database.h" #include <QSqlQueryModel> #include <QStandardItemModel> #include <QDebug> MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); connect(ui->demandRefresh_btn, SIGNAL(clicked())...
[ "2394783277@qq.com" ]
2394783277@qq.com
3b7c57f0235e67c07b5c7dc5218fbf1a758018eb
b0dd7779c225971e71ae12c1093dc75ed9889921
/libs/wave/samples/cpp_tokens/instantiate_slex_lexer.cpp
0c94b3fae3506ec9eef819f959c43a28559e8755
[ "LicenseRef-scancode-warranty-disclaimer", "BSL-1.0" ]
permissive
blackberry/Boost
6e653cd91a7806855a162347a5aeebd2a8c055a2
fc90c3fde129c62565c023f091eddc4a7ed9902b
refs/heads/1_48_0-gnu
2021-01-15T14:31:33.706351
2013-06-25T16:02:41
2013-06-25T16:02:41
2,599,411
244
154
BSL-1.0
2018-10-13T18:35:09
2011-10-18T14:25:18
C++
UTF-8
C++
false
false
1,818
cpp
/*============================================================================= Boost.Wave: A Standard compliant C++ preprocessor library Sample: Print out the preprocessed tokens returned by the Wave iterator Explicit instantiation of the lex_functor generation function http://www.boost...
[ "tvaneerd@rim.com" ]
tvaneerd@rim.com
cc96264529d7311eb2fa32bcee34d073f261436c
edb4fc1fe7f109a1ce651c66e2d4ff0621534fcb
/src/libmv/multiview/structure.cc
5edaf99b4eae9b85a07a196d6405b0357a87af76
[ "MIT" ]
permissive
Matthias-Fauconneau/libmv
88bf38fecbd3ab3e7af0779fc6a2d0de4d9c062e
531c79bf95fddaaa70707d1abcd4fdafda16bbf0
refs/heads/master
2020-12-24T09:09:02.119372
2011-08-19T22:00:42
2011-08-19T22:00:42
1,805,598
4
2
null
null
null
null
UTF-8
C++
false
false
1,489
cc
// Copyright (c) 2010 libmv authors. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish...
[ "julien.michot.fr@gmail.com" ]
julien.michot.fr@gmail.com
fc560d7cebc0195f6bbd50a29b40be7e799a06c8
7623fa6d1909c968afa8fb3205dde7df2e277990
/engine/code/primary/system.h
7485308c10ce6864e6c9bd1779c974b710c5f7f7
[]
no_license
jm4748/Engine
3a428039e6f705316627e747f793598790fa068f
d6c010b6e5e76e3a68102bc583dc37e8d458db38
refs/heads/master
2023-03-18T21:16:37.025524
2021-03-11T09:18:36
2021-03-11T09:18:36
346,642,648
0
0
null
null
null
null
UTF-8
C++
false
false
564
h
#pragma once #include "core.h" class State; class System { private: Core core; bool running; State* currentState; State* nextState; bool changeState; private: System(); void _Run( State* state ); public: static void Run( State* state ); void ChangeState( State* state ); void Quit(); }; class Stat...
[ "josephmeikle@protonmail.com" ]
josephmeikle@protonmail.com
40e6fa7bb272915136771ace3b6b59f7fac13d9a
848dc80f92148790d32018e6306787834462d3e2
/test/test_random.cpp
aa3f2a4e1fd367d1441106b08280e306ed3be8be
[ "MIT" ]
permissive
bloomen/libunittest
75c216192266249cbd4af7bc4641835a447e435f
b168539c70e5ac8a3c67d295e368d07f3c1854fb
refs/heads/master
2021-01-13T17:39:42.794919
2020-02-23T04:03:42
2020-02-23T04:03:42
242,443,511
3
0
null
null
null
null
UTF-8
C++
false
false
13,664
cpp
#include <libunittest/all.hpp> #include <list> #include <mutex> using namespace unittest::assertions; template<typename RandomCont, typename OrigContainer, typename T> void assert_random_container_fixed(RandomCont& random_object, const OrigContainer& container, ...
[ "chr.blume@gmail.com" ]
chr.blume@gmail.com
f5f7a1a6b193fdcd8d5000d48421bb0385e9ac70
ce3c874edfdc4697626bed8e7e8d68a880eaa8e2
/src/uBase/Object.h
aae9a2299b13183e6b1e4c1dcab0ef504eee44e0
[ "MIT" ]
permissive
fuse-open/legacy-cpp-framework
f620db7e2c6becb53a2d66c781a8ced2042d4e71
aff4d462158bb595b62be2fec18e5b33a6f02f43
refs/heads/master
2022-10-16T12:21:10.092515
2022-10-08T18:31:50
2022-10-08T18:31:50
131,840,555
2
0
MIT
2022-10-08T18:31:51
2018-05-02T11:23:11
C++
UTF-8
C++
false
false
469
h
#pragma once #include <uBase/Config.h> namespace uBase { class String; /** \ingroup uObject */ class U_DLLEXPORT Object { int _refCount; Object(const Object& copy); Object& operator =(const Object& copy); public: Object(); virtual ~Object(); int G...
[ "erik@fusetools.com" ]
erik@fusetools.com
e8759825c81fd1296c661c5d2262cab34a2a80f3
3b0aff95c6f51226f5257315315de5d32e81ed52
/src/BinderThread.cpp
8d83c532621655423823a11955913e6b8c747dd2
[ "BSD-3-Clause" ]
permissive
AprilAndFriends/sakit
c92b702ad6d1c08459148612e5217d228fac41c6
cc0db11c312b9d2436427114bf04664879663bfc
refs/heads/master
2021-01-25T15:04:44.977830
2019-10-21T14:53:25
2019-10-21T14:53:25
38,994,786
7
9
null
null
null
null
UTF-8
C++
false
false
1,132
cpp
/// @file /// @version 1.2 /// /// @section LICENSE /// /// This program is free software; you can redistribute it and/or modify it under /// the terms of the BSD license: http://opensource.org/licenses/BSD-3-Clause #include <hltypes/hstream.h> #include <hltypes/hthread.h> #include "PlatformSocket.h" #include "saki...
[ "boris.blizzard@gmail.com" ]
boris.blizzard@gmail.com
a60ecf14e8a9dbc030fc895f2ef5ad54264da32e
634120df190b6262fccf699ac02538360fd9012d
/Develop/Server/AppServer/main/PNetServer.cpp
5eda2d7d4db12c7ac375980fc938c0f3e657fb58
[]
no_license
ktj007/Raiderz_Public
c906830cca5c644be384e68da205ee8abeb31369
a71421614ef5711740d154c961cbb3ba2a03f266
refs/heads/master
2021-06-08T03:37:10.065320
2016-11-28T07:50:57
2016-11-28T07:50:57
74,959,309
6
4
null
2016-11-28T09:53:49
2016-11-28T09:53:49
null
UTF-8
C++
false
false
1,410
cpp
#include "stdafx.h" #include "PNetServer.h" #include "PCommandTable.h" #include "PCommandCenter.h" #include "PCmdHandlerGroup.h" PNetServer::PNetServer(const MNetServerDesc& desc) :MNetServer(desc) , m_nLastCheckTime(0) , m_nRecvCPS(0) , m_nSendCPS(0) , m_nLocalCPS(0) { m_pCmdHandlerGroup = new PCmdHandlerGroup(this)...
[ "espause0703@gmail.com" ]
espause0703@gmail.com
a0656253f1de5b823289ce6118bb786309198d06
a6a964e70f3775d7f2c1401dc55193d2ebf8a89c
/DanganHooker/MemoryAddresses.cpp
b4d62c5f8db28f6f0413c846e631d03098120c89
[ "MIT" ]
permissive
Keightiie/DanganHooker
6422720a8d3a110eae0a4f63ba0c75206de3f9a8
7d7ba7d4d826db4610183e875001c415deed46cf
refs/heads/master
2023-02-24T13:52:42.965522
2023-02-18T20:03:29
2023-02-18T20:03:29
220,554,562
1
0
null
2023-02-18T20:03:30
2019-11-08T22:02:26
C++
UTF-8
C++
false
false
113
cpp
#include "MemoryAddresses.h" DWORD CommonAddresses::ReturnGetOpFunc = 0; DWORD CommonAddresses::BaseAddress = 0;
[ "undermybrella@abimon.org" ]
undermybrella@abimon.org
8327d95c70c683127330d1bfa5f5af8a0d21ac9b
474ca3fbc2b3513d92ed9531a9a99a2248ec7f63
/ThirdParty/boost_1_63_0/libs/thread/example/ba_externallly_locked.cpp
1cf4f6926b94cb7543955499a1812c6243a457e2
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
LazyPlanet/MX-Architecture
17b7b2e6c730409b22b7f38633e7b1f16359d250
732a867a5db3ba0c716752bffaeb675ebdc13a60
refs/heads/master
2020-12-30T15:41:18.664826
2018-03-02T00:59:12
2018-03-02T00:59:12
91,156,170
4
0
null
2018-02-04T03:29:46
2017-05-13T07:05:52
C++
UTF-8
C++
false
false
2,947
cpp
// Copyright (C) 2012 Vicente Botet // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #define BOOST_THREAD_VERSION 4 #include <boost/thread/mutex.hpp> #include <boost/thread/lockable_adapter.hpp> #incl...
[ "1211618464@qq.com" ]
1211618464@qq.com
61a6e4285e4db91a573ba3c103518a34c521c38f
f83ef53177180ebfeb5a3e230aa29794f52ce1fc
/ACE/ACE_wrappers/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LoadMinimum.inl
4d8296efa9240d544fb43f5dd0d653d44f5abda4
[ "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-sun-iiop", "Apache-2.0" ]
permissive
msrLi/portingSources
fe7528b3fd08eed4a1b41383c88ee5c09c2294ef
57d561730ab27804a3172b33807f2bffbc9e52ae
refs/heads/master
2021-07-08T01:22:29.604203
2019-07-10T13:07:06
2019-07-10T13:07:06
196,183,165
2
1
Apache-2.0
2020-10-13T14:30:53
2019-07-10T10:16:46
null
UTF-8
C++
false
false
617
inl
// -*- C++ -*- TAO_BEGIN_VERSIONED_NAMESPACE_DECL ACE_INLINE CORBA::Float TAO_LB_LoadMinimum::effective_load (CORBA::Float previous_load, CORBA::Float new_load) { // Apply per-balance load. (Recompute raw load) previous_load += this->per_balance_load_; // Apply dampening. (...
[ "lihuibin705@163.com" ]
lihuibin705@163.com
b5849f7f56a9072a52638b4a315e17a6e4a2835a
8a87f5b889a9ce7d81421515f06d9c9cbf6ce64a
/3rdParty/boost/1.78.0/libs/proto/example/external_transforms.cpp
3667ebbd69f1d2c93c3813632a05aec6bd0cf313
[ "BSL-1.0", "Apache-2.0", "BSD-3-Clause", "ICU", "Zlib", "GPL-1.0-or-later", "OpenSSL", "ISC", "LicenseRef-scancode-gutenberg-2020", "MIT", "GPL-2.0-only", "CC0-1.0", "LicenseRef-scancode-autoconf-simple-exception", "LicenseRef-scancode-pcre", "Bison-exception-2.2", "LicenseRef-scancode...
permissive
arangodb/arangodb
0980625e76c56a2449d90dcb8d8f2c485e28a83b
43c40535cee37fc7349a21793dc33b1833735af5
refs/heads/devel
2023-08-31T09:34:47.451950
2023-08-31T07:25:02
2023-08-31T07:25:02
2,649,214
13,385
982
Apache-2.0
2023-09-14T17:02:16
2011-10-26T06:42:00
C++
UTF-8
C++
false
false
3,839
cpp
//[ CheckedCalc // Copyright 2011 Eric Niebler. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // This is an example of how to specify a transform externally so // that a single grammar can be used to drive m...
[ "frank@arangodb.com" ]
frank@arangodb.com
60cb90dcbbb2a3fff45893236b4e84d820caac72
058ba23d6d1c6a3b68883d10ff71fc9ebf94cf0e
/DAY7/Palindrome Linked List.cpp
ebb7ea4cc0cb4490b8e06ee1544abf1ab83960de
[]
no_license
Narayana3057/CP1_CIPHERSCHOOLS
0e00534f7099f549d8d46d12c61a7c5cddebc2d1
f3f4202e7b2c2831b6eaeae1cb3a7f805ea39d8b
refs/heads/master
2022-12-09T13:24:02.215951
2020-08-30T11:23:24
2020-08-30T11:23:24
288,426,163
0
0
null
null
null
null
UTF-8
C++
false
false
779
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: bool isPa...
[ "noreply@github.com" ]
noreply@github.com
5fcc5cfc186b11ae282de580c8c419971fc22f7f
0bedbcd5d9821abaad01e1d32949007a1a3f756b
/12890 - Easy Peasy.cpp
bfba0320c80ebb808e8e30a99c2e8f9a24dddd89
[]
no_license
ahqmrf/desktopUva
02a17c20f114cd305883ad1c809d6f135a12f816
33a6579e0c8bb25f5893d05d9a95de88db5ccc80
refs/heads/master
2021-01-23T12:16:25.145257
2015-03-19T07:02:55
2015-03-19T07:02:55
32,505,544
0
0
null
null
null
null
UTF-8
C++
false
false
364
cpp
#include <bits/stdc++.h> using namespace std; int main() { int cases; scanf("%d", &cases); while(cases--) { int n, x, low = 0; long long ret = 0; map <int, int> R; scanf("%d", &n); for(int i = 1; i <= n; i++) { scanf("%d", &x); int &y = R[x]; if(y > low) low = y; y = i; ret += i - low; ...
[ "bsse0621@iit.du.ac.bd" ]
bsse0621@iit.du.ac.bd
55fc779c74a7ccd7c8273d8c8b0ae925c13e90a5
8a4a69e5b39212b955eb52cc005311a440189c9b
/src/emu/ioport.h
20a40ebcf4d455d5c50de19d90ed1ff0bbd91c30
[]
no_license
Ced2911/mame-lx
7d503b63eb5ae52f1e49763fc156dffa18517ec9
e58a80fefc46bdb879790c6bcfe882a9aff6f3ae
refs/heads/master
2021-01-01T17:37:22.723553
2012-02-04T10:05:52
2012-02-04T10:05:52
3,058,666
1
7
null
null
null
null
UTF-8
C++
false
false
47,900
h
/*************************************************************************** ioport.h Input/output port handling. Copyright Nicola Salmoria and the MAME Team. Visit http://mamedev.org for licensing and usage restrictions. ***************************************************************************/ ...
[ "cc2911@facebook.com" ]
cc2911@facebook.com
44a97b4486477ed7471d1581e06347edbfba118e
bb9ea8638b4d5826c030f31a9dd54f90fd4de7f9
/build/moc_qvalidatedlineedit.cpp
e3414fbd28bf57f249e74e41ab9fdda06436fea2
[ "MIT" ]
permissive
mdtspain/MWC
25a410801574b9f615dea2992119e8d9fed6e92e
5805ddd7eaf0ab23e560277f7930e24011642e81
refs/heads/master
2020-05-29T14:41:14.875322
2016-06-13T18:54:30
2016-06-13T18:54:30
61,061,121
0
0
null
null
null
null
UTF-8
C++
false
false
3,038
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'qvalidatedlineedit.h' ** ** Created by: The Qt Meta Object Compiler version 63 (Qt 4.8.6) ** ** WARNING! All changes made in this file will be lost! **************************************************...
[ "michaeltammerijn@Michael-Tammerijns-iMac.local" ]
michaeltammerijn@Michael-Tammerijns-iMac.local
9f516d75be7a42010555a6b2805dbecc0c7e9fec
aa66f8ecb4bc4b7a80792e403d42351a090e1517
/kmp.cpp
6680c217121c4845c1698e308a940dd538410871
[]
no_license
burg1ar/code
4452c792641b002ff8deb904bd562e0630157346
cd065e893c048c7ef275388142cbb48f03416ce5
refs/heads/master
2021-01-01T18:43:31.911630
2017-12-01T12:37:35
2017-12-01T12:37:35
98,412,430
0
0
null
null
null
null
UTF-8
C++
false
false
1,940
cpp
#include<iostream> #include<string> using namespace std; int naive_matcher_v1(string text,string pattern){ int n=text.size(); int m=pattern.size(); int s,i; for(s=0;s<n-m+1;++s){ for(i=0;i<m;++i){ if(text[s+i]!=pattern[i]) break; } if(i==m) return s; } return ...
[ "921752421@qq.com" ]
921752421@qq.com
c94d0b3735c9d891051dc5a15bc37b1f6b8bc521
dd16dbde81e611d7c8994c453b76595c0f9963f1
/src/snd_wav.cpp
b36c70625ea5a94814421eb285e1c703438291a6
[]
no_license
dreameatergames/Rizzo_Dreamplaces
f4e739d7e6a9bd6e262b00bbea0b33e78d323e57
ba85ba171ea7da90d9baac1272478af2ee027951
refs/heads/master
2021-09-06T22:42:44.877874
2018-02-12T20:24:43
2018-02-12T20:24:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,850
cpp
/* Copyright (C) 1996-1997 Id Software, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed...
[ "rizzoislandgame@gmail.com" ]
rizzoislandgame@gmail.com
22466aadc7f2f12ec2ac96c86972d818941be2b6
bf4614b62c44cbb7cb4630bcf0838b3723a359be
/src/globals.cpp
0afc8838db64025a1f690d6345745e6c6764745d
[]
no_license
prickle/GameBloke
4c9ca8910affc2b3ce27ce7b8ea9f9a45667d7f5
e9f512f5f1753f27705b79a62eabfadc2c612678
refs/heads/master
2021-07-22T02:15:38.991893
2017-10-29T06:26:39
2017-10-29T06:26:39
108,696,158
10
0
null
null
null
null
UTF-8
C++
false
false
486
cpp
#include "globals.h" FileManager *g_filemanager = NULL; Cpu *g_cpu = NULL; VM *g_vm = NULL; PhysicalDisplay *g_display = NULL; PhysicalKeyboard *g_keyboard = NULL; PhysicalSpeaker *g_speaker = NULL; PhysicalPrinter *g_printer = NULL; uint16_t g_battery = 0; uint16_t g_charge = 0; int16_t g_volume = 15; int8_t g_displa...
[ "valves@alphalink.com.au" ]
valves@alphalink.com.au
f3943ea1163843941dde24074d633a9aa21c5bc4
1af49694004c6fbc31deada5618dae37255ce978
/components/exo/test/run_all_unittests.cc
a844f5a688b2c3594057bb0c06317032dda8adc7
[ "BSD-3-Clause" ]
permissive
sadrulhc/chromium
59682b173a00269ed036eee5ebfa317ba3a770cc
a4b950c23db47a0fdd63549cccf9ac8acd8e2c41
refs/heads/master
2023-02-02T07:59:20.295144
2020-12-01T21:32:32
2020-12-01T21:32:32
317,678,056
3
0
BSD-3-Clause
2020-12-01T21:56:26
2020-12-01T21:56:25
null
UTF-8
C++
false
false
842
cc
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/bind.h" #include "base/test/launcher/unit_test_launcher.h" #include "build/chromeos_buildflags.h" #if BUILDFLAG(IS_CHROMEOS_ASH) #include ...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
222d4b5773b546d4c18204b059e439a712241cc4
00ed3f287739d07968a22d6c5eaedf3c9b9eedb6
/base/include/multimedia/mmparam.h
75f0ab08bf9c107bce434eff3442bd4a4ab4f476
[ "Apache-2.0", "LicenseRef-scancode-generic-cla" ]
permissive
halleyzhao/cow-mmf
afeffda4e43273e2f64b3323ae821ba785447e24
5aada0bd06533ee8100ed4385448856be8d5ac97
refs/heads/master
2021-05-08T20:51:38.875878
2018-01-31T03:02:09
2018-01-31T03:02:09
119,620,752
4
2
null
null
null
null
UTF-8
C++
false
false
2,428
h
/** * Copyright (C) 2017 Alibaba Group Holding Limited. 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 * * ...
[ "aihua.zah@alibaba-inc.com" ]
aihua.zah@alibaba-inc.com
b56bd926e8415f28968bf80a925c8f1c559fc70f
44d0fa41a7682480b3f7c13801db83c7da360655
/Gunz_The_MMORPG/RNavigationNode.cpp
ddee99cf9198113eac85715960b5f7c5129c2be7
[]
no_license
TheChayo/gunz-the-tps-mmorpg
e74de0f2084ade5de7b77b083521bfa57567d398
b5880e60891dd7aa3063541865463de186227616
refs/heads/master
2016-08-12T11:17:59.523436
2012-11-10T03:09:05
2012-11-10T03:09:05
55,033,954
0
0
null
null
null
null
UHC
C++
false
false
6,678
cpp
#include "stdafx.h" #include "RNavigationNode.h" #include "RTypes.h" #include <crtdbg.h> RNavigationNode::RNavigationNode() : RAStarNode(), bSelected(false), m_iArrivalLink(0), m_iID(-1) { } RNavigationNode::~RNavigationNode() { } void RNavigationNode::Init(int nID, const rvector& v1, const rvector& v...
[ "Celestialkey@fbef6bb8-bedc-06fa-898d-b3a7711f07bf" ]
Celestialkey@fbef6bb8-bedc-06fa-898d-b3a7711f07bf
b93d3bdd6c5287a8af1da141068513e2010e82b9
cbaeed5cb57c4a7e047f3350da380bb7ae80f399
/7. Greedy Algorithm/OnlineBookStore.cpp
adcc9b8dcd1a66f2086a85ca8c6f4dc6d3b171c8
[]
no_license
seungmin97/algorithmm
861f0c240c63c1ccf2a5740ed7b7336289c300f8
92cd133861aa306a337ac2d84065768fdd2f091e
refs/heads/master
2020-05-02T17:19:37.808415
2019-05-28T01:37:02
2019-05-28T01:37:02
178,094,878
0
0
null
null
null
null
UTF-8
C++
false
false
2,070
cpp
// // Created by 이승민 on 2019-05-03. // #include <iostream> #include <vector> #include <algorithm> #include <climits> #define MAX INT_MAX using namespace std; class Book { private: int price; int remain; public: vector <pair<int, int>> vec; Book(){ this->price = 0; this->remain = 0; ...
[ "lsm0341@naver.com" ]
lsm0341@naver.com
2b4b74059d3e74b630495b606851665b9e233281
9b8ee7a681cf875fdc4322f568f7400fa67fc14c
/standard_lidar4_ws/devel/include/ltme_node/QueryHardwareVersionRequest.h
678f1f5a9e4a9a1a7e1039574e518f2c161974f0
[]
no_license
jie104/learngit
8442ddd9f460710ad0d504749e83647faae085b7
b5aed9eef4d548939d28c5fb11cf30cd18350d42
refs/heads/master
2023-04-28T20:37:43.518840
2023-04-16T14:54:53
2023-04-16T14:54:53
329,828,443
0
0
null
null
null
null
UTF-8
C++
false
false
4,477
h
// Generated by gencpp from file ltme_node/QueryHardwareVersionRequest.msg // DO NOT EDIT! #ifndef LTME_NODE_MESSAGE_QUERYHARDWAREVERSIONREQUEST_H #define LTME_NODE_MESSAGE_QUERYHARDWAREVERSIONREQUEST_H #include <string> #include <vector> #include <memory> #include <ros/types.h> #include <ros/serialization.h> #inc...
[ "1430974500@qq.com" ]
1430974500@qq.com
c3d86ac417a691bbfb58847655a86028922172bd
bdffc5173555cf6fbaf40bee6f3e868884d584ab
/Sources/VertexFormat.cpp
094098e2025cd1ef9a5c8f898ccae9a544dbf91d
[]
no_license
Mantharis/Vulkan
38d2da1d15ec79f874de20c345173d41184c867f
a4647eb1c8d71d28e4b3b95967d91689440b7bfa
refs/heads/master
2020-08-22T13:40:01.988000
2020-01-04T11:21:50
2020-01-04T11:21:50
216,407,049
0
0
null
2019-11-10T22:17:06
2019-10-20T18:21:19
C++
UTF-8
C++
false
false
1,824
cpp
#include "VertexFormat.h" VkVertexInputBindingDescription Vertex::getBindingDescription() { VkVertexInputBindingDescription bindingDescription = {}; bindingDescription.binding = 0; bindingDescription.stride = sizeof(Vertex); bindingDescription.inputRate = VK_VERTEX_INPUT_RATE_VERTEX; return b...
[ "noreply@github.com" ]
noreply@github.com
2626cc77231dd6ee3fe5f24a9812f7b65b8d5207
01a8d4f2dd5de176287699b5e659b646011427a2
/FELICITY/Code_Generation/Interpolation/Unit_Test/Dim_2/Hdiv/Interpolation_Code_AutoGen/Coef_Functions/Data_Type_v_restricted_to_Gamma.cc
34fca45930ab619347e929bbc66c1c7d3b4586b2
[ "BSD-3-Clause", "MIT" ]
permissive
brianchowlab/BcLOV4-FEM
2bd2286011f5d09d01a9973c59023031612b63b2
27432974422d42b4fe3c8cc79bcdd5cb14a800a7
refs/heads/main
2023-04-16T08:27:57.927561
2022-05-27T15:26:46
2022-05-27T15:26:46
318,320,689
0
0
null
null
null
null
UTF-8
C++
false
false
7,948
cc
/* ============================================================================================ This class points to outside MATLAB data which contains info about a given FE function. NOTE: portions of this code are automatically generated! Copyright (c) 01-18-2018, Shawn W. Walker =========================...
[ "ikuznet1@users.noreply.github.com" ]
ikuznet1@users.noreply.github.com
6c932480b7dea563a5ce1448df2171f5501a0cf9
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/base/third_party/double_conversion/double-conversion/bignum.cc
d858c16ca00049d8a1516ae757b9930ef0e42c7b
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
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
24,714
cc
// Copyright 2010 the V8 project authors. All rights reserved. // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of ...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
93e6372cf903aee1d7fd140c6e6141696d964ea0
b4c2427ece02bc1bc1f5e6279539ac884efcb323
/Codeforces/codeforces1076A.cpp
f52771b71ba32cc4ae4416278bf5cfdd7d902923
[]
no_license
sohag16030/ACM-Programming
eb7210be3685c3f7e5ea855c1598f5e7f3044463
39943162ed7b08d34b2b07b1a866b039c6ec2cc7
refs/heads/master
2023-01-31T11:08:46.389769
2020-12-14T08:57:24
2020-12-14T08:57:24
218,221,513
0
0
null
null
null
null
UTF-8
C++
false
false
1,525
cpp
/************************************************** * BISMILLAHIR RAHMANIR RAHIM * Author Name : SHOHAG (ICT'13) * University : ICT, MBSTU ***************************************************/ #include<bits/stdc++.h> #define sf(n) scanf("%lld", &n) #define sff(n,m) scanf("%lld%lld", &n, &m) #define pf(n) printf("%ll...
[ "shohag.mbstu.it16030@gmail.com" ]
shohag.mbstu.it16030@gmail.com
6853c9bec8005560597fa4173310200fb1041987
9369318cdbde33f5910c6de3736f1d07400cf276
/363c.cpp
9a4c8fcf8996363d76e884b7adc63087c739628f
[]
no_license
cwza/codeforces
cc58c646383a201e10422ec80567b52bef4a0da9
e193f5d766e8ddda6cdc8a43b9f1826eeecfc870
refs/heads/master
2023-04-11T12:22:04.555974
2021-04-22T04:45:20
2021-04-22T04:45:20
352,477,628
0
0
null
null
null
null
UTF-8
C++
false
false
752
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; string s; int main() { ios::sync_with_stdio(0); cin.tie(0); // freopen("input.txt", "r", stdin); // freopen("output.txt", "w", stdout); cin >> s; int n = s.size(); string ans; bool prev = false; int i = 0, j = 0...
[ "cwz0205a@gmail.com" ]
cwz0205a@gmail.com
287ecffe054ea033fdfa82ea922e2d4cac377445
ee023caabf3abe209a3e01e52f93d922e73805cc
/okos1/interface.h~
1e39ebf22dd764192dd72b04f9ddbc8ec57c0401
[]
no_license
okos/okos1
630f9f72f55763a6e89319d9c8f9c45e52bc26c3
49012dec43728204a605ffc430cd142291929045
refs/heads/master
2021-03-12T20:07:49.483950
2014-05-26T18:09:56
2014-05-26T18:09:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,741
/* * interface.h * * Created: 3/27/2014 10:57:13 AM * Author: vicky */ #ifndef INTERFACE_H_ #define INTERFACE_H_ class Interface { Account *account; Meter *meter; Communication *comm; Time *system_time; char buffer[120]; Packet pkt; int32_t temp_val; uint8_t temp_val1; public: ...
[ "vikas13jun@gmail.com" ]
vikas13jun@gmail.com
3d0a70ba491fb319669b59aab85aca7a3b5fb273
c31778ebfb45cfa963d7b568208498a9b19913ba
/determinant/determinant.cpp
0571ee7193ea96d6c2eea964e5382c20882c9e23
[]
no_license
djjkobe/Parallel-Programming-
7d3ada6e501cea19167ca44bbf56e6c71821adbb
e2d3f4e5879f8982f38db2a0ebb1b1db2541464f
refs/heads/master
2020-12-30T09:26:15.837563
2015-04-23T14:57:23
2015-04-23T14:57:23
29,807,049
0
0
null
null
null
null
UTF-8
C++
false
false
1,118
cpp
/** * University of Pittsburgh * Department of Computer Science * CS1645: Introduction to HPC Systems * Instructor: Esteban Meneses, PhD (emeneses@pitt.edu) * OpenMP parallel determinant computation. */ #include <math.h> #include <set> #include <iostream> using namespace std; int determinant_minor(int **A, in...
[ "djjkobe@gmail.com" ]
djjkobe@gmail.com
78e66c93f69eec9082f9faeeff061c5cb1c08e4f
e6589fdcb0ba4f148c5a662934dbfb10a62873ab
/Arduino/libraries/BasicSerial/examples/SerialTX_BlinkLED/SerialTX_BlinkLED.ino
630dd51e42f505b27849ddb7328c5ec7f4117e03
[]
no_license
macalencar/attiny13-utils
6c7084f14f8a6a53812eb2c9f2e5d8af0e2505bf
48c8cedc8bb663159021b56f0f57aa74f5a624c4
refs/heads/master
2020-03-08T17:41:47.121490
2018-04-06T01:01:03
2018-04-06T01:01:03
128,275,625
0
0
null
null
null
null
UTF-8
C++
false
false
728
ino
/* @author: Ralph Doncaster * @updatedby: Márcio Alencar * * Attiny13A @ 1MHz -> Baudrate 9600 : Delay(1000) = 1 s * Attiny13A @ 1.2 MHz -> Baudrate 2400 ~ 34800 : Delay(1000) = 1.2s * Default Baudrate @ 1.0Mhz: 9600 * Default Baudrate @ 1.2Mhz: 2400 * */ #include <BasicSerial.h> //#define BAUD_RA...
[ "noreply@github.com" ]
noreply@github.com
72a08de2c3aa646bb3d3f0fed7ad057309b64b51
235c46852fc2d26512331ab29e8822af337e1b4a
/tsps.cpp
aa4a2a2b7b82791db73776ec4ca119df6eb96b22
[]
no_license
Clone0/abc
40d7ffbb6e715d46e4cc49f75f86ea9c2f35a251
201b3cb6dd14acf12fd4ee217d2bfee599e2470e
refs/heads/master
2021-05-04T05:58:02.764372
2016-10-17T03:02:18
2016-10-17T03:02:18
70,993,835
0
0
null
null
null
null
UTF-8
C++
false
false
2,188
cpp
#include <iostream> #include<omp.h> using namespace std; class dynamic { private: int c[5][5],n,d[24],p[24][6],list[5],r; public: dynamic(); void getdata(); void display(); int fact(int num); int min(int list[]); void perm(int list[], int k, int m); void sol(); }; dynamic::dynamic() { r=0; }...
[ "noreply@github.com" ]
noreply@github.com
5888d2b7c49dc46530bb8ad3b6ae3bd5468978bc
80ab557dfa38bffd770dd0d6b39e04b00cd8e134
/test/test_pp.cc
64c8468005993b383200921088c234fe22cda547
[]
no_license
EhevuTov/tcp2snmp
02970e911e3956302f66b60143ebb0d417144ec8
fc82b0394bd3e5465d0b400fa22425d95a7a912b
refs/heads/master
2021-01-10T20:50:15.525312
2013-01-14T19:20:39
2013-01-14T19:20:39
6,496,705
1
1
null
null
null
null
UTF-8
C++
false
false
400
cc
#include <iostream> #define ENTERPRISE(s) 1,3,6,1,3,1,36872 //#define NUMBER3 #NUMBER1 ## #NUMBER2 #define NUMBER3(TRAP) TRAP ## 4 #define NUMBER4() 123 ## 4 #define NUMBER5 NUMBER3(123) //#define TRAP(OID) ENTERPRISE ## OID int main(void) { std::cout << NUMBER3(123) << std::endl; std::cout << NUMBER4() << std::...
[ "jamesgosnell@gmail.com" ]
jamesgosnell@gmail.com
f9112c24928fdc0dadfd48687f8ed907e20d1766
349fe789ab1e4e46aae6812cf60ada9423c0b632
/Program/FIBPlus/DBServ20/SprFirm/UOleDMSprFirm.h
af03039e6c46e351d72622bdc2cb4facedf06028
[]
no_license
presscad/ERP
a6acdaeb97b3a53f776677c3a585ca860d4de980
18ecc6c8664ed7fc3f01397d587cce91fc3ac78b
refs/heads/master
2020-08-22T05:24:15.449666
2019-07-12T12:59:13
2019-07-12T12:59:13
216,326,440
1
0
null
2019-10-20T07:52:26
2019-10-20T07:52:26
null
WINDOWS-1251
C++
false
false
2,706
h
// 1.1 // Unit1.h : Declaration of the TOleDMSprFirmImpl #ifndef UOleDMSprFirmH #define UOleDMSprFirmH #define _ATL_APARTMENT_THREADED #include "DBServ20_TLB.h" #include "UDMSprFirm.h" #include "UDM.h" ///////////////////////////////////////////////////////////////////////////// // TOleDMSprFirmImpl Implements...
[ "sasha@kaserv.ru" ]
sasha@kaserv.ru
8cb40a1a6703e4697dd00d46e6610c1d1170aa64
14ce01a6f9199d39e28d036e066d99cfb3e3f211
/Cpp/SDK/BP_JetSki_Bounty_Shotgun_functions.cpp
95ece7447c03be447cd4f16dd035707697afaa22
[]
no_license
zH4x-SDK/zManEater-SDK
73f14dd8f758bb7eac649f0c66ce29f9974189b7
d040c05a93c0935d8052dd3827c2ef91c128bce7
refs/heads/main
2023-07-19T04:54:51.672951
2021-08-27T13:47:27
2021-08-27T13:47:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,398
cpp
// Name: ManEater, Version: 1.0.0 #include "../pch.h" /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Functions //-------------------------------------------------...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
300e076264865a31f6b7da35c654a6c78032b66a
3165ab1f92f8f57d4dc2f012ea4d5b2d0ed562d5
/FiniteStateMachine.h
b8455683845fffb7a6a86f876d6d8aa71d334478
[]
no_license
gpdeal/finite-state-machine
1047acf7fc70e7d42636a62b589896c42f3425ac
7bed00c5c15bf5971b122852e0cf400a8a59783b
refs/heads/master
2020-05-04T22:21:10.279176
2015-02-20T20:42:42
2015-02-20T20:42:42
31,083,972
0
0
null
null
null
null
UTF-8
C++
false
false
216
h
#pragma once #include <set> #include <list> #include "Transition.h" using namespace std; struct FiniteStateMachine { set<int> nodes; int startNode; set<int> goalNodes; list<Transition> transitions; };
[ "gpdeal@gmail.com" ]
gpdeal@gmail.com
78a618f46271de79cc4bfd0f91a1273ce2abbcb0
9be77717c32c8798ecaae37f09597e9fcaf31c20
/src/Case.hpp
b0cfd1b49462cef110dc2ec0f6cb4b9a157b6937
[]
no_license
metalcolic/Game-01
dcb7b3eb3ba984101afd5a4e61b0716a8fc6b1af
876e8c7d3a4243902f99f27ad095e57ebe05d72c
refs/heads/master
2021-01-19T07:38:59.107665
2012-08-24T13:10:17
2012-08-24T13:10:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
603
hpp
#ifndef CASE_HPP_INCLUDED #define CASE_HPP_INCLUDED #include "Structures.hpp" class Case { public: Case(sf::RenderWindow* _app); bool setTuile(Couche, sf::Texture&); void setPosition(int x, int y); Position& getMapPosition(); Position& getPosition(); void setBloqua...
[ "manganim@live.fr" ]
manganim@live.fr
f5ec1781fb7c35b835b38fc5a6d14e1913e7e3cc
2108fc8a2be2d2bc79efc5aca5c9e89a9676e333
/distributed_file_system_mp3/member.cpp
608e48e86e7a12d21cf988e775949033da896a24
[ "Apache-2.0" ]
permissive
frank0098/distributedsystem
7060de13aa33af41933c35a5ae913f273bf9a15c
72373208d0ba00af443c43a68350bb62ded7a0b5
refs/heads/master
2021-03-27T09:31:04.143325
2018-08-06T04:53:44
2018-08-06T04:53:44
90,808,370
0
0
null
null
null
null
UTF-8
C++
false
false
2,162
cpp
#include "member.h" std::string coordinator; std::string machine_ip; int machine_id=-1; int highest_id=-1; std::map<std::string,int> ip_mapping; std::string failure_process; bool alive_member::add(std::string ip){ // static int id_cnt=0; if(ip.empty()) return false; std::lock_guard<std::mutex> guard(mutex); hig...
[ "ysong71@illinois.edu" ]
ysong71@illinois.edu