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
8df617fa15f3ea95a76aea41e678a9da76e089ee
b2955406769855ab42617d59805ef643d860db38
/U2A5/10/Transacao.h
6719efc3938d62e3155add89c5c8488c800ce6c7
[]
no_license
lucasbivar/object-oriented-programming
46ded50a73b92abb7f2d34136499f27a84269769
11a6367404985cd4c384ab1997d07db64c455e78
refs/heads/main
2023-08-18T14:10:28.503755
2021-10-15T00:24:30
2021-10-15T00:24:30
380,388,577
0
1
null
null
null
null
UTF-8
C++
false
false
330
h
#ifndef TRANSACAO_H #define TRANSACAO_H #include <string> using std::string; class Transacao { public: Transacao(double=0, string=""); string getData() const; double getValorDaTransacao() const; string getDescricao() const; private: string data; //DD-MM-AAAA double valorDaTransacao; string descricao; ...
[ "lucasbivarfonseca@gmail.com" ]
lucasbivarfonseca@gmail.com
ae59d0adb1c32057ec0e2070e6235d433737bc0d
3f79305e607739d4e822d6b5ae56db13444a5f55
/test/sprintf.cpp
331ae553d7990a0bbfacaf89aab8daedb88b87f2
[]
no_license
cuihujun/test
362d80691d3d80fafbf2d6cb501526909bb63129
daa70ce43b04bcb8bb3aaf2f81c44c80da605087
refs/heads/master
2020-05-29T08:47:45.363573
2016-11-09T23:05:49
2016-11-09T23:05:49
70,018,898
0
0
null
null
null
null
UTF-8
C++
false
false
811
cpp
#include <iostream> int main(int argc, const char * argv[]) { //复制的目标字符串 char szTarget[20]; //复制的源字符串,假设szSource50个字节都不为0 char szSource[51]="12345678901234567890123456789012345678901234567890"; //以&szTarget[0]为起始地址,把szSource里面的所有内容(50个字节)copy进去 //sprintf(szTarget , "%s" , szSource); //pri...
[ "hujuncui@yahoo.com" ]
hujuncui@yahoo.com
7bbc5fb1ddd9b8dcc91d74f51b00c657512ff394
4610baf9a7e81cad6e52fe49289a5f234861732b
/driving/passatmodel/src/passatmodel.cpp
9340e7a233cccbfc48e46b033cc34b9df1c2dab9
[]
no_license
kuasha/stanley
07f924f6ff61413f5baabd5b6605d4289e93c68d
b6b6d3a9efd4611258b2a6337ef25007f406bd80
refs/heads/master
2021-01-19T00:57:09.752337
2016-08-15T02:36:18
2016-08-15T02:36:18
65,698,509
6
0
null
null
null
null
UTF-8
C++
false
false
7,575
cpp
/******************************************************** Stanford Driving Software Copyright (c) 2011 Stanford University All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions...
[ "kuasha@gmail.com" ]
kuasha@gmail.com
6ae80a75f3b18770f3e51d603953077ceab9cfcf
ac39d3efc91d8a4d40593d62073b351c9ee219b6
/src/FusionEKF.cpp
deaac597eb46a1a494b3f8f4cf9edb0b7c428f7f
[]
no_license
srini-x/CarND-Extended-Kalman-Filter-Project
c95baea6ce29154bff3cb93cad8d54fb1b83f797
9a42f3de76be4fd199a1f6414b2de56cad587d50
refs/heads/master
2021-07-18T02:04:39.138401
2017-10-25T02:05:03
2017-10-25T02:05:03
108,148,381
1
0
null
null
null
null
UTF-8
C++
false
false
4,598
cpp
#include "FusionEKF.h" #include "tools.h" #include "Eigen/Dense" #include <iostream> using namespace std; using Eigen::MatrixXd; using Eigen::VectorXd; using std::vector; /* * Constructor. */ FusionEKF::FusionEKF() { is_initialized_ = false; previous_timestamp_ = 0; // initializing matrices R_laser_ = Mat...
[ "srini-x@users.noreply.github.com" ]
srini-x@users.noreply.github.com
a845958bbb8d807c81c79500b89f5223a984a332
8f6dba8d9f03d552b7cdf7141d8ed416990f6c17
/chapter3/3.15.cpp
616162b6bd7ea7f8706801f6673a5292a1c1b69d
[]
no_license
NealChalmers/CPP-Primer
3ebe321f5010d7af4b84cba8331242c607b8393d
32d583831a9f8623b7246dc3eb92026f70be5451
refs/heads/master
2021-10-23T11:37:16.751835
2019-03-17T08:38:09
2019-03-17T08:38:09
99,414,989
1
0
null
null
null
null
UTF-8
C++
false
false
317
cpp
#include <iostream> #include <vector> #include <string> using std::cin; using std::cout; using std::ends; using std::vector; using std::string; int main() { vector<string> tvi; for (string i; cin >> i;) //store strings in a vector. tvi.push_back(i); for (auto &g : tvi) cout << g << "\n"; cout << ends; }
[ "Chalmers111@qq.com" ]
Chalmers111@qq.com
6479d8538fb61b32d9f1500287a7d81ad270481b
cf30896dae4f3ac002b9f2a33325e3786bc1c1b0
/arduino/potato/potato.ino
7a2da7817f0497cb456954fa3d7c1c98a5fa3d68
[]
no_license
chazp246/stm8_nozka
7210b95dc619bf87cf98a7561aaa9b5ff3a0bccc
fc162d306b8d5d7ae0219fc9f18bc674d3c0c001
refs/heads/master
2023-08-30T06:58:01.035767
2021-11-09T11:58:17
2021-11-09T11:58:17
426,204,079
0
0
null
null
null
null
UTF-8
C++
false
false
590
ino
long randNumber; long randtrvani; void setup() { // if analog input pin 0 is unconnected, random analog // noise will cause the call to randomSeed() to generate // different seed numbers each time the sketch runs. // randomSeed() will then shuffle the random function. randomSeed(analogRead(5)); pinMode(...
[ "gameboys820@gmail.com" ]
gameboys820@gmail.com
573ee1d5dcf9c12071d2cfbc81f2d550ed65fccd
8422ab665fdfb27c1f2a4e7d53a71b1deb3f3318
/exercises/E05_Poiselle/0/sigma
f82dbf9d9625c35040fdcf88da2a495068d36873
[ "BSD-2-Clause" ]
permissive
vagrawal91/CFD-Notebooks
f286103091f54381d14ceb70737c5488a0201c71
221bd37405974b2641b62b8dbc7d55e3506e70ba
refs/heads/master
2023-07-15T16:36:36.154228
2021-08-27T02:16:23
2021-08-27T02:16:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,040
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2006 | ...
[ "ajayharish.accts@gmail.com" ]
ajayharish.accts@gmail.com
c1038a68bf155a64a48e4fbbd6bba97a8e989bd5
5947213fbe7f920a4190cfba78506f97e4651622
/arkhorserver/script/arkhamencounterscript.cpp
09d8770b68bf4b63a57bf6fc75055d2ddbb1f8fa
[]
no_license
kingnak/arkhor
bf18dc214325545d013946b9182b23bee3ffa4ac
24d550262f933ebfac4b7bad84cd4f7d22dd9420
refs/heads/master
2023-09-04T06:17:13.778915
2015-08-19T23:12:58
2015-08-19T23:12:58
83,339,894
0
0
null
null
null
null
UTF-8
C++
false
false
2,308
cpp
#include "arkhamencounterscript.h" #include <QScriptContext> #include "gamescript.h" #include "game/game.h" #include "game/gameregistry.h" #include <QDebug> ArkhamEncounterScript::ArkhamEncounterScript(QObject *parent) : QObject(parent) { } QList<GameOption *> ArkhamEncounterScript::options() const { return m...
[ "p.masser@asim.at" ]
p.masser@asim.at
e32f5a96352977940a782ff17cb834571492aae3
6ced41da926682548df646099662e79d7a6022c5
/aws-cpp-sdk-kms/include/aws/kms/model/ConnectionErrorCodeType.h
652876244cba8e05d0c3dc79dfe5fa7fa96a6b73
[ "Apache-2.0", "MIT", "JSON" ]
permissive
irods/aws-sdk-cpp
139104843de529f615defa4f6b8e20bc95a6be05
2c7fb1a048c96713a28b730e1f48096bd231e932
refs/heads/main
2023-07-25T12:12:04.363757
2022-08-26T15:33:31
2022-08-26T15:33:31
141,315,346
0
1
Apache-2.0
2022-08-26T17:45:09
2018-07-17T16:24:06
C++
UTF-8
C++
false
false
906
h
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/kms/KMS_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> namespace Aws { namespace KMS { namespace Model { enum class ConnectionErrorCodeType { NOT_SET, ...
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
b797e7eb4aef2621031adc938b247d4b85669886
6e4574bb26a20cbc384f606b2b1b047fa4cbae8a
/Assignment2/Boat.cpp
b3d0213e6681a4c026dbe6588a31c33f7f36a716
[ "MIT" ]
permissive
Hyup98/Pocu_Cpp
13b7c81ad93ad35ad5cec802e6823d710ec964de
88cd8781f17e088435bfa388c2a9b0e7588cae5d
refs/heads/master
2023-07-03T03:32:09.081279
2021-08-07T10:08:55
2021-08-07T10:08:55
363,831,844
1
0
null
null
null
null
UTF-8
C++
false
false
1,321
cpp
#include "Boat.h" #include<cassert> namespace assignment2 { Boat::Boat(unsigned int maxPassengersCount) : Vehicle(maxPassengersCount) { } Boat::~Boat() { } void Boat::Move() { switch (mMoveCount) { case 0: case 1: mMovedLength += GetMaxSpeed(); mMoveCount++; break; case 2: mMoveCount...
[ "kkddong98@gmail.com" ]
kkddong98@gmail.com
8046f22f6d177184f508d91e8124ef5520882916
edb0d524d018041b046b5a6f970282444f63ebeb
/include/Windows/OMESimRunner/TreeRepNode.h
ea2a0bf6f3e2f40411fc13a4101fcdb4a40a7dce
[]
no_license
USEPA/OME
902ead149e923abbf5cb93512e23115b8de10248
33d9c1f2b40daa2ee3414a363e28c0cc9ede56a2
refs/heads/master
2021-01-12T21:27:35.837154
2017-12-22T01:03:18
2017-12-22T01:03:18
58,138,621
3
3
null
2017-05-05T22:44:56
2016-05-05T14:54:21
C++
UTF-8
C++
false
false
5,162
h
#pragma once #include "TreeResultsDetails.h" #include "RepNode.h" using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing; namespace OMESimRunner { ref class RNControl;...
[ "pwingo@gmail.com" ]
pwingo@gmail.com
e105a86e7ce595f978f27af65d01e75f14459da2
2f6a9ff787b9eb2ababc9bb39e15f1349fefa3d2
/inet/src/inet/routing/ospfv3/process/Ospfv3Lsa.cc
6462de49b6a79d1e4ff403521c24f2bda8b58f68
[ "BSD-3-Clause", "MPL-2.0", "LicenseRef-scancode-free-unknown" ]
permissive
ntanetani/quisp
97f9c2d0a8d3affbc709452e98c02c568f5fe8fd
47501a9e9adbd6adfb05a1c98624870b004799ea
refs/heads/master
2023-03-10T08:05:30.044698
2022-06-14T17:29:28
2022-06-14T17:29:28
247,196,429
0
1
BSD-3-Clause
2023-02-27T03:27:22
2020-03-14T02:16:19
C++
UTF-8
C++
false
false
5,061
cc
#include "inet/routing/ospfv3/process/Ospfv3Lsa.h" namespace inet { namespace ospfv3 { Ospfv3SpfVertex::Ospfv3SpfVertex(Ospfv3Lsa* asocLSA, int distance) { this->distance = distance; this->asocLSA = asocLSA; this->type = asocLSA->getHeader().getLsaType(); this->vertexID.routerID = asocLSA->getHeader(...
[ "n.tanetani@gmail.com" ]
n.tanetani@gmail.com
192d678f330b22de5a4f4a0d5272e264c135ca8e
7548ff48005d063d31033fd0129ab6461ec2f305
/URI/1114---Senha-Fixa.cpp
54729e7e8957007095614d6af75701557c52188f
[]
no_license
elissandro13/Problems-Solved
423d554b604f03dadbef7461efe96886eb0c71dd
1b3b745283c5cd19a5f988120cb95ba151b9e5f8
refs/heads/master
2020-06-26T20:33:36.652931
2020-04-07T20:20:30
2020-04-07T20:20:30
199,749,609
1
0
null
null
null
null
UTF-8
C++
false
false
242
cpp
#include <bits/stdc++.h> using namespace std; int main() { int n; while (cin >> n) { // cout<<"sas"; cout << (n == 2002 ? "AcessoPermitido" : "SenhaInvalida"); cout << "\n"; if (n == 2002) break; } return 0; }
[ "ecjunior19@gmail.com" ]
ecjunior19@gmail.com
f5b8610143edd4c544ef8ee93578c69503e8a451
3e7ae0d825853090372e5505f103d8f3f39dce6d
/AutMarine v4.2.0/AutLib/Geom/Sort/Geometry_HeapI.hxx
5976bc7d1542bea228abcb66df75dd5775907291
[]
no_license
amir5200fx/AutMarine-v4.2.0
bba1fe1aa1a14605c22a389c1bd3b48d943dc228
6beedbac1a3102cd1f212381a9800deec79cb31a
refs/heads/master
2020-11-27T05:04:27.397790
2019-12-20T17:59:03
2019-12-20T17:59:03
227,961,590
0
0
null
null
null
null
UTF-8
C++
false
false
3,083
hxx
#pragma once template<typename T> inline AutLib::GeoLib::Geometry_Heap<T>::Geometry_Heap() : theSize_(0) { } template<typename T> inline AutLib::GeoLib::Geometry_Heap<T>::Geometry_Heap(Standard_Real(*LengthValue)(const T &)) : theSize_(0) , theLengthValue(LengthValue) { } template<typename T> inline Standard_Integ...
[ "aasoleimani86@gmail.com" ]
aasoleimani86@gmail.com
900bcd2fbcdbdc36037bea3f9db4c02b029d2863
1801555960309a75a767db21c65a8f9102dea2f4
/wavespectrum_icenode/WaveToSpectrum.cpp
4f6c35a9038aadfdace66ee163b325c99885df9c
[]
no_license
brunoric3d/xsi-audio-spectrum
944db7eba5485a1fbe2dc22db1538154b9bbf0e9
a3d84417b3c62c4507f0f1b8297252d7f75a7a25
refs/heads/master
2020-12-25T12:57:04.065899
2012-05-27T22:06:12
2012-05-27T22:06:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,207
cpp
// WaveToSpectrum Plugin // Takes a Wave File (stereo 44khz) and do a spectrum decomposition. // // Initial code generated by Softimage SDK Wizard // // Claude Vervoort, http://claudeonthe.net // #define _HAS_ITERATOR_DEBUGGING 1 #include <xsi_application.h> #include <xsi_context.h> #include <xsi_pluginregistrar.h>...
[ "Claude@Claude-PC.(none)" ]
Claude@Claude-PC.(none)
2a62948957ada9666fe5c33827e7f15b0a75fdcb
360a1beecf9091f658ffa4e54ca16666d88a5c40
/daemon/rpcserver.h
97d340c42755b5cccc41af3ee0213b248fc23d8b
[ "MIT" ]
permissive
HUZU-Project/HUZU
527ba6959cc25616e0d13e10a48c874781bd4639
cceec878effb7eb9bd1ebf2b92f51eaa4af364d6
refs/heads/master
2023-07-13T09:34:48.634592
2023-06-26T11:40:25
2023-06-26T11:43:49
146,970,495
2
5
MIT
2023-06-26T11:43:53
2018-09-01T05:25:48
C++
UTF-8
C++
false
false
15,731
h
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2015-2018 The PIVX developers // Copyright (c) 2018-2022 The UNIGRID organization // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-licens...
[ "gevan73@gmail.com" ]
gevan73@gmail.com
fd42e8aa0b31fa9ceba3792c303cae95933f83a0
10d57e1e8eeb614259188bee4526a6be14e16624
/experiments/testPCM.cpp
68870bee7d85eef36f5b7bfe04000487a76c6147
[]
no_license
JanzenLiu/ByteSlice2
1d4bc89a4a01d579543ea4ad584ebd791bfe5f27
2c741e131836b324173be52f7b8e697170cb2bda
refs/heads/master
2021-01-01T06:57:36.658110
2017-07-30T07:51:26
2017-07-30T07:51:26
97,002,120
0
0
null
null
null
null
UTF-8
C++
false
false
2,065
cpp
#include <iostream> #include <cstdlib> #include "util/intel-pcm/cpucounters.h" int main(int argc, char* argv[]){ constexpr size_t sz = 100*1024*1024; // 100M int foo[sz]; PCM* pcm = PCM::getInstance(); PCM::ErrorCode status = pcm->program(); switch(status){ case PCM::...
[ "chengtsung_liu@yahoo.com" ]
chengtsung_liu@yahoo.com
5096dd8220063cc1fcb0c3194a77210675003c9d
b1b1c4018f1caa313b062a4447ac9dd175e30e16
/fcaR/inst/testfiles/set_difference_single/set_difference_single_DeepState_TestHarness.cpp
5d04144ddb04c59edc62db37da38b205074720b0
[]
no_license
akhikolla/Rcpp-TestPkgs-WebPages
a26287e3d0b0e2f444840a724336d080ebc459b9
5417e829d7a6b0b5a1c0c7852b3d8ccf0515c483
refs/heads/master
2023-05-30T22:28:51.475440
2021-06-17T09:57:18
2021-06-17T09:57:18
377,724,287
0
0
null
null
null
null
UTF-8
C++
false
false
2,551
cpp
// AUTOMATICALLY GENERATED BY RCPPDEEPSTATE PLEASE DO NOT EDIT BY HAND, INSTEAD EDIT // set_difference_single_DeepState_TestHarness_generation.cpp and set_difference_single_DeepState_TestHarness_checks.cpp #include <fstream> #include <RInside.h> #include <iostream> #include <RcppDeepState.h> #include <qs.h> #include <...
[ "akhilakollasrinu424jf@gmail.com" ]
akhilakollasrinu424jf@gmail.com
1b3fa02d8cd3ad8139a0869b3ba612ae6df20bb7
2376e7d0c061eeb20950e79d9888cbbe497dd796
/RPGShop/Backpack.cpp
4d033bf296e4e68e4b3386c55f1ab846b302a3fa
[]
no_license
dsball/RPGShop
cf0a6a21bf1a27632c7c8878de76e287a4626a42
1071bd007aa41f2d59d59d7d18e437b0b00738da
refs/heads/master
2021-01-18T14:38:34.725662
2013-05-02T03:24:47
2013-05-02T03:24:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,152
cpp
#include "Backpack.h" //initializes linked list pointers Backpack::Backpack() { tempNode = nullptr; head = nullptr; } //prints a list of backpack contents const void Backpack::printList(const Inventory * itemList) { int choice; bool found = false; Item* current = head; cout<<left<<setw(4)<<"ID"<<setw(15)<<"Name...
[ "wolfwoodster@gmail.com" ]
wolfwoodster@gmail.com
a051b3b760b3a1a4221dc99cc3591783c9757ef5
565e85570d42a599351e513040e1bda8d05d3948
/lib/dtv-gingaplayer/test/src/player/image/location.cpp
2cea878158aa24b8ffb29dbf44948029f0d66176
[]
no_license
Hanun11/tvd
95a74b8ee8a939ba06b4d15dce99bdc548e1be7b
0d113c46014d738d87cb4db93b566d07fcbc031f
refs/heads/master
2021-12-14T19:41:15.800531
2017-05-20T19:54:40
2017-05-20T19:54:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,649
cpp
/******************************************************************************* Copyright (C) 2010, 2013 LIFIA - Facultad de Informatica - Univ. Nacional de La Plata ******************************************************************************** This file is part of DTV-gingaplayer implementation. DTV-gin...
[ "jbucar@gmail.com" ]
jbucar@gmail.com
2b4b0b051018aa69f24e1c4400c5bdbed5a5949a
922d5487bc18dd4d044d41d6b81cd14eb952c591
/install/include/navigator/navigatorActionFeedback.h
6b7516f8cd869e6c0c3cdf4f94af5739ede908b5
[]
no_license
hanbincho/ros_ws
21b747f115cee85a3b8a578028ac44e069721c31
d92feebd845a69bb8535e8c48592caf2b94d6497
refs/heads/master
2020-04-02T15:45:16.395227
2018-11-07T04:09:07
2018-11-07T04:09:07
149,820,985
0
0
null
null
null
null
UTF-8
C++
false
false
9,909
h
// Generated by gencpp from file navigator/navigatorActionFeedback.msg // DO NOT EDIT! #ifndef NAVIGATOR_MESSAGE_NAVIGATORACTIONFEEDBACK_H #define NAVIGATOR_MESSAGE_NAVIGATORACTIONFEEDBACK_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/built...
[ "hxc431@case.edu" ]
hxc431@case.edu
0ade38adc948b2f5302e68f870d8f09968365db8
ae094c1a6813235d14aa5037a62f3e7c4278b77d
/Solution136.cpp
95762148b7f1a1214fbbd920396ba0a5b1c925aa
[]
no_license
dy604/leetcodeCollection
2d1769d147b8142b4eb536101069477b169fb31b
68ca8a7a84ce0511428f38e1ce38b9febd6c0b90
refs/heads/master
2021-01-12T11:40:35.365005
2016-10-29T01:53:10
2016-10-29T01:53:10
72,258,232
0
0
null
null
null
null
UTF-8
C++
false
false
671
cpp
//题目136,Single Number 单独的数字 //题目137,Single Number II //题目260,Single Number III class Solution { public: int singleNumber(vector<int> &nums) { int res = nums[0]; for (int i=1; i<nums.size(); i++) { res ^= nums[i]; } return res; } }; class Solution { public: int ...
[ "503982643@qq.com" ]
503982643@qq.com
bc8669eed0eecaa59cde1f2cbfa2a13f84833fd1
5d83739af703fb400857cecc69aadaf02e07f8d1
/Archive2/e7/89d7a0262c9580/main.cpp
f55a42561b46836769c8d03a40f35d3cd6270c04
[]
no_license
WhiZTiM/coliru
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
2c72c048846c082f943e6c7f9fa8d94aee76979f
refs/heads/master
2021-01-01T05:10:33.812560
2015-08-24T19:09:22
2015-08-24T19:09:22
56,789,706
3
0
null
null
null
null
UTF-8
C++
false
false
409
cpp
#include <stdio.h> #include <stdlib.h> #define POLY_CRC16 0xa001 #define INIT_CRC16 0 unsigned short checksum_crc16(unsigned char *in, int length) { register unsigned short crc, bit; // do stuff return crc; } int main( int argc, char *argv[] ) { unsigned char test[] = "abcd"; fprintf( stdout, "check '%s...
[ "francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df" ]
francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df
6e8e71991d9007aff36e9fbfe5249b559ccc1b00
eafae6e88ae9c25a11a218414e4e80a73de8deed
/Dependencies/Header/mysql/server/private/scope.h
b9e2e96ae5cff836a839488e924c9575cb83e827
[ "Apache-2.0", "GPL-2.0-only" ]
permissive
GabrielLins64/SimpleERP
12fdc969a8bf1a211cc48b62fac10ec601eec8c1
8a25bdab32bd58a866f429b7f541e0e0617ef2e1
refs/heads/main
2023-05-14T11:55:15.623120
2021-06-02T18:41:58
2021-06-02T18:41:58
373,289,684
0
0
Apache-2.0
2021-06-02T20:05:27
2021-06-02T20:05:26
null
UTF-8
C++
false
false
1,604
h
/* Copyright (c) 2020, MariaDB 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; version 2 of the License. This program is distributed in the hope that it will be useful, but WITH...
[ "miguelnischor@gmail.com" ]
miguelnischor@gmail.com
b22b2446ba24f8091f52de02b6482f136da9a90d
3efc50ba20499cc9948473ee9ed2ccfce257d79a
/data/code-jam/files/2434486_hime_2692487_1_extracted_A.cpp
3fbd2f8773089a13ee694840bdb0411782ea9163
[]
no_license
arthurherbout/crypto_code_detection
7e10ed03238278690d2d9acaa90fab73e52bab86
3c9ff8a4b2e4d341a069956a6259bf9f731adfc0
refs/heads/master
2020-07-29T15:34:31.380731
2019-12-20T13:52:39
2019-12-20T13:52:39
209,857,592
9
4
null
2019-12-20T13:52:42
2019-09-20T18:35:35
C
UTF-8
C++
false
false
840
cpp
#include<cstdio> #include<cstring> #include<algorithm> #define MAXX 2000111 #define inf 0x3f3f3f3f3f3f3f3f short T,t; long long a; int n,i,j,k; int the[MAXX]; int ans; int main() { scanf("%hd",&T); for(t=1;t<=T;++t) { scanf("%lld %d",&a,&n); for(i=0;i<n;++i) scanf("%d",the+i)...
[ "arthurherbout@gmail.com" ]
arthurherbout@gmail.com
61e6bc08a41d93ef9872b4b10661019d13ccae67
5d83739af703fb400857cecc69aadaf02e07f8d1
/Archive2/af/aec20b9b75bec9/main.cpp
ad31e4dbe5f42c56df1674fbc8d56bbd9efb9e49
[]
no_license
WhiZTiM/coliru
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
2c72c048846c082f943e6c7f9fa8d94aee76979f
refs/heads/master
2021-01-01T05:10:33.812560
2015-08-24T19:09:22
2015-08-24T19:09:22
56,789,706
3
0
null
null
null
null
UTF-8
C++
false
false
202
cpp
#include <memory> #include <iostream> #include <utility> struct basic { std::unique_ptr<int> x; }; int main() { std::cout << std::boolalpha << noexcept(basic(std::declval<basic>())) << '\n'; }
[ "francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df" ]
francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df
3a9b9bc71892ddcebc08cfd946f37903408a2f7e
315255eea20bf6fd95b9b7865d5afafbd3f2f138
/sources/src/dialogdata.h
7c13fda831f4780180bab18af16e54eaf4001785
[]
no_license
lucytronad/Depth-Hand-Recognition
d799630f836a1a094a6ec36aa5f4399805e6ace9
7d29b9971b6ea6961d7d1f0cacd755c1c1f66dca
refs/heads/master
2023-03-10T03:00:27.605861
2013-06-14T17:17:43
2013-06-14T17:17:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
291
h
#ifndef DIALOGDATA_H #define DIALOGDATA_H #include <QDialog> namespace Ui { class DialogData; } class DialogData : public QDialog { Q_OBJECT public: explicit DialogData(QWidget *parent = 0); ~DialogData(); private: Ui::DialogData *ui; }; #endif // DIALOGDATA_H
[ "lucie.boutou@gmail.com" ]
lucie.boutou@gmail.com
262c827accc669edb04790f623c85a7fec7338b6
573b7f2b79b6fb8b21b40985f7639bc003b60f7e
/SDK/BP_MapWidgetMapMarkerRequestFOB_parameters.h
aa5f15fd8f8c3f79af7812e64103ab7b431ce8c5
[]
no_license
AlexzDK/SquadSDK2021
8d4c29486922fed3ba8451680d823a04a7b7fc44
cdce732ad4713b6d7f668f8b9c39e160035efb34
refs/heads/main
2023-02-21T02:52:15.634663
2021-01-23T23:28:57
2021-01-23T23:28:57
332,328,796
4
0
null
null
null
null
UTF-8
C++
false
false
2,908
h
#pragma once // Name: Squad, Version: 13-01-2021 #ifdef _MSC_VER #pragma pack(push, 0x01) #endif /*!!HELPER_DEF!!*/ /*!!DEFINE!!*/ namespace UFT { //--------------------------------------------------------------------------- // Parameters //------------------------------------------------------------------------...
[ "39485681+AlexzDK@users.noreply.github.com" ]
39485681+AlexzDK@users.noreply.github.com
fe7b5457bf4aa8caca7a178ae44c31f0c5d361a0
d9a1c1f8be52fec565650042f60466aa14d91db5
/include/shadergraph/block/Multiply.h
7652c5070fb066361502ac073d5fd4d969447505
[ "MIT" ]
permissive
xzrunner/shadergraph
aee3bb20f7ba002414ccd948beb8e378d196f9a8
a5bf002b40738010ef4d9870f507d4faf07ba893
refs/heads/master
2021-06-23T08:44:08.987696
2020-11-20T23:57:21
2020-11-20T23:57:21
146,755,500
1
0
null
null
null
null
UTF-8
C++
false
false
1,472
h
#pragma once #include "shadergraph/Block.h" #include "shadergraph/BlockHelper.h" #include "shadergraph/ParserUtility.h" #include "shadergraph/ValueImpl.h" #include <cpputil/StringHelper.h> namespace shadergraph { namespace block { class Multiply : public Block { public: Multiply() { SetupPorts({ ...
[ "xzrunner@gmail.com" ]
xzrunner@gmail.com
1ea542a3bb4c4fe712fe741a79554517e644a643
6ae0b247bee94bd1f1f2831dbb13a62421155bc9
/Model/Circuit/Circuit.cpp
88bd53ddc672dea155957af9ff9c885615a8814e
[]
no_license
daniel1302/electrical-circuit-simulator
87a0a09248e48425fbe9f8fb65e72a42b26981c3
2f7ec95119ddb39cde47a21fcf700c8eddd4f6fe
refs/heads/master
2021-03-24T13:06:05.426466
2018-01-14T22:17:13
2018-01-14T22:17:13
111,435,545
0
0
null
null
null
null
UTF-8
C++
false
false
1,149
cpp
#include <Model/Math/GaussianElimination.h> #include "Circuit.h" void Circuit::insertElement(Element *element) { element->modifyCircuit(this); } void Circuit::modifyG(uint32_t row, uint32_t col, double val) { this->modifyMatrix(& this->g, row, col, val); } void Circuit::modifyI(uint32_t row, double val) { ...
[ "daniel.1302@gmail.com" ]
daniel.1302@gmail.com
9bda59028bcec03206e584aeea511552a52bb1b8
628b986a119870da0e5f8ca153e67883f9f5623c
/ConsoleApplication1/ConsoleApplication1/Stack.cpp
ab8653ca2711634f318823fca0d995ed7d70cf1e
[]
no_license
mahmood0130790/DS
0f78b8cacdb64a0a584f66d5b1691f6b78f3f029
3a820cae8bcbae22a3da60a9116bbdc88f334c4e
refs/heads/master
2022-11-27T00:27:50.829996
2020-07-06T10:42:50
2020-07-06T10:42:50
277,214,516
0
0
null
null
null
null
UTF-8
C++
false
false
793
cpp
#include "Stack.h" #include <iostream> using namespace std; void Stack::push(int value) { Node* node_inair =new Node(value) ; node_inair->node_ptr=head; head =node_inair ; stack_size++; } void Stack::pop() { int value; if (stack_size!=0) { Node* node_inair = head; if (stack_size == 1) { head = NULL; ...
[ "sence79.s7.s9@gmail.com" ]
sence79.s7.s9@gmail.com
c23349c7e8c5b99f8faeb0753508619d9578c744
bef1f993c86a56c57a9b4c13bacbeb7678f053a1
/Chushizhi.cpp
1b6ce08b7d59cffa8102461a3245f96c7628e283
[]
no_license
NeilZhy/CplusPractice
ac4d07e1488784163349d64449d6d3d55498e2fa
b3d485d93bc9bee512a4ccbe329411babcfe13ff
refs/heads/master
2021-01-11T12:29:35.894438
2017-09-02T03:44:55
2017-09-02T03:44:55
79,346,954
1
0
null
null
null
null
UTF-8
C++
false
false
243
cpp
#define _CRT_SECURE_NO_WARNINGS 1 #include<iostream> #include<windows.h> using namespace std; int main() { int *p; p = new int(99); if (!p) { cout << "error"; return 1; } cout << *p << endl; delete p; system("pause"); return 0; }
[ "NeilZhy@163.com" ]
NeilZhy@163.com
63265d2271699ee2e9f57919adf3e7e53fe74be0
85e7114ea63a080c1b9b0579e66c7a2d126cffec
/SDK/SoT_BP_hair_col_red_04_over_Desc_parameters.hpp
eeded9eee27120efe48c817143fca6de42af8af6
[]
no_license
EO-Zanzo/SeaOfThieves-Hack
97094307d943c2b8e2af071ba777a000cf1369c2
d8e2a77b1553154e1d911a3e0c4e68ff1c02ee51
refs/heads/master
2020-04-02T14:18:24.844616
2018-10-24T15:02:43
2018-10-24T15:02:43
154,519,316
0
2
null
null
null
null
UTF-8
C++
false
false
382
hpp
#pragma once // Sea of Thieves (1.2.6) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "SoT_BP_hair_col_red_04_over_Desc_classes.hpp" namespace SDK { //--------------------------------------------------------------------------- //Parameters //------------------------------------------------------------...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
0645171c51d34b9441e55e3bd37d097158f992c1
36701a7bbf9ab496ece446c4f99dc46829bdc6a8
/arc032/a.cpp
4acc123735907b395cf45e68d47d70a7eef0db73
[]
no_license
yyatsuo/atcoder
de83ec74cb30fac10e80701871fa97233823d8d8
d9dc1734514e0235b606bf9195373de34c49e695
refs/heads/master
2022-03-04T02:40:32.878692
2022-02-27T13:13:05
2022-02-27T13:13:05
182,335,971
1
0
null
null
null
null
UTF-8
C++
false
false
804
cpp
#include <bits/stdc++.h> #define INF INT_MAX #define ll long long #define ull unsigned long long #define rep(i,n) for(ll i=0; i<n; ++i) #define FOR(i, s, e) for(ll i=s; i<e; ++i) #define MOD 1000000007 using namespace std; template<class T> inline bool chmin(T& a, T b) { if(a>b) {a=b; return true;} return false;} temp...
[ "yyatsuo@debian.or.jp" ]
yyatsuo@debian.or.jp
6a3f96ef2246e7c273c7bfaef84880aaf8f504d7
7ccc6fef4a5f98f5e6d0c8f73e85795bb6dc63f3
/Sources/Internal/Render/DX12/SwapChain.h
498b6e93358c490ac321b2f5f72d21fe822dcac4
[ "MIT" ]
permissive
nameless323/KiotoEngine
fe983d0caaf8b31dc873357c54bad598f0130c47
e4d7f74d4228f47aad00569c4628461dac4df198
refs/heads/master
2022-02-26T13:34:15.744514
2022-02-17T01:27:00
2022-02-17T01:27:00
91,833,499
4
2
MIT
2022-02-17T01:27:01
2017-05-19T18:16:52
C++
UTF-8
C++
false
false
3,794
h
#pragma once #include "Render/DX12/Buffers/ResourceDX12.h" #include "Render/DX12/StateDX.h" #include "Render/DX12/Texture/TextureDX12.h" #include "Dx12Helpers/d3dx12.h" namespace Kioto::Renderer { class SwapChain { public: SwapChain() = default; SwapChain(const SwapChain&) = delete; ~SwapChain() = default...
[ "nameless323@gmail.com" ]
nameless323@gmail.com
7e6fbdeb123bc798087678c0d260f547365df859
5f6297e0c72da080fb0075f204d67476fb16374e
/src/main.cpp
f41429445b65541a299647b815b2125f86c315c2
[]
no_license
Fat83dotcom/SERVIDORESP32
416dd776ce63739f6f60941cb8cfb72013065e20
72acac7a14e6e4919ca215581078dda3b5c1eb0d
refs/heads/master
2023-06-13T08:05:23.398160
2021-06-27T21:03:03
2021-06-27T21:03:03
380,612,644
0
0
null
null
null
null
UTF-8
C++
false
false
1,958
cpp
#include <Arduino.h> #include "Confidentials.h" #include <WiFi.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #include <Wire.h> #include <SPI.h> #define LARGURA_OLED 128 #define ALTURA_OLED 64 Adafruit_SSD1306 display (LARGURA_OLED, ALTURA_OLED, &Wire, -1); byte pinCanais[10] = {13, 12, 14, 27, 26, 25, 33...
[ "fernando.quimic@gmail.com" ]
fernando.quimic@gmail.com
9fe68f6a02e5635fc108e3534057caff5e5b232c
43bc69ba5cc8eb79ce77fcb16e938f5758c889dd
/GeneratedFiles/ui_uploadfileoptions.h
a533040d01439b6c040676aa0dd5144dd79c5feb
[]
no_license
styleandsubstance/SecureMedMail-Portable
cc048fddee473b7d1575b02a1e40530ac01ec1a7
d231df57731b93082146d5af2e96b70755a81660
refs/heads/master
2022-11-28T00:16:15.851835
2020-08-11T03:49:20
2020-08-11T03:49:20
286,638,467
0
0
null
null
null
null
UTF-8
C++
false
false
6,334
h
/******************************************************************************** ** Form generated from reading UI file 'uploadfileoptions.ui' ** ** Created by: Qt User Interface Compiler version 5.4.1 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ***************************...
[ "sdoshi@nielsen.com" ]
sdoshi@nielsen.com
d943b8a7e3a04ca7bea8f9f7ec6a4394dc3d97e5
1159ccdb0f58d655e180b3f0c166bec3f70be723
/61-68/68_shareParentTree.cpp
5eee31f95b14aab68fca31f4088fad1419f2b51c
[ "MIT" ]
permissive
fuzongjian/sword_offer_vs
6bfff320d840f16f88c944c260115d73654f53f1
d8530f1455c38e16040b39b3e673b52910106f44
refs/heads/master
2022-11-15T14:16:41.774023
2020-06-29T14:57:55
2020-06-29T14:57:55
258,370,085
0
0
null
null
null
null
UTF-8
C++
false
false
5,420
cpp
#include <string> #include <list> #include <vector> using namespace std; /* 题目:68 树中两个节点的最低公共祖先 输入两个树接地那,求他们最低公共祖先 */ // define struct TreeNode { int m_nValue; std::vector<TreeNode*> m_vChildren; }; class List { public: static TreeNode* createTreeNode(int value) { Tr...
[ "fu_zongjian@163.com" ]
fu_zongjian@163.com
f1d1560eb95abeb8c959be0d98bde12077278ed5
1702b954442030ccbd6b8edd82b175b14e63da80
/PROG2/Player.cpp
3fa2e232a6e2aa6f900cc69f2700aa16857c3ec7
[]
no_license
Eduardo79Silva/MazesPROG.Classes
8b3d7ac634838f58d6e23d5c7413cd31cb196f33
73b816ce68378dbb4f556991dc41413157597094
refs/heads/main
2023-05-10T03:02:08.950580
2021-05-27T10:29:57
2021-05-27T10:29:57
370,741,478
0
0
null
null
null
null
UTF-8
C++
false
false
526
cpp
#include "Player.h" Player::Player(int row, int col, char symbol) { this->row = row; this->col = col; this->symbol = symbol; alive = true; } Player::Player() { row = -1; col = -1; symbol = 'H'; alive = true; } int Player::getRow() const { return 0; } int Player::getCol() const { return 0; } char Player::...
[ "up202005283@up.pt" ]
up202005283@up.pt
b385b3e7ebb2ba4ee2dd4f8876833104a45f47c9
c9965d13442fc4a0c6f95d0edb93fd6943fc41d2
/3_71588_Симеон Танев/3_71588_Simeon_Zadacha2.cpp
adeb7b1b6057757a9f310202cccd9f17708dc53a
[]
no_license
HarisonP/-Introduction-to-Programming-Exam-One
8a5064014cbf0bcd1ad2c9f384076d933cfcdca7
6f11b3a418c5679d515fc222090eb6be6955c322
refs/heads/master
2021-01-15T21:07:26.501711
2015-01-21T11:51:35
2015-01-21T11:51:35
27,239,927
0
0
null
null
null
null
UTF-8
C++
false
false
374
cpp
#include <iostream> #include <string.h> using namespace std; int main() { string sentence; cin >> "sentence"; string newSentence; sentence._Swap_all == newSentence; for (i = 0; i++) { sentence.find(" "); sentence.replace(" ", ""); int counter; counter = i + 1; } cout << "newSentence" << endl << coun...
[ "harito92@abv.bg" ]
harito92@abv.bg
c1332232b046620bfb415b1cfe98a626806bf6ee
daa59cbb77633ab7696481dad441b26a9110d1cd
/NdkBinderService/src/main/cpp/native-lib.cpp
8ff242f7b158e39dcd07c58042052a2a73bf7893
[]
no_license
android-technology/AndroidNdkBinderExamples
2e08b8a86269bec460e96d47fef7d0ff30fba39e
4a098536daf8ba7334c32aab11fe78e47047586c
refs/heads/master
2023-03-12T10:57:52.678075
2021-03-03T13:14:47
2021-03-03T13:14:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
414
cpp
#include <jni.h> #include "MyService.h" #include <android/binder_ibinder_jni.h> using aidl::com::example::MyService; using namespace std; extern "C" JNIEXPORT jobject JNICALL Java_com_example_ndkbinderservice_MyService_createServiceBinder( JNIEnv* env, jobject /* this */) { static MyService mySer...
[ "lakindu.boteju@zebra.com" ]
lakindu.boteju@zebra.com
aafd3944c30189e84d9cf9426d967033fbe3a918
c2683c87ecff919f125d626cc405f134db731f99
/lib/gui/gui.cpp
65da10405023c36ab91a8d9402445b8cc2d2c95b
[ "BSD-2-Clause" ]
permissive
bryanchance/sal
612b716a01cb354887cb02df5ccdd3f526e8eab3
33bb35996e668bc7eda1d35be10c811b720e5f65
refs/heads/master
2023-03-20T03:46:01.829173
2015-09-02T09:49:49
2015-09-02T09:49:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
646
cpp
#define SAL_GUI_LIBRARY "libsalgui.so" #define GuiInit() gui.init #define GuiLoop() gui.loop #define GuiButton(x,y) push y push x gui.button #define GuiWindow(x,y) push y push x gui.window #define GuiAdd(x,y) push y push x gui.add #define GuiAddPack(x,y) push y push x gui.add.pack #define GuiAddPackEnd(x,y) push y push...
[ "pancake@nopcode.org" ]
pancake@nopcode.org
6a010197cf387ed85d5dfa4b5e2f3af973c4a1db
0706ac75abda3a5fc4c8f8787235d757f1cc642d
/QtGuiApplication1/fragment.h
a9291c66d92a45eef67eb490568e1af46183c7a0
[]
no_license
gina10287/FoodPlate
baab9061d4d62cc2d4f613534d2983c568202a78
ce3df125173fe341744c6cb492be3e500f952c88
refs/heads/master
2020-03-21T15:40:23.052204
2018-07-16T05:06:53
2018-07-16T05:06:53
138,726,151
0
0
null
null
null
null
UTF-8
C++
false
false
1,066
h
#include <opencv\cv.h> #include <opencv2\highgui\highgui.hpp> #include <iostream> #ifndef fragment_H #define fragment_H using namespace std; using namespace cv; class frag { public: frag(); bool hasFrag; int r; // reference start int q; // query start int l; // match length int fIndex; //file index int cInde...
[ "gina10287@gmail.com" ]
gina10287@gmail.com
34b00d1000710aa9be705898e61952a23192fff9
e090a7a4de62bef5cb2a4a272ea768abeee1ba9d
/Graduation/Client/Monster1.cpp
303b4dc0a574c83d6d15601be4e3ed8e67546367
[]
no_license
ParkJWoo/graduationProject
280e0a6b75a439e926073bdf21bbf874cc91a640
f29766b2c34622a2d73397d258306f4aa390638d
refs/heads/main
2023-01-08T11:36:03.018859
2020-11-19T13:01:10
2020-11-19T13:01:10
314,222,736
0
0
null
null
null
null
UHC
C++
false
false
8,383
cpp
#include "stdafx.h" #include "Monster1.h" #include "AnimEffect.h" #include "NonAnimEffect.h" #include "AttackCollider.h" #include "EnemyHP.h" CMonster1::CMonster1() :m_fSpeed(0.f), m_pTarget(nullptr), m_fTime(0.f), m_fRestTime(0.f) { //ZeroMemory(&m_CurTime, sizeof(LARGE_INTEGER)); //ZeroMemory(&m_OldTime1, sizeo...
[ "character453@naver.com" ]
character453@naver.com
4fb200eb3a33213477c04fce367d1cdddb13c6b6
dccaab4cb32470d58399750d457d89f3874a99e3
/3rdparty/include/Poco/NumberParser.h
9134a5babb79646bc5c40b98bab76ec27e9f33cb
[]
no_license
Pan-Rongtao/mycar
44832b0b5fdbb6fb713fddff98afbbe90ced6415
05b1f0f52c309607c4c64a06b97580101e30d424
refs/heads/master
2020-07-15T20:31:28.183703
2019-12-20T07:45:00
2019-12-20T07:45:00
205,642,065
0
0
null
null
null
null
UTF-8
C++
false
false
6,875
h
// // NumberParser.h // // Library: Foundation // Package: Core // Module: NumberParser // // Definition of the NumberParser class. // // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // // SPDX-License-Identifier: BSL-1.0 // #ifndef Foundation_NumberPar...
[ "Rongtao.Pan@desay-svautomotive.com" ]
Rongtao.Pan@desay-svautomotive.com
9394054b873b8d7c38d62228dd908d764f1f9a76
0237a503f80482bbda913f1f9a500aa1d712f379
/GluttonousSnake/Food.h
baaea7b200708a3ea44f84e96073c5fbd08c38cc
[]
no_license
fa1c0n1/funny_learning
bce89d6edff46a0a6f78aa1fb2b0a95168e84f1e
10f500a1e06743379539b14e8a04a79d95a6a796
refs/heads/master
2021-12-29T18:52:38.588889
2021-12-27T01:54:52
2021-12-27T01:54:52
53,765,191
2
2
null
null
null
null
UTF-8
C++
false
false
274
h
#pragma once #include "Snake.h" #include "GameMap.h" class Snake; class Food { public: Food(const int x = 0, const int y = 0); ~Food(); int getX(); int getY(); void show(Snake &snake, GameMap &gMap); private: void show(); int m_nX, m_nY; };
[ "t_macfalcon@163.com" ]
t_macfalcon@163.com
63b58592305cce718743f7ee0cc20cde494906e4
0d49ff17eea415635779a82ef790d7b6273da3e5
/src/astextresolver.cpp
9f27a5fff27d17e75213eaf39e95937f1b1eb463
[ "Apache-2.0" ]
permissive
vrai/SimpleFudgeProto
8b8b2e520ea8e526f1e3ba07c6f8835fccdcf7b8
93bd7bd6c2972b92519389a4cdc70a7d21107275
refs/heads/master
2021-01-16T17:49:09.558853
2013-09-16T09:43:29
2013-09-16T09:43:29
1,713,250
0
0
null
null
null
null
UTF-8
C++
false
false
3,964
cpp
/** * Copyright (C) 2011 - 2011, Vrai Stacey. * * 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...
[ "vrai.stacey@gmail.com" ]
vrai.stacey@gmail.com
0c2ebf88576055d3355a1873831b6f650cd69cd0
a766ee23c2243f850ebdb83a69d0fb8a5359c07d
/2012/day6(May 1)/1+2+3+...+n=.cpp
42ece03f6674a50fdf3f6a4ad61f0fc12a4c023a
[ "MIT" ]
permissive
jasha64/jasha64
24e127e57dd8852e5a006ba98be6c17312733597
653881f0f79075a628f98857e77eac27aef1919d
refs/heads/master
2021-06-23T08:34:27.220649
2021-06-20T06:05:50
2021-06-20T06:05:50
218,268,953
1
1
null
null
null
null
UTF-8
C++
false
false
180
cpp
#include<iostream> using namespace std; int main() { int a,b,sum; cin>>a; for(sum=0,b=1;b<=a;b++) sum+=b; cout<<sum<<endl; system("pause"); return 0; }
[ "17300180070@fudan.edu.cn" ]
17300180070@fudan.edu.cn
da857a43cda014ccf276f14b2dcb003942421212
05384a4730033c5d9e3513823719c924e190b4d7
/src/math/Quaternion.h
400ac1e80ac847b45c79d54d2934b6f34eef36a5
[ "Unlicense", "LicenseRef-scancode-public-domain" ]
permissive
Lyatus/L
ebf4f20c65d6dda4bc2d0b0bd59ba02f182fafd7
827d6800306a930e7411dd8573b69810e25a9fa3
refs/heads/master
2022-09-19T16:39:53.148096
2022-08-26T09:34:37
2022-08-26T09:34:37
30,928,991
46
6
null
null
null
null
UTF-8
C++
false
false
2,849
h
#pragma once #include "math.h" #include "Vector.h" namespace L { template <class T> class Quaternion : public Vector<4,T> { public: inline Quaternion() : Vector<4, T>(T(0), T(0), T(0), T(1)) {} inline Quaternion(const T& x,const T& y,const T& z,const T& w) : Vector<4,T>(x,y,z,w) {} inline Quaternion...
[ "lutopia@hotmail.fr" ]
lutopia@hotmail.fr
7b08d5c939a1ffb0f228d1e7498c7879d1e433c7
ecba1c965423e5783c12a0eae359803a8cfbc042
/RPG_V1/Source/RPG_V1/Public/Items/RPGItemBase.h
79751c52dbd44098f83a5d244703a54e56cc4e5c
[]
no_license
Globins/UE4GASRPG
ae6b199f3dbabb8a1a7818484030d8c282845867
2dc0bedbcd2446fcff1abd43331548ab2c7bc8ba
refs/heads/master
2023-01-01T02:36:20.415676
2020-10-20T18:37:20
2020-10-20T18:37:20
305,798,876
0
0
null
null
null
null
UTF-8
C++
false
false
2,279
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "Engine/DataAsset.h" #include "Styling/SlateBrush.h" #include "RPGItemBase.generated.h" class URPGGameplayAbility; /** Base class for all items, do not blueprint directly */ UCLASS(Abstract,...
[ "gordon.lobins@gmail.com" ]
gordon.lobins@gmail.com
040f99b589179eaa6344f57edf657f4accd2e2ac
bf0f0663bf039447f467473c3923a122f0a5e29f
/moc_chumbyknobhandler.cpp
c0a38203135c2df2ff7b0b4478c61ac7b38540f2
[ "MIT" ]
permissive
9072997/ChumbyBrowser
c504436014b9193e50dc1245d8acf3d0b97c71ae
8d87b1c938feefc59114b75fb1dca9303d34c45c
refs/heads/master
2021-04-15T08:40:32.798325
2013-04-03T02:59:40
2013-04-03T02:59:40
8,966,440
1
0
null
null
null
null
UTF-8
C++
false
false
2,418
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'chumbyknobhandler.h' ** ** Created: Sun Mar 17 05:08:55 2013 ** by: The Qt Meta Object Compiler version 62 (Qt 4.6.3) ** ** WARNING! All changes made in this file will be lost! *****************...
[ "pennpd@sbcglobal.net" ]
pennpd@sbcglobal.net
e4db57a25e3b53076b84984c1e3295e46a1fe583
40c9eaac3960342f6ce3c738546e9022412499db
/devel/include/brics_actuator/JointAccelerations.h
eb3fc881567868de0ea375bbccf6406b909a9e65
[]
no_license
likith3611/hungry_bird-eYRC2018-2019
c88a81cfd6ba130359cfd044aa34893329b4860b
3fcb2e56bbd2a5c406db8f3403ffc8b50a6e1a66
refs/heads/master
2022-11-29T04:26:37.097469
2022-11-23T15:16:57
2022-11-23T15:16:57
273,953,655
0
0
null
null
null
null
UTF-8
C++
false
false
6,755
h
// Generated by gencpp from file brics_actuator/JointAccelerations.msg // DO NOT EDIT! #ifndef BRICS_ACTUATOR_MESSAGE_JOINTACCELERATIONS_H #define BRICS_ACTUATOR_MESSAGE_JOINTACCELERATIONS_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/built...
[ "cryp2gra5y@gmail.com" ]
cryp2gra5y@gmail.com
25a922bfdf8054144bf0fba88b4f343fe670d2f6
20e040173463c28e5d4210af72cb364375fe15de
/imports/Stack.h
ec6b2e76eae5d92a8f58d8ba0473971813e5b9d9
[]
no_license
joeySchentrup/Map_Project
005eeda2e6639cd1ccf64b6a71651fa01e3cf4ed
522d55393ada20c07e71f0b511fa48e68e9bdc99
refs/heads/master
2021-09-04T10:12:50.458258
2018-01-17T21:47:35
2018-01-17T21:47:35
112,235,965
0
0
null
2018-01-17T20:00:01
2017-11-27T19:00:27
C++
UTF-8
C++
false
false
689
h
#ifndef STACK_H #define STACK_H template < class T > class Stack { private: T array [10]; int pointer; public: Stack() { pointer = 0; }; void push(T object); T pop(); bool isEmpty(); void clear(); }; template < class T > voi...
[ "j03y@live.com" ]
j03y@live.com
acdaed6405ae9b74c995e14b61dd7161294d7290
3ff1fe3888e34cd3576d91319bf0f08ca955940f
/eb/include/tencentcloud/eb/v20210416/model/ListTargetsRequest.h
3335f9e76e6a180f5b2400d209bbea18e7d08697
[ "Apache-2.0" ]
permissive
TencentCloud/tencentcloud-sdk-cpp
9f5df8220eaaf72f7eaee07b2ede94f89313651f
42a76b812b81d1b52ec6a217fafc8faa135e06ca
refs/heads/master
2023-08-30T03:22:45.269556
2023-08-30T00:45:39
2023-08-30T00:45:39
188,991,963
55
37
Apache-2.0
2023-08-17T03:13:20
2019-05-28T08:56:08
C++
UTF-8
C++
false
false
7,822
h
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. 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 ...
[ "tencentcloudapi@tencent.com" ]
tencentcloudapi@tencent.com
b1d158297794f04e6ac449fcd1989c836fc9cf15
9be2b306a2c51316943ffc4dc9b1dc37c5606ab4
/数学与二进制运算/checkPowerOf2.cpp
bec1d7559b12a75894cc385c6f899ba1a86094be
[]
no_license
pengfei9403/Lintcode
4471862df5cb24bd2f4046f1ade69dd7cdc1c06f
3389e22fa650fe714917d49db74b665f77a5396f
refs/heads/master
2021-01-19T21:08:55.994377
2017-06-20T06:37:26
2017-06-20T06:37:26
88,614,281
0
0
null
null
null
null
UTF-8
C++
false
false
263
cpp
class Solution { public: /* * @param n: An integer * @return: True or false */ bool checkPowerOf2(int n) { // write your code here if(0 >= n){ return false ; } if(n & (n-1)){ return false ; }else{ return true ; } } };
[ "pengfei9403@163.com" ]
pengfei9403@163.com
afcbd7502fcece537b24ec32edc1ac3d0678ccc7
19079c088fc306ac773d4a6f7e85715a3fc8cc9d
/challenge/flutter/all_samples/material_aspectratio_2/linux/my_application.cc
aa3d93c76e911de4b62d2528424193c19ee05611
[ "Apache-2.0" ]
permissive
davidzou/WonderingWall
75929193af4852675209b21dd544cb8b60da5fa5
1060f6501c432510e164578d4af60a49cd5ed681
refs/heads/master
2022-11-03T22:33:12.340125
2022-10-14T08:12:14
2022-10-14T08:12:14
5,868,257
4
0
null
null
null
null
UTF-8
C++
false
false
3,742
cc
#include "my_application.h" #include <flutter_linux/flutter_linux.h> #ifdef GDK_WINDOWING_X11 #include <gdk/gdkx.h> #endif #include "flutter/generated_plugin_registrant.h" struct _MyApplication { GtkApplication parent_instance; char** dart_entrypoint_arguments; }; G_DEFINE_TYPE(MyApplication, my_application, GT...
[ "wearecisco@gmail.com" ]
wearecisco@gmail.com
ac7d761ca1b2cd61bba8d305fd04016abcffd3dd
4a643f56f470d8e0681c55af7d49809dee660b0c
/Diffeq/testcases/diffusion_timing.cpp
914d8e0449a20c865207810884e502b956a207e3
[]
no_license
HPCSEprojectBT/GEMM
c56d12d2a79e9e9b300ac8cf5a2579a376b54d6c
4db9aa04e27dfeb27edf9ad1aaa87b9517975aeb
refs/heads/master
2021-01-10T18:50:09.325186
2014-07-11T16:39:19
2014-07-11T16:39:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,077
cpp
#include <iostream> #include <mpi.h> #include "3dhpcmatrix.hpp" #include "vtk_writer.hpp" #include <math.h> #include "timer.h" using namespace std; const int t_max = 100000; double dt; void print_matrices(matrix<double> & m, int size, int rank) { for( int i = 0; i < size; ++i ) { MPI_Barrier( MPI_COMM_WORLD ); ...
[ "ulmerb@student.ethz.ch" ]
ulmerb@student.ethz.ch
d817710034609df5d8c65389ca7233ecbf984b51
ce6229f5915f9e6de1238861b4a940d61e56960b
/Sonder/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Runtime_Remoting_Contexts_Synchroni462987365.h
ca20ba4af5d980eb9d7bb8e1c64a0498deeea5a9
[ "Apache-2.0" ]
permissive
HackingForGood/GoogleyEyes
d9e36e3dffb4edbd0736ab49a764736a91ecebcf
a92b962ab220686794350560a47e88191e165c05
refs/heads/master
2021-04-15T10:03:59.093464
2017-06-25T17:32:52
2017-06-25T17:32:52
94,575,021
7
0
null
null
null
null
UTF-8
C++
false
false
1,964
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Object2689449295.h" // System.Runtime.Remoting.Messaging.IMessageSink struct IMessageSink_t2189618969; // System.Runtime.Remoting.Contexts.SynchronizationAt...
[ "anishdhesikan@gmail.com" ]
anishdhesikan@gmail.com
1eadaf11984c4f6395ff407dada9bd72c2ce1b5d
7b50b7deab7c96277eeee56636fa01ce74952a24
/RasberryPi/src/tanker_publisher.cpp
e168561c2fc5093b4e7411bb7f497f1df994d8e6
[]
no_license
Taiki-Ishigaki/hajimeteno_SLAM
3ee24ef8cf71b32239ef733c43f3d264e013afec
ed0a968018d6726f99aa0104b56c69bb733a6895
refs/heads/master
2020-09-27T17:12:37.110352
2020-01-09T07:30:34
2020-01-09T07:30:34
226,567,260
0
1
null
2019-12-29T15:37:14
2019-12-07T19:44:39
Python
UTF-8
C++
false
false
721
cpp
// // Created by yutaro on 19/12/05. // #include "ros/ros.h" #include "std_msgs/String.h" #include <tanker/driver.h> #include <sstream> #include <iostream> using namespace std; int main(int argc, char **argv){ ros::init(argc,argv,"publisher"); ros::NodeHandle nodeHandle; ros::Publisher publisher = nodeHandle.ad...
[ "imashiro@ynl.t.u-tokyo.ac.jp" ]
imashiro@ynl.t.u-tokyo.ac.jp
84af783ea575e63eb405c5b4b1f178a286e35f39
3337487f520e3b4901b446159e802c081984780a
/source/floor.cpp
9e60c6f671af6a9a2f6bddcdadb9ff13020e2ed4
[]
no_license
joonalas/ProjectRogue
277e02f88a76f48ffee346a778853f17b14268b5
793e78022eeac98b18eb7ad6fe51265144bdc068
refs/heads/master
2018-12-09T13:05:49.491600
2017-12-11T01:23:57
2017-12-11T01:23:57
113,795,483
0
0
null
null
null
null
UTF-8
C++
false
false
481
cpp
#include <iostream> #include "mygame.h" void Floor :: setDimensionX(int x) { this -> x = x; } void Floor :: setDimensionY(int y) { this -> y = y; } int Floor :: getDimensionX() { return this -> x; } int Floor :: getDimensionY() { return this -> y; } //Constructor Floor :: Floor(...
[ "joonas.lassila95@gmail.com" ]
joonas.lassila95@gmail.com
37a9c8aa5f7945dae82d7906c0428c7327f30dd4
345b4f965b515a3387fdba062a075816398e384c
/xtt/lib/cow/src/cow_logwnav.cpp
cb96daa980e1b2eb815343e0abb6d2f09fd56214
[]
no_license
hfuhuang/proview
4fd0bf089aa6e3a303aea666652e5046cf5855d7
4172df2ae577ff3202e29f28e0afdbe0cc8780a6
refs/heads/master
2020-12-24T17:17:05.556911
2010-01-14T15:16:16
2010-01-14T15:16:16
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
12,925
cpp
/** * Proview $Id$ * Copyright (C) 2005 SSAB Oxelösund AB. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 2 of * the License, or (at your option) any later version...
[ "claes.sjofors@proview.se" ]
claes.sjofors@proview.se
1ff0304bafde89ced0c853e8134436a1c4dd972f
d668209e9951d249020765c011a836f193004c01
/tools/pnnx/src/pass_ncnn/nn_InstanceNorm2d.cpp
828cc1fc4cd22cd578dc7e7761302f6bafac0648
[ "BSD-3-Clause", "Zlib", "BSD-2-Clause" ]
permissive
Tencent/ncnn
d8371746c00439304c279041647362a723330a79
14b000d2b739bd0f169a9ccfeb042da06fa0a84a
refs/heads/master
2023-08-31T14:04:36.635201
2023-08-31T04:19:23
2023-08-31T04:19:23
95,879,426
18,818
4,491
NOASSERTION
2023-09-14T15:44:56
2017-06-30T10:55:37
C++
UTF-8
C++
false
false
1,970
cpp
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy ...
[ "noreply@github.com" ]
noreply@github.com
6dded369bcda9e14dc00779e20caa0a4279024d2
30a88820f8c1e3159712aaffa553982271fa8688
/1.cpp
6c4e963f6beebbbf1119a59dadf99cca16e83b13
[]
no_license
Rajatkumar-123/face-detection
91e11b32a6acbe15e76db484b54904ae71ef9e7f
a5a6423e21d2163bd74c097d16cd29ac25518376
refs/heads/master
2020-09-04T21:07:10.497067
2019-11-06T02:41:51
2019-11-06T02:41:51
219,892,159
0
0
null
null
null
null
UTF-8
C++
false
false
4,127
cpp
#include "opencv2/objdetect/objdetect.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #include<string> #include<sstream> #include <iostream> #include <stdio.h> #include<cstdlib> #include<sys/stat.h> #include<sys/types.h> using namespace std; using namespace cv; int main(int ar...
[ "noreply@github.com" ]
noreply@github.com
5bdee572bce08fbb30b9ff0fe3f0133ca8642c49
348e80a3b8c0c0a16fc36ef2d1034eac06da97aa
/PeraProcessDesigner/PeraProcessDesigner/CxArrayBase.h
5caa2443845e4c0a9d04a4bfde97bdb30df69ce7
[]
no_license
wyrover/WorkPlatForm
0e2c9127ccb6828857532eb11f96be3efc061fe9
f14a8cdd2bc3772ea4bd37a0381f5f8305a0a2c2
refs/heads/master
2021-01-16T21:16:13.672343
2016-01-17T08:59:01
2016-01-17T08:59:01
62,207,103
0
1
null
2016-06-29T07:56:29
2016-06-29T07:56:28
null
GB18030
C++
false
false
846
h
#pragma once #include "StlHeader.h" #include "CxDataType.h" class CCxArrayBase { public: static const int _MaxDimSize = 0xFFFF; static const int _MaxDim = 3; CCxArrayBase(int nDataType); virtual ~CCxArrayBase(void); //取得数据类型 int GetDataType(void) const { return m_DataType; } //取得维数 int GetDimCount(void); //生...
[ "cugxiangzhenwei@sina.cn" ]
cugxiangzhenwei@sina.cn
33907cb525e91f4c68286429d67f6152f1bafc7f
d6cc251f91c18311c9d5e23e62831840891ecdfe
/include/Screen.h
bfa3861b1c538f58ae3200573438a0906e544736
[]
no_license
Staszek1903/projekt_grela
a94baacfd069e61d5ba67b8a9d9d107fd19ef0d3
06666af202dcb8f9b3807c6bbdd4f10cf099bfdd
refs/heads/master
2020-04-12T23:10:35.161857
2019-02-03T09:28:14
2019-02-03T09:28:14
162,811,051
2
1
null
2019-01-07T17:45:40
2018-12-22T12:54:02
C
UTF-8
C++
false
false
523
h
#ifndef SCREEN_H #define SCREEN_H #include "Bitmap.h" /** * Klasa okna */ class Screen : public Bitmap { public: /** * Tworzy okno o wymiarach width na height o nazwie name */ Screen(int width, int height, std::string name); virtual ~Screen(); Screen(const Screen &) = del...
[ "staszek197@op.pl" ]
staszek197@op.pl
a0ae9560444bb4c1f8d9e460692d768b5c629905
9fad4848e43f4487730185e4f50e05a044f865ab
/src/chrome/browser/extensions/api/image_writer_private/image_writer_utility_client.cc
d60993f8242f32a30e684e17741f94cc67d523a3
[ "BSD-3-Clause" ]
permissive
dummas2008/chromium
d1b30da64f0630823cb97f58ec82825998dbb93e
82d2e84ce3ed8a00dc26c948219192c3229dfdaa
refs/heads/master
2020-12-31T07:18:45.026190
2016-04-14T03:17:45
2016-04-14T03:17:45
56,194,439
4
0
null
null
null
null
UTF-8
C++
false
false
5,818
cc
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/bind.h" #include "base/location.h" #include "base/thread_task_runner_handle.h" #include "build/build_config.h" #include "chrome/browser/bro...
[ "dummas@163.com" ]
dummas@163.com
a98ed1eb6ea1bc0dac781c8d2eb5b0d13dad2643
d173ec70e3c5fe7f5c4d7a2b7fdf90736c3853c1
/UVA/686 Solution.cpp
5ff2bcc3010d912b5c4532ec6699a654ec3a635c
[]
no_license
thaherkhan/Online_Judge
c4122d659b874f1a343afdcfb5e2f18f820dc866
2de9cba9534cb6bc98ecbed2a576df3e8474e58c
refs/heads/main
2023-02-27T00:52:00.902164
2021-01-23T21:18:48
2021-01-23T21:18:48
332,282,369
0
0
null
null
null
null
UTF-8
C++
false
false
591
cpp
#include<bits/stdc++.h> using namespace std; #define ll long long #define size 1000005 ll a[1000005]; void sieve() { for(ll i=4; i<=size; i+=2) a[i]=1; for(ll i=3; i*i<=size; i+=2){ if(a[i]==0){ for(ll j=i*i; j<=size; j=j+(2*i)) a[j]=1; } } } int main(...
[ "noreply@github.com" ]
noreply@github.com
f9ed3edb5fee922906b407820871793f98f4b1d7
5d0de7daeb8e61e05f5321e1b8ce08ec29b89404
/emoguess/src/GuessProcessor.h
f62a4c7dbccd62488428998dde1b012802330f62
[]
no_license
vasiliy-bout/emorec
37681dee72177a0b419b3950b3e5d271f8a58d82
a30e49d7f8e4948bb9cb3625b1415de6176a0d35
refs/heads/master
2020-07-09T07:11:57.972619
2010-12-27T02:56:05
2010-12-27T02:56:05
1,184,248
0
0
null
null
null
null
UTF-8
C++
false
false
1,053
h
#ifndef __GUESSPROCESSOR_H__ #define __GUESSPROCESSOR_H__ #include <string> #include <vector> #include <map> #include <EmoCore.h> #include <EmoClass.h> class GuessProcessor { public: GuessProcessor(); std::string init(const std::string &classesFile, const std::string &coreConfigFile, const std::string &guiConf...
[ "bout.vasiliy@gmail.com" ]
bout.vasiliy@gmail.com
a575c0bdb3e249d1441ef87b000b2d762d857c4d
90c4c3485d78c416e9817035340edb2d1072701f
/MockCamera.cpp
e14cc0da073dc6341951376a12cd110d0c0dcae1
[ "Apache-2.0" ]
permissive
hwtwj/OpenARK
b57f333969ab5df561309a6132aca917bad83d15
b4cf8b4b18d4ea1b7d29ac8bb4bacec58ea829d7
refs/heads/master
2020-05-23T12:50:29.503057
2019-05-09T05:02:49
2019-05-09T05:02:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,332
cpp
#include "MockCamera.h" namespace ark { // Listing out all files in directory // https://www.boost.org/doc/libs/1_57_0/libs/filesystem/example/simple_ls.cpp MockCamera::MockCamera(const char* path) { std::string file_path(path); boost::filesystem::path depth_dir(file_path + "\\depth"); boost::filesystem::pat...
[ "billzhou2000@gmail.com" ]
billzhou2000@gmail.com
8ed31d601a800f0bdc9f54b5d738abdd6f81af60
d8ebde7a6fc958ba6a8da75c24f32b5528102c23
/branches/plugins/fbcallmonitor/fbcallmonitor.h
c55ceba4c148b02dc3fab2deab81f3b6c4ad4060
[]
no_license
FFTEAM/NHD2
4e88e3775e7fbf682550a10782c210a216b16c98
742f9436e303f8ff454e38f29c0adf9c290f9546
refs/heads/master
2021-01-01T06:39:16.792446
2015-07-26T17:34:49
2015-07-26T17:34:49
39,747,233
0
1
null
null
null
null
UTF-8
C++
false
false
1,699
h
/* neutrinoHD2 project https://code.google.com/p/neutrinohd2/ $Id: fbcallmonitor.h 2014/01/22 mohousch Exp $ thx to BPanther License: GPL 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 Fo...
[ "mohousch@2c6f6a7f-2313-61a7-ac6f-8ad46624f247" ]
mohousch@2c6f6a7f-2313-61a7-ac6f-8ad46624f247
6871b7668af2adeb9e4e9bc5f9632973002966d5
9fed49a53ae20ba85a5a09f762be27c41e14b3d2
/checkpoint_3/exe/main.cpp
7601d7775043466fb40a536dd36fbf085607c967
[ "MIT" ]
permissive
OxfordRSE/IntroCMakeCourse
11b176dfe237d96071619dd3104537717ea1d917
3eba68b9955b194a9d432d066c6422ccb006402e
refs/heads/main
2023-01-10T13:33:17.330908
2020-11-18T13:51:10
2020-11-18T13:51:10
311,488,014
1
2
MIT
2020-11-17T17:04:32
2020-11-09T23:09:13
C++
UTF-8
C++
false
false
344
cpp
#include <iostream> #include "functionality.hpp" #include "functionality_eigen.hpp" int main() { std::cout << "Checkpoint 3" << std::endl; std::cout << "Hypergeometric probability: " << hypergeometricPmf(10'000, 4'270, 300, 128) << std::endl; std::cout << "Random matrix: " << std::endl; printRandomMat...
[ "fcooper8472@gmail.com" ]
fcooper8472@gmail.com
6c2520f4ef8966cb54b7601a90779a916c2010c6
7b3d4dff3945584460dc474a8bb8fe8fd9bdb625
/exercises/6/Seminar_15 - Design patterns And Features in C++/Singleton/Singleton.cpp
ddabd4807c5d9fa8873ad29220ecbc995ea40346
[ "MIT" ]
permissive
triffon/oop-2019-20
305535b006cb19e96c9c58d47737a28135fc666e
ec3e5488859d8140de5aa5090811cd0e1318d952
refs/heads/master
2022-05-13T07:04:22.306200
2022-03-19T09:49:17
2022-03-19T09:49:45
241,474,762
21
11
null
null
null
null
UTF-8
C++
false
false
3,443
cpp
#include <iostream> #include <ctime> #include <random> #include <iomanip> class Singleton { static Singleton* instance; int data; // Private constructor so that no objects can be created. Singleton() { data = 0; } public: static Singleton* getInstance() { if ( !instance ) { instance = new Singleton;...
[ "yassen4o222@abv.bg" ]
yassen4o222@abv.bg
2ef8df614b602b98d67241023c93fc6ecae73b42
8583b5bfc594b994f51d24d012e92ae66bf2e5ea
/src/MaterialsLibrary/include/babylon/materialslibrary/terrain/terrain_vertex_fx.h
67bcb7f5aeec7ed370b85ffb85604541868a796f
[ "LicenseRef-scancode-free-unknown", "Apache-2.0" ]
permissive
samdauwe/BabylonCpp
84b8e51b59f04a847681a97fa6fe0a5c554e9e1f
3dad13a666299cbcf2e2db5b24575c19743e1000
refs/heads/master
2022-01-09T02:49:55.057544
2022-01-02T19:27:12
2022-01-02T19:27:12
77,682,359
309
41
Apache-2.0
2020-11-06T12:16:17
2016-12-30T11:29:05
C++
UTF-8
C++
false
false
2,071
h
#ifndef BABYLON_MATERIALS_LIBRARY_TERRAIN_TERRAIN_VERTEX_FX_H #define BABYLON_MATERIALS_LIBRARY_TERRAIN_TERRAIN_VERTEX_FX_H namespace BABYLON { extern const char* terrainVertexShader; const char* terrainVertexShader = R"ShaderCode( #ifdef GL_ES precision highp float; #endif // Attributes attribute vec3 positi...
[ "sam.dauwe@gmail.com" ]
sam.dauwe@gmail.com
c08d3a6d6e6f85fe7c4a442f22e12eee10ff76f5
8ab931330fab2155e4818079efaffcc8c093c569
/chapter0/code_0_13.cpp
c58374ad983086d6bb6f9cd1ae11de055aeb47d3
[]
no_license
noeuli/insight
37f4436f45a17f51af3287186c151ff59f0e1041
b184041d0ea2e37e3ed84d9567ee65425b297c42
refs/heads/main
2023-06-21T06:37:57.148131
2021-08-03T15:15:14
2021-08-03T15:15:14
385,612,502
0
0
null
null
null
null
UTF-8
C++
false
false
302
cpp
// code -013 #include <stdio.h> #define N 10 int main() { int i, j, k, x = 0; for(i=0; i<N; i++) for(j=i; j<N; j++) for(k=j; k<N; k++) { printf("[%d %d %d] ", i, j, k); x++; } printf("%d\n", x); return 0; }
[ "noeuli@gmail.com" ]
noeuli@gmail.com
1c42df54a8cb20e29693cdc196cf8db88f755720
6ed471f36e5188f77dc61cca24daa41496a6d4a0
/SDK/DinoDeathHarvestingComponent_Base_classes.h
01b1abba1cb59ed8bf8eb798d6f7ad74b00e96a6
[]
no_license
zH4x-SDK/zARKSotF-SDK
77bfaf9b4b9b6a41951ee18db88f826dd720c367
714730f4bb79c07d065181caf360d168761223f6
refs/heads/main
2023-07-16T22:33:15.140456
2021-08-27T13:40:06
2021-08-27T13:40:06
400,521,086
0
0
null
null
null
null
UTF-8
C++
false
false
815
h
#pragma once // Name: ARKSotF, Version: 178.8.0 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass DinoDeathH...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
ee660cd78e1494181b2994d98b8eaf571d75ac8a
92494691d9de19d64254d4a5e8c59c184773906f
/src/indirectmap.h
dab8e9d9b5eb07c5d415aafde45622324e9c55b7
[ "LicenseRef-scancode-proprietary-license", "MIT" ]
permissive
xagau/Placeholders-X16R
ffaad0c6b0cb24872932c6663c2d7ee4cc6c3c97
5f96720e1d7f5bd6d5b574d9f3c12485c265ef33
refs/heads/master
2022-01-24T03:58:04.558002
2022-01-13T22:21:18
2022-01-13T22:21:18
162,598,084
23
10
MIT
2021-04-23T03:09:01
2018-12-20T15:31:28
C++
UTF-8
C++
false
false
2,677
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2015 The Bitcoin Core developers // Copyright (c) 2017 The Raven Core developers // Copyright (c) 2018 The Placeholder Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licens...
[ "seanbeecroft@gmail.com" ]
seanbeecroft@gmail.com
e572f2f81160df7a185752c8f42dbd1b4b369885
46a5bbac39e412da0c0b445e56a060487e026eb6
/src/primitives/block.h
fac7292faa599207937a6f39e0b596a946e59bc3
[ "MIT" ]
permissive
bomlinh/commacoin
83b646efaf77a424998f8d4186ab851add334df7
9f910c351aa6bb1d1eef81d5bc48d36a5a5e93c3
refs/heads/master
2020-07-27T22:30:50.507100
2019-08-28T03:31:00
2019-08-28T03:31:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,343
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2013 The Bitcoin developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2017-2018 The Comma developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-l...
[ "5135400+bomlinh@users.noreply.github.com" ]
5135400+bomlinh@users.noreply.github.com
b270dcf1506db486a13de3a85e0774f81885f7ac
46b4252a258c1183c481652af9313b01b08c1647
/RenderingFluidParticles/utility.cpp
75ed1a481c2c92f319941a6de411006d464fa112
[]
no_license
knut0815/fluid_simulation_using_sph
8398dea125e32d0f4c43e088457371077687afb8
489e84bb5efeca50be36da6bbf234f5d99160d8d
refs/heads/master
2022-01-30T20:42:30.246648
2019-07-14T07:12:24
2019-07-14T07:12:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,830
cpp
#include "FluidSimulation.h" inline void CrossProduct(double *a, double *b, double *c) { c[0] = a[1] * b[2] - a[2] * b[1]; c[1] = a[2] * b[0] - a[0] * b[2]; c[2] = a[0] * b[1] - a[1] * b[0]; } inline void Normalize(double *a) { double length = sqrt(a[0]*a[0] + a[1]*a[1] + a[2]*a[2]); ...
[ "noreply@github.com" ]
noreply@github.com
9055cfc2f22ac39ba25aefeb1bd4efcca8a7fe92
d070b4648f6bb8dd5bfc3ae7bf2874b15f468884
/src/treedec.hh
b44d96332a1992e173d5c654e5d1e8dfc8f65c84
[ "MIT" ]
permissive
gear/homlib
f2960b81b28ef7ff13f63bff5c3739fdd5aaf893
6c400e14cfdf9b64c38fd6820baa86de9bd6e91e
refs/heads/master
2020-09-01T23:23:41.797473
2020-05-03T07:18:01
2020-05-03T07:18:01
219,084,853
0
0
MIT
2019-11-02T00:55:46
2019-11-02T00:55:46
null
UTF-8
C++
false
false
5,100
hh
#pragma once #include <iostream> #include <fstream> #include <string> #include <vector> #include <queue> #include <tuple> #include <algorithm> #include "graph.hh" /* template <class T> std::ostream &operator<<(std::ostream &os, const std::vector<T> &v) { os << "["; for (int i = 0; i < v.size(); os << v[i++]) ...
[ "maehara@prefield.com" ]
maehara@prefield.com
e65064842410700c77fdbf6732be0bfb6648cb2f
9fa292d97ceb374068d355bd41097d0407d68bd3
/plugin/registration/rspfModelOptimizer.cpp
10dac955f216ebdac0dea6dcdc32075ab4954310
[]
no_license
mfkiwl/rspf_v2.0
4d90153b92cc416663c798e05f87e348ad8792ef
f22d2707b775a4776fc8359a255f39c26ecc96a3
refs/heads/master
2021-05-27T04:36:34.132569
2013-07-16T04:04:12
2013-07-16T04:04:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,836
cpp
//******************************************************************* // // License: LGPL // // See LICENSE.txt file in the top level directory for more details. // // Author: Frederic Claudel (fclaudel@laposte.net) // ICT4EO,Meraka Institute,CSIR // // Description: generic model optimization, high-level inter...
[ "loongfee@gmail.com" ]
loongfee@gmail.com
5e3eee832e0bd678e58d4725756a025ca541f479
ce880f56b45214bee5d89ac0fe9d107dcb05eadd
/MyProject/AF_Plus/AF/AF_TestItem.h
8592b6116aa225ca0342561f893d45984af61d56
[]
no_license
trigrass2/R3
ed70a444131ae4b77a4b03d583b6ae1714ce313a
04709b6decc4cedf3cd3287e27f47187a17eb6e5
refs/heads/master
2021-09-22T20:26:05.796505
2018-09-15T08:27:32
2018-09-15T08:27:32
null
0
0
null
null
null
null
GB18030
C++
false
false
2,864
h
#pragma once #include "ccmBaseInterface.h" #include "OptionDlg.h" #include "TestItemInterface.h" #include "ofSFR.h" class AF_TestItem :public TestItemInterface { public: AF_TestItem(ccmBaseInterface* pInterface, LPCTSTR lpszName); ~AF_TestItem(void); int InitItem(); int Testing(); //子类重载测试代码放放在此函数 int In...
[ "a079565176@foxmail.com" ]
a079565176@foxmail.com
6a99b16efe2deff2ad6392961839b86fcbbbb0dc
678328ff5e7d80e31af75bcf9a29c061117a5208
/Scarab-Engine/Source/EntryPoint/WorldCraft/Gameplay/Items/ItemClasses/EquipmentItems/AccessoryItems.inl
3334191beaeb959f3691c117eab6ddefb2e311d7
[]
no_license
SyGame-Engine-Team/SyGame-Engine
48ead0234e92ddae5096e0b00edfbbd0bb484291
1e2e9f174ca6a19394d50b03eb54a3d2bc2066b7
refs/heads/master
2021-01-10T15:05:24.457349
2015-09-29T21:55:15
2015-09-29T21:55:15
43,390,724
4
1
null
null
null
null
UTF-8
C++
false
false
1,688
inl
///////////////////////////////////////////////////////////////////////////////// // File : EntryPoint/WorldCraft/Gameplay/Items/ItemClasses/EquipmentItems/AccessoryItems.inl ///////////////////////////////////////////////////////////////////////////////// // Version : 1.0a // Began Code : 29/05/2010 // Status : Alpha ...
[ "scarab.engine@gmail.com" ]
scarab.engine@gmail.com
53dfa1aa2cd22eb976499ee12f5c520e614bc369
ace9ae6d4d1b80cbb8d0eccb3ffbc23853ff9248
/offline/Lecture1_Recursion/step_climb.cpp
21e9e2379698a21254071f9303302f39aac744a2
[]
no_license
malhotravasu/algoPlusPlus
847cc7360218f6aa8408dab135e246eab274faf0
5933a751eca22f37e39c05381f5835be390a6b9a
refs/heads/master
2020-04-12T20:44:35.818141
2020-04-04T20:45:10
2020-04-04T20:45:10
162,745,535
0
0
null
null
null
null
UTF-8
C++
false
false
629
cpp
#include <iostream> using namespace std; int stepClimb(int n, int k) { if (n == 0) return 1; if (n < 0) return 0; int result = 0; for (int i=1; i<=k; i++) result += stepClimb(n-i, k); return result; } int countStrings(int n) { if (n == 0) { return 0; } ...
[ "vmalhotra321@gmail.com" ]
vmalhotra321@gmail.com
fe1505bbb2046bb62a80e5b5f15e2de338a49db9
0af50cd7794014cb918f4131ade2b72b889d5df7
/Point.h
32d23c447fa154399bc9f2fd22db32450c686fc0
[]
no_license
rdx789/Inheritance-in-action
4abc52aa17402b9de99b67d1f4807160f78803d4
c512fdd5045bbf3e6c7d651b9384d11d1e07967d
refs/heads/main
2023-06-18T12:02:59.372608
2021-07-25T10:12:26
2021-07-25T10:12:26
388,512,864
0
0
null
null
null
null
UTF-8
C++
false
false
373
h
#ifndef POINT_H #define POINT_H //#pragma once class Point { public: explicit Point(double x, double y); Point(const Point& other); virtual ~Point(); Point operator+(const Point& other) const; Point& operator+=(const Point& other); double getX() const; double getY() const; double distance(const Point& othe...
[ "rd789x@gmail.com" ]
rd789x@gmail.com
7c816bb95dafbe8c241b93bbe09d81733c5dc947
76133a21119194a3a5884293fcbae852aa3bc363
/mrViewer/src/core/pxrzImage.cpp
cfe87615844b861f7f5b7f083846a22de260338e
[]
no_license
RadyGo/mrviewer
760664295ad7abaa6d4d44200c9a2744d1b99eb0
180a4d6df6444b8f8d84021a10331ee034658a90
refs/heads/master
2022-11-07T05:55:14.879977
2020-06-25T03:46:07
2020-06-25T03:46:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,676
cpp
/* mrViewer - the professional movie and flipbook playback Copyright (C) 2007-2020 Gonzalo Garramuño This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the Licen...
[ "ggarra13@gmail.com" ]
ggarra13@gmail.com
2288822d6a72b9939fb0b85e7a27dfc91c5bf707
7d137bbff04f7f3870c86101816943d7b8040f5f
/N-ary_Trie/code/windowsort.cpp
99d8d5520eed637bb42532396045be16b9b6a5ff
[ "MIT" ]
permissive
qzhsdu/DataStructureCourseDesign
3e78a33d1246a641271ce7416fcdbea068ef6fcf
ea8c1cd422714ca39f8100927f044159c58fc74e
refs/heads/master
2022-09-15T10:03:48.203149
2020-05-15T20:21:38
2020-05-15T20:21:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,310
cpp
#include "windowsort.h" #include "ui_windowsort.h" windowSort::windowSort(QWidget *parent) : QMainWindow(parent), ui(new Ui::windowSort) { ui->setupUi(this); this->setCentralWidget(ui->plainTextEdit); this->setWindowState(Qt::WindowMaximized); iniSignol(); } windowSort::~windowSort() { del...
[ "623581439@qq.com" ]
623581439@qq.com
fea2243e9ff06fe1d776e3e20afada4a34310efd
4db144c963de20229fafe0c1a8c9789ce3e091da
/utils/sigc++/adaptors/lambda/lambda.h
ffbaf5f709399eaa3965164da6376a4fb4b22428
[]
no_license
adderly/space_mess_SDL
97af9cfd8c6b282e6945294d63322ae9b67fcca0
73af9130b9f330aad5415dd2465c0eb86ee1bc42
refs/heads/master
2016-09-07T19:05:01.104163
2012-06-06T05:21:13
2012-06-06T05:21:13
2,865,103
0
1
null
null
null
null
UTF-8
C++
false
false
986
h
// -*- c++ -*- /* * Copyright 2002, The libsigc++ Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any...
[ "adderlygonzalez@gmail.com" ]
adderlygonzalez@gmail.com
d36176b54c81f5ed836b4c6a41515eb82c6450be
07834560a94f1617df35b057a26c3976e0e4f519
/VC2013MFC_windows_lib/src/MFC_windows_lib_VC2013/windows_lib/SSD_Definition.h
19f3db75f83bf07928ed431517f79f24d04eca3a
[]
no_license
liqing90/VC_Test_S_3
8d4a07988663251e2cb2b09e49414c82743b694f
75e6cfbfc54129b4e43bab677bba7f27f217ab59
refs/heads/master
2021-03-25T09:50:26.819830
2018-02-28T08:24:34
2018-02-28T08:24:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
33,063
h
#ifndef __SSD_DEFINITION__ #define __SSD_DEFINITION__ //------------------------------------------------------------------------------------------------- enum ENUM_FIRMWARE_MODE {UNKNOW_MODE, ROM_SAFE_MODE, BURNER_MODE, RDT_FW_MODE, PRODUCT_FW_MODE}; enum ENUM_READ_LOG_EXT_MODE {READ_LOG_EXT_NONE_SEGMENT, READ_LOG_EX...
[ "rex721101@google.com.tw" ]
rex721101@google.com.tw
2bff56e1a424920f59462578e0d16aedc2836a25
d3ca74c678dfb5d3c8de90b27abb15847ba67a0d
/cppfiles/exercise/basic/ex1_extern1.cpp
c2b7c3ad7c4b674e4dc67ee63b92ec3f56095543
[]
no_license
jsupratman13/workspace
6807dafccc8949a54205a16a75d5e49852fa118b
9ef4dc80b430f14f3caaca57e5eee90c919fcf9b
refs/heads/master
2021-12-27T21:21:49.956437
2021-12-20T09:39:31
2021-12-20T09:39:31
28,377,814
0
0
null
2021-01-29T06:37:39
2014-12-23T04:45:40
Python
UTF-8
C++
false
false
386
cpp
//extern give reference to global variable that is visible to ALL program files //extern cannot be initialize as it just point variable name at a storage location that is define //USEFUL for multiple files and reference global variable/function in other files #include <iostream> using namespace std; int count; extern...
[ "s1426071BL@s.chibakoudai.jp" ]
s1426071BL@s.chibakoudai.jp
7e807ac5cc502ee048be51a0742489da9115bbed
726d967d244bc4982fc6a37ff66870d885581aaf
/lang/test_c_statement_expr.cpp
04fb5763b9b39012e5417ce32e6ca2965b4160e3
[]
no_license
minggrim/cpp_tests
1fd7dd804b7b10f4dd08cd5283d88a89fae6ee6d
34d3b9f2ef613f4ff64c30e6a7387c5dbec82226
refs/heads/master
2022-03-14T17:17:32.755178
2022-03-08T15:34:37
2022-03-08T15:34:37
131,876,896
0
0
null
null
null
null
UTF-8
C++
false
false
313
cpp
#include <iostream> int main() { // statement expr : we should get z. int a = ({ int x = 1; int y = 2; int z = 3; std::cout << x << " " << y << " " << z << std::endl; x += y; y += z; z += x; }); std::cout << "my a : " << a << std::endl; }
[ "liam.liao@latticeworkinc.com" ]
liam.liao@latticeworkinc.com
c4e3e4e597f68aa07c49a4b005253e940c69acb1
e5dc9d8142d807b87e6a7980670ecba28e4a9523
/KsEngine/graphics/KsGraphics.cpp
a7f47cfff09d0fe58d897dd1a397f0d14fa9f7c7
[ "MIT" ]
permissive
a567w/AriaGame
e2c692e32d0afcf3e7ec7a676456e4d4a35c19d7
bf90f79cecd5e27e221fa0e791a784d9be5ef06f
refs/heads/master
2020-07-01T05:03:26.856425
2019-11-05T13:45:56
2019-11-05T13:45:56
201,052,112
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
2,629
cpp
/************************************************************************************************/ /** * @file KsGraphics.h * @brief 描画システム * @author Tsukasa Kato * @date ----/--/-- * @since ----/--/-- * @version 1.0 */ /*************************************************************************************...
[ "q.gate4@gmail.com" ]
q.gate4@gmail.com
7ffbd919be92904a47e61e540cf7b31b3ff6abe9
003f58454dd3cf9af1821b28e68f1f738d244d5e
/applications/panel/main.cpp
414791e82774079d219981fe9aaafa3254972a9c
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
busybox11/skift
7b5fd54e57e03ad23ab08b8ee8a8edb81a348c2d
778ae3a0dc5ac29d7de02200c49d3533e47854c5
refs/heads/master
2023-01-04T21:38:24.421418
2020-08-09T15:02:17
2020-08-09T15:02:17
279,430,614
1
0
NOASSERTION
2020-07-13T23:10:19
2020-07-13T23:10:19
null
UTF-8
C++
false
false
2,406
cpp
#include <libsystem/core/CString.h> #include <libsystem/eventloop/Timer.h> #include <libsystem/io/Path.h> #include <libsystem/process/Process.h> #include <libsystem/system/System.h> #include <libwidget/Application.h> #include <libwidget/Menu.h> #include <libwidget/Screen.h> #include <libwidget/Widgets.h> void widget_d...
[ "nicolas.van.bossuyt@gmail.com" ]
nicolas.van.bossuyt@gmail.com
d16c968ccabf739e12a024f0e7894e25d5c3e0d6
e83524b9a296c1b4668aac2e89e7ce984a0da964
/parametric/shapeGui/src/ofApp.h
bcdbe9c056209092a66f5032bb6e046085e770be
[ "MIT" ]
permissive
ofZach/whatIsPoeticComputation
50a369adff96cfea594ae22102a8c908518d7b45
d7e22b3a2146cc6493acce1e0847bfb776d7fa2b
refs/heads/master
2020-05-29T09:02:09.491676
2015-05-04T15:49:13
2015-05-04T15:49:13
32,805,100
10
1
null
null
null
null
UTF-8
C++
false
false
701
h
#pragma once #include "ofMain.h" #include "ofxGui.h" class ofApp : public ofBaseApp{ public: void setup(); void update(); void draw(); void keyPressed(int key); void keyReleased(int key); void mouseMoved(int x, int y ); void mouseDragged(int x, int y, int button); void mousePressed(int x, int y, i...
[ "zach@eyebeam.org" ]
zach@eyebeam.org
5093fa4bdd5f54eb72bcdf058beb87a7d283b6cb
d099ef4dbaace1d7d89994f2133bf0aa12f1d0b3
/_MODEL_FOLDERS_/o19/o19.cpp
032455d5db12df683433441fc95205d81a55214a
[]
no_license
marcclintdion/startHere_threadStable-4
e7bd701b547c4768c0d60467d31435447c251e21
d78b3a02c7b1b5007e8f54a58f96f64df1b088b6
refs/heads/master
2021-01-02T23:14:42.383781
2015-05-03T08:43:36
2015-05-03T08:43:36
39,881,209
0
0
null
null
null
null
UTF-8
C++
false
false
602,128
cpp
GLfloat o19[] = { //numberOfVertices = 5989 18.808735 , -0.227718 , 1.064237 , 0.149693 , 0.191168 , 0.970061 , 0.943690 , 0.430897 , 18.935223 , -0.444065 , 0.933767 , 0.696280 , 0.335887 , 0.634297 , 0.950877 , 0.427229 , 19.036999 , -0.162472 , 0.839570 , 0.780084 , 0.042573 , 0.624165 ...
[ "marcdion1974@gmail.com" ]
marcdion1974@gmail.com
d8965c73c7a293752b45bc81f7321acfd614f3eb
f5c837225d844c1c725397b2e733f2ec2d7d19dc
/Untitled/KeyRemap4MacBook-7.0.30/src/core/kext/util/EventInputQueue.hpp
c7396cbd86b9bcd7e5a6e824bcb2d47c62b3065b
[]
no_license
caminante99/NewMicroTRON-Layout
6fb00ba1a2f1ef8f87b10507b378f7961ccadc21
d3e33c2c9cbc26e7ae74d51e2e5e6540a75af82d
refs/heads/master
2020-04-06T06:33:39.842605
2011-04-25T02:28:18
2011-04-25T02:28:18
35,869,311
1
0
null
2015-05-19T08:28:46
2015-05-19T08:28:46
null
UTF-8
C++
false
false
6,318
hpp
#ifndef EVENTINPUTQUEUE_HPP #define EVENTINPUTQUEUE_HPP #include "base.hpp" #include "CallBackWrapper.hpp" #include "IntervalChecker.hpp" #include "KeyCode.hpp" #include "List.hpp" #include "ParamsUnion.hpp" #include "TimerWrapper.hpp" namespace org_pqrs_KeyRemap4MacBook { namespace RemapFunc { class Simultaneo...
[ "JAD02566@nifty.ne.jp" ]
JAD02566@nifty.ne.jp
4cdb07595d90e5965fafee5c8958339cfc78342f
f6e7bf63d88ddcd43892f62850f8d7f03ba85da0
/Source/WebKit2/UIProcess/PageViewportController.h
029228dde5a69b72c7a40b0bdf4a58208d9865b1
[]
no_license
frogbywyplay/appframeworks_qtwebkit
6ddda6addf205fb1a498c3998ef6fc0f3a7d107f
5a62a119d5d589ffbf8dd8afda9e5786eea27618
refs/heads/master
2021-07-09T14:55:57.618247
2021-04-28T13:58:39
2021-04-28T13:58:39
18,559,129
0
1
null
null
null
null
UTF-8
C++
false
false
4,474
h
/* * Copyright (C) 2011, 2012 Nokia Corporation and/or its subsidiary(-ies) * Copyright (C) 2011 Benjamin Poulain <benjamin@webkit.org> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Founda...
[ "dcaleca@wyplay.com" ]
dcaleca@wyplay.com
508ac0f0846c5ddb4f70b2f1f77dca423d0470f6
f4fa534e63d5b93fb5728bfa47f8873dcf112d88
/Examples/DocsExamples/source/Programming with Documents/Protect or Encrypt Document/Document protection.cpp
0996aad52e52b8b51c19ce33a07c4638ae7f2574
[ "MIT" ]
permissive
aspose-words/Aspose.Words-for-C
6e2911fdaf6161a0ea75327c291366d430ed080c
d44ab98550d22b825224562757c90b5895b734b2
refs/heads/master
2023-08-03T09:21:26.994370
2023-07-26T16:41:15
2023-07-26T16:41:15
142,434,585
42
15
MIT
2023-08-23T17:08:54
2018-07-26T11:56:36
C++
UTF-8
C++
false
false
1,826
cpp
#include "Document protection.h" using namespace Aspose::Words; namespace DocsExamples { namespace Programming_with_Documents { namespace Protect_or_Encrypt_Document { namespace gtest_test { class DocumentProtection : public ::testing::Test { protected: static System::SharedPtr<::DocsExamples::Programming_with_D...
[ "btolfa@gmail.com" ]
btolfa@gmail.com
d5d20dea78400203898c83dca09df056197cb90c
583e8a2d0f1ff42d1b1c9cfb759583fc73ef71a4
/XCodeProject/Device/Classes/Native/UnityEngine.UnityConnectModule.cpp
170a7cd61954164fae51c8f8f364bd1102477445
[]
no_license
BoxFoxGames/tilebreaker
0d6c0c47e587213015657be4ae2842730bf9ee17
98d77534f4df98c51e3f79539b1b0523e3684f65
refs/heads/master
2022-12-04T04:00:24.646362
2020-08-03T22:05:42
2020-08-03T22:05:42
284,662,795
0
0
null
null
null
null
UTF-8
C++
false
false
9,925
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" // Syste...
[ "florian.haverkamp@haw-hamburg.de" ]
florian.haverkamp@haw-hamburg.de
2a27e71a1386e0652ebe2f3ed31afb28ed1b1baa
9235ce608f839875b8a8e05632fc5e99612df62e
/Lex+Syntax Analysis/Output/test22.cpp
82edd00cba883c88eed12858f3cecd3761ade641
[]
no_license
The-Death-Reaper/cpp_mini_compiler
c83e64db669edff9447795b892f8a91fce6d0e0f
2436aed7c81ba9b539407c7e3992c06b3c32ba84
refs/heads/master
2023-04-10T12:49:07.344634
2021-04-17T06:08:30
2021-04-17T06:08:30
337,933,221
0
0
null
null
null
null
UTF-8
C++
false
false
1,451
cpp
#include<iostream> int main(){ int i=0; for(int k=0;;){ int j; } } Parsing is successful Displaying the Symbol Tables: Symbol Table Number: 0.0 --------------------------------------------------------------------------------------------------- SNo | Token | Datatype | Value | Size | Line No | Column No | ...
[ "mayurpeshve2@gmail.com" ]
mayurpeshve2@gmail.com
2ed9bd564f7ed8e0beb6b196cf8d01cf87baf23d
85262a267b55bee78ad1faaefd90eafef2ea23cd
/src/GenCustomer.cpp
e2b258c1a22b867a7775f7605a414c2147d12616
[]
no_license
ryanmueller28/GenCSVForProjects
40e9d0d6f1af5443c9f8843fac793cc8f45e2467
b2c049d090353c631007ab47a925ec8156c0797f
refs/heads/master
2023-03-13T00:00:05.228566
2021-02-27T23:11:23
2021-02-27T23:11:23
342,978,141
0
0
null
null
null
null
UTF-8
C++
false
false
2,481
cpp
#include <iostream> #include <fstream> #include <cstdlib> #include <chrono> #include <random> #include <vector> #include "Person.h" #include "Account.h" int main() { std::string FirstNames[2000]; std::string LastNames[1000]; std::ifstream firstNameFile("D:\\Dev\\cpp-random\\GenCustomerCSV\\s...
[ "ryan.mueller@doane.edu" ]
ryan.mueller@doane.edu