blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
7a55ddc8bd88bb10cba386099a1d1abcbff6d069
ee8101887e8fe39af5993c1a4f370a7163689ab1
/1114.cpp
a6e03a02841642e4c96bf68516837ffc1aff029f
[]
no_license
fanxingzju/PAT_advanced
23f0ff9f35e7e9f111651bed048451fbd709eada
b6187a98b6970fd35ccefc7c323c8677564940e2
refs/heads/master
2021-01-10T12:14:06.442386
2016-04-07T13:12:10
2016-04-07T13:12:10
55,694,296
2
0
null
null
null
null
GB18030
C++
false
false
2,780
cpp
/* 这个题目最困难的地方是确定哪些人在同一个家庭, 将族谱作为一张图来考虑, 父母和子女间有连通路径, 利用DFS可以确定图的连通区域, 一块连通区域即为一个家庭*/ #include <iostream> #include <set> #include <vector> #include <algorithm> #include <cstdio> using namespace std; const int MAXNODE = 10010; /* 为了优化效率,用邻接表的方式存储图*/ class node { public: node(): adj(), visited(true), M_estate(0), Area...
[ "fanzhaonan@zju.edu.cn" ]
fanzhaonan@zju.edu.cn
6ac1aead8bf5b40b6541a4f61a0e444fca4dc09a
0d6ce1920a597e6c706d5cdc0876ab5f1f56ead0
/xcore/cl_tonemapping_handler.cpp
27b3221f7b771373f79a94579eb2e67f97773780
[ "Apache-2.0" ]
permissive
mohendra/libxcam
f5e731ca9b94c14d4e6ccdf07ce51f812f6e48e8
a6580237a0b4194f10d3f5777b1f47c9f93d26f8
refs/heads/master
2021-01-20T15:59:11.467017
2015-10-08T08:51:28
2015-10-09T11:28:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,447
cpp
/* * cl_tonemapping_handler.cpp - CL tonemapping handler * * Copyright (c) 2015 Intel Corporation * * 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/lice...
[ "feng.yuan@intel.com" ]
feng.yuan@intel.com
c65f7550e4a2f63ce8791e0525afdc7f40633644
7b47a48d74d21a0caa0a4f382b53765582f1e3cf
/shared/cs488-framework/MeshConsolidator.hpp
31e21975701f95799f93fe72458713da99f655b4
[]
no_license
dearonesama/cs488
a3513ed38d8459c26b050549b6d40b1ce180a380
2b70667b27c994c73288231ce297661bf15ac8da
refs/heads/master
2022-03-06T00:41:25.051184
2017-09-21T05:28:12
2017-09-21T05:28:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,305
hpp
#pragma once #include "cs488-framework/BatchInfo.hpp" #include <glm/glm.hpp> #include <initializer_list> #include <vector> #include <unordered_map> #include <string> // String identifier for a mesh. typedef std::string MeshId; // File path to a .obj file. typedef std::string ObjFilePath; // BatchInfoMap is an...
[ "ramanpreet.nara@gmail.com" ]
ramanpreet.nara@gmail.com
532a0ef167f3cc00f297609308576df5aa00bf26
93c9499a60687ca615bda7469f18480a1480763a
/1463/solve.cpp
1a48744e8d0b0600f26a63a9093ab7e71146ec6c
[]
no_license
chin0/everydayalgo
93257812a758fbdf4bd02d121a9057166e6a3bca
f6d2b5e58f15b1f2c7e41d1a2b5cf4051b6d2bc8
refs/heads/master
2022-09-26T23:14:21.566812
2022-08-25T09:15:17
2022-08-25T09:15:17
96,144,716
3
0
null
null
null
null
UTF-8
C++
false
false
525
cpp
#include <iostream> #include <algorithm> #include <vector> using namespace std; int dp[1000001]; int solve(int n) { dp[0] = 0; dp[1] = 0; dp[2] = 1; dp[3] = 1; for(int i = 4; i <= n; i++) { dp[i] = dp[i-1]; if(i % 3 == 0) dp[i] = min(dp[i],dp[i/3]); if(i % 2 =...
[ "pypi1103@gmail.com" ]
pypi1103@gmail.com
70f10639435a775e26d3678ecb2ef4e3bc260186
c79d0b76b076dc7c6db5c20b422d17ee4bffa863
/src/gb_cpu.cc
2ad386d3873e83741fe94a3f1a9878c77ca31aac
[ "MIT" ]
permissive
0ctobyte/goodboy
58dde63752e768e8c22dd46073a81cecd826ac21
3f2cda52dc24be34badea12645a1e3baa66a1250
refs/heads/master
2022-02-06T21:36:44.243593
2022-01-12T20:02:57
2022-01-12T20:02:57
173,666,947
1
1
null
null
null
null
UTF-8
C++
false
false
31,542
cc
/* * Copyright (c) 2019 Sekhar Bhattacharya * * SPDX-License-Identifier: MIT */ #include "gb_logger.h" #include "gb_memory_map.h" #include "gb_cpu.h" #include "gb_cpu_instructions.h" #include "gb_cpu_cb_instructions.h" #define FLAGS_IS_SET(flags) ((m_registers.f & (flags)) != 0) #define FLAGS_IS_CLEAR(fla...
[ "sekhar.bx@gmail.com" ]
sekhar.bx@gmail.com
215405f575bfa9cdb0c74b57e049209bf4b16b0f
8ae1361ca290cc4a9f8535b89bf4315203c3b552
/software/old/tinybld/firmware/icdpictypes.inc
d1397fee25dbb9344899dfc0600a4483062de4f3
[]
no_license
GBert/EasyCAN
e9232ccaaf876017bd6478d4072d0c0eb34c36c1
0a382b3a9a484f9f415d9f06ae92aa9af49ba99f
refs/heads/master
2021-01-17T07:43:33.705419
2017-10-24T17:40:20
2017-10-24T17:40:20
16,690,146
12
2
null
null
null
null
UTF-8
C++
false
false
6,179
inc
;IdTypePIC ;bits 7 6 5 4 3 2 1 0 ;meaning: type16/18/ds | model_nr ; ; ;If you want to work with another model that is not on the list ;find one model that is similar to yours and has THE SAME amount ;of flash and replace its "IFDEF __XXXXXX" and ;"#include "ZZZZZZZZZ.inc"", but the ID must remain. ...
[ "info@gerhard-bertelsmann.de" ]
info@gerhard-bertelsmann.de
10abd6a8cc7156742f2209c8697d4833279b751b
d5b29a08c4d981815f807b3ab50474a751ad1ba8
/renderer/mediarendererdevice.h
1521f2c4ee5983a6adc8c30b3053962b3ab261a6
[]
no_license
dirkvdb/doozy
42a03bae5b0664df12485e40511de4a65d27749a
6cf51bd80e1d9d0aa5bbc724f4c70e1675768c7c
refs/heads/master
2020-05-21T20:23:30.515496
2014-12-08T19:23:58
2014-12-08T19:23:58
27,730,604
0
1
null
null
null
null
UTF-8
C++
false
false
4,264
h
// Copyright (C) 2012 Dirk Vanden Boer <dirk.vdb@gmail.com> // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later...
[ "dirk.vdb@gmail.com" ]
dirk.vdb@gmail.com
acde4b3e16918994a87e01b02fc107bb5f1440e8
22e9144e9ca00d73e9a9d9e958fe1f04f511f9dd
/test/src/conv_dbn.cpp
840ed05c98549005c458fcafd241694df5223c35
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
acknowledge/dll
e378c8d960df36e27b0f50a0d261bc6469cb80ad
6ab90077bbfc93a4089c5a906dda039575fcc446
refs/heads/master
2021-01-12T05:34:23.360832
2016-12-22T09:58:06
2016-12-22T09:58:06
77,131,064
0
0
null
2016-12-22T09:22:35
2016-12-22T09:22:35
null
UTF-8
C++
false
false
3,902
cpp
//======================================================================= // Copyright (c) 2014-2016 Baptiste Wicht // Distributed under the terms of the MIT License. // (See accompanying file LICENSE or copy at // http://opensource.org/licenses/MIT) //==================================================================...
[ "baptiste.wicht@gmail.com" ]
baptiste.wicht@gmail.com
e023126c2db9f4b11723a2d0042125effe819e9a
ba98197d69bb4b9390a94750556d0bc07c163eae
/Source/Engine/Animators/Nodes/ParticleVelocityNode.h
396e10393025e229659a6c0e5d33455770aea01a
[ "MIT" ]
permissive
daiwei1999/AwayCPP
a229389369e01e1b80a27ff684723d234dbba030
095a994bdd85982ffffd99a9461cbefb57499ccb
refs/heads/master
2023-07-20T19:42:32.741480
2023-07-05T09:10:26
2023-07-05T09:10:26
36,792,672
12
6
null
null
null
null
UTF-8
C++
false
false
732
h
#pragma once #include "Common.h" #include "ParticleNodeBase.h" AWAY_NAMESPACE_BEGIN /** * A particle animation node used to set the starting velocity of a particle. */ class ParticleVelocityNode : public ParticleNodeBase { public: ParticleVelocityNode(ParticlePropertiesMode mode, Vector3D* velocity = nullptr); ...
[ "daiwei_1999_82@163.com" ]
daiwei_1999_82@163.com
e4f03785a87dd046cbba9613efabdb7b80f2a9e2
765eacfebcb5cc4d06359ca55b4a47768d4c8d24
/utils/level_face_traversal.hpp
d9899133d3a097b3ad52e378ce8a503eda216716
[]
no_license
MikolajTwarog/Technika-Baker
98f96d5aa09d2d1eeb320cea6ea4bca010db4340
054f837a867ece3f5fea9580a7b81227060e29c2
refs/heads/main
2023-06-17T21:22:22.487818
2021-06-23T12:47:58
2021-06-23T12:47:58
319,667,728
1
0
null
null
null
null
UTF-8
C++
false
false
3,478
hpp
// // Created by mikolajtwarog on 2021-02-04. // #ifndef TECHNIKA_BAKER_LEVEL_FACE_TRAVERSAL_HPP #define TECHNIKA_BAKER_LEVEL_FACE_TRAVERSAL_HPP #include <vector> #include <set> #include <map> #include <boost/next_prior.hpp> #include <boost/graph/graph_traits.hpp> #include <boost/graph/properties.hpp> template < typ...
[ "mikolajtwarog@gmail.com" ]
mikolajtwarog@gmail.com
a1b38a909e51a48fb47456cda04123886d5a4c59
01374f1ee782b39c9a9289eed40cc60deeac8535
/ContactListener.h
52182d0f3964aa387e389804e711e567b7e9efec
[]
no_license
Redbassist/FYP-Server
bf98b7921fadabb36a9c1662de8fb7e2844f23ae
9f9e73fee04c1e0e61457a356f44d8aed8dfd3e6
refs/heads/master
2021-01-01T05:19:38.637308
2016-04-20T22:48:01
2016-04-20T22:48:01
56,725,785
0
0
null
null
null
null
UTF-8
C++
false
false
8,480
h
#ifndef CONTACTLISTENER_H #define CONTACTLISTENER_H #include "stdafx.h" #include "Player.h" #include "Item.h" #include "Container.h" #include "Stalker.h" #include "Door.h" class ContactListener : public b2ContactListener { public: void BeginContact(b2Contact* contact) { void* fixAType = contact->GetFixtureA()...
[ "mattgerig@gmail.com" ]
mattgerig@gmail.com
3667572f09dc1d96b834b0250be8513116c49a2f
ecaca679938c7d6b0bc6ca835981e7cc2a0330d8
/DSClient/dsClient.cpp
0fa24362912e3a117ce84d6c85ff2a950e7feacc
[]
no_license
amitprat/IMSDEV
df187a105859dacd53f818fea18ae40c5ab1e162
568880e6242eeb01ca4ebd46c3e63029009f5374
refs/heads/master
2021-01-01T19:24:53.037674
2014-12-20T18:34:23
2014-12-20T18:34:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,202
cpp
#include "gprot.h" #include "OpenDSInterface.h" #include "DSClient.h" dsClient::dsClient() { availableIndex = 1; //first index allocated to DS Node targetTime = presentTime = 0.0; periodicTimer = false; timeInterval = 0.0; firstMsg = true; portNo = IMS_PORT; sockId = socket(FAMILY,STREAM,FL...
[ "amitprat@buffalo.edu" ]
amitprat@buffalo.edu
a5e82f5e73b49f8fd0f55228d11b556a00b11b49
050ebbbc7d5f89d340fd9f2aa534eac42d9babb7
/grupa1/lfilipiuk/p2/kol.cpp
c7a9e1fa2f10d0a162860e61acc30787ec48302f
[]
no_license
anagorko/zpk2015
83461a25831fa4358366ec15ab915a0d9b6acdf5
0553ec55d2617f7bea588d650b94828b5f434915
refs/heads/master
2020-04-05T23:47:55.299547
2016-09-14T11:01:46
2016-09-14T11:01:46
52,429,626
0
13
null
2016-03-22T09:35:25
2016-02-24T09:19:07
C++
UTF-8
C++
false
false
188
cpp
#include <iostream> #include <cmath> #include <iomanip> using namespace std; int main(){ double r; cin >> r; cout << setprecision(3) << fixed << M_PI*r*r << "\n" << 2*M_PI*r << endl; }
[ "lukasz.filipiuk@student.uw.edu.pl" ]
lukasz.filipiuk@student.uw.edu.pl
968912a7ba66d452750a959b0aea71d5a00e8507
a7757ba650122f0540cc2980fd08f191c4744866
/src/irc.cpp
5201168e0a9edd267561ad80fbdaded9fecf6a0d
[ "MIT" ]
permissive
doriancoin/doriancoin-v3
77473eb3e95b8a49b5061b3e7d7bda63cab3667e
7c52fd1ac94b431fea11eb6522c9b278bd084ea6
refs/heads/master
2021-03-12T19:56:03.693580
2014-03-08T11:41:20
2014-03-08T11:41:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,516
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Copyright (c) 2011-2012 Litecoin Developers // Copyright (c) 2013 doriancoin Developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-licen...
[ "x21coin@outlook.com" ]
x21coin@outlook.com
614b83e699a46856e7deff02610db0c59886af2f
8bb13df66047ee25f55fb7f428b5b5d313705926
/Hashcionary/JanelaElimina.h
596c78e57ffae0fc672f5b79c6c6121eb8310b7b
[]
no_license
thiagoarmede/HashcionaryFinal
ca6964a218222818baccada74031873c57e0d9f2
960a76a8a76ce33de5c2e64fa571ebc6c97cbfdc
refs/heads/master
2021-07-18T22:16:21.752135
2017-10-27T05:03:11
2017-10-27T05:03:11
107,429,898
0
0
null
null
null
null
UTF-8
C++
false
false
338
h
#pragma once #include <QWidget> #include "ui_JanelaElimina.h" #include "Hashing.h" #include "popup1.h" class JanelaElimina : public QWidget { Q_OBJECT public: JanelaElimina(QWidget *parent = Q_NULLPTR); ~JanelaElimina(); popup1 *popup; void popupEliminou(); public slots: void eliminaPalavra(); private: Ui::Jan...
[ "thiagoarmede@gmail.com" ]
thiagoarmede@gmail.com
d08c51903e26c165395c58853d836c5a21dfa851
a02d6d6c8db6a94156113f592dfe7f4698d97092
/Chapter_4/explicit_return_type_3.cpp
d57bf3b07bb00c064e4cca50e556f94e44d31af0
[ "MIT" ]
permissive
wagnerhsu/packt-CPP-Templates-Up-and-Running
0e884dcefca1fd954877ceb7a1d8af187eaf65ed
2dcede8bb155d609a1b8d9765bfd4167e3a57289
refs/heads/main
2023-06-23T14:02:55.872749
2021-07-10T12:45:06
2021-07-10T12:45:06
383,464,461
0
0
null
null
null
null
UTF-8
C++
false
false
395
cpp
#include <iostream> template<typename T, typename U> U get_coef(T type) { std::cout << type << std::endl; U ret; switch(type) { case 1: ret = 20.5; break; case 2: ret = 100.5; break; default: ret = 10.4; } return ret; } int main() { int type =...
[ "vivek.bhadra@gmail.com" ]
vivek.bhadra@gmail.com
54e49d985052622ae19c00be63d78bcb733e524f
da3215baf37d257d5814f165e98b4b19dee9cb05
/SDK/FN_RadialPicker_parameters.hpp
acc9f78361b7afc54f203ffa5b11768a750c068a
[]
no_license
Griizz/Fortnite-Hack
d37a6eea3502bf1b7c78be26a2206c8bc70f6fa5
5b80d585065372a4fb57839b8022dc522fe4110b
refs/heads/Griizz_Version
2022-04-01T22:10:36.081573
2019-05-21T19:28:30
2019-05-21T19:28:30
106,034,464
115
85
null
2020-02-06T04:00:07
2017-10-06T17:55:47
C++
UTF-8
C++
false
false
5,633
hpp
#pragma once // Fortnite SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "../SDK.hpp" namespace SDK { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- // Function RadialPicker.Radial...
[ "sinbadhacks@gmail.com" ]
sinbadhacks@gmail.com
4c0a59dcb2fa0b49a5f7abdeec7f446c33368450
43d318ff49c6ee368db1274d55b3bbf66a9a9461
/HorrorPrototype/AI/Services/BTS_CheckPatrolTime.h
fe528c26a279fc1c1eb0654c0421129f1c19b656
[]
no_license
dyg006/FPSHorrorPrototype
cc1accdbb2502d9526b3f4fca63b42178e72f489
41b01e6888a51fd1c96728d24c327a7ee32d7458
refs/heads/master
2022-12-08T04:39:42.921332
2020-07-28T21:19:13
2020-07-28T21:19:13
283,244,388
0
0
null
null
null
null
UTF-8
C++
false
false
671
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "BehaviorTree/BTService.h" #include "BTS_CheckPatrolTime.generated.h" /** * */ UCLASS() class HORRORPROTOTYPE_API UBTS_CheckPatrolTime : public UBTService { GENERATED_BODY() public: UBT...
[ "diego_yguay2@hotmail.com" ]
diego_yguay2@hotmail.com
d269df889e54e60b1f616408eda439d51cb2346b
685e13ac69e688f7221e2adf0ba9fa8ec6b32660
/03/ex02/FragTrap.hpp
230688ac1497c59b17d9d5a999516a5c73d826a9
[]
no_license
vrdbettoni/piscine_cpp
2000e53d99c02f7f84ccb731861b68a7e5969d70
30dc11fa207ea66d1c86125ddc61d08eb7415ac3
refs/heads/master
2023-03-14T18:04:39.459266
2021-03-17T14:35:12
2021-03-17T14:35:12
332,657,558
0
0
null
null
null
null
UTF-8
C++
false
false
425
hpp
#ifndef FRAGTRAP_HPP # define FRAGTRAP_HPP #include <iostream> #include <cstdlib> #include "ClapTrap.hpp" class FragTrap : public ClapTrap { public: FragTrap(); FragTrap(std::string name); ~FragTrap(); FragTrap(const FragTrap&); FragTrap& operator=(const FragTrap&); ...
[ "vroth-di@student.42lyon.fr" ]
vroth-di@student.42lyon.fr
02f5669d1da4655750c4f1f3e6c00418019ccfe5
7f8fb92af3bae8c60b5886cc12d4d7da31f470a7
/helper_methods.cpp
d0be7962a5e3267db6368be95d6f269e24f9b70d
[]
no_license
DiboraHaile/wumpus
6dea4c8fa57823e59f90688509ef768615f5474a
258b9b9ff3e6da68918cce3dc29c4001df22ba58
refs/heads/master
2022-06-07T00:19:56.859887
2020-05-02T12:40:51
2020-05-02T12:40:51
255,151,213
0
0
null
null
null
null
UTF-8
C++
false
false
809
cpp
#include <iostream> #include <string> #include "helper_methods.hpp" bool helper_methods::Not(bool a){ int operand_no = 1; return !a; } bool helper_methods::And(bool a, bool b){ int operand_no = 2; if (a and b) return true; else return false; } ...
[ "deborahaile3@gmail.com" ]
deborahaile3@gmail.com
d0f96d97034dbf97137c2faed6f9062cd3c574ec
f89d365228e236cb9875114524c9460360234676
/Week-05/Day-02/GreenFoxExercise/sponsor.h
4b90cd398bacc873e380c61ea2c090ef263e2cf5
[]
no_license
green-fox-academy/Dextyh
8c08afc3318df61b99029c8a3c821c8eed21da0b
2da333d385526aeda779605f129e35e70b266034
refs/heads/master
2020-04-02T17:22:06.014213
2019-01-30T11:36:03
2019-01-30T11:36:03
154,655,041
0
0
null
null
null
null
UTF-8
C++
false
false
402
h
#ifndef GREENFOXEXERCISE_SPONSOR_H #define GREENFOXEXERCISE_SPONSOR_H #include <iostream> #include "person.h" class Sponsor : public Person { public: Sponsor(std::string name, int age, Gender gender, std::string company); Sponsor(); void introduce() override; void hire(); void getGoal() over...
[ "tmark.boy001@gmail.com" ]
tmark.boy001@gmail.com
0dfb99bc3a748bf5847455d2716cabcf61c9cd75
b3cec46417829c50c9860c82d157a286c2ccd624
/modified_files_in_caffe/layers/Berhu_loss_layer.hpp
6d385aded019ad3a685c86e28411953749b2cba9
[]
no_license
dkanou/tsrenet
cfd62a7ba793174627492b84a04b9b7605695cde
575c7851c9e65c9b7977d00531e3bd4f3da8e118
refs/heads/master
2020-03-24T07:38:02.229141
2018-09-21T16:26:44
2018-09-21T16:26:44
142,570,275
1
1
null
null
null
null
UTF-8
C++
false
false
4,106
hpp
#ifndef CAFFE_BERHU_LOSS_LAYER_HPP_ #define CAFFE_BERHU_LOSS_LAYER_HPP_ #include <vector> #include "caffe/blob.hpp" #include "caffe/layer.hpp" #include "caffe/proto/caffe.pb.h" #include "caffe/layers/loss_layer.hpp" namespace caffe { /** * @brief Computes the Berhu (L1 or L2) loss * C is @f$ 0.2* abs(\left| \...
[ "vivek.sury28@gmail.com" ]
vivek.sury28@gmail.com
2ea3525182a484b5a661a82ea2f50a96fc75f069
9a410544d62fe7df68e8fa9b62badcc04bab0fb8
/drewTe/drewTe/drewTeDoc.cpp
1afad6ab1dcec3ab477015c2ec2cc9fa1b4f8eee
[]
no_license
rayAthavtis/VisualHK
4c67a5cbc194bc903d2ce67ca78bc93d98dd812d
cbacbdb23e4abf96102dcc9b1eba6d919c9e0917
refs/heads/master
2022-04-24T11:03:23.152766
2020-04-29T04:41:17
2020-04-29T04:41:17
259,825,801
0
0
null
null
null
null
GB18030
C++
false
false
2,770
cpp
// drewTeDoc.cpp : CdrewTeDoc 类的实现 // #include "stdafx.h" // SHARED_HANDLERS 可以在实现预览、缩略图和搜索筛选器句柄的 // ATL 项目中进行定义,并允许与该项目共享文档代码。 #ifndef SHARED_HANDLERS #include "drewTe.h" #endif #include "drewTeDoc.h" #include <propkey.h> #ifdef _DEBUG #define new DEBUG_NEW #endif // CdrewTeDoc IMPLEMENT_DYNCREATE(CdrewTeDoc, C...
[ "861322624@qq.com" ]
861322624@qq.com
7805f27d349ee9bc22928298543093aefa2433b5
01ee682e4ca1d3b6c5d40bbb77a6be42a9fe66c4
/src/arm_rrt/test_dynamic_rrt.cpp
9a27c430a5945d639bbc1fc87ef9bd5f2ac910d7
[]
no_license
Greattc/schunk_rrt
1e1da1cd531edd98672c89b6113d46a19ee51e8c
d42875b0572c3c90c00cd56a042543d546ea80f1
refs/heads/master
2021-01-22T02:34:40.366938
2015-01-08T06:04:28
2015-01-08T06:04:28
28,951,580
1
0
null
null
null
null
UTF-8
C++
false
false
1,924
cpp
#include "schunk_rrt/dynamic_rrt.h" #include <boost/shared_ptr.hpp> #include <ros/callback_queue.h> #include "schunk_kinematics/arm_kinematics.h" using namespace fcl; using Eigen::VectorXd; using Eigen::MatrixXd; using std::cout; using std::endl; int main(int argc, char **argv) { ros::init(argc, argv, "dynamicRR...
[ "robot.myth2014@gmail.com" ]
robot.myth2014@gmail.com
25397a79071479a9f45c36bf10305026488fa8a9
95513dd56f370a48cc684aedb3965cc9e85ab957
/message_widget.cpp
69a7bc180afd40c579062112cb800b6c9c0bb45c
[]
no_license
shashwb/VTDraw
6dd66b6c665164f9b32ea57e8ba98240e675f33d
916866bb8bd75fb6d114575171b09302029c679e
refs/heads/master
2021-03-16T05:13:06.052200
2017-07-05T20:32:17
2017-07-05T20:32:17
91,541,694
0
0
null
null
null
null
UTF-8
C++
false
false
1,027
cpp
#include "message_widget.hpp" #include "repl_widget.hpp" #include "qt_interpreter.hpp" #include <QLineEdit> #include <QKeyEvent> #include <QString> #include <QLayout> MessageWidget::MessageWidget (QWidget * parent) : QWidget (parent) { message_box = new QLineEdit(); QBoxLayout *horizontal_layout = new QHBoxLay...
[ "shashwb@vt.edu" ]
shashwb@vt.edu
b1e092bae396e38ac6c3de17d132bbab5637d371
73c236437958c9fde595609a0ce8d24823e46071
/auto_dirvers_mobile/main.cpp
83b4d1a7f8f9f12ecf0192f0e06686ce46c7c9cb
[]
no_license
blacksjt/autobots
f7f4bd4e870066a44ad83f86020aeb3e580a523c
0b92d832afa6b3afcbc49b677c1489029227fae0
refs/heads/master
2020-04-16T02:11:56.871238
2017-06-27T12:01:18
2017-06-27T12:01:18
63,883,688
1
0
null
null
null
null
UTF-8
C++
false
false
196
cpp
#include "auto_dirvers_mobile.h" #include <QtWidgets/QApplication> int main(int argc, char *argv[]) { QApplication a(argc, argv); auto_dirvers_fatie w; w.show(); return a.exec(); }
[ "Administrator@USER-20170110ZO" ]
Administrator@USER-20170110ZO
d04b088d6c5078620d49c7dcf614fb1033708510
67099389ed791705d9c20889e2065b0227a4db27
/server/master/master/FileTransfer.cpp
bc5856b4a3509e5b07ba57b4af9d196d50c30d83
[]
no_license
shennong/trochilus1
b6a626913c0bab0f66672c9b2ae2145cf80ff39a
8bb0de53e81263ec1cb2130934142b23dce0dca6
refs/heads/master
2021-01-24T23:34:39.294082
2015-07-01T14:52:52
2015-07-01T14:52:52
null
0
0
null
null
null
null
GB18030
C++
false
false
7,240
cpp
#include "StdAfx.h" #include "FileTransfer.h" #include "CommManager.h" CFileTransfer::CFileTransfer() { } CFileTransfer::~CFileTransfer() { } BOOL CFileTransfer::Init() { CommManager::GetInstanceRef().RegisterMsgHandler(MSGID_GET_FILE, MsgHandler_GetFile, this); CommManager::GetInstanceRef().RegisterMsgHandler(M...
[ "floyd419@foxmail.com" ]
floyd419@foxmail.com
f4884f22b9f2e5d32bed6750a91278033d7bde0b
00eaeacedc909bf421474eb6bb3c84ed370258aa
/matrixchainmulti.cpp
5bc4f13e18a4ade4296b7613cf403c89013c5539
[]
no_license
kibo27/coding
232e51a96214b4bc0db12dd7ec8f8e2cddc7bba4
4bf5d21048e399fdb2cf0f6dc7ad4df573ad70e5
refs/heads/master
2020-12-28T16:35:18.168628
2020-03-07T04:16:38
2020-03-07T04:16:38
238,406,767
0
0
null
null
null
null
UTF-8
C++
false
false
807
cpp
//matrix chain multiplication #include<bits/stdc++.h> using namespace std; void solve() { int n; cin>>n; int a[n]; for(int i=0;i<n;i++) { cin>>a[i]; } vector<vector<int>> dp(n,vector<int>(n,0)); for(int l=2;l<n;l++) { for(int i=1;i<n-l+1;i++) { ...
[ "anprest149@gmail.com" ]
anprest149@gmail.com
25f4cae9efca1c315087f40c0dd3792b602a00a1
b4c1fbe077a1a630da528963179b27ac044701f8
/glibc-atexit.cpp
fde4cb9c78e1bcec6dfc7deeced453113a99a89e
[]
no_license
giraldeau/test-glibc
5f0aca4fa847f557d83df692563a1dc776c823ee
8bd3799e10814f44e340d39b08f9225b4ce7be07
refs/heads/master
2022-12-19T21:29:09.512059
2020-09-29T20:11:58
2020-09-29T20:11:58
299,727,213
0
0
null
null
null
null
UTF-8
C++
false
false
395
cpp
#ifndef _GNU_SOURCE #define _GNU_SOURCE #endif #include <thread> #include <cstdio> #include <cstdlib> #include <dlfcn.h> #ifndef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL #error __cxa_thread_atexit_impl not supported #endif int main() { void *addr = dlsym(RTLD_DEFAULT, "__cxa_thread_atexit_impl"); Dl_info info; d...
[ "francis.giraldeau@gmail.com" ]
francis.giraldeau@gmail.com
79205347a326791d87ca2c5aabbdf9702a7e18e2
65c414a91ff3615b86b169e0bb486aa59f4ef0bb
/ConsoleApplication1.cpp
217b6c0c8564b34bb8c2cf3eb394896fa0cbb5fe
[]
no_license
yar-yasenkov/Algorythm
8536829ec938e952dfc18b3e031a695aad5ddfa6
e16a1c97658d9d2e8ed2c392940c8741ad2a8e7f
refs/heads/master
2021-06-26T22:19:28.216322
2017-09-15T07:26:22
2017-09-15T07:26:22
103,627,490
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
795
cpp
// ConsoleApplication1.cpp : Defines the entry point for the console application. // #include "stdafx.h" //возвращает n-е число Фибоначчи int fib(int n) { int a = 1, ta, b = 1, tb, c = 1, rc = 0, tc, d = 0, rd = 1; while (n) { if (n & 1) // Если степень нечетная { // Умножаем вект...
[ "noreply@github.com" ]
noreply@github.com
6664fe66807851ed0408e2d4836b0f97ef6c41e3
38a4b208f5c75f1c74accc64d813ead668937dca
/MixHit/cCocktailMixer.h
5baa7fa9a49f3a54523955c807d9c2990e4c18c6
[]
no_license
DrStealth126/MixHit_Webserver_neu
fca98543f0fea0954ac81cf17fe6f2e0229a0954
fd5f1dc64e1cc81feb8b4aeeb812370c0306ef8c
refs/heads/master
2020-04-07T18:25:11.468527
2018-11-27T14:02:35
2018-11-27T14:02:35
158,609,254
0
0
null
null
null
null
ISO-8859-1
C++
false
false
4,319
h
#ifndef _CCOCKTAILMIXER_H_ #define _CCOCKTAILMIXER_H_ #include "cIngredient.h" #include "Configuration.h" #include "cScale.h" #include "cRotateTable.h" #include "cGlasses.h" #include "cGlass.h" #include "cCocktail.h" #include "cQueueOfOrders.h" #include "cValveControl.h" #include "cReservoir.h" #include "cOrder.h" #in...
[ "43671054+DrStealth126@users.noreply.github.com" ]
43671054+DrStealth126@users.noreply.github.com
4ff50ed3cf490cce4fe17707dfe6d7deded505d9
3b219b05e85c4ba74170e41078c2fe80f5ee0b4d
/src/editor/ScintillaQt.h
2cb01025029ef6513a3dc76685b0c9a18ed1e910
[ "MIT" ]
permissive
shane-gramlich/gitahead
9727ae57ff1841dd3b31953a83ae9a7b4369a551
17796287d99a7fb438b5c38b02429fd9168b4e3e
refs/heads/master
2020-10-02T03:34:29.835909
2019-12-17T19:42:03
2019-12-17T19:42:03
227,692,266
0
0
MIT
2019-12-12T20:38:37
2019-12-12T20:38:35
null
UTF-8
C++
false
false
6,091
h
// // Copyright (c) 2016, Scientific Toolworks, Inc. // // This software is licensed under the MIT License. The LICENSE.md file // describes the conditions under which this software may be distributed. // // Author: Jason Haslam // #ifndef SCINTILLAQT_H #define SCINTILLAQT_H #include <stdlib.h> #include <str...
[ "jason@scitools.com" ]
jason@scitools.com
58715726633c1d19312c60498e1fae6ea555d593
51973d4f0b22d6b82416ab4c8e36ebf79d5efede
/hpctoolkit/src/lib/prof/Metric-IData.hpp
a7707b3393bdc05cd22a878d2c1eb3526af90305
[]
no_license
proywm/ccprof_hpctoolkit_deps
a18df3c3701c41216d74dca54f957e634ac7c2ed
62d86832ecbe41b5d7a9fb5254eb2b202982b4ed
refs/heads/master
2023-03-29T21:41:21.412066
2021-04-08T17:11:19
2021-04-08T17:11:19
355,986,924
0
1
null
null
null
null
UTF-8
C++
false
false
7,166
hpp
// -*-Mode: C++;-*- // * BeginRiceCopyright ***************************************************** // // $HeadURL$ // $Id$ // // -------------------------------------------------------------------------- // Part of HPCToolkit (hpctoolkit.org) // // Information about sources of support for research and development of //...
[ "proy@email.wm.edu" ]
proy@email.wm.edu
ba819bb7a3da24a566fa32f80d913028d1612f61
4384c42810ec6e9091b06578a4377344b0e33daf
/ROBOTIS-THORMANG-MPC/thormang3_manager/src/thormang3_manager.cpp
d29fc2aa190865f63cdbac7faf7a3dca6f7ec1e0
[ "BSD-3-Clause" ]
permissive
khaleddallah/ExoBrainTon
a6a0812aaa6260729f46f78933644a6b35eaf751
4ce85fb42a5f696cffacb3d0400dea04616f42e1
refs/heads/master
2020-03-31T17:09:49.988586
2018-10-15T08:55:27
2018-10-15T08:55:27
152,409,668
0
0
null
null
null
null
UTF-8
C++
false
false
4,550
cpp
/******************************************************************************* * Copyright (c) 2016, ROBOTIS CO., LTD. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistribution...
[ "qs@COR" ]
qs@COR
f22817fbe8fbea945aa74d9ce79bc8a76d4b8504
b4ebcf9a7e4753221b4393ee40f3e3d82f6137ea
/final.ino
43cf1b087ec7826df4b5c8df1993bb76cf36b092
[]
no_license
unstoppable14/ourcode14
a2fe5e979ffbd392f4ed668fecbb351bc509a12c
0bf127d60f41bbda4231bbedf271c11436a97325
refs/heads/master
2020-04-27T00:40:44.510803
2014-04-29T22:11:28
2014-04-29T22:11:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,251
ino
#include <HUBeeBMDWheel.h> HUBeeBMDWheel leftWheel; HUBeeBMDWheel rightWheel; unsigned long previousMillis = 0; long interval = 88000; int leftSpeed = 250, rightSpeed = 250; volatile int count = 0; int leftQeiAPin = 2; //external interrupt 0 int leftQeiBPin = 4; int rightQeiAPin = 3; //external interrupt 1 int righ...
[ "karimala10@hotmail.fr" ]
karimala10@hotmail.fr
1975aebfc166e6e739d700fc2c0bc6fc4c407ae7
fdeca1313be23ba40a255e0a46856d427987a8ca
/external/boost_1_54_0_arm/boost/date_time/local_time/local_date_time.hpp
214cf7c666cbc295b8691e5ae7136ab45af83f73
[ "BSL-1.0" ]
permissive
petiaccja/raspberry-rc
ee42f0bf265bd4e1ab6fde4a31d015dcdfdea155
aa0f1cb18be2f6aad6fd5799ab79904fc64a4b24
refs/heads/master
2016-09-06T00:09:10.647868
2015-01-28T22:21:34
2015-01-28T22:21:34
23,356,436
0
0
null
null
null
null
UTF-8
C++
false
false
19,830
hpp
#ifndef LOCAL_TIME_LOCAL_DATE_TIME_HPP__ #define LOCAL_TIME_LOCAL_DATE_TIME_HPP__ /* Copyright (c) 2003-2005 CrystalClear Software, Inc. * Subject to the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) * Author: Jeff Garland, Bart Garst * $Date...
[ "kardospeter1994@hotmail.com" ]
kardospeter1994@hotmail.com
8d4dcd5b1d4d405586d00aed24c99878efd35d74
65553f43ab9632154321269862acc5467aeabb02
/GravityFalls/Address.cpp
842d724613ef1965c712ffc2ecdd0e506d8f8365
[]
no_license
adratkovskiy/GravityFalls
fd427b8303419820b0254de91846a3c6b972bd70
1f4645676dc9f6db5955605b6e5efd70208cb5db
refs/heads/master
2020-07-02T06:31:38.351697
2019-10-04T14:16:59
2019-10-04T14:16:59
201,440,475
0
0
null
null
null
null
UTF-8
C++
false
false
806
cpp
#include "Address.h" Address::Address() { address = 0; port = 0; } Address::Address(unsigned char a, unsigned char b, unsigned char c, unsigned char d, unsigned short port) { this->address = (a << 24) | (b << 16) | (c << 8) | d; this->port = port; } Address::Address(unsigned int address, unsigned short port) { t...
[ "79095647794@ya.ru" ]
79095647794@ya.ru
297e820057a5f05a80d5eeadf2c0e2debecb7406
0002ff30413d89f321e2a3ac49bcddcb7bf05526
/bluetoothleinterface.cpp
234732229031a6b3247276a98e2ce0fd32f81bc8
[]
no_license
piggz/bletest
e52da50fcc268e53740072b3765dfc50ccc9000b
88069381b6ee403fd2f91b753888c3e841eb2a36
refs/heads/master
2020-03-07T18:58:43.452456
2018-04-02T12:37:08
2018-04-02T12:37:08
127,658,384
6
0
null
null
null
null
UTF-8
C++
false
false
11,308
cpp
#include "bluetoothleinterface.h" #include <QLowEnergyCharacteristic> #include "qaesencryption.h" BluetoothLEInterface::BluetoothLEInterface() { m_deviceDiscoveryAgent = new QBluetoothDeviceDiscoveryAgent(this); m_deviceDiscoveryAgent->setLowEnergyDiscoveryTimeout(60000); connect(m_deviceDiscoveryAgent, &...
[ "adam@piggz.co.uk" ]
adam@piggz.co.uk
f488e2a2c13c1275ac652cee242eb58d528015b2
14840363a4541be3a2393e6973559bb7dbb4b7c7
/controller/src/vnsw/agent/oper/vn.h
10fb554255ed71e2ee0c1f33d13aebfa01940681
[]
no_license
forsakening/test-ipv6
792abd067266483b5969637cca42d93617d53411
b7be1f268b50cf8b4c8ac33793df1f2c8c6d9737
refs/heads/master
2020-04-08T11:54:04.654282
2018-11-27T11:33:49
2018-11-27T11:33:49
159,324,883
0
1
null
2018-12-04T02:07:07
2018-11-27T11:28:57
C++
UTF-8
C++
false
false
16,824
h
/* * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved. */ #ifndef vnsw_agent_vn_hpp #define vnsw_agent_vn_hpp #include <cmn/agent_cmn.h> #include <cmn/agent.h> #include <oper/agent_types.h> #include <oper/oper_db.h> #include <oper/oper_dhcp_options.h> #include <oper/agent_route_walker.h> using namespa...
[ "zhengx@certusnet.com.cn" ]
zhengx@certusnet.com.cn
60814098dbc5b90d1976cc8ab9ab9b9ecca053ca
15d8fe4a6858378e350b9df832062bc2050a75ce
/012-freetype-fonts-pt1/HUD012.cpp
8894dd1065cefda323afbe4af834c76e5dfd1090
[ "MIT" ]
permissive
michalbb1/opengl4-tutorials-mbsoftworks
cdf6ea187914792f237e4f4c60194d40472ade60
85909d0d22f51a4ebff5f22ac3f7456d77a6058a
refs/heads/dev
2022-11-05T09:27:03.270344
2022-10-29T05:14:35
2022-10-29T05:14:35
123,883,165
71
21
MIT
2022-10-29T05:14:36
2018-03-05T07:43:53
C++
UTF-8
C++
false
false
795
cpp
// STL #include <mutex> // Project #include "HUD012.h" namespace opengl4_mbsoftworks { namespace tutorial012 { HUD012::HUD012(const OpenGLWindow& window) : HUD(window) { static std::once_flag prepareOnceFlag; std::call_once(prepareOnceFlag, []() { FreeTypeFontManager::getInstance().loadSystem...
[ "michalbb1@gmail.com" ]
michalbb1@gmail.com
e9e2f92fff726fc1f94c2a43f1167631ddb1d7e3
372f75df550b0c09f5ea669142c6cc15bbf8ef8f
/Source/bmalloc/bmalloc/ObjectType.h
bce8aeef752c1d98f7b22b4455de86ec6e2a45f4
[]
no_license
exhumesw/webkit
048265798a78f4c9d33bb945cfafd54c7cd7c405
539494f3b02be9df9eb6dbd23b759c3539380607
refs/heads/master
2023-01-09T08:54:30.720864
2014-04-08T08:08:31
2014-04-08T08:08:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,812
h
/* * Copyright (C) 2014 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions a...
[ "ggaren@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc" ]
ggaren@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc
d446c9a772d13e4a84d5e534992d46cadbe37cb4
6ab9a3229719f457e4883f8b9c5f1d4c7b349362
/cf/058B.cpp
387847d796a2272857218b84cae97beca371a947
[]
no_license
ajmarin/coding
77c91ee760b3af34db7c45c64f90b23f6f5def16
8af901372ade9d3d913f69b1532df36fc9461603
refs/heads/master
2022-01-26T09:54:38.068385
2022-01-09T11:26:30
2022-01-09T11:26:30
2,166,262
33
15
null
null
null
null
UTF-8
C++
false
false
363
cpp
#include <cstdio> int reduce(int n){ if(!(n & 1)) return n >> 1; if(!(n % 3)) return n / 3; for(int i = 6; ; i += 6){ int t1 = i + 1, t2 = i - 1; if(!(n % t2)) return n / t2; if(!(n % t1)) return n / t1; if(t1 * t1 > n) return 1; } } int main(void){ int n; scanf("%d", &n); while(n != 1){ printf("%d ", ...
[ "mistermarin@gmail.com" ]
mistermarin@gmail.com
5521bf4e62aabec14a3070f5c8373c858711b709
32709d5de776d864df9581b1a9c2d9d966c3c31f
/isaac/08_06_Isaac_UI/MousePoint.cpp
8bc875a2a83d547403ab8e0f1473b39d69042b5c
[]
no_license
dadm8473/DirectX_Class
76010b18e490306cd44c21554cc8ab31f53df1ce
34dd319d39d93c1f73a7c7dd6c2047aa20694e69
refs/heads/master
2022-03-16T05:30:41.434207
2019-11-10T12:45:37
2019-11-10T12:45:37
186,415,853
0
0
null
null
null
null
UTF-8
C++
false
false
323
cpp
#include "DXUT.h" #include "MousePoint.h" MousePoint::MousePoint() { } MousePoint::~MousePoint() { } void MousePoint::Start() { type = UIOBJECT; CreateCollider(CL_MOUSE, 3); bCollision = false; } void MousePoint::Update(float deltaTime) { CGameObject::Update(deltaTime); if (bCollision) bCollision = false;...
[ "dadm8473@gmail.com" ]
dadm8473@gmail.com
bae560c3baae729bb520af9f0846f859ddc06423
7f610e8792081df5955492c9b55755c72c79da17
/CodeChefProblems/Guddu And His Mother/main.cpp
78179a31a4b7c8c03630076dacf278d4ce54d216
[]
no_license
Parikshit22/Data-Structures-Algorithms-Cpp
8da910d0c1ba745ccfc016e0d0865f108b30cb04
4515f41c8a41850bc2888d4c83b9ce5dc9b66d68
refs/heads/master
2022-12-09T09:54:42.240609
2020-09-02T03:48:43
2020-09-02T03:48:43
276,821,418
1
0
null
null
null
null
UTF-8
C++
false
false
620
cpp
#include <bits/stdc++.h> using namespace std; #define ll long long int main() { int t; cin>>t; while(t>0){ ll n; cin>>n; ll arr[n]; for(ll i=0;i<n;i++){ cin>>arr[i]; } ll sum = arr[0]; for(ll i=1;i<n;i++){ sum = sum^arr[i]; ...
[ "parikshitagarwal40@gmail.com" ]
parikshitagarwal40@gmail.com
500660fd6f95dadd46ceac24528d2fcfbeb17133
32bfc176a5db0d59129f3c39381c46b0a520eb86
/demos/QMPlay/src/plugins/mp3/build/moc/moc_formMp3.cpp
f3e90d2b90fb3bd2ed69256f27e5e022b3559028
[]
no_license
varzhou/Hifi-Pod
2fb4c6bd3172720f8813fbbdf48375a10598a834
eec4e27e37bc5d99b9fddb65be06ef5978da2eee
refs/heads/master
2021-05-28T18:26:14.507496
2012-09-16T05:45:28
2012-09-16T05:45:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,436
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'formMp3.h' ** ** Created: Tue Aug 21 20:18:31 2012 ** by: The Qt Meta Object Compiler version 62 (Qt 4.6.2) ** ** WARNING! All changes made in this file will be lost! ***************************...
[ "litroncn@gmail.com" ]
litroncn@gmail.com
5b5bf060678e626976ae06c27a1da8a91cddfe2e
cf3e9398e4a1a8b41aa12e3ef42aa2a73bff2507
/src/analyst/propagate.cpp
48d83e1b27a6a92662c18b9838ffeeafdaf49f88
[ "Apache-2.0", "MIT" ]
permissive
fritzo/pomagma
fb207e8bfd77c7ac592ddb27d5fd3213da50a532
ad2bf9c12eb58190f2761608c053ac89d3ddf305
refs/heads/master
2023-02-24T16:54:31.981623
2023-02-10T23:17:42
2023-02-10T23:17:42
4,943,857
12
0
NOASSERTION
2023-02-10T23:17:43
2012-07-08T05:22:16
C++
UTF-8
C++
false
false
11,401
cpp
#include <pomagma/analyst/propagate.hpp> #include <pomagma/atlas/macro/structure_impl.hpp> #include <pomagma/atlas/parser.hpp> #include <unordered_map> #include <unordered_set> #include <tuple> // defined in pomagma/third_party/farmhash/farmhash.h namespace util { size_t Hash(const char *s, size_t len); } namespace p...
[ "fritz.obermeyer@gmail.com" ]
fritz.obermeyer@gmail.com
270f68a6b0e5066f891cdf3ef447bf7695573a19
1ebc6909a717690b0f5245598069b8ea001a62a1
/source/Game/Objects/Gen/Common/Button.cpp
f5dff34fc50089493df14594cb92232d1020a07d
[]
no_license
aknetk/Sonic-3-Mixed
8342b290bc83abcf3c29a69b4f518addeb3454c3
8e5803281669677878d449a0234515654ed958fd
refs/heads/master
2020-07-18T11:14:42.533813
2019-09-04T05:09:03
2019-09-04T05:09:03
206,234,998
0
1
null
null
null
null
UTF-8
C++
false
false
1,906
cpp
// Object ID: 0x33 // Object Name: Button.cpp #include "Button.h" typedef IMath Math; void Button::Create() { Object::Create(); Active = true; Priority = false; Permanent = (SubType >> 4 & 0x1); TriggerID = (SubType & 0xF); TriggerType = (SubType >> 6 & 0x1); CollisionType = (SubType >> 5...
[ "aurumdude@gmail.com" ]
aurumdude@gmail.com
d589e0c9af34cf9370e9b92f1d568252afbb88d0
f81b774e5306ac01d2c6c1289d9e01b5264aae70
/components/permissions/android/permission_prompt_android.cc
245b0c7bc4eb01c98464cd14f94a4cdbb4241f1f
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
waaberi/chromium
a4015160d8460233b33fe1304e8fd9960a3650a9
6549065bd785179608f7b8828da403f3ca5f7aab
refs/heads/master
2022-12-13T03:09:16.887475
2020-09-05T20:29:36
2020-09-05T20:29:36
293,153,821
1
1
BSD-3-Clause
2020-09-05T21:02:50
2020-09-05T21:02:49
null
UTF-8
C++
false
false
6,582
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 "components/permissions/android/permission_prompt_android.h" #include <memory> #include "components/infobars/core/infobar.h" #include "componen...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
2dbd91cd5548a957ec1c1ca247292c429c74b1f2
cfeac52f970e8901871bd02d9acb7de66b9fb6b4
/generated/src/aws-cpp-sdk-datasync/include/aws/datasync/model/EfsInTransitEncryption.h
6eab760f5057307aac15abad0f4baabe50a12920
[ "Apache-2.0", "MIT", "JSON" ]
permissive
aws/aws-sdk-cpp
aff116ddf9ca2b41e45c47dba1c2b7754935c585
9a7606a6c98e13c759032c2e920c7c64a6a35264
refs/heads/main
2023-08-25T11:16:55.982089
2023-08-24T18:14:53
2023-08-24T18:14:53
35,440,404
1,681
1,133
Apache-2.0
2023-09-12T15:59:33
2015-05-11T17:57:32
null
UTF-8
C++
false
false
705
h
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/datasync/DataSync_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> namespace Aws { namespace DataSync { namespace Model { enum class EfsInTransitEncryption {...
[ "sdavtaker@users.noreply.github.com" ]
sdavtaker@users.noreply.github.com
d23996cad65a9ce75018d2e4e56272d292866daf
edfed5a1fd65c610e806e14d2af24c0911a7e35d
/src/version.h
91b0e2da827c0eddee6196958955279f4a3c317b
[ "MIT" ]
permissive
Earlz/v1.0.3snowballs
f4e838d3351495f0a41a5e8662a6aa7c76cd8be7
268f188ff6254981a01a24a27e8573066aeb78ee
refs/heads/master
2016-09-05T15:08:49.434507
2014-11-02T01:35:39
2014-11-02T01:35:39
30,275,688
0
0
null
null
null
null
UTF-8
C++
false
false
2,214
h
// Copyright (c) 2012 The Bitcoin developers // Copyright (c) 2012-2013 The Snowballs developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_VERSION_H #define BITCOIN_VERSION_H //#include <string> // // ...
[ "pfeffer.robert@gmail.com" ]
pfeffer.robert@gmail.com
9e0a9970feb982b3a1cbaedddd3903f217ffe33a
e48917bc51306284b972c490f76c277110bb003d
/sinbad-ogre-4c20a40dae61/Samples/Water/include/Water.h
6356a98fbbffb9d2b82d3f64e44a962594e4303f
[ "MIT" ]
permissive
sujoyp/ogre
9912316bd53bfa3b3a714eb657967ca9bbe9cdea
a6e3250385b8425f80a1fe0e93e1ae45c4608b6b
refs/heads/master
2020-03-29T23:11:52.337911
2018-09-26T16:57:34
2018-09-26T16:57:34
150,460,944
0
0
null
null
null
null
UTF-8
C++
false
false
20,143
h
/* ----------------------------------------------------------------------------- This source file is part of OGRE (Object-oriented Graphics Rendering Engine) For the latest info, see http://www.ogre3d.org/ Copyright (c) 2000-2013 Torus Knot Software Ltd Also see acknowledgements in Readme.html You may use this sa...
[ "paul.sujoy.ju@gmail.com" ]
paul.sujoy.ju@gmail.com
6ac45a88eacc59049a80455b8e135115d898e1ce
37e6f1a2a71809ab873eca160901e9ab43177704
/RayTracer/RayTracer/RayTracer.cpp
63163d3f70364dd1fc6fa59ffcb12ecedb785b5c
[]
no_license
mcmlevi/Portfolio_Levi_de_koning
1a1868c65917f59e0ded88bba900bd8a8ddadc57
9ed1797c96051163ba3b5703d7ee0f1193af9a0f
refs/heads/main
2023-04-28T21:53:28.011662
2021-05-27T20:29:45
2021-05-27T20:29:45
371,030,224
1
0
null
null
null
null
UTF-8
C++
false
false
23,087
cpp
#include "RayTracer.h" #include <cassert> #include "Utility.h" #include "Light.h" #include "clock.h" #include "Mat4x4.h" #include <thread> #include "STB/stb_image_write.h" #pragma warning(push) #pragma warning(disable: 6386) #pragma warning(disable: 26451) constexpr uint8_t MASK_moveLeft{ 0b0000'0001 }; // represent...
[ "39926733+mcmlevi@users.noreply.github.com" ]
39926733+mcmlevi@users.noreply.github.com
b6947edc933ee3f12cbd5888d905975797e931dd
5dcb9f1f256def4ec4916544989cc47381826dae
/1. Line Following Robot/Final codes/pid/pid2/pid2.ino
05650f1fcf3d56d03aa40696f2a0c5904a20828f
[]
no_license
always186/Btech-Projects
55122183ae9244b12ff8eef6db0cc1bbe2cda16a
cd335bba479b1e1d55c1796febefc97419db5e23
refs/heads/master
2020-04-01T10:12:13.054040
2017-11-29T13:23:33
2017-11-29T13:23:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,012
ino
#include <PID_v1.h> //INPUT PINS const int ls=A0;//pins on which sensors have been connected const int ms=A1; const int rs=A2; int max_speed=255, right_speed, left_speed ; double Setpoint=0; long sensors_average; long sensors_sum; double Intput; double Output; long a[3] = {0, 0, 0}; //OUTPUT PINS const ...
[ "shrutibhatia221197@gmail.com" ]
shrutibhatia221197@gmail.com
dd24393c4860b746b9f2943f03aa6e942f35d313
96592a6b5d159f843fe0e0ee18308cc0ebefcf82
/third_party/boost/libs/serialization/test/polymorphic_derived2.hpp
c8496b978a2f7597941b27515a9ee194da19e418
[ "BSL-1.0" ]
permissive
avplayer/tinyrpc
8d505b9f2a8594c59a6cab2d186ec945c7952394
7049b4079fac78b3828e68f787d04d699ce52f6d
refs/heads/master
2020-04-25T02:29:18.753768
2019-05-24T01:55:28
2019-05-24T01:55:28
172,441,102
8
3
null
null
null
null
UTF-8
C++
false
false
2,643
hpp
#ifndef BOOST_SERIALIZATION_TEST_POLYMORPHIC_DERIVED2_HPP #define BOOST_SERIALIZATION_TEST_POLYMORPHIC_DERIVED2_HPP // MS compatible compilers support #pragma once #if defined(_MSC_VER) # pragma once #endif /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 // polymorphic_derive...
[ "jack.wgm@gmail.com" ]
jack.wgm@gmail.com
f1431a133b2da308056e0ecedaab144396a33c64
1505db51031fb3b81cff6f061e050626ebad88e3
/speedwriter/src/speedwriterapp.cpp
e915b9657ca66465d62c73f66254bc5ad0834d63
[ "Apache-2.0" ]
permissive
dvijayak/Cascades-Samples
6070954811891061c054ba5fcb8f56fad5c56ff3
000886fd612691d998a87c7045932d3baf359431
refs/heads/master
2021-01-17T21:31:53.763664
2013-04-23T18:24:31
2013-04-23T18:24:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,684
cpp
/* Copyright (c) 2012 Research In Motion Limited. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law ...
[ "jlarsby@rim.com" ]
jlarsby@rim.com
0b8826750f3bc7f8b4edbb711ac875876ebf91a0
1e335d28ee6b5984bbb8472abde3dafc682d2323
/include/robot_controller.h
1275d07e81fc97a7ce6c7aea79e16d56d66f7788
[]
no_license
sgteja/Building-kit-with-order-update
795ce917e3a3aec64c33a2a7044ede79984cdb7c
304ecfdd27bce52c5a8de646ebea5a0967948fd9
refs/heads/master
2021-06-21T14:31:57.381808
2020-04-15T18:51:33
2020-04-15T18:51:33
254,497,491
0
0
null
null
null
null
UTF-8
C++
false
false
3,118
h
// // Created by zeid on 2/27/20. // #ifndef SRC_ROBOT_CONTROLLER_H #define SRC_ROBOT_CONTROLLER_H #include <geometry_msgs/Pose.h> #include <geometry_msgs/PoseStamped.h> #include <moveit/move_group_interface/move_group_interface.h> #include <moveit/planning_scene_interface/planning_scene_interface.h> #include <ros/r...
[ "gnyanateja@gmail.com" ]
gnyanateja@gmail.com
fdce04adffca63fc3a4a69f7b10b26d8326a0fb9
978c8440bad518a032cadec90a486a63621b481c
/System/Main.cpp
0b9186d1a7c8393a35f63f1290532c8039223b6b
[]
no_license
tengxian4/Animal-Shelter-Management-System
1fc84df1c69988240000d1d30356b5cc608e3257
186754c841ad84ddde3cbb5f3a2baf17e169a604
refs/heads/main
2023-05-30T19:31:07.644810
2021-06-13T15:11:09
2021-06-13T15:11:09
376,572,640
0
0
null
null
null
null
UTF-8
C++
false
false
296
cpp
#include <Windows.h> #include <iostream> #include <string> #include <iomanip> #include <algorithm> using namespace std; #include "Staff.h" #include "Login.h" #include "StaffManager.h" int main() { Login* login = new Login(); login->displayLogin(); return 0; }
[ "noreply@github.com" ]
noreply@github.com
0112d906080f94faa980a36751072b86da3b7dbf
f3dc1bfda2c3fa5d392deec35046a0d37d494feb
/src/entities/include/diguyTypeLookup.h
3b690d3ff65ff1c834c193f757a5437b7d04f3e2
[]
no_license
yanjunlinzju/NPSNET-IV
14d15168bfc958a555e1e5be616f8afff37c3e1b
09ad5905964b1eb3463b8500b0a6c541707fa13f
refs/heads/master
2021-12-02T12:48:49.891646
2013-05-16T18:14:53
2013-05-16T18:14:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
480
h
#ifndef DIGUY_TYPE_LOOK_UP_DOT_H #define DIGUY_TYPE_LOOK_UP_DOT_H const int LU_ARRAY_SIZE = 255; typedef struct _luStorage { char **equipment; } luStorage; #ifndef TRUE #define TRUE (int)1 #endif #ifndef FALSE #define FALSE (int)NULL #endif class diguyTypeLookup { private: luStorage stuff[LU_ARRAY_SIZ...
[ "simstorm@mac.com" ]
simstorm@mac.com
7389ee50b3ee46181235980f580ae572fbea4695
87df5af480872d126164a8b669b2d872a150709f
/smartbin1.ino
a0ebfc51827947488a6ae265473f73a189b24a3c
[]
no_license
Chirag-raichu/Arduino-Codes
806453d6bb3329558c9aca4115addf7f6fd18092
5df6c3336eaa5ca523c7e883273561b019f0eee3
refs/heads/master
2021-07-21T12:53:59.999341
2020-09-20T10:37:36
2020-09-20T10:37:36
216,881,410
0
0
null
null
null
null
UTF-8
C++
false
false
5,291
ino
int b=0; int a=0; int c=0; int motor1_state; #include <ESP8266WiFi.h> #include "Adafruit_MQTT.h" #include "Adafruit_MQTT_Client.h" #define TRIGGER D1 #define ECHO D2 #define LED1 D6 #define LED2 D7 /************************* WiFi Access Point *********************************/ #define WLAN_SSID ...
[ "noreply@github.com" ]
noreply@github.com
a4a5d6fa043a1a182d9b44d9d121a5e77ccb1972
59a53ffbfe19eb84ba310e66889462ce67451318
/704.search.cpp
1ce3d5cc43808a15e44a845b22888b2a78c29cc5
[]
no_license
wfnuser/leetcode
0877e03fed6617836a8c4dd695f62868d00c0f05
3202104983b4b68272766a3285ffe8683e9b1712
refs/heads/master
2022-06-29T04:16:12.874513
2022-05-25T05:52:03
2022-05-25T05:52:03
142,956,247
42
14
null
null
null
null
UTF-8
C++
false
false
568
cpp
class Solution { public: int search(vector<int>& nums, int target) { int left = 0; int right = nums.size() - 1; while (left <= right) { if (left == right) { if (nums[left] == target) return left; return -1; } int mid = left...
[ "wfnuser@126.com" ]
wfnuser@126.com
433cb1bd287a965c895f1e17c1654183a525363c
d25c3d2a553bf57574c72288cc54d6321b83a972
/libraries/SHT85/SHT85.h
64e7068653b6f871f09fa8d40cb58c8cff24c202
[ "MIT" ]
permissive
roberto-lopardo-aimen/Arduino
32f99d48920d3cacefb7135a1528e1cd641b6a47
f4d0b1d978fbf4009cd87d0fa6cb7c11cc76aea3
refs/heads/master
2023-05-07T13:21:12.226603
2021-05-26T14:39:03
2021-05-26T14:39:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,761
h
#pragma once // // FILE: SHT85.h // AUTHOR: Rob Tillaart // VERSION: 0.1.1 // DATE: 2021-02-10 // PURPOSE: Arduino library for the SHT85 temperature and humidity sensor // https://nl.rs-online.com/web/p/temperature-humidity-sensor-ics/1826530 // URL: https://github.com/RobTillaart/SHT85 // // keep ...
[ "rob.tillaart@gmail.com" ]
rob.tillaart@gmail.com
44cc1904776be7d2db1fbd71972f4cc11d726084
553cdf6a503ac1678188d248f82a2cd7bba1e720
/Assignment3/assignment3/objects/quad.cpp
afcbfd422766575e71cc01521bd91b1e057ee7a0
[]
no_license
zhaozhao15/Computer-Graphics
f8af984f72b4849201f9fb9b3095bb45378e35fe
2657d068a4cfae2b677594a294cddec733a2843d
refs/heads/master
2020-05-17T13:57:40.635700
2019-04-27T08:48:06
2019-04-27T08:48:06
183,749,423
0
0
null
null
null
null
UTF-8
C++
false
false
1,986
cpp
#include "quad.h" namespace Orchid { Quad::Quad( const Vector3d & a, const Vector3d & b, const Vector3d & c, const Vector3d & d, const Material & material) : _a{ a } , _b{ b } , _c{ c } , _d{ d } , _material{ material } { } ObjectIntersection Quad::getIntersection(const Ray & ray) { //triangl...
[ "zhaodonghao0105@163.com" ]
zhaodonghao0105@163.com
c15f2ea3c675e1717c742340df8cbf9e2e3eaab7
51cced907524ee0039cd0b129178caf939e56912
/media/libaaudio/src/binding/AudioEndpointParcelable.h
e4f8b9ee13181b56d7164018d8b8a27b8eac2bc5
[ "LicenseRef-scancode-unicode", "Apache-2.0" ]
permissive
crdroidandroid/android_frameworks_av
ea109b991a177220dbc597a43df01e919112f545
9f6a26f1e4cb02c6504d670f292a9b88ec6a7106
refs/heads/10.0
2023-08-31T06:58:55.034080
2022-01-23T08:25:07
2022-01-23T08:25:07
277,145,615
8
80
NOASSERTION
2023-09-13T07:10:14
2020-07-04T16:22:52
C++
UTF-8
C++
false
false
2,530
h
/* * Copyright 2016 The Android Open Source Project * * 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 applica...
[ "philburk@google.com" ]
philburk@google.com
75a270243a46ec13be8aa964495c72d8a3784c28
c474c1c3743ce3362bce0823fcf1840d2d22b4a8
/window.cpp
3290c346e98a6bfe831bdf5e23ae8a7c9756bdd1
[]
no_license
ab93/Satellite-Tracking-and-Visualization
22afa05b6968ffaee99fc0412a0a824263569516
f095f2ea99cc3b35375726671c737901b4fca115
refs/heads/master
2021-01-10T14:47:53.065886
2015-10-13T22:11:56
2015-10-13T22:11:56
44,208,493
2
2
null
null
null
null
UTF-8
C++
false
false
319
cpp
#include <QtGui> #include<qt4/QtGui/qlayout.h> #include "glwidget.h" #include "window.h" Window::Window(int index) { glWidget = new GLWidget(index); QHBoxLayout *mainLayout = new QHBoxLayout; mainLayout->addWidget(glWidget); setLayout(mainLayout); setWindowTitle(tr("Satellite Tracking")); }
[ "avikbasu93@gmail.com" ]
avikbasu93@gmail.com
aeb70a5569c862842033bca36442db20463edfb3
a38646f0798adf035aa76147e36b27edf3170b92
/src/cpp/classification/models_test.cc
6750923b1ebeaeca889fd9d3e9a9e6de6871bcc6
[ "Apache-2.0" ]
permissive
powderluv/edgetpu
d305cbf9a7a6a0981e2c33288dc5a2b3cb07f243
a968b4a72546c8cad26d25fcb6bb504849503c4a
refs/heads/master
2020-07-31T20:20:50.762191
2019-10-18T23:14:38
2020-02-16T01:47:12
210,742,049
1
1
Apache-2.0
2019-10-18T23:55:04
2019-09-25T02:51:10
C++
UTF-8
C++
false
false
8,920
cc
#include "absl/flags/parse.h" #include "glog/logging.h" #include "gtest/gtest.h" #include "src/cpp/classification/engine.h" #include "src/cpp/test_utils.h" namespace coral { namespace { TEST(ClassificationEngineTest, TestMobilenetModels) { // Mobilenet V1 1.0 TestClassification(TestDataPath("mobilenet_v1_1.0_224_...
[ "dkovalev@google.com" ]
dkovalev@google.com
ae6f30b78d9b22485f1298d9f2d0f1251cf737df
e78567ba6b987526a12429527e2c691bc381837a
/include/GTL/algorithm.h
1333d9c9a15df9923ad6d4207d5aa244b46be051
[]
no_license
archieren/SSD_Tracker
60c742b21cc77961464a08a395a5623e86446e81
225e9f9dbf22b18ace41370a6fa3b648d7f0cca5
refs/heads/master
2020-07-02T17:29:34.139377
2020-04-22T09:59:41
2020-04-22T09:59:41
201,605,726
1
0
null
null
null
null
UTF-8
C++
false
false
2,018
h
#ifndef GTL_ALGORITHM_H #define GTL_ALGORITHM_H #include <GTL/GTL.h> #include <GTL/graph.h> #include <iostream> __GTL_BEGIN_NAMESPACE /** * $Date: 2003/03/24 15:58:54 $ * $Revision: 1.14 $ * * @brief Abstract baseclass for all algoritm-classes. */ class GTL_EXTERN algorithm { public: /** * @var algori...
[ "renjianpeng@gmail.com" ]
renjianpeng@gmail.com
f1f4068fddcb3d822a46af9c92788add99edb12b
44e7e032439086c833ffc080a947f5cbe8342f93
/renderdoc/replay/replay_controller.cpp
9ec2ddd1b65fc60ebb68e7e05dbc477ba830d747
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gomson/renderdoc
3c58b589b435d96b321f1faa12c3969d881e9163
8f6973578058f04e02f5a4b92026ae09b9fe1e19
refs/heads/master
2021-01-20T04:36:35.168879
2017-04-27T20:35:49
2017-04-27T21:16:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
55,380
cpp
/****************************************************************************** * The MIT License (MIT) * * Copyright (c) 2015-2017 Baldur Karlsson * Copyright (c) 2014 Crytek * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (t...
[ "baldurk@baldurk.org" ]
baldurk@baldurk.org
962a5f2a9c685ab044bdd99894979dc3073112c0
0904dad5193e3bdf9455950a5b37e50c42e3337e
/Chapter5/5.5判断字符数组中是否所有的字符都只出现过一次.cpp
81b40e6bbd74c58521f995a04eff4a76dc572993
[]
no_license
dtdongwenbo/coding-interview-guide-according-Zuo-master
f095c1732423d2e7720f453562592bdbe6f5b7d6
1b64563ade41142bd80878af876efe5de6f96ab0
refs/heads/master
2020-06-05T05:39:38.104224
2019-07-04T07:46:35
2019-07-04T07:46:35
192,332,706
0
0
null
null
null
null
MacCentralEurope
C++
false
false
416
cpp
#include <iostream> #include <string> using namespace std; bool isUnique1(string str) { if(str.empty()) return false; bool map[256];//”√bool for(int i = 0;i<str.size();i++) { if(map[str[i]]) return false; map[str[i]] = true; } return true; } int main() { string str1 = "abc"; ...
[ "noreply@github.com" ]
noreply@github.com
8f8a80bc7eedc3091b70ee9e04c40b115ce6c1c9
4d9bdc9f2085de71cfc909506cdce63c8a0a1370
/chrome/updater/win/net/network_winhttp.cc
88f9c9ce09f85e0d65e21415dd5c5f7f59b2ac65
[ "BSD-3-Clause" ]
permissive
gdpr69/chromium
5629de8d51b9b789aed3010fdda5e0b2ca3db6b9
2752c22743a71b417e8c257ca6d1cacc8318683e
refs/heads/master
2022-11-06T04:55:02.118967
2020-05-31T09:10:44
2020-05-31T09:10:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
17,864
cc
// Copyright 2019 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 "chrome/updater/win/net/network_winhttp.h" #include <limits> #include <utility> #include "base/bind.h" #include "base/callback.h" #include "bas...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
36b4766284995c1d9974796837497557af9595e8
8cdd62807f116fb92851f99bfcdd7de3c3330ed6
/arduino/opencr_arduino/opencr/libraries/OpenManipulator/src/open_manipulator_msgs/JointPosition.h
9a046a3887a187b88167d9c80a2fb4d3a70c364b
[ "Apache-2.0" ]
permissive
ROBOTIS-GIT/OpenCR
60ae4d28e39207430687b18e09bab88e5aee6107
68ec75d8a400949580ecf263e0105ea9743b878e
refs/heads/master
2023-08-24T23:05:27.672638
2023-08-01T08:58:39
2023-08-01T08:58:39
57,167,157
388
258
Apache-2.0
2023-09-05T04:41:46
2016-04-26T22:48:46
C
UTF-8
C++
false
false
4,804
h
#ifndef _ROS_open_manipulator_msgs_JointPosition_h #define _ROS_open_manipulator_msgs_JointPosition_h #include <stdint.h> #include <string.h> #include <stdlib.h> #include "ros/msg.h" namespace open_manipulator_msgs { class JointPosition : public ros::Msg { public: uint32_t joint_name_length; type...
[ "yhna@robotis.com" ]
yhna@robotis.com
ac6948bcb80fae96d0c6eafdebce359286068a8e
600df3590cce1fe49b9a96e9ca5b5242884a2a70
/third_party/skia/samplecode/SampleText.cpp
ca09cc749a8e13add92253d7a7feff729dd308ee
[ "BSD-3-Clause", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0" ]
permissive
metux/chromium-suckless
efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a
72a05af97787001756bae2511b7985e61498c965
refs/heads/orig
2022-12-04T23:53:58.681218
2017-04-30T10:59:06
2017-04-30T23:35:58
89,884,931
5
3
BSD-3-Clause
2022-11-23T20:52:53
2017-05-01T00:09:08
null
UTF-8
C++
false
false
5,172
cpp
/* * Copyright 2011 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "SampleCode.h" #include "SkView.h" #include "SkCanvas.h" #include "SkReadBuffer.h" #include "SkWriteBuffer.h" #include "SkGradientShader.h" #include "SkGraphics.h" #i...
[ "enrico.weigelt@gr13.net" ]
enrico.weigelt@gr13.net
6cc393215b249372dfb5c31e1e7af55f826805e4
5eb87aed89e90e6e0eff8de966b1bf0e5cc78608
/main.cpp
ab331578a3418d42b64f4969d87784d7d1005c42
[]
no_license
Philip-Ch/investment_Capitalisation_Calculator
d3b389d0e5ef52376c18d281da77806db1bf4419
51847c8335b1183f7b4101f639675d626eb1f153
refs/heads/master
2022-11-07T23:11:19.422950
2020-06-24T19:01:34
2020-06-24T19:01:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,780
cpp
#include <iostream> #include <random> using namespace std; void message(unsigned int y, float czas = 0) { switch (y) { case 0: { cout << "\nProgram obliczy okres lokaty kapitałowej do osiągnięcia upragnionych odsetek.\n"; break; } case 1: { cout << "Uzyskanie wybranej kapitalizacji odsetek nastąpi po okr...
[ "thesarlysec@gmail.com" ]
thesarlysec@gmail.com
f0580e2d8461b4e6b048419659839181c667a64e
88cebe716e9d6cc830199c6a4798156a7f80123e
/createshowdialog.cpp
cdc47bb65dc6803cd3f40d3efdeb95e07cec4c70
[]
no_license
maksiplus19/db_coursework_admin
b2c00e57b122c048af50bb9454b412ab686ee821
43e97aae7506955f59fa41b83cb6ee999dacf472
refs/heads/master
2020-09-05T11:21:30.855998
2019-11-07T19:15:43
2019-11-07T19:15:43
220,088,778
0
0
null
null
null
null
UTF-8
C++
false
false
840
cpp
#include "createshowdialog.h" #include "ui_createshowdialog.h" CreateShowDialog::CreateShowDialog(QWidget *parent) : QDialog(parent), ui(new Ui::CreateShowDialog) { ui->setupUi(this); } CreateShowDialog::~CreateShowDialog() { delete ui; } int CreateShowDialog::getYear() const { return year; } in...
[ "Niklvitoz1" ]
Niklvitoz1
f46d9e6cd2bc80b6830ce935a1b4e4635babf867
8a2820a15b8dfd987602299baec7468bd825fd8d
/Volume1/1040/1040.cpp
8297d20ac0b1bf316b5263441997ebea9e992e28
[]
no_license
lijiancheng0614/poj_solutions
eda5c2c799473aae398ec17aca9c52788ebe5b0a
919fb848f21ea9a0b7eff258c1788bb8f8d11bac
refs/heads/master
2018-09-25T10:47:36.585143
2018-07-14T07:29:12
2018-07-14T07:29:12
108,067,130
0
0
null
null
null
null
UTF-8
C++
false
false
1,785
cpp
#include <iostream> #include <vector> #include <algorithm> using namespace std; typedef pair<int, int> pii; typedef pair<pii, int> piii; class Solution { public: int solve(vector<piii> a, int n, int m) { sort(a.begin(), a.end()); this->a = a; this->n = n; n_a = a.size(); ...
[ "lijiancheng0614@gmail.com" ]
lijiancheng0614@gmail.com
2aa3e2b5b55d7b841638c17e9fb95e81f0b06feb
471fc6e1255582b63d0abb054cb8c35f65f8a581
/ProjectDFA/dfa.h
28d9ef7d295c2fafa55211a3af7f3c023de63ed4
[]
no_license
mihaela96/ProjectsFromUniversity
676920f205ae334302abad540be5c06c694c9097
3c9c82287c96f2e4323347ade8caaab399934cfb
refs/heads/master
2021-01-21T09:54:02.324382
2017-02-27T23:28:01
2017-02-27T23:28:01
83,350,350
0
0
null
null
null
null
UTF-8
C++
false
false
1,031
h
#ifndef DFA_H_INCLUDED #define DFA_H_INCLUDED #include<map> #include<set> #include <windows.h> #include<utility> class DFA { private: int number_states; int startstate; set<int>finalstates; char* alphabet; typedef pair<int,char> trans; map<trans,int> transition; public: DFA(); DFA(DFA cons...
[ "noreply@github.com" ]
noreply@github.com
1a25c4e08f0d2a5a656fcd794b62f38de9d6c05e
333908d32505e317ec683fbfb3f4ffd7d7d2198c
/project/CatchAFairy/Ishikawa/DirectX/Texture/ITTextureData.cpp
ee690aba29e985b62207280ebabbb4b0def1d2ff
[]
no_license
TakayoshiIshikawa/CatchAFairy
ac4a963802a1d7bf9f33d48102a00d2bab557e7a
645b690612744dc759b88c6ba488bf9b3e466181
refs/heads/master
2020-09-12T08:55:29.492895
2019-11-29T01:10:43
2019-11-29T01:10:43
222,374,532
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
7,369
cpp
//============================================================================= // ITTextureData.cpp // // 自作テクスチャデータのソースファイル // // Copyright(c) 2019 Ishikawa Takayoshi All Rights Reserved. //============================================================================= #include "ITTextureData.h" #pragma warning(disable...
[ "tkis0rei@gmail.com" ]
tkis0rei@gmail.com
0cbc3b89c6a54906e7ac2071985de87286f92649
6e72bfb69388f3be8af7e2887c56de30ff2a0ba1
/appinventor/Pods/geos/geos/src/simplify/TaggedLinesSimplifier.cpp
e33f5f1dcc68ecbf5df0d03b6057d286c5cf01da
[ "LGPL-2.1-only", "Apache-2.0" ]
permissive
bobanss/appinventor-sources
4a0fbc1867ffb2696cb19ff27ff68f0296236883
719e7244bf676675b95339871f16e54521a9a47f
refs/heads/master
2023-07-06T10:30:09.141453
2023-06-18T01:07:42
2023-06-18T01:07:42
208,414,643
0
0
Apache-2.0
2019-09-14T08:57:27
2019-09-14T08:57:27
null
UTF-8
C++
false
false
1,605
cpp
/********************************************************************** * * GEOS - Geometry Engine Open Source * http://geos.osgeo.org * * Copyright (C) 2006 Refractions Research Inc. * * This is free software; you can redistribute and/or modify it under * the terms of the GNU Lesser General Licence as publishe...
[ "ewpatton@mit.edu" ]
ewpatton@mit.edu
611f352fdcc483c5e6bfe1980fc5b1ea78ac194d
1a28b294cd51e419553f7c25be7eea36cfded041
/bird.cpp
0032f5928c1d09b8c739ac1449c4eb5bed4bc579
[]
no_license
RiceDam/Lab4
752bf69f49dc020ca3cfa871b2fdba5958db0eb2
1490619399a183ba3e5ba4574b43cfbe25cb5439
refs/heads/master
2022-12-25T00:59:09.576573
2020-10-03T04:32:32
2020-10-03T04:32:32
299,692,432
0
0
null
null
null
null
UTF-8
C++
false
false
993
cpp
// // Created by Eric Dam on 2020-10-01. // #include "bird.hpp" Bird::Bird() { cout << "Bird is being created" << endl; } Bird::Bird(int age1, double x1, double y1, double z1) { age = age1; x = x1; y = y1; z = z1; cout << "Bird is being created" << endl; } Bird::Bird(const Bird &bird) { ...
[ "dam.eric3@gmail.com" ]
dam.eric3@gmail.com
08ee626f1cd4ad96f416120591c63808fbe49867
c8fee515051cd890158037fe09d74285c3b02cfd
/run/quickTestStack/0/electrolyte/k
b20032c9d4c9c2868bfd9c2640b996a74770ead3
[]
no_license
ChangyongLeee/myOpenfuelcell
725950e31513fb21058ab3a47688ad80dd934982
21a5162266c777994ee749c5f1f2d450e46f8c6f
refs/heads/master
2022-12-30T06:55:31.255023
2020-10-19T10:39:45
2020-10-19T10:39:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,262
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.1.x | ...
[ "rnishida@users.sourceforge.net" ]
rnishida@users.sourceforge.net
c2d3e20b727ace34bc75c7ac5b4691e1440a7845
fe90df7bbc1f5d5d76935c5adb70e73f2f5ee689
/Savitch_8thEd_Chp2_Prob3/main.cpp
1af6a91f1e1e801c35c5283340e00c388dd75077
[]
no_license
paulwilfley/Pablo
5dc848d377b0cf5555e2394679e3102c4310419a
c7c4c01450d4dfe8c1395bc724f1232d8a927983
refs/heads/master
2021-01-22T03:49:56.651630
2014-03-17T17:05:10
2014-03-17T17:05:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,181
cpp
/* * File: main.cpp * Author: Paul Wilfley * Created on March 17, 2014, 12:07 AM * Purpose: Determine the amount owed for 6 months retroactive pay at 7.6% */ //system Libraries #include <iostream> using namespace std; //Global Constants const float PAY_INC = .076; //Calculates the retroactive percentage. ...
[ "paulwilfley@gmail.com" ]
paulwilfley@gmail.com
01794178628de613fd33ff3f6cedd5e212fa5ca0
de808c366fb5399761c4109359f5abc23c8fe0e3
/HIB_SERVER/.svn/pristine/e6/e672d979a96e4c8264207fb9fc96fcc09e888481.svn-base
97a683c3e67bbbc3d3dd4b90202756f4911d34a2
[]
no_license
chos2008/chos-framework-c
063a54f7c593cce56d1f1802c314285d5e03bc7c
3bacf62b6a461f80195e7b32d1437f247e02ce94
refs/heads/master
2020-12-25T19:26:17.885448
2015-06-26T04:34:37
2015-06-26T04:34:37
29,383,162
0
0
null
null
null
null
UTF-8
C++
false
false
108
/* * * * */ #if ! defined NETWORK_ELEMENT #define NETWORK_ELEMENT class NetworkElement { }; #endif;
[ "chos2008@126.com" ]
chos2008@126.com
6382aca82849d58464939099b954c005897bfc52
d8a4379e3cb3e0776487e5f341f352c22d3a96ed
/bier/core/function_context.h
3a57337e3e68bd0ece97da3e743c517d5e398af9
[ "Apache-2.0" ]
permissive
IKholopov/BIeR
08e39915a5e76238b7c84127ff599a2d3b0d2bd2
c3cba6a7146b2a80129d43e850705f0e2520ea3f
refs/heads/master
2020-06-19T21:32:59.090751
2019-10-22T19:36:06
2019-10-22T19:36:06
196,882,006
0
0
null
null
null
null
UTF-8
C++
false
false
821
h
/* Copyright 2019 Igor Kholopov Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in w...
[ "kholopov96@gmail.com" ]
kholopov96@gmail.com
fc6a92cd195b986476434f4d46b5547c4cb1c620
5702a2ca177ddf2b5554102aa71f056d4205f784
/src/PSILog.h
b593e31d1f3ac0657937f79ca2b94ae145ff3647
[]
no_license
Sakari369/PSILog
3088044e90210f6602ebeb3bfe637d2f6749bf52
c3f4389d781ab7324bd90bcbb79c4204ad0ec4fc
refs/heads/master
2021-09-26T00:11:12.695054
2018-10-26T10:48:00
2018-10-26T10:48:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,459
h
// PSILog.h // // Class for handling logging, with support for multiple outputs, thread safety and modular extensions of // user configurable output destinations // // Copyright (c) 2018 Sakari Lehtonen <sakari AT psitriangle DOT net> #include <iostream> #include <sstream> #include <string> #include <fstream> #include...
[ "sakari@psitriangle.net" ]
sakari@psitriangle.net
8a379e54e58b831a733d04fecb30dbc647029418
54cf4b6f2dab5c6ce359602790b17d61778536ff
/trie.cpp
d32946873f771e12f9b8a00d631c63a429405987
[]
no_license
GiveThanksAlways/UCSD_Algorithms_on_Strings
4c002215ec4728af32d87df84b71688bacc81c9e
fcccd63fa42435b1d129b0c57479db3417e0ed2b
refs/heads/master
2020-05-02T01:26:15.668857
2019-05-09T01:48:06
2019-05-09T01:48:06
177,686,226
0
0
null
null
null
null
UTF-8
C++
false
false
1,610
cpp
#include <string> #include <iostream> #include <vector> #include <map> using std::map; using std::vector; using std::string; using std::cout; using std::endl; typedef map<char, int> edges; typedef vector<edges> trie; trie build_trie(vector<string> & patterns) { trie t; edges root; t.push_back(root); // go th...
[ "noreply@github.com" ]
noreply@github.com
87f3e7879b30c5286fc85e6176af9b6a568556b1
b367fe5f0c2c50846b002b59472c50453e1629bc
/xbox_leak_may_2020/xbox trunk/xbox/private/ui/maxsdk/SAMPLES/Melt/MELT.CPP
dcafd427aca7ea3ee195bc39c521a35dcf2bd79b
[]
no_license
sgzwiz/xbox_leak_may_2020
11b441502a659c8da8a1aa199f89f6236dd59325
fd00b4b3b2abb1ea6ef9ac64b755419741a3af00
refs/heads/master
2022-12-23T16:14:54.706755
2020-09-27T18:24:48
2020-09-27T18:24:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,893
cpp
/*===========================================================================*\ | | FILE: melt.cpp | Simple melting modifier | | AUTHOR: Harry Denholm | All Rights Reserved. Copyright(c) Kinetix 1998 | | HIST: 3-6-98 : Ported | This is pretty self-contained. Bit messy.. | \*==========...
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
fc1d857e412f634d879e6163a2b30755b1dcb703
7188c98e04cd9c48942195b7f0f22e4717efb674
/chrome/chrome_cleaner/chrome_utils/extensions_util_unittest.cc
a8d420fd195de541f64d5fc87207b715c5afafd7
[ "BSD-3-Clause" ]
permissive
tornodo/chromium
1aa8fda7e9f506ddf26d69cd74fcf0e9e6595e39
1d748d142bde525249a816b1d9179cd9b9fa6419
refs/heads/master
2022-11-30T12:17:02.909786
2020-08-01T03:40:02
2020-08-01T03:40:02
197,871,448
0
0
BSD-3-Clause
2020-08-01T03:40:03
2019-07-20T02:53:57
null
UTF-8
C++
false
false
21,905
cc
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/chrome_cleaner/chrome_utils/extensions_util.h" #include <memory> #include <string> #include <unordered_set> #include <utility> #include ...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
ca4b07848603afd3bc5a5b9cdd969e7f003adcf9
11a0a5ab2fa132ea71e09b93f120d418fd034b45
/Workspace/src/localization_converter/src/localization_converter_node.cpp
af273968b1994c0e2ad9fb9286b8f1fe296784b5
[]
no_license
mluczyn/MarsRover2019
17b05753536967378d01a48c8911b2e996f00a69
43167763e58886c73543df27a0592055ecb2bf00
refs/heads/master
2020-04-18T10:36:34.984976
2019-01-19T02:39:56
2019-01-19T02:39:56
167,472,609
0
0
null
2019-01-25T02:35:48
2019-01-25T02:35:48
null
UTF-8
C++
false
false
2,860
cpp
#include <ros/ros.h> #include <geometry_msgs/Pose2D.h> #include <nav_msgs/Odometry.h> #include <sensor_msgs/NavSatFix.h> #include <tf/tf.h> #include <tf2_geometry_msgs/tf2_geometry_msgs.h> #include <tf2_ros/buffer.h> #include <tf2_ros/transform_listener.h> #include <robot_localization/SetDatum.h> tf2_ros::Buffer tfB...
[ "tommeredith14@gmail.com" ]
tommeredith14@gmail.com
7143c05336535ef26aabfb20ba246cac53287cea
ee81010b5bbd0c8ecb432f17d608e27dd9d22906
/Chapter7/Asio/Tutorial/timer4.cpp
0e7694a7deb1d25a99814f1313d2b1721813f7b6
[]
no_license
xujie-nm/learnMuduo
c7a5b9e106e575e6c328aacacdc78dc8ac9ba20f
fbb9c9abb278f7e9a7346084eda320590fdff113
refs/heads/master
2021-01-10T01:18:22.589885
2016-01-08T08:37:54
2016-01-08T08:37:54
43,409,342
0
0
null
null
null
null
UTF-8
C++
false
false
951
cpp
#include <muduo/net/EventLoop.h> #include <iostream> #include <boost/bind.hpp> #include <boost/noncopyable.hpp> class Printer : boost::noncopyable{ public: Printer(muduo::net::EventLoop* loop) : loop_(loop), count_(0){ loop_->runAfter(1, boost::bind(&Printer::print, t...
[ "xujie_nm@163.com" ]
xujie_nm@163.com
5b599bb70d0d45b98ace1135d7e8ed83e1128690
0014fb5ce4aa3a6f460128bb646a3c3cfe81eb9e
/testdata/14/7/src/node7.cpp
afc5cca2affec0554b4add209134bda80a087831
[]
no_license
yps158/randomGraph
c1fa9c531b11bb935d112d1c9e510b5c02921df2
68f9e2e5b0bed1f04095642ee6924a68c0768f0c
refs/heads/master
2021-09-05T05:32:45.210171
2018-01-24T11:23:06
2018-01-24T11:23:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,868
cpp
#include "ros/ros.h" #include "std_msgs/String.h" #include "unistd.h" #include <sstream> #include <random> std::random_device rd; std::mt19937 gen(rd()); std::normal_distribution<> d(0.012325, 0.005); class Node7{ public: Node7(){ sub_3_7_flag = 0; sub_3_7 = n.subscribe("topic_3_7", 1,...
[ "sasaki@thinkingreed.co.jp" ]
sasaki@thinkingreed.co.jp
38bc8d41bac84cdcb4859156db475ee621ea72eb
ad8271700e52ec93bc62a6fa3ee52ef080e320f2
/CatalystRichPresence/CatalystSDK/ClientPlayerInputPlaybackEntityData.h
2a8c0f158a07c1b41718861daba43d01b4d2da27
[]
no_license
RubberDuckShobe/CatalystRPC
6b0cd4482d514a8be3b992b55ec143273b3ada7b
92d0e2723e600d03c33f9f027c3980d0f087c6bf
refs/heads/master
2022-07-29T20:50:50.640653
2021-03-25T06:21:35
2021-03-25T06:21:35
351,097,185
2
0
null
null
null
null
UTF-8
C++
false
false
631
h
// // Generated with FrostbiteGen by Chod // File: SDK\ClientPlayerInputPlaybackEntityData.h // Created: Wed Mar 10 19:07:53 2021 // #ifndef FBGEN_ClientPlayerInputPlaybackEntityData_H #define FBGEN_ClientPlayerInputPlaybackEntityData_H #include "Realm.h" #include "EntityData.h" class ClientPlayerInputPlaybackEntity...
[ "dog@dog.dog" ]
dog@dog.dog
d508a7ffc7eaff65983b34679e1396ff98a59c7d
3ed684f77dda3a153c8379005a5baae4d0409f27
/D_Platform_Ver3.020/games/30300400_4GJQ/GameCode/Client/Jq.h
28e32d2ee210ea1f234787fd1b6cf3d8efc628eb
[]
no_license
StarKnowData/robinerp
c3f36259ef0f2efc6a3e2a516b40c632e25832f9
65bae698466bad45488971d07ccb9455c0d7d3d9
refs/heads/master
2021-05-30T07:35:35.803122
2012-12-17T13:42:33
2012-12-17T13:42:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,973
h
#pragma once class CJq { public: int m_iPs; bool IsValidateJq() { return true; } ///void ShowAJq(CDC* pDC,CPoint ptStart); public: CJq(void); CJq(int ps); CJq(int hs,int pd); ~CJq(void); }; class CPStack { public: CPtrList List; void operator=(const CPStack & pStack) { memcpy...
[ "china.jeffery@gmail.com" ]
china.jeffery@gmail.com
770dcbfd4b97f9e7176f8cf0b454fee62225fdb6
6acaf6553d71582f3807ad89cc5927070b70569f
/src/player/balancedaiplayer.h
aa90c600474c7b0922d32f4c9f692529bc6783dc
[ "BSD-3-Clause" ]
permissive
Top-Ranger/android-reversi
581f90650c6ba64a6cc6afa8ecdf4e308ecdde04
c56a948f6b0f749d172f54a61882366326cdc5be
refs/heads/master
2021-01-17T13:52:58.675781
2016-06-19T16:53:36
2016-06-19T16:53:36
21,957,215
0
0
null
null
null
null
UTF-8
C++
false
false
2,262
h
/* Copyright (C) 2014 Marcus Soll All rights reserved. You may use this file under the terms of BSD license as follows: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must ret...
[ "Superschlumpf@web.de" ]
Superschlumpf@web.de
9588b21c03d53935cec90eda7f034cc02fdf822e
517b880b7ded942855318f8fde7d8b8b5e44e943
/src/pow.cpp
ba0029108f0f332b6e465fcd3fd46d196b5d814e
[ "MIT" ]
permissive
percussionpc/grovcoina
3d8fe5b1215b79cad021c54f1b0a033647049460
900c37d969a8876a66e87e6d94e9c1ec9e847bfe
refs/heads/main
2023-04-08T19:22:04.526917
2021-04-16T20:33:23
2021-04-16T20:33:23
358,711,188
0
0
null
null
null
null
UTF-8
C++
false
false
3,919
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2018 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <pow.h> #include <arith_uint256.h> #include <chain.h> #include <primiti...
[ "82010260+percussionpc@users.noreply.github.com" ]
82010260+percussionpc@users.noreply.github.com
83698a37a1908b87a694a8f6cb802f9177f92d4c
9d9af6723cbfbc1affcb656ec26b0ffafd6386ea
/PhysicsForGamesvs2015_Start/PhysicsForGames/Box.h
e2737422d9c51b64832ceb5f6c3c2df4523ceb53
[]
no_license
RoyKirk/AIEWork
4d3e41b4daa49357b64d0242aa87a72542a28055
e94dfa21303a6dca802d5add0c8a07f6f3f44b0b
refs/heads/master
2021-01-21T04:28:25.086397
2016-08-02T00:41:04
2016-08-02T00:41:04
50,807,839
0
0
null
null
null
null
UTF-8
C++
false
false
424
h
#ifndef _BOX_H_ #define _BOX_H_ #include "RigidBody.h" class Box : public RigidBody { public: Box(); ~Box(); float height; float width; float depth; glm::mat4 rotation; glm::vec3 extents; Box(glm::vec3 _position, glm::vec3 _velocity, float _mass, float _width, float _height, float _depth, glm::mat4 _rotation,...
[ "ricotalzier@gmail.com" ]
ricotalzier@gmail.com
44736ca6b78a3957136ea602bf5deafd8e016c0d
f0cb4d70e356431819e43f9b29cf8060afc0ae50
/code/sorting/sortingtest.cpp
209db18c0c1b7f0432b54c4aec4d216e4880d4cb
[]
no_license
adityashah30/eecs570termproject
c45e1c0491a2e0e23452bc98df6a0ea10812ef1e
b5d9c3d6613eaf782e99d8f2227c43db3667af75
refs/heads/master
2021-01-18T06:25:34.866150
2016-04-16T14:54:27
2016-04-16T14:54:27
52,625,150
0
0
null
null
null
null
UTF-8
C++
false
false
1,195
cpp
#include "sorting.h" #include "../timer/timer.h" #include <string> #include <cassert> using namespace std; void populateData(Dataset&, Dataset&); int main() { Dataset input; Dataset output; Dataset expectedOutput; int index = 0; for(int numThreads = 1; numThreads < 9; numThreads++) { ...
[ "adityashah30@gmail.com" ]
adityashah30@gmail.com
d78ee19a38968a0561ade6942833c5be5e76f0c6
cc542c374356b2e1be27564bffb5c05fedb0b4c5
/cpp/Circular Array Rotation.cpp
fcaa80449143f435ecc5070a93e9a06965acd125
[]
no_license
shantanumallik/hackerrank-codes
fa9437582c50e7ee2cc68f88e265a54aa1b8e0eb
9649556c84287fb5632b9dc9333c4918efaeee4b
refs/heads/master
2022-05-22T04:52:09.623665
2020-04-22T17:18:10
2020-04-22T17:18:10
256,753,521
0
0
null
null
null
null
UTF-8
C++
false
false
2,265
cpp
#include <bits/stdc++.h> using namespace std; vector<string> split_string(string); // Complete the circularArrayRotation function below. vector<long long> circularArrayRotation(vector<int> a, int k, vector<int> queries) { vector<long long>result; int size = a.size(); for(int x:queries) { int ...
[ "shantanu@nim.ba" ]
shantanu@nim.ba
f69f40411c9986a827721816f0dc0aa91eb35f95
260e5dec446d12a7dd3f32e331c1fde8157e5cea
/Indi/SDK/Indi_ThirstSpell_T5_parameters.hpp
c0e72da3483dfa7b6ca0ee4fba7f5f8f0aa6207b
[]
no_license
jfmherokiller/TheOuterWorldsSdkDump
6e140fde4fcd1cade94ce0d7ea69f8a3f769e1c0
18a8c6b1f5d87bb1ad4334be4a9f22c52897f640
refs/heads/main
2023-08-30T09:27:17.723265
2021-09-17T00:24:52
2021-09-17T00:24:52
407,437,218
0
0
null
null
null
null
UTF-8
C++
false
false
361
hpp
#pragma once // TheOuterWorlds SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "Indi_ThirstSpell_T5_classes.hpp" namespace SDK { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- } #...
[ "peterpan0413@live.com" ]
peterpan0413@live.com
6abb98cc21ee78f61497b6137f2280d4e1de9241
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/printscan/ui/prevwnd/pwframe.cpp
1018ed45744fc03447a9aa48cfc43d1a00b95301
[]
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
22,347
cpp
/******************************************************************************* * * (C) COPYRIGHT MICROSOFT CORPORATION, 1998 * * TITLE: PWFRAME.CPP * * VERSION: 1.0 * * AUTHOR: ShaunIv * * DATE: 8/12/1999 * * DESCRIPTION: Preview frame class definition * *******...
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
b7f9fbba23f4ca5718ca8501844a22bb32e70733
d0d60936f0872daa5caff4866df7ac9063c2ddc7
/testApp/utilitiesx.cpp
098753560b36417f7619f14178280c529ad46189
[ "MIT" ]
permissive
epics-base/pva2pva
36cad1a98e38a872b1e365c57ab5723309f503a4
3b9990e3650fca2673eebfb83645193ac0e5297d
refs/heads/master
2023-03-24T05:59:39.609136
2022-11-03T17:01:22
2022-11-03T17:01:29
104,084,268
4
11
NOASSERTION
2023-03-09T17:07:16
2017-09-19T14:16:27
C++
UTF-8
C++
false
false
64
cpp
// hack to avoid a convienence library #include "utilities.cpp"
[ "mdavidsaver@gmail.com" ]
mdavidsaver@gmail.com
89824b0f748b6903a6516d58600249335473bd80
d81ada4a9b293429649aa5f678b3eac6f2509f2e
/src/LiteSerialLogger.h
b3d5086a1f7d00ab052d361ef2b1f86f4142a779
[]
no_license
Syonyk/LiteSerialLogger
5fc64d225d8914279f502a13ee862e03d8f3e98c
724d9880be3ce26960842f78f6d5f16c84dc2ff8
refs/heads/master
2021-01-19T03:56:09.096941
2017-02-18T16:40:58
2017-02-18T16:40:58
72,374,401
4
1
null
null
null
null
UTF-8
C++
false
false
2,927
h
#include <Arduino.h> /** * LiteSerialLogger - Lightweight serial logging for Arduino. * Copyright (C) 2016 Russell E Graves (Syonyk) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; eit...
[ "rgraves@rgravess-iMac-5.local" ]
rgraves@rgravess-iMac-5.local