blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
13fa015ba5040f689e1ed6d903a05ea59f9e2aa2
862e7afe5da58e3dd4fc800eb178626b666663fb
/algo/src/excel_row_number.cpp
2d9f4636c24fcc7600ad55ca4441a1119316d47d
[]
no_license
goofycoder/goofytest
ca051dcdc7928ead4fe387cc156c192931a22153
9188fdf0e2dfc559fcdb05e360ee81575959335c
refs/heads/master
2020-06-06T14:18:18.757662
2014-10-13T19:31:33
2014-10-13T19:31:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
606
cpp
#include <iostream> #include <string> const int ALPHA_NUM = 26; std::string int_to_excel_row(int n) { std::string str(1, 'a' + n%ALPHA_NUM); // initialized to the last char n = n/ALPHA_NUM; while (n != 0) { str = (char)('a' + (n-1)%ALPHA_NUM) + str; // append ahead of existing string ...
[ "xzt@ubuntu.(none)" ]
xzt@ubuntu.(none)
18fb987d708946c2ba475d9d7fedc0e42ac13753
9a32f02a71c045ea8bad25776893a2718e999dc7
/src/unicode.cpp
538e6adce744cc32976bee4c2c0304081b118cd0
[ "BSD-2-Clause" ]
permissive
cascade256/Odin
9c74676703a087ec2973ad87d5720cd4f38d1bd7
5eaa8de8f94a8f5601ba0a4267f210ce5ae4ddc8
refs/heads/master
2021-01-11T22:34:39.526724
2017-10-12T20:01:16
2017-10-12T20:01:16
78,992,365
2
0
null
2017-01-15T03:27:51
2017-01-15T03:27:50
null
UTF-8
C++
false
false
764
cpp
#pragma warning(push) #pragma warning(disable: 4245) extern "C" { // #include "utf8proc/utf8proc.h" #include "utf8proc/utf8proc.c" } #pragma warning(pop) bool rune_is_letter(Rune r) { if ((r < 0x80 && gb_char_is_alpha(cast(char)r)) || r == '_') { return true; } switch (utf8proc_category(r)) { case UTF8PRO...
[ "bill@gingerbill.org" ]
bill@gingerbill.org
d2f76d92e044800bafa7b53945ad9930c4049c11
978a7dac7df7ff07c937bd6b986f8d20d93dc8c0
/src/rpc/protocol.h
0cca426aa3c91e1c50e594475fb9f78fbceddcec
[ "MIT" ]
permissive
j00v/Sprint
dedf24af436ecfd3fc8d786743705f3e87e3b7e2
f290bebdb1f0d891a0521c253093f0bc01393e90
refs/heads/master
2022-11-09T18:39:48.127354
2020-07-07T11:38:42
2020-07-07T11:38:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,555
h
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_RPCPROTOCOL_H #define BITCOIN_RPCPROTOCOL_H #include <list> #include ...
[ "" ]
31e98318c9dd20f867e7924e5d27cbc56fddd329
b7f3edb5b7c62174bed808079c3b21fb9ea51d52
/base/task/sequence_manager/thread_controller_impl.h
fd1e246301499112456ae9cba40266b6294a198a
[ "BSD-3-Clause" ]
permissive
otcshare/chromium-src
26a7372773b53b236784c51677c566dc0ad839e4
64bee65c921db7e78e25d08f1e98da2668b57be5
refs/heads/webml
2023-03-21T03:20:15.377034
2020-11-16T01:40:14
2020-11-16T01:40:14
209,262,645
18
21
BSD-3-Clause
2023-03-23T06:20:07
2019-09-18T08:52:07
null
UTF-8
C++
false
false
5,133
h
// Copyright 2017 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. #ifndef BASE_TASK_SEQUENCE_MANAGER_THREAD_CONTROLLER_IMPL_H_ #define BASE_TASK_SEQUENCE_MANAGER_THREAD_CONTROLLER_IMPL_H_ #include <memory> #include "ba...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
c2a45cc90397a941a69b59585bd2669e4f80d8ff
de2b54a7b68b8fa5d9bdc85bc392ef97dadc4668
/NeuralHandTracker/NeuralHandTracker.cpp
496191d6a88877f2aac62f7e065ecac96b46d808
[]
no_license
kumarasn/tracker
8c7c5b828ff93179078cea4db71f6894a404f223
a3e5d30a3518fe3836f007a81050720cef695345
refs/heads/master
2021-01-10T07:57:09.306936
2009-04-17T15:02:16
2009-04-17T15:02:16
55,039,695
0
0
null
null
null
null
UTF-8
C++
false
false
444
cpp
//============================================================================ // Name : NeuralHandTracker.cpp // Author : Juan Pablo Timpanaro // Version : // Copyright : Your copyright notice // Description : Hello World in C, Ansi-style //============================================================...
[ "latesisdegrado@048d8772-f3ab-11dd-a8e2-f7cb3c35fcff" ]
latesisdegrado@048d8772-f3ab-11dd-a8e2-f7cb3c35fcff
617d974f22c8272723e4f5e9094a83489d341eb7
e8a7ceb8962d118a5dd816ac14b1e3c94e5c7f8b
/spepcpp/include/spep/metadata/KeyResolver.h
2aed57a05f5d4f3bb9243d4705fe0add6283638b
[ "Apache-2.0" ]
permissive
axilotl/esoeproject
dcfa73cb10b3977728fe2a76f24417837614a3b0
42348b232559a5013314863dc506948c2353f0e8
refs/heads/master
2020-12-25T00:09:23.529134
2012-02-13T05:13:04
2012-02-13T05:13:04
1,539,359
1
0
null
null
null
null
UTF-8
C++
false
false
2,886
h
/* Copyright 2006-2007, Queensland University of Technology * 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 requi...
[ "s.mangelsdorf@gmail.com" ]
s.mangelsdorf@gmail.com
7ea0d4f85b96a5200a3cff60525fdac68732ad19
349fe789ab1e4e46aae6812cf60ada9423c0b632
/Forms/HOT_ReportSostNF/UHOT_ReportSostNF.h
b9411d728122a592dda5c83a476d43ef6284a966
[]
no_license
presscad/ERP
a6acdaeb97b3a53f776677c3a585ca860d4de980
18ecc6c8664ed7fc3f01397d587cce91fc3ac78b
refs/heads/master
2020-08-22T05:24:15.449666
2019-07-12T12:59:13
2019-07-12T12:59:13
216,326,440
1
0
null
2019-10-20T07:52:26
2019-10-20T07:52:26
null
UTF-8
C++
false
false
1,885
h
//--------------------------------------------------------------------------- #ifndef UHOT_ReportSostNFH #define UHOT_ReportSostNFH //--------------------------------------------------------------------------- #include "UDM.h" #include "USheetEditor.h" #include "UDMQueryRead.h" //-------------------------------------...
[ "sasha@kaserv.ru" ]
sasha@kaserv.ru
c3565692649731a0cc500e0f87fdd5e288cebe96
08eba729ac79f43ba41fd7024a5a667a3205db12
/grass_simulation/main.cpp
dde2d5e7abb496a2a877ee74f4c2506179ef15f2
[]
no_license
lisamisun/computer_graphics-2016
e4a7a24bd58c0724983da5f2f5ff95bf8485d024
4a6151af5f6382c619969c2ed4cca255630140f1
refs/heads/master
2021-07-02T09:58:24.038426
2018-09-02T17:05:40
2019-04-20T16:26:44
147,102,880
0
0
null
null
null
null
UTF-8
C++
false
false
42,867
cpp
#include <iostream> #include <vector> #include <stdlib.h> #include <math.h> #include <ctime> #include "Utility.h" #include <SOIL.h> using namespace std; const uint GRASS_INSTANCES = 10000; // Количество травинок GL::Camera camera; // Мы предоставляем Вам реализацию камеры. В OpenGL камера...
[ "alisa.matsak@solidlab.ru" ]
alisa.matsak@solidlab.ru
fbd2edd42e851f3c694a46be910703e4a1429de8
864a03b8cb1debb3a4fefc284d8406c6e4306db8
/classAppearance.cpp
c57e9860b7af2c2614ba850979875ce1c7ed9ae7
[]
no_license
dimkael/VRMLConverterToDirectX
cecb8366a586b11b1d23922be4bc0eba96264e99
f37cf7506e2e24b1543dfd44a7e31bec86298fa3
refs/heads/master
2023-04-01T14:07:10.840860
2021-04-10T22:22:39
2021-04-10T22:22:39
356,703,821
0
0
null
null
null
null
UTF-8
C++
false
false
150
cpp
#include "classAppearance.h" Appearance::Appearance() : def("") {} Appearance::Appearance(string _def) : def(_def) {} Appearance::~Appearance() {}
[ "53169743+dimkael@users.noreply.github.com" ]
53169743+dimkael@users.noreply.github.com
3678bb5ab34fc7edc853ae09205640d9bc874f18
7e824dc4b0044129c95d51480b3514fb9a64acc7
/QT/tutoriale/62- Viewer Feedback Signals and Slots in depth/Feedback/person.cpp
2af365024f9afe5206778774d69129602783a751
[]
no_license
morariu05/TAP
3b97964fa3fb687ef7aa9ab13a82086b9458fda4
0ac56f91783b68d63134efdd12bf381ccb5639e1
refs/heads/master
2023-03-25T01:13:31.470612
2021-03-21T21:56:53
2021-03-21T21:56:53
350,127,947
0
0
null
null
null
null
UTF-8
C++
false
false
297
cpp
#include "person.h" Person::Person(QObject *parent) : QObject(parent) { } void Person::Listen(QString Words) { qDebug() << Name << " says someone told me.." << Words; } void Person::Gossip(QString Words) { qDebug() << Name << "says " << Words; emit Speak(Words); // emit semnalul }
[ "morariumadalina05@gmail.com" ]
morariumadalina05@gmail.com
9a39d4ba3a128a0db8039be54e006f5297fff706
dd56ee5ff855fddb065c733753664a78f729a800
/chapter10/10_02_main.cpp
846ae15a67665967300af4a3369705f5234b02f2
[]
no_license
avsobolev/prata_cpp_exercises
7b2999a1d74402f9de0f39f21ffa4c9d07350983
92f5a9221c3e466420c0c64c9ea207480ff77b36
refs/heads/master
2021-07-21T02:52:08.504382
2021-07-03T07:55:54
2021-07-03T07:55:54
96,104,161
0
0
null
null
null
null
UTF-8
C++
false
false
3,229
cpp
/* 10_02_main.cpp Занятия по книге Стивена Прата "Язык программирования С++" (2012, 6-е издание). Упражнения по программированию. Глава 10, страница 531, упражнение 2 Пусть имеется определение следующего простого класса: class Person { private: static const LIMIT = 25; s...
[ "avsobolev@yandex.ru" ]
avsobolev@yandex.ru
e2727ff7095ea2cfb40287d7e6c700f55fc3a10c
e3b9582393e4cadbfa690128798833af50cd9d43
/SAT3DOBB/GameObject.h
4a7c24d789a8c16e8557372bbe3e83e23080b118
[]
no_license
IGME-RIT/physics-SAT3DOBB-VisualStudio
ae9c15d9e591aa5fcd8e05431dff99fa74f2861b
385302308442643a6fe7f004f824f41c71fb9fe9
refs/heads/master
2020-06-07T08:08:21.185512
2019-06-30T15:08:35
2019-06-30T15:08:35
192,969,064
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
3,298
h
/* Title: SAT-3D (OBB) File Name: GameObject.h Copyright © 2015 Original authors: Brockton Roth Written under the supervision of David I. Schwartz, Ph.D., and supported by a professional development seed grant from the B. Thomas Golisano College of Computing & Information Sciences (https://www.rit.edu/gccis) at the Roc...
[ "njp2424@ad.rit.edu" ]
njp2424@ad.rit.edu
273de628bdd4f12d36f1d577ae03c39db21b2a94
2e6caca5f21cce51957d508302916229976d53aa
/Rotate_Star/Rotate_Star/Main.cpp
0585471e9f9355b1b2e87d44da569b471f837acd
[]
no_license
ZiJiaW/ComputerGraphics_2018Spring
e5ef0ee4d4c27582da97864b114421d0b39accfe
9acc1a52075efca33d6ba46ee952e75a8d66cc3b
refs/heads/master
2021-04-03T08:21:40.460872
2018-04-30T01:10:51
2018-04-30T01:10:51
124,765,528
0
0
null
null
null
null
GB18030
C++
false
false
5,004
cpp
#include <glad/glad.h> #include <GLFW/glfw3.h> #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/type_ptr.hpp> #include "Shader.h" #include <iostream> #define STB_IMAGE_IMPLEMENTATION #include "stb_image.h" void framebuffer_size_callback(GLFWwindow* window, int width, int height); void p...
[ "964513305@qq.com" ]
964513305@qq.com
a135ad57ac16cc5de0c1b787587a78a64d3452bc
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/multimedia/directx/dmusic/dmscript/oleaut.cpp
ece3ed5a02f8da8164df38f1270b6177d380679b
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
10,188
cpp
// Copyright (c) 1999 Microsoft Corporation. All rights reserved. // // Helper routines that wrap called to functions in oleaut32. This enables us to // compile free from any dependency on oleaut32.dll. In this case, some functionality // is lost. For example, only certain types of VARIANT variables are handled ...
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
17d3161c596d823dcb0f7a8f8eb4cc6370c54664
ab81210f39ce65ccd647c37b678d81fbf2c0c928
/stdafx.h
5f24dc3266aff2fc2c3f7ee85a9c439e2e0d0d18
[]
no_license
radtek/ZcStatis
2e58f7a1c8b5ecfc0b722ee9343577580e0bbb4e
4b8a45db7f5b4fde3031dfa799fa8bd7b65dbcec
refs/heads/master
2021-09-13T23:59:47.029340
2018-05-06T04:49:58
2018-05-06T04:49:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,491
h
// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #pragma once #define _CRT_SECURE_NO_WARNINGS // Change these values to use different versions #define WINVER 0x0501 //#define _WIN32_WINNT ...
[ "liuweigang@360.cn" ]
liuweigang@360.cn
c16c2c87283c91356cbf5dc258a14aa1af16adb3
29d90718a26fee6eed9d981bc16d6f05ec40d993
/src/rpcrawtransaction.cpp
bbd4389af56ba07641bb36d63a5631158a1ddab0
[ "MIT" ]
permissive
GCSPS/WealthCurrency
9279a68992bcd1cfab9c9996f8e35802f0bfa853
7077b5882e66119ce00d022e3527cb57808b089c
refs/heads/master
2020-12-03T00:44:03.023899
2017-07-06T07:30:03
2017-07-06T07:30:03
96,073,145
0
0
null
null
null
null
UTF-8
C++
false
false
19,249
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...
[ "hychx@qq.com" ]
hychx@qq.com
f24ccae3f2f47658d7a8dac22ac444f47c9e7f28
0dca3325c194509a48d0c4056909175d6c29f7bc
/dataworks-public/include/alibabacloud/dataworks-public/model/AddToMetaCategoryRequest.h
526af41c3d86d88d545e29b157853e3953b33a35
[ "Apache-2.0" ]
permissive
dingshiyu/aliyun-openapi-cpp-sdk
3eebd9149c2e6a2b835aba9d746ef9e6bef9ad62
4edd799a79f9b94330d5705bb0789105b6d0bb44
refs/heads/master
2023-07-31T10:11:20.446221
2021-09-26T10:08:42
2021-09-26T10:08:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,514
h
/* * 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
6472711ad73929dbb2a2601e74c2f96b172b29e0
042930d54c0976d61620f0d0bdd2ab43861c09cb
/headers/netStream.h
8eb7447c9edfa0fff16b6e81ffa6a6f57d116af5
[]
no_license
Gyrati/linkd
4a380d8d0c3a9364cc52e5ccd70eb511a9a5d11d
3acb32485cf1fe08da597e589cbc3341bed14ecf
refs/heads/master
2020-03-31T17:47:36.256134
2018-10-10T15:01:55
2018-10-10T15:01:55
152,434,435
0
0
null
null
null
null
UTF-8
C++
false
false
10,646
h
//////////////////////////////////////////////////////////////////////////////// // // netStream.h (Network Stream Header) // For establishing and managing network connections // //////////////////////////////////////////////////////////////////////////////// // Defines #ifndef netStream_h #define netStream_h #define...
[ "mixaa@live.de" ]
mixaa@live.de
25fc40ab7ddadd92ec2f9d83270682ea845b30b5
52507f7928ba44b7266eddf0f1a9bf6fae7322a4
/SDK/BP_falchion_ReverseBlade_parameters.h
ef63c60fdf601a04cacf2c80294065010fa36f59
[]
no_license
LuaFan2/mordhau-sdk
7268c9c65745b7af511429cfd3bf16aa109bc20c
ab10ad70bc80512e51a0319c2f9b5effddd47249
refs/heads/master
2022-11-30T08:14:30.825803
2020-08-13T16:31:27
2020-08-13T16:31:27
287,329,560
1
0
null
null
null
null
UTF-8
C++
false
false
508
h
#pragma once #include "../SDK.h" // Name: Mordhau, Version: 1.0.0 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function BP_...
[ "51294434+LuaFan2@users.noreply.github.com" ]
51294434+LuaFan2@users.noreply.github.com
0fea1c9a5243ed6186d2f73e7fb7f2565836c70e
365bf18fb73ff6e40c9c15b845d267bbb3b04670
/src/matching/front_end/matching_flow.cpp
cac5345ad5fdca81fe767fc871a3767306670a7a
[]
no_license
Forrest-Z/lidar_localization
8de8e2dc7ecadb09f15adc2daa1dd0c6e1066674
115619e2a4b9a724b4a9934e85f8a48de0ed8e2e
refs/heads/master
2022-12-29T18:28:54.586545
2022-10-07T09:28:13
2022-10-07T09:28:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,953
cpp
/* * @Description: LIO localization frontend workflow, implementation * @Author: Ge Yao * @Date: 2021-01-02 10:47:23 * @LastEditors: ZiJieChen * @LastEditTime: 2022-09-26 23:15:21 */ #include "lidar_localization/matching/front_end/matching_flow.h" namespace lidar_localization { MatchingFlow::MatchingFlow(const ...
[ "rq_ren@163.com" ]
rq_ren@163.com
f2f94ef4510ff4d37000a4e51ebf1aa0e7b00ec5
542e87f06d259e3f17941ba6d18575b86c1dd417
/src/pubkey.cpp
c40d9fe14ee25a237649fb0cd223b82d426eb8a0
[ "MIT" ]
permissive
bitcoinmoneydigital/source
04d08b8a53a6244edc368d50b31f73b5ac410595
41417256cb00f34df6ccfa708a61866443b6c1d0
refs/heads/master
2020-07-04T21:01:45.756061
2019-08-14T19:48:40
2019-08-14T19:48:40
202,415,926
3
4
MIT
2020-03-11T17:36:44
2019-08-14T19:47:42
C++
UTF-8
C++
false
false
9,583
cpp
// Copyright (c) 2009-2017 The Bitcoin Core developers // Copyright (c) 2019 The BitcoinMoney Core developers // Copyright (c) 2017 The Zcash developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <pubkey.h> #inclu...
[ "bitcoinmoneydigital@gmail.com" ]
bitcoinmoneydigital@gmail.com
f18f17b641fbbbd0f396690ecf75d008af4a584e
6fee31ef3f6c3707de20a5956b2d96575fdf0aac
/znd/dev/src/Common/MFCControls/CheckComboBox.h
8821d6f1b55ed4cba216a8751adb56fa31f33a02
[]
no_license
hilockman/cim2ddl
605b05e5c67acde1f9b0c93e6b0a227dd27519a6
78ec9a3b4136710ac659fa40e3da28c9bb57c10f
refs/heads/master
2021-01-01T17:50:55.311126
2019-01-03T05:35:47
2019-01-03T05:35:47
98,163,859
3
6
null
null
null
null
UTF-8
C++
false
false
2,042
h
#if !defined(AFX_CHECKCOMBOBOX_H__66750D93_95DB_11D3_9325_444553540000__INCLUDED_) #define AFX_CHECKCOMBOBOX_H__66750D93_95DB_11D3_9325_444553540000__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include <afxcoll.h> // for CByteArray class CCheckComboBox : public CComboBox { public: CChe...
[ "43579183@qq.com" ]
43579183@qq.com
7290bf372d998a1be1d49855128fa79c2521bd02
4bca2f952bc7e749bb282cebb5ba6fe4e723089e
/simulatorEmulateBuild/InspiratedCO2Segment.cpp
c5cbed37b676ace288379413f8af2be55ca3d00d
[]
no_license
dongtaoapp/BlsNetPlatformPro
63081a78cac66398b6ea4cb074774898de75062e
43ca4faa3eb1c760630a3138f1c36d4cb52ed45c
refs/heads/master
2021-09-12T13:17:08.815046
2018-04-17T04:00:49
2018-04-17T04:00:49
126,117,629
0
0
null
null
null
null
GB18030
C++
false
false
2,154
cpp
#include ".\inspiratedco2segment.h" namespace jysoft { namespace simulator { namespace etCO2 { CInspiratedCO2Segment::CInspiratedCO2Segment(void) { } CInspiratedCO2Segment::~CInspiratedCO2Segment(void) { } bool CInspiratedCO2Segment::isKindOf(const std::string &className ) { if( className == "CInspirate...
[ "1058611121@qq.com" ]
1058611121@qq.com
7c6420f546f4978feeb327cd4e2702e85b3cdbab
bcecfd7ee3dd8a185209476b35107100d027451d
/src/agent/jni_utils.h
1ba16be61fdb72d535f7fd82b34e2a19aa0f11aa
[ "Apache-2.0" ]
permissive
henrybell/cloud-debug-java
77a253b87abd5faf0dad2fa9558e5f20c1fd3c7d
387a904d58260637c2433c2191395fd3d93cd765
refs/heads/master
2020-03-25T03:11:04.487557
2018-06-22T21:24:12
2018-06-22T22:56:06
143,326,918
0
0
Apache-2.0
2018-08-02T17:42:10
2018-08-02T17:42:10
null
UTF-8
C++
false
false
13,004
h
/** * Copyright 2015 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
[ "vlif@google.com" ]
vlif@google.com
0cde5d2ae41a017d4fa262c724f0967ab9f1f7a1
8cca7cba13a25685d3b0aa5d5c70d4e5bb1af851
/WINZ/Container.h
7913543a51e6398a676ed135a794fc311623fe5d
[]
no_license
rbmm/LIB
0962e9ba96e3c5251ae28a9953f67c92a33d58ef
ff512fc7b8b8bd9043020060d3644dda0a684b02
refs/heads/master
2023-06-10T08:50:36.949369
2023-06-04T22:59:00
2023-06-04T22:59:00
165,633,527
8
4
null
null
null
null
UTF-8
C++
false
false
10,523
h
#pragma once #include "window.h" #include "app.h" HRESULT NavigateEx(IHTMLDocument2* pDoc, PCWSTR url, PCWSTR referer = 0); class __declspec(novtable) ZContainer : public ZWnd, public IDispatch, public IServiceProvider, public IOleClientSite, public IOleInPlaceSite, public IOleInPlaceFrame, public IOleCommand...
[ "8209FBFB017DB41D@yopmail.com" ]
8209FBFB017DB41D@yopmail.com
80dbc0ac7842f227c621f31fd025a2bf9c5be62b
3f3a42f429f8bcd769644148b24c3b0e6e2589ed
/GameProjectCopy/GameEngine/GameApp/Terrain.h
4598a7606886059a8fe0c0f5380acdf8b6942918
[]
no_license
DanielNeander/my-3d-engine
d10ad3e57a205f6148357f47467b550c7e0e0f33
7f0babbfdf0b719ea4b114a89997d3e52bcb2b6c
refs/heads/master
2021-01-10T17:58:25.691360
2013-04-24T07:37:31
2013-04-24T07:37:31
53,236,587
3
0
null
null
null
null
UTF-8
C++
false
false
5,992
h
#pragma once //#include <d3dx11effect.h> //#include <d3d11.h> //#include <d3dx9.h> //#define terrain_gridpoints 512 #define terrain_numpatches_1d 64 //#define terrain_geometry_scale 1.0f #define terrain_maxheight 30.0f #define terrain_minheight 0.f //-30.0f #define terrain_fractalfac...
[ "Sangyong79@gmail.com" ]
Sangyong79@gmail.com
67c6b7d2e81f3ba6c4bda71cce847d5c23108414
ee9e41feee0735dc029d41af71c514b044d53b28
/src/Setting.hpp
12593fb70830ba1a9980b72483db6fa7d52477df
[ "MIT" ]
permissive
LiamPattinson/luaconfig
11bba9d9ec2a9d672875389ccfa11b3ad8900ec0
8f09b3176fcc08f5d212ca49f72a4da429716479
refs/heads/master
2021-05-13T11:25:02.867567
2018-01-25T13:25:11
2018-01-25T13:25:11
117,121,059
0
1
null
null
null
null
UTF-8
C++
false
false
5,877
hpp
// Setting.hpp // // A Setting object encapsulates a lua_State* with a permanent table on its stack. // It offers similar methods to Config, such as get/set, though these act within a table // rather than at global scope. It additionally allows integer-indexing for get/set. // // It is implemented using Lua threads; on...
[ "liampattinson@gmail.com" ]
liampattinson@gmail.com
be1402f0676b6bbecafbde345590be8d18b6bdd4
9ba3f6ecbe31b11657e8c0fb1da7e547866b793a
/33.cpp
6d6e132b2a62252e5e392c58e932b0eb741cafed
[]
no_license
zhangbowen-jpg/Code--Practice
01fd2149154454de6af9346d09d243a1f3579f7c
24a5f8d4355ca0fa4c23e50762989199bfe3131a
refs/heads/master
2023-01-20T19:52:18.267466
2020-11-20T09:55:04
2020-11-20T09:55:04
314,512,240
0
0
null
null
null
null
UTF-8
C++
false
false
461
cpp
/************************************************************************* > File Name: 33.cpp > Author: > Mail: > Created Time: 2019年07月28日 星期日 12时48分57秒 ************************************************************************/ #include <stdio.h> int main() { double m,n; int p; scanf("%lf%lf%d",&m...
[ "823809800@qq.com" ]
823809800@qq.com
bfa8192dc5bf389e06ae2f1f63c2f09903a4e4be
e3d0e8163acf2f12cb9e7acc0b43056d0d2c9aa7
/class/HelloSerial/HelloSerial.ino
891c3c54236cefd2eff317f5385567bcbb9273cf
[]
no_license
lajthabalazs/arduino
637909cf2c505c967ac2610364101290562449ce
839422874795728cb922a862ed2554f075530a67
refs/heads/master
2021-01-23T08:04:40.846171
2016-03-05T12:57:10
2016-03-05T12:57:10
14,390,745
0
1
null
null
null
null
UTF-8
C++
false
false
150
ino
int i = 0; void setup() { Serial.begin(9600); Serial.println("Hello world!"); } void loop() { i = i + 1; Serial.println(i); delay(1000); }
[ "lajthabalazs@yahoo.com" ]
lajthabalazs@yahoo.com
ca861ce21b054ef29307be7c80bbcab99b74bbeb
9e8d5a6dc969d53639477e09ac1607cba52e0dbc
/src/L3/presenters/SensorsPresenter.h
8421bb868523df5401368d4e64ab1bf8bab357ed
[]
no_license
vedangnaik/Carina-mirror
b07a385d6ddc09e2581e423d811ddcd3bcf306aa
2b74fcf26fbaa3b8ecfe3b07686e0cb86110a617
refs/heads/master
2023-08-07T00:17:46.902404
2021-10-04T00:25:20
2021-10-04T00:25:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
736
h
#pragma once #include "SensorsManager.h" #include <stdexcept> #include <map> #include <mutex> #include <algorithm> class SPOC { public: virtual void displayValue(double value) = 0; virtual ~SPOC() = default; }; class SPIC { public: virtual void subscribe(std::string id, SPOC* spoc) = 0; virtual void ...
[ "vedang.a.naik@gmail.com" ]
vedang.a.naik@gmail.com
d2d44fe0713f24a2e5bea4e47044e3a5014de8d1
5f0317dc8379066180c00003379d281409a2da46
/entities/enemy_template.h
95276598fd520f9ec63b70b6a6826a9ad4588e4f
[]
no_license
gresstant/opensyobon-fork
4f67a817e4ec0479e9366f5799dfe6255c84204f
91c1497a45b18b23247d034b2a5b587a52f173a6
refs/heads/master
2021-07-10T15:48:54.939087
2021-02-21T07:47:37
2021-02-21T07:47:37
232,534,163
1
0
null
null
null
null
UTF-8
C++
false
false
453
h
#ifndef OSAFORK_ENEMY_TEMPLATE_H #define OSAFORK_ENEMY_TEMPLATE_H #include <memory> #include <vector> #include "common.h" class EnemyTemplate { public: Point position; int type; int xtype; int btm; bool available; // i'm not sure whether this is really used as "available" }; void createEnemyTemp...
[ "gresstant@outlook.com" ]
gresstant@outlook.com
a367fad12088e6b6a95d7b4c38a544bc379d69c0
f53798259b750548eac332086f5df5300d2b2254
/tests/common/concurrent_bounded_queue_test.cpp
2b75de7f880ab36e5c6184504f06b8ad6986237f
[ "BSD-2-Clause" ]
permissive
chen--oRanGe/thrill
2948511734189486f34116c9ada4c962e642c6ee
f272348479cd1c9b4226300048959a95c31429b3
refs/heads/master
2021-01-16T17:08:38.455264
2015-09-27T16:21:14
2015-09-27T16:21:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,841
cpp
/******************************************************************************* * tests/common/concurrent_bounded_queue_test.cpp * * Part of Project Thrill. * * Copyright (C) 2015 Timo Bingmann <tb@panthema.net> * * All rights reserved. Published under the BSD-2 license in the LICENSE file. *******************...
[ "tbgit@panthema.net" ]
tbgit@panthema.net
a9d6ce43128f3e7538f26bf2dd6169f214e3a6ed
2c25381bd15f3a7f5ed62a19be90eaf51f0576ed
/c122f10 (C++ ADT Basic)/PROG5/prog5.cpp
fe3b80ae2110f4459d94ef43b443fbefb40cec64
[]
no_license
tepidry/PastWork
d29631585b9fa0399f5f509a3424554a02f712a1
a070855c93fd39c0c4f242c9ad4d411479847cdc
refs/heads/master
2021-01-21T13:56:34.278746
2013-06-13T22:40:03
2013-06-13T22:40:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,801
cpp
//@file prog5.cpp //@author Ryan Draper(draper) //@date 10/12/2010 //@description: This program print the a list of buckets with a colored //@ pebble wither white or blue in it. It will then sort the //@ colors in the bucketsand reprint the containing buckets //@ and their col...
[ "rousery@gmail.com" ]
rousery@gmail.com
421bbe9184a0e29a6f5111affceedda686f79b6e
d81a9ef64fcccd532dcc0dae3235b709a2ff4ebe
/treino17/g.cpp
5a62def5b97f10e342bcd5a4fb257ff78f3f8a1c
[]
no_license
Rodrigo61/GUAXINIM
6d52b0b29dd736ce40295f7e7b3f7dd4c1d2396d
696d1077bf69bcff10cb5c07bb68dd3452952228
refs/heads/master
2021-04-09T14:29:54.226309
2020-11-17T01:18:21
2020-11-17T01:18:21
125,520,161
1
0
null
null
null
null
UTF-8
C++
false
false
741
cpp
#include<bits/stdc++.h> #define ll long long using namespace std; int t; int X, K, lim; int vis[16][16][32768]; ll pd[16][16][32768]; ll solve(int x, int y, int mask) { //printf("%d %d %d\n", x, y, mask); if(x == X) return 1; if(vis[x][y][mask] == t) return pd[x][y][mask]; vis[x][y][mask] = t; ll r = 0; i...
[ "rodrigoaf61@gmail.com" ]
rodrigoaf61@gmail.com
2b9205d6e9b031d274cd8a4a04925bf38ec2603e
cc41bdcdb8a62226d675219513c2ca2000a2e66e
/include/delfem2/mats.h
7f417f922e6dc445fe0e601c7021b753c83b08e2
[ "MIT" ]
permissive
h00shi/delfem2
c621c80e9850a15bea8e7c5d4892bbe5e5523158
569816d03c4360cd64358450039955d0b05e9da9
refs/heads/master
2020-11-27T14:49:49.262879
2019-12-20T14:07:02
2019-12-20T14:07:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,156
h
/* * Copyright (c) 2019 Nobuyuki Umetani * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #ifndef DFM2_MATRIX_SPARSE_H #define DFM2_MATRIX_SPARSE_H #include <vector> #include <cassert> #include <complex> namespace delfem2 { templat...
[ "n.umetani@gmail.com" ]
n.umetani@gmail.com
f41eab2bad8b6b655a282aa6f4d3998b4dcf0026
bcfd3336ae1dcac5e6f3b9e2154caad199043b27
/src/main/LruCacheTests.cpp
35fe311890daeca5d776e3aac3dc1ee1c8edb073
[ "MIT", "BSD-3-Clause", "BSL-1.0", "Apache-2.0", "LicenseRef-scancode-public-domain", "BSD-2-Clause" ]
permissive
acgchain/acg-core
58ba9d4e0dd147c45a51b33017d75402cdce9531
098676521a3211ab702d5f473510dc07e60467e2
refs/heads/master
2020-07-26T11:57:58.634134
2019-10-08T03:39:28
2019-10-08T03:39:28
208,636,187
0
0
null
null
null
null
UTF-8
C++
false
false
2,768
cpp
// Copyright 2014 Stellar Development Foundation and contributors. Licensed // under the Apache License, Version 2.0. See the COPYING file at the root // of this distribution or at http://www.apache.org/licenses/LICENSE-2.0 #include "lib/catch.hpp" #include "lib/util/lrucache.hpp" namespace acg { using IntCache = ca...
[ "ubuntu@ip-172-31-20-103.ap-southeast-1.compute.internal" ]
ubuntu@ip-172-31-20-103.ap-southeast-1.compute.internal
d32985ddd4be76f2cea4e47c640d6011854ff7e5
cd419581c4712024f85e1cc30d4b0299284ea506
/GameOverState.h
361b3f822369997dc3db24270cad58acfa9d60cf
[]
no_license
log4me/SDLFlappyBird
d09343ff9363f5882a87d9a3c2e43390794a15fc
87db9b123f899e001617eb58258fdd3ce27789de
refs/heads/master
2021-01-11T14:39:00.016707
2017-01-27T06:51:50
2017-01-27T06:51:50
80,186,996
1
0
null
null
null
null
UTF-8
C++
false
false
487
h
//GameOverState.h #ifndef GAMEOVERTATE_H #define GAMEOVERTATE_H #include "WorldState.h" class GameOverState : public WorldState{ public: virtual ~GameOverState(); virtual void update(); virtual void render(); virtual bool onEnter(); virtual bool onExit(); virtual string getStateID() const{return s_GameOverID; } ...
[ "126697040@qq.com" ]
126697040@qq.com
63aec6f7bca3f3202a0ae8e082e6d4d7c2f39da2
cd03c87358878916beea5a2bc1debb885f323475
/117.cpp
3c095c82a805dbf448ebff09951789f68a2ef263
[]
no_license
Arrruzhan11/Arrruzhan
9cc66b107e63deaa2c33bccfcb350950d0ef16dd
b3bf590955a593f234d4d1c0ad29605f9e7e459b
refs/heads/master
2020-09-14T13:20:30.303020
2019-11-22T21:32:13
2019-11-22T21:32:13
223,138,848
0
0
null
null
null
null
UTF-8
C++
false
false
253
cpp
#include <iostream> #pragma hdrstop using namespace std; #pragma argsused int main(int argc, char* argv[]) { int n; int sum=0; do { cin >> n; sum=sum+n; } while (n != 0); system("pause"); cout<<sum; return 0; }
[ "arrruzhan11@gmail.com" ]
arrruzhan11@gmail.com
beb64d7c9f4320ba7cc7f1b43e91ef17aa84c1bf
d08d6f7bae8f1f9bc729d67a39946c1b2e5ab57f
/src/GaUtilityFunction.cpp
123fa063116417d03d3f3128270eb680544544a8
[]
no_license
gvtheen/Genetic-Algorithm
77d5d0899584eae1c5a7f13f9612a4b3045115d0
2888fdea34b8ac5176e5726bbdb07ed8d9f1758d
refs/heads/master
2020-07-03T15:49:11.608686
2019-08-18T02:39:17
2019-08-18T02:39:17
201,957,377
0
0
null
null
null
null
UTF-8
C++
false
false
2,155
cpp
/****************************************************************************** ** ** Copyright (C) 2019-2031 Dr.Gui-lin Zhuang <glzhuang@zjut.edu.cn> ** All rights reserved. ** ** ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT ...
[ "glzhuang@zjut.edu.cn" ]
glzhuang@zjut.edu.cn
eb346ac925f6166ab6b9a77c0ed3451145a520d7
d01dc4b327e33816ac2ce2af40945a721f7b5854
/aws-cpp-sdk-kendra/include/aws/kendra/model/ServiceNowServiceCatalogConfiguration.h
57c23c9594ebe9d32ec6b12f6cb343d2a19d00ce
[ "MIT", "Apache-2.0", "JSON" ]
permissive
hpcc-systems/aws-sdk-cpp
36f89272e3b140fea596c73234c09fb240f86520
9c93f28159e1e01ea3ef789a1b0c2c9643955c96
refs/heads/master
2022-07-17T05:18:08.190972
2020-10-19T20:59:11
2020-10-19T20:59:11
90,974,127
0
1
Apache-2.0
2022-06-30T14:47:34
2017-05-11T11:58:14
C++
UTF-8
C++
false
false
14,952
h
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/kendra/Kendra_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSVector.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/kendra/model/DataSourceToIndexFieldM...
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
829937d1082a1d21e5a179803b29dd4a2f926f75
a9e308c81c27a80c53c899ce806d6d7b4a9bbbf3
/SDK/include/WildMagic4/SampleGraphics/DynamicTextures/DynamicTextures.h
6e9a5fa49d9ab917702cd8cd2ce9b9d094f164fe
[ "BSL-1.0" ]
permissive
NikitaNikson/xray-2_0
00d8e78112d7b3d5ec1cb790c90f614dc732f633
82b049d2d177aac15e1317cbe281e8c167b8f8d1
refs/heads/master
2023-06-25T16:51:26.243019
2020-09-29T15:49:23
2020-09-29T15:49:23
390,966,305
1
0
null
null
null
null
UTF-8
C++
false
false
1,127
h
// Geometric Tools, LLC // Copyright (c) 1998-2010 // Distributed under the Boost Software License, Version 1.0. // http://www.boost.org/LICENSE_1_0.txt // http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // // File Version: 4.10.0 (2009/11/18) #ifndef DYNAMICTEXTURES_H #define DYNAMICTEXTURES_H #include "...
[ "loxotron@bk.ru" ]
loxotron@bk.ru
5e1de6bc0f430c663fde1e20798a0d2102e6a3ed
badbd9e3cec2f82245dd1601d300e8e8ecb11275
/Sephy_Engine/world_Ship_Buy_Infor.cpp
90d04b4144bf4f47f752b9d346ade96184819961
[]
no_license
tjddbs4060/Sephy
d824393d93c84d632ad5bcf084957e63d749e074
1d5cd232b19a50bee3f96254710862467f431c09
refs/heads/master
2021-01-23T08:48:55.581043
2017-09-06T02:23:42
2017-09-06T02:23:42
102,549,840
0
0
null
null
null
null
UTF-8
C++
false
false
5,088
cpp
#include "stdafx.h" #include "world_Ship_Buy_Infor.h" #include "world_Player.h" CWorld_Ship_Buy_Infor::CWorld_Ship_Buy_Infor() { for (int i = 0; i < world_ship_buyNS::KIND_RESOURCE; i++) rt_resource[i] = { 0, }; rt_name = { 0, }; rt_turn = { 0, }; ship = nullptr; } CWorld_Ship_Buy_Infor::~CWorld_Ship_Buy_Infor...
[ "tjddbs4060@naver.com" ]
tjddbs4060@naver.com
df54a8810d0fb60f166b7c9d95a85712c2a6bfd5
7dfb7e6f21753e1fdeb9a70595eced9deaedfb7c
/src/learningquadblending.h
4d42d738477f5211e8d7f03dfc7b5b06624c901a
[]
no_license
matty5749/QGLLearning
d9d08bacb81d56a4ac9015150e11b7f181d32b03
b2ac7b1b95574028098030961a69bbd4fdef26bf
refs/heads/master
2020-05-16T08:24:06.676406
2012-05-30T16:00:53
2012-05-30T16:00:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
737
h
/** *\file learningquadblending.h *\author Gaetan PICOT *\version 2.0 Copyright CC-BY-NC-SA (Creative Commons) https://fr.wikipedia.org/wiki/Licence_Creative_Commons */ #ifndef LEARNINGQUADBLENDING_H #define LEARNINGQUADBLENDING_H #include "learning.h" class GLQuadBlending; class QGLClearColor; /** * \class Lear...
[ "gaetanpicot@hotmail.fr" ]
gaetanpicot@hotmail.fr
ff8888b379ec2d37a8a36cb94f2af019a875f23c
b22c254d7670522ec2caa61c998f8741b1da9388
/physXtest/UserAllocator.h
afc94cdabee2aaf54399328c16601cca79716803
[]
no_license
ldaehler/lbanet
341ddc4b62ef2df0a167caff46c2075fdfc85f5c
ecb54fc6fd691f1be3bae03681e355a225f92418
refs/heads/master
2021-01-23T13:17:19.963262
2011-03-22T21:49:52
2011-03-22T21:49:52
39,529,945
0
1
null
null
null
null
UTF-8
C++
false
false
877
h
#ifndef USERALLOCATOR_H #define USERALLOCATOR_H #include "SampleMutex_WIN.h" class UserAllocator : public NxUserAllocator { public: UserAllocator(); virtual ~UserAllocator(); void reset(); void* malloc(size_t size); void* malloc(size_t size, NxMemoryType type); void* ...
[ "vdelage@3806491c-8dad-11de-9a8c-6d5b7d1e4d13" ]
vdelage@3806491c-8dad-11de-9a8c-6d5b7d1e4d13
ec7b56624bc4a1144f1aa64397cdcdd4cb9cc8da
0f798a45a35129a0d831b1600672a43552501639
/samples/distance-field/distance-field.cpp
a20f6d540f78e0de55046a1e6835bf1de65e6410
[ "MIT" ]
permissive
galek/brokkr
1d1151aef0ed828b69e069b1db2acba3ff82a71a
9917d9315df2e9b2d4f03be36b9a7efd0d07c698
refs/heads/master
2021-11-10T14:52:47.600698
2019-09-23T15:25:54
2019-09-23T15:25:54
169,486,601
0
0
null
2019-02-06T22:28:06
2019-02-06T22:28:06
null
UTF-8
C++
false
false
19,747
cpp
/* * Copyright(c) Ferran Sole (2017-2019) * * This file is part of brokkr framework * (see https://github.com/fsole/brokkr). * The use of this software is governed by the LICENSE file. */ // This sample is work in progress. #include "framework/camera.h" #include "core/render.h" #include "core/window.h" #include "cor...
[ "wfsole@gmail.com" ]
wfsole@gmail.com
0a304f40c5ab4e5581826fffd917479b85f406b7
962d13134dd48d6261e56828c8f69bfb575ff3e7
/kernel/arch/arm64/periphmap.cpp
4890628d56513152bfa5eee21e948a50cf2885c2
[]
no_license
saltstar/smartnix
a61295a49450087a7640c76774f15fb38f07e950
8cb77436763db43f70dbe49ea035f5f7e29becac
refs/heads/master
2021-01-17T21:23:58.604835
2019-12-27T01:21:38
2019-12-27T01:21:38
35,830,495
2
0
null
null
null
null
UTF-8
C++
false
false
1,699
cpp
#include <arch/arm64/mmu.h> #include <arch/arm64/periphmap.h> #include <vm/vm.h> #include <vm/vm_aspace.h> #define PERIPH_RANGE_MAX 4 typedef struct { uint64_t base_phys; uint64_t base_virt; uint64_t length; } periph_range_t; static periph_range_t periph_ranges[PERIPH_RANGE_MAX] = {}; zx_status_t ad...
[ "376305680@qq.com" ]
376305680@qq.com
d0d87d5b6f1c921b501440e569518ac536fb90d6
d9f78b0cd0bc18a08add95519f88b9ffef44cd95
/game/prj/Win32/main.cpp
948d9b5b7fbef858f9442b10d37295971a96d6eb
[ "MIT" ]
permissive
funZX/game-sdk
cb1bc88b0f85ea75dc8d24d5b94053a74a6acd1d
6d6cee60a1a63b5b6b3f1e9c4664ed9ed791a767
refs/heads/master
2021-03-22T05:03:36.193977
2020-04-05T19:22:45
2020-04-05T19:22:45
53,523,297
5
0
MIT
2020-04-05T19:22:46
2016-03-09T18:55:45
C++
UTF-8
C++
false
false
9,539
cpp
#include <windows.h> #include <imgui.h> #include <GLFW/glfw3.h> #include <Game.h> #include <GameState/State_AppInit.h> CGame* game = nullptr; void onQuit() { #ifdef _DEBUG _CrtDumpMemoryLeaks(); #endif } void onStart() { #ifdef _DEBUG _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF); //_crtB...
[ "asiminciuc@yahoo.com" ]
asiminciuc@yahoo.com
07e3a5348be7bdb954d3c8af3d99aa2784f53d07
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/content/shell/browser/shell_content_browser_client.h
dfb71708cc90cc82a3e77213c67d71772d939920
[ "BSD-3-Clause", "Apache-2.0" ]
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,545
h
// 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. #ifndef CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ #include <memory> #include <s...
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com
f1916667a65e49d6d66b5b5d50ee1c9ff2e6b66c
94c71c83ddcaab81cec9cdd10f203997816caae7
/Universe2D.Sample1/GameManager.h
926c58108b1de3ba3680b43992b15dff9abc391c
[]
no_license
likun123687/Universe2D
3e0aa5ab35835fa46ec1672220e66b1a441eeec0
995daad52ca8858283c6a33a8885921df423ca52
refs/heads/master
2021-06-26T06:22:29.386546
2017-09-01T12:08:28
2017-09-01T12:08:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
287
h
#pragma once class Player; class GameManager : public Singleton<GameManager> { public: bool IsStageClear1; bool IsStageClear2; public: Player* Player; public: GameManager() : IsStageClear1(false) , IsStageClear2(false) , Player(nullptr) {}; virtual ~GameManager() {}; };
[ "okps123@naver.com" ]
okps123@naver.com
f68a6dfbca8960296f18237daaa6b8bed6ea0718
27858142e5947ac7a519e0cfd5f79275e6496d35
/graphlabapi/tests/rpc_example2.cpp
a7e874f88aaf1bee7f279b832de6d01daaa562c4
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
greeness/graphlab_CMU
97c4d74a967619ba803eb4f28fdd3458f29746b1
90f6565d45e6aa2ad7507e9d7c9528cab95c8a40
refs/heads/master
2021-01-21T19:28:16.403305
2011-11-08T20:19:07
2011-11-08T20:19:07
2,736,580
0
1
null
null
null
null
UTF-8
C++
false
false
2,155
cpp
/** * Copyright (c) 2009 Carnegie Mellon University. * 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...
[ "greeness@gmail.com" ]
greeness@gmail.com
53a4e66fe14dad77f8a01afba79e341820d01108
83bacfbdb7ad17cbc2fc897b3460de1a6726a3b1
/v8_7_5/src/runtime/runtime-utils.h
7d35010435fe895549cabf39fe6e84891e172c24
[ "Apache-2.0", "bzip2-1.0.6", "BSD-3-Clause", "SunPro" ]
permissive
cool2528/miniblink49
d909e39012f2c5d8ab658dc2a8b314ad0050d8ea
7f646289d8074f098cf1244adc87b95e34ab87a8
refs/heads/master
2020-06-05T03:18:43.211372
2019-06-01T08:57:37
2019-06-01T08:59:56
192,294,645
2
0
Apache-2.0
2019-06-17T07:16:28
2019-06-17T07:16:27
null
UTF-8
C++
false
false
5,951
h
// Copyright 2014 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_RUNTIME_RUNTIME_UTILS_H_ #define V8_RUNTIME_RUNTIME_UTILS_H_ #include "src/base/logging.h" #include "src/globals.h" #include "src/objects.h"...
[ "22249030@qq.com" ]
22249030@qq.com
50cd480dc84d3258cc16cb4c55a52ec0c35830c5
9c4b18c0fdd4446a5693e04f107a0238b15a3045
/benchmark-server/old-versions/benchmark-server-0.1/palisade/library/src/core/lib/math/nbtheory.h
26ab319d1b950f6211f5dbf935437a752d2646ec
[ "BSD-2-Clause" ]
permissive
woswos/e3-obfuscation-wars
744b298dcf0c1322da4e301614c3eb6f636daba1
2374d66969eb09bb2d4c07dd6212b18dc5a33d72
refs/heads/master
2020-05-31T15:13:35.820135
2020-02-08T21:01:01
2020-02-08T21:01:01
190,347,887
0
1
null
2019-07-16T01:21:01
2019-06-05T07:34:10
C++
UTF-8
C++
false
false
15,470
h
/** * @file nbtheory.h This code provides number theory utilities. * @author TPOC: palisade@njit.edu * * @copyright Copyright (c) 2017, New Jersey Institute of Technology (NJIT) * All rights reserved. * Redistribution and use in source and binary forms, with or without modification, * are permitted provided th...
[ "barkin.simsek@hotmail.com" ]
barkin.simsek@hotmail.com
5af1405a7519c334f10a06c0b6c9ae057b898a53
928408979b465e7afaef8879a645e059441402b7
/japanese pitch analysis/dictionary-builder/main.cpp
2f0dd1ea4a5523a9647cf7f6c80b248a7cbc60fb
[]
no_license
raylinhonghu/music-retrieval-technique
d3c910ce4f26710b2b962bd8241e2f32d27d1b7d
16cf64ad03764134ff4ea16b5eb4c7ad0a56296c
refs/heads/master
2021-05-05T01:51:01.983357
2018-01-31T23:48:16
2018-01-31T23:48:16
119,758,036
1
0
null
null
null
null
UTF-8
C++
false
false
19,410
cpp
#include <fcntl.h> #include <io.h> #include <cstdio> #include <fstream> #include <codecvt> #include <unordered_set> #include <unordered_map> #include <cassert> // Reads a file encoded in UTF-8 with automatic conversion to UTF-16. // UTF-16 is easier for Japanese than UTF-8. Not perfect, but good enough. // Note "wid...
[ "raylinhonghu@gmail.com" ]
raylinhonghu@gmail.com
5b71da4b5d69e71479c5b4d86f1ae2712977cfe3
e9668710663ddce4f42aa0b35f307d060b1d98f4
/cell/resources/shader_loader.cpp
39cb8fd05184d04e4b614ad17a03302465bb52d1
[]
no_license
paubertin/Cell
5d362d3566299233d26151c64d01958bef029ccf
286209f9e459edbd42358a3120a935c27779d81c
refs/heads/master
2021-01-22T14:25:18.706735
2016-08-17T18:54:06
2016-08-17T18:54:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,136
cpp
#include "shader_loader.h" #include <utility/logging/log.h> namespace Cell { Shader ShaderLoader::Load(std::string vsPath, std::string fsPath) { std::ifstream vsFile, fsFile; vsFile.open(vsPath); fsFile.open(fsPath); // NOTE(Joey): if either of the two files don't exist, retu...
[ "joey.d.vries@gmail.com" ]
joey.d.vries@gmail.com
02f7ad2dd89798dbb641288a3b3a65af6f63b384
bcb9cdda3f3d449be90846e6c4e81a9b9f5f0e99
/solutions/denis_sychou/2/sources/2_5/small_buffer.cpp
5a7d43d4c343779c2c73f681dd0a9b9e01b44bed
[]
no_license
marozau/cpp_craft_0314
4b264c6956f303e7b89cd86cc712c13e1654eb89
4c2e312bf8c4d75d675c889e2b23bb6cace7aadb
refs/heads/master
2021-01-20T05:04:51.826658
2014-06-12T13:49:52
2014-06-12T13:49:52
17,398,797
2
1
null
2014-07-09T06:51:42
2014-03-04T10:44:28
C++
UTF-8
C++
false
false
1,421
cpp
#include "market_message.h" #include <fstream> #include <map> int main() { std::ifstream in( BINARY_DIR "/input.txt", std::ios::binary ); if ( !in.is_open() ) return 1; typedef std::map < boost::uint32_t, size_t > type_map; const size_t memory = 2048, max_type = 100000; size_t current = 0; type_map type_siz...
[ "gost402@gmail.com" ]
gost402@gmail.com
6fa598b0195bf33fc3b0e906f5d0c7aef9ed7399
d9c1c4ae9e03d9e2782d8a898e518a3b8bf6ff58
/DtuConfigDlg/UserInterface/OuterDev.cpp
b1a15bc77f120db3c44ed46558ca20ff9c938be0
[]
no_license
zhaohongqiang/Codes
753166b168a081d679e474ad0b0062d463a06096
f28c860a65afc81ba19d1f49e1edbda719f44f03
refs/heads/master
2021-03-04T16:11:47.299084
2019-11-02T06:12:39
2019-11-02T06:12:39
null
0
0
null
null
null
null
GB18030
C++
false
false
3,134
cpp
// OuterDev.cpp : 实现文件 // #include "stdafx.h" #include "DtuConfigDlg.h" #include "OuterDev.h" // COuterDev 对话框 IMPLEMENT_DYNAMIC(COuterDev, CDialog) COuterDev::COuterDev(CWnd* pParent /*=NULL*/) : CDialog(COuterDev::IDD, pParent) { for(int i = 0; i < MAX_PORT_NUM; i++) { pPort[i] = new COuterDevPort; } por...
[ "jc1402080216@163.com" ]
jc1402080216@163.com
896e0e28c42b248456d7e1e1b508240148e28334
d6314f33364c36871e2fc7bd49dc0bb9355f242e
/Codeforces/CF Global Round 7/CF Global Round 7/E.cpp
648c0221509e289bc95ed1090f4a1124f2b8b292
[]
no_license
lucasxia01/Competitive-Programming-Problems
26a953cc54ab55be972a79adae0bc79e8dc844e1
a90da940a5cef6faf10efbefa241ad7e799be53a
refs/heads/master
2022-08-31T12:29:36.715884
2022-08-17T04:22:56
2022-08-17T04:22:56
152,951,359
1
0
null
null
null
null
UTF-8
C++
false
false
3,590
cpp
#include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <algorithm> #include <functional> #include <stdlib.h> #include <time.h> #include <complex> #include <iterator> #include <regex> #include <fstream> #include <utility> #include <vector> #include <string> #include <cstring> #include <stack>...
[ "lucasxia01@gmail.com" ]
lucasxia01@gmail.com
28e03bca94e10182d79b5993b4732a0c6c7abc4f
20a160e051555c4729afe14155057901ddd773c2
/arduino/libraries/RedBear_Duo/src/include/ArduinoJson/Internals/JsonBufferAllocated.hpp
97328faf1a749eb4423dce3b6b38ca890c13393f
[ "MIT" ]
permissive
redbear/STM32-Arduino
1ae9919baf9fa9e7230a3e50e4c2805ec1250713
b35fb3de95ba4faee41026cb38d0cc18e53ff84f
refs/heads/master
2020-02-26T14:01:21.081333
2018-08-29T08:30:59
2018-08-29T08:30:59
45,290,348
67
51
null
2017-11-05T20:43:15
2015-10-31T05:40:47
C
UTF-8
C++
false
false
527
hpp
// Copyright Benoit Blanchon 2014-2016 // MIT License // // Arduino JSON library // https://github.com/bblanchon/ArduinoJson // If you like this project, please add a star! #pragma once #include "../JsonBuffer.hpp" namespace ArduinoJson { namespace Internals { class JsonBufferAllocated { public: ...
[ "jianxing@redbear.cc" ]
jianxing@redbear.cc
ff6ecd492a4e0654901249c572fca5efcc17c571
0e5e0239f8c0b7ccacc19fb746a046981952cc30
/Engine.Tests/MidpointIntegraion_tests.cpp
2573adb49ce39f95a08df5f01c1058631ed64042
[]
no_license
vivekbhadra/Computational-Finance
612948b003276f3b1e4cc7ff0e24850bc922b30c
b9f7103ccbdcc8a1971e32d8e1d83bf28aa10c7d
refs/heads/master
2023-03-20T06:51:29.602424
2018-12-30T15:36:01
2018-12-30T15:36:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,825
cpp
#include "stdafx.h" #include <gtest/gtest.h> #include "Common.h" #include "MathFunction.h" #include "MidpointIntegration.h" #include "TrapezoidIntegration.h" #include "SimpsonsIntegraion.h" using namespace std; using namespace Common; using namespace NumericalMethods; namespace NumericalTests { namespace { class...
[ "bmoretz@ionicsolutions.net" ]
bmoretz@ionicsolutions.net
22e8b0e1a11b56bc185da90e4052ffaff0f2ae08
d32424b20ae663a143464a9277f8090bd017a7f6
/leetcode/402-RemoveKDigits.cpp
a9a56f72c456c85f2c8aeda90e3461999a5f6766
[]
no_license
Vesion/Misirlou
a8df716c17a3072e5cf84b5e279c06e2eac9e6a7
95274c8ccb3b457d5e884bf26948b03967b40b32
refs/heads/master
2023-05-01T10:05:40.709033
2023-04-22T18:41:29
2023-04-22T18:43:05
51,061,447
1
0
null
null
null
null
UTF-8
C++
false
false
700
cpp
#include <iostream> #include <algorithm> #include <vector> #include <string> using namespace std; // greedy, stack class Solution { public: string removeKdigits(string num, int k) { int n = num.size(); int m = n-k; string res; for (int i = 0, j = 0; i < n; ++i) { while (...
[ "xuxiang19930924@126.com" ]
xuxiang19930924@126.com
56b03ea49f17120f13c09b45f880b28d7d08b415
1af3ece40dbd345faebe934f1cf75d520647f1b9
/staple/crkit_build/crkit/release-1.5.2/tools/code/crlImageAlgebra.h
243d9f61dcaedf4bc827682126d4ca4c12b570e0
[]
no_license
ImageGuidedTherapyLab/ExLib
987fa9d7ac09b3664ad7f1edb0a47d6a3aff8772
b01e5347a624225a086c4c46ed59a0a303d95b18
refs/heads/master
2023-04-03T18:11:05.424078
2023-04-02T16:20:00
2023-04-02T16:20:00
13,075,319
7
1
null
null
null
null
UTF-8
C++
false
false
3,473
h
#ifndef _CRL_IMAGEALGEBRA_INCLUDED #define _CRL_IMAGEALGEBRA_INCLUDED 1 #include <itkImage.h> #include <itkVector.h> #include <itkImageFileReader.h> #include <itkImageFileWriter.h> #include <itkAddImageFilter.h> #include <itkMultiplyImageFilter.h> #include <itkSubtractImageFilter.h> #include <iostream> class ITK_EX...
[ "fuentesdt@gmail.com" ]
fuentesdt@gmail.com
3418ce05c10fee7abe4cefbc1abf906327c6061e
9d45d02d97d2660454f371bedef2130ce778c044
/Builds/Il2CppOutputProject/Source/il2cppOutput/UnityEngine.CoreModule.cpp
7ea34ced4b9e87f55a8c8a680a55192b7e7002f5
[]
no_license
rfal1337/KorpiForRestDisplay
967c37ac03ee8161292d8d23dd4e1b7faf145a43
19edc13afaf25807e58ec571aa6c9507b66611a1
refs/heads/master
2021-01-15T01:35:57.058807
2020-02-22T13:40:00
2020-02-22T13:40:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,833,816
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 <stdint.h> #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" template ...
[ "vilppu_97@hotmail.com" ]
vilppu_97@hotmail.com
c6c7f2ed2deee32a70c80d6a45df28da59d8cb0c
7b7d03b1e3b3c9b5e695e94049a25303029cf480
/ch06/ex6_11.cpp
8b086cb4105899f1f3167158a3c021984561bd52
[]
no_license
liuhuoer/CppPrimer
533b7281f2ef8e70e7b7c29335b738ba3bf45aed
d7ce4bb61704315cc2d588fe8a1392b28d53068f
refs/heads/master
2020-03-18T03:18:11.697289
2019-01-29T08:22:33
2019-01-29T08:22:33
134,233,628
1
0
null
null
null
null
UTF-8
C++
false
false
152
cpp
#include <iostream> using std::cout; using std::endl; int reset(int & x) { return x=0; } int main() { int x=8; cout<<reset(x)<<endl; return 0; }
[ "951340249@qq.com" ]
951340249@qq.com
4383201ce18c2e3fd9d956675e064518303b2944
c584c80f7b4e2e418527f52069adb016b4c1e4dc
/app/cpp/jniwrap/session.h
ae81202a33aacc0f0dd773ad0c34be9126009a3f
[ "Apache-2.0" ]
permissive
yuanhongtao/roboTV
a5fcd49f84be95d4bfbb55026bb547390a867028
161383c5eedf697543381bbc9cf5b2e8fddc049e
refs/heads/master
2021-01-19T03:38:24.178419
2017-03-08T20:20:54
2017-03-08T20:20:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
735
h
#ifndef SESSION_H #define SESSION_H #include <msgsession.h> #include "sessionlistener.h" class Session : public MsgSession { public: Session() = default; virtual ~Session() = default; void setCallback(SessionListener* listener) { m_callback = listener; } protected: void OnNotification...
[ "alexander.pipelka@gmail.com" ]
alexander.pipelka@gmail.com
63c6f0814c341c41eebb989504fc4951f92cd155
88410ec11e9458ed7086dfcd3516d90765505a02
/Tiger_frontend/LivenessAnalysis.cpp
747ae48a9be63d8acb1c70abe0f756043ae5042f
[]
no_license
hychen-naza/Tigercc
162289ec67413a44821b200cf336cc069d8eba09
7a231120180d9b9eabaa42a28f1488844cd17843
refs/heads/master
2020-12-06T11:01:35.263910
2020-01-12T01:49:25
2020-01-12T01:49:25
232,446,536
1
1
null
null
null
null
UTF-8
C++
false
false
16,883
cpp
#include <iostream> #include <sstream> #include <string> #include <vector> #include <algorithm> #include <regex> #include <set> #include <map> #include <iterator> #include <iomanip> #include "scope.cpp" #include "BackEndHelper.h" class LivenessAnalysis{ Scope *globalScope; int sNum; public: LivenessAnalysis(S...
[ "hongyic@andrew.cmu.edu" ]
hongyic@andrew.cmu.edu
f59c518d929185cf060a363742ff1be14af335e1
58cd29467c422b32b53c7d83a771d6600fc98a4d
/src/Renderers/Shaders/ShaderChunk/lights_fragment_end.glsl.h
f72d2e83903895982475d3f2ff3d41295fc88999
[]
no_license
yudhcq/ThreeWasm
c2f0c121bb2d9558a022e4d3fc64f16500ab18ed
6a8cc52ef9e4b3a1b4e49e84c2d934a69bf87e8b
refs/heads/master
2023-01-29T08:53:26.430109
2020-11-11T05:39:02
2020-11-11T05:39:02
286,633,241
1
0
null
null
null
null
UTF-8
C++
false
false
81
h
#pragma once namespace Three::Renderers { class lights_fragment_end.glsl{ }; }
[ "yudhcq@163.com" ]
yudhcq@163.com
f9cf05cf509a144e19e48314c1686ce52a8c52b0
c2cb548aaff4c9346bd859cd27ac79068d340d45
/VJudge/SPOJ/PRIME1/PRIME1-1.cpp
c744f12f2f623beaf19927c756bf1c49b037058d
[]
no_license
arnabxero/online-judges-problem-solutions
28997ab7e14bd1c2861b393e04b093c89f87cce9
506fe0c29742ceeb152f2698a30f7b32994a0e3e
refs/heads/master
2023-09-01T09:42:35.746179
2021-10-04T23:15:11
2021-10-04T23:15:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,309
cpp
// Problem name: Prime Generator // Problem link: https://vjudge.net/problem/SPOJ-PRIME1 // Submission link: https://vjudge.net/solution/32892798 #include <bits/stdc++.h> using namespace std; typedef long long ll; vector<int> get_primes(int n){ vector<char> prime(n + 1, 0); vector<int> primes; for(int i...
[ "josea132.romero@gmail.com" ]
josea132.romero@gmail.com
a76447ee5f628904b8aa6c01ed06654816b386c7
6d48da9106dd6fa20630af71094d0790369cfb68
/cpp/dfs_algos.h
7e3db78a4476b811ba85282cadcd1c8ff00d49bc
[]
no_license
peanut-buttermilk/fun-run
968f587ea80f32be92c6825b9274ad25ff9ac275
187a11b41d14e4bf29380bdcd1c542d06545ee1a
refs/heads/master
2021-01-21T09:34:33.838314
2020-06-07T20:50:41
2020-06-07T20:50:41
53,075,983
0
0
null
null
null
null
UTF-8
C++
false
false
865
h
// // dfs_algos.h // CPP Test9 // // Created by Balaji Cherukuri on 8/13/15. // Copyright (c) 2015 FooBar. All rights reserved. // #ifndef __CPP_Test9__dfs_algos__ #define __CPP_Test9__dfs_algos__ #include <memory> #include <vector> struct EdgeNode; typedef std::shared_ptr<EdgeNode> EdgeNodePtr; struct EdgeNode...
[ "dharabalaji@Dharas-MacBook-Air.local" ]
dharabalaji@Dharas-MacBook-Air.local
c3b60f0ebb8ad8bcc8c18ba0229dd58708aef84b
952bf80862feda741b90c9876adeebd6d0d7e7d5
/devel/include/mir_actions/RelativeMoveResult.h
262d70025ae2a4abd0bea39b69861cb5a7469713
[]
no_license
AILab121/OOSE
a9212680ff13f2fabb4b41b4779ba6562acf3202
64d7d82ad7c005c2fb82e06f07804dc1d5e17c28
refs/heads/main
2023-09-04T15:58:27.879514
2021-11-10T08:36:46
2021-11-10T08:36:46
370,997,955
0
0
null
null
null
null
UTF-8
C++
false
false
7,933
h
// Generated by gencpp from file mir_actions/RelativeMoveResult.msg // DO NOT EDIT! #ifndef MIR_ACTIONS_MESSAGE_RELATIVEMOVERESULT_H #define MIR_ACTIONS_MESSAGE_RELATIVEMOVERESULT_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_messag...
[ "a2852441@gmail.com" ]
a2852441@gmail.com
074ead72b2c1c7457cc9c888ebeeb8f4dad912f2
23f387f0a6286e371dcf74c162efe29e1cf27380
/src/main.cpp
c0a1a707d245c8bf18a098057cc20138f355b700
[ "MIT" ]
permissive
edwincarlson/cmake-gtest-gcov-project-template
0047a934260a43698389cc50e8d9e5d98e47bc24
68f362f45c2fe7e2df500892a2f80b62c3f56bff
refs/heads/master
2022-08-19T08:59:19.933793
2020-05-24T20:11:02
2020-05-24T20:11:02
266,614,505
0
0
null
null
null
null
UTF-8
C++
false
false
397
cpp
#include <iostream> #include "lms_config.h" #include <book.h> int main(int argc, char* argv[]) { // report version std::cout << "========================================" << std::endl; std::cout << "Library Management System \n" << "Version " << LMS_VERSION_MAJOR << "." << LMS_VERSION_MINOR << std::endl; ...
[ "edwin.l.carlson@gmail.com" ]
edwin.l.carlson@gmail.com
df1b25324baae15f918ad891a33f21a99bfab565
b6d2cb74a76194fd25fdc3607ef828e94d98039e
/Algorithms/Miscellaneous/matrixExponentiation.cpp
6e18189d8c745f08c89a1c12d3a882c2948ea6a3
[]
no_license
giovaneaf/CompetitiveProgramming
22d63481015ab45a03d527c866cae339cffeb5fb
863f6bc61497591cb98e50973aa23bfcb9879ab8
refs/heads/master
2021-06-07T20:28:45.116299
2021-05-25T00:38:16
2021-05-25T00:38:16
131,643,425
6
1
null
null
null
null
UTF-8
C++
false
false
1,272
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define ii pair<int, int> #define vii vector<ii> const int N = 2; const ll mod = 1e6; ll M[2][2]; ll ans[2][2]; inline void ones(ll y[2][2]) { for(int i = 0; i < N; i++) for(int j = 0; j < N; j++) y[i][j] = (i == j ? 1LL : 0LL); } void mul...
[ "giovaneaf1995@gmail.com" ]
giovaneaf1995@gmail.com
e2690cc758a4648fca23634b8802167860547952
0d6560bb341dca5ab9a5c0f4c9fb3970e2fdb035
/POSCAT/upload/code/acmicpc/9243.cpp
9882dfc355d34a5ec60795a35da2873fedd10371
[]
no_license
yougatup/yougatup.github.io
7737d70baceab147fed645d40cd63f66f2be22bd
194626540a90b15d9b9279e185886c701385bb7f
refs/heads/master
2020-04-12T05:39:11.078724
2016-10-14T01:28:23
2016-10-14T01:28:23
65,126,836
0
0
null
null
null
null
UTF-8
C++
false
false
302
cpp
#include <iostream> #include <string> using namespace std; int main() { int n,i,len; string a,b; cin>>n>>a>>b; for(i=0,len=a.size();i<len;i++) if((a[i]==b[i])==(n%2==1)) { cout<<"Deletion failed"<<endl; return 0; } cout<<"Deletion succeeded"<<endl; return 0; }
[ "yougatup@gmail.com" ]
yougatup@gmail.com
bc6d95525d2f4803ef87adb02fa0caaa123605e9
6220fb23404faffdf29b343c4029408e8d17119a
/BattleTank/Source/BattleTank/Public/Projectile.h
b20869ccc8f79b2f9c3070a015e0b66d09614adf
[]
no_license
Storsysm/UE4Course_BattleTank
50f197cfe740ca5526b3c527f069b074d24f3823
063f3aa4516a1857fb80a184f7d1708a2cde2cf0
refs/heads/master
2021-11-28T19:28:51.627891
2021-11-07T16:06:43
2021-11-07T16:06:43
98,225,297
0
0
null
null
null
null
UTF-8
C++
false
false
1,346
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "GameFramework/Actor.h" #include "GameFramework/ProjectileMovementComponent.h" #include "Projectile.generated.h" UCLASS() class BATTLETANK_API AProjectile : public AActor { GENERATED_BODY() public: // Sets defau...
[ "petru_ghiorghita@hotmail.com" ]
petru_ghiorghita@hotmail.com
92f0a268689d0dbf809858cb60e548b617bffb56
fa476614d54468bcdd9204c646bb832b4e64df93
/CDF/138DIV1/B.cpp
b74fc274d0a3355034e271eb7d7308035ffa7f8a
[]
no_license
LuisAlbertoVasquezVargas/CP
300b0ed91425cd7fea54237a61a4008c5f1ed2b7
2901a603a00822b008fae3ac65b7020dcddcb491
refs/heads/master
2021-01-22T06:23:14.143646
2017-02-16T17:52:59
2017-02-16T17:52:59
81,754,145
0
0
null
null
null
null
UTF-8
C++
false
false
1,123
cpp
#include <bits/stdc++.h> using namespace std; #define sc( x ) scanf( "%d" , &x ) #define REP( i , n ) for( int i = 0 ; i < n ; i++ ) #define clr( t , val ) memset( t , val , sizeof(t) ) #define all(v) v.begin() , v.end() #define pb push_back #define SZ( v ) ((int)(v).size()) #define mp make_pair #define fi first #d...
[ "luisv0909@gmail.com" ]
luisv0909@gmail.com
30bb9e8113ca6a0b9302cdeb2ef4192e9a308fa7
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/third_party/blink/renderer/core/css/check_pseudo_has_argument_context.h
db1c44fb9353a77926addf1426f02905eecfc132
[ "BSD-3-Clause", "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "MIT", "Apache-2.0" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C++
false
false
14,869
h
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CHECK_PSEUDO_HAS_ARGUMENT_CONTEXT_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CHECK_PSEUDO_HAS_ARGUMENT_CONTEXT_H_ #include "thi...
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
ddc1a2929362a97711385baa1ffe616fec85736b
dc46fd870e50f827199033debc8ecd30eeafcd95
/JCore/CubeComponent.h
09d1224f9e2a7b3997e07509fff4e62cbd0c1cd4
[]
no_license
JiaoJianing/JCore
249623ae5f1b77f3efd63c097783b359032be907
5feef9594a9fc5d941fd96b0582956cc838c95c4
refs/heads/master
2021-06-04T05:03:10.547501
2019-12-30T06:27:01
2019-12-30T06:27:01
128,857,619
10
1
null
null
null
null
UTF-8
C++
false
false
478
h
#pragma once #include "BaseComponent.h" #include "CubePrimitive.h" class CubeComponent : public BaseComponent { public: CubeComponent(); CubeComponent(const std::string& diffuse, const std::string& normal, const std::string& specular); ~CubeComponent(); virtual void Update(double curFrame, double deltaFrame); v...
[ "jiaojn@skong.com" ]
jiaojn@skong.com
cdce6c3807ff793c83d83dcaf71dad6b01ffa4c9
e70d0b07070ada4f638505a7c403e3f4aa4a51d6
/src/End.cpp
1352f3d718ea84ed9b37ebdbba994a610c3a1b12
[]
no_license
bahermursi/MFSM
bde556b20100ad298089c3f9eca6f6171e726fbb
31f87d48f4c3669777f6730ad55397289852bd74
refs/heads/master
2021-01-12T18:14:38.714787
2016-12-09T20:01:16
2016-12-09T20:01:16
71,348,340
0
0
null
null
null
null
UTF-8
C++
false
false
434
cpp
// // End.cpp // FiniteStateMachine // // Created by Baher Mursi on 4/3/16. // Copyright (c) 2016 Baher Mursi. All rights reserved. // #include "End.h" //#include "Simulator.h" End:: End(){ } End:: ~End(){ *endFsm = false; } void End::parse(string){ } //Function that sets the boolean of ending the machine to t...
[ "bahermursi@hotmail.com" ]
bahermursi@hotmail.com
59e56d59fc7ae8ab2f799f8d982ea435600322f8
fa81e8aaae44ea2401493442b58edeac23772d6d
/Classes/BarrierLaser.cpp
d9da53565ab2c94bbf53695303494d1b4c55abc2
[]
no_license
thieuhuyenuit88/DemoCocos2dxJuppyJupGame
9a58c40595f09e9b25024e570108b14afe9aa535
5dd2837c32a3040faa22a2d6924cc86777dd7c48
refs/heads/master
2021-01-20T06:14:45.305107
2017-03-05T05:16:43
2017-03-05T05:16:43
83,867,750
0
0
null
null
null
null
UTF-8
C++
false
false
7,359
cpp
#include "BarrierLaser.h" #include "CRandom.h" #include "Constants.h" BarrierLaser::BarrierLaser(void) { collistionBoxLaser = Rect(0,0,0,0); typeLaser = laserDirect = speedLaser = 0; } BarrierLaser::~BarrierLaser(void) { } bool BarrierLaser::Init(cocos2d::Layer *layer, Point pos, float speed, int direct){ this...
[ "thieuhuyenuit88@gmail.com" ]
thieuhuyenuit88@gmail.com
5e9fdc69660d6fe7ea9d2777a83f4ea27a33bccc
c17ef4827869dbed4fd9e9af70ed77d620898b77
/codeForces/kotlin_h/feb20/c.cpp
eb730bd3411e7fd82bcc917dc006e70e6b668eff
[]
no_license
Dsxv/competitveProgramming
c4fea2bac41ddc2b91c60507ddb39e8d9a3582e5
004bf0bb8783b29352035435283578a9db815cc5
refs/heads/master
2021-06-24T15:19:43.100584
2020-12-27T17:59:44
2020-12-27T17:59:44
193,387,301
0
0
null
null
null
null
UTF-8
C++
false
false
847
cpp
#include <bits/stdc++.h> using namespace std ; #define int long long int32_t main(){ int t ; cin >> t ; while(t--){ int n ; cin >> n ; vector<pair<int,int>> p ; int a[n] ; for(int i = 0 ; i < n; i++) { cin >> a[i] ; if(!a[i]) continue ; p.push_back({a[i],i}) ; } int ans[n] = {} ; for(int i...
[ "dsxv007@gmail.com" ]
dsxv007@gmail.com
b03a76c93c123998f5c18bd3d4d040cbcad4a5d4
f36df0409feb127f026e6ab85053d4b02404aa81
/solutions151-200/problem187.cpp
a8dd1aa87c15c5fdfd9ee50c96701baaf8fac1a5
[]
no_license
giaosame/LeetCode
b55e07a84893ba81fa8f3b65954df5e4502bf20e
a0fcce486f5cfdced91dfcba5e44592899addd01
refs/heads/master
2020-07-22T02:43:01.217437
2020-06-01T18:45:05
2020-06-01T18:45:05
207,051,234
0
0
null
null
null
null
UTF-8
C++
false
false
462
cpp
// 187. Repeated DNA Sequences #include <string> #include <vector> #include <unordered_map> using namespace std; class Solution1 { public: vector<string> findRepeatedDnaSequences(string s) { vector<string> seqs; if (s.size() < 10) return seqs; unordered_map<string, int> map; for (int i = 0; i < s.size(...
[ "qzcqs@icloud.com" ]
qzcqs@icloud.com
a11ec35ecfbb271939f80fec76f5c3f0d6f2cf83
24da72cd1936363316f79d96c12d9a0a92e723d0
/cpp/Run_length_compression.cpp
43ee2920c55ab58f1a1f0eb815ec798573eef955
[]
no_license
fenghuo/coding
294644f9dc84fde6472d3cd03ac9fc47afe248b0
f79dbf965af4cd65478d2ea2bc25704c77313c1a
refs/heads/master
2021-01-21T11:11:00.426936
2014-10-19T06:07:37
2014-10-19T06:07:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,938
cpp
// Copyright (c) 2013 Elements of Programming Interviews. All rights reserved. #include <cassert> #include <cctype> #include <cstdlib> #include <iostream> #include <sstream> #include <string> #include <locale> using std::cout; using std::endl; using std::string; using std::stringstream; using namespace std; // @inc...
[ "372615958@qq.com" ]
372615958@qq.com
47d5b5901da7f0db54ca57cfaf0f597b39a5eb97
70aa678ac52b5ba5c68db7f467ed06048e7d2149
/Source/ToonTanks/Components/HealthComponent.cpp
41c0eb73bcbdac3588cf6605963b9cc98ee39619
[]
no_license
Irbis691/ToonTanks
91d83348b71d019ebccc8ace05b684445aa3504b
c2dac0073ddec5abf53cff2e4c6d8ba9101976ca
refs/heads/master
2022-12-14T18:44:57.913065
2020-09-13T15:08:40
2020-09-13T15:08:40
295,176,938
0
0
null
null
null
null
UTF-8
C++
false
false
1,297
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "HealthComponent.h" #include "ToonTanks/GameModes/TankGameModeBase.h" #include "Kismet/GameplayStatics.h" // Sets default values for this component's properties UHealthComponent::UHealthComponent() { // Set this component to be i...
[ "irbis691@gmail.com" ]
irbis691@gmail.com
f8c57d42971bc439c28eb20fca4cf11935f89a35
b67453484514ebeae4e35d952ee5697903f2486e
/c++/Chapter_16/16_30.cc
c4c819d0215e5f5e074a6c1a12f93424be70384a
[]
no_license
SearchTheTruth/LinuxOpenNote
1960cec520670e6d4b45ac185dccd691a302c67e
8238a2c88cd1eaff7723514ba3d910a39fe8c2ed
refs/heads/master
2022-05-08T19:42:52.217059
2022-03-22T12:53:00
2022-03-22T12:53:00
134,676,998
0
0
null
null
null
null
UTF-8
C++
false
false
121
cc
#include "Blob_Myshared.h" int main() { Blob<int> iblob{0, 1, 2}; cout << iblob.back() << endl; return 0; }
[ "jianghao7@xiaomi.com" ]
jianghao7@xiaomi.com
57b850309a451d441664c0e8f5383e4ba5b88196
e58518d60c094d835557bb3f79f19b017284e23a
/gmtk-2012-12-07_2148/featureFileIO/testFileStream.cc
021844a966c90bd202bc5682299227dc3a1d49e8
[]
no_license
Rsquared2016/RocData
d2123801f63841f4510e1669927bddb6421e94fc
f5016e5fad5e4c51b2a2fc7909bfe0a742069bac
refs/heads/master
2020-05-18T18:23:07.953718
2014-04-04T16:10:06
2014-04-04T16:10:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,479
cc
#include <stdlib.h> #include <stdio.h> #include "GMTK_FileStream.h" #include "GMTK_PFileFile.h" #include "GMTK_FileSource.h" char *ofs[1]; unsigned nfs[1]; unsigned nis[1]; const char *fmts[1]; const char *frs[1]; const char *irs[1]; const char *prefrs[1]; const char *preirs[1]; const char *sr[1...
[ "sadileka@gmail.com" ]
sadileka@gmail.com
89e5deb28d637d12a42482140c9bb58d131319a3
5076089766896b16d16d7cbb4e778671d75aa4aa
/Source/ActionRPG/RPGSaveGame.h
f93e409a31f4b36b05db563d31db04d0e3c4f0ae
[]
no_license
Svengali/Settlement
dd81a8e378ba863d254e06a4f0fb431c4546d900
e21344d0824d9007e98669db3983f636d47b18bd
refs/heads/main
2022-05-28T17:24:06.964674
2022-04-10T21:36:51
2022-04-10T21:36:51
246,687,183
1
0
null
null
null
null
UTF-8
C++
false
false
1,839
h
// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "ActionRPG.h" #include "RPGTypes.h" #include "Items/RPGItem.h" #include "GameFramework/SaveGame.h" #include "RPGSaveGame.generated.h" /** List of versions, native code will handle fixups for any old versions */ namespace ERPGSaveGame...
[ "marcsh@gmail.com" ]
marcsh@gmail.com
a7bc3b92d178c82ad055d03c20563f68f5fba749
723638405a3a0fa9bf4fcef914420c58f3daeb2d
/src/classifier/test_classifier.cpp
d803eb315e10a4eddd4e8905160a5e2901063244
[ "MIT" ]
permissive
xuguozhi/mnn_example
c02b6a522236c8eec69b4fbf70b3f5519aa6a583
324f5ebc15c677270a614766dd9bb891b76c9505
refs/heads/master
2021-05-20T21:05:31.931058
2020-04-09T15:32:36
2020-04-09T15:32:36
252,416,589
0
1
MIT
2020-04-02T09:52:44
2020-04-02T09:52:44
null
UTF-8
C++
false
false
811
cpp
#include "opencv2/opencv.hpp" #include "opencv2/highgui.hpp" #include "../vision_engine.h" int main(int argc, char* argv[]) { const char* img_path = "../../data/images/classify.jpg"; cv::Mat img_src = cv::imread(img_path); const char* root_path = "../../data/models"; mirror::VisionEngine* vision_engine = new mirr...
[ "15671640320@163.com" ]
15671640320@163.com
6fb31cf520ea9d6d20b1f9faa2ae010997d39eb2
98f10c77b9932915eb9f37d9cf79a83094342444
/URI/1640.cpp
5962f9440457227368e6b39827e9681f7707c56d
[]
no_license
lucianovr/competitive-programming
b5ba55a5055e486862c0c8b62e61c86e41b8f2b8
bd95492bb8a14563603a5a2d74e3c1676a4a61e6
refs/heads/master
2022-09-10T04:54:07.417831
2020-05-28T00:33:36
2020-05-28T00:33:36
267,455,557
0
0
null
null
null
null
UTF-8
C++
false
false
2,729
cpp
#include <bits/stdc++.h> using namespace std; #define f(i, a, b) for (int i = (a); i < (b); i++) #define all(c) (c).begin(), (c).end() #define F first #define S second #define debug(x) cout << __LINE__ << ": " << #x << " = " << x << endl; #define debug2(x, y) cout << #x << " = " << x << " " << #y << " = " << y ...
[ "lucianovale@inatel.br" ]
lucianovale@inatel.br
7b089af5ae440fff8ab7a4dd9ba74a62295fbfac
537e7bdcaeb31260603839382bf344de73d58218
/src/qt/transactionrecord.h
4a6246d7e3969b1c89c1bb7cd5514a414377d66f
[ "MIT" ]
permissive
GenieG/Escrow
a424f234f4c66abde70c3f56158cf5da9c25205d
c5529cd5737e31e4f8572111c39a374460710552
refs/heads/master
2020-04-14T04:46:59.882302
2019-01-01T06:41:36
2019-01-01T06:41:36
163,645,194
0
0
null
null
null
null
UTF-8
C++
false
false
5,076
h
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2016 The Dash developers // Copyright (c) 2017-2018 The PIVX developers // Copyright (c) 2018 The Escrow developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-li...
[ "piyushjain90" ]
piyushjain90
02b134d752be600d79c981d5c2951d49b4ff625f
3b2fe5397f6d1b311e731a6ec4cf3a92f37fd40a
/resource.h
e4f13ac7d6e845e1be7cfef880f847e57ac27a66
[ "BSD-3-Clause", "MIT" ]
permissive
jessiahr/deconz-rest-plugin
9edaaa1c28783f4ddae2625a871efdfbdb42e4b3
f0f3e95c4083d0408acdc2e4c0724421d8b2a35a
refs/heads/master
2021-01-22T03:17:25.075510
2017-05-24T19:12:07
2017-05-24T19:12:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,927
h
#ifndef RESOURCE_H #define RESOURCE_H #include <QDateTime> #include <vector> class QString; class QVariant; enum ApiDataType { DataTypeUnknown, DataTypeBool, DataTypeUInt8, DataTypeUInt16, DataTypeUInt32, DataTypeInt8, DataTypeInt16, DataTypeInt32, DataTypeReal, DataTypeString...
[ "mpi@dresden-elektronik.de" ]
mpi@dresden-elektronik.de
395cd6ca3d38cea0751a9d2bb49e6cad3f3c2403
54382f0caaef7ba64091692de6717337385b041a
/BattleTank/Source/BattleTank/Public/TankBarrel.h
29d7fc5467220923016c661f39acb8155db0787e
[]
no_license
ruMoonGuard/BattleTank
cdff7abcb4d84f03c101e73557ba0e33bc93f76c
9f61986fbe186c9b3e2ce86895a4c75120d56476
refs/heads/master
2021-04-30T06:01:12.815470
2018-02-26T17:13:49
2018-02-26T17:13:49
121,432,859
0
0
null
null
null
null
UTF-8
C++
false
false
695
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "Components/StaticMeshComponent.h" #include "TankBarrel.generated.h" /** * */ UCLASS(meta = (BlueprintSpawnableComponent)) class BATTLETANK_API UTankBarrel : public UStaticMeshComponent { ...
[ "ufamoonguard@gmail.com" ]
ufamoonguard@gmail.com
f4d610ef8bb915d4c232c8ecd634ce87daa349b7
babf712f01474be4892b60d45dfed305652b9a6a
/Recuperacion_GibranLopezMorales/AlgoritmoGeneticoSimple.cpp
d32a0214d8fdb9ce3b6a88e41ea64e188385118d
[]
no_license
GeDiez/Jugando-con-C
d57bdff535198776d7ae25722a99f92b76f481af
1377b1e542649eb7cac2e0a2e9a769cbc923f3e2
refs/heads/master
2021-06-16T05:15:31.196725
2017-04-23T18:47:21
2017-04-23T18:47:21
70,188,409
0
0
null
null
null
null
UTF-8
C++
false
false
8,157
cpp
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <time.h> #define NBITS 252 #define MIN 0.0 #define MAX 8.0 #define TVARB 8 #define NIND 50 #define NCEP 0 #define NCEM 2 #define NVARIABLES 2 #define NUMGEN 15 #define conspena 0.0 void GAB_INDIVIDUO(); void CINDB...
[ "gibramessi@gmail.com" ]
gibramessi@gmail.com
cbb9d7d511d12f79c1b7a8b7d2664e7cf4863a8e
a49a3e6ab56c63928716b6f2da1af2899b5c033f
/Labs/lab2/vertexlist.cc
d3f8bc59eead57e100b9ecf4cf12b89752f71d63
[]
no_license
RobertBorg/SE-LTH-EDA031-VT13
82649e36bcf8bdc4f90dc2f4fe3085d2ff017cbe
1740af8c90423d9c34da1fcaa86befb4faded35d
refs/heads/master
2020-06-25T22:25:00.626334
2013-04-19T19:15:38
2013-04-19T19:15:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,615
cc
#include <string> #include <iostream> #include "vertexlist.h" #include "vertex.h" namespace cpp_lab2 { VertexList::VertexList() { // // *** IMPLEMENT *** // } VertexList::~VertexList() { // // *** IMPLEMENT *** // } void VertexList::add_vert...
[ "rauban@gmail.com" ]
rauban@gmail.com
8ec10cb64fa16566ea0a04c506d8bc2fe6803fc5
ff632878f47254912d921839bffde8a51d68043c
/Project/Tests/IObjectUnitTest.cpp
e69af97d964422bf9aee0f7bb12a61db0350caae
[]
no_license
UnknownFreak/OneFlower
d1eb55b3c227cdd130c8d3e8f4e256fd86bf624b
15d8884a97f55049d7af346dab209a37c7ebf46f
refs/heads/master
2023-08-31T03:32:59.450862
2022-05-04T19:23:02
2022-05-04T19:23:02
154,447,719
0
0
null
2019-06-02T19:08:50
2018-10-24T06:06:49
C++
UTF-8
C++
false
false
767
cpp
#ifdef _UNITTESTS_ #include "CppUnitTest.h" #include <Interfaces/IObject.hpp> using namespace Microsoft::VisualStudio::CppUnitTestFramework; namespace Tests { TEST_CLASS(IObjectUnitTest) { public: TEST_METHOD(Construct) { Interfaces::IObject foo; Interfaces::IObject foo2; Assert::AreNotEqual(foo2.i...
[ "UnknownFreak@users.noreply.github.com" ]
UnknownFreak@users.noreply.github.com
7f9f8e4ce6f4405198cd4feffb06d47a8840835e
f1cc4744f0beda8f1e34fc4b3eab922c73d09aea
/cpp/arrays/is_palindrome.cpp
984fae83ba82658ff84d606666f6ba20603eb64d
[]
no_license
RashikAnsar/everyday_coding
383c82d7e0ee9a179dc70a0c5ea76f0f1678cb4d
86441e7a7eba9204b9b8bec2f994da3928c464f5
refs/heads/main
2023-02-24T05:57:18.341707
2021-01-30T18:08:26
2021-01-30T18:08:26
311,069,264
1
0
null
null
null
null
UTF-8
C++
false
false
603
cpp
// Take as input N, a number. Take N more inputs and store that in an array. // Write a recursive function which tests if the array is a palindrome and // returns a Boolean value. Print the value returned. #include <iostream> using namespace std; bool isPalindrome(int a[], int n) { int i = 0, j = n - 1; while (...
[ "sk.ansar46@gmail.com" ]
sk.ansar46@gmail.com
d3f2c2a7cc1f11c78f1a245be0af05e4e809f138
5234bc430c83d616a8214d7f77c2c081543b6b26
/src/Cpp/101-200/162.FindPeakElement.h
b842094852758aa8899e10b3d7dfa3671a32d83b
[ "Apache-2.0" ]
permissive
AveryHuo/PeefyLeetCode
3e749b962cadfdf10d7f7b1ed21c5fafc4342950
92156e4b48ba19e3f02e4286b9f733e9769a1dee
refs/heads/master
2022-04-26T06:01:18.547761
2020-04-25T09:55:46
2020-04-25T09:55:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
606
h
#ifndef __FIND_PEAK_ELEMENT_H #define __FIND_PEAK_ELEMENT_H #include <iostream> #include <vector> #include <map> #include <queue> #include <math.h> #include <stack> #include <set> #include <algorithm> #include <unordered_set> #include <unordered_map> using namespace std; class Solution { public: int findPeakEl...
[ "xpf6677@163.com" ]
xpf6677@163.com
e785a20e5eccc4134e735f8c2dc13291f852106b
a34e408c382defdd343f8a00a4a998352ab046b1
/Lesson/ModuleDemo/MotorTest/MotorTest.ino
b76504d8a5e76bae7709c0bb0ffe587a0579b9c9
[]
no_license
keywish/keywish-mini-balance-car
7a41f42cb8ad3860bc40169dfc05b2e79f38e69c
80b3e73297c149d80f08cd26f6ac7ab4b3eb2809
refs/heads/master
2021-07-17T02:55:43.176859
2019-05-21T06:00:01
2019-05-21T06:00:01
140,816,204
5
4
null
null
null
null
UTF-8
C++
false
false
846
ino
#define AIN1 3 #define AIN2 11 #define BIN1 4 #define BIN2 2 #define PWMA 5 #define PWMB 6 #define STBY 7 void setup() { Serial.begin(9600); pinMode(STBY, OUTPUT); pinMode(AIN1, OUTPUT); pinMode(AIN2, OUTPUT); pinMode(BIN1, OUTPUT); pinMode(BIN2, OUTPUT); pinMode(PWMA, OUTPUT); pinMode(...
[ "ken@keywish-robot.com" ]
ken@keywish-robot.com
390d604d24479e65c1a6bc129e6a67428efff4c2
0b50e9e88bca06ccefeeabd4f0949fabd2f2fd24
/Aufgabe 2.3/TreeNode.h
e96d587081ae39ead15fb02a91b31f00c4befcef
[]
no_license
Smeany/ADS
ef4b88bbc5852fdbc80086f1c0f066a78b6498d4
8ab2eabd75a0bd29b86f71521725927b9b3cf0f6
refs/heads/master
2020-05-28T06:28:06.716533
2018-09-07T17:54:20
2018-09-07T17:54:20
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
876
h
#ifndef _TREENODE_H #define _TREENODE_H #include <string> #include <iostream> using namespace std; class TreeNode { /* Die Klasse stellt den Knoten eines einfachen Binären Baums dar. */ private: int NodePosID; int NodeID; std::string Name; int Alter; double Einkommen; int PLZ; TreeNode * links; TreeNode * ...
[ "39005044+PrimordialSphere@users.noreply.github.com" ]
39005044+PrimordialSphere@users.noreply.github.com
1c1537c198b3c88ea0c2a7c69e5a3e0f284a0633
53eb606def7671b96587638bb0d86f2746f10873
/MyCppGame/Resources/DemoCode/4_3_EffectTest/EffectTests/EffectTests/Classes/AppDelegate.cpp
0050c0ad3af1bf3c3e7a2a3315073903d6241410
[]
no_license
AquJonny/KumaCatch
dd05286d28c66eda1f779a1c1a68c96dab03ccdc
246bd396f198139cf11fe4aa09ad18ea69ee12b4
refs/heads/master
2020-12-05T04:41:18.501996
2016-09-14T00:42:47
2016-09-14T00:42:47
67,184,943
0
0
null
null
null
null
UTF-8
C++
false
false
1,606
cpp
// // EffectTestsAppDelegate.cpp // EffectTests // // Created by Himi on 12-9-11. // Copyright __MyCompanyName__ 2012年. All rights reserved. // #include "AppDelegate.h" #include "cocos2d.h" #include "HelloWorldScene.h" USING_NS_CC; AppDelegate::AppDelegate() { } AppDelegate::~AppDelegate() { } bool AppDelega...
[ "aquarius.joker@gmail.com" ]
aquarius.joker@gmail.com
e932b095ec2de0804de1879bf722bf2ee0a91ae1
aff39ff531df34277a747a29fb351255f65990d2
/src/gen/detail/GenerationHandler.cpp
b3c12995c2ccf0bfc4832c968b567fec346310f1
[ "BSD-2-Clause" ]
permissive
bgn9000/rapidcheck
e05ac573c199e30a679fa235097d5e30db64de73
593ada72f6938221973bf30bf7a7f7e6a24160de
refs/heads/master
2021-01-20T16:35:08.423960
2015-11-03T11:53:58
2015-11-03T11:53:58
49,644,391
0
1
null
2016-01-14T11:55:02
2016-01-14T11:55:02
null
UTF-8
C++
false
false
658
cpp
#include "rapidcheck/gen/detail/GenerationHandler.h" #include <stdexcept> #include "rapidcheck/detail/Any.h" namespace rc { namespace gen { namespace detail { using Any = rc::detail::Any; /// Default handler. Just throws exception. class NullGenerationHandler : public GenerationHandler { Any onGenerate(const Gen...
[ "shadewind@gmail.com" ]
shadewind@gmail.com
8c39433510d8e332a23bb61b1d69c85af089efb5
8180996b4d5710cb686391542bf2fe8c783cdd46
/ElasticDefenseLayer.h
8248f06e916e3ec4c425522548680784a0916c6e
[]
no_license
Glorii/breakout-legacy-00
6316a8e757199fc0807be268e2c73cd1a6863831
b9946b0581953be1f5eb48fdd76eb70de873cfc3
refs/heads/master
2020-12-24T15:59:15.593152
2015-10-07T12:12:55
2015-10-07T12:12:55
37,671,194
0
1
null
null
null
null
UTF-8
C++
false
false
912
h
#ifndef __helloworld__ElasticDefenseLayer__ #define __helloworld__ElasticDefenseLayer__ #include "ParentOfElastic.h" #define BOARD_TRACE_RADUIS_MAX 225.0f #define BOARD_TRACE_RADUIS_MIN 167.5f #define RHOMBUS_INSIDE_TRACE_RADIUS 27.0f #define RHOMBUS_WIDTH 37.0f*0.5 #define RHOMBUS_HEIGHT 162.0f*0.5 #define...
[ "591339792@qq.com" ]
591339792@qq.com