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
866e13dc446aa3d2aae3a4099de3e17f395ab8a4
105ef2d5f8bba13c15deb8c4a2a9af307b4e547a
/Baekjoon/Step10/11729/main.cpp
9fc5754e1c36167646a3eb20f2969a305a8eec8c
[]
no_license
caniro/algo-note
1ec4c0e08adcb542d3356daf7b6e943af722394f
d237a5b58a67ca453dc7a1a335f99428af2c5df5
refs/heads/master
2023-08-29T22:39:35.189711
2021-11-04T11:18:07
2021-11-04T11:18:07
260,473,565
0
0
null
null
null
null
UTF-8
C++
false
false
775
cpp
#include <iostream> void hanoi_mute(int N, int& count, int start, int end) { using namespace std; if (N == 1) { count++; } else { hanoi_mute(N - 1, count, start, 6 - (start + end)); count++; hanoi_mute(N - 1, count, 6 - (start + end), end); } } void hanoi_print(int N, int &count, int start, int end) {...
[ "caniro@naver.com" ]
caniro@naver.com
e636e9d6109509ab5b7f80e2111ab323952b7cc5
8538d3ddd17eb032467f380cc4b41318146cee64
/CPP_Pisc_Day04/Peon.hpp
6913d393a048e499be3412bd282c2ba365d8cca7
[]
no_license
zill4/CPP_Projects
6f25983c33ccb847dd513599657bccdc375fc51e
f331b31ed02c1f41e01dcf11c5ae72f475663e6a
refs/heads/master
2020-05-18T03:23:46.970531
2019-05-05T03:04:44
2019-05-05T03:04:44
184,144,573
0
0
null
null
null
null
UTF-8
C++
false
false
325
hpp
#include "Victim.hpp" class Peon : private Victim { private: std::string name; public: Peon(std::string n) { name = n; std::cout << "Zog Zog" << std::endl; } ~Peon() { std::cout << "Bleuark..." << std::endl; ...
[ "noreply@github.com" ]
zill4.noreply@github.com
66e2bed8c659e3d380a8f7ed5aff6a883f98f389
6bbcea857ff801abafc83a3cd8cf164f4cea15ae
/Libraries/Geometry/GeomDS/Polygon.ixx
e43075d4cadd5b605772055425545a253c3e85d8
[ "MIT" ]
permissive
pat-sweeney/Caustic
3259d0bfd816c338902f1cfde9f9abc196fb8c11
683761c5e44964ee0cc726cebcf9feb9a95eee1c
refs/heads/master
2023-07-06T06:51:04.962968
2023-06-26T05:36:32
2023-06-26T05:36:32
144,092,641
2
0
MIT
2022-12-08T03:57:28
2018-08-09T02:44:59
C++
UTF-8
C++
false
false
1,819
ixx
//********************************************************************** // Copyright Patrick Sweeney 2015-2018 // Licensed under the MIT license. // See file LICENSE for details. //********************************************************************** module; #include <vector> export module Geometry.GeomDS.Po...
[ "patricsw@hotmail.com" ]
patricsw@hotmail.com
76913962352cfe3baea0460af48ec11f737b2341
93cc33805d4e95f2c7e836f23654b2ea0d35604d
/24_ユーザー関数/cpp/anagram.h
8c0722d2417b1a19c623b90c6ccc11fa504d09c5
[ "MIT" ]
permissive
ifukazoo/LanguageExercises
b4c3ac3585d59b965e515cacda7c9abe0e5d6d12
4c8afa697251d5618f4eabadf9ceffe48876e021
refs/heads/master
2022-04-13T08:03:18.733287
2020-04-04T03:11:06
2020-04-04T03:11:42
43,236,377
0
0
MIT
2020-04-04T00:30:56
2015-09-27T06:00:16
C++
UTF-8
C++
false
false
133
h
#ifndef _ANAGRAM_H_ #define _ANAGRAM_H_ #include <string> bool is_anagram(const std::string& lhs, const std::string& rhs); #endif
[ "yamanobori_old@yahoo.co.jp" ]
yamanobori_old@yahoo.co.jp
f850cbde61814daf8f3903419bc1091d7a76f157
afff2ad1be48c909d439b16b11164d2116601605
/8.string-to-integer-atoi.cpp
fd634a7f4e3e7723ab25fc33517a304f2001d82d
[]
no_license
GMHDBJD/leetcode_solution
9ff26e7c79c070e43c4effcf5982f82a323f4748
e6192d2a10c3e84135ca8f16ab477baf10c83075
refs/heads/master
2022-03-01T09:10:46.755040
2019-09-01T06:09:46
2019-09-01T06:09:46
190,856,861
0
0
null
null
null
null
UTF-8
C++
false
false
1,012
cpp
/* * @lc app=leetcode id=8 lang=cpp * * [8] String to Integer (atoi) */ /* what the fuck */ #include <bits/stdc++.h> using namespace std; class Solution { public: int myAtoi(string str) { int pos = 0; while (pos < str.size() && str[pos] == ' ') { ++pos; co...
[ "gmhdbjd@gmail.com" ]
gmhdbjd@gmail.com
ed896e7162ce92684b89b51f1b15f9d529f72831
9f6b76c4493f82efe208894fabf1d4ccf24a4c63
/Engine/AssetStore/inc/TileAsset.h
43c32228b9830bd2179dbe0c91bdf21d4dab850f
[]
no_license
barisdoga2/Owaria
d532942061a1335e20946d223d0ff7e9920862fe
3016921896449037204feca21cdfce2c971cda81
refs/heads/master
2020-05-18T03:38:49.403619
2019-07-04T18:47:07
2019-07-04T18:47:07
184,149,301
1
0
null
null
null
null
UTF-8
C++
false
false
298
h
#pragma once #include <vector> #include <SFML/Graphics.hpp> #include <tinyxml2.h> using namespace tinyxml2; class TileAsset { public: TileAsset::TileAsset(int id, bool isXTile); void AppendVertex(XMLElement* vertex); int id; bool isXTile; std::vector<sf::Vector2i> collision_vertices; };
[ "barisdogayavas@gmail.com" ]
barisdogayavas@gmail.com
fecf3954d43bfc2fee642fa18982c5397ff55194
5fadc3d39e82473a6dfd59ac52f40dae7ab05e41
/DrawingPackage/DrawingPackage/Line.cpp
383b2fc5329e50e3881b68efd2e64ed74be1e692
[]
no_license
AndrewEmad/C-Cpp-Aplications
befb425e9c714b3078b2b5a0a24c83957f8da5b0
b098bf1e6b75b7961a2e0d12ab1e6f1b806d82fa
refs/heads/master
2021-01-15T16:35:55.640233
2017-08-08T16:59:46
2017-08-08T16:59:46
99,712,536
0
0
null
null
null
null
UTF-8
C++
false
false
3,205
cpp
#include <Windows.h> #include <math.h> #include <algorithm> #include "Line.h" void Line::DrawParametric(HDC hdc, int xs, int ys, int xe, int ye, COLORREF color){ int n = max(abs(xe - xs), abs(ye - ys)); double dt = 1.0 / n; if (n == abs(xe - xs)){ if (xe < xs) { std::swap(xe, xs); std::swap(ye...
[ "andrewen2010@yahoo.com" ]
andrewen2010@yahoo.com
6e5ce9dfd4ddce7ec868594abada4989af4944fe
49af86c1a2f670606c1e2943986c5b89ac4463a4
/GBN_Rdt/TCPRdtReceiver.h
8951f52e1252f95acb696b3be1b8e7e1c4500bb4
[]
no_license
gytBibble/Rdt
087cdfeca5851ff58c149343fcf8b1637b4eabeb
e169ffc91cbf96677110b135c5006cb849914ac2
refs/heads/master
2020-04-10T17:43:38.226604
2018-12-11T07:16:13
2018-12-11T07:16:13
161,182,079
0
0
null
null
null
null
GB18030
C++
false
false
425
h
#ifndef TCP_RDT_RECEIVER_H #define TCP_RDT_RECEIVER_H #include "RdtReceiver.h" #define K 8 class TCPRdtReceiver :public RdtReceiver { private: int expectSequenceNumberRcvd = 0; // 期待收到的下一个报文序号 Packet lastAckPkt; //上次发送的确认报文 public: TCPRdtReceiver(); virtual ~TCPRdtReceiver(); public: void receive(Packet &pa...
[ "bibble_huster@163.com" ]
bibble_huster@163.com
1f7d762668ba1ad7cefc0e922e783220e16d46d6
e0a21486e1f44de8d7cb280517ed4e8d7710408c
/frcnn/backbones.cpp
b8b747db2b7bb5185b203037799d7bbec59b2736
[]
no_license
thisisi3/libtorch-faster-rcnn
eee043274e80fb06e86003fafcd1372e3f6ad035
1b6c917b91d6c4db377094a98d859e3355f41db4
refs/heads/main
2023-04-03T15:35:36.867653
2021-04-20T13:37:39
2021-04-20T13:37:39
334,331,190
8
0
null
null
null
null
UTF-8
C++
false
false
5,810
cpp
#include <backbones.hpp> namespace frcnn { void freeze_module(torch::nn::Module *ptr){ ptr->eval(); for(auto& para : ptr->parameters()){ para.requires_grad_(false); } } torch::nn::Conv2d conv3x3(int64_t in, int64_t out, int64_t stride, int64_t groups) { torch::nn::Co...
[ "thisisi3@hotmail.com" ]
thisisi3@hotmail.com
a9fc830527d7376c563eb0f1488fe0ad7b8ca69e
7babc9d56dfd4dfb0e5b06315423dafb7e0df4cf
/smb_navigation_rviz/include/smb_planner_rviz/planning_panel.h
1b2d22ab07ecefcd966460b5ab5216db1bf885e8
[ "BSD-3-Clause" ]
permissive
Idate96/smb_path_planner
a9e0f7696dbc593261448076596f0b80bff1ddd2
33711d637a5faf63b4f211ada1ef8163b1bd9ee5
refs/heads/master
2023-06-13T23:37:07.220582
2021-07-08T11:18:22
2021-07-08T11:18:22
384,097,008
0
0
BSD-3-Clause
2021-07-08T11:10:06
2021-07-08T11:10:05
null
UTF-8
C++
false
false
3,037
h
/** * @author Luca Bartolomei, V4RL * @brief Rviz panel to select global goal, trigger the global planner and * start the local planner * @date 14.06.2019 */ #pragma once #ifndef Q_MOC_RUN #include "smb_planner_rviz/edit_button.h" #include "smb_planner_rviz/planning_interactive_markers.h" #include "sm...
[ "bartolomei-luca@virgilio.it" ]
bartolomei-luca@virgilio.it
1e747c5289994ec597c270682e1f5cbc14a6389b
fec81bfe0453c5646e00c5d69874a71c579a103d
/blazetest/src/mathtest/operations/smatdmatadd/SCbLDa.cpp
f77e484059081a71de3af9b9bf7c6692adb8eda0
[ "BSD-3-Clause" ]
permissive
parsa/blaze
801b0f619a53f8c07454b80d0a665ac0a3cf561d
6ce2d5d8951e9b367aad87cc55ac835b054b5964
refs/heads/master
2022-09-19T15:46:44.108364
2022-07-30T04:47:03
2022-07-30T04:47:03
105,918,096
52
7
null
null
null
null
UTF-8
C++
false
false
4,237
cpp
//================================================================================================= /*! // \file src/mathtest/operations/smatdmatadd/SCbLDa.cpp // \brief Source file for the SCbLDa sparse matrix/dense matrix addition math test // // Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved // // ...
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
2115273f65d17a3aa96138f5ebe0a02edd203b97
47b0496a419324950375607a4277ea68827f793a
/WIndows OS/FFP/Native/20/OrthoProjectionTransformation/TriangleWithSize50/TriangleWithSize50.cpp
675ef2f2664fd4a7f436bf3b143122a74ca6633e
[]
no_license
saket91/RTR
756f47e076bb5260c24a1801d8d7de9b89c2a7d0
39b49ec7b3f2d3ac3c841502fb905219e9b2df74
refs/heads/master
2021-01-01T05:57:03.662296
2017-07-29T20:22:52
2017-07-29T20:22:52
97,315,312
0
0
null
null
null
null
UTF-8
C++
false
false
6,548
cpp
#include <Windows.h> #include <gl/GL.h> #define WIN_WIDTH 800 #define WIN_HEIGHT 600 #pragma comment(lib,"opengl32.lib") // Function for drawing filled triangle // This function only draws the triangle doesn't change color void DrawTriangle(GLfloat point1X, GLfloat point1Y, GLfloat point1Z, GLfloat point2X, GLflo...
[ "saket1991@outlook.com" ]
saket1991@outlook.com
0f68772812e071aca5ad24fca410bddc964f93d6
54a4c8cc545d1ea3e42a5d3ca3a2e6889724146d
/jsonparsetest/src/cpp11.cpp
d11965c61620c5f60dc415fa95e94700aa71d3e6
[ "MIT" ]
permissive
mgirlich/jsonparse
39f81e7a4ee49a4f622eaea98339cae2f15a9af8
17ada94a1815b6faed34afd2dda4095a8d3c2ec4
refs/heads/master
2023-07-31T07:36:49.719912
2021-10-05T09:30:17
2021-10-05T09:30:17
409,129,040
0
0
NOASSERTION
2021-10-05T08:17:10
2021-09-22T08:48:02
C++
UTF-8
C++
false
false
717
cpp
// Generated by cpp11: do not edit by hand // clang-format off #include "cpp11/declarations.hpp" #include <R_ext/Visibility.h> // code.cpp void fun(); extern "C" SEXP _jsonparsetest_fun() { BEGIN_CPP11 fun(); return R_NilValue; END_CPP11 } extern "C" { /* .Call calls */ extern SEXP run_testthat_tests(SE...
[ "maximilian.girlich@metoda.com" ]
maximilian.girlich@metoda.com
8a6da04ae1e0cf4b8902e5bd4441c39b3d5ac83f
d3e3cc3cb7b655af116555988f25f10e58658e9c
/BunnyEngine2/src/Components/Rigidbody.cpp
91302fdead0a32a2b099fc18995a907ac71acef4
[]
no_license
SeraphinaMJ/MyLittleBunny
0c6b7afb23fc63237282f07b72fef2a5d0512162
c9cdc763a3f2056b3a2be5e5d0986c6ea66faecf
refs/heads/master
2023-04-19T14:52:51.718358
2021-05-06T10:54:31
2021-05-06T10:54:31
364,579,774
0
0
null
null
null
null
UTF-8
C++
false
false
6,336
cpp
/* --------------------------------------------------------------------------- Copyright (C) 2017 DigiPen Institute of Technology. Reproduction or disclosure of this file or its contents without the prior written consent of DigiPen Institute of Technology is prohibited. File Name: Rigidbody.cpp Language: C++...
[ "minjiserak@gmail.com" ]
minjiserak@gmail.com
6382b99e60728a834155048d044bb95b77a935a5
97c2111fe99369e46243be50b3245081afba045e
/ExtCode/ToBuild/PublicAPI/boost/mpl/vector/aux_/clear.hpp
1f3b183ef661f90394b13ace0891a2f83a8504b9
[]
no_license
mdutton3/InternedSymbols
283ed53f370bf3ba306a90f32609458aa18be9c8
80a9af7b195b1c447521a1959c3e3bfff1706aaf
refs/heads/master
2021-01-10T22:01:21.663212
2012-05-07T04:22:02
2012-05-07T04:22:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,313
hpp
#ifndef BOOST_MPL_VECTOR_AUX_CLEAR_HPP_INCLUDED #define BOOST_MPL_VECTOR_AUX_CLEAR_HPP_INCLUDED // Copyright Aleksey Gurtovoy 2000-2004 // // 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) // // See http://www....
[ "MatthewRDutton@gmail.com" ]
MatthewRDutton@gmail.com
c50e0290b61cdc82c820772631ba075f8479490d
d2249116413e870d8bf6cd133ae135bc52021208
/DragListCtrl/MyListCtrl.h
17cbff750dec56526d8896464a9e9df5ca1ec2f2
[]
no_license
Unknow-man/mfc-4
ecbdd79cc1836767ab4b4ca72734bc4fe9f5a0b5
b58abf9eb4c6d90ef01b9f1203b174471293dfba
refs/heads/master
2023-02-17T18:22:09.276673
2021-01-20T07:46:14
2021-01-20T07:46:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,229
h
#if !defined(AFX_MYLISTCTRL_H__CAC87A0E_7CED_4B62_8369_326292CD931A__INCLUDED_) #define AFX_MYLISTCTRL_H__CAC87A0E_7CED_4B62_8369_326292CD931A__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // MyListCtrl.h : header file // class CMyListCtrl : public CListCtrl { // Construction p...
[ "chenchao0632@163.com" ]
chenchao0632@163.com
4f0118bcf14f8353b076414c120b1528c521f17e
eec43b04a250260727e7d8bded8e923e57d27330
/Programming Code/contest demo.cpp
499c2e8e4e02f3fbfb5b2fbbb8cf0531d18e26fb
[]
no_license
ShafiqurRohman/Competitive-programming
82e4c8c33c6e9e6236aca8daf4d6b24ce37089c6
84bdbe2abb7a6a927325c4c37ed8d15b1c082f2e
refs/heads/main
2023-06-25T14:23:18.371879
2021-07-25T17:10:04
2021-07-25T17:10:04
318,260,815
0
0
null
null
null
null
UTF-8
C++
false
false
549
cpp
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int ar[n], ar2[n]; for(int i=0; i<n; i++)cin>>ar[i]; for(int i=0; i<n; i++)ar2[i] = ar[i]; reverse(ar2, ar2+n); int ans = ar[0], ans2 = ar2[0]; for(int i=1; i<n; i++){ ans +=abs(ar[i]-ar[i-1]); ar[i-1...
[ "SHAFIQ@DESKTOP-O8CRK89" ]
SHAFIQ@DESKTOP-O8CRK89
a489f4ebbef086394880adfe0fb8518db7ee7132
7c1fc753489b9b7ace87f15c98dc68fec50ccd19
/AdHoc/C. Lucky Numbers/main.cpp
41285a1777616b14e9aa71de0140f00ebede7710
[]
no_license
Sigm0oid/Algorithms-DataStructures
9c1d116e32299013d8b31fccd6299612522f6f70
75783c805b3407baba7d320b8ce6b3eec2c3cba5
refs/heads/master
2022-04-08T16:13:52.714924
2020-03-24T09:05:00
2020-03-24T09:05:00
74,182,545
1
0
null
null
null
null
UTF-8
C++
false
false
199
cpp
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; long long res=0; while(n>0){ res+=(pow(2,n)); n--; } cout<<res<<endl; return 0; }
[ "hamza@Hamza" ]
hamza@Hamza
8bb78029ce3fcfe68e21359d24dddb1cf1a5bf3a
2f4bdbc1d853625d939b2a56d21a199b89634c3d
/Base.cpp
a502b7bc6012539892bfa6aa16077fb9e06e4339
[]
no_license
shehryBabu/shehryBoi
9b700777b227402b6084179e2ce46a811a402142
aeb63ecc2fcf37c1f409171592b469a47985b996
refs/heads/master
2020-03-20T02:55:05.245414
2018-06-12T21:51:57
2018-06-12T21:51:57
137,128,728
0
0
null
2018-06-12T21:51:58
2018-06-12T21:17:19
C++
UTF-8
C++
false
false
93
cpp
#include "Base.h" Base::Base(float x,float y) { this->xco=x; this->yco=y; dx=0; dy=0; }
[ "uchihaace.st@gmail.com" ]
uchihaace.st@gmail.com
9bb24ee7da6b00977378ffdb68525f12f4a4958d
b648a0ff402d23a6432643879b0b81ebe0bc9685
/vendor/bond/cpp/inc/bond/core/detail/string_stream.h
83e4de19069e4d729b620fe6fd8ac5ba0ef5b6fd
[ "MIT", "Apache-2.0" ]
permissive
jviotti/binary-json-size-benchmark
4712faca2724d47d23efef241983ce875dc71cee
165b577884ef366348bf48042fddf54aacfe647a
refs/heads/main
2023-04-18T01:40:26.141995
2022-12-19T13:25:35
2022-12-19T13:25:35
337,583,132
21
1
Apache-2.0
2022-12-17T21:53:56
2021-02-10T01:18:05
C++
UTF-8
C++
false
false
1,769
h
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. #pragma once #include <bond/core/config.h> #include <stdint.h> #include <stdio.h> #include <string> #include <vector> namespace bond { namespace detail { template<...
[ "jv@jviotti.com" ]
jv@jviotti.com
f13f5929e932cd45c2169c8f69a3e2fafc057db9
a5ff25a76f832aab675f653c11a127d65755c58a
/headers/glm/ext/matrix_uint3x3.hpp
fe5cf469bd2465b43141d16ed165338b58bb50e9
[]
no_license
LiuZhichang/ZVK
f5fd47d0cda575af842dafd7d68bed117b653053
e89a5e632eeaba9fc72d8e0f6f2d8f75e29c0da2
refs/heads/master
2023-08-16T03:24:12.135733
2021-10-20T01:40:58
2021-10-20T01:40:58
419,147,859
0
0
null
null
null
null
UTF-8
C++
false
false
886
hpp
/// @ref ext_matrix_uint3x3 /// @file glm/ext/matrix_uint3x3.hpp /// /// @see core (dependence) /// /// @defgroup ext_matrix_uint3x3 GLM_EXT_matrix_uint3x3 /// @ingroup ext /// /// Include <glm/ext/matrix_uint3x3.hpp> to use the features of this extension. /// /// Defines a number of matrices with integer typ...
[ "3318619633@qq.com" ]
3318619633@qq.com
8a01dd2a2131429bdeac5ca34d4556fe411e2114
42e44907236e391dc6f0cc20909446ea032756db
/src/ibeo_8l_sdk/src/ibeosdk/datablocks/snippets/Polygon2dFloat.cpp
df2a5a0b3ea0b58b4e61cd8f2974241ccbb55b64
[ "MIT" ]
permissive
tomcamp0228/ibeo_ros2
dd840f8500d3a0ec72861d22b5d5469d50a957b9
ff56c88d6e82440ae3ce4de08f2745707c354604
refs/heads/master
2022-11-24T18:11:30.630072
2020-07-27T06:15:41
2020-07-27T06:15:41
272,166,535
1
2
null
2020-06-26T07:38:38
2020-06-14T09:00:30
C++
UTF-8
C++
false
false
3,208
cpp
//====================================================================== /*! \file Polygon2dFloat.cpp * * \copydoc Copyright * \author Ruben Jungnickel (rju) * \date Sep 11, 2015 *///------------------------------------------------------------------- //==============================================================...
[ "gpg9@live.com" ]
gpg9@live.com
64a7e59315d2964e61a09569acf66a1c844c814b
d62361e3002a09726d00822767784683462123f3
/main.cpp
f413992dc00c5ce900a486d8aa682bf92e9020cc
[]
no_license
mhfGit/QTree
0007bc65d6821d739ac0233af6532afc317733c2
9962454492530a9abee90af4dde82adeedacfc65
refs/heads/master
2020-08-01T20:33:18.781845
2016-12-19T01:07:02
2016-12-19T01:07:02
73,568,690
0
0
null
2016-11-14T03:10:11
2016-11-12T17:50:14
null
UTF-8
C++
false
false
2,248
cpp
#include <iostream> #include "png.h" #include "quadtree.h" using std::cout; using std::endl; int main() { PNG imgIn, imgOut; imgIn.readFromFile("in.png"); // test constructor, decompress /*Quadtree halfTree; Quadtree half2Tree; halfTree.buildTree(imgIn, 256); half2Tree = halfTree; imgOut = half2Tree.decompr...
[ "mfudali1@gmail.com" ]
mfudali1@gmail.com
a38fe421c9abd14b60146531a25e96e1571b355b
19ccfd6806c5054679dab3f275822302206b222f
/src/game/shared/swarm/asw_weapon_parse.h
ec552818b7c99c83a60b70a8337ee1e584a1c5a7
[ "Apache-2.0" ]
permissive
BenLubar/SwarmDirector2
425441d5ac3fd120c998379ddc96072b2c375109
78685d03eaa0d35e87c638ffa78f46f3aa8379a6
refs/heads/master
2021-01-17T22:14:37.146323
2015-07-09T19:18:03
2015-07-09T19:18:03
20,357,966
4
1
Apache-2.0
2018-08-30T13:37:22
2014-05-31T15:00:51
C++
UTF-8
C++
false
false
2,936
h
#ifndef _INCLUDED_ASW_WEAPON_PARSE_H #define _INCLUDED_ASW_WEAPON_PARSE_H #ifdef _WIN32 #pragma once #endif #include "weapon_parse.h" #include "networkvar.h" enum ASW_Offhand_Order_t { ASW_OFFHAND_USE_IMMEDIATELY, // AI marine can just use this item immediately, without caring about facing/position ASW_OFFHAND_THR...
[ "ben.lubar@gmail.com" ]
ben.lubar@gmail.com
13ac50cd30dc9897f9fce64453f86ca9c8204e8f
e8368b9f5a3e0356c63310469eccaea45bffd3b1
/apps/gltf-viewer/utils/FirstPersonCameraController.cpp
24eed0150fef526c0916d44d100e68ac2eca5dfa
[]
no_license
RashidLadj/gltf-viewer-tutorial
e46165e3ef64612e6599d0b6e85f6d05394a03da
298a3290ad26f78f7b5886b5ae69f00660f203ab
refs/heads/master
2020-12-29T14:32:50.846925
2020-04-28T16:22:46
2020-04-28T16:22:46
238,637,560
0
0
null
2020-02-06T08:07:02
2020-02-06T08:07:00
null
UTF-8
C++
false
false
2,902
cpp
#include "FirstPersonCameraController.hpp" #include "glfw.hpp" #include <iostream> // Good reference here to map camera movements to lookAt calls // http://learnwebgl.brown37.net/07_cameras/camera_movement.html using namespace glm; FirstPersonCameraController::FirstPersonCameraController( GLFWwindow *window, fl...
[ "59792800+RashidLadj@users.noreply.github.com" ]
59792800+RashidLadj@users.noreply.github.com
e23c61e60624b390b3609f3b4f5c264ce0bfdc5e
866693006cccff1ff00a56e96de8ae907fc786b2
/main.cpp
393b3bedbe5e83c262174cf596bdc224c99096ba
[]
no_license
ManojkumarGopala/STARCUBING-ALGORITHM-Machine-Learning
0106425824e3d8e4f4d3ab854e009bcd2f059aa0
247a8fd18c1b438611bdfcc13e0bf64fb06a7f36
refs/heads/master
2020-03-20T20:38:58.339147
2018-06-18T01:19:30
2018-06-18T01:19:30
137,698,864
0
0
null
null
null
null
UTF-8
C++
false
false
2,995
cpp
#include <iostream> #include <boost/lambda/lambda.hpp> #include <boost/log/trivial.hpp> #include <iterator> #include <algorithm> #include <vector> #include <string> #include <map> #include "Functions.h" #include "logger.h" #include "logger.h" #include "Functions.h" #include <sys/resource.h> #include <sys/time.h> struc...
[ "manojgopala7@gmail.com" ]
manojgopala7@gmail.com
0960c5da399ff0ccea2a4a4b6e9a2381e9c1c504
aa7df08bbcd6f1ad33ac84ae12ccbd4252318a6f
/browsable_source/cmm/1.4/cmm/cmm.h
c19a453a3ce52ea7bd0e88bcdfc20840c179b641
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
Unipisa/CMM-Depository
ec0ad2e921330f0943fe8fddab24c475d8a3eed6
9857370d32faf54cfb58264d56e58f9c12d5f6b6
refs/heads/master
2022-03-14T01:49:11.533167
2019-12-11T14:35:19
2019-12-11T14:35:19
205,864,815
0
0
null
null
null
null
UTF-8
C++
false
false
24,928
h
/*---------------------------------------------------------------------------* * * cmm.h: definitions for the CMM * date: 3 January 1995 * authors: Giuseppe Attardi and Tito Flagella * email: cmm@di.unipi.it * address: Dipartimento di Informatica * Corso Italia 40 * I-56125 Pisa, Italy * * Copyright (...
[ "guido.scatena@unipi.it" ]
guido.scatena@unipi.it
ebd6ac3742e631c6f50a44b2c15e2132b7504996
7f3e95e825b894a8d015b5905592757a0040220f
/2004/inc/AcTcUiToolPalette.h
c9016837ebfde9d890f430997fa08382e6b66f11
[ "MIT" ]
permissive
AliClouds/ObjectARXCore
b06e2d4bb59df2b45e56ec76d3abb843c7131009
ce09e150aa7d87675ca15c9416497c0487e3d4d4
refs/heads/master
2021-05-28T05:19:12.593781
2014-05-08T01:23:33
2014-05-08T01:23:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,459
h
////////////////////////////////////////////////////////////////////////////// // // (C) Copyright 1982-2002 by Autodesk, Inc. // // Permission to use, copy, modify, and distribute this software in // object code form for any purpose and without fee is hereby granted, // provided that the abo...
[ "kevinzhwl@gmail.com" ]
kevinzhwl@gmail.com
adc7e0559bc83edca4e25f4d54691174107ef03f
26e271b0bdf6f3251935e36dea4206bdeb7cee45
/HackerRank/Cracking the Code Interview/Tries - Contacts.cpp
3306f744637bf5779bd70e15c598d6c29f1b6762
[]
no_license
zero14777/My-Stuff
bc3c4c78aa4af7636f66585707b4927f20b6795f
073ce5cac0384a0fa2f0960c35f621c038ab8f9a
refs/heads/master
2020-12-11T05:22:05.343899
2018-03-30T20:32:41
2018-03-30T20:32:41
49,307,734
0
2
null
null
null
null
UTF-8
C++
false
false
1,541
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...
[ "pbgreerb@gmail.com" ]
pbgreerb@gmail.com
3048be3d553f054e9a9a155c55b928242c246ce7
40ecce12efc78ca6ca5ed39493a2a6484037cade
/sign/sign_main.cpp
66c33416e0fa1749cbd546052449cf313e63d4c5
[]
no_license
OC-MCS/lab12tasks-jonathan-godfrey
86ae3c4f941bc3e33f8a74dcfb42d20be4cb4adb
02cd487c7156e44c93ff48270e3c0201cefbf2d0
refs/heads/master
2020-05-14T22:59:38.377551
2019-04-14T18:08:19
2019-04-14T18:08:19
181,988,826
0
0
null
null
null
null
UTF-8
C++
false
false
170
cpp
#include <iostream> using namespace std; void sign(int n) { while (n > 0) { cout << "No Parking: " << n << endl; n--; } } int main() { sign(4); return 0; }
[ "andy.harbert@oc.edu" ]
andy.harbert@oc.edu
a343d1a23a36b7be637f6e82baa185eb3e4495bd
0c821e5d179d19cf942adf4e82599216939349f7
/include/et/etapi/etapi_predef.h
a3e4bccb37ccbd9f44a89f514fcb32ca3c592cc5
[ "MIT" ]
permissive
chaozuoye/pywpsrpc
6f04ef2b4f1e12cf71214aeca48d4711c8cce585
bfd81da8d6035af230f12e17f01dac4e2540973d
refs/heads/master
2023-04-10T03:01:05.547059
2021-03-27T09:58:05
2021-03-27T09:58:05
392,968,615
1
0
MIT
2021-08-05T08:41:10
2021-08-05T08:41:09
null
UTF-8
C++
false
false
60,121
h
/* ** Copyright @ 2012-2019, Kingsoft office,All rights reserved. ** ** Redistribution and use in source and binary forms ,without modification and ** selling solely, are permitted provided that the following conditions are ** met: ** ** 1.Redistributions of source code must retain the above copyright notice, ...
[ "weitianleung@gmail.com" ]
weitianleung@gmail.com
64a01962632d8d9bb1b6cec05e84de2e14306c96
53dcbb6397aa8d55f34e6c8f57498ed7b63b2eed
/Fill/Fill/Fill.cpp
d1be5a2809e4b9d54204de56575f1a8313a9d3ce
[]
no_license
doesnoti/Fill
60e9291fb03f682d297b675960a8ce59833fdf76
ffa25513e406821824c4d1264cda47f94fe8bb14
refs/heads/master
2021-03-27T04:20:55.532202
2020-03-18T19:25:13
2020-03-18T19:25:13
247,785,694
0
0
null
null
null
null
UTF-8
C++
false
false
6,243
cpp
#include <iostream> #include <vector> #include <queue> using namespace std; void PrintField( vector < vector <int> >& field ) { for ( const auto thisline : field) { for ( const auto thiscolumn : thisline) cout << thiscolumn << " "; cout << endl; } cout << end...
[ "noreply@github.com" ]
doesnoti.noreply@github.com
72b402a137939f15b30cc9ca655adfb2d94c8a0e
f294e337cca9eeeedb95c9b13f47af1e6eda17a5
/MultitonPattern/src/MyMultiton.cpp
41e8d03ed95a8409768858ab5e6d2413f8507f17
[]
no_license
ashkhi/DesignPatterns
32f277e7ad46d0f46af9860b8096dd758588638a
1c220073f5c46acc8f6515d4318119103f2fe2cf
refs/heads/master
2022-09-06T14:38:39.413558
2020-06-03T15:41:03
2020-06-03T15:41:03
254,809,240
0
0
null
null
null
null
UTF-8
C++
false
false
568
cpp
#include "MyMultiton.h" map <int, MyMultiton *> * MyMultiton::multitonMap = new map <int, MyMultiton *> (); MyMultiton::MyMultiton() { num = 0; cout << "MyMultiton object created and initialized" << endl; } MyMultiton * MyMultiton::getInstance(int i) { map <int, MyMultiton *>::iterator it = multitonMap-...
[ "ashkhi@gmail.com" ]
ashkhi@gmail.com
cb41fce9036ba81f5a8d3b58d93f76ff82994492
8dc84558f0058d90dfc4955e905dab1b22d12c08
/gin/arguments.cc
b492fae6d579e87ef6a9a16944f5ac76ecd0cc0a
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
2,067
cc
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "gin/arguments.h" #include "base/strings/stringprintf.h" #include "gin/converter.h" namespace gin { Arguments::Arguments() : isolate_(NULL...
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
2f2a02a459f03b799c02e4f1ac545dacb3d155ec
c7b48e0e2806df7eb3a95ae61ec22167b67332cc
/IronCore/ObjectView.h
ab2d3096df0fe38badef780b9fd13ebd6c427c46
[]
no_license
KiwiMaster157/IronCore
a9ebab88d5f9936a55afd98d9921548847c97ee7
2d380a56fd41ad528847976560ac914a99e43ce3
refs/heads/master
2020-06-02T17:20:42.058045
2019-06-17T03:46:47
2019-06-17T03:46:47
191,246,332
0
0
null
null
null
null
UTF-8
C++
false
false
2,930
h
#pragma once #include "Node.h" namespace iron { class Simulation; class ObjectView { public: ObjectView(Node* data, Simulation* simulation, int offset); /// Assigns one ObjectView to another if their internal pointers are the same. /// Throws std::logic_error on failure. ObjectView& operator=(const ObjectView&...
[ "rgfgh6@mst.edu" ]
rgfgh6@mst.edu
90e029c34a69d3569e5ed72c5275aa12d3a247a7
65de89e525429da1c7b88f05fe39396da1650c3b
/Kursovaya/GLBox.cpp
63790c7f2648f0bf972eabadf7fd9a42041ef0f3
[]
no_license
Seaqqull/maze-3d
658298f66102a2e5b0a7ed64d673a24becc15a2f
fc1228bca63687a65641374888db3ee5e454fdec
refs/heads/master
2021-06-19T23:43:03.134279
2017-05-06T11:45:23
2017-05-06T11:45:23
90,459,049
2
0
null
null
null
null
WINDOWS-1251
C++
false
false
3,574
cpp
#include "GLBox.h" GLBox::GLBox() { } GLBox::GLBox(GLfloat width, GLfloat height, GLfloat startingX, GLfloat startingY, GLfloat startingZ, GLfloat startingAngleX, GLfloat startingAngleY, GLfloat startingAngleZ) { SetWidth(width); SetHeight(height); m_startingX = startingX; m_startingY = startingY; m_startingZ...
[ "seaqqullprogramming@gmail.com" ]
seaqqullprogramming@gmail.com
b36008db8b8da87611bfc02db6336de266661184
a615d3604fc47643df42f7d9fd14102eb27efc7e
/cms/src/model/DescribeProductResourceTagKeyListRequest.cc
3f50af690cc9bb7aac1ce2d1b2322aa245693aef
[ "Apache-2.0" ]
permissive
CharlesE-233/aliyun-openapi-cpp-sdk
b5d336e8d5f8c6041f3d294d99b89965e3370831
cba94f21199ae8943b5d0024099a90b1880024e7
refs/heads/master
2021-04-19T10:15:35.376349
2020-03-24T02:53:36
2020-03-24T02:53:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,354
cc
/* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
7f0775119795a204991147336fd1fb7f0747cc44
6fe3598896533a640d69b01e59dcfc98c9b2f748
/Compile/S/grammar.cpp
86494269da69226374ee175890b13ebc164cb83f
[]
no_license
regissahore/Typewriter
5567368925b2a20c0e1909c9e01a718cd5e2ba40
3317a7f19e5d0d672e5a7c57af6625077c48e85f
refs/heads/master
2020-12-28T22:33:29.554140
2015-03-05T00:55:16
2015-03-05T00:55:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,931
cpp
#include <map> #include <cstdio> #include <iostream> #include "grammar.h" using namespace std; int constIndex; int tempSymbolIndex; vector<SymbolNode> symbolTable; map<string, int> symbolMap; int labelIndex; vector<SymbolNode> labelTable; map<string, int> labelMap; void addSymbol(string &symbol) { symbolMap[symbo...
[ "cyberzhg@gmail.com" ]
cyberzhg@gmail.com
c7a783166da08f1f6f47c6aca88fb67f2278dd3c
677180f8cb9834921bfe3cd02b75322d0491fd2d
/temp/sg/Classes/Player.cpp
6439698738c33bfd8c804fec86f152c006a89d05
[]
no_license
fndisme/wb
5bdf4de15e29e0a344027dcad2c998cdc755bf89
7e92d9be5bce980da6afaea0c14ec08d4e3d028d
refs/heads/master
2020-04-18T05:21:09.621068
2013-07-06T09:51:18
2013-07-06T09:51:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,939
cpp
/* * ===================================================================================== * * Filename: Player.cpp * * Description: * * Version: 1.0 * Created: 2013/6/9 16:25:31 * Revision: none * Compiler: gcc * * Author: YOUR NAME (fndisme), fndisme@163.co...
[ "fndisme@163.com" ]
fndisme@163.com
b298a1ef65d7a2ce97234bea53e57e332112c520
d50c4dc5fae29857bff78a124938ddf0f85dc4d2
/CSES/Dynamic Programming/cses1637.cpp
4cce6f56f75fd1ee22c28f76eac08e16d190d27f
[ "MIT" ]
permissive
Karim-Elbahrawy/problem-solving
71fbc7671edc1fbbc7ee57d6b47e982d1bddacc9
fb1c6f722ce9f9b205dd9ee3869dc18321a3f424
refs/heads/master
2023-03-16T19:09:59.515174
2021-03-14T16:19:16
2021-03-14T16:19:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
441
cpp
#include <algorithm> #include <cstdio> #include <cstring> using namespace std; const int N = 1e6 + 5, OO = 0x3f3f3f3f, MOD = 1e9 + 7; int n, cln, d; int dp[N]; int main() { scanf("%d", &n); fill(dp, dp+10, 1); for (int rem = 10; rem <= n; rem++) { cln = rem; dp[rem] = OO; while (cln) { d = c...
[ "Muhammad.Magdi1024@gmail.com" ]
Muhammad.Magdi1024@gmail.com
9d7022c6ffd5f9977ab3e9ebc9b3e8d026bb6856
c84629bf7158041eb5309f11cf5c678f116081b4
/reliefMapping/z_RELIEF_new_LIGHTING_MODEL - Copy/_MODEL_FOLDERS_/facing_UP/facing_UP_INDEX.cpp
6c0593922b3f9368607fcada8b733e5157a6ada7
[]
no_license
marcclintdion/iOS_WIN3
ce6358be75900a143f6639057c1d96b5e3f546b3
d339cfab929534903abbdc6043ac0280ff68e558
refs/heads/master
2016-09-06T05:54:23.058832
2015-09-16T07:37:12
2015-09-16T07:37:12
42,571,722
0
0
null
null
null
null
UTF-8
C++
false
false
165
cpp
GLuint facing_UP_INDEX[] = { 0, 1, 2, 0, 2, 3, 4, 5, 6, 4, 6, 7, 8, 9, 10, 8, 10, 11, 12, 13, 14, 12, 14, 15, 16, 17, 18, 16, 18, 19, 20, 21, 22, 20, 22, 23, };
[ "marcclintdion@Marcs-iMac.local" ]
marcclintdion@Marcs-iMac.local
6c756ceabc83a52a3582b26941d2820c6b527026
d4a98177e9cd0cf707a7f13bf089c9379deb4747
/Audio/Source/Bnoerj.Audio/Cue.cpp
a4c3db2711c465042c0fa7462f7f64b5b2cabd18
[ "BSD-3-Clause" ]
permissive
kouweizhong/bnoerj
03ee466310bb8bfa41e27c93b34a4dba74646b2f
9f395bea9845565aaebfe8255855708ead481522
refs/heads/master
2021-05-06T07:50:10.280177
2017-04-01T08:39:02
2017-04-01T08:39:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,476
cpp
// Copyright (C) 2008, Bjoern Graf <bjoern.graf@gmx.net> // All rights reserved. // // This software is licensed as described in the file license.txt, which // you should have received as part of this distribution. The terms // are also available at http://www.codeplex.com/Bnoerj/Project/License.aspx. #include ...
[ "bjoern.graf@gmail.com" ]
bjoern.graf@gmail.com
06d9cc52e6d5cdbbf3d89506f0017409894e625d
439bf8e4db6539e668e0466f08b400e997e9ad70
/cppmodule/module.cc
91a9da9ec95a0fd7b3ff1a22d39372ae6241b0c8
[]
no_license
jglaser/sq_plugin
c23c67e5bc7cf4bc5ed8bcf46be6fd99dd54f5f0
705e97319a31f291a5e3bdf9e1ff2f45d9870325
refs/heads/master
2021-01-01T19:42:17.826382
2014-01-17T17:55:39
2014-01-17T17:55:39
5,691,686
1
1
null
null
null
null
UTF-8
C++
false
false
3,083
cc
/* Highly Optimized Object-oriented Many-particle Dynamics -- Blue Edition (HOOMD-blue) Open Source Software License Copyright 2008-2011 Ames Laboratory Iowa State University and The Regents of the University of Michigan All rights reserved. HOOMD-blue may contain modifications ("Contributions") provided, and to which...
[ "jglaser@umn.edu" ]
jglaser@umn.edu
e06640e5896ed8b824013d7256bc4642ea6b92e1
cca9fc0f316c616230fbb253c340902a5dd6f70a
/DataTransmission/datatransmission.cpp
9a79af7626f9ec1588cab80548a9766b611078e9
[]
no_license
VladGribinchuk/Defender
21fc1222297b20de51b74305350f29d425e6a148
2f64964bcaef71da032c7aa73c9c850bedb59dec
refs/heads/master
2021-05-03T06:42:46.525006
2018-04-02T06:39:57
2018-04-02T06:39:57
120,597,822
0
0
null
null
null
null
UTF-8
C++
false
false
289
cpp
#include "datatransmission.h" #include <QUdpSocket> namespace data_transmission { MessageTransmission::MessageTransmission() : MessageTransmission(GetDefaultPort()) {} MessageTransmission::MessageTransmission(int port) : mPort(port), mUdpSocket(new QUdpSocket(this)) {} }
[ "vladgribinchook@gmail.com" ]
vladgribinchook@gmail.com
a4f582a12c79dabd42a8a7ae499387260c560590
dfd960b9c39ab30680774f9e6204ef9c58054798
/CPP/容器中查找元素,返回bool或者返回迭代器指向的值.cpp
e33077768073df32798f3a4192843dd37393a681
[]
no_license
yuyuOWO/source-code
09e0025672169e72cbd493a13664b35a0d2480aa
d4972f4d807ddf8e17fd074c0568f2ec5aba2bfe
refs/heads/master
2021-06-15T22:32:08.325223
2017-05-04T05:44:36
2017-05-04T05:44:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
943
cpp
#include <iostream> #include <vector> #include <ctime> #include <cstdlib> using namespace std; bool find1(std::vector<int> v, int obj) { std::vector<int>::iterator iter = v.begin(); while (iter != v.end()) { if (obj == *iter) return true; iter++; } return false; } int find2(std::vector<int> v, int obj) {...
[ "xanarry@163.com" ]
xanarry@163.com
273ee871062ebce9f3d49dcb4b95f0b268f2307b
58bf62494b84cadca61bccae138c5d7053de1cba
/2017:2018/P1/src/funciones2.hpp
2786549780ed3b3ec34c99813f3d369409f13d13
[]
no_license
JJ-learning/Algoritmica
257eaa37b189697e60f3177a9e3154ff4ce4d127
d9e1e54cc90da23f3399ba2dd43f46af3a4d88f7
refs/heads/master
2023-04-08T08:20:09.027960
2019-02-04T12:28:15
2019-02-04T12:28:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,031
hpp
#ifndef FUNCIONES2_HPP #define FUNCIONES2_HPP #include "ClaseTiempo.hpp" #include <iostream> #include <vector> #include <cmath> #include <cstdio> #include <cstdlib> #include <fstream> using namespace std; // Name: getFibonacci // param: min -> int. Minimum's itetarion. // max -> int. Maximum's iteration. // in...
[ "juanjo96mt@gmail.com" ]
juanjo96mt@gmail.com
e04563fa2cda6319f170346627f61da3ca564867
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5751500831719424_0/C++/ImtiazShakilSiddique/A.cpp
cb3078bd2677dbe2f6abad7fca0288ec9668e3cd
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
3,855
cpp
#include <map> #include <queue> #include <stack> #include <cmath> #include <cctype> #include <set> #include <bitset> #include <algorithm> #include <list> #include <vector> #include <sstream> #include <iostream> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> #include <ctyp...
[ "eewestman@gmail.com" ]
eewestman@gmail.com
0a0f6e8cec51a1925748a67d2794854c14788dab
903fbf216a132f0d312e03df40624cbfd8b2396e
/pool/Interop.FrameServices/FrameConverterW.cpp
cef93d5175ab46575efbab236119429c8008a6ef
[ "MIT" ]
permissive
ceztko/frameservices
de2e810a82a7b30bddcf69ebb88cf03642249370
ca434c94014d30c33a7e1a59c7adca20b7fb6aa1
refs/heads/master
2021-01-10T19:58:53.773544
2013-04-22T23:47:30
2013-04-22T23:47:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
29
cpp
#include "FrameConverterW.h"
[ "ceztkoml@gmail.com" ]
ceztkoml@gmail.com
9cb1c45fb2d53b5098413fa299babf25e3012099
ab47441fe474d9024b8c49a0f97d5849d3258211
/Classes/HelloWorldScene.cpp
2ff648ec77f61cacb71524519a18607eaca838e4
[ "Apache-2.0" ]
permissive
a3845021/NityLife
85cc0d28b159610fe7884dfadd72c010cf9add72
fb64ba09ed1879d0eecd3164b12e152b44221651
refs/heads/master
2020-04-29T06:23:54.938847
2017-07-09T10:43:08
2017-07-09T10:43:08
null
0
0
null
null
null
null
UHC
C++
false
false
7,173
cpp
#include "HelloWorldScene.h" #include "SimpleAudioEngine.h" #include "inlife.h" #include "shop.h" #include "Game1.h" #include "Game2.h" using namespace CocosDenshion; //<관리 메뉴 변수들> int sound; //사운드 on(=0)/off(=1) int open, at2 = 0; // 어플 실행시 한 번만 출력되는 이미지의 변수 //<테그들의 정의> #define menutag 1 #define submenutag 2 #def...
[ "skydoves@naver.com" ]
skydoves@naver.com
c4e4aa08ef6f180180a109583b1c3fe38ba0735c
c61c05f6e7532e0272b4d85c027954a71f067df3
/Práctica 4 Gestor de Correo/ListaRegistros.cpp
b750dd1a148279f0d8079f52eac55fbabd95a3f0
[]
no_license
nereaG95/FP
fe8e83fd7f30e46442d05e47d9efcf3cf3a6332c
6ee2dc868c66ff28628dfbd2bf0197b02fe694c1
refs/heads/master
2021-01-22T06:23:33.220056
2017-10-18T15:35:53
2017-10-18T15:35:53
81,757,159
0
0
null
null
null
null
UTF-8
C++
false
false
2,498
cpp
#include<iostream> #include"ListaRegistros.h"; using namespace std; void inicializar(tListaRegCorreo &listaReg){ listaReg.cont = 0; } void guardar(const tListaRegCorreo &listaReg, ofstream& archivo){ archivo << listaReg.cont << endl; for(int i=0; i < listaReg.cont; i++){ archivo << listaReg.registros[i].id << ...
[ "negomez@ucm.es" ]
negomez@ucm.es
6d696bc9eecd4d735599f3ba35aea65948545675
bffb25ef9606bf4f300c9962451c394e9b1810f1
/Listqueue.h
8ffb41086f1f0380b4dbfa087bd4404f1bdde7cf
[]
no_license
jiandandema/data_struct_cpp
94b3b2f0640daf511d5c0c2aca3691443465cda3
135ed4be2de0fec03b5cf392f426795a61318a8f
refs/heads/main
2023-04-06T16:50:20.364502
2021-04-06T08:53:22
2021-04-06T08:53:22
352,051,016
0
1
null
null
null
null
UTF-8
C++
false
false
1,891
h
#ifndef __LISTQUEUE__ #define __LISTQUEUE__ #include <iostream> #include "Node.h" template <typename T> class Listqueue { private: SingleNode<T>* _head; SingleNode<T>* _end; int _count; public: Listqueue(); ~Listqueue(); typedef SingleNode<T>* pointer; Listqueue<T>& push(const T value); ...
[ "1725625262@qq.com" ]
1725625262@qq.com
a2281c8e539e08a7303473f0314434082afb6b24
5cad8d9664c8316cce7bc57128ca4b378a93998a
/CI/rule/pclint/pclint_include/include_linux/c++/4.8.2/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp
2f727d2a5d801e72b3e339979998f862c8394e05
[ "LicenseRef-scancode-unknown-license-reference", "GPL-2.0-only", "GPL-3.0-only", "curl", "Zlib", "LicenseRef-scancode-warranty-disclaimer", "OpenSSL", "GPL-1.0-or-later", "MIT", "LicenseRef-scancode-other-copyleft", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows", "BSD-3-...
permissive
huaweicloud/huaweicloud-sdk-c-obs
0c60d61e16de5c0d8d3c0abc9446b5269e7462d4
fcd0bf67f209cc96cf73197e9c0df143b1d097c4
refs/heads/master
2023-09-05T11:42:28.709499
2023-08-05T08:52:56
2023-08-05T08:52:56
163,231,391
41
21
Apache-2.0
2023-06-28T07:18:06
2018-12-27T01:15:05
C
UTF-8
C++
false
false
2,269
hpp
// -*- C++ -*- // Copyright (C) 2005-2013 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library 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...
[ "xiangshijian1@huawei.com" ]
xiangshijian1@huawei.com
a94e63cf2aad7c7e894490a3282cdc1bfbc41780
a1e90d669c3b606940f9197d11e82c743f5c7a9c
/SPHydrodynamics/main.cpp
a68619524870e93894b931405f7e90cba5d9e15e
[]
no_license
Holdrick/SmoothParticleHydrodynamics
18db904e37232cbcc45e8ff244195a3442d97b42
9358598baf5bf076032c6ef585914e5c54abec2c
refs/heads/master
2016-08-12T21:25:50.682012
2016-01-15T22:03:18
2016-01-15T22:03:18
48,143,636
0
0
null
null
null
null
UTF-8
C++
false
false
5,085
cpp
#include <GL/glew.h> #include <GLFW/glfw3.h> #include <stdlib.h> #include <stdio.h> #include <iostream> #include <fstream> #include <string> #include "SPH.h" #include "GOBJ.h" #include "ShaderObject.h" #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/type_ptr.hpp> using namespace std;...
[ "tjcooper@ucalgary.ca" ]
tjcooper@ucalgary.ca
31773a1a564417ff29b836ebbc2bac4f8f48433f
7e31c5cb44e540a296c556a2200c1d131b42fe49
/Flame-GPU/examples/PedestrianNavigation/src/visualisation/GLUTInputController.cpp
12698aa0a66076f7765c83e6c4872cdf99ed5f6b
[ "MIT" ]
permissive
Fedeblasco/PPS-Flame-GPU
6350e5ac3776ae02463500175189dbf793d29bf6
c3e32447bf085ee5b6cec46b2fc6b8e8df8ee546
refs/heads/master
2023-04-05T05:27:41.875312
2021-04-03T22:32:44
2021-04-03T22:32:44
290,646,750
1
0
null
null
null
null
UTF-8
C++
false
false
5,541
cpp
/* * Copyright 2011 University of Sheffield. * Author: Dr Paul Richmond * Contact: p.richmond@sheffield.ac.uk (http://www.paulrichmond.staff.shef.ac.uk) * * University of Sheffield retain all intellectual property and * proprietary rights in and to this software and related documentation. * Any use, reproduct...
[ "fedeblasco@hotmail.com" ]
fedeblasco@hotmail.com
69b4d9969ed83d44ccfeb1e5f38f157b1dafdeb6
552013b068516e5f4037321770cce353abc17ef0
/src/com/tibbo/aggregate/common/expression/function/other/FormatFunction.cpp
ffbe27280d1195e16718a0bd605cd3e2e800c767
[]
no_license
azma1984/aggregatesdk
963a148147a597d5aaf0c091a1b11a0f530574cb
e5cab19ada96118ef9f7f619aa71572baf3803e7
refs/heads/master
2016-09-03T01:39:35.865225
2015-02-03T19:45:40
2015-02-03T19:45:40
28,450,266
0
0
null
null
null
null
UTF-8
C++
false
false
2,132
cpp
// Generated from /aggregate_sdk_5.11.00/src/com/tibbo/aggregate/common/expression/function/other/FormatFunction.java #include "expression/function/other/FormatFunction.h" #include "expression/function/Functions.h" //#include <java/lang/ClassCastException.h" //#include <java/lang/NullPointerException.h" //#inclu...
[ "azma@mail.ru" ]
azma@mail.ru
998349414793d7582b9a76bd1413ab671a420046
558dece528927a181dcf8afdc6b6c85edaaeb584
/Graph Theory/MST template.cpp
830cfbd24e18c0caa68992c20e80ba6771b3ed1a
[]
no_license
rohannstu/Algorithms
dd5e9bc8d57ba512ad2b1d27bb761eda7d3ed1a9
b121d952d01687dd52279b91ef19d9533ba05be5
refs/heads/master
2023-04-09T12:30:21.547535
2021-04-08T11:23:54
2021-04-08T11:23:54
569,421,358
1
0
null
2022-11-22T19:40:43
2022-11-22T19:40:41
null
UTF-8
C++
false
false
4,934
cpp
#include<bits/stdc++.h> #define Input freopen("in.txt","r",stdin) #define Output freopen("out.txt","w",stdout) #define ll long long int #define ull unsigned long long int #define pii pair<int,int> #define pll ...
[ "noreply@github.com" ]
rohannstu.noreply@github.com
9731bdf5751ffd1ff2929a733be98ac8b41ad6cc
b7ddd7962df127b90aa4fe72b4e5fff947ad9f7d
/SPOJ/SPOJ Kalkulator/main.cpp
019e068e63986822c9527cbdf4b0bd8f479786f5
[ "MIT" ]
permissive
KorzenGameDev/CPPSript
39f5e8befc5aec715e4b2f70e04f15cccb6e6a10
3033ca79390d1992b35f19b5f619a7c15616a1ce
refs/heads/master
2020-05-03T16:00:03.180768
2019-06-05T14:31:05
2019-06-05T14:31:05
178,714,473
0
1
null
null
null
null
UTF-8
C++
false
false
405
cpp
#include <iostream> using namespace std; char znak; int a,b; int main() { while((cin>>znak>>a>>b)){ switch(znak){ case '+': cout<<a+b<<endl; break; case '-': cout<<a-b<<endl; break; case '*': cout<<a*b<<endl; break; case '/': cout<<a/b<<endl; break; ...
[ "KorzenGameDev@gmail.com" ]
KorzenGameDev@gmail.com
388946e0a8e1afabc3d59513b34c79a2b2e9fae8
6f0197a8477f7721f2b97ed17a47d1cabd4b9796
/lib/music/src/music.cpp
e1c2ebb39c45919dcabade6dcf462f982254f102
[]
no_license
jablan/marbluino_now
6cc8092c90054eb5466158b0da69ba5c0543b548
e5577b2996145cca08456699f71cb3202a3f44ab
refs/heads/master
2023-06-16T23:37:13.797948
2021-07-06T11:04:48
2021-07-06T11:04:48
345,816,267
2
0
null
2021-03-14T13:39:20
2021-03-08T22:45:17
C++
UTF-8
C++
false
false
1,490
cpp
#include "music.h" uint16_t tonesFlag[][2] = {{698, 1}, {880, 1}, {1047, 1}, {0, 0}}; uint16_t tonesLevel[][2] = {{1047, 1}, {988, 1}, {1047, 1}, {988, 1}, {1047, 1}, {0, 0}}; uint16_t tonesSad[][2] = {{262, 4}, {247, 4}, {233, 4}, {220, 12}, {0, 0}}; uint16_t tonesEnd[][2] = {{392, 2}, {523, 2}, {659, 2}, {784, 4}, {...
[ "mladen.jablanovic@xing.com" ]
mladen.jablanovic@xing.com
5227c8b88c09e811d8e3b2a14bfe093e396e4b7a
7b7e1c4b11ead81799b4ae2c6205a5267af64e85
/client/include/stream_record.h
d26ef91da8e1371bac446fa000d947f430af1edb
[ "MIT" ]
permissive
crckmc/RTSPServer
af4e1b1e02f887181cc4da7fcb42289f14085384
7a5daea3f3446574081126c5917129ce13518758
refs/heads/master
2020-06-05T15:55:23.753847
2019-05-25T09:20:28
2019-05-25T09:47:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
906
h
#ifndef PROJECT_STREAM_RECORD_H #define PROJECT_STREAM_RECORD_H #include "ffmpeg_utils.h" #include "stream_queue.h" #include "video_codec_parameter.h" class StreamRecord : public FFmpegUtils { public: StreamRecord(std::shared_ptr<VideoCodecParameter> param); virtual ~StreamRecord() = default; virtual bo...
[ "kgbook.sz@gmail.com" ]
kgbook.sz@gmail.com
4e45e1dfda4fa21906b673d2d01c97eae8117faa
e3c1dfb02e7c9f40d87b14d5ca7f86b05265c6db
/Graphs/getpath_using_BFS.cpp
8b5a64e79d521e410888eb3e594252d861882e9f
[]
no_license
rajatgoyall/DS
175c130341f984d36ebebbe486f1c00156f72172
64a879fe6d2b1d30f0a65c7c51be6a9f0da2b54e
refs/heads/master
2020-06-09T05:16:10.101032
2019-07-18T02:06:26
2019-07-18T02:06:26
193,378,252
0
0
null
null
null
null
UTF-8
C++
false
false
1,416
cpp
#include<bits/stdc++.h> using namespace std; void getpath(int** edges,int n,int si,int ei) { bool* visited=new bool[n]; for(int i=0;i<n;i++) { visited[i]=0; } queue<int>pendingvertices; map<int,int>m; pendingvertices.push(si); while(pendingvertices.size()) { //4 3 0 1 1 2 2 3 int currentvertex=pendi...
[ "rgoyal788@gmail.com" ]
rgoyal788@gmail.com
109d7a45f556a4d97964fd6d026d87e5cfc31eae
984a8796b8dfc5ca012986fc263a933d6703d504
/core/src/style/labelProperty.h
1d6039fa3b18cdbe8f9ac62e58de920152cdcb8b
[ "MIT" ]
permissive
zerebubuth/tangram-es
a93dcb5eea8585f4f827484d16e2ae912343e129
bc1ad644832e9a4e350e2018b01979caab063ebb
refs/heads/master
2020-07-14T18:41:13.716054
2015-11-16T21:40:47
2015-11-16T21:40:47
46,667,537
3
0
null
2015-11-22T15:55:15
2015-11-22T15:55:13
null
UTF-8
C++
false
false
887
h
#pragma once #include "text/fontContext.h" namespace Tangram { template <class M, class T> inline bool tryFind(M& _map, const std::string& _transform, T& _out) { auto it = _map.find(_transform); if (it != _map.end()) { _out = it->second; return true; } return false; } namespace Label...
[ "karim.naaji@gmail.com" ]
karim.naaji@gmail.com
1974e75cf3365b9dbb3f6a1cb9534adb72b7e25d
b2a9dfe403805ff0bcd550dbedc5e0a4eb460e60
/2020/7.11/POJ2752.cpp
66516ef8ad2c0f7f57c345ae0d8cb843bb853dcc
[ "WTFPL" ]
permissive
YooLc/Codes-Backup
262f0f104fdbdc7c02439c093b533a1179358dd2
3e13bc048921eefadcc63e36cf2cf638138ebea2
refs/heads/master
2023-01-11T13:41:11.435684
2020-11-16T13:53:25
2020-11-16T13:53:25
284,692,786
0
0
null
null
null
null
UTF-8
C++
false
false
857
cpp
#include <iostream> #include <cstdio> #include <cstring> using namespace std; typedef unsigned long long ull; const int MAXN = 4e5 + 5, p = 20040817; ull pow[MAXN]; struct MyString { ull hash[MAXN]; char text[MAXN]; int len; void getHash() { hash[0] = 0; len = strlen(text); f...
[ "dlulc@sina.com" ]
dlulc@sina.com
c232f37c82c3d39720dd3ba38bbc9a4334780998
941ce7061328919a1a0f87fb119dccdc347a2c4c
/robot/robot_pqdj.hpp
f6ae5c75050ee7ba9c74b2797dfad092ce836252
[ "MIT" ]
permissive
svr8/SegmentedPathPlanner
fc0df926d0dcb454002306c16af0382cbb159b84
f3a1ae57d0370c0528b231bd2994322fc28bdb6b
refs/heads/master
2023-03-28T12:31:42.871126
2021-04-01T05:21:52
2021-04-01T05:21:52
261,808,200
7
1
null
null
null
null
UTF-8
C++
false
false
1,047
hpp
#ifndef ROBOT_PQDJ_INCLUDE #define ROBOT_PQDJ_INCLUDE #include <vector> #include <queue> #include <../cell/cell.hpp> #include <../node/node_pqdj.hpp> #include <../arena/arena.hpp> using namespace std; // robot_pqdj solves path planning problem using PriorityQueue based Dijkstra and // PriorityQueue based Segmented...
[ "shikhar.vaish90@gmail.com" ]
shikhar.vaish90@gmail.com
539c740ac076ecf26d586be7d8276ed066597d2e
fd5d94e86859c7427bf224516b213b2a49ab5dc6
/tess/tesseract/src/lstm/tfnetwork.h
476b78f7e9266e84aa85e1fa1f97f45b749e003e
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0", "BSD-2-Clause", "MIT" ]
permissive
tonthatnam/japanese_ocr
26199ac0eddd5c070b1764720bba100dc24ba8e0
c78ed95d940fd979bbec1f33bca085e9977cafa4
refs/heads/master
2023-04-06T04:00:58.224584
2021-04-20T16:10:15
2021-04-20T16:10:15
342,899,733
3
1
MIT
2021-04-20T16:10:15
2021-02-27T16:13:30
C++
UTF-8
C++
false
false
3,744
h
/////////////////////////////////////////////////////////////////////// // File: tfnetwork.h // Description: Encapsulation of an entire tensorflow graph as a // Tesseract Network. // Author: Ray Smith // // (C) Copyright 2016, Google Inc. // Licensed under the Apache License, Version 2.0 (the "...
[ "thatnamdn@gmail.com" ]
thatnamdn@gmail.com
416f2ee45ceca8ced0531913bca6973d2c4fb330
4d00a67ce8f8422d05fcf847ecf51d754eb4fcad
/Source/UnrealEnginePython/Private/Wrappers/UEPyFTransform.cpp
3ab29cc8fb5aa5fd75a7231a5341b05b10ed2631
[ "MIT" ]
permissive
jiamingfeng/UnrealEnginePython
5a5e4160e7ccadc44004963f9330d904284d7df1
09157b7d0a76d524ebe18f3e8a6567e4d7cc6e2a
refs/heads/master
2020-12-24T11:17:31.955761
2018-04-04T04:52:17
2018-04-04T04:52:17
123,071,175
0
0
MIT
2018-02-27T04:09:35
2018-02-27T04:09:35
null
UTF-8
C++
false
false
10,524
cpp
#include "UnrealEnginePythonPrivatePCH.h" static PyObject *py_ue_ftransform_inverse(ue_PyFTransform *self, PyObject * args) { return py_ue_new_ftransform(self->transform.Inverse()); } static PyObject *py_ue_ftransform_normalize_rotation(ue_PyFTransform *self, PyObject * args) { FTransform transform = self->transfor...
[ "roberto@20tab.com" ]
roberto@20tab.com
5a6fa74b3e0cffbaf9718f5f5dc59ac0a851c331
2ac9354090998979fb23e525f526c00aa2cfda06
/Zoo.cpp
d54595403c91a1c3eb1a2c98965bd234a35c3bf4
[]
no_license
audrynyonata/vz01
74ad76d0d43f5edbd3e1f940c4a5a76f7c9e543e
c8ff33011ba08416eb57af54e8a49463bdd0c545
refs/heads/master
2020-05-22T16:15:37.494370
2017-03-14T20:16:27
2017-03-14T20:16:27
84,703,118
0
0
null
null
null
null
UTF-8
C++
false
false
3,248
cpp
#include "Zoo.h" Zoo::Zoo(){ c= new Cell* [def_row]; n_cage = def_cage; for (int i=0;i<def_row;i++) { c[i]= new Cell [def_col]; } t_cage = new Cage [n_cage]; } Zoo::Zoo(int _r, int _c, int _nc){ row=_r; col=_c; c= new Cell* [row]; for (int i=0;i<row;i++) { c[i] = new Cell [col]; } n...
[ "willywilliamss97@gmail.com" ]
willywilliamss97@gmail.com
411a587736114b5cfde0db5324c7540a8c4c97af
e24fc92d7d4e99180e924ef28ff2676f749dec6d
/allocator_benchmark_4.cpp
8b03baa0e392ad0bc74ab682fa49cd593496c447
[]
no_license
olegtsts/RAST
5a3468fcbf83575e99489aff51cc437ab7d6b337
9e850d3fa7f98418fc6923573510f12d43c7e191
refs/heads/master
2023-07-19T18:33:17.811638
2020-05-04T16:57:01
2020-05-04T16:57:01
96,823,976
0
0
null
2020-05-04T16:57:02
2017-07-10T21:43:08
TeX
UTF-8
C++
false
false
366
cpp
#include "allocator.h" #include <cstdlib> int main() { int* pointers[1000]; for (int i = 0; i < 1000; ++i) { pointers[i] = FixedFreeListMultiLevelAllocator<int>().allocate(1); FixedFreeListMultiLevelAllocator<int>().allocate(30000); } for (int i = 0; i < 10000000; ++i) { *pointe...
[ "olegtsts@gmail.com" ]
olegtsts@gmail.com
8de9687dc93e1505a414c908322464c3ade8c1d8
a6842a5d17ead91f335e89de5e14ad291aef96b2
/C++/D/1360D Buying Shovels.cpp
671463f7b897810b172d72f6442331a67edd2545
[]
no_license
PrinceCuet77/Codeforces
91039c9c0ed9bf7c528d95d3886c10a0c3218720
dc24a87859bc0cc63cb9463a39ae90cae628ec7d
refs/heads/master
2021-06-23T21:24:12.493955
2021-03-08T08:11:04
2021-03-08T08:11:04
200,385,826
0
0
null
null
null
null
UTF-8
C++
false
false
1,759
cpp
/******************************************************************************** * * * Author : Rezoan Shakil Prince * * Batch : 14 ...
[ "noreply@github.com" ]
PrinceCuet77.noreply@github.com
e9fd32811f2f59875932ebffb8df0979aa40b5a1
b9cd09bf5c88e1a11284d27e2e2b91842424a743
/Visual_C++_MFC_examples/Part 1 윈도우 프로그래밍의 기본/07장 GDI 기본/RedrawDemo/RedrawDemo/RedrawDemoView.h
b6381d95501c6b6960e9e4267f9659c4a8ad1754
[]
no_license
uki0327/book_source
4bab68f90b4ec3d2e3aad72ec53877f6cc19a895
a55750464e75e3a9b586dded1f99c3c67ff1e8c9
refs/heads/master
2023-02-21T07:13:11.213967
2021-01-29T06:16:31
2021-01-29T06:16:31
330,401,135
0
0
null
null
null
null
UHC
C++
false
false
1,208
h
// RedrawDemoView.h : CRedrawDemoView 클래스의 인터페이스 // #pragma once class CRedrawDemoView : public CView { protected: // serialization에서만 만들어집니다. CRedrawDemoView(); DECLARE_DYNCREATE(CRedrawDemoView) // 특성입니다. public: CRedrawDemoDoc* GetDocument() const; // 작업입니다. public: // 재정의입니다. public: virtual void OnDraw...
[ "uki0327@gmail.com" ]
uki0327@gmail.com
40c7d0ed2073300baf7519cd8fcc79ebe26c9a56
0a7800eb552cc9fbf9aaf280eff844a79d66be1e
/tests/std/tests/Dev11_0496153_locale_ctor/test.cpp
73659075e5ac2f95707a63d7ff76605066fd1ce9
[ "LicenseRef-scancode-generic-cla", "LLVM-exception", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0", "LicenseRef-scancode-object-form-exception-to-mit", "LicenseRef-scancode-unicode", "MIT", "LicenseRef-scancode-mit-old-style", "LicenseRef-scancode-other-permissive", "CC0-1.0", "B...
permissive
StephanTLavavej/STL
cc5c9fc5c1bdb769c04d02adbbd7a979b9ba672c
0fe653a9d6efd2ac0ad07825804436672dbffe3b
refs/heads/peppermint
2023-08-19T11:59:46.527073
2023-07-26T19:12:19
2023-07-26T19:12:19
210,725,225
16
1
NOASSERTION
2023-09-13T00:19:46
2019-09-25T00:56:50
C++
UTF-8
C++
false
false
1,494
cpp
// Copyright (c) Microsoft Corporation. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception #include <cassert> #include <clocale> #include <cstdio> #include <exception> #include <locale> #include <sstream> using namespace std; // Because std::string crosses the DLL boundary via overridden virtual ...
[ "noreply@github.com" ]
StephanTLavavej.noreply@github.com
4df4fccc4327ab8ba13a9586c4148e1f57a08766
1ae0de5b55c1f3babc4f45dfd631d4b87d908041
/src/qt/clientmodel.cpp
fcf7a57f8c4f157d1b3cde186acd210d30f02455
[ "MIT" ]
permissive
Chegeek/Exvo
8c48463b0ac40456c66833cbd61bf93e3d6da8b6
a5adf3a37d44dbf88f9712e0e18fce09d08b7bc6
refs/heads/master
2020-03-23T02:39:28.750989
2018-04-13T04:31:56
2018-04-13T04:31:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,052
cpp
// Copyright (c) 2017-2018 EXVO developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "clientmodel.h" #include "bantablemodel.h" #include "guiconstants.h" #include "guiutil.h" #include "peertablemodel.h" #include...
[ "support@exvo.io" ]
support@exvo.io
a9451485693007cd79760ed7f7b39ac547ec6b88
48c27471b8d5aa435ae7ff45f74ba88576a9b68a
/src/base58.h
e251d0e2ef47acf53db1782f68ccc73109425a4d
[ "MIT" ]
permissive
eysho/BestKnownGame-Coins---Source
591798ee8c561212756032d5c945838f724c702b
32cfcbdd9ce45671fcab93133628982470c91cff
refs/heads/master
2021-01-10T19:31:47.795365
2014-09-05T18:42:40
2014-09-05T18:42:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,011
h
// Copyright (c) 2009-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. // // Why base-58 instead of standard base-64 encoding? // - Don't want 0OIl char...
[ "eysho@bkg.me" ]
eysho@bkg.me
460fad4b8b1478303fab766cccb785f9754bef6c
06bd8227e03558468e0a2ba0fbfffd5b0f5c0cd2
/swagger/sdrangel/code/qt5/client/SWGAMDemodSettings.cpp
6770781edd87a8cf5c3fbcfa31476b6ce37087c1
[]
no_license
minkione/sdrangel
d2be3f72f17027dc79011d1faae7eae2203f1dec
f520ad60724e94e6b392029b41c15f25f98be348
refs/heads/master
2020-04-12T10:04:40.565543
2018-12-01T23:04:41
2018-12-01T23:04:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,410
cpp
/** * SDRangel * This is the web REST/JSON API of SDRangel SDR software. SDRangel is an Open Source Qt5/OpenGL 3.0+ (4.3+ in Windows) GUI and server Software Defined Radio and signal analyzer in software. It supports Airspy, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube --- Limitations an...
[ "f4exb06@gmail.com" ]
f4exb06@gmail.com
3857ca4800251efea2e861c45bdb0c35d3dcfadd
e6c50c3ad6362f7f05682d64c96748fab0ca025b
/test/f16-vmax.cc
89b325959f8c3a5f974f11e3d4826c49db5358a0
[ "BSD-3-Clause", "LicenseRef-scancode-generic-cla" ]
permissive
Maratyszcza/XNNPACK
537e670d0d172b3ec9f04808e07ed4a5436b01a7
16b3379825a5de3d148658af572a0a45eea3bfa3
refs/heads/master
2023-06-05T16:36:41.404271
2022-09-24T06:01:47
2022-09-24T06:02:47
218,375,282
1
0
NOASSERTION
2019-10-29T20:14:30
2019-10-29T20:14:30
null
UTF-8
C++
false
false
15,906
cc
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. // // Auto-generated file. Do not edit! // Specification: test/f16-vmax.yaml // Generator: tools/generate-vbinary-test.py #include <gtest/gtest.h> #i...
[ "xnnpack-github-robot@google.com" ]
xnnpack-github-robot@google.com
b95e0b9afbdb4db4a89720d9a8d9a40c803389f1
5ac2b0d369dffd0d658c0ff8962c6a994a51d2b6
/workers/ChatWorker/src/QuerySender/QuerySender.h
0805129333f1c7b401067f7a0380c15538e13417
[ "MIT" ]
permissive
KangJH/UnityGDK-proto
e9e94b5f2ea69864e2c51e12fe5ffbd6d24be434
5e30633bb1ff631834a0ecb8d04d9d3d8f1b110b
refs/heads/master
2020-04-25T08:08:17.761423
2019-04-25T11:04:31
2019-04-25T11:04:31
172,636,582
0
0
null
null
null
null
UTF-8
C++
false
false
4,438
h
#pragma once #include <unordered_map> #include "improbable/standard_library.h" #include "improbable/worker.h" namespace SpatialOS { class QuerySender { public: QuerySender(worker::Dispatcher&, worker::Connection&); ~QuerySender(); QuerySender(const QuerySender&) = delete; void operator=(const QueryS...
[ "lukekang@improbable.io" ]
lukekang@improbable.io
6eae2a39365eb722a8df70806e9cb0e473abe9c6
4d85cf38ca1210e21b204cee286bf4ca2d47c19c
/Chunk.h
7dca5898acdb636d317c063014c2563ac6600fb1
[]
no_license
Arne-van-der-Lei/Terraria
34f2b90fe8fab2cfe0f1138abe551916ac15d4d7
5c238606d3d4aa4ad7e35f4130a95e17e3484ed4
refs/heads/master
2021-05-31T12:29:01.188732
2016-04-24T23:11:32
2016-04-24T23:11:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,740
h
#pragma once //----------------------------------------------------------------- // Student data // Name: van der Lei Arne // Group: 1DAE16 //----------------------------------------------------------------- class World; struct Tile { unsigned int air : 4; unsigned int noBackround : 4; unsigned int x : 4; unsigned...
[ "arne@vanderlei.be" ]
arne@vanderlei.be
fd1d5e12ca09df314e95edbb804376936cff61c3
9c48108a1aec301dd21f00977c1cbd195bced8b3
/exe4/q2/Circle.cpp
91dd0a24bba4bf93be260bc8715a220f699584c1
[]
no_license
avimishh/C-h.w
1d5c18503846f9a1593d1dabde9cb70d983d919d
8290f0e734fab28000ec31fa916671668bf34164
refs/heads/master
2020-06-24T16:08:25.957315
2019-07-26T12:17:36
2019-07-26T12:17:36
199,011,094
0
0
null
null
null
null
UTF-8
C++
false
false
738
cpp
#include "Circle.h" #include <cmath> //c'tors Circle::Circle() :Shape(Point(),Point(0,1)){} Circle::Circle(Point center, double radius): Shape(center, Point(center.x, center.y + radius)) {} //operators ostream& operator<<(ostream& os, const Circle& o) { os << "center: " << o.position << "\tradius: " << o.getRad...
[ "noreply@github.com" ]
avimishh.noreply@github.com
315e5753747dc9222b0a6983771135d61682d3b3
f9d68c993f0aaa6c772cc59da466d10245ea5274
/serverBoostModel/serverBoostModel/boostAsioServer.cpp
6785050fa026fe4632cc5d8d12b13f564cf747bf
[]
no_license
MastProgs/Cpp_boost_asio
caeeab2ee8a498d9a5afded932aa0f22a05e30ea
c730c7220f48507f71799e89342d677b1163b26c
refs/heads/master
2022-12-19T14:42:27.742120
2020-09-23T04:30:31
2020-09-23T04:30:31
73,635,893
0
0
null
null
null
null
UHC
C++
false
false
5,612
cpp
// 참고할만한 boost asio http://neive.tistory.com/22 #pragma once #include"stdafx.h" boostAsioServer::boostAsioServer() : m_acceptor(g_io_service, tcp::endpoint(tcp::v4(), SERVERPORT)), m_socket(g_io_service) { getMyServerIP(); CheckThisCPUcoreCount(); acceptThread(); start_io_service(); } boostAsioServer::~boostAsi...
[ "khjkhj2804@naver.com" ]
khjkhj2804@naver.com
a136b5412056a2b102c4bef68ffe98d69e793661
287ffac2b8889d3c47e38a1c007f9767aa57e9f2
/stack.cpp
5e568eb097488a462095cc6078db7ab0c951d363
[]
no_license
sadimndr/projects
ea2fb372cc676e7cef4915fb1929cff7782f1f13
c34aa9bcf8ce0ea2bd04b4013f856567a417eff2
refs/heads/main
2023-04-23T12:01:25.464027
2021-05-09T12:36:14
2021-05-09T12:36:14
363,015,524
0
0
null
null
null
null
UTF-8
C++
false
false
1,727
cpp
#include<iostream> using namespace std; #define max 10 int stack[max],top=-1; void push(int n) { if(top==max) { cout<<"OVERFLOW!"; } else { top=top+1; stack[top]=n; } } int pop() { if(top...
[ "sadichhyamndr@gmail.com" ]
sadichhyamndr@gmail.com
55d86a788bb644f9302b1e2eae2185d67a8adf43
aa95b1d713afcbf0ceab7b626897448c664f2a2d
/test/cpu/instructions/AND/AND_IM.h
27a574c68b779ca05197b18856fc70ad7e8eaf6d
[]
no_license
jtrinklein/6502
c3a2486d33b95c102e32b664cdf63a118058b2bb
f9d20e3d0f9bc8de0abc7234e22f5bb3f04b3ba1
refs/heads/main
2023-06-20T00:53:00.788572
2021-07-19T14:51:57
2021-07-19T14:51:57
387,500,736
0
0
null
null
null
null
UTF-8
C++
false
false
2,351
h
#include <cxxtest/TestSuite.h> #include <cpu.h> #include <mem.h> class AND_Immediate_Tests : public CxxTest::TestSuite { public: CPU* cpu; Mem* mem; static constexpr Byte opcode = 0x29; static constexpr Byte op_size = 2; static constexpr Byte op_cycles = 2; void setUp() { mem= new Me...
[ "1398935+jtrinklein@users.noreply.github.com" ]
1398935+jtrinklein@users.noreply.github.com
8971520a6431793a8b7e4ba28dab38426a4bd3a2
5bd2afeded6a39311403641533f9a8798582b5c6
/atcoder/abc155/C.cpp
3fe0ce800976a70c9dc4ba2a821e4e8e3f703019
[]
no_license
ShahjalalShohag/ProblemSolving
19109c35fc1a38b7a895dbc4d95cbb89385b895b
3df122f13808681506839f81b06d507ae7fc17e0
refs/heads/master
2023-02-06T09:28:43.118420
2019-01-06T11:09:00
2020-12-27T14:35:25
323,168,270
31
16
null
null
null
null
UTF-8
C++
false
false
477
cpp
#include<bits/stdc++.h> using namespace std; #define ll long long #define eb emplace_back #define nl '\n' #define deb(x) cerr << #x" = " << x << nl #define in() ( { int a ; scanf("%d", &a); a; } ) const int N = 3e5 + 9; const int mod = 1e9 + 7; int32_t main() { int n = in(); map<string , int > mp; int m = 0...
[ "shahjalalshohag2014@gmail.com" ]
shahjalalshohag2014@gmail.com
cf4f4eaa04a8d0dc77aff32b1f20c2688aeb1ec7
0f53e5a811ae883d9b81208e536eba1e5968586b
/supplybook/supplybook.h
920093e09396885e97b7f1100c5e9031c6ef43be
[]
no_license
CarrotIronfoundersson/LibraryManagmentSystem
6c0e478b996356857decb9c0df979f59a6f112f2
f3e4e7e88eef236949cf658216e1505c9da26152
refs/heads/master
2022-12-20T07:23:07.708938
2020-10-05T15:00:04
2020-10-05T15:00:04
300,783,935
5
1
null
null
null
null
UTF-8
C++
false
false
494
h
#ifndef SUPPLYBOOK_H #define SUPPLYBOOK_H #include <QDialog> namespace Ui {class SupplyBook;} class SupplyBook : public QDialog { Q_OBJECT public: explicit SupplyBook(QWidget *parent = 0); explicit SupplyBook(QModelIndex &index,QWidget *parent = 0); ~SupplyBook(); private slots: void on_buttonB...
[ "zifirot22@gmail.com" ]
zifirot22@gmail.com
0fcbf92d1b804203aff63c826ae972c3429a0c38
8289fb4b9f2242a2f0a1b92b391058f421788682
/Ros/Phase2/B2lly_Ws/build/turtlesim/rosidl_typesupport_opensplice_cpp/turtlesim/srv/dds_opensplice/TeleportAbsolute_Dcps_impl.h
2242a6b118444eeaec63b4ce24d5da5a141302fb
[]
no_license
BawornsakS/XPrize
5fedf7c7f0838b1da5c0749ef846ed7b2135356d
e6e900c6c63f0cef5cb3717a5b6724ec9ae00b69
refs/heads/master
2021-07-20T06:28:09.666385
2020-09-04T06:39:13
2020-09-04T06:39:13
211,299,370
3
3
null
2019-11-13T08:07:18
2019-09-27T10:56:38
Makefile
UTF-8
C++
false
false
81,559
h
#ifndef H_9F0B2C49D9A6DCE0C92687E5452476D3_TeleportAbsolute_DCPS_IMPL_H_ #define H_9F0B2C49D9A6DCE0C92687E5452476D3_TeleportAbsolute_DCPS_IMPL_H_ #include "ccpp.h" #include "ccpp_TeleportAbsolute_.h" #include "TypeSupportMetaHolder.h" #include "TypeSupport.h" #include "FooDataWriter_impl.h" #include "FooDataReader_imp...
[ "44831071+aminballoon@users.noreply.github.com" ]
44831071+aminballoon@users.noreply.github.com
cc732bbcb2101acc7b0db1cb46cd6d69bd8f9f93
26c75b1db810c0ee313ae16c6aec391ffadf1b3e
/src/game/system.cpp
9be2aaeeafe25d8dfe74d371d2b53534f13e0157
[]
no_license
christerso/Snail-Wail
095d302f5cd120e8aba2ab1ac2f5861dc4dda42b
f899a3af83e1cf9c581a30eaeee20a68effd1aa3
refs/heads/master
2021-01-18T07:24:20.750922
2011-01-31T19:43:11
2011-01-31T19:43:11
1,270,342
0
0
null
null
null
null
UTF-8
C++
false
false
946
cpp
#include <game/system.h> #include <game/snails.h> #include <game/background.h> #include <game/control.h> #include <game/items.h> #include <stdexcept> SystemContext::SystemContext() { ready = false; std::fill(systems, systems + SYSTEM_MAX, (System *)0); } void SystemContext::set(unsigned id, System *system) { if...
[ "ptr.bckmn@gmail.com" ]
ptr.bckmn@gmail.com
84cb4fba2262404fb175ac67f374c1ec195f75a3
0bb05faeb58de2f0d40c662cc25f5ee80e2c2b3c
/public-inheritance/dog.cpp
bdc46bb25f7df0a5dc10fcd4b672ba4655141ef4
[]
no_license
hellomc/csci222-cpp
0de2d6342df249e361db02832d7952b756a5443d
f81784706adb169a4414c8ed7e660a716aa2f177
refs/heads/master
2020-04-23T06:33:11.594579
2019-05-06T04:13:47
2019-05-06T04:13:47
170,976,979
0
0
null
null
null
null
UTF-8
C++
false
false
2,377
cpp
/* dog.cpp * Defines the Dog objects and methods. * * @author Michelle Adea * @version 03/31/2019 */ #include "dog.h" // default empty constructor Dog::Dog() { this->AKCno = 0; this->owner = new char[1]; strcpy(this->owner, ""); } // destructor Dog::~Dog() { delete [] this->owner; } // param ...
[ "noreply@github.com" ]
hellomc.noreply@github.com
ba73caf162239370a7c9d90f133d6a8b5a43657d
3bda6350083b34b387c31f0b9761bedb156551db
/utils/polymer-np-config.cpp
7c6f48491cccedc2e460c539d736b55a119515ae
[]
no_license
jonqdoe/mpi2
12277212efe5101ca34bbbb15ad12dcffd2ba881
6a09c9987158916e0dfd9762302b98fd0ca9f20f
refs/heads/master
2020-04-24T05:52:10.333114
2019-08-18T21:59:25
2019-08-18T21:59:25
171,744,803
0
0
null
null
null
null
UTF-8
C++
false
false
5,998
cpp
#include <complex> #include <cmath> #include <cstdlib> #include <cstdio> #include <cstring> #include <fstream> #include <iostream> #include <string> #include <sstream> using namespace std ; #define PI 3.141592653589793238462643383 double ran2( void ) ; double gasdev2( void ) ; long int idum ; double pbc_mdr(double*...
[ "rrig@seas.upenn.edu" ]
rrig@seas.upenn.edu
96eccddbc5cb53c784108c22de736431c4b05c62
529466da9415200bfd1ee63b04dfc71ace76a228
/src/VertexBuffer.cpp
e49fe2f20bbaf74df09cc4f52e73f34b726b54eb
[]
no_license
TiGGa84/CGAbschluss
335e782b41c80e3cabc396f157167982c6f944cb
ac58fde93bd787b76bc030bf1de00d83bd1e3ad4
refs/heads/master
2021-01-11T14:17:43.918804
2017-02-23T11:17:56
2017-02-23T11:17:56
81,315,242
0
0
null
null
null
null
UTF-8
C++
false
false
8,168
cpp
// // VertexBuffer.cpp // ogl4 // // Created by Philipp Lensing on 19.09.16. // Copyright © 2016 Philipp Lensing. All rights reserved. // #include "VertexBuffer.h" #include <assert.h> #include <iostream> #define BUFFER_OFFSET(i) ((char *)NULL + (i)) VertexBuffer::VertexBuffer() : ActiveAttributes(0), WithinBegi...
[ "Myor@users.noreply.github.com" ]
Myor@users.noreply.github.com
1016d8989fe044ed640f2e3ff9d7e3b27e6ba7db
d071e6156cf23ddee37a612f71d71a650c27fcfe
/contest/hdn387/Stock Prices.cpp
8727be6513ac3d2fb05da434969628cf1f9b5f50
[]
no_license
tsstss123/code
57f1f7d1a1bf68c47712897e2d8945a28e3e9862
e10795c35aac442345f84a58845ada9544a9c748
refs/heads/master
2021-01-24T23:00:08.749712
2013-04-30T12:33:24
2013-04-30T12:33:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,222
cpp
#include <cstdio> #include <iostream> #include <algorithm> using namespace std; struct Day { int p, d; }; bool cmpSmallPD(const Day &a, const Day &b) { if (a.p != b.p) { return a.p < b.p; } return a.d < b.d; } bool cmpSmallD(const Day &a, const Day &b) { return a.d < b.d; } bool cmpLargePD(const Day &a, const ...
[ "leon.acwa@gmail.com" ]
leon.acwa@gmail.com
7999d00f3f18132e107f1b1bdb9c116850101daa
cd788d5d1b3b88da0d2572fb18f9ec9763348b4c
/source/core/archive/atSyncMySQLDataToPostgres.h
a1329af53486a521b3ee0ed3b7838478131db938
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
TotteKarlsson/atapi
09af89b355358e365a5c44a306ab5429b25763f0
c91accb9f01f0effdfe1e7a493388ae4b1a9145c
refs/heads/master
2020-12-24T10:58:18.114903
2018-12-17T20:14:12
2018-12-17T20:14:12
73,213,670
0
0
NOASSERTION
2018-12-17T18:22:22
2016-11-08T18:12:22
C++
UTF-8
C++
false
false
862
h
#ifndef atSyncMySQLDataToPostgresH #define atSyncMySQLDataToPostgresH #include "atATObject.h" #include "dslThread.h" #include <functional> #include "Poco/Process.h" #include "Poco/Timespan.h" //--------------------------------------------------------------------------- class AT_CORE SyncMySQLDataToPostgres : public d...
[ "tottek@gmail.com" ]
tottek@gmail.com
e2998263cfda6f0e644f2b565d5070e1d96dfe3c
9bfa9be26c98eb99208518a59132ac5f7563ec24
/PWMMotor/PWMMotor.h
4086e5cdb0d602c87d981d8fc4f5d66668eaac20
[]
no_license
drykisftc/VortexBot
7646fc93f85472261bc878db527ed9c69872c197
48a7b6c5086f7feb0bec3c95be6c8ade24f80dd3
refs/heads/master
2021-01-22T23:10:43.082647
2017-06-12T06:33:10
2017-06-12T06:33:10
92,803,719
0
1
null
2017-06-28T02:08:10
2017-05-30T06:16:00
C
UTF-8
C++
false
false
723
h
#ifndef _pwm_motor_ #define _pwm_motor_ #include "Arduino.h" #include <InterruptEncoder.h> class PWMMotor { public: PWMMotor (int directionPin, int pwmPin, bool bReverse); virtual ~PWMMotor (); void setPower (int power); void setEncoder( int encoderPin, lo...
[ "hfu@apixio.com" ]
hfu@apixio.com
3932773527856f99583859b2b756984d7f4e4750
c00c76e741a30fb779ae0c1bc0330266faaea7bb
/model/init_mysql.cpp
66ea82f80458a8ec4d74fa46eb0e8aefe8da5324
[]
no_license
zenaki/Veranda
faae15a6b5472c80fe7cb51417375a84c1463f39
f6bf3c4bb05df066d8211afdb382a8f4516f2a58
refs/heads/master
2021-01-01T04:30:16.621770
2016-04-14T02:08:03
2016-04-14T02:08:03
56,199,736
0
0
null
null
null
null
UTF-8
C++
false
false
642
cpp
#include "init_mysql.h" init_mysql::init_mysql() { } QSqlDatabase init_mysql::connect_db(){ QString pth = "setting.ini"; QSettings sett(pth, QSettings::IniFormat); QString host = sett.value("hostname").toString(); QString dbname = sett.value("databasename").toString(); QString user = sett.value(...
[ "zenaki.zen.aku@gmail.com" ]
zenaki.zen.aku@gmail.com
07109e0bddf413c0be4b92b919a79d9240b4de3d
b2d6abb7640780904a1dd211c2074904d44eca89
/mainwindow.h
78385bebbbeae7a2f1f8e496b1d87d08f49ab815
[]
no_license
DCM20010618/towerdefense2
4a864ea92a7490832134cdea6081ec1bbd413c31
fb8e843fca3658655da85d088c289ab05002ec15
refs/heads/master
2022-09-29T04:59:47.647754
2020-06-04T15:18:32
2020-06-04T15:18:32
269,382,773
0
0
null
null
null
null
UTF-8
C++
false
false
463
h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #pragma once #include <QMainWindow> #include <QPainter> #include <QPaintEvent> #include <chooselevel.h> namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = nullptr); ~MainWindow(); ...
[ "1617377765@qq.com" ]
1617377765@qq.com
9413e42b9bb0b99634fb54b6230abacbad3c285c
3a115d192ecde0c65e6559109054bc10fc8937b0
/InterruptMutex.cpp
75102a28c93858b36f517de45f13bd67d225e491
[]
no_license
formulaslug/fs-0-core
f0ee521d13d7fde054924b7e4d4bc6f0bc268072
33ee2db83bff1386bae8ee0b4ffe0650eb7aa45d
refs/heads/master
2021-06-25T10:20:12.696970
2017-09-08T04:26:54
2017-09-08T04:26:54
56,642,621
0
1
null
null
null
null
UTF-8
C++
false
false
199
cpp
// Copyright (c) 2016-2017 Formula Slug. All Rights Reserved. #include "InterruptMutex.h" #include "core/wiring.h" void InterruptMutex::lock() { cli(); } void InterruptMutex::unlock() { sei(); }
[ "calcmogul@gmail.com" ]
calcmogul@gmail.com
063288f6ab2e6721ca4c1ea8e057b6408cc5152d
536656cd89e4fa3a92b5dcab28657d60d1d244bd
/media/mojo/services/mojo_video_decoder_service.cc
7413d71a4aad006fc1154c76b6906595929831c3
[ "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
13,335
cc
// 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 "media/mojo/services/mojo_video_decoder_service.h" #include "base/bind.h" #include "base/bind_helpers.h" #include "base/logging.h" #include "bas...
[ "pcding@ucdavis.edu" ]
pcding@ucdavis.edu
2f1f122c2fab6b667c2202bd1d17175fd735f101
83a516e6a7bfae1a30fe4e5c97a08973b84d2001
/src/Testing/elxInvertTransform.cxx
1499ca9116c03f7918fd92104063b11c6199459e
[]
no_license
gerddie/elastix
d1258fd856953afc081223bd6266ac3c0c29eb4a
c4fc2ac66d9b87e0e23e71d7b3af8fc54d01de2c
refs/heads/master
2020-12-25T19:50:35.984666
2014-03-20T12:30:20
2014-03-20T12:30:20
18,362,645
1
0
null
null
null
null
UTF-8
C++
false
false
14,454
cxx
/*====================================================================== This file is part of the elastix software. Copyright (c) University Medical Center Utrecht. All rights reserved. See src/CopyrightElastix.txt or http://elastix.isi.uu.nl/legal.php for details. This software is distributed WITHOUT A...
[ "mstaring@4d348492-3962-11de-aa85-65a2020054a3" ]
mstaring@4d348492-3962-11de-aa85-65a2020054a3
06b4e460be24e2993032874cbde0405fb8278156
0e8548c4cc59da9f8e929495095a68ce29f0504a
/DMX512.h
a94155f7f5e9401bf173683af8a31dcbc905304e
[]
no_license
AnmanTechnology/mbed-DMX512
364248217ce616ae2f90454ef371aea1f0b6dae3
5babbf4255df10c0a237f69574c18894b28ade50
refs/heads/master
2022-08-21T16:05:56.525355
2020-06-01T10:34:21
2020-06-01T10:34:21
255,237,678
4
0
null
null
null
null
UTF-8
C++
false
false
5,763
h
#ifndef _DMX512_H_ #define _DMX512_H_ #include <mbed.h> #define C_INIT (uint8_t *)0x801F000 #define C_CLR 0x20 #define DMX_SIZE 193 #define DMX_START_CODE 0 #define XMIT_TX 1 #define XMIT_RX 0 #define DMX_TIME_BREAK 100 // 100us (88us-1s) #define DMX_TIME_MAB 12 // 12us (8us-1s) #define DMX_TIME_MBB 200 // 10us...
[ "sweilz.w@gmail.com" ]
sweilz.w@gmail.com
a76842fb97ea87b723ce181112bd5159311873b2
70d5afefb1840f87ecec74f357028daf2f795e7b
/Include/Config.h
742c4fc314e76113a58c742c625da247d0d28e61
[]
no_license
huweiqing915/spell_correct
07f3fea78546839f0195d44b958690643f66bb48
1d6e1354c8baf327ac8800b2e4bfcadc46bf8e40
refs/heads/master
2020-05-18T05:18:54.921978
2014-05-12T12:13:04
2014-05-12T12:13:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,180
h
/************************************************************************* > File Name: Config.h > Author: huwq > Mail:huweiqing915@gmail.com > Created Time: 2014年05月08日 星期四 15时08分58秒 ************************************************************************/ /* * 配置文件类,用于读取各个文件的路径。 * 定义为单例模式,调用只需定义一个Config的指针,节约...
[ "huweiqing915@gmail.com" ]
huweiqing915@gmail.com
9fc2f8b15d656f25d37517593d8913c4ca94a762
f503dd876b6dcb01f233eeb2873b9d89ae622a3f
/qcomptree.h
ded676fa4cc14f32d236816328340e4b826982b5
[ "BSD-2-Clause" ]
permissive
brentdmiller/deepquor
9a4392efab8f3e9ba9cc1f639f47f7e89fe57657
f7cebf183f5a662515820fff63797c1ae9f76735
refs/heads/master
2023-03-02T13:07:00.465598
2023-02-24T21:07:59
2023-02-24T21:07:59
27,940,660
2
2
null
2017-06-16T17:19:54
2014-12-12T22:25:59
C++
UTF-8
C++
false
false
8,306
h
/* * Copyright (c) 2005-2006 * Brent Miller and Charles Morrey. All rights reserved. * * See the COPYRIGHT_NOTICE file for terms. */ // $Id: qcomptree.h,v 1.11 2014/12/12 21:20:21 bmiller Exp $ #ifndef INCLUDE_comptree_h #define INCLUDE_comptree_h 1 #include <vector> #include <list> #include "qtypes.h" #in...
[ "bmiller" ]
bmiller
a189304c37a5aecf02a9c6b3ffa350aaae378a22
aca95a08f0b4e044da3ffdaed5710c81f879a20b
/Classes/NetworkManagerDelegate.h
11fc6f93c6d2b7b97ff1fe9a4b33fdec804c17b2
[]
no_license
oishoes/Takigyo
5133bc5639212397289f78b2c815a8d288f9fea5
961b1cd980c11843861ed946f766dcab2e47b1f2
refs/heads/master
2021-01-19T07:47:27.366820
2015-08-14T18:53:21
2015-08-14T18:53:21
39,087,251
0
1
null
null
null
null
UTF-8
C++
false
false
621
h
// // NetworkManagerDelegate.h // Doodler // // Created by Daniel Haaser on 5/26/15. // // #ifndef __Doodler__NetworkManagerDelegate__ #define __Doodler__NetworkManagerDelegate__ enum class ConnectionState { NOT_CONNECTED, CONNECTING, CONNECTED }; class NetworkManagerDelegate { public: virtual voi...
[ "shota.oiyama@gree.net" ]
shota.oiyama@gree.net
4bb934ce6dd840246c419116331a124098b455e4
b75746d852236a867a72f717efcacb9a3e141250
/apps/JAWS3/jaws3/Concurrency_T.h
c68352837a6b476c33156b933b454aba9cb27533
[]
no_license
longfem/ACE-toolkit
e8c94cc1d75a2930ceba78dac13d1b84c0efecc8
c1fedd5f2033951eee9ecf898f6f2b75584aaefc
refs/heads/master
2021-06-01T06:54:56.916537
2016-08-17T14:36:01
2016-08-17T14:36:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,239
h
/* -*- c++ -*- */ #ifndef JAWS_CONCURRENCY_T_H #define JAWS_CONCURRENCY_T_H #include "ace/config-lite.h" class JAWS_Protocol_Handler; template <class CONCURRENCY_IMPL> class JAWS_Concurrency_Bridge // = TITLE // The Concurrency Bridge uses the Concrete Bridge pattern. // // = DESCRIPTION // The...
[ "yehonal.azeroth@gmail.com" ]
yehonal.azeroth@gmail.com