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
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
โŒ€
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 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
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
924a250bd2f245177ea32148bb5c5c1e6d444bb8
26c321e9200337d000b1b00f959fa758df2a3f01
/Menu.h
82df617bd0856d759c82d5ae8ec9fcd9438f8e47
[]
no_license
cpp-teamers/TestProject
1a113f8537c412d7dd2fbfa92e8942c87dc81c90
e95d9d3239a782d2c162a45512c0e59063067f40
refs/heads/master
2022-12-09T20:46:15.317874
2020-09-03T11:42:50
2020-09-03T11:42:50
292,515,115
0
0
null
2020-09-03T09:51:17
2020-09-03T08:44:55
C++
UTF-8
C++
false
false
135
h
#pragma once #include "PCH.h" #include "Person.h" class Menu : public Person { public: Menu() {} void displayMenu(); };
[ "noreply@github.com" ]
cpp-teamers.noreply@github.com
85f48a42811f4ef7c1f5ce0f7c86b2ab2cab9e0d
c6d14921ebc4e39bfd2b04a60268247589d1f645
/random.cpp
e0775d8de60260b4d2c9ffb2d1a9324c1185e0b5
[]
no_license
wasimk739/Hello-Wasim-s-world
651f1fb44aae9585a77fa0bec7c13476ba0c0540
2daf49b958fb16b6483bcb21ed6c645213be71fc
refs/heads/master
2023-06-04T14:49:46.311972
2021-06-29T20:03:48
2021-06-29T20:03:48
367,434,980
1
0
null
null
null
null
UTF-8
C++
false
false
524
cpp
#include<iostream> using namespace std; int findMinimum(int array[], int size) { int min=array[0]; for(int i=0; i<size; i++) { if(min>array[i]) { min=array[i]; } } return min; } int main(){ int size=0; cout<<"enter size of array = "; cin>>size; in...
[ "wasimk739@gmail.com" ]
wasimk739@gmail.com
a3d2c0f9d6297a653f5d072c0be3c24462647969
0e3c00032a4134822420a9bdabc4c5aec2df705f
/public/Service.cpp
a4cc319fd316faef386a6e22f5b48e482b90afd5
[]
no_license
peakflys/peakflys
f0ec9cfb81a828ab83b1163ccd7b631529b632ec
a00945c27e03bc7b98bb54560f76d9bf154db821
refs/heads/master
2016-09-05T20:13:54.341963
2013-11-29T08:20:10
2013-11-29T08:20:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
640
cpp
#include "Service.h" #include "Global.h" #include <netinet/in.h> //sockaddr_in็š„ๅฎšไน‰ Service * Service::instance = NULL; bool Service::init(unsigned short port) { if(!zService::init()) return false; tcpServer = new TCPServer(serviceName); if(tcpServer && tcpServer->bind(serviceName,port)) return true; Global::g...
[ "peakflys@gmail.com" ]
peakflys@gmail.com
26f4d7071f728ffbaad87e5f17973b722e43618d
da9d4f65746c852444a5d5b453645bae33f009b1
/src/phase_oscillator_chain/vexcl_phase_oscillator_chain.cpp
09afadb615b1417cf0b9f9ff236a80a4f8e6d44c
[]
no_license
shubhampachori12110095/gpgpu_with_modern_cpp
f7d5cd59d12170f503b0e570c101496959744aae
23906ee0fd3d53a8cc8142d5b58e4e9354e93434
refs/heads/master
2021-05-27T03:53:42.059183
2013-09-05T05:30:01
2013-09-05T05:30:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,957
cpp
#include <iostream> #include <vector> #include <utility> #include <tuple> #include <cmath> #include <vexcl/vexcl.hpp> #include <boost/array.hpp> #include <boost/numeric/odeint.hpp> #include <boost/numeric/odeint/external/vexcl/vexcl_resize.hpp> namespace odeint = boost::numeric::odeint; typedef double value_type; ...
[ "ddemidov@ksu.ru" ]
ddemidov@ksu.ru
d49f997fe23a44f5d95f169fbe10afcd489e1c70
69ff57dc727c54d00d89d470dd1623d3a6196667
/RayTracerWithCuda/Tools/Json/detail/value_t.hpp
b96f294ba2670b789efb193636825cbedf339d45
[]
no_license
BlauHimmel/RayTracer
4bf19d85a472bca67abdcf98aed0a0e32231b8f5
dd2be06d51949c5c046c06db5ec3a991a715f63f
refs/heads/master
2021-09-13T10:20:56.019359
2018-04-28T05:39:45
2018-04-28T05:39:45
105,345,776
0
0
null
null
null
null
UTF-8
C++
false
false
2,823
hpp
#ifndef NLOHMANN_JSON_DETAIL_VALUE_T_HPP #define NLOHMANN_JSON_DETAIL_VALUE_T_HPP #include <array> // array #include <ciso646> // and #include <cstddef> // size_t #include <cstdint> // uint8_t namespace nlohmann { namespace detail { /////////////////////////// // JSON type enumeration // /////////////////////////// ...
[ "461310150@qq.com" ]
461310150@qq.com
67c1f40cd19b839cc61cd9a0fe6a161c8ee46359
6fb085a5aed15c2d8597e4a76f7f686bec793891
/src/Cube3d/Temp/il2cppOutput/il2cppOutput/Bulk_Mono.Security_1.cpp
f06981cb0854aff270532e868532b3a30ee903fa
[]
no_license
jjjava/Cube3D
e608bc517d83157078e68181f65cf216adbd3346
53f90bd0c781f84018ed1958672f763092a004f3
refs/heads/master
2021-01-19T22:08:07.706708
2017-04-26T14:01:34
2017-04-26T14:01:34
88,754,272
0
0
null
null
null
null
UTF-8
C++
false
false
586,928
cpp
๏ปฟ#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include "class-internals.h" #include "codegen/il2cpp-codegen.h" #include "mscorlib_Syst...
[ "90J00318@PASA-WKS-PA107.pasa.corp" ]
90J00318@PASA-WKS-PA107.pasa.corp
cf00ec5cdef17ef10b9e5e7427d2f152188badb2
ed8cf19765251243f2f17c5311ae45ed879ab97c
/YaMangClient/YaMangDxDll/YaMangDxDll/YaMangDxClear.cpp
a18d42a9b6d93bd140d823a696b038345a60db43
[]
no_license
flashscope/14-2-game_server_hw
7b934db49c320a0a8ac553d00ad17b246f169952
44cc0fc1499c76af666048b9a3ad9c86e30bf4e8
refs/heads/master
2021-01-19T09:44:45.015312
2014-09-20T16:12:40
2014-09-20T16:12:40
21,604,656
1
0
null
null
null
null
UTF-8
C++
false
false
2,773
cpp
๏ปฟ#include "stdafx.h" #include "yaMangDxDll.h" #include "GlobalVar.h" /** *@breif MeshObject(์œ ๋‹› ๋“ฑ)์— ๋Œ€ํ•œ ๋ฉ”๋ชจ๋ฆฌ ์†Œ๊ฑฐ ํ•จ์ˆ˜ * */ YAMANGDXDLL_API void MeshObjectCleanUp( MESHOBJECT* inputVal ) { if ( NULL != inputVal->MeshMarterials ) { delete[] inputVal->MeshMarterials; } if ( inputVal->MeshTexture ) { for ( DWORD i ...
[ "android_apps@limecolor.com" ]
android_apps@limecolor.com
748e35c42f96bff6b72697e8d488231c8357ce47
1e6211fccb39380ca64d6152a49192e573305df6
/src/qt/paymentrequestplus.h
f66ef5d6f94451f14746d6364eea92db45bdea46
[ "MIT" ]
permissive
BitBlocksProject/BitBlocks
b6647adafd4c2b5d1feee2abc445a5c5ed66699b
ec6bc957f39f4106ece47173fc16489be301ecfa
refs/heads/master
2022-08-16T22:28:53.483943
2022-07-31T23:33:31
2022-07-31T23:33:31
155,437,552
21
13
MIT
2020-01-17T12:32:44
2018-10-30T18:36:16
C++
UTF-8
C++
false
false
1,189
h
// Copyright (c) 2011-2014 The Bitcoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_QT_PAYMENTREQUESTPLUS_H #define BITCOIN_QT_PAYMENTREQUESTPLUS_H #include "paymentrequest.pb.h" #include "base58....
[ "Bitblocksproject@gmail.com" ]
Bitblocksproject@gmail.com
eaae506b39e2f3883f0744dce76808c734f8376e
536656cd89e4fa3a92b5dcab28657d60d1d244bd
/chromeos/services/assistant/platform/audio_input_provider_impl.cc
863ba67174a780f62fc359037be20479bb74e53c
[ "BSD-3-Clause" ]
permissive
ECS-251-W2020/chromium
79caebf50443f297557d9510620bf8d44a68399a
ac814e85cb870a6b569e184c7a60a70ff3cb19f9
refs/heads/master
2022-08-19T17:42:46.887573
2020-03-18T06:08:44
2020-03-18T06:08:44
248,141,336
7
8
BSD-3-Clause
2022-07-06T20:32:48
2020-03-18T04:52:18
null
UTF-8
C++
false
false
1,625
cc
// Copyright 2018 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 "chromeos/services/assistant/platform/audio_input_provider_impl.h" #include "chromeos/services/assistant/public/features.h" namespace chromeos ...
[ "pcding@ucdavis.edu" ]
pcding@ucdavis.edu
5636b0555dbfccce169f0a54b0b02ca065fb9eea
140ae8da35feeeea7125d482f1eda0e8866cc594
/introduction/ITP1/ITP1_6_C.cpp
a4c401c5db3f12d2041e97dbf7264cb3a67552a0
[]
no_license
takuan-osho/aizu-online-judge-practice
e7abab4aadb299be1e1fe5c8e8ee64535c75ba0b
09de5b8ec8569c448a81b8ed3219d992f78aee14
refs/heads/master
2021-01-10T03:15:18.569306
2020-05-24T10:33:45
2020-05-24T10:33:45
47,915,151
0
0
null
null
null
null
UTF-8
C++
false
false
975
cpp
#include <iostream> using namespace std; int main() { int n; int b, f, r, v; // ๅˆๆœŸๅŒ– int houses[4][3][10]; for (b = 0; b < 4; b++) { for (f = 0; f < 3; f++) { for (r = 0; r < 10; r++) { houses[b][f][r] = 0; } } } // ๅ…ฅๅŠ›ใฎๅ‡ฆ็† cin >> n;...
[ "shimizu.taku@gmail.com" ]
shimizu.taku@gmail.com
4172f5b92eb5963c2e5c1fa1d3044fe95ed06c21
d59525fbac562facc7c32c28528f2736a2f0f7a4
/tree/btLevelOrderTraversal2/source.cpp
c49737175103192858485b5bc842eb3c05b50e50
[]
no_license
shenh10/leetcode
213299d99ba69808b22136982a565705561cfbeb
fef1de66230296c672660abaeddf77fb33dc3b81
refs/heads/master
2021-01-10T03:48:13.945590
2015-12-29T15:56:00
2015-12-29T15:56:00
44,896,578
2
0
null
null
null
null
UTF-8
C++
false
false
7,651
cpp
/* Problem: Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root). Solution: */ #include "iostream" #include <vector> #include <map> #include <algorithm> #include <cmath> #include <limits> #include <utility> using namespace st...
[ "thushenhan@gmail.com" ]
thushenhan@gmail.com
5f215e791037b00cb2b16f9068eac2161b95ca31
4065c8f9ea9b8dfa52cc029a7d3f3402c40638c6
/Include/VTK/vtkGenericEnSightReader.h
ea8b92c3afab574fab0ce6f6fe9c20b51c5abe79
[]
no_license
yongdono/Panasee
4fd5ffa048aa4d12e745464736b8811a08fb17d1
cade89049e22c8866aa9f04dabbbb9388f3e99cd
refs/heads/master
2021-08-31T11:22:04.899654
2017-12-21T03:51:56
2017-12-21T03:51:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,985
h
/*========================================================================= Program: Visualization Toolkit Module: $RCSfile: vtkGenericEnSightReader.h,v $ Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. ...
[ "w.z.y2006@163.com" ]
w.z.y2006@163.com
fc162cc0269bc88ee80391bd57d067317625b656
85d26157ff33c8deb20b83c323fb4253d6f8ccfb
/src/Visual.cpp
87098580a68069293c3faacae239a6d2bc22c652
[]
no_license
bagobor/tx
c4746bc0bfe78c38480c5c075bf4b50a42e52ca7
527742bee713dd7a8998fbcabe68a9840d5d552f
refs/heads/master
2021-01-17T22:24:49.753543
2011-09-20T01:36:28
2011-09-20T01:36:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,235
cpp
#include "Visual.hpp" #include "Interface.hpp" Visual::Visual() { setVisible(true); } /*void draw(ResourceManager& rm) { // Dummy... }*/ /** * Sets the visibility of the Visual model. * @param visible true for visible. */ void Visual::setVisible(const bool visible) { isVisible_ = visible; } /** * Returns th...
[ "DavidCosburnBishop@gmail.com" ]
DavidCosburnBishop@gmail.com
a35d988b267decfab2b30687389ec7a6c3b1b157
bf62d32b39db42c8f19e08e5b5ae9662258511ba
/test/cn/421.maximum-xor-of-two-numbers-in-an-array.cpp
ad52b0f288fbc76f7aa86015f9cc133c693cb762
[]
no_license
TimKingNF/leetcode
8b00cbe57228eafc01e35c5ae1a1c9f2e2013b48
f52115691d5b773ffb047565362d7df098705709
refs/heads/master
2023-03-23T08:27:39.214954
2021-03-19T14:00:25
2021-03-19T14:00:25
278,283,079
4
0
null
null
null
null
UTF-8
C++
false
false
1,124
cpp
// // Created by timking.nf@foxmail.com on 2020/8/18. // #include "gtest/gtest.h" #include "header.h" #include "421.maximum-xor-of-two-numbers-in-an-array.h" namespace LeetCode421 { typedef vector<int> ArgumentType; typedef int ResultType; typedef tuple<ArgumentType, ResultType> ParamType; class LeetCode421Test : p...
[ "timking.nf@foxmail.com" ]
timking.nf@foxmail.com
84c1c71e2d8dd98e352abee5fa65f7513e49f128
6ea82f5b80137ac949c2ffebb357410662b6f9be
/ros_fmu/src/ros_fmu_node.cpp
3fc559a2b5bc078791035eff14604be35ec1ee17
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
cuihantao/ros_fmu
5328848c1ed94e902e05076c1a56cad5f82e2772
1838b6b46d9c8766d989452de2741cd133656a19
refs/heads/master
2020-03-22T07:58:31.356841
2018-06-30T11:52:49
2018-06-30T12:02:18
139,736,509
2
0
null
2018-07-04T15:02:05
2018-07-04T15:02:05
null
UTF-8
C++
false
false
2,586
cpp
// Copyright (c) 2018 - for information on the respective copyright owner // see the NOTICE file and/or the repository https://github.com/boschresearch/ros_fmu. // // 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 c...
[ "ralph.lange@de.bosch.com" ]
ralph.lange@de.bosch.com
a41dc8a2a63c0ed16aa0353a6e32a2db905021e1
546a7deec152e4ab8eea0a4dcd2b4901f4f7fba6
/GraphicLibrary/src/Quaternion.cpp
9d932019958b9a71d822d0dc8a73ec981ed22e39
[]
no_license
pqin/GraphicLibrary
f63a59f7edfb4d71972db3a4611a14cb2592d06f
8ab20f5783698c0e933a2dc05ec88523a00d6474
refs/heads/master
2022-08-19T02:51:01.935163
2020-05-21T20:32:03
2020-05-21T20:32:03
265,942,083
0
0
null
null
null
null
UTF-8
C++
false
false
2,497
cpp
#include "Quaternion.h" #include "CommonConstants.h" #include <iostream> #include <cmath> Quaternion::Quaternion(){ x = 0; y = 0; z = 0; w = 1; }; Quaternion::Quaternion(float w, float x, float y, float z){ this->w = w; this->x = x; this->y = y; this->z = z; }; const Quaternion Quater...
[ "pqin@users.noreply.github.com" ]
pqin@users.noreply.github.com
3d9e4b56ea60af4adf61a5b77d5ae5020ec0e5e7
5ec06dab1409d790496ce082dacb321392b32fe9
/clients/cpp-restbed-server/generated/model/OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriInfo.h
1c36ee2a0ef90c17965178c9c7d1c63a67a6b391
[ "Apache-2.0" ]
permissive
shinesolutions/swagger-aem-osgi
e9d2385f44bee70e5bbdc0d577e99a9f2525266f
c2f6e076971d2592c1cbd3f70695c679e807396b
refs/heads/master
2022-10-29T13:07:40.422092
2021-04-09T07:46:03
2021-04-09T07:46:03
190,217,155
3
3
Apache-2.0
2022-10-05T03:26:20
2019-06-04T14:23:28
null
UTF-8
C++
false
false
2,303
h
/** * Adobe Experience Manager OSGI config (AEM) API * Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API * * OpenAPI spec version: 1.0.0-pre.0 * Contact: opensource@shinesolutions.com * * NOTE: This class is auto generated by OpenAPI-Generator 3.2.1-SNAPSHOT....
[ "cliffano@gmail.com" ]
cliffano@gmail.com
4a51056352d97b1948f612e9616dbb4bd3344946
f9737ece250448f024c60db500672e03b5e45734
/src/Network/net/CAcceptorEx.cpp
2b829d75e52b49fb3668e2334ea294d11f9262d1
[]
no_license
lecai/engine
1dd64ea70783a5fa87c65b65d62c705441c2bb2f
b1ec8d2f5247d705a0b507f890d9b833006c9951
refs/heads/master
2021-01-10T09:16:03.697614
2016-04-11T01:51:45
2016-04-11T01:51:45
55,465,560
0
0
null
null
null
null
UTF-8
C++
false
false
4,271
cpp
#include "CAcceptorEx.h" #include "Timer.hpp" namespace Net { CAcceptorEx::CAcceptorEx(uint32 uId, IAcceptor* pAcceptor) :m_uId(uId) ,m_pAcceptor(pAcceptor) ,m_uCheckClientTick(0) ,m_uClientLastPingTime(0) ,m_uDecodeKey(0x00) ,m_uEncodeKey(0x00) { m_pAcceptor->SetContext(this); m_pAcceptor->SetCallba...
[ "suhy@ecqun.com" ]
suhy@ecqun.com
babcccdbcb21de13fd6b91f1d507f073d08b79dc
9f6b3b25bfeb340f5887e910b1e6e8df6d1e2f3d
/code/CSpace.h
5baaa6324f2d30a1b2a87ee579bae81d33dcd724
[]
no_license
ogilabnet/ABM-Macroeconomics
99d669e6ecc150654efe91458909b4da5a50329d
1097a103cfbae3e846e4eee3ce252627e6eda699
refs/heads/master
2021-01-22T19:26:01.885478
2016-12-05T06:03:50
2016-12-05T06:03:50
59,272,959
1
1
null
2016-12-05T06:03:51
2016-05-20T07:07:50
C++
UTF-8
C++
false
false
337
h
//CSpace #ifndef INC_CSPACE #define INC_CSPACE #include <stdio.h> #include <vector> #include "CRandum.h" #include "CParameter.h" #include "CShow.h" #include "CFunction.h" #include "CSellowner.h" using namespace std; class CSpace { public: CParameter *cpara; CRandum *cr; CShow *cs; CSellowner *cso; CFunction *...
[ "takashima@ogi-lab.net" ]
takashima@ogi-lab.net
ba3a7a01300e94f25824965d35c3bcaf7ab346a1
a1c0ea9de71ddf18745eb0f3cc9ab411c4662080
/tile_sheet.cpp
40e9114cc718f64c18cbd9a5f3a237f091a48480
[ "Zlib" ]
permissive
krgamestudios/TurtleMap
7b50a0106b74184482ed3b814df9d2dc506e1c59
90ab2d6b14de128ccce0385f1cf2c00670eaed90
refs/heads/master
2021-01-11T01:02:26.947827
2017-04-16T12:56:15
2017-04-16T12:56:15
71,064,554
3
1
null
null
null
null
UTF-8
C++
false
false
3,407
cpp
/* Copyright: (c) Kayne Ruse 2013-2016 * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, * including com...
[ "kayneruse@gmail.com" ]
kayneruse@gmail.com
d03d2c7b595387fbe9613beae4ec28ee9b627502
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/httpd/gumtree/httpd_new_hunk_4599.cpp
9b0e901c469cd0dd8dc5702c0d61f4a2d796bd90
[]
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
895
cpp
apr_sha1_final(digest, &sha1); encoded_len = apr_base64_encode_len(APR_SHA1_DIGESTSIZE); if (encoded_len) { encoded = apr_palloc(r->pool, encoded_len); encoded_len = apr_base64_encode(encoded, (char*) digest, APR_SHA1_DIGESTSIZE); r->status = 101; ...
[ "993273596@qq.com" ]
993273596@qq.com
d75088f61508ef98edc2d835a865289ef86eebac
dc831a7e90190f57d1498b152cb145bc49b5cb47
/week6_DP2/2_partitioning_souvenirs/partition3.cpp
f5a8a1c41d1f217ed1dcea421dbeb462627a14a8
[]
no_license
somandra/Algorithm-ToolBox
77921c15fd0d12846b9b097b3291bfe3d39be5af
65eaecbd3d2c1379a60b1920bd097146287e0e5e
refs/heads/master
2022-12-02T20:43:12.698137
2020-08-17T08:04:10
2020-08-17T08:04:10
284,403,110
1
0
null
null
null
null
UTF-8
C++
false
false
1,086
cpp
#include <bits/stdc++.h> using namespace std; bool subsetSum(vector<int> &A, int n, int a, int b, int c) { // return true if subset is found if (a == 0 && b == 0 && c == 0) return true; // base case: no items left if (n < 0) return false; // Case 1. current item becomes part of first subset bool A1 = fa...
[ "somandra.bhl2015@gmail.com" ]
somandra.bhl2015@gmail.com
2a893584833238bc3c86d42072bfcef940d632eb
4977f51bd555f8771d3bb845505bb3fa508c5b00
/C11/exercise20/exercise20.cpp
3c6624488a184caede5d0d09052a4a3b757fa354
[]
no_license
gaurilab/TIC-vol1
6fb2ca4521c56d5decb63856457b4c118a69a7c1
7ae50a158b51dce47484fbccc0b03594903a882c
refs/heads/master
2021-01-10T11:17:55.666183
2016-01-25T15:20:55
2016-01-25T15:20:55
50,334,973
0
0
null
null
null
null
UTF-8
C++
false
false
1,499
cpp
#include <iostream> class DoubleRef { double *model_number; public: ~DoubleRef(){ //printf("\n destructor called for DoubleRef\n"); *model_number=-1; printf("\n destructor called for DoubleRef model_number =%f %p\n",*model_number, model_number); try{ delete model_number; } catch(...) { print...
[ "gaurilab@gmail.com" ]
gaurilab@gmail.com
49cf8ebb29496639f614e9d6a9a7433c3d90069c
9d17725610c2a402da952fd0ee86a6f83cdf54ac
/src/yuri/core/frame/AudioFrame.h
d5cb06da57cf4dfc1576d4f35f9a207573497f3d
[]
no_license
v154c1/libyuri
c77350bce94ffde0e77d7d08bc7ebc209a480813
ad986a4327513d6b4639b435bdde58f8cca41ea0
refs/heads/2.8.x
2023-08-31T09:01:52.309119
2023-08-25T05:18:01
2023-08-25T05:18:01
53,398,918
7
3
null
2023-03-18T09:19:09
2016-03-08T09:18:01
C++
UTF-8
C++
false
false
1,005
h
/*! * @file AudioFrame.h * @author Zdenek Travnicek <travnicek@iim.cz> * @date 21.10.2013 * @date 21.11.2013 * @copyright Institute of Intermedia, CTU in Prague, 2013 * Distributed under modified BSD Licence, details in file doc/LICENSE * */ #ifndef AUDIOFRAME_H_ #define AUDIOFRAME_H_ #include "Fram...
[ "travnicek@iim.cz" ]
travnicek@iim.cz
07f95f39ae8441ddb4dd57c714298b9248537ccd
b201f953954d9858318afded94757e9d9e514fd2
/GJing/GJingDlg.cpp
eafa351527856e3b122a1e22f131161add2e08ad
[]
no_license
lifeisall/destxt-edb
b038f08eeed861f79e2472bb62b9f409648eb4c8
d979169bf81233387ca824418807310e45cf3182
refs/heads/master
2020-04-07T17:41:01.164359
2014-05-27T07:59:09
2014-05-27T07:59:09
null
0
0
null
null
null
null
GB18030
C++
false
false
18,376
cpp
// GJingDlg.cpp : ๅฎž็Žฐๆ–‡ไปถ // #include "stdafx.h" #include "GJing.h" #include "GJingDlg.h" #include<windows.h> #include<cstdio> #include<cstring> #include <afxpriv.h> #ifdef _DEBUG #define new DEBUG_NEW #endif void exchange(char * a,CString b) { int i;int l=b.GetLength(); memset(a,0,sizeof(a)); USES_CONVERSION; cha...
[ "jingg.cxy@gmail.com" ]
jingg.cxy@gmail.com
5d658a3a42dbb4cd50805f265ac8488e7a290bbc
78e2fcfe9be6848fe33bb1db12a3a4634e69d29c
/client.cc
6bb501e78c2679cfb80dc6ba2a59c4324f6ac65d
[]
no_license
f0ster/distributed-unix-Sieve-of-Eratosthenes-
3a2eb4f685ac1c36c00a2a0d13800f95172f1d3b
965ffc0c3e2d95d77e5d75a6c9bb661392399383
refs/heads/master
2021-01-06T20:47:01.886416
2012-04-15T09:48:19
2012-04-15T09:48:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,875
cc
#include <netdb.h> #include <netinet/in.h> #include <unistd.h> #include <iostream> #include <cstdlib> #include <stdlib.h> #include <stdint.h> #define MAX_LINE 100 #define LINE_ARRAY_SIZE (MAX_LINE+1) using namespace std; int main() { int size = 1000; int *somedata = (int *) malloc(size * sizeof(int)); for(int ...
[ "foster.ryan.r@gmail.com" ]
foster.ryan.r@gmail.com
171296228161a954aa21db327b1e0a95a538b550
8825c55ba9869dc6cc1ea77803f226c19dfb2456
/Arduino/app.ino
469913d859a506bbbb4259388f80e8e2a8add4c8
[]
no_license
mushonnip/DS18B20-DataLogging-SD
620413875e5617468de1a7648bf844aa4947086b
792a80f5897b6b6bf5e25eb864c7cb682bbde381
refs/heads/master
2020-06-23T15:18:22.078946
2019-07-25T04:49:01
2019-07-25T04:49:01
198,661,440
0
0
null
null
null
null
UTF-8
C++
false
false
9,974
ino
#include <Wire.h> #include <LiquidCrystal_PCF8574.h> //memasukan library LCD #include "RTClib.h" #include <OneWire.h> #include <DallasTemperature.h> #include <SPI.h> #include <SD.h> #define ONE_WIRE_BUS1 36 #define ONE_WIRE_BUS2 38 #define ONE_WIRE_BUS3 40 #define chipSelect 53 OneWire oneWire1(ONE_WIRE_BUS1); OneWir...
[ "mushonnipabu@gmail.com" ]
mushonnipabu@gmail.com
b0ed9997faf13d7d091c79ef2d38677c0d33902a
4204c9d07f2a1cb70a72edd891d3b0cb29bd821a
/section 9/qt6cb-9-8/main.cpp
e270cbc07a9663cf55ef8dd9606f55d1bd540375
[]
no_license
scottpeterman/qt6-core-beginners
bee0e85acabe6b1fc7721c85447b2b4ef4105b23
f24cb4e285b22b83b971937e2c9c6145f7e64c93
refs/heads/main
2023-03-21T21:34:35.607751
2021-03-09T19:11:01
2021-03-09T19:11:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
590
cpp
/* What Static scope in classes Why We want all classes to use them same variable How See below */ #include <QCoreApplication> #include <QDebug> #include "animal.h" int Animal::count = 0; QString Animal::name = ""; void test() { Animal cat; Animal dog; Animal fish; qInfo() ...
[ "noreply@github.com" ]
scottpeterman.noreply@github.com
157977b922a4174bd46ecad538ea22689382e823
46a3e74975a70d973af8b7c32533d9a7465c0d18
/akdtree.cpp
3e1534da3861e86348c457d4891e3aab9141011f
[]
no_license
yuhangzhang/kdtree
07d8370788d391f57cd962a71eb06004f2f31e00
fff0c8df42cd249e4c67e2339030e0c5f73bf47c
refs/heads/master
2016-09-05T16:30:30.954641
2014-12-13T04:42:59
2014-12-13T04:42:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,006
cpp
๏ปฟ#include "akdtree.h" #define MONI 126 akdtree::akdtree(int featured) { featuredim = featured; featureset.push_back(vector<double>(0)); labelset.push_back(char(NULL)); oldtreesize=0; return; } void akdtree::plottree(LINT root) { printf("(%I64u|%.0f,%.0f)\n",root,featureset[tree.getTerm(ve...
[ "Yuhang@mtw-PC.(none)" ]
Yuhang@mtw-PC.(none)
f1db01078b8ad88a59eb33206622594d3d7e2963
0c0d6e54fc43713f1b89acaf99d3dbbc1f2f9798
/32_ะ—ะฐะดะฐั‡ะฐะšะพะผะผะธะฒะพัะถะตั€ะฐ_ะ’ะฐั€ะธะฐะฝั‚_6/graph.cpp
7cc7580ae866508802686242bd983a20ad88a89a
[]
no_license
leenzstra/Labs_PSTU
53a51a59420807d4f5717d81dced367bc1242096
e60feabab040ee82182fe869ffdafad82e432255
refs/heads/master
2022-09-04T14:41:17.127522
2020-06-01T06:43:34
2020-06-01T06:43:34
265,172,787
0
0
null
null
null
null
UTF-8
C++
false
false
37,860
cpp
#include "graph.h" using namespace std; int WinW = 1280; //ัˆะธั€ะธะฝะฐ ะพะบะฝะฐ int WinH = 720; //ะฒั‹ัะพั‚ะฐ ะพะบะฝะฐ bool printSteps = false; //ะฟะตั‡ะฐั‚ะฐั‚ัŒ ัˆะฐะณะธ ะธะปะธ ะฝะตั‚ bool drawing = true; //ะพั‚ะฒะตั‡ะฐะตั‚ ะทะฐ ะพั‚ั€ะธัะพะฒะบัƒ ัˆะฐะณะพะฒ ะฟัƒั‚ะธ bool* onMouse = new bool[maxSize]; //ะตัะปะธ ะผั‹ัˆัŒ ะฝะฐ ะฒะตั€ัˆะธะฝะต - true bool movable = false; ...
[ "noreply@github.com" ]
leenzstra.noreply@github.com
931a9d0f8c0e0a58c335fc4a16bdca9130b1b28b
1573c9eb6726dc9babb97938be99536f8c9e7196
/InertialSenseSDK/src/GpsParser.cpp
4bfbffe8ba3e171644d68230dee65f611be549ac
[ "MIT" ]
permissive
ShaohengZhou/IMUGPSNode
3e1b94a000f4836ca9ab288aa041b84dc6427f99
3e980eebfd95721e259eae0a4146dbf50e78f264
refs/heads/master
2021-05-03T22:18:17.539865
2018-02-06T05:46:48
2018-02-06T05:46:48
120,391,938
0
0
null
null
null
null
UTF-8
C++
false
false
14,610
cpp
/* MIT LICENSE Copyright 2014 Inertial Sense, LLC - http://inertialsense.com 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, co...
[ "szhou228@wisc.edu" ]
szhou228@wisc.edu
ba9950be57e81fea6de54f10a30e15539942441e
ae614be10587f9c5f2cebed6cc2c128681301c1b
/opencv/modules/core/src/copy.cpp
e89a17b323f774a60549ea467703db9a0bc75bd9
[ "MIT", "BSD-3-Clause" ]
permissive
HO4X/buildOpenCVTX2
15904a235033a4d5f90c1eb7c8fab5a307b13c41
ef24bf1874c8001908dae149264ac9f3bc9ee9fe
refs/heads/master
2020-03-27T05:30:26.085966
2018-08-24T18:44:40
2018-08-24T18:44:40
146,026,573
0
0
MIT
2018-08-24T18:29:38
2018-08-24T18:29:38
null
UTF-8
C++
false
false
41,406
cpp
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, instal...
[ "victorkallenbach@Victors-MacPro.local" ]
victorkallenbach@Victors-MacPro.local
3f4a5df0abe7c68632a5e5930d264e6cd1407ce5
72ed9a47f523e184301ab19b75f4df8d061e422a
/cpp_src/core/ft/ftdsl.cc
152a5e20c952c3745bc736fac06b5c089b03b0c4
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
cristaloleg/reindexer
7566d5a877267b724cf9c9041efb2dde9c38a88b
ccb0a6e072b2dbe63bb48b59fe6b709ec1fac8c2
refs/heads/master
2020-04-15T18:27:00.339426
2019-01-09T08:25:02
2019-01-09T08:25:02
164,913,154
1
0
Apache-2.0
2019-01-09T18:07:09
2019-01-09T18:06:56
C++
UTF-8
C++
false
false
4,670
cc
#include "core/ft/ftdsl.h" #include <locale> #include "tools/customlocal.h" #include "tools/errors.h" #include "tools/stringstools.h" namespace reindexer { using std::string; // Format: see fulltext.md bool is_dslbegin(int ch) { return IsAlpha(ch) || IsDigit(ch) || ch == '+' || ch == '-' || ch == '*' || ch == '\'...
[ "ogerasimov@gmail.com" ]
ogerasimov@gmail.com
7c3e93881084923c686906bb64c0e8b82a2a0f76
e3ff90b5f2510e679ee381194534188c97be18ad
/LLC141.cpp
4388c384b6729834b7be0f884f6ebaeede3d0dd1
[]
no_license
hitcszq/leetcode
144f561f04c04e87ffd5a5d991f103e4a8f9f35f
df81c1d29b87bdd533b289924dbe32f54abf7f3a
refs/heads/master
2021-01-17T08:49:30.169910
2016-08-22T15:27:29
2016-08-22T15:27:29
62,711,513
0
0
null
null
null
null
UTF-8
C++
false
false
938
cpp
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ /* class Solution { public: bool hasCycle(ListNode *head) { if(head==NULL) return false; ListNode* p=head; p=p->next; while(p!=NULL) { ...
[ "583101017@qq.com" ]
583101017@qq.com
fa8be693c3c301f1dcd335d4664bf59ad9c00ddc
c766bece263e5149d0dbab04ea20308bf1191ab8
/AdobeInDesignCCProductsSDK.2020/source/public/interfaces/architecture/IReplaceMetaDataCmdData.h
1b8f82c02940c731cfdeab5d601053a7ee58346f
[]
no_license
stevenstong/adobe-tools
37a36868619db90984d5303187305c9da1e024f7
c74d61d882363a91da4938fd525b97f83084cb2e
refs/heads/master
2022-04-08T17:31:35.516938
2020-03-18T20:57:40
2020-03-18T20:57:40
248,061,036
0
0
null
null
null
null
UTF-8
C++
false
false
2,335
h
//======================================================================================== // // $File: //depot/devtech/15.0/plugin/source/public/interfaces/architecture/IReplaceMetaDataCmdData.h $ // // Owner: Michael Burbidge // // $Author: pmbuilder $ // // $DateTime: 2019/10/11 10:48:01 $ // // $Revi...
[ "steven.tong@hcl.com" ]
steven.tong@hcl.com
7d3dd1ee4595a44511e369c141dd59b77252e8e8
92a61a319e19431a1a4ae7520695e17a7dd0a2bb
/applications/tdd/test_tsne.cpp
d0d9bc8d829d64b80cde62c9fe8f9b94ff649d91
[]
no_license
alleveenstra/High-Dimensional-Inspector
7a672d4495d454e8f06e77fbae93f02745f6e266
186fa74ed0f0f26acdb9815f3c64513f485062b6
refs/heads/master
2020-03-06T19:05:30.606374
2017-11-10T12:44:37
2017-11-10T12:44:37
127,020,492
0
1
null
2018-03-28T11:54:28
2018-03-27T17:10:01
C++
UTF-8
C++
false
false
3,933
cpp
/* * * Copyright (c) 2014, Nicola Pezzotti (Delft University of Technology) * 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 ...
[ "nicola.pezzotti@gmail.com" ]
nicola.pezzotti@gmail.com
f2a765b937f7be84000ed3c4283fff138006b2b7
499cb1cfbe600c2b63037f1809d413035a5b9ba9
/Project_Lucien_POEI/ESP.ino
2fb1f2d4678079ff31a4d851a726dbf5ae45c1ee
[]
no_license
Geiinius/Orsys_Lucien_Code
1cf482339425f1e707f6bc70b7aa823559c20dd8
eb10c937a84cfc7ebf48d3271cdc943e4be49fc2
refs/heads/main
2023-05-31T21:31:42.797739
2021-06-28T15:21:53
2021-06-28T15:21:53
373,523,715
1
0
null
null
null
null
UTF-8
C++
false
false
10,006
ino
#include <SPI.h> #include <RFID.h> #include <EEPROM.h> #include <Servo.h> #include <ESP8266WiFi.h> #include "PubSubClient.h" #define SS_PIN 10 //Pin S03 #define RST_PIN 0 //Pin D3 #define PWM_PIN 2 //Pin D4 WiFiClient wifiClient; PubSubClient clientMQTT(wifiClient); const char* ssid = "POEI"; const char* password = ...
[ "lucien.manza@gmail.com" ]
lucien.manza@gmail.com
a4db676a70f98dabb7800a806caebb4dd53a7fb8
483d5992960b195c255d2a3bed41bae11744e0ec
/ๆด›่ฐท/P7077.cpp
a4d20bce8055386a17fcc8f90dfe103b10226d3a
[]
no_license
zcy05331/code-backup
bd2627f461b69778f56b7ef74441802df2f84a58
9ef0dd11108a3fe11364266755a84467c64ba099
refs/heads/master
2022-04-30T16:30:28.877120
2022-04-15T12:27:25
2022-04-15T12:27:25
241,646,316
1
0
null
null
null
null
UTF-8
C++
false
false
2,314
cpp
#include <bits/stdc++.h> #define R register #define ll long long #define sum(a, b, mod) (((a) + (b)) % mod) #define meow(cat...) fprintf(stderr, cat) const ll MaxN = 2e5 + 10; const ll mod = 998244353; ll n, m, q, now, Q[MaxN], mul[MaxN], deg[MaxN]; ll a[MaxN], t[MaxN], p[MaxN], v[MaxN], sum[MaxN]; std::vector<ll> g...
[ "little_sun0331@qq.com" ]
little_sun0331@qq.com
4e28669a7cd292d554695c1fb0775f0cee5f35a4
1de9002cf9cd12f48041c8d0ad26a9609ce270ca
/XIV Semana Oct 2015/A/A.cpp
b7169bebca7db2cc1c5223d163c8a12010e110dd
[]
no_license
Silverutm/Concursos-Algoritmia
ac80426becf8b00570d5253bb3712f8f8593510a
3a13554fdf15952a093b3ff95f00f88acc4c675c
refs/heads/master
2020-04-14T11:41:25.262102
2019-01-17T00:13:08
2019-01-17T00:13:08
163,820,863
0
0
null
null
null
null
UTF-8
C++
false
false
1,805
cpp
#include <bits/stdc++.h> #define For(i, a, b) for(int i=(a); i<(b); ++i) #define MP make_pair #define INF 1000000000 using namespace std; typedef long long ll; typedef pair<int, int> ii; int votos[505], cand[505], total[505]; bool visit[505]; vector <vector <int> > AdjList; int main() { int tt; scanf("%d", &tt)...
[ "rb2k4e@gmail.com" ]
rb2k4e@gmail.com
6d22e526441ba77d480af7410f6e2ffecbf88026
30773b649ebd89ffadd16d30fd62740b77ca7865
/SDK/BP_Prompt_EmissaryEncounteredKraken_parameters.h
596188bba806150481c3ea4e42dee3ad60644440
[]
no_license
The-Jani/Sot-SDK
7f2772fb5df421e02b8fec237248af407cb2540b
2a158a461c697cca8db67aa28ffe3e43677dcf11
refs/heads/main
2023-07-09T07:17:56.972569
2021-08-18T23:45:06
2021-08-18T23:45:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,055
h
๏ปฟ#pragma once // Name: S, Version: 2.2.1 #include "../SDK.h" /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //-----------------------------------------...
[ "ploszjanos9844@gmail.com" ]
ploszjanos9844@gmail.com
113032c976db07b07ceb01f9164346ce875a07ef
16ddb68e471c27406b4d9363aff577b56a7905c1
/src/ofd/annotation/fr_ofdstampImp.cpp
b125a0b4ff52e34ae38a11e4bcae509862cceda1
[]
no_license
chelin192837/GitForDiscover
905afd383e779fde6bb23e32194295b0d9df5e76
12eaaa232b4734b0e49bc3fe3f74ddcbb780df42
refs/heads/master
2023-03-12T19:45:25.582129
2020-12-16T09:15:44
2020-12-16T09:15:44
299,801,583
0
1
null
null
null
null
UTF-8
C++
false
false
20,159
cpp
//#include "../../include/fs_pdfpage.h" #include "fr_ofdannotImp.h" //#include "fs_annoticonprovider.h" #include "../fr_ofdpageImp.h" #include "../../inc/fs_renderImp.h" #include "../fr_ofddocImp.h" #include "../../fs_util.h" /////////////////////////////////////// FROFDStampImp::FROFDStampImp(COFD_Annot ...
[ "15510373985@163.com" ]
15510373985@163.com
55a066423993290cea50ddffe2bdd9163e1f43fd
d8fcfc3f4dc2ec3c45e8e0dde53a0f413af6b82e
/depth_deco/src/get_cloud.cpp
c1b019ccfdb3e0eb96c958c661ebf6d1f3b6a578
[]
no_license
jcarballeira/tunhel
6ccf9f1b7eb22ee11eb41eabb38828c3f927e1fb
83a83ced496099e3bcb7f5cbe4518c63d4916aae
refs/heads/master
2023-08-23T11:08:36.381000
2021-10-05T16:02:46
2021-10-05T16:02:46
355,357,083
0
0
null
null
null
null
UTF-8
C++
false
false
6,724
cpp
#include <iostream> #include <fstream> #include <string> #include <sstream> #include <iterator> #include <limits> #include <vector> #include <Eigen/Core> #include <opencv2/highgui/highgui.hpp> #include <opencv2/features2d/features2d.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <opencv2/core/core.hpp> #include ...
[ "juancarballeiralopez@gmail.com" ]
juancarballeiralopez@gmail.com
78aa6042e82ae5c2056719ad50b23a9481a6d143
122a6c6cedf00cd42a2c8f738840fe0e7ee4a66a
/dinput/Versions/IDirectInputW.cpp
bc17bcc8a81a67a281ca02a84f9da54b3cc40eba
[ "Zlib" ]
permissive
elishacloud/DirectX-Wrappers
a8f5d98e46034c890681faa24e9fa7187c9baec5
e6f9867cfe87de2a1c84963acce61ff521a4e3f4
refs/heads/master
2023-04-09T09:06:39.706976
2023-03-24T00:06:51
2023-03-24T00:06:51
101,022,000
195
42
null
null
null
null
UTF-8
C++
false
false
2,012
cpp
/** * Copyright (C) 2020 Elisha Riedlinger * * This software is provided 'as-is', without any express or implied warranty. In no event will the * authors be held liable for any damages arising from the use of this software. * Permission is granted to anyone to use this software for any purpose, including co...
[ "elisha@novicemail.com" ]
elisha@novicemail.com
4e6e55f80391c8a17fee21a9aa4bbe158849b72f
677fb63bd16c45f60c17d94235d41b795f31e1b6
/src/node_angle.cc
f1e07eccfab984fa96cbe03d2f699f2d1bbfdf95
[]
no_license
simonbuchan/node-angle
f08b22a2e62d8fce0323b5354db7e2c611263db2
ce55adc7ec97a556fd90abf0bf7c330d121ac6ce
refs/heads/master
2021-09-04T05:20:13.978601
2018-01-16T08:53:07
2018-01-16T08:53:07
108,524,244
1
1
null
null
null
null
UTF-8
C++
false
false
5,886
cc
#include "nan.h" #include "v8-helpers.hh" #include "EGLWindowObject.hh" namespace node_angle { #define ARG_JUST(index, type, name) \ auto name##Maybe = Nan::To<type>(info[index]); \ if (name##Maybe.IsNothing()) { \ return Nan::ThrowTypeError("Arg '"#name"' must be type "#type)...
[ "simon.buchan@skilitics.com" ]
simon.buchan@skilitics.com
e4cbd5aa8b942ee58ce64df7c9680be413b317cf
772971904ef64e7238a68a600d4ebc382c20c920
/TransformationPassSROA/ScalarReplAggregates.cpp
125a6b5143a0ca6c0f5128d70492a6a9189e5651
[]
no_license
zawtom725/LLVMAdditions
fc59884768d75f9e87a406cf0fc8348ffbb16fa7
868dcc0fa361e7b6d1823ff32d9d7dfa8a1e7d94
refs/heads/master
2020-05-26T08:21:00.642071
2019-05-23T05:32:54
2019-05-23T05:32:54
188,165,384
0
0
null
null
null
null
UTF-8
C++
false
false
25,884
cpp
//===- ScalarReplAggregates.cpp - Scalar Replacement of Aggregates --------===// // // The LLVM Compiler Infrastructure // // This file was developed by the LLVM research group and is distributed under // the University of Illinois Open Source License. See LICENSE.TXT for details. // //===----------...
[ "ziangw2@illinois.edu" ]
ziangw2@illinois.edu
93f765ae9aa378f356ffd4f1346c2f0712f6fb54
8140817e7625b4b06e15a528eb39bd0286daed5f
/E-Commerce/mak171830.cpp
77e89e3c612f9812e7a3546e7c6d01ac550b0768
[]
no_license
naqvikhan/EComm_CPlus
6b692baf216219471dfbb3fce32cd8c430afafde
ae61f4ba66f23269692f3ed986e310ea168672e6
refs/heads/master
2022-04-26T07:34:42.850697
2020-04-29T23:17:18
2020-04-29T23:17:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,983
cpp
//Project 3 //M Naqvi Aziz Khan // <mak171830> #include <iostream> #include <string> #include <fstream> #include <iomanip> #include "product.h" using namespace std; //Function prototypes void sortItems(Product array[],int count); bool readData (Product array[], int counter); bool checkItems(Product array[], Product ...
[ "noreply@github.com" ]
naqvikhan.noreply@github.com
1abb777da9d6d4fa87633f654e10b843f8c9ff21
33cc92898d38643d9bc311ced4c56d35a6e79f56
/tree.cpp
7f286158c7822ba808aabe081d102e42f9c4c50b
[]
no_license
scohe001/Tree
d69d04c54acceff04cba91adc8b11f6843fe5d5c
d7c6735573eacc363d7bb8d41396e107d9cc1054
refs/heads/master
2021-01-01T03:55:04.532955
2016-04-22T20:16:07
2016-04-22T20:16:07
56,335,881
0
0
null
null
null
null
UTF-8
C++
false
false
2,668
cpp
#include "tree.h" Tree::Tree(int type) { if(type == 0) { //http://cs-people.bu.edu/behoppe/videos/rooted%20tree.jpg root = new Node(3); Node *left = new Node(9); Node *right = new Node(4); root->children.push_back(left); root->children.push_back(right); left->childre...
[ "a12n@mac.com" ]
a12n@mac.com
130a24bb1f6f65ed362b54510fc3e017d654696b
164ab7c3679d3c8654d975065c15cbc31a646012
/CPP/Rearrange Array/CPPREA12.cpp
fbae20bcf2c138ba2996a1051ca67c42521bfa17
[]
no_license
iexpurgator/Major-Exercises
3324800d1cc540b2308416dc9e1910998b84eb83
5bd15df834533a2a5693821ada98fd8f22bf4746
refs/heads/master
2023-03-11T13:17:02.057041
2021-02-20T17:12:17
2021-02-20T17:12:17
319,409,117
0
0
null
null
null
null
UTF-8
C++
false
false
546
cpp
#include <bits/stdc++.h> #define P -1000000000 using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int t; cin >> t; while (t--) { long long n, res = P; cin >> n; vector < long long > a (n, 0); for (int i = 0; i < n; i++) cin >> a[i]; for (int i =...
[ "arielwm351@gmail.com" ]
arielwm351@gmail.com
822aeb3ff126445347dfea54dc4afc26f76d66fd
babf029eeb628e854f509bbe3a698a0ef02ca389
/vtkFeatureSurfaces.cxx
7ee72e1732860be399ebd507c8e20deb5e992708
[]
no_license
mortbauer/vtkExtractFeatureSurfaces
02e6fea02633603a02f4f879a7f1ac8c144f3a24
56c75da035bb69dfad56a598d057a633f35b007c
refs/heads/master
2020-05-20T06:43:14.106393
2015-09-01T08:51:37
2015-09-01T08:51:37
41,727,732
1
0
null
null
null
null
UTF-8
C++
false
false
7,552
cxx
/*========================================================================= Program: Visualization Toolkit Module: vtkFeatureSurfaces.cxx Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This softwa...
[ "mortbauer@gmail.com" ]
mortbauer@gmail.com
e242b162edb609e47e7f41f00a0061a0d06dfb45
b7bc43281555caa1ee1db6a4fe2a83ebb2b17039
/problem_solving/algorithms/easy/grading_students/solution.cpp
81049bd2c2d20ef5f18401be7bcd5698ae988820
[]
no_license
willpang/HackerRank
d33cb8b6d8af22df97287539450b79b594f4ca97
7eeb1d71d812d7219c4d6441510d2be009486e95
refs/heads/main
2023-08-09T18:34:15.663087
2023-07-22T16:46:13
2023-07-22T16:46:13
96,313,685
0
0
null
null
null
null
UTF-8
C++
false
false
748
cpp
#include <map> #include <set> #include <list> #include <cmath> #include <ctime> #include <deque> #include <queue> #include <stack> #include <string> #include <bitset> #include <cstdio> #include <limits> #include <vector> #include <climits> #include <cstring> #include <cstdlib> #include <fstream> #include <numeric> #inc...
[ "williampangiawan@gmail.com" ]
williampangiawan@gmail.com
71c35b502848ace289fd010272ff08e38d70b699
f845b362d2b13fe653dc78bc59666296bf7c500b
/.leetcode/1318.ๆˆ–่ฟ็ฎ—็š„ๆœ€ๅฐ็ฟป่ฝฌๆฌกๆ•ฐ.cpp
e62221f5c32568a7241313dacdf38f81b5a2e2f9
[]
no_license
nibolyoung/leetcode
162dfd33a3906c6d1cec2f39532a4a09c577b68f
2f74312e11480fc54563cac211b68cb17abedc04
refs/heads/master
2023-03-18T01:42:24.551050
2023-03-09T13:59:48
2023-03-09T13:59:48
253,697,418
0
1
null
null
null
null
UTF-8
C++
false
false
202
cpp
/* * @lc app=leetcode.cn id=1318 lang=cpp * * [1318] ๆˆ–่ฟ็ฎ—็š„ๆœ€ๅฐ็ฟป่ฝฌๆฌกๆ•ฐ */ // @lc code=start class Solution { public: int minFlips(int a, int b, int c) { } }; // @lc code=end
[ "1913848392@qq.com" ]
1913848392@qq.com
fcbfddf3a43afddd4a1657c806c5ec0db9350cf5
d4611fd1476d2374263564299dae41da10684a2d
/_001-01-ethernet_connexion/_001-01-ethernet_connexion.ino
93d83b8097a8b33090ddb190b2f60f7025052423
[]
no_license
gimfo/ard_01
6a819ff9f0f800b5bdcff6e3f38a35f1128c37aa
989157092611ea598b72651eb676eea22994b8a3
refs/heads/master
2020-06-14T10:09:57.288894
2016-12-06T06:41:41
2016-12-06T06:41:41
75,200,035
0
0
null
null
null
null
UTF-8
C++
false
false
629
ino
//#include <SPI.h> #include <Ethernet.h> const int ledPin = 13; byte mac[] = { 0x90, 0xa2, 0xda, 0x00, 0x1a, 0x71 }; IPAddress ipLocal(192,168,1,201); EthernetServer serveurHTTP(80); void setup() { Serial.begin(115200); pinMode(ledPin, OUTPUT); Ethernet.begin(mac, ipLocal); serveurHTTP.begin(); delay(1000);...
[ "franck.ouriongim@gmail.com" ]
franck.ouriongim@gmail.com
4f0aab68fc9d155214ffc7e94740a042b949dd28
128fc38660fb3602b74a998fe1bf84536ff4c61c
/Ex31_Next_Permutation.cpp
757de63fe2e5ee2fca73a99b48bcd23ccd38914c
[]
no_license
basti-shi031/LeetcodeCpp
798cd28d67370c00dfaf76d9d64c62d8cba25d27
f583c158639bae8d44beaf7b634e9887834ecd27
refs/heads/master
2021-06-03T14:36:58.520852
2019-12-30T09:05:27
2019-12-30T09:05:27
135,885,923
1
0
null
null
null
null
UTF-8
C++
false
false
1,440
cpp
// // Created by Basti031 on 2019/9/19. // #include <iostream> #include <vector> #include <algorithm> #include <limits.h> using namespace std; //https://www.jianshu.com/p/cbb59321c306 class Solution { public: void nextPermutation(vector<int> &nums) { int size = nums.size(); if (size == 0 || size...
[ "876572078@qq.com" ]
876572078@qq.com
8a3ae1e7a19adb94fe4da49d8cfc2f46f5dd1282
45d300db6d241ecc7ee0bda2d73afd011e97cf28
/OTCDerivativesCalculatorModule/Project_Cpp/lib_static/xmlFactory/GenClass/RiskMonitor-0-1/PayoffCalcLog.hpp
9bbdf07e3d34626d11e6e100a5c11d6c41031057
[]
no_license
fagan2888/OTCDerivativesCalculatorModule
50076076f5634ffc3b88c52ef68329415725e22d
e698e12660c0c2c0d6899eae55204d618d315532
refs/heads/master
2021-05-30T03:52:28.667409
2015-11-27T06:57:45
2015-11-27T06:57:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
674
hpp
// PayoffCalcLog.hpp #ifndef FpmlSerialized_PayoffCalcLog_hpp #define FpmlSerialized_PayoffCalcLog_hpp #include <ISerialized.hpp> #include <built_in_type/XsdTypeToken.hpp> namespace FpmlSerialized { class PayoffCalcLog : public ISerialized { public: PayoffCalcLog(TiXmlNode* xmlNode); bool isPath...
[ "math.ansang@gmail.com" ]
math.ansang@gmail.com
d2e75f81cb5a0ddb683c2ebcd565e2159a293b39
2ec820a72e6a9d4f417e6dca0e288090782aa64d
/src/cin-chain.cpp
e29097672b373d6504c5304bb6cf441c7fa55ba3
[ "MIT" ]
permissive
xgqfrms/C-plus-plus
552a2aacf02a3367884b19cb97d0d1233e9ca8b0
9fded7fbf061efd0d5f758008a082f60747fbe22
refs/heads/master
2023-02-03T08:54:09.625410
2023-01-23T10:00:19
2023-01-23T10:00:19
153,917,679
2
0
null
null
null
null
UTF-8
C++
false
false
248
cpp
#include <iostream> using namespace std; int main() { int a; int b; // cin >> a; // cin >> b; // ็ญ‰ไปทไบŽ๏ผŒcin ้“พๅผ่ฐƒ็”จ cin >> a >> b; int sum = a + b; cout << sum; // cout << sum << endl; return 0; }
[ "noreply@github.com" ]
xgqfrms.noreply@github.com
a3ed3b0064523fb4ec023064b86f4f481577e104
3d060326b0388179f2e58f3216036590a55bec12
/widget.h
545c6cbf282aca754e80b4e9592b1234b8438dd8
[]
no_license
wuyubo/Min-gameEngine
a334251315fe9c50a4324600f6a0151af8782684
a4e956ee32306bfbe91b8f248282a0e2b9563264
refs/heads/master
2020-12-04T19:37:59.725431
2016-08-21T04:07:28
2016-08-21T04:07:28
66,180,211
1
0
null
null
null
null
UTF-8
C++
false
false
639
h
#ifndef WIDGET_H #define WIDGET_H #include <QWidget> #include <QVector> #include <QPushButton> #include "gamedata.h" #include "Bgame/tank/tankwidget.h" using namespace Bigo; namespace Ui { class Widget; } class Widget : public QWidget { Q_OBJECT public: explicit Widget(QWidget *parent = 0); ~Widget(); ...
[ "https://github.com" ]
https://github.com
2dddf7799816f2b9c73fa864ea2d1887bb21d53b
b9e5b647c9e033c01c3a0c4a3f5fbdc9a188f37e
/Project1/Vampire.h
a8e5c22b6d57ab2711567bbef84e2bbb9190d569
[]
no_license
hwang635/CS32
1e0c3aaeae92a61655cc41e1b8cec6485220db17
716c59b4549ceec751dcab3e926d52e230acb623
refs/heads/master
2020-12-09T12:56:12.351826
2020-04-03T00:45:47
2020-04-03T00:45:47
233,307,771
0
0
null
null
null
null
UTF-8
C++
false
false
384
h
#ifndef VAMPIRE_H #define VAMPIRE_H class Arena; //use Arena as pointer, parameter class Vampire { public: // Constructor Vampire(Arena* ap, int r, int c); // Accessors int row() const; int col() const; bool isDead() const; // Mutators void move(); private: Arena* m_arena; int m_row; int m_col;...
[ "hejwa9@yahoo.com" ]
hejwa9@yahoo.com
b78f07e82ce87d507d22c9e8b26bc1685219aa10
2e15882fa701f7183fe834b98b8158e05ca6a7ca
/Creatures/creaturemonitor.h
fe763cd4496a8c4e184f8549555933c7dd02e376
[]
no_license
lonski/amarlon_textgame
882ed5b68f1b52dfcda35a31bf67616e3679c7dd
681f748e5bc37b4f843d95f99c9cdc7f08c5e050
refs/heads/master
2020-04-11T10:38:19.621477
2014-09-14T11:55:40
2014-09-14T11:55:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
455
h
#ifndef CREATUREMONITOR_H #define CREATUREMONITOR_H #include "creature.h" #include "typeinfo" class CreatureMonitor { Creature *_crt; public: CreatureMonitor(Creature *crt); CreatureMonitor(); void set_creature(Creature *crt); void reset(Creature *crt = nullptr); std::string print(); std::string pri...
[ "lonski@users.noreply.github.com" ]
lonski@users.noreply.github.com
73d4a932dd2affaedbfe5bf51c4fe9a55904c755
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/third_party/WebKit/Source/core/xml/XSLStyleSheet.h
4e8a816da5e063221decfa29f1b61921b55ce354
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft" ]
permissive
webosce/chromium53
f8e745e91363586aee9620c609aacf15b3261540
9171447efcf0bb393d41d1dc877c7c13c46d8e38
refs/heads/webosce
2020-03-26T23:08:14.416858
2018-08-23T08:35:17
2018-09-20T14:25:18
145,513,343
0
2
Apache-2.0
2019-08-21T22:44:55
2018-08-21T05:52:31
null
UTF-8
C++
false
false
4,609
h
/* * This file is part of the XSL implementation. * * Copyright (C) 2004, 2006, 2008, 2012 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either...
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com
1af3361ee3622ddfb6e78d069652eeb925c8d3e7
4e3821dcbaee46bcc42d6b76b59a536d2a7bf58a
/MultiUtils.h
e10146e62ad337a630de60ad7e037602d75ce819
[]
no_license
jgvalves/MultiREPO
82b544f09f829d4f5ea0e18d02d2f9e31b565580
ea099e4ed2618c2e510b92760c95d8a20f6b92d2
refs/heads/master
2021-01-22T17:33:26.733114
2016-08-01T10:15:02
2016-08-01T10:15:02
64,656,150
0
0
null
null
null
null
UTF-8
C++
false
false
692
h
#pragma once #include "WacomMultiTouch.h" #include "WacomMultiTouchTypes.h" #include "ofApp.h" #include <windows.h> #include <WintabUtils.h> #include <bbtabwin.h> #include <string> #include <map> #include <memory> #include <iostream> #include <vector> //#include <mutex> //#include <PKTDEF.H> ...
[ "noreply@github.com" ]
jgvalves.noreply@github.com
917d837b20b2e6005db8c72d94c33088844d4554
2cf838b54b556987cfc49f42935f8aa7563ea1f4
/aws-cpp-sdk-ce/include/aws/ce/model/UpdateAnomalySubscriptionRequest.h
c6d9d3c82e4f3c03b600a727027080d187a4df43
[ "MIT", "Apache-2.0", "JSON" ]
permissive
QPC-database/aws-sdk-cpp
d11e9f0ff6958c64e793c87a49f1e034813dac32
9f83105f7e07fe04380232981ab073c247d6fc85
refs/heads/main
2023-06-14T17:41:04.817304
2021-07-09T20:28:20
2021-07-09T20:28:20
384,714,703
1
0
Apache-2.0
2021-07-10T14:16:41
2021-07-10T14:16:41
null
UTF-8
C++
false
false
10,654
h
๏ปฟ/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/ce/CostExplorer_EXPORTS.h> #include <aws/ce/CostExplorerRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/ce/model/AnomalySubscriptionFrequency.h> #i...
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
cb5847144e81a6ec2570826d4672c8140baba711
da1ba0378e1ed8ff8380afb9072efcd3bbead74e
/google/cloud/dialogflow_cx/session_entity_types_options.h
91259e3f092ffdfc9bd61ab1decde77cd0041ec5
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Jseph/google-cloud-cpp
76894af7ce744cd44304b48bea32d5116ded7497
fd8e70650ebac0c10bac4b293972e79eef46b128
refs/heads/master
2022-10-18T13:07:01.710328
2022-10-01T18:16:16
2022-10-01T18:16:16
192,397,663
0
0
null
2019-06-17T18:22:36
2019-06-17T18:22:35
null
UTF-8
C++
false
false
2,233
h
// Copyright 2022 Google LLC // // 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
[ "noreply@github.com" ]
Jseph.noreply@github.com
1fc0a511a21d9edb5c4f145a16d939e22e1904dc
4acf8870dc3fb86c2d9dbf6e57529f09495e445c
/lib/tangram-es/tests/unit/dukTests.cpp
fd35eb2ba42a3461abc56db3ccbbc0e0bb5db00f
[ "MIT", "Apache-2.0" ]
permissive
mgarcia01752/weg
12f20a964e599a03455201155717f43576633ada
f5038e4fdea56c6dbfc25ec364988f133831a512
refs/heads/master
2020-04-04T06:08:45.482868
2016-10-18T04:50:14
2016-10-18T04:50:14
55,573,558
2
1
null
2016-10-08T06:58:40
2016-04-06T03:37:32
C++
UTF-8
C++
false
false
12,349
cpp
#include "catch.hpp" #include "yaml-cpp/yaml.h" #include "scene/filters.h" #include "scene/sceneLoader.h" #include "scene/scene.h" #include "scene/styleContext.h" #include "util/builders.h" #include "platform.h" using namespace Tangram; TEST_CASE( "", "[Duktape][init]") { StyleContext(); } TEST_CASE( "Test eval...
[ "maurice.garcia.2015@gmail.com" ]
maurice.garcia.2015@gmail.com
fe000a58fddcd85adb8d9d880de95182b7480245
f5d283d06c2bcec2a165d4a55f9c46abefd72798
/src/main.cpp
eedf5a5ef67801f2309bcf6df1f7b95c18688540
[ "MIT" ]
permissive
bilakispa/8Chips
0226cbd32525e1030d404fa16ecdcd30a0c397f2
c4601dacbb608750133bd988d69dd5042ea051d1
refs/heads/master
2020-08-30T15:02:59.827794
2018-06-08T07:34:53
2018-06-08T07:34:53
67,883,121
0
0
null
null
null
null
UTF-8
C++
false
false
4,961
cpp
#include <iostream> #include <fstream> #include <string> #include "SDL2/SDL.h" #include "mainwindow.h" #include "log.h" #include "chip8/chip8.h" const std::string WINDOW_NAME = "8Chips"; const int CHIP8_SCREEN_WIDTH = 64; const int CHIP8_SCREEN_HEIGHT = 32; const int WINDOW_RATIO = 10; const int FRAMERATE = 60; //T...
[ "bilakispa@gmail.com" ]
bilakispa@gmail.com
5dbeb18d1df6cfbae797df10bb4618211cec82e9
d6491bb4c5f8b505e3bbc4b517b04646783728be
/analyzer/rootana/src/TAP_generators/utils/Functions.h
27fffea7da2c1ee0b5c246872c3618dd996d294c
[]
no_license
alcap-org/AlcapDAQ
7abb402c2f7f1c4c97c1d61a88cbd8c1c6e129f3
269f698bd80a6f57314e1497c15b484f15516cce
refs/heads/R15b
2023-05-11T19:28:41.593446
2019-06-21T17:31:22
2019-06-21T17:31:22
19,924,789
9
1
null
2020-03-18T20:41:34
2014-05-19T00:44:07
C
UTF-8
C++
false
false
138
h
#ifndef FUNCTIONS_H_ #define FUNCTIONS_H_ namespace functions{ double gauss_lin(double *x, double *par); } #endif // FUNCTIONS_H_
[ "mr.krikler@googlemail.com" ]
mr.krikler@googlemail.com
6355ade5ca4bfc08171008c66f23184c84c8dd78
4fddcff73f2873d83cc69cee6c5ca0c251c1c29f
/src/descriptorloader.cpp
a8fb00b5bb6475a6a436a6867517ef01f123c344
[]
no_license
trinitum/google-protobuf-dynamic
68992770fd56bf18a94341256d7856c3441df3c6
359d4acd3ef2e8ffecbc1726044fe835a0a2b394
refs/heads/master
2020-06-16T21:01:52.384043
2017-03-11T13:31:11
2017-03-11T13:31:11
75,066,932
0
0
null
2016-11-29T09:49:06
2016-11-29T09:49:05
null
UTF-8
C++
false
false
1,956
cpp
#include "descriptorloader.h" #include "EXTERN.h" #include "perl.h" using namespace google::protobuf::compiler; using namespace google::protobuf; using namespace gpd; using namespace std; void DescriptorLoader::ErrorCollector::AddError(const string &filename, const string &element_name, const Message *descriptor, De...
[ "mattia@barbon.org" ]
mattia@barbon.org
774565a73bf6d5cb84928ef13ab5fe2493221282
f9ef63d68b4a87836f8611e802828fcb1bb62656
/Advanced/Water/OGLES2/OGLES2Water.cpp
2722bc0649f16c9a835f6c06bf4236d5dab2e1f7
[]
no_license
ThreeNG/Examples
557aecb1c126479c077c6a87f08b2508c50e2c23
28af63cf097cbe4389cfb3c151dc1bceec19ba24
refs/heads/master
2021-05-26T19:29:27.809842
2013-08-20T19:13:04
2013-08-20T19:13:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
76,537
cpp
/****************************************************************************** @File OGLES2Water.cpp @Title Water @Version @Copyright Copyright (c) Imagination Technologies Limited. @Platform Independent @Description Demonstrates a method of rendering a water effect efficiently...
[ "0xb000@gmail.com" ]
0xb000@gmail.com
e94e3b158fd59d1260c8b5ccce327b727a7053fb
c881fbd7d09e9518fce21f8feacd4f764566737b
/src/http/HttpTunnelConsumer.cpp
9c38fb8b5cd00c3b9100ca6697aa86c943dde576
[ "BSD-2-Clause" ]
permissive
yishui81/octopoda-github
d545e2f429b60c85130a3b61f1e37465e32d1fa1
0742041a26a378ff5d99f0ec45b9eb34f11f6ffe
refs/heads/master
2021-03-12T20:32:48.590065
2014-06-03T09:18:59
2014-06-03T09:18:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
464
cpp
/* * HttpTunnelConsumer1.cpp * * Created on: 2014ๅนด5ๆœˆ13ๆ—ฅ * Author: jacky */ #include "HttpTunnelConsumer.h" #include <sys/types.h> HttpTunnelConsumer::HttpTunnelConsumer() : //link(), producer(NULL), self_producer(NULL), vc_type(HT_HTTP_CLIENT), vc(NULL), buffer_reader(NULL), vc_handler(NULL),...
[ "jian.wang2@sihuatech.com" ]
jian.wang2@sihuatech.com
486df5f1a4e8cd3a23a7fbc598f456853634440d
9e53d210a4230a3f7de2c693fba20a813bc17aa5
/Source/Common/Test/RangeAllocator_test.cpp
20e5c6e22c168f250b4654f31dc9ebeec5859105
[ "MIT" ]
permissive
fwzhuang/azura
b669c251bc515274cf746e241191d68c0af70958
80aa23e2fb498e6288484bc49b0d5b8889db6ebb
refs/heads/master
2020-05-02T12:47:44.439338
2019-01-10T10:12:48
2019-01-10T10:12:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,196
cpp
#include <iostream> #include <limits> #include "RangeAllocator_test.h" #include "Types.h" struct Sample { int arg1; double arg2; Sample() { arg1 = 99; arg2 = 16.0; } }; TEST(RangeAllocatorTest, Constructs) { Azura::Memory::HeapMemoryBuffer myBuffer = Azura::Memory::HeapMemoryBuffer(256); Azu...
[ "vasu.mahesh@hotmail.com" ]
vasu.mahesh@hotmail.com
8c361bb92a5a80107524e556e2a1fae59ed92671
b5ed64237b9de164789a86e31cdbf9509879d344
/v0/0016.cpp
9b218ddf964e9e6bb53cdfc9a9d694bd43821b58
[]
no_license
giwa/aoj
cbf9a5bc37f81bbc6ad5180d83a495ef1e3a773d
f780f27cb8b0574275daf819020bc35f95afd671
refs/heads/master
2021-01-19T08:42:14.793830
2015-03-17T10:29:30
2015-03-17T10:29:30
31,995,602
0
0
null
null
null
null
UTF-8
C++
false
false
544
cpp
#include <iostream> #include <cmath> using namespace std; int main() { int r, degree; int sum_degree = 0; double wx = 0, wy = 0; char comma; while (true) { cin >> r >> comma >> degree; if (!r && !degree) { break; } // the input of sin and cos is radian...
[ "ugw.gi.world@gmail.com" ]
ugw.gi.world@gmail.com
cf11efd31db53b4116a6b16ca69358d59cf647e4
804fdb85249ee9afbf4a95d0ca88135b176d4b06
/Nethack_Clone/Armor.cpp
4e48f9e467495bd5c1cc32238f0c53ccd6a2371d
[]
no_license
alxHenry/Nethack_Clone
d505bbc92ec2af0a79a6d7235d2652327f128354
627504e61940afa404c60a5609f47291d5876778
refs/heads/master
2021-05-28T00:06:21.911343
2013-11-23T05:01:31
2013-11-23T05:01:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,376
cpp
#include "Armor.h" #include <string> using namespace std; Armor::Armor() { m_iDefenseBonus = 0; } Armor::Armor(string name, char symbol, int value, int weight, int iDefenseBonus) { setName(name); setSymbol(symbol); setValue(value); setWeight(weight); m_iDefenseBonus = iDefenseBonus; } Armor::Armor(Armor * ar)...
[ "adhe223@g.uky.edu" ]
adhe223@g.uky.edu
8ef86da9f24b32dc3feaf0d69171361572165216
694f964f72fdd36a8a4261cef33e7bbf6979af7f
/src/rpcrawtransaction.cpp
0f1ec92fe08d259896ab350d3d18d79e6cab4c0c
[ "MIT" ]
permissive
tucoin-project/tucoin
aec0bac1ed365001216054d073908e848db41904
a85b43116b7d737e23e52bfe6454e74268dd93b0
refs/heads/master
2021-08-16T22:39:12.148294
2017-11-20T12:02:42
2017-11-20T12:02:42
107,175,028
0
0
null
null
null
null
UTF-8
C++
false
false
21,959
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <boost/assign/list_of.hpp> #include "base58.h" #include "bitcoinrpc.h" #inclu...
[ "pangjanjira@hotmail.com" ]
pangjanjira@hotmail.com
649340ddbf4239fa1ad90182f7c2ddeba211b82f
06a75f0e5d78b14c793f04bf768daab64b187d39
/Scorp_control.cpp
414536a9ec6f35bd116c2adc44bb6360a4c3b2c3
[]
no_license
mesmesgit/Scorp
321c92c417d25c639d20159a8b204e30a000e9ce
bd22b538824583495bc08ae7cdd8b1b112c4e714
refs/heads/master
2021-01-10T06:29:54.659518
2018-03-12T23:44:09
2018-03-12T23:44:09
54,866,409
0
0
null
null
null
null
UTF-8
C++
false
false
21,937
cpp
//============================================================================ // Name : Scorp_control.cpp // Author : Mark Strickland // Version : 0.1 // Copyright : GPL // Description : Controls the scorpion robot from Robotis using SDK //=============================================================...
[ "Mark.Strickland@asu.edu" ]
Mark.Strickland@asu.edu
86c7cd7b397dcb244412ff2ebb177c60bd95e452
6c3a03b9f1316b60c0ea9dd70e8b521c92ea197d
/include/glm/gtc/matrix_transform.inl
f31d035066e8a9c8f0ac26c8e8966b103f11faf3
[]
no_license
DarkTong/OpenGL
2e52effc42c4deea20454c109607ac31f1604cf0
bc28e9be4f03633667992d24f82af3d03e21b078
refs/heads/master
2021-01-19T23:06:48.482773
2017-05-08T06:37:33
2017-05-08T06:37:33
88,926,003
0
0
null
null
null
null
UTF-8
C++
false
false
13,655
inl
/////////////////////////////////////////////////////////////////////////////////// /// OpenGL Mathematics (glm.g-truc.net) /// /// Copyright (c) 2005 - 2014 G-Truc Creation (www.g-truc.net) /// Permission is hereby granted, free of charge, to any person obtaining a copy /// of this software and associated documentatio...
[ "13427508433@163.com" ]
13427508433@163.com
ccdd3bc808dc22c788d0c8b55a5574b58d0272b9
1a93b0d5eede23e5d2a2a08c9d9e58d2bd1fe2d0
/src/mame/includes/psikyosh.h
be579c4ed32b90cd2e31848dc70aa5c58022caa0
[]
no_license
Cancerous/mame-lx
8a6b5cde58d8d070d0469534c10a6ed5a288df9b
d172a954b9697b0dc4178781f9232d2d40a767eb
refs/heads/master
2020-12-25T03:29:45.129236
2012-01-01T19:03:08
2012-01-01T19:03:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,626
h
#define MASTER_CLOCK 57272700 // main oscillator frequency /* Psikyo PS6406B */ #define FLIPSCREEN (((state->m_vidregs[3] & 0x0000c000) == 0x0000c000) ? 1:0) #define DISPLAY_DISABLE (((state->m_vidregs[2] & 0x0000000f) == 0x00000006) ? 1:0) #define BG_LARGE(n) (((state->m_vidregs[7] << (4*n)) & 0x00001000 ) ? 1:0) #d...
[ "cc2911@facebook.com" ]
cc2911@facebook.com
cf8eb05e00a849e497bff711211a5308e01f17ac
b7cf9f79c5f7ea61693f0ce822daac9c0811e41f
/acm/pipi/1025.cpp
846f2848364d2e74d72e45726843997c90891473
[]
no_license
saber110/C_review
8deb7f3ba08b49d9e2f3d14f3921b5c07240ff2e
6c80302ad2fd7fccf04b69441eda84d5df8c9559
refs/heads/master
2020-07-16T15:38:44.034361
2019-04-04T07:35:27
2019-04-04T07:35:27
73,944,762
0
0
null
null
null
null
UTF-8
C++
false
false
848
cpp
#include<iostream> #include<cmath> using namespace std; double minOfX2(double a, double b, double c, int x1, int y1, int x2, int y2) { // f(x) = ax2 + bx + c double x = - b / (2 * a); if(x >= 0) return a * x * x + b * x + c; // return min(a * x1 * x1 + b * x1 + c, a * x2 * x2 + b * x2 + c); return x1 * x1 + x2 *...
[ "15675123342@163.com" ]
15675123342@163.com
8cf9074f23a0338176ee84b95f8305c051d957e0
8a251b28c1a3c37d73a76d5cf80431e219d833ed
/libopenrv/messageparser.cpp
3ddf6103340af6d2131c12b9270c6f260ab89144
[ "Apache-2.0" ]
permissive
monumentsoftware/openrv
8c4bf269e026f292dc66572295a3f1c86ad74cf7
4fa5a8b2cb3178041e94afd332571e3064fd5cd2
refs/heads/master
2020-03-07T17:40:26.383101
2018-06-13T20:02:04
2018-06-13T20:04:39
127,617,577
3
0
null
null
null
null
UTF-8
C++
false
false
23,165
cpp
/* * Copyright (C) 2018 Monument-Software GmbH * * 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 la...
[ "kontakt@andreasbeckermann.de" ]
kontakt@andreasbeckermann.de
bec960dde02049f50c95a96f31cef2929ece5d5e
a4c45cc2ce9fc90e0ba27f647136b3a69ce0bf09
/problems/sZ59z6/SOLUTION.cpp
1654f47680289a721eecc76013192482a42084f4
[]
no_license
AhJo53589/leetcode-cn
fd8cb65a2d86f25d2e32553f6b32dbfc9cb7bae7
7acba71548c41e276003682833e04b8fab8bc8f8
refs/heads/master
2023-01-29T19:35:13.816866
2023-01-15T03:21:37
2023-01-15T03:21:37
182,630,154
268
47
null
null
null
null
UTF-8
C++
false
false
895
cpp
////////////////////////////////////////////////////////////////////////// class Solution { public: int numColor(TreeNode* root) { if (root == nullptr) return ans.size(); ans.insert(root->val); numColor(root->left); numColor(root->right); return ans.size(); } private: ...
[ "ahjo_bb@hotmail.com" ]
ahjo_bb@hotmail.com
1b44956840f9cbb7c5d79c90469673168d53b796
0ba8576e02f77c413dec6dccdfd85c1b76b356ba
/2869 ๋‹ฌํŒฝ์ด๋Š” ์˜ฌ๋ผ๊ฐ€๊ณ  ์‹ถ๋‹ค.cpp
7f2b6ae68412b2c37d32a382f06436fec58ac852
[]
no_license
ltnscp9028/C_plus_plus
2fb99fac7595c8cad34aecced4695849f4bfa50d
92d6d89e3250735c9ee7fc49ee0f1726bb9b2e2f
refs/heads/master
2022-04-30T08:22:49.036614
2022-04-19T20:28:21
2022-04-19T20:28:21
205,290,886
0
0
null
null
null
null
UTF-8
C++
false
false
57
cpp
a,b;main(c){ printf("%d",a,scanf("%d%d%d",&a,&b,&c)); }
[ "ltnscp9028@gmail.com" ]
ltnscp9028@gmail.com
4e43aca73bf762cb5d7973ff1d2b0123a4b2227a
1fcb56082fc0e0faa3af1ddb4e7b1c22bc42e729
/prototype/src/scriptCompile.cpp
352aa0e660910a681ab3099eec7eaaf5cd79e531
[ "MIT" ]
permissive
nkornek/SimHamlet
af167fa992a1836d0be5193ebc5817a6ecb10825
3add0f8f4dbb63f847c1f7d979f5d09318c69abe
refs/heads/master
2019-01-02T07:24:05.601309
2014-03-25T15:28:03
2014-03-25T15:28:03
18,104,143
0
1
null
null
null
null
UTF-8
C++
false
false
138,177
cpp
#include "common.h" //------------------------ // ALWAYS AVAILABLE //------------------------ char* newBuffer = 0; static char* incomingPtrSys = 0; // cache AFTER token find ptr when peeking. static char lookaheadSys[MAX_WORD_SIZE]; // cache token found when peeking static unsigned int hasWarnings; // number of wa...
[ "nkornek@gmail.com" ]
nkornek@gmail.com
d083628403ec770922c706cf22f3cb86ff936375
67ae9d3f68c83bce203bd7751c2030903169e84d
/easy_problems/11727/11727.cpp
8589b8347d840160d2f6e359a9afc0f2450bffe5
[]
no_license
BrodayWalker/algorithms
25f2f27f3f1d2b5adb89e6ea2100f8ba2b4110cf
c8c457c3aa454166392fe4225a25a39bef96a870
refs/heads/master
2022-04-22T13:50:34.964363
2020-04-26T14:03:20
2020-04-26T14:03:20
237,519,194
0
0
null
null
null
null
UTF-8
C++
false
false
853
cpp
#include <iostream> using namespace std; int main() { short int cases, temp; short int nums[3]; cin >> cases; for(int i = 0; i < cases; i++) { for(int j = 0; j < 3; j++) cin >> nums[j]; // A bubble sort, which is okay to use for such a small input size n // ...
[ "brodaywalker@gmail.com" ]
brodaywalker@gmail.com
8925913399c23a97da5dc41e8a7f51c09cc27128
0933622e3aaabacb8f5153b070461334bd1e08bb
/code/include/znn/fft_common/codelets/detail/r2cf_7.hpp
7f92fc2cb4aa28d5968ea61d571f318ecbeb3c93
[]
no_license
Gxllii/winograd-fft-conv
df471e848f2061f8c0798d2687ed497f3b73db32
a316383c37c09b2773ce80f7b0a81e14d11d7754
refs/heads/master
2023-03-22T10:56:32.687881
2018-09-19T19:56:57
2018-09-19T19:56:57
345,894,778
0
0
null
null
null
null
UTF-8
C++
false
false
17,264
hpp
// // Copyright (C) 2018 Aleksandar Zlateski <zlateski@mit.edu> // Copyright (C) 2018 Zhen Jia <zhenj@princeton.edu> // --------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as pu...
[ "jiazhen1987@gmail.com" ]
jiazhen1987@gmail.com
e772f86bc8bcdcf57626ab6b423adce59d1ab1b5
af9a27c8f767b842852d06c770bba9aab28360b2
/LcdHandler.h
2e8f5ca65615189ed8499e82577e61e287d21c32
[]
no_license
Filip133/Temperature-HumidityControll
d4e21b7e727430764829d91986822bdf53798d0c
25a1eae1e1ef8fa4576e74af54424eeafad6c8c7
refs/heads/master
2021-01-10T17:19:07.914319
2016-03-04T22:34:09
2016-03-04T22:34:09
53,169,035
2
0
null
null
null
null
UTF-8
C++
false
false
346
h
#pragma once #include "LiquidCrystal.h" #include "Menu.h" class LcdHandler { public: void printMessage(char* message); void printHomeScreen(); void refrashScreen(int menuPosittion,double *setParameters, Menu *menu); LcdHandler(); LcdHandler(double* temperatuere, double* humidity); private: double* te...
[ "ersek.filip@gmail.com" ]
ersek.filip@gmail.com
a522e14c19c061c16a8e713c96121a76bb9c219e
48208264ec452e88c6082b70d10525aebba9ea7b
/HACKERRANK/PRACTICE/C++/INTRODUCTION/VariableSizedArrays.cpp
74c0a452feb26fef04295ce5f5305951b927a185
[]
no_license
nisfu-saaban/CP
0271d7128bf753efab39814e123ac1d30d68993f
2e1fd8807690cde5b21dedd3c40fddadd7612842
refs/heads/master
2020-03-07T21:45:39.458188
2020-02-06T09:57:00
2020-02-06T09:57:00
127,736,293
0
0
null
null
null
null
UTF-8
C++
false
false
553
cpp
#include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> using namespace std; int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */ int n,q; cin>>n>>q; vector<vector<int> > a(n); for(int i=0; i<n; i++){ int k; c...
[ "nisthy07@gmail.com" ]
nisthy07@gmail.com
735a2b7163e23658d09aa702d774ede4a03e9c2d
5f96b5f6def820dbc5c2376ca0c3fc55ca9366ae
/src/CTCI/Chapter-1/Q2.cpp
8219fb48ab01f8b8a8fb31f6ca2509855025167f
[]
no_license
vsiddharth/GoogleTest-Experiment
50753e1626cbeede4244153ba05c91e8f4e88b75
b6100dfe8bdaf23b9a68c0702acfff240dd558fa
refs/heads/master
2020-09-10T18:03:22.920653
2016-09-01T22:09:25
2016-09-01T22:09:25
66,510,214
0
0
null
null
null
null
UTF-8
C++
false
false
164
cpp
/* * Q2: */ #include "Q2.h" void string_reverse(string & str) { for (int i = 0, j = str.length()-1; i < j; i++, j--) { swap(str[i], str[j]); } }
[ "vsiddharth@cs.wisc.edu" ]
vsiddharth@cs.wisc.edu
9e136c7cb927f0403b9d680b9dae28955ced3593
23a7018262713ddab241e87150bcc3ddac145063
/vector/simd/test/test.cpp
f92f7d6869bdb4b887d0a790649caa1342b01486
[]
no_license
manasij7479/mat
2b11642fff00545662ed624d7c72584e103491cb
df8092bd41c5bc8ad43473f8a913882d82aca1a6
refs/heads/master
2021-01-15T18:46:22.878526
2014-04-07T00:24:51
2014-04-07T00:24:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
889
cpp
/* Test file for intrinsics Compile with g++ -std=c++11 -msse2 test.cpp */ #include "../sse2.hpp" #include "../gcc_builtin_intrinsic.hpp" #include "../../vector.hpp" #include <iostream> #include <exception> int main() { mat::Vector<float, 4> test1, test2, result ; float tmp[4] ; test1[1] = 78.678f, test1[2] =...
[ "ajax123crypto0@gmail.com" ]
ajax123crypto0@gmail.com
a64a6b6f2430cdc60142773412417ece89dac54f
5dc71fbd0b6aa6f1a228d37cf8edbf195b3da814
/src/common/TcpServer.cpp
3d81687d380816b1d6b94408e65bb4ac1e9a5dd2
[]
no_license
zhust2003/monika-server
34b6974946b21a97bdff3d14d92673084e8d6b57
8514bac76ea12a91c90280d6cd1a528bf435092c
refs/heads/master
2021-03-13T00:12:01.750227
2013-01-29T03:29:58
2013-01-29T03:29:58
3,061,625
1
1
null
null
null
null
UTF-8
C++
false
false
2,118
cpp
#include "TcpServer.h" #include "Logger.h" #include <boost/bind.hpp> TcpServer::TcpServer(uint16 port, std::size_t poolSize) : servicePool(poolSize), signals(servicePool.getAcceptService()), acceptor(service...
[ "zhust2003@163.com" ]
zhust2003@163.com
25d8e9fd45b7d3b8d1a0f5cf51242707eee2a8a0
60bb67415a192d0c421719de7822c1819d5ba7ac
/blazemark/blazemark/blaze/TSMatDVecMult.h
5e9d6f3aeee49e08bf89e8dc3b63bf8fdddb0679
[ "BSD-3-Clause" ]
permissive
rtohid/blaze
48decd51395d912730add9bc0d19e617ecae8624
7852d9e22aeb89b907cb878c28d6ca75e5528431
refs/heads/master
2020-04-16T16:48:03.915504
2018-12-19T20:29:42
2018-12-19T20:29:42
165,750,036
0
0
null
null
null
null
UTF-8
C++
false
false
3,056
h
//================================================================================================= /*! // \file blazemark/blaze/TSMatDVecMult.h // \brief Header file for the Blaze transpose sparse matrix/dense vector multiplication kernel // // Copyright (C) 2012-2018 Klaus Iglberger - All Rights Reserved // // Th...
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
60876e65d7c90b7faf59a7959f900d53fa7b9790
33e67303e33744f3f9c32a44fbe37aad878a0bca
/aws-cpp-sdk-ec2/source/model/TransitGatewayRouteTablePropagation.cpp
aaef2a27d3af8883ab378fb94e0763389edb26b5
[ "Apache-2.0", "MIT", "JSON" ]
permissive
crazecdwn/aws-sdk-cpp
2694bebef950e85af0104d10f8f326d54c057844
e74b9181a56e82ee04cf36a4cb31686047f4be42
refs/heads/master
2022-07-09T05:06:43.395448
2020-06-12T01:38:17
2020-06-12T01:38:17
192,119,343
0
0
Apache-2.0
2022-05-20T22:07:13
2019-06-15T20:03:54
C++
UTF-8
C++
false
false
4,846
cpp
๏ปฟ/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. 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. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fil...
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
ab3189ed14712b51c6a365d24fab65cbc909ea0b
5c2306937ae55f50b9ecafe485f0779c3fcc1ff3
/Full_Integration/transmit.cpp
fcd87a9f9ac769f4713ef115affce4f1f46c2314
[]
no_license
nathancy/Team-Asteroid
affeb8ae5ac4dcdb6d01f08631b2dcb4cd6c5010
178660eebfa10bc98c18b7868925a2819fd6c3f3
refs/heads/master
2021-01-17T15:29:54.425973
2017-06-30T20:37:28
2017-06-30T20:37:28
50,828,240
0
0
null
null
null
null
UTF-8
C++
false
false
2,875
cpp
/****************************************** * * File: transmit.cpp * REIS Weatherbox Firmware * * File that contains the function definitions * for the XBee module. * *******************************************/ /* Program Libraries */ #include "transmit.h" /* External Librarires */ #include ...
[ "nathancy@hawaii.edu" ]
nathancy@hawaii.edu
42a1f7fc9a242827348d19ddfb9c5214c87a23ea
db4339eb58e24e0164b91e640a853734045bb5c6
/Model_stream_filter/filtering_network_prj/solution1/syn/systemc/relu.h
995f1947e37d9db8cb57d451558af3275e27ef09
[]
no_license
40MHz/SmallModelFirmware
15af5e2c6475149681e108c93a545a37b245dc42
d1095da34d21299344cd7ee1bcdbb2e27fb8ca6a
refs/heads/main
2023-02-02T09:59:02.636948
2020-12-18T16:21:21
2020-12-18T16:21:21
315,602,108
0
0
null
null
null
null
UTF-8
C++
false
false
70,658
h
// ============================================================== // RTL generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and OpenCL // Version: 2020.1 // Copyright (C) 1986-2020 Xilinx, Inc. All Rights Reserved. // // =========================================================== #ifndef _relu_HH_ #define...
[ "matteo.migliorini95@gmail.com" ]
matteo.migliorini95@gmail.com
d936973ec1764edb5d9867a5dd5662244815de71
2688ecae0b2d7de501344ed3e09e970807706f33
/HotelManagement/debug/moc_statistics.cpp
6bb1f5f2dc5a1bf3b728179565e2a29399b2fc3b
[]
no_license
TrevenHu/Hotel-Management-Software
f86fe7ab654fd155df581ea989693b1b635b3c96
b8eb8eee380120ab93649aa61d030303785442d1
refs/heads/master
2021-01-12T04:43:03.801377
2017-01-01T11:13:11
2017-01-01T11:13:11
77,775,607
3
1
null
null
null
null
UTF-8
C++
false
false
3,469
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'statistics.h' ** ** Created: Sat Jun 6 19:04:23 2015 ** by: The Qt Meta Object Compiler version 63 (Qt 4.8.4) ** ** WARNING! All changes made in this file will be lost! *************************...
[ "hzy1994@bupt.edu.cn" ]
hzy1994@bupt.edu.cn
fc1e3aa55910611ed4d4f1f6d9090a7ab945258e
42a3dc0a24904d118f6e4566b577a2c47927bc44
/FrameLib_Max_Objects/Buffer/ibuffer/ibuffer_access.hpp
0ce3bc9e773b0981364ff1903da070a6d6b7c518
[ "BSD-3-Clause" ]
permissive
AlexHarker/FrameLib
eaa37f9fa4285378f3b9900f4fb5f2d3529c760f
dbabad3a9316d3167052acb0aedf2c3d43bffc77
refs/heads/main
2023-07-21T09:59:42.720268
2023-06-30T16:57:23
2023-06-30T16:57:23
97,139,576
68
13
BSD-3-Clause
2023-09-13T07:35:59
2017-07-13T15:41:08
Max
UTF-8
C++
false
false
7,969
hpp
/* * ibuffer_access.hpp * * Provides an interface for accessing and reading samples from an ibuffer (or MSP buffer). * You should also compile ibufffer_access.cpp in the project * * Various kinds of interpolation are supported using SIMD calculation and 32 bit / 64 bit output. * * All output pointers used...
[ "ajharker@gmail.com" ]
ajharker@gmail.com
31a4ec9336ad068e0e0b9524d6e1bf56e536254b
c345b5075ed5132e0c4d7ae178f209f280c72545
/tests/SSLTestServer.cpp
2708830275575e8a27471df5116198bc33cdc541
[]
no_license
Phitherek/RemoteControlFramework
438e35667faec3ac62c32c2c73bb619d508761f2
478ad257fad51df44e450bfe6c79176c134d4211
refs/heads/master
2016-08-05T07:05:45.142070
2015-01-14T19:02:29
2015-01-14T19:02:29
12,240,009
0
0
null
null
null
null
UTF-8
C++
false
false
2,982
cpp
#include <iostream> #include <cstdlib> #include <string> #include <vector> #include <boost/bind.hpp> #include <boost/asio.hpp> #include <boost/asio/ssl.hpp> typedef boost::asio::ssl::stream<boost::asio::ip::tcp::socket> ssl_socket; namespace RCF { namespace Tests { class SSLTestServer { private: ...
[ "phitherek@gmail.com" ]
phitherek@gmail.com
4e5b3417cc4d5b43f5bbde62654b3e9ea6033cc3
de8174218e5218c463733e26528758face8ee9d0
/vnoj/number.cpp
20d65fe1ac8306a12cfa5dde98b9709a79b7051a
[ "MIT" ]
permissive
tiozo/Training
297552c72ef366abaf0c52b0b0d3d53c1b2bd4b1
02cc8c4fcf68e07c16520fd05fcbfa524c171b6b
refs/heads/main
2023-07-18T09:53:21.049680
2021-09-05T23:58:38
2021-09-05T23:58:38
400,692,883
1
0
null
null
null
null
UTF-8
C++
false
false
3,204
cpp
#include<bits/stdc++.h> using namespace std; struct _uv { int u,v; }; class graph{ private: typedef vector<_uv> vii; vector<int> check; vector<int> P; vector<int> ke; queue<int> q; stack<int> s; public: graph(int size,int T) { check.resize(size+1,0); P.resize(size+1,0)...
[ "azinz850@gmail.com" ]
azinz850@gmail.com
7bb8de1162d34aa2a40328c349bff9569ddb0ee4
ae809f0e7dd9721bff3c7ded3c6545086e681b6d
/apps/traactConsole/traactConsole.cpp
3c3278755f5f35eb6ef78b9182801fea590b63a3
[ "BSD-3-Clause" ]
permissive
traact/traact_facade
fafd115446ef9f7c1b2dcf0aff8ae9f2d3860dea
f4c761414b4ad09e1cb4af58689dd35349271bd4
refs/heads/master
2022-11-13T16:13:53.968302
2020-07-13T07:58:17
2020-07-13T07:58:17
272,655,737
0
0
null
null
null
null
UTF-8
C++
false
false
5,410
cpp
/* BSD 3-Clause License * * Copyright (c) 2020, FriederPankratz <frieder.pankratz@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code mus...
[ "frieder.pankratz@gmail.com" ]
frieder.pankratz@gmail.com
1b716ef9a4158f9b54a336ffb6453e59c856ede8
e512c956dd1e4eeacbf5851eacd42a6a0842962a
/pathfinder.cpp
9a1c9814852989a3304a6d86e724fba410a0ee93
[]
no_license
alexshakouri/Pathfinder
2b28197875d650e69a48b089fab3dc0a95e25dfe
0e51c6f26b6481b9e4d9ca1cf95871c25667caf5
refs/heads/master
2021-05-22T18:40:53.049207
2020-04-28T02:17:39
2020-04-28T02:17:39
253,043,650
1
0
null
null
null
null
UTF-8
C++
false
false
1,341
cpp
#include "Astar_algorithm.h" #include "grid.h" #include <chrono> #include <exception> int main(){ grid g1; //TODO:Implement test cases Point start_point = {0,3}; Point end_point = {19,19}; //blockage points Point p1 = {18,19}; Point p2 = {18,18}; Point p3 = {18,17}; Point p4 = {18,16}; Point p5 = {0,4}; Po...
[ "acshakouri@ucdavis.edu" ]
acshakouri@ucdavis.edu
95a8964062341db0f70d3e64cb49545bfe6d253e
d4d71f04af840d212c52e76827d732d2826e295a
/src/ltable.hxx
ed476337b5863cf42ebaabb0a4d9eeaff4a0b160
[]
no_license
cmbruns/sequoia
53a18861bbe7100ae1d5c645824ead6247693f54
dc3b79e198ac701ef0eecb0fed7249fa06b90903
refs/heads/master
2021-01-18T20:30:31.885488
2014-06-18T00:37:26
2014-06-18T00:37:26
20,944,116
1
0
null
null
null
null
UTF-8
C++
false
false
1,313
hxx
#ifndef _LTABLE_HXX_ #define _LTABLE_HXX_ // $Id: ltable.hxx,v 1.2 2001/11/28 23:08:17 bruns Exp $ // $Header: /usr/data/cvs/sequoia1/ltable.hxx,v 1.2 2001/11/28 23:08:17 bruns Exp $ // $Log: ltable.hxx,v $ // Revision 1.2 2001/11/28 23:08:17 bruns // Added cvs header tags // Removed ^M characters // #include <math...
[ "cmbruns@3da64b0a-0202-0410-8c91-c753549fdeb7" ]
cmbruns@3da64b0a-0202-0410-8c91-c753549fdeb7
5ab78295efe8b7d6fbd0186ce353aec1c0466162
32fd2eb5d1a9d30731ad16aa8c3c5ac444329752
/stdafx.cpp
adcb13e58df80561a1ed2fab20d8f2af5bc3a0ac
[]
no_license
lyh1628/Hello-world
0cb633b86c2d3543efef92c8e3b1d1a5d97c4f5e
feb289d524fbcdfd03a42760cd89a30d2fbad0ad
refs/heads/master
2020-04-06T08:53:30.545790
2016-09-12T16:07:00
2016-09-12T16:07:00
64,290,717
0
0
null
2016-07-27T08:44:36
2016-07-27T08:23:27
null
UHC
C++
false
false
338
cpp
// stdafx.cpp : ํ‘œ์ค€ ํฌํ•จ ํŒŒ์ผ๋งŒ ๋“ค์–ด ์žˆ๋Š” ์†Œ์Šค ํŒŒ์ผ์ž…๋‹ˆ๋‹ค. // LabProject08.pch๋Š” ๋ฏธ๋ฆฌ ์ปดํŒŒ์ผ๋œ ํ—ค๋”๊ฐ€ ๋ฉ๋‹ˆ๋‹ค. // stdafx.obj์—๋Š” ๋ฏธ๋ฆฌ ์ปดํŒŒ์ผ๋œ ํ˜•์‹ ์ •๋ณด๊ฐ€ ํฌํ•จ๋ฉ๋‹ˆ๋‹ค. #include "stdafx.h" // TODO: ํ•„์š”ํ•œ ์ถ”๊ฐ€ ํ—ค๋”๋Š” // ์ด ํŒŒ์ผ์ด ์•„๋‹Œ STDAFX.H์—์„œ ์ฐธ์กฐํ•ฉ๋‹ˆ๋‹ค.
[ "noreply@github.com" ]
lyh1628.noreply@github.com
7e52d45fb19427b831c6c7dc942caf62e33b991a
cb1253a944d694f3439d3bd5cb977df7eb0d183d
/AtCoder/BeginnerContest/065/Built.cpp
88aac2b6e0ac8d91ae47bb54023ef701e48c1782
[]
no_license
RIckyBan/competitive-programming
91701550a76b54d2ab76d6e23e4c0cc64b975709
f1592de21d06ff54b81cec5c8477300fae443700
refs/heads/master
2022-05-03T06:38:37.141758
2022-04-12T14:52:25
2022-04-12T14:52:25
243,915,283
0
0
null
null
null
null
UTF-8
C++
false
false
222
cpp
#include <iostream> using namespace std; int main(){ cin.tie(0); ios::sync_with_stdio(false);//้ซ˜้€ŸๅŒ–ใ€endlใฏไฝฟใ‚ใชใ„ int N; cin >> N; if (can) cout << "Yes" << "\n"; else cout << "No" << "\n"; }
[ "ricky1231@g.ecc.u-tokyo.ac.jp" ]
ricky1231@g.ecc.u-tokyo.ac.jp