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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f0d3dc83292c2546392dadbf1e3a38d6251635a5 | fdf4796be7673359f1610e50d9da7c1ecd93ccb2 | /Color.cpp | 10f474dcf4c9f690a8f30c790740b8c4290e9f75 | [] | no_license | jeckel/LightSpace | b089422c76f6ab890e6ace7810174ec86a8bf1db | ff74cbd07c2cfd39951e00cc33656fb8f5cdf68d | refs/heads/master | 2016-09-01T20:45:59.612811 | 2013-06-17T19:10:03 | 2013-06-17T19:10:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,614 | cpp | #include "Color.h"
#include <pgmspace.h>
/**
* Convert separate R,G,B into combined 32-bit GRB
* @param byte r Red color
* @param byte g Green color
* @param byte b Blue color
* @return struct CRGB
*/
struct CRGB Color(byte r, byte g, byte b)
{
struct CRGB led;
led.r = r;
led.g = g;
led.b = b;... | [
"jeckel@jeckel.fr"
] | jeckel@jeckel.fr |
9808391d426c06019d5607273571678c97fb16fe | aa143bf7597d0193d63c3085ba3c5836c16f22b6 | /30_Days_of_Code/Day_08_Dictionaries_and_Maps.cpp | 145785faa08822f1bce0100d94c114df0c706181 | [
"Apache-2.0"
] | permissive | softctrl/hackerrank_codes | ed46a41070feded63b3e7f161855a7a0f4d77cbb | b67684a82906ee9176297d786137c07f9df2b195 | refs/heads/master | 2020-04-12T05:01:01.772693 | 2016-11-09T19:43:37 | 2016-11-09T19:43:37 | 62,399,539 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 662 | cpp | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <map>
using namespace std;
int main() {
map<string, string> agenda;
int n;
cin >> n;
while (n--) {
string name;
string phone_number;
cin >> name >> phone_number;
agenda... | [
"noreply@github.com"
] | noreply@github.com |
c68f7750ebdc4d9c5cf6528b54ac77f1789306eb | 82df259362bfd44e9c445c7868abd31601c94a1a | /Gataringan/Main/NewGLUT/Texture2D.cpp | b609b33af9443d8cda1ab7438271302d1ae29d48 | [
"MIT"
] | permissive | RuiMitchellDaSilva/OldProjects | 2ddc9a99910a59d081c69a9b646d9d9711768ab9 | 9b797d45e8b1bfe3bf843671eedde4c59037d176 | refs/heads/master | 2021-01-15T22:34:35.270226 | 2015-02-05T23:35:10 | 2015-02-05T23:35:10 | 30,382,783 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,218 | cpp | #include "Texture2D.h"
#include <iostream>
#include <fstream>
using namespace std;
Texture2D::Texture2D(){}
Texture2D::~Texture2D(){}
bool Texture2D::Load(char* path, int width, int height)
{
char* tempTextureData;
int fileSize;
ifstream inFile;
_width = width;
_height = height;
inFile.open(path, ios::binar... | [
"ruialexandro@hotmail.co.uk"
] | ruialexandro@hotmail.co.uk |
76e566edcee5e0e4fe0a55521174697cb2ad328e | db89ce4d4cbca8060eadc3a59f8ebf2eaae1d8a9 | /morehouse/other/foo.cpp | 2dd17648f49350d7fc21e22b008b90e006482e9a | [] | no_license | fgxbzns/ngs | c71dce4c2589b1a902f7316da73264d84044e56a | 2ad466b1c837e18462795ea4fc64f432f71a5166 | refs/heads/master | 2021-01-01T18:42:35.357045 | 2015-04-28T20:41:40 | 2015-04-28T20:41:40 | 10,322,991 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 176 | cpp | // filename: foo.cpp
#include <stdio.h>
extern "C"
char* myprint(char *str)
{
puts(str);
return str;
}
extern "C"
float add(float a, float b)
{
return a + b;
}
| [
"fgxbzns@gmail.com"
] | fgxbzns@gmail.com |
1d6f017e6b65395bf05eef4cd84e5adbed2fceb8 | d761e11c779aea4677ecf8b7cbf28e0a401f6525 | /src/include/EnumeratedFileReader.hpp | 8b96dcf44184beb5b259e61b43beb63499c07ab7 | [] | no_license | derrick0714/infer | e5d717a878ff51fef6c9b55c444c2448d85f5477 | 7fabf5bfc34302eab2a6d2867cb4c22a6401ca73 | refs/heads/master | 2016-09-06T10:37:16.794445 | 2014-02-12T00:09:34 | 2014-02-12T00:09:34 | 7,787,601 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,142 | hpp | #ifndef INFER_INCLUDE_ENUMERATEDFILEREADER_HPP_
#define INFER_INCLUDE_ENUMERATEDFILEREADER_HPP_
#include "DataTypeTraits.hpp"
#include "ErrorStatus.hpp"
template <typename ReaderType, typename ReadEnumeratorType>
class EnumeratedFileReader {
public:
typedef reader_type_tag category;
typedef typename ReaderType::v... | [
"derrick0714@gmail.com"
] | derrick0714@gmail.com |
bca2a914749518bd2a68d6af6209e7bb25c8c37f | 5286798f369775a6607636a7c97c87d2a4380967 | /thirdparty/cgal/CGAL-5.1/include/CGAL/Nef_2/Bounding_box_2.h | 1de0bf8f42674dc40f331f92b6a474a90f06e5d8 | [
"GPL-3.0-only",
"LGPL-2.1-or-later",
"LicenseRef-scancode-proprietary-license",
"GPL-1.0-or-later",
"LGPL-2.0-or-later",
"MIT",
"LicenseRef-scancode-free-unknown",
"LicenseRef-scancode-unknown-license-reference",
"MIT-0",
"LGPL-3.0-only",
"LGPL-3.0-or-later"
] | permissive | MelvinG24/dust3d | d03e9091c1368985302bd69e00f59fa031297037 | c4936fd900a9a48220ebb811dfeaea0effbae3ee | refs/heads/master | 2023-08-24T20:33:06.967388 | 2021-08-10T10:44:24 | 2021-08-10T10:44:24 | 293,045,595 | 0 | 0 | MIT | 2020-09-05T09:38:30 | 2020-09-05T09:38:29 | null | UTF-8 | C++ | false | false | 3,305 | h | // Copyright (c) 1997-2000 Max-Planck-Institute Saarbruecken (Germany).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Nef_2/include/CGAL/Nef_2/Bounding_box_2.h $
// $Id: Bounding_box_2.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot
// S... | [
"huxingyi@msn.com"
] | huxingyi@msn.com |
88ad858b6b7622144c49fb3b242013cace1a774a | 0142093a25d0f9eff75d071a150d03875bb6003c | /week1/徐睿康/找出元音字符.cpp | 4e3b2a7723bc1bfbf15de4e5a7e06dae6aa9f151 | [] | no_license | zzcym/NEUQ-ACM-Solution | 616971279a77d373ac1b276419f88aea9bae847c | 6725c8dbf6f3a342064d4d645a6166eb7f9bbb42 | refs/heads/main | 2023-08-31T10:21:38.829611 | 2021-10-25T15:49:22 | 2021-10-25T15:49:22 | 421,091,552 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 203 | cpp | using namespace std;
int a[100010],n,m,x,y,flag;
string s[100010];
char c;
int main(){
cin>>n;
for(int i=1;i<=n;i++){
cin>>c;
if(c=='a'||c=='e'||c=='i'||c=='o'||c=='u')
cout<<c;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
d60bad33d905566429b558e2c0102c336baf91a8 | 591b05d3812c9422c1033afad9f71bb2407bb7f2 | /Game/Game/EnemyPlayer.h | 198d3a5e25b4920ef117dcca1acfebdb89d9003e | [] | no_license | PavelMarishev/Tanks | 63c7bcbb36f92522116f5df018ef8d50c60dbbcc | 90e25ea4fe535140c1ad5b3dfbd0a9732a161090 | refs/heads/master | 2021-01-13T14:46:22.690441 | 2016-12-15T18:59:49 | 2016-12-15T18:59:49 | 76,584,791 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,235 | h | #pragma once
#include "MovingObject.h"
#include "bullet.h"
#include <SFML\Graphics.hpp>
using namespace sf;
class EnemyPlayer :public MovingObject
{
private:
Texture dead;
Sprite s_dead;
bullet eBullet;
bool bulleton = false;
Clock clock;
int where = 0;
public:
EnemyPlayer(String p, int x, int y) :MovingObj... | [
"karthusss@ya.ru"
] | karthusss@ya.ru |
57135e57b1f1925242e99b8d7eef3862218f196e | b0b0b7ad6b0984594686dffd81be69199a3a71bb | /Charts/TRChartsObjc/TRChartsObjc/Support/DateFormatterInterfaceMarshaller.hh | e26f1e42ed942482ee423834a42e455de3f285f3 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | thesurix/TRCharts | 582ddf4de95b4b963cf164d771cddccf3b7f1c09 | 24f2dbc1bbd234e7bb8aa802578a3a5ff72eb7a2 | refs/heads/master | 2020-04-17T00:54:06.566075 | 2019-01-20T13:38:43 | 2019-01-20T13:38:43 | 166,066,992 | 0 | 0 | null | 2019-01-16T15:51:16 | 2019-01-16T15:51:15 | null | UTF-8 | C++ | false | false | 1,575 | hh | /*******************************************************************************
* Copyright 2015 Thomson Reuters
*
* 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.apac... | [
"francisco.estevezgarcia@thomsonreuters.com"
] | francisco.estevezgarcia@thomsonreuters.com |
2ba9377e59ebdd89cab1f260943d645da2a72e9d | f52bf7316736f9fb00cff50528e951e0df89fe64 | /Platform/vendor/samsung/common/packages/apps/SBrowser/src/content/browser/browser_plugin/browser_plugin_host_browsertest.cc | 26b783c135baecdb2f894614040fb0cb9c7de82b | [
"BSD-3-Clause"
] | permissive | git2u/sm-t530_KK_Opensource | bcc789ea3c855e3c1e7471fc99a11fd460b9d311 | 925e57f1f612b31ea34c70f87bc523e7a7d53c05 | refs/heads/master | 2021-01-19T21:32:06.678681 | 2014-11-21T23:09:45 | 2014-11-21T23:09:45 | 48,746,810 | 0 | 1 | null | 2015-12-29T12:35:13 | 2015-12-29T12:35:13 | null | UTF-8 | C++ | false | false | 58,698 | cc | // Copyright (c) 2012 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/command_line.h"
#include "base/memory/singleton.h"
#include "base/run_loop.h"
#include "base/string_util.h"
#include "base/strings/stri... | [
"digixp2006@gmail.com"
] | digixp2006@gmail.com |
7c7bb054544672b1af9179d3b01856e47cbe3d14 | 708411bb427239c8bc33bcd019d1c99c60adc572 | /Duel/gen/template/Type.hpp | ae20a99e136bcc9f3ab66b0f7c1316e3f0088154 | [] | no_license | TNFSH-Programming-Contest/2019NHSPC-TNFSH-Final | 6386a67001696aa027b8e38b3519169ced4a9cd7 | 7c0677cb8193f441c3913d7b30c4b1a1ae014697 | refs/heads/master | 2022-09-30T17:40:15.530620 | 2020-01-30T13:35:51 | 2020-01-30T13:35:51 | 211,501,295 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31 | hpp | struct QUERY {
int l,r;
};
| [
"noreply@github.com"
] | noreply@github.com |
4984b1e4213c43afe6590d1482c9390e4bc6aaba | 39a1bd091b84a0e3a2062b5759decb76bc59ed83 | /996B/996B.cpp | 156df383b3eba26d6a6b89f162636c4afbe10bcb | [] | no_license | kunnapatt/Competitive | 15801e1db97d56890a57d0e9417614dd8d6f7184 | 0107fd77d8b3a86e163632667bf729384c176f92 | refs/heads/master | 2022-01-06T18:37:56.391755 | 2019-05-19T17:09:30 | 2019-05-19T17:09:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 517 | cpp | #include <bits/stdc++.h>
using namespace std ;
#define FOR(i, a, b) for(int i = a ; i < b ; i++)
#define vi vector<int>
#define vii vector<long>
//#define long long long
int main(){
int n ;
while ( cin >> n ){
vi a(n+1) ;
FOR(i, 0, n){
cin >> a[i] ;
}
for(int i = 0... | [
"folk_qq@hotmail.com"
] | folk_qq@hotmail.com |
d0595b6090c6f04b20e18e20a39a08316eed58e2 | 1847c33753e6d7b060c53c9b9e9653a5b2b6e686 | /MIST_LFR_1st_round_interchange/MIST_LFR_1st_round_interchange.ino | 3eb9ff54b4fed51faab5326249a90b220ff893bb | [] | no_license | Akash-Rayhan/RadioActive | f89b67713de6a180b4d210ff3b73ec1bba8207bb | 85d15a984258bac595e0c2572ed71c4ca67b3938 | refs/heads/master | 2020-05-04T15:31:37.815565 | 2019-04-04T18:47:02 | 2019-04-04T18:47:02 | 179,244,494 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,435 | ino | /*
P controll using Weighted Average
*/
//#include <ResponsiveAnalogRead.h>
#define Kp 140
#define Kd 10
#define Ki 0
//PID error segment
float prevError = 0;
float error = 0;
float tError = 0;
float dError = 0;
//Sensor segment
int sensorData[7] = {0, 0, 0, 0, 0, 0, 0};
int midSensorValue[7] = {0, 0, 0, 0, 0, 0,... | [
"akash18rayhan@gmail.com"
] | akash18rayhan@gmail.com |
e33f8fd18631568b5f9c008ced03dd2ed80d710d | 85b009be7fc1c31c98cd36220a43429c102b634a | /linkedlists/cycledetection_hashing.cpp | ad2862132d61200155add9d72216f40a9857a890 | [] | no_license | shikharkrdixit/cppstuff | 19e4233cc81b04805bc598131a4ee12366f43836 | a7206ef1845fd974bda80993f3cb80d9d7faf220 | refs/heads/main | 2023-08-02T04:51:21.634336 | 2021-09-29T17:13:42 | 2021-09-29T17:13:42 | 364,998,778 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 975 | cpp | #include <iostream>
#include <bits/stdc++.h>
#include <unordered_map>
using namespace std;
struct Node
{
int val;
struct Node* next;
};
bool detectLoop(struct Node* ptr)
{
unordered_map<Node*, bool> cycdet;
Node* temp = ptr;
while (temp != NULL) {
if (cycdet[temp] != false)
re... | [
"sdixit362@gmail.com"
] | sdixit362@gmail.com |
f590d664045573f13910c92854aa77db43cc5863 | f78f3069f33a3460bb79fc4fde50a0c97e70dc31 | /OpencvTest1/OpencvTest1/Cmpare.h | 744ca7cd46fb39d2980805a8f35dcf8b99d1798f | [] | no_license | xuehaolan/d-star-lite | da10928ffbfb90c09f068699ee0f0cad743207b8 | 00921f9cd6a0584c45584ccbff02c6a3d0a6816d | refs/heads/master | 2021-06-12T14:09:23.932460 | 2017-04-08T08:38:23 | 2017-04-08T08:38:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 193 | h | #pragma once
#include "Node.h"
class Cmpare
{
public:
Cmpare();
~Cmpare();
//int h(const CNode* nd1, const CNode* nd2) const;
bool operator()(const CNode* nd1, const CNode* nd2) const;
}; | [
"haolan@zju.edu.cn"
] | haolan@zju.edu.cn |
d2269d3c3b5ec8c2444279773d3d2570be95a1b2 | 9be246df43e02fba30ee2595c8cec14ac2b355d1 | /cl_dll/c_prop_vehicle.h | 66da9ac88234402389415efcd64991883a24e08b | [] | no_license | Clepoy3/LeakNet | 6bf4c5d5535b3824a350f32352f457d8be87d609 | 8866efcb9b0bf9290b80f7263e2ce2074302640a | refs/heads/master | 2020-05-30T04:53:22.193725 | 2019-04-12T16:06:26 | 2019-04-12T16:06:26 | 189,544,338 | 18 | 5 | null | 2019-05-31T06:59:39 | 2019-05-31T06:59:39 | null | WINDOWS-1252 | C++ | false | false | 3,045 | h | //========= Copyright © 1996-2004, Valve LLC, All rights reserved. ============
//
// Purpose:
//
//=============================================================================
#ifndef C_PROP_VEHICLE_H
#define C_PROP_VEHICLE_H
#pragma once
#include "IClientVehicle.h"
class C_PropVehicleDriveable : publ... | [
"uavxp29@gmail.com"
] | uavxp29@gmail.com |
9de5e6bcf175ba57fc3559f626bfbc26f48d8972 | 9ead30376893877e9d7747073462b86c7c5fdb5b | /libs/QRadHw/rawio.cpp | c88d40e5d0e4a9286462346c016f085a101d0524 | [] | no_license | MarcoBueno1/qrad | 3633398fd333a232e36a603dc471f6f1d122a1af | 9215ef47e065345deb92b2139489092aa6ff94e2 | refs/heads/master | 2020-04-08T16:58:27.383242 | 2019-07-19T19:40:28 | 2019-07-19T19:40:28 | 159,544,545 | 0 | 0 | null | null | null | null | ISO-8859-15 | C++ | false | false | 19,363 | cpp | /* win32/rawio.c - ioctl() emulation module for hdparm for Windows */
/* - by Christian Franke (C) 2006-7 -- freely distributable */
#define RAWIO_INTERNAL
#include "rawio.h"
#include "fs.h"
#include "hdreg.h"
#include <stdio.h>
#include <stddef.h> // offsetof()
#include <string.h>
#... | [
"root@debian.marco"
] | root@debian.marco |
67956e9f66f52ab4aaf2db0b5fa7ccd657196fae | aa9d1768e645238a1ce67e35d76a088e4aaab9a8 | /C++_course/03处理数据/floatnum.cpp | 5e3ed617e33309066804e8110787ab97ad94006d | [] | no_license | f15534666671/Cplusplus_course_clion | f0f639f2607d9d12bf4c6d3d121e3c4a20400611 | fd3d0541e7321f0f90aed0137c0c818c64ce3ae1 | refs/heads/master | 2020-06-07T13:49:45.297835 | 2019-06-21T05:24:47 | 2019-06-21T05:24:47 | 193,036,043 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 521 | cpp | // floatnum.cpp -- floating-point types
#include <iostream>
int main()
{
using namespace std;
cout.setf(ios_base::fixed, ios_base::floatfield);
float tub = 10.0 / 3.0;
double mint = 10.0 / 3.0;
const float million = 1.0e6;
cout << "tub = " << tub;
cout << ", a million tubs = " << million * ... | [
"f15534666671@163.com"
] | f15534666671@163.com |
7eb1203103e44d335e1093bdc1fe51314b95df1f | 381e2b6c8608f50d76e886c63e721b672525da40 | /MSoC_Lab1_p1/MSoC_Lab1_p1/main.cpp | b1e45d521b71211414e7b966a7868285afb7398a | [] | no_license | alon21034/MSoC_Lab1 | e0a0baacf6ac1c93f5cfad7728ffb7b2132d11d8 | e3798354bf2135c5b077553a94038df1e86093b9 | refs/heads/master | 2020-06-12T20:55:53.832830 | 2013-03-26T03:05:50 | 2013-03-26T03:06:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 957 | cpp |
#include <systemc.h>
#include "Counter.h"
#include "Stimulus.h"
#include "Display.h"
int sc_main( int argc, char** argv ) {
/*- Signal Declaration -*/
sc_time SIM_TIME( 500, SC_NS );
sc_clock clk ("clk", 10 );
sc_signal<int> Value;
sc_signal<bool> Enable;
sc_sign... | [
"vince@cardinalblue.com"
] | vince@cardinalblue.com |
ba552a65b2dcb402124a364f609a24d9b3a2eb27 | bacb3adfc1af9d6c8202f7b93c16515f6d2836ae | /Post_power.ino | a6fc66afd8e7eb7659bb87a7390330821a75e4dd | [] | no_license | whatnick/IoTaWatt | b5a585ae3fe13f1272bec39e23183621a4fe51d1 | eeb56becd6dcb041284b9c272d108e7c791b8759 | refs/heads/master | 2021-01-01T05:47:34.528091 | 2016-12-30T07:49:39 | 2016-12-30T07:49:39 | 77,670,703 | 2 | 1 | null | 2016-12-30T07:51:58 | 2016-12-30T07:51:57 | null | UTF-8 | C++ | false | false | 2,405 | ino | void post_power()
{
String req = "GET /input/post.json?"
"&node=";
req += String(node);
// If Serial link is active, log power to it.
if(Serial)
{
Serial.print(", VRMS=");
Serial.print(Vrms,1);
Serial.print("(");
Serial.print(offset[0]);
Serial.print(",");
Serial.pri... | [
"noreply@github.com"
] | noreply@github.com |
27731ea7a938f9c13cd933ddc8904e48bae0f452 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/git/gumtree/git_repos_function_4521_git-2.14.1.cpp | 7b49aa9e77164b79d38f2d9b3e685fbf2531d179 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 105 | cpp | int hashmap_bucket(const struct hashmap *map, unsigned int hash)
{
return hash & (map->tablesize - 1);
} | [
"993273596@qq.com"
] | 993273596@qq.com |
a44779aef554963785f5d0ab028e94a98e40addf | 6ddaa91f8509f2223cea0d4d783c4c165b7a2dc8 | /MorphDSL/ANTLRCompiler/MorphDSL3Lexer.hpp | 93da2b0307dd97f3aeb34a4bed06af7fe1b05f7c | [] | no_license | Unsttopabull/MorphDSL | 4fae568ea1be902a0a9f0f0456663a1a9bbac87c | 364610f3528e90cf6fb34eb3b1f579cb03453bc6 | refs/heads/master | 2021-01-16T21:00:54.148003 | 2015-07-13T14:39:01 | 2015-07-13T14:41:25 | 31,203,899 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,463 | hpp | /** \file
* This C++ header file was generated by $ANTLR version 3.4.1-SNAPSHOT
*
* - From the grammar source file : T.g
* - On : 2012-09-17 18:17:43
* - for the lexer : MorphDSL3LexerLexer
*
* Editing it, at least manually, is not wise.
*
* C++ language... | [
"martinkraner@outlook.com"
] | martinkraner@outlook.com |
3dc4d9ec973f8419b7b782ac466f2dd399bc6520 | 254eb66260f276f6c6a303ea6cb26148b33b0dac | /Wrapper/Mmaths/Mvec2.h | 31dcd921d671cb75f1e0e9cf50e28bbb30c13cca | [] | no_license | L4ZZA/UnmanagedCodeWrapper | 4624c5dbef9580afdccaea3b306396ce00916f14 | 0f92ba38989c2d4b266164a4bdc9fcfbd441bd5a | refs/heads/master | 2021-09-24T08:04:44.751472 | 2018-10-05T10:23:32 | 2018-10-05T10:23:32 | 124,081,227 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,658 | h | #pragma once
#include "../ManagedObject.h"
#include "Core.h"
using namespace System;
namespace CLIWrapper
{
// See this docs
// https://docs.microsoft.com/en-us/cpp/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp
public ref class Vec2 : public ManagedObject<core::maths::vec2>
... | [
"pietro.lazz@gmail.com"
] | pietro.lazz@gmail.com |
2fe50daccb1b88bee48d9ee61de2e0a231463f57 | 18356da162612a99e0534e2ed72b023fbdb0003a | /448-find-all-numbers-disappeared-in-an-array-[easy]/solution.cpp | 5bceb19ebabcec88c086ac9f09cbe01521f1be1c | [] | no_license | sora-k/coding-problems | 217c84c0b3387c949ce5b39a6be806c835dba30f | 819205d090da3b2ebd163c3367bf512bfe76219b | refs/heads/master | 2021-01-20T14:28:33.251665 | 2017-05-08T09:59:45 | 2017-05-08T09:59:45 | 68,570,388 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,493 | cpp |
//448. Find All Numbers Disappeared in an Array
// started 4/6/17 8:40AM - 8:48AM
// 9:00AM - 9:24AM
// 9:34AM - 9:54AM
/*
Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.
Find all the elements of [1, n] inclusive tha... | [
"sora-k@users.noreply.github.com"
] | sora-k@users.noreply.github.com |
cc2c662dcf636e55cf1dfba6194ef7dbe2a686b6 | bfd8933c9605067202e1fbe4dbd38e9be7d319eb | /Lib/Chip/CM4/Nordic/nrf52/QDEC.hpp | ddb53d2f910bbdcf49b0e10667f177c125542217 | [
"Apache-2.0"
] | permissive | gitter-badger/Kvasir-1 | 91968c6c2bfae38a33e08fafb87de399e450a13c | a9ea942f54b764e27dbab9c74e5f0f97390a778e | refs/heads/master | 2020-12-24T18:23:36.275985 | 2016-02-24T22:06:57 | 2016-02-24T22:06:57 | 52,541,357 | 0 | 0 | null | 2016-02-25T16:54:18 | 2016-02-25T16:54:18 | null | UTF-8 | C++ | false | false | 22,335 | hpp | #pragma once
#include "Register/Utility.hpp"
namespace Kvasir {
//Quadrature Decoder
namespace NonetasksStart{ ///<Task starting the quadrature decoder
using Addr = Register::Address<0x40012000,0xffffffff,0,unsigned>;
}
namespace NonetasksStop{ ///<Task stopping the quadrature decoder
... | [
"holmes.odin@gmail.com"
] | holmes.odin@gmail.com |
9b10d649a3732efab5064baba852239776663a86 | 11ef4bbb8086ba3b9678a2037d0c28baaf8c010e | /Source Code/server/binaries/chromium/gen/headless/public/devtools/internal/type_conversions_page.h | e535f9b5905fa5898e6d3a4717bed4371fdbd59a | [] | no_license | lineCode/wasmview.github.io | 8f845ec6ba8a1ec85272d734efc80d2416a6e15b | eac4c69ea1cf0e9af9da5a500219236470541f9b | refs/heads/master | 2020-09-22T21:05:53.766548 | 2019-08-24T05:34:04 | 2019-08-24T05:34:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 72,947 | h | // This file is generated
// 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.
#ifndef HEADLESS_PUBLIC_DEVTOOLS_INTERNAL_TYPE_CONVERSIONS_PAGE_H_
#define HEADLESS_PUBLIC_DEVTOOLS_INTERNAL_TYPE_CONVERSIONS_P... | [
"wasmview@gmail.com"
] | wasmview@gmail.com |
6dcbd1617a557ecbc7ee66be2f4c78888ff79d31 | 792ecce420ec443469140f4b2f48efc1a94367b0 | /src/rpcmining.cpp | 1295ce09b6a5f9db9dc00b8992930950cc0f6ec5 | [
"MIT"
] | permissive | Cleverhash/BOOM | 024bfcf18ec3541d75770b37acb226e7792af029 | f1739f952aae4c87fb68842812fb8c5c694077d9 | refs/heads/master | 2021-01-04T02:36:34.884883 | 2015-05-07T22:29:24 | 2015-05-07T22:29:24 | 26,034,888 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 19,465 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "main.h"
#include "db.h"
#include "txdb.h"
#include "init.h"
#include "miner.h... | [
"admin@cleverhash.com"
] | admin@cleverhash.com |
d708fce036513f913c091d1c946f28bb328ec31d | 0f8ee2a862862dfe3a17c924ff45aac30ee71015 | /model/CM300Joystick.h | dd435fddeb2e6082e96838e6b1e1c3b464c2f7a2 | [] | no_license | ROBOTIS-GIT/codal-cm300 | 309c38e2172ff1ada12536230bd1665c582d3d07 | 4c0e9fed82d94feb74d18e43716648d100604b47 | refs/heads/master | 2020-12-30T04:00:10.248305 | 2020-04-08T08:01:41 | 2020-04-08T08:01:41 | 238,852,891 | 0 | 0 | null | 2020-05-08T05:05:35 | 2020-02-07T05:46:24 | C++ | UTF-8 | C++ | false | false | 1,697 | h | /*******************************************************************************
* Copyright 2016 ROBOTIS CO., LTD.
*
* 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.o... | [
"ldh@robotis.com"
] | ldh@robotis.com |
095afd99c63ee26b4f4c7961df9ef04059ceb633 | 3af9e8da5915d27084b04e1ca8582b2b15b213b0 | /Week13/simpleHandShaking/SerialCommunication.ino | bb1ed23f5a8a1df1865dbb4d8b9b2a8bd9be0075 | [] | no_license | entertainmenttechnology/Dols-MTEC-2280-Spring2019 | 65116423e617ad841c9859aa2807c3d01913edcf | f67d8895eb203ae57ee5387122887074e8fec0d7 | refs/heads/master | 2020-04-18T23:20:23.326169 | 2019-05-30T14:30:27 | 2019-05-30T14:30:27 | 167,818,841 | 1 | 19 | null | 2019-05-28T19:39:16 | 2019-01-27T14:36:40 | Processing | UTF-8 | C++ | false | false | 892 | ino | char val; // Data received from the serial port
int ledPin = 13; // Set the pin to digital I/O 13
boolean ledState = LOW; //to toggle our LED
void setup()
{
pinMode(ledPin, OUTPUT); // Set pin as OUTPUT
//initialize serial communications at a 9600 baud rate
Serial.begin(9600);
establishContact(); // send a b... | [
"noreply@github.com"
] | noreply@github.com |
1d54ebdc1ab3731116d8130d117bdf8c51c7d95f | 0ffd0c702dd5df0bbb0ce50ed01ee47accef6bfc | /AREA 51/codeINO/RTC_DS1307_EEPROM/RTC_DS1307_EEPROM.ino | e08beb81511604abb56f20d598da9244d36f3fca | [
"MIT"
] | permissive | higo-ricardo/ARDUINO | 6831e49578bae38594a7fa806eb10e5fdc3f9eb7 | d0f2b3edf0d17bd5bdc8961925ac2828e5efc257 | refs/heads/master | 2023-04-13T11:57:29.475345 | 2021-05-05T03:03:50 | 2021-05-05T03:03:50 | 256,534,220 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,190 | ino | /* MÓDULO RTC COM DS1307 e EEPROM 24C32:
Como o módulo RTC utiliza o barramento I2C para se comunicar
com o Arduino então deve-se conectar o módulo ao Arduino ligando-se
o pino SCL do módulo na porta analógica A5 do Arduino, o pino SDA
na porta analógica A4 do Arduino, o pino positivo VCC no 5V e o
pin... | [
"hig0@icloud.com"
] | hig0@icloud.com |
d2453925361057f2aaf591238cb81016e990816e | df81c7fafcacc916d0377345ab947fe606ac7027 | /hw3d/Mouse.cpp | 37a12827214074b440076447ae8847ee732f34ce | [] | no_license | qfeuilla/CustomGameEngine | 6e15120e8355fabb3f81ee0b20cfcc18cf594e86 | 48ac70fe7a2a3ca835c6fea1438e1d7c08d676f9 | refs/heads/master | 2022-11-29T10:33:31.086111 | 2020-08-09T12:51:26 | 2020-08-09T12:51:26 | 277,605,404 | 0 | 0 | null | 2020-08-09T12:51:28 | 2020-07-06T17:23:52 | null | UTF-8 | C++ | false | false | 4,362 | cpp | /******************************************************************************************
* Chili DirectX Framework Version 16.07.20 *
* Mouse.cpp *
* Copyright 2016 PlanetChili <http://www.planetchili.net> *
* *
* This file is part of The Chili D... | [
"quentin.feuillade33@gmail.com"
] | quentin.feuillade33@gmail.com |
46835e81117f27701300e1d3d82c9601b0e5ce2b | 1ad2ac811c607f9b2821073843352e3e250af683 | /src/myInputGenJetsParticleSelector.cc | 63472610533b3b4bfe26db14a93c3ccabef89927 | [
"Apache-2.0"
] | permissive | BristolTopGroup/NTupleProduction | 6d7d1918ddb0ff9f79f335ed7d6b0a371bfaa471 | 1319183de0ce00749c8f5841fa925479b9024b48 | refs/heads/master | 2020-04-04T06:22:06.601999 | 2017-09-20T08:50:03 | 2017-09-20T08:50:03 | 6,820,183 | 1 | 1 | null | 2017-10-19T11:10:41 | 2012-11-22T23:33:39 | Python | UTF-8 | C++ | false | false | 11,083 | cc | /* \class GenJetInputParticleSelector
*
* Selects particles that are used as input for the GenJet collection.
* Logic: select all stable particles, except for particles specified in
* the config file that come from
* W,Z and H decays, and except for a special list, which can be used for
* unvisible BSM-particles.
... | [
"philip.hugh.symonds@cern.ch"
] | philip.hugh.symonds@cern.ch |
af44a8d9c22c6f95009cf67ac7dd71b40ba03111 | b518d7b94bf1e14ab580da417b133e59c8664e79 | /string algo/new.cpp | 4e81cd14feb041bb6e8aaffcf7e4fc7aee6a5493 | [] | no_license | jitunmohajan/competitive-programming | 919c7b26af01c30b2398c1284f95f40fafd50061 | 3cbaa761f00cd311989cfcc4aa8422d481e29435 | refs/heads/master | 2023-02-24T16:36:02.150414 | 2021-01-30T19:09:26 | 2021-01-30T19:09:26 | 170,622,999 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 96 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int a;
cin>>a;
cout<<a;
return 0;
} | [
"jitunmohajan@gmail.com"
] | jitunmohajan@gmail.com |
6bb477d7ce34c1a2106931c3172295b015a2cd9f | 88ae8695987ada722184307301e221e1ba3cc2fa | /third_party/blink/renderer/core/animation/scroll_timeline_util.h | 2a85f0138af76b4b5b6d7c4fb7310d88bc1bb634 | [
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause",
"Apache-2.0",
"MIT"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 1,836 | h | // Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_ANIMATION_SCROLL_TIMELINE_UTIL_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_ANIMATION_SCROLL_TIMELINE_UTIL_H_
#include "cc/animation/scro... | [
"jengelh@inai.de"
] | jengelh@inai.de |
c79f15160604fa40379247a670ed15ec0b92751a | 7f1baee32ecbe8cfe81ab3b077f9cb8af98888e7 | /hashing/src/MailingAddress.cpp | ea314ef12af16a5171858e56672ed2a2ba283abf | [] | no_license | ypwk/oscarch | f3b461267babf6e2234d6f9a3b17fdbb66b29c0c | b7587617d3ae721ac7f3efc958ca8a606e7c1080 | refs/heads/main | 2023-04-10T23:33:32.589941 | 2021-04-18T19:05:22 | 2021-04-18T19:05:22 | 359,638,501 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 706 | cpp |
#include "MailingAddress.h"
MailingAddress::MailingAddress(string street, string city, string state, int zipCode) {
this->street = std::move(street);
this->city = std::move(city);
this->state = std::move(state);
this->zipCode = zipCode;
}
bool MailingAddress::equals(const MailingAddress &a) {
if... | [
"ojcch1@gmail.com"
] | ojcch1@gmail.com |
c2b8af72e6a645655f75ca2143f49140750c8982 | 745d39cad6b9e11506d424f008370b5dcb454c45 | /BOJ/6000/6064.cpp | 7c96ab0985675375a2204db0b7e80b635b56435d | [] | no_license | nsj6646/PS | 0191a36afa0c04451d704d8120dc25f336988a17 | d53c111a053b159a0fb584ff5aafc18556c54a1c | refs/heads/master | 2020-04-28T09:18:43.333045 | 2019-06-19T07:19:03 | 2019-06-19T07:19:03 | 175,162,727 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 821 | cpp | #include <cstdio>
int gcd(int x, int y) {
return y ? gcd(y, x%y) : x;
}
int lcm(int x, int y) {
return x * y / gcd(x, y);
}
int main()
{
int t;
scanf("%d", &t);
while (t--) {
int m, n, x, y;
scanf("%d %d %d %d", &m, &n, &x, &y);
int l = lcm(m, n);
int ans = -1;
for (int i = 0; i < l / m; i++) {
if ((... | [
"nsj6646@gmail.com"
] | nsj6646@gmail.com |
1bb447106f346868c32d17cedbc3484d4ad98e67 | fa9877968535297eea3ce8157444f73dcfb6be16 | /C++/Volume001/AOJ-0165-20121006(素数 範囲内の素数の数 配列確保注意1172のほうがより簡単).cpp | a3033de063927191f9d048f7ffda954b1924430c | [] | no_license | kyos1704/aoj | 3681fe9c83ea13bb16f69ef3365819406a4becbb | e5358370668646ee263ba8570b59777f772feb1f | refs/heads/master | 2021-01-22T01:05:42.612286 | 2015-02-17T10:13:42 | 2015-02-17T10:13:42 | 9,950,885 | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 1,057 | cpp | #include<iostream>
#include <algorithm>
#include<functional>//greater‚ĚŽg—p
using namespace std;
#define MAX_LIST 999983+100
#define MP 999983
int main(){
bool prime[MAX_LIST];
for(int i=0;i<MAX_LIST;i++){
prime[i]=1;
}
prime[0]=prime[1]=0;
for(int i=0;i*i<MAX_LIST;i++){
if(prime[i]==1){
for... | [
"kyos.kyos1704@gmail.com"
] | kyos.kyos1704@gmail.com |
b4a660e97dcd39a95302debe66fdb0e82c1be8c1 | 2b932c4047f1898006c81815f78666d06403c4dc | /spisakpasaporasi.cpp | 160a1a581b224e67982dc7b2ccb8f73422746ce7 | [] | no_license | ZavrenMaturskiEIT/Program2Mini | 9e6ce1446ae610c8ffbc84ab116c2d1e3dcacdad | 75d1288f524f2480bc737854d5078403b1a14509 | refs/heads/master | 2020-03-19T06:35:24.577767 | 2018-06-04T14:22:54 | 2018-06-04T14:22:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,382 | cpp | #include "spisakpasaporasi.h"
#include "ui_spisakpasaporasi.h"
#include "konekcija.h"
#include <QMessageBox>
SpisakPasaPoRasi::SpisakPasaPoRasi(QWidget *parent) :
QDialog(parent),
ui(new Ui::SpisakPasaPoRasi)
{
ui->setupUi(this);
Konekcija baza;
baza.dbOpen();
QSqlQuery upit;
... | [
"noreply@github.com"
] | noreply@github.com |
77645b80743992e562fa4288bc7a84c1b9008bbe | 33035c05aad9bca0b0cefd67529bdd70399a9e04 | /src/boost_fusion_include_as_deque.hpp | 13314b0f01b9108e436dfbb41471005073f2d976 | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | elvisbugs/BoostForArduino | 7e2427ded5fd030231918524f6a91554085a8e64 | b8c912bf671868e2182aa703ed34076c59acf474 | refs/heads/master | 2023-03-25T13:11:58.527671 | 2021-03-27T02:37:29 | 2021-03-27T02:37:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 45 | hpp | #include <boost/fusion/include/as_deque.hpp>
| [
"k@kekyo.net"
] | k@kekyo.net |
7cd7fbe6ca9761b4f5430af899f1f2ca5086b06c | 38d49f62684bc307b9e6f12f1eecab3fa0ff48ea | /Part4_Concurrency/01_Introduction_and_Running_Threads/04_Running_Multiple_Threads/example_1.cpp | ed5b20524f7712e583fff269d2ea1a23e27826f1 | [
"MIT"
] | permissive | qqsj789/Cpp_Practice | be5af902b9d72d04f11055bb6b4b295ee988ec16 | 8a1b628fd9f8c6fe94d6e9bea2126eb773d1b1ce | refs/heads/main | 2023-07-17T20:43:31.272384 | 2021-08-18T20:49:06 | 2021-08-18T20:49:06 | 397,718,192 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 799 | cpp | #include <iostream>
#include <thread>
#include <vector>
void printHello() {
// perform work
std::cout << "Hello from Worker thread #"
<< std::this_thread::get_id()
<< std::endl;
}
int main() {
// create threads
std::vector<std::thread> threads;
for (size_t i = 0; i < 5; ++i) {
... | [
"qqsj789@gmail.com"
] | qqsj789@gmail.com |
9f0aa53291d30c19908c327449623eee69667491 | 497c6f4c3f5cdb0573a5d892b7a2e2464f5f5b8e | /BigFactorial.cpp | bc00b6e2fbb15646523586f7f67d7bc76ee9a462 | [] | no_license | Sanyam96/Programming | cde481359f361d3c055285b5b772525a752be256 | 507cc12fc124612764764f888720643ff4d76a88 | refs/heads/master | 2020-12-02T16:38:22.499217 | 2017-10-26T18:04:24 | 2017-10-26T18:04:24 | 96,563,328 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 763 | cpp | // Program to calculate factorial of bigger numbers
/*
Factorial of 30 is not calculated by normal method or by Recursion
But by using this method we can solve 30! or even higer numbers factorial
*/
#include <bits/stdc++.h>
#define MAX 500
using namespace std;
int main(int argc, char const *argv[]){
int a[MAX]... | [
"sanyam.bvcoe96@gmail.com"
] | sanyam.bvcoe96@gmail.com |
765ff02e236283d1d3e23b5277d7a5112fdee93e | 7d6a0ba11d7489de73fb171a92ed06c32e8891ec | /ui/modifyinfopage.h | c23352e3917a338313edfdf545da7d028e38279e | [] | no_license | LXZNProject/disnetPackage | a99a0a5c3be5d9f5716b4629503179406aeaa8c5 | 983fc8b9516e2ce7f2d8c2c3d99ee22cc8d51447 | refs/heads/master | 2021-09-08T07:14:15.628142 | 2018-03-08T08:43:44 | 2018-03-08T08:43:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 859 | h | #ifndef MODIFYINFOPAGE_H
#define MODIFYINFOPAGE_H
#include <QWidget>
#include "msgbox.h"
#include "keyboard.h"
namespace Ui {
class modifyINfoPage;
}
class modifyINfoPage : public QWidget
{
Q_OBJECT
public:
explicit modifyINfoPage(QWidget *parent = 0);
~modifyINfoPage();
void timeStart();
p... | [
"jan.zhang@hansong-china.com"
] | jan.zhang@hansong-china.com |
17eb8e21f1458e739108d606c7cdf8d9273304a5 | ff16f06c73369efebd5b228241f7145a0496df65 | /XFactory.h | f10bbe8391d43d5e09cca520fe71d6a2fe5a9297 | [] | no_license | xming4321/asptools | 55590c76c4853e83de202d7ad7e2c5a80ba5ff7d | 74656c3f7133e9fb3c53dc1efa3975fa9c0f6039 | refs/heads/master | 2021-01-01T04:55:45.179816 | 2016-04-12T16:54:29 | 2016-04-12T16:54:29 | 56,076,799 | 9 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,692 | h | // XFactory.h : Declaration of the CXFactory
#pragma once
#include "resource.h" // main symbols
#include "asptools.h"
#if defined(_WIN32_WCE) && !defined(_CE_DCOM) && !defined(_CE_ALLOW_SINGLE_THREADED_OBJECTS_IN_MTA)
#error "Single-threaded COM objects are not properly supported on Windows CE platfo... | [
"xming4321@163.com"
] | xming4321@163.com |
794ea7f8482c324df0af67fb768a5693a9e3650c | f7bd0e605a80b57467f5c26917d7ba40d22de9ef | /include/map.hpp | 2832c1f264c38dbc36fad68a87160d85126e79f5 | [] | no_license | claudehenchoz/ia | 6b4fac1181916bc67f91cf52df0c2686282badbf | 1fadb3474b5abaa07252ec18f48dac379177eca8 | refs/heads/develop | 2020-12-25T23:47:55.066398 | 2017-11-05T10:52:53 | 2017-11-05T10:52:53 | 48,068,851 | 0 | 0 | null | 2015-12-15T21:02:45 | 2015-12-15T21:02:45 | null | UTF-8 | C++ | false | false | 2,505 | hpp | #ifndef MAP_HPP
#define MAP_HPP
#include <vector>
#include "colors.hpp"
#include "item_data.hpp"
#include "feature.hpp"
#include "config.hpp"
#include "actor_player.hpp"
#include "fov.hpp"
#include "io.hpp"
#include "game.hpp"
class Rigid;
class Mob;
struct Cell
{
Cell();
~Cell();
void reset();
bo... | [
"m.tornq@gmail.com"
] | m.tornq@gmail.com |
e62f979d9d98cdef29d8ff797cc829c0b2da2c64 | c619459c8ab6cb317c51716f5be0156714846813 | /test/common/test_intensity.cpp | 6843040fcedfeb0a47a42ea120f2e7d39f9ddfab | [
"BSD-3-Clause"
] | permissive | psoetens/pcl-svn | 127a48c5ab65068fb29070a25b70c2aa2a5cf294 | f9baf7fe7760053c9100696b0a3757ceef6b22f7 | refs/heads/master | 2021-01-20T13:47:50.488296 | 2012-08-26T21:25:42 | 2012-08-26T21:25:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,461 | cpp | /*
* Software License Agreement (BSD License)
*
* Point Cloud Library (PCL) - www.pointclouds.org
* Copyright (c) 2010-2012, Willow Garage, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditi... | [
"rusu@a9d63959-f2ad-4865-b262-bf0e56cfafb6"
] | rusu@a9d63959-f2ad-4865-b262-bf0e56cfafb6 |
33980a77c985869ef50acb1b86284ff377d7ad9f | bdec79a3d7940c1961d5a214a0eacdab8058ade7 | /Jutge-C3/P81104 FIPS.cpp | 7d66b6b5419cd07b55edb5b7c9de02fc659427a2 | [] | no_license | Angella3/Jutge.org-PRO1 | bf807c46bec78af91171b328ee653a357c318ffa | 7c8dde079df1d769eb688acbe6da102a68408cb4 | refs/heads/master | 2021-12-12T12:21:46.889144 | 2017-01-11T17:19:12 | 2017-01-11T17:19:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,281 | cpp | #include <iostream>
#include <vector>
using namespace std;
struct Subject {
string name; // Subject’s name
double mark; // Between 0 and 10, -1 shows NP
};
struct Student {
string name; // Student’s name
int idn; // Student’s IDN
vector<Subject> sub... | [
"rob.ariosa@hotmail.com"
] | rob.ariosa@hotmail.com |
ed41aa3ca29d36ed1de35df52951034d45bfb149 | f0924143f41ece9c7310c0e850c88121f16f7da0 | /src/test/sanity_tests.cpp | 63139ec8a3b6d9109ef9b54eb097d7d386d95fb7 | [
"MIT"
] | permissive | Mogoai/Franc | a8cb6c33b7f29ac475f785d7ecf895f1fa481da9 | f9e7c0ca447077c512add17cae557bf1d59e3d88 | refs/heads/master | 2020-05-04T15:02:47.497587 | 2019-04-23T09:58:37 | 2019-04-23T09:58:37 | 179,221,510 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 655 | cpp | // Copyright (c) 2012-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 <compat/sanity.h>
#include <key.h>
#include <test/test_franc.h>
#include <boost/test/unit_test.hpp>
BOOST_FIXTURE_... | [
"pagde@orange.fr"
] | pagde@orange.fr |
16526230bcff3de461a08291c2ec18e9409b9072 | 77a9682fb86b5f417615562063fca1eea6c6246c | /src/lib/random.cpp | 40501b8646ada15e29a2af9fc2d0253ee629863b | [] | no_license | seanigami/RDPSOVina | 9f64f858260aecdd5e8992a2e420942f45453336 | 3e17948904696fbb2679d6e467b321fef2bdf1ec | refs/heads/master | 2023-07-27T19:45:02.128838 | 2021-09-06T08:40:46 | 2021-09-06T08:40:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,013 | cpp | /*
Copyright (c) 2006-2010, The Scripps Research Institute
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 requir... | [
"noreply@github.com"
] | noreply@github.com |
04e83a4925d9da149e751c409bde0a13b975a16f | 4fa3ccc28769d384af2a1127eb2c19fc96432013 | /TeamProjectRPGgame/playAudioEvent.h | fdd4d763cbd754f74071f08e3fac2c3705d03494 | [] | no_license | klecior/TeamRPGgameProject | de6b2a3309d236dc8835ed102f82ed5274ba6235 | 9bbdba956b1c3d2844abe6b3b2ff09f3e5ff2455 | refs/heads/master | 2021-01-01T05:29:18.179348 | 2016-06-06T20:52:28 | 2016-06-06T20:52:28 | 57,945,213 | 0 | 0 | null | 2016-05-24T14:39:28 | 2016-05-03T06:04:21 | C | UTF-8 | C++ | false | false | 304 | h | #pragma once
#include "abstractEvent.h"
#include <string>
class playAudioEvent : public abstractEvent
{
public:
playAudioEvent(std::string path, bool music, bool playing);
virtual eventTypeId getEventType()const override { return playAudioMessage; }
std::string filePath;
bool isMusic, isPlaying;
}; | [
"klecior@gmail.com"
] | klecior@gmail.com |
50dfe0c1a5eab5e0893bc1948a49bf31002c81c5 | 9fcfa82b3f2415a467d99c05996991ec08533fce | /illumina/Classes/Door.h | ae896b8adb97227ab9724c1a2d1cb1e1ecb441b1 | [] | no_license | YoonI3in/Illumina | 040fa1dcb8c52ee3e783e30981da13708d02f03c | da55ec96cc3fdf077eea4d23b9709cc33a94350c | refs/heads/master | 2020-06-02T13:25:28.960835 | 2019-06-10T13:12:33 | 2019-06-10T13:12:33 | 191,168,748 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 214 | h | #pragma once
#include <cocos2d.h>
USING_NS_CC;
class Door :public Sprite
{
protected:
Sprite* door;
Vec2 door_Pos;
Rect door_Rect;
public:
CREATE_FUNC(Door);
virtual bool init();
Rect BoundingBox();
}; | [
"zmfflswj@naver.com"
] | zmfflswj@naver.com |
006138b1a019f94e334bcdc4aa4842bb9879d791 | cf16911bc92458e31c8accb95f2062dcdea75ff2 | /SoC-Validation/firmware/AV417/standalone_codecs/H264_Decoder/H264DecoderLib/H264SIMDDec/AuroraH264Deblock.cpp | 11d6f9d897b87d17c8300098451a7702e760f249 | [] | no_license | alexvatti/embedded-documents | b4f7a789f66dad592a655677788da4003df29082 | 5bcf34328a4f19c514c1bca12ad52dcc06e60f09 | refs/heads/master | 2023-08-14T20:23:00.180050 | 2019-11-29T10:48:05 | 2019-11-29T10:48:05 | 224,813,397 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 57,828 | cpp | /* CONFIDENTIAL AND PROPRIETARY INFORMATION */
/* Copyright 2006 ARC International (Unpublished) */
/* All Rights Reserved. */
/* */
/* This document, material and/or so... | [
"alexvatti@gmail.com"
] | alexvatti@gmail.com |
9a52eb7a90ff9a57ba09b406d4c98ae2dd950225 | 0f5bbe3f3d2db6b34737ff1e8ad111782938145d | /practise problems/hello world.cpp | 43dabe9a45b9d7adc3648c890803649693144089 | [] | no_license | pi-rate14/C-codes | 948452f8981e7aa38021b43057ea77a8019e69a6 | b95b434e9f0358a681083db3d143b86ecdab446e | refs/heads/master | 2022-11-23T08:31:25.413251 | 2022-11-10T10:34:41 | 2022-11-10T10:34:41 | 237,594,360 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 96 | cpp | #include<iostream>
using namespace :: std;
int main()
{
cout<<"hello world";
return 0;
}
| [
"apoorvasrivastava.14@gmail.com~"
] | apoorvasrivastava.14@gmail.com~ |
3748915740ac4e3d5e6aa1337f5259d3a3fb4753 | 018ec7ff27696a3a6b62a5a0e2bfde5876253a91 | /include/zapata/conf/load.h | 563c09a8ab2055e379ee40c6a25a252e0a8016b4 | [
"MIT",
"FSFAP"
] | permissive | gitter-badger/zapata | 4d9cee9c3a32cef68c59e8dcba18be262d4d9e5a | bef5ff76e381c936a671621cbda110bad1fcc49c | refs/heads/master | 2020-02-26T13:52:20.406651 | 2015-01-01T21:48:31 | 2015-01-01T21:48:31 | 29,194,003 | 0 | 0 | null | 2015-01-13T14:39:21 | 2015-01-13T14:39:21 | null | UTF-8 | C++ | false | false | 1,379 | h | /*
The MIT License (MIT)
Copyright (c) 2014 Pedro (n@zgul) Figueiredo <pedro.figueiredo@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitatio... | [
"pedro.figueiredo@gmail.com"
] | pedro.figueiredo@gmail.com |
6242bdd5372e2178d2cdd74c3a35d802e80d7982 | b9ccd51e6891e97c7c7e9b7d36d13a2a5ff068de | /tests/LuaStateTest.cpp | 5c1f37faed97e42223c4ea8ba90ba1cd6c951e43 | [
"MIT"
] | permissive | spoonless/luaosgviewer | c667f25f735a1aa0bf55665f8c69516d5a13e3ef | 9e255f059e3e24867c57df47c798db2b1ab1566a | refs/heads/master | 2020-05-19T15:34:11.516271 | 2014-05-14T17:51:03 | 2014-05-14T17:51:03 | 19,789,815 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,066 | cpp | #include <fstream>
#include "luaX.h"
#include "gtest/gtest.h"
#include "LuaState.h"
class SimpleLuaExtensionLib : public LuaExtensionLibrary
{
public:
virtual int open(LuaState &luaState)
{
libname = lua_tostring(luaState, -1);
return 0;
}
std::string libname;
};
class FailureLuaExten... | [
"dagaydevel@free.fr"
] | dagaydevel@free.fr |
f95c1645a73eece3fd4d209311bfa667b285556c | 0c619682d82e155047ff1c9adcdecf5e9c4cc17a | /ABC179/D/D.cpp | 5c210c885bef6abf1ca7afe68f232a9a6c80e338 | [] | no_license | kasataku777/atcoder_solution | 822a6638ec78079c35877fadc78f6fad24dd5252 | 8838eb10bf844ac3209f527d7b5ac213902352ec | refs/heads/master | 2023-01-23T06:36:59.810060 | 2020-12-03T02:02:40 | 2020-12-03T02:02:40 | 247,486,743 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 641 | cpp | #include<iostream>
#include<string>
#include<algorithm>
#include<vector>
using namespace std;
const int waru = 998244353;
int main() {
int n, k;
cin >> n >> k;
vector<long long> l(k), r(k);
for (int i = 0; i < k; i++) {
cin >> l[i] >> r[i];
}
vector<long long>dp(n + 1);
vector<long long>dpsum(n + 1);
... | [
"takumi.jihen@gmail.com"
] | takumi.jihen@gmail.com |
d4454f7c613ad372e2b631130b3021ef4772492c | 3e487bb102d72aac2b7edf0ee4ef4300a0e41394 | /src/gaggled_main.cpp | 694456a12a095308616cd65ce8cd4d484972afda | [
"Apache-2.0"
] | permissive | 20c/gaggled | bab6802afa3eeb1d429d8dba68afc97b73175606 | 05b8a9c44e0040c068c0cb243d8c2d405c30c253 | refs/heads/master | 2021-01-14T19:30:08.510153 | 2014-10-13T04:34:50 | 2014-10-13T04:34:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,328 | cpp | // L I C E N S E #############################################################//
/*
* Copyright 2011 BigWells Technology (Zen-Fire)
*
* 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
... | [
"eastein@zenfire.com"
] | eastein@zenfire.com |
4a86cf8c45d6d64ffa925bf48c4742867fde63bc | b9c1098de9e26cedad92f6071b060dfeb790fbae | /src/module/players/tfm/tfc.cpp | defe0799f80b9fdc67ed5783b25c737397ae2ad6 | [] | no_license | vitamin-caig/zxtune | 2a6f38a941f3ba2548a0eb8310eb5c61bb934dbe | 9940f3f0b0b3b19e94a01cebf803d1a14ba028a1 | refs/heads/master | 2023-08-31T01:03:45.603265 | 2023-08-27T11:50:45 | 2023-08-27T11:51:26 | 13,986,319 | 138 | 13 | null | 2021-09-13T13:58:32 | 2013-10-30T12:51:01 | C++ | UTF-8 | C++ | false | false | 5,761 | cpp | /**
*
* @file
*
* @brief TurboFM Compiled chiptune factory implementation
*
* @author vitamin.caig@gmail.com
*
**/
// local includes
#include "module/players/tfm/tfc.h"
#include "module/players/tfm/tfm_base_stream.h"
// common includes
#include <iterator.h>
#include <make_ptr.h>
// library includes
#include <... | [
"vitamin.caig@gmail.com"
] | vitamin.caig@gmail.com |
6b5dcfcddf5e01ef0d34f382d5984b01054c4b4c | 227c2d1d0ab3dcba6e9cb011961ec21a0d265f35 | /Include/GUI/Item/CGUIItem.h | 391ab82ccd7a58567b7a112174affaaedf6efa02 | [] | no_license | X-Seti/IMGF | 5b2a79d52b56c6b28aa639c2b07f0823982704f5 | c4e8f450160c51ba7f5060bf8ddde9f92142619f | refs/heads/master | 2020-06-24T02:52:20.433533 | 2016-12-18T04:41:25 | 2016-12-18T04:41:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,375 | h | #ifndef CGUIItem_H
#define CGUIItem_H
#include "Type/Vector/CVector2i32.h"
#include "Type/Vector/CPoint2D.h"
#include "Type/Vector/CSize2D.h"
#include "Styles/CGUIStyleableEntity.h"
class CGUILayer;
class CWindow;
class CGUIItem : public CGUIStyleableEntity
{
public:
CGUIItem(void);
void unload(void) {}
... | [
"mexuk@hotmail.co.uk"
] | mexuk@hotmail.co.uk |
f871c64900bfac192b8974eca1aba743c5a9d762 | b6c6abd9ca237622143dedd712b8f48b1000dfb6 | /net/quic/test_tools/gtest_util.h | 76226109d751606ee67b6539e3572649f905186f | [
"BSD-3-Clause"
] | permissive | chadrockey/chromium | b4e68f5f9faa7bf03aae7cda72e80903ef88cddb | 434b5a0940e0c76d371ecd465a0d066824a69db8 | refs/heads/master | 2021-01-15T23:58:19.270969 | 2014-01-24T21:50:23 | 2014-01-24T21:50:23 | 16,219,343 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,280 | h | // 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.
//
// Testing utilities that extend gtest.
#ifndef NET_QUIC_TEST_TOOLS_GTEST_UTIL_H_
#define NET_QUIC_TEST_TOOLS_GTEST_UTIL_H_
#include "net/quic/test_to... | [
"rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98"
] | rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98 |
c0d274d8e391ccfd8719216f8ef7846558318331 | 53efe285c9fa8cff0b6402afda520b539f413365 | /Socket Programming Practice/BroadcastReceiver.cc | 7d395bff3da84d929dd874b5e2edc5973d90656b | [
"MIT"
] | permissive | mohitreddy1996/Parallel-Programming | df4f66bec48e0f8bb697450940b05d76ab28cec6 | 5c70aa2ce110859504b9fe68056e3d123d0b2f42 | refs/heads/master | 2020-05-23T09:09:57.260198 | 2017-05-04T18:08:19 | 2017-05-04T18:08:19 | 80,441,256 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,149 | cc | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#define MAXRECVSTRING 255
int main(int argc, char *argv[]){
int socket;
struct sockaddr_in broadcastAddr;
unsigned short broadcastPort;
char recvString[MAXRECVSTRING+1];
in... | [
"mohitreddy1996@gmail.com"
] | mohitreddy1996@gmail.com |
ebcc985afda9624639910eb083d08d7692e566e5 | 483428f23277dc3fd2fad6588de334fc9b8355d2 | /hpp/Win32/Release/Vcl.uTPLb_ComponentRegistration.hpp | 3378b3f7e55ecf7195a29bf630504b5f757d4276 | [] | no_license | gzwplato/LockBox3-1 | 7084932d329beaaa8169b94729c4b05c420ebe44 | 89e300b47f8c1393aefbec01ffb89ddf96306c55 | refs/heads/master | 2021-05-10T18:41:18.748523 | 2015-07-04T09:48:06 | 2015-07-04T09:48:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,534 | hpp | // CodeGear C++Builder
// Copyright (c) 1995, 2015 by Embarcadero Technologies, Inc.
// All rights reserved
// (DO NOT EDIT: machine generated header) 'Vcl.uTPLb_ComponentRegistration.pas' rev: 29.00 (Windows)
#ifndef Vcl_Utplb_componentregistrationHPP
#define Vcl_Utplb_componentregistrationHPP
#pragma del... | [
"roman.kassebaum@kdv-dt.de"
] | roman.kassebaum@kdv-dt.de |
720dd017f8540f78275fcb9317f9d1df3d2801f4 | 26055315da4fc1ccc3f99a6a927184fa9a8b9e5a | /Agent.cpp | 0e98d1e82deb1d550b3c0c7d481eef3c3f6088ba | [] | no_license | NUDTQI/PredatorPrey-MAXQ-BT | 4645ff98464d101fc49641474f6d401a4c1351c8 | ed98f1e5ac914f02fc22c0f89cdb341319612578 | refs/heads/master | 2021-01-02T09:29:53.527281 | 2017-08-03T10:44:48 | 2017-08-03T10:44:48 | 99,222,031 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,994 | cpp | #include "Agent.h"
#include "2d/C2DMatrix.h"
#include "2d/Geometry.h"
#include "SteeringBehaviors.h"
#include "2d/Transformations.h"
#include "GameWorld.h"
#include "misc/CellSpacePartition.h"
#include "misc/cgdi.h"
#include "SensorMemory.h"
#include "GameMap.h"
using std::vector;
using std::list;
//----------------... | [
"zhangqiy123@gmail.com"
] | zhangqiy123@gmail.com |
ad7d98814be01bc288a50483fb89f3afdbc9576b | 2b1b459706bbac83dad951426927b5798e1786fc | /zircon/system/ulib/concurrent/copy.cc | 50a6368dcb74fe4cfe8e8e639d0731768b30294b | [
"BSD-2-Clause",
"BSD-3-Clause",
"MIT"
] | permissive | gnoliyil/fuchsia | bc205e4b77417acd4513fd35d7f83abd3f43eb8d | bc81409a0527580432923c30fbbb44aba677b57d | refs/heads/main | 2022-12-12T11:53:01.714113 | 2022-01-08T17:01:14 | 2022-12-08T01:29:53 | 445,866,010 | 4 | 3 | BSD-2-Clause | 2022-10-11T05:44:30 | 2022-01-08T16:09:33 | C++ | UTF-8 | C++ | false | false | 6,809 | cc | // Copyright 2021 The Fuchsia 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 <lib/concurrent/copy.h>
#include <lib/stdcompat/atomic.h>
#include <zircon/assert.h>
namespace concurrent {
namespace internal {
template <typen... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
a53777a4cf33ff29f76a156b470d4295a54ace43 | 9c5eb516959ebd728a6c5c7c13ef00e3ac2d5c33 | /src/pscpu/YMatrix.h | d9b1596475cffb40aa868c7845394731ae0d04ef | [
"ISC",
"BSD-3-Clause"
] | permissive | shufengdong/c-algorithms | 63e6fdb7f7817ba08f0e48411b5cb5ca358e1e71 | dce643a3c8cdf101fb971244e39620fbca784216 | refs/heads/master | 2020-12-26T21:35:49.732935 | 2016-10-07T06:10:46 | 2016-10-07T06:10:46 | 35,422,620 | 0 | 1 | null | 2015-05-11T12:32:44 | 2015-05-11T12:32:44 | null | UTF-8 | C++ | false | false | 675 | h |
#ifndef __YMatrix_H__
#define __YMatrix_H__
#include"IEEEDataIsland.hpp"
#include"SparseMatrix.h"
using namespace std;
namespace cpscpu {
class YMatrix {
public:
YMatrix();
~YMatrix() {
freeSpace();
};
SparseMatrix admittance[2]; // G:admittance[0]; B:admittance[1];
int * lineFrom;
int * line... | [
"dongshufeng@zju.edu.cn"
] | dongshufeng@zju.edu.cn |
ba0e7495f30257f530afaf052cf7e1e6f593d706 | 9d74c3758df140202e49885062037a7e4076c5cf | /CMSCpp2.1/src/gui/Unit3.h | 8411f2083831e7295323ce5e440f57677d35ac69 | [] | no_license | skyforcetw/mygoodjob | 4c3a787b651d8ea181b843848f829facf051fbfe | fcfd34203825282e4adaac5aff7396d06775ed15 | refs/heads/master | 2016-09-06T07:52:18.962274 | 2015-07-21T16:50:17 | 2015-07-21T16:50:17 | 32,502,731 | 0 | 0 | null | null | null | null | BIG5 | C++ | false | false | 2,032 | h | //---------------------------------------------------------------------------
#ifndef Unit3H
#define Unit3H
//---------------------------------------------------------------------------
//C系統文件
//C++系統文件
//其他庫頭文件
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>... | [
"skyforce@1153854a-e0ba-11de-81d3-db62269da9c1"
] | skyforce@1153854a-e0ba-11de-81d3-db62269da9c1 |
7069f39b2128eccb36901af5c79fade22b7a84c8 | 94fc5fdb1286c831f19c376829671aa695281365 | /plugins/protein/src/Protein.cpp | 0d5c112befaad1213751fad4a33af652489c198e | [] | no_license | PhilippGruber/megamol | 08c483d3df7e6ae4931cbeafb689a9dacefe7887 | 15b17e200b8e7d4f9da0b7143e08327936233b97 | refs/heads/master | 2021-07-11T08:22:50.011350 | 2017-10-06T11:48:14 | 2017-10-06T11:48:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,164 | cpp | /*
* Protein.cpp
*
* Copyright (C) 2009 by VISUS (Universitaet Stuttgart)
* Alle Rechte vorbehalten.
*/
#include "stdafx.h"
#include "protein/Protein.h"
#include "mmcore/api/MegaMolCore.std.h"
// views
#include "View3DSpaceMouse.h"
#include "View3DMouse.h"
// jobs
#include "PDBWriter.h"
#include "VTIWriter.h"
... | [
"guido.reina@informatik.uni-stuttgart.de"
] | guido.reina@informatik.uni-stuttgart.de |
4295b7bd45c834cbf0b98c322a81a5b627b18c60 | 6e87882e55d08fe94fc6b85c1f5b062bd149f64e | /src/test/cpp/RefTo.hpp | 9cef50a1f0a84f8d4828bf2c792e7093ba83c902 | [] | no_license | jvff/mestrado-implementacao | 1033a490860977a8ffb0bdfe648564f53e3cbabf | 47fb47495112d30940328e7e55cf7e7efba903a9 | refs/heads/master | 2020-12-29T01:54:06.142023 | 2016-07-03T01:11:37 | 2016-07-07T15:30:27 | 42,725,607 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 910 | hpp | #ifndef REF_TO_HPP
#define REF_TO_HPP
#include "fakeit.hpp"
template <typename T>
struct RefToMatcherCreator : public fakeit::TypedMatcherCreator<T> {
private:
const T& expected;
public:
RefToMatcherCreator(const T& arg) : expected(arg) {
}
virtual fakeit::TypedMatcher<T>* createMatcher() const over... | [
"janito.vff@gmail.com"
] | janito.vff@gmail.com |
98b1e2c0fa4c71d6b5e339c7400530dc68cbfe42 | 5454e5d7054305f69c9a743e5031289d9788c5b1 | /piscine_cpp_d13/ex00/Picture.h | ffa8fb9b5b498fa6327eb47b232f596c7adaf10e | [] | no_license | Sherry-Du/piscine_cpp_2014 | fb6556e2fe50cbb631755f2e7e6f8d4364c5cf6c | 31ca6d3094d9c5b49e08bf6a8f8f6bc7d878f2b9 | refs/heads/master | 2020-03-22T03:52:42.873976 | 2015-07-05T13:31:47 | 2015-07-05T13:31:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 274 | h | /**
* vadee_s
*/
#ifndef PICTURE_
# define PICTURE_
#include <iostream>
#include <fstream>
class Picture
{
public:
Picture();
~Picture();
bool getPictureFromFile(const std::string& file);
Picture(const std::string& file);
std::string data;
};
#endif
| [
"simon.vadee@gmail.com"
] | simon.vadee@gmail.com |
05e6412f97fa0b5383821e4ecabe96ff4ad22813 | eb0c73172385bbab2007c317e018eaf5f080089a | /Source/ThirdPersonMP/ThirdPersonMPCharacter.cpp | ffd610efdd9d5a500ce599cc81e0c1356455bc0e | [] | no_license | nmaltais/ThirdPersonMP | 5e3de084eecb2a8719ed835e81d046c1ca2fa1c0 | 9561c3d76203ee9805170dd1436e7e272843a86f | refs/heads/master | 2023-03-10T17:15:35.131305 | 2021-02-24T22:36:10 | 2021-02-24T22:36:10 | 341,393,396 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,311 | cpp |
#include "ThirdPersonMPCharacter.h"
#include "HeadMountedDisplayFunctionLibrary.h"
#include "Camera/CameraComponent.h"
#include "Components/CapsuleComponent.h"
#include "Components/InputComponent.h"
#include "GameFramework/CharacterMovementComponent.h"
#include "GameFramework/Controller.h"
#include "GameFramework/Spri... | [
"nic.maltais@gmail.com"
] | nic.maltais@gmail.com |
4b4c4af31bc1e2194a3d320859384ffd811d35f8 | 5499e8b91353ef910d2514c8a57a80565ba6f05b | /src/connectivity/wlan/lib/common/cpp/include/wlan/common/from_bytes.h | 9677291bce7c5d69be9747fbf8191824194abc3f | [
"BSD-3-Clause"
] | permissive | winksaville/fuchsia | 410f451b8dfc671f6372cb3de6ff0165a2ef30ec | a0ec86f1d51ae8d2538ff3404dad46eb302f9b4f | refs/heads/master | 2022-11-01T11:57:38.343655 | 2019-11-01T17:06:19 | 2019-11-01T17:06:19 | 223,695,500 | 3 | 2 | BSD-3-Clause | 2022-10-13T13:47:02 | 2019-11-24T05:08:59 | C++ | UTF-8 | C++ | false | false | 976 | h | // Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_CONNECTIVITY_WLAN_LIB_COMMON_CPP_INCLUDE_WLAN_COMMON_FROM_BYTES_H_
#define SRC_CONNECTIVITY_WLAN_LIB_COMMON_CPP_INCLUDE_WLAN_COMMON_FROM_BYTES_... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
312197077c312a07bd2c6a27b448c2c5f63e7a06 | e109e8b1fea4626827d2a6c57e87de514f7fc761 | /排序算法/希尔排序.cpp | 3ff35b3110b64bb2d3f6be659994b98e038bb805 | [] | no_license | xwlee9/cpp | 83a61f59a07b9a1059fd8f5dcc12db337e712b45 | 76d3f31d2f61fc1125f7526c2fb45473f850fed9 | refs/heads/master | 2020-05-06T14:04:07.885822 | 2019-06-25T18:21:47 | 2019-06-25T18:21:47 | 180,171,063 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 879 | cpp | #include <iostream>
using namespace std;
void PrintArray(int arr[], int length)
{
for(int i = 0; i < length; ++i) cout << arr[i] << " ";
cout << endl;
}
void ShellSort(int arr[], int length)
{
int incereament = length;
int i,j,k,temp;
do
{
incereament = incereament / 3 + 1;
for (i = 0; i < incerea... | [
"noreply@github.com"
] | noreply@github.com |
8ce4c0b4e7f601bc4557ebc16ae19178dbe25533 | ba9322f7db02d797f6984298d892f74768193dcf | /ons/src/model/OnsDLQMessageGetByIdRequest.cc | d81f01d69d0a1a930889bcd94df1ae84f8ea8885 | [
"Apache-2.0"
] | permissive | sdk-team/aliyun-openapi-cpp-sdk | e27f91996b3bad9226c86f74475b5a1a91806861 | a27fc0000a2b061cd10df09cbe4fff9db4a7c707 | refs/heads/master | 2022-08-21T18:25:53.080066 | 2022-07-25T10:01:05 | 2022-07-25T10:01:05 | 183,356,893 | 3 | 0 | null | 2019-04-25T04:34:29 | 2019-04-25T04:34:28 | null | UTF-8 | C++ | false | false | 1,915 | cc | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | [
"haowei.yao@alibaba-inc.com"
] | haowei.yao@alibaba-inc.com |
db79d5392ec0204a6dcdacb11c82881c5ee9d4ab | 5ebd5cee801215bc3302fca26dbe534e6992c086 | /blazetest/src/mathtest/smatdmatsub/UCaUHb.cpp | f4b6f75e70f0a0cc8611d1c3b87a697b9450b05a | [
"BSD-3-Clause"
] | permissive | mhochsteger/blaze | c66d8cf179deeab4f5bd692001cc917fe23e1811 | fd397e60717c4870d942055496d5b484beac9f1a | refs/heads/master | 2020-09-17T01:56:48.483627 | 2019-11-20T05:40:29 | 2019-11-20T05:41:35 | 223,951,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,205 | cpp | //=================================================================================================
/*!
// \file src/mathtest/smatdmatsub/UCaUHb.cpp
// \brief Source file for the UCaUHb sparse matrix/dense matrix subtraction math test
//
// Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved
//
// This fi... | [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
b1710c10a5470a44fffd744b8bf2dbde0f45d1e2 | 21dfd5124c2f05ef5f98355996dc2313f1a29f5a | /Src/Controller/RoboCupCtrl.h | e26826009f3129a15c16da69bb9dbcd86383eb29 | [
"BSD-2-Clause"
] | permissive | fabba/BH2013-with-coach | 50244c3f69135cc18004a1af9e01604617b6859f | 88d7ddc43456edc5daf0e259c058f6eca2ff8ef6 | refs/heads/master | 2020-05-16T03:21:29.005314 | 2015-03-04T10:41:08 | 2015-03-04T10:41:08 | 31,651,432 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,299 | h | /**
* @file Controller/RoboCupCtrl.h
*
* This file declares the class RoboCupCtrl.
*
* @author <a href="mailto:Thomas.Roefer@dfki.de">Thomas Röfer</a>
*/
#pragma once
#include <QList>
#include <list>
#include "SimRobotCore2.h"
#include "Oracle.h"
#include "GameController.h"
class Robot;
/**
* The class implements ... | [
"fab_v_cool@hotmail.com"
] | fab_v_cool@hotmail.com |
e61b9563b8599da6a0a07ae6bf6d5cb59aa34afc | 24d6004fa8058c3aa0256177c29db1b9df269904 | /Converter/main.cpp | a8a9cea6d64832dfe6f350cfc706b6c61b83fad8 | [] | no_license | MohabAyoub10/Numeral-System-Converter- | d07d0a465a0b308bde432f3bfa4a82c12ea528e1 | 95447a1b1d3452ce827f1c9ae24359836753f2a9 | refs/heads/master | 2022-12-05T17:10:44.134092 | 2020-08-31T21:28:06 | 2020-08-31T21:28:06 | 291,827,798 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,692 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
string no, out;
double x = 0;
int y = 0;
bool f = 0;
cout << "Enter the base of your input\n";
int inbase;
cin >> inbase;
cout << "Enter the number\n";
cin >> no;
for (int i = 0; i < no.size(); i++) {
if (no[i] == '.') {... | [
"noreply@github.com"
] | noreply@github.com |
a698518751d94a15dfb6c0a41916b16177d50e88 | e157a1df2688823f73457f9f3e690a06ac1342e1 | /AwesomeEngine/Events/IEventManage.h | cf87486729e5224e358393907318fb6ebc95093f | [] | no_license | Team-Whatever/AwesomeEngine | 83750e5a9ca5051b480974dd11e25e1e97c55cce | 00756797dd565f26d059828a958e89a9f620702d | refs/heads/development | 2020-07-23T13:34:33.867676 | 2020-04-21T13:38:34 | 2020-04-21T13:38:34 | 207,574,376 | 2 | 1 | null | 2019-10-01T15:42:49 | 2019-09-10T13:57:51 | C++ | UTF-8 | C++ | false | false | 2,286 | h | #pragma once
#include "IEventData.h"
namespace AwesomeEngine
{
class IEventManager {
public:
enum eConstants { kINFINITE = 0xffffffff };
// Registers a delegate function that will get called when the
// event type is triggered. Returns true if successful, false if not.
virtual bool VAddListener(const Simple... | [
"cozyncoze@gmail.com"
] | cozyncoze@gmail.com |
fb6e0efcbb17e4db6241bbd4309e83540f585ad4 | 4484824815fc13b6bdfaa722bb4c833ce73f586c | /CSVReader.h | 2b3aac62ec9b6c97beb6d37b88fe426eb0e8b628 | [] | no_license | prithviKantanAAU/RSMC-Sonification | 1b4673a23ef384026f9ce6b963afc01bca10d7f0 | 7ffb792917ea3610bbcee68769b8d1a41812507d | refs/heads/master | 2020-08-09T21:28:17.139062 | 2019-11-11T16:49:24 | 2019-11-11T16:49:24 | 214,178,710 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,862 | h | #pragma once
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
class CSVReader
{
public:
CSVReader() {};
~CSVReader() {};
void readMelCSV_Metadata(std::string path,string *songName, int *tonic, short *orderArray, int lineNum)
{
ifstream ip(path);
if (!ip.is_ope... | [
"noreply@github.com"
] | noreply@github.com |
dee94095e77a8b378977445102091f7535f660d4 | cc194107ba23263291ae3bb7af78cb63292ad4d2 | /Source/BullCowGame/BullCowCartridge.cpp | a2adfa40e52528be390a47514bf3316f0f1cbca3 | [] | no_license | SgtFlex/BullCowGame | 9767c8b43ff1c6b070f44b705b3849d29c56a44a | c9cdeeb530151f3ff9a4c6a72f0611570c667fc3 | refs/heads/master | 2022-12-29T14:16:43.964459 | 2020-10-12T22:03:03 | 2020-10-12T22:03:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,408 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "BullCowCartridge.h"
#include "Misc/FileHelper.h"
#include "Misc/Paths.h"
//#incldue "Math/UnrealMathUtility.h" //Already included in CoreMinimal.h from the header file
void UBullCowCartridge::BeginPlay() // When the game starts
{
... | [
"sgtflexxx@gmail.com"
] | sgtflexxx@gmail.com |
22317a35108db87b3afc68d460d4b91277222a13 | c3d4f9b8754632e5fe31ce4fae3b31c0b75dad00 | /Tech/벡터 - 지우기.cpp | 5a4e100b05e4ce69fab6e207ce7cdf2a8d5764df | [] | no_license | jeongminccc/algo | f42b21e06fb97ae7711759ee05f5d5e000ba8f8c | d74461a0b523adb2414d5d8c83e5b585bd00dcc7 | refs/heads/master | 2023-04-23T06:06:57.143874 | 2021-05-17T12:39:52 | 2021-05-17T12:39:52 | 279,296,585 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 571 | cpp | // ConsoleApplication27.cpp : 이 파일에는 'main' 함수가 포함됩니다. 거기서 프로그램 실행이 시작되고 종료됩니다.
//
#include "pch.h"
#include <iostream>
#include <vector>
using namespace std;
int main()
{
int n, m ,pos=0;
vector<int> a;
cin >> n >> m;
for (int i = 0; i < n; i++) {
a.push_back(i + 1);
cout << a[i];
}cout << "<";
while (... | [
"shinerbot@naver.com"
] | shinerbot@naver.com |
a7ca616b132ad12c07c0870f768daa94cb882517 | a3ec7ce8ea7d973645a514b1b61870ae8fc20d81 | /LeetCode/297.cc | bd97f0365ff478466cfd13f17eed3d7c436bf2f6 | [] | no_license | userr2232/PC | 226ab07e3f2c341cbb087eecc2c8373fff1b340f | 528314b608f67ff8d321ef90437b366f031e5445 | refs/heads/master | 2022-05-29T09:13:54.188308 | 2022-05-25T23:24:48 | 2022-05-25T23:24:48 | 130,185,439 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,316 | cc | class Codec {
public:
string serialized;
Codec() {serialized = "";}
void BFS(TreeNode* current) {
if(!current) {
serialized = "null";
return;
}
queue<pair<TreeNode*,int>> q;
set<int> levels;
map<int, string> level_string;
q.push({c... | [
"reynaldo.rz.26@gmail.com"
] | reynaldo.rz.26@gmail.com |
dfe1b6729ee9182c2412511860002920c14e2956 | 9f81d77e028503dcbb6d7d4c0c302391b8fdd50c | /google/cloud/migrationcenter/v1/internal/migration_center_option_defaults.cc | a44545bcac8e312c6ce1c4287ea42e8069852861 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | googleapis/google-cloud-cpp | b96a6ee50c972371daa8b8067ddd803de95f54ba | 178d6581b499242c52f9150817d91e6c95b773a5 | refs/heads/main | 2023-08-31T09:30:11.624568 | 2023-08-31T03:29:11 | 2023-08-31T03:29:11 | 111,860,063 | 450 | 351 | Apache-2.0 | 2023-09-14T21:52:02 | 2017-11-24T00:19:31 | C++ | UTF-8 | C++ | false | false | 3,399 | cc | // Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | [
"noreply@github.com"
] | noreply@github.com |
90595a4b9f208f8cf9a336414eac9d17582cb870 | 24653c0a8be19e46eb95451de1d961ffbcc01341 | /software/src/master/src/kernel/Vca_IPeek.h | 0772ba7e0d499f37110390cec160a6e36b620191 | [
"BSD-3-Clause"
] | permissive | VisionAerie/vision | 150e5bfa7eb16116b1e5b4bdb1bb8cee888fbfe5 | e40c39e3abc49b0e2c9623204c54b900c4333f29 | refs/heads/master | 2021-01-19T09:23:34.429209 | 2019-01-30T17:10:59 | 2019-01-30T17:10:59 | 82,104,368 | 2 | 1 | BSD-3-Clause | 2019-01-30T17:11:00 | 2017-02-15T20:41:27 | C++ | UTF-8 | C++ | false | false | 1,841 | h | #ifndef Vca_IPeek_Interface
#define Vca_IPeek_Interface
#ifndef Vca_IPeek
#define Vca_IPeek extern
#endif
/************************
***** Components *****
************************/
#include "IVUnknown.h"
/**************************
***** Declarations *****
**************************/
#include "Vca_IRequest... | [
"mcaruso@alum.mit.edu"
] | mcaruso@alum.mit.edu |
8ed3df40a6acd50ecd4c3d15752c85abfa2c9cd2 | 7a478ef9efd0c3b4424c5f2f3a17fede7bb95254 | /Libraries/libil2cpp/include/os/Path.h | 1983b6907c3378f077622510e3fc6c433a080887 | [] | no_license | Marcurion/test2 | dfe1bfd3cc50fa24a76cd88f74b52c2c8f9096e5 | 37425035a4db1084b4b03154b16d6cac90c2e31b | refs/heads/master | 2021-01-10T17:01:21.212134 | 2015-11-26T10:32:37 | 2015-11-26T10:32:37 | 46,919,935 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 169 | h | #pragma once
#include <string>
#include <stdint.h>
namespace il2cpp
{
namespace os
{
class Path
{
public:
static std::string GetTempPath();
};
}
}
| [
"marcurion@googlemail.com"
] | marcurion@googlemail.com |
94bc84a78e6abf6f8ffb00b265b9b79441afbd96 | 4ee1f1eb373ce363398d503db299c329545fa6fb | /Include/DWLDialogoAbrir.cpp | 3eab7fff995644cad580f1f6b87f8280f31ec9cf | [] | no_license | devildrey33/DWL | 540dcc38bac31789e589bbeb6a4a31f6a4a69a50 | eaadbe908190daa8587a9487c636be8e4e6c2b49 | refs/heads/master | 2021-01-19T04:05:20.769838 | 2020-10-29T09:18:59 | 2020-10-29T09:18:59 | 60,091,313 | 0 | 1 | null | null | null | null | ISO-8859-1 | C++ | false | false | 4,358 | cpp | /*! \file DWLDialogoAbrir.cpp
\brief Archivo que contiene una clase para mostrar el dialogo abrir del sistema.
\author devildrey33
\date Creado el [10/06/2004], ultima modificación el [05/10/2010]
\remarks
Archivo creado por devildrey33 para http://www.devildrey33.es \n
Este archivo e... | [
"devildrey33@hotmail.com"
] | devildrey33@hotmail.com |
325abe48657df70c56f0e88cd7254609c3e3180c | 12f2e07421fed03f81a4aae965d325bba7215a8b | /cpp_d09_2019/Character.cpp | fb80a8e002c0a7d0064b5639ff93cc120cb929f0 | [] | no_license | valtonngara/Cpp_Pool | c0bafc1c302688092de548aba8a4a8c3eafd8491 | f31b19a16fd68400e09fab92c318a05cc7cf6418 | refs/heads/master | 2023-07-30T05:13:02.811233 | 2021-09-19T16:50:39 | 2021-09-19T16:50:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,363 | cpp | //
// EPITECH PROJECT, 2020
// EPITECH 2020
// File description:
// main character
//
#include "Character.hpp"
#include "Warrior.hpp"
Character::~Character()
{
}
Character::Character(const std::string& name, int lvl) : name(name)
{
const char *create = " Created";
this->Range = CLOSE;
this->lvl = lv... | [
"valton.gara@gmail.com"
] | valton.gara@gmail.com |
85a03430c80d988f880d0c9c686d61f5c24fa96a | 266a4c550a561c810ae376a4477d61bc81bb4f40 | /Set_2/PSHOT.cpp | 1d4299f054415a74499bf4f1ac881e599956665b | [] | no_license | Rajeev0651/Codechef | 423687213dc09332d1b5afcd80b791f46fc4359f | d5cfb05340ba3b91f8868215e348f43d7847a5bb | refs/heads/master | 2023-03-30T15:06:41.151843 | 2021-04-05T16:55:26 | 2021-04-05T16:55:26 | 258,600,370 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 859 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
int T;
cin >> T;
while (T--)
{
int N, A = 0, B = 0;
cin >> N;
char S[N * 2];
for (int i = 0; i < N * 2; i++)
{
cin >> S[i];
}
int aleft = N, bleft = N, ans = N * 2;
for (int i = 0; i < N * 2; i++)
{
if (i ... | [
"singhrajiv0651@gmail.com"
] | singhrajiv0651@gmail.com |
8414f6e658765d52ddb32a9f9e12efe18b36d53c | e5fa99b5372374f4eb060a307f17d613cbf3c4ad | /include/physics/collisions/Shapes/OgreBulletCollisionsCylinderShape.h | ebeb62897258b32612ff3e3cbe51238c1ab061ce | [] | no_license | Dima-Meln/ORSE | 648d185164791c755a9c8e5556d60104f9fffd5b | 7f96fb3f8a8e5a15adc714825e08ef1a0071564a | refs/heads/master | 2020-08-10T18:55:34.097355 | 2012-09-18T04:59:20 | 2012-09-18T04:59:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,036 | h | /***************************************************************************
This source file is part of OGREBULLET
(Object-oriented Graphics Rendering Engine Bullet Wrapper)
For the latest info, see http://www.ogre3d.org/phpBB2addons/viewforum.php?f=10
Copyright (c) 2007 tuan.kuranes@gmail.com (Use it Freely, even S... | [
"dimamelnichuk11@gmail.com"
] | dimamelnichuk11@gmail.com |
4b86f76d0f8376da1adb821b7b0f9de654cf175a | 1d9b1b78887bdff6dd5342807c4ee20f504a2a75 | /lib/libcxx/include/__functional/operations.h | 1c73c999db918e1e0e4336cf914ac5547150a608 | [
"NCSA",
"LLVM-exception",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-other-permissive"
] | permissive | mikdusan/zig | 86831722d86f518d1734ee5a1ca89d3ffe9555e8 | b2ffe113d3fd2835b25ddf2de1cc8dd49f5de722 | refs/heads/master | 2023-08-31T21:29:04.425401 | 2022-11-13T15:43:29 | 2022-11-13T15:43:29 | 173,955,807 | 1 | 0 | MIT | 2021-11-02T03:19:36 | 2019-03-05T13:52:53 | Zig | UTF-8 | C++ | false | false | 17,095 | h | // -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===------------... | [
"andrew@ziglang.org"
] | andrew@ziglang.org |
fb70e88c61fff7f21a313f35ef8b166fb2269b0d | 0c029027d702488d7938139b4654d637a558739c | /experiments_km/myStiefelBrockettTest.cpp | 532787e7f1dba9d66c9fb68bb97bafdc808a9532 | [] | no_license | krrish94/roptlib-experiments | 6e13b74f11a8968b8c7b531275f3bf736263684a | e39c9d338cd13e961f99ca642053fb2041faaaa8 | refs/heads/master | 2020-05-25T20:08:09.516221 | 2017-03-18T04:38:32 | 2017-03-18T04:38:32 | 84,963,010 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,382 | cpp | /*
Test file for my version of optimizing the Brockett cost function over the Stiefel manifold.
*/
// Problem related classes
#include "Problems/Problem.h"
#include "experiments_km/myStiefelBrockett.h"
// Manifold related classes
#include "Manifolds/Manifold.h"
#include "Manifolds/Stiefel/StieVector.h"
#include "Mani... | [
"krrish94@gmail.com"
] | krrish94@gmail.com |
73f04590b2a50ad5c3de04e6d04ae4730793bdc4 | bceeed02a31d3284128bf18871d17ce397b2911b | /369A.cpp | b09ad66dfaf4975946972deb6b55f63b3539d21e | [] | no_license | anubhab91/codeforces | 7201cc050744ba6163b5b9e0b4fd732fdc2e89ba | 5b38422b282cb7378ea78b1f686e49e6d93e311c | refs/heads/master | 2021-01-22T20:08:21.564523 | 2014-07-28T01:33:53 | 2014-07-28T01:33:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 788 | cpp | #include<iostream>
#include<vector>
#include<string.h>
#include<stdio.h>
#include<map>
#include<math.h>
#include<algorithm>
#define LL long long
#define P(N) printf("%d\n",N);
#define S(N) scanf("%d",&N);
#define SL(N) scanf("%d",&N);
#define pb push_back
#define mp make_pair
using namespace std;
main()
... | [
"sanjeev1779@ubuntu.ubuntu-domain"
] | sanjeev1779@ubuntu.ubuntu-domain |
de0bc6f48d6f9ba8f0c3594821470af1a9ea14ed | 5e8d200078e64b97e3bbd1e61f83cb5bae99ab6e | /main/source/src/core/scoring/methods/EnvSmoothEnergy.cc | 2a2ce552fa05a9831103bec92c50ebff9a3a31cf | [] | no_license | MedicaicloudLink/Rosetta | 3ee2d79d48b31bd8ca898036ad32fe910c9a7a28 | 01affdf77abb773ed375b83cdbbf58439edd8719 | refs/heads/master | 2020-12-07T17:52:01.350906 | 2020-01-10T08:24:09 | 2020-01-10T08:24:09 | 232,757,729 | 2 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 16,274 | cc | // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
// vi: set ts=2 noet:
//
// (c) Copyright Rosetta Commons Member Institutions.
// (c) This file is part of the Rosetta software suite and is made available under license.
// (c) The Rosetta software is developed by the co... | [
"36790013+MedicaicloudLink@users.noreply.github.com"
] | 36790013+MedicaicloudLink@users.noreply.github.com |
ae34f94125256d0ade9c7a5413cb83b51dfe1319 | 3d97884696ac21cc84a77db7b0150536d3cd3dd3 | /addons/cirkit-addon-reversible/src/reversible/mapping/maslov_mapping.hpp | 487f6e55d236d6dfab2e116a47f66a1675a07b01 | [
"MIT"
] | permissive | gwdueck/cirkit | db59b0a8a253030a684e635ba9ca004b10a02824 | 9795bac66aaf35873e47228b46db6546963cf4cb | refs/heads/master | 2021-06-19T23:40:59.109732 | 2020-03-18T01:03:45 | 2020-03-18T01:03:45 | 98,331,135 | 0 | 2 | null | 2020-01-15T14:00:53 | 2017-07-25T17:10:48 | C++ | UTF-8 | C++ | false | false | 1,776 | hpp | /* CirKit: A circuit toolkit
* Copyright (C) 2009-2015 University of Bremen
* Copyright (C) 2015-2017 EPFL
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, in... | [
"mathias.soeken@epfl.ch"
] | mathias.soeken@epfl.ch |
6e7f8b0819b1adbc510cfc9f942e895642019e5f | ab8e4abb2c6f86d041cba4017d6f75ef0d649093 | /Lab4/labG++.cpp | 81d3bd0687487478b37720649467a47d6afc588b | [] | no_license | beachcoder25/326-Operating-Systems | 3134d6d4a6b8346d109a21e75f7fe5b6a8d3a212 | 87813e4aaca889af96ff39235395dbeb32a3fd7a | refs/heads/master | 2021-10-27T07:39:31.190976 | 2019-04-16T16:35:33 | 2019-04-16T16:35:33 | 168,808,820 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 138 | cpp | #include <unistd.h>
#include <sys/wait.h>
#include <iostream>
using namespace std;
int main(){
cout << "HEY\n";
exit(0);
}
| [
"cornish25@gmail.com"
] | cornish25@gmail.com |
c8b86731244aae80451c56bd3256d57580afe9e4 | 57f7eedac8421f84aa699bab8a5652dc160e45e6 | /src/IndexBuffer.h | 5c187841d845192fb9351f32b52959e9a18b41ef | [] | no_license | Yuanke-Pan/Graphic-Test-Frame | 84855ef551ac9ad069705124b8b0a0d460afc15d | a81e44e8aa10be3473cd4ad3a7cce71a7e5cf848 | refs/heads/master | 2023-02-12T22:16:42.404990 | 2021-01-04T03:55:40 | 2021-01-04T03:55:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 305 | h | #pragma once
#include<gl/glew.h>
class IndexBuffer {
private:
unsigned int m_IndexBufferID;
unsigned int m_count;
public:
IndexBuffer(const unsigned int *data, unsigned int size);
~IndexBuffer();
void bind() const;
void unbind() const;
inline unsigned int GetCount() const { return m_count; }
}; | [
"dreamice@outlook.com"
] | dreamice@outlook.com |
d6cffd0f64bf42bbf653e8617c189a554799c1ae | d0aabfcfdac454ac1c9cce7da6cdcb0cfedf2460 | /Advanced Recursion Problems/Permutations_of_Strings.cpp | fd133548cfc76c5af0a0c27636407bbe1cdcc2eb | [] | no_license | mitanshubhavsar/Data_Structures_CPP | 51a62827ea25eb1f84ac98536f42cea19e3ab205 | f3ebebc173ba7285b0314207dc9056fb03d3c1bd | refs/heads/master | 2023-04-12T09:30:40.333845 | 2021-04-17T20:01:34 | 2021-04-17T20:01:34 | 352,342,016 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 406 | cpp | #include <iostream>
using namespace std;
void permutations(string s, string ans){
if(s.length()==0){
cout<<ans<<endl;
return;
}
for(int i=0;i<s.length();i++){
char ch = s[i];
string rest_of_string = s.substr(0,i)+ s.substr(i+1);
permutations(rest_of_string,ans+ch... | [
"mitanshubhavsar90@gmail.com"
] | mitanshubhavsar90@gmail.com |
8ff6bcd30b8d86c3a4541b7c35454d7abfc4fac6 | 94303aaf3384184608723be26121f1ea76fa75cf | /IdCfgRom/WriteReadDlg.cpp | 4bb467780ba0c86e2e375246775600339f14fc30 | [] | no_license | insys-projects/ICR | d8cb40e36764f10346b862c24188aab5757d07e1 | ef2357a8b41aba3ecf41a3b0d4afed5ece5ad3f4 | refs/heads/master | 2021-08-15T21:49:55.375551 | 2020-08-24T15:35:19 | 2020-08-24T15:35:19 | 215,523,343 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 35,284 | cpp | // WriteReadDlg.cpp : implementation file
//
#include "stdafx.h"
#include "IdCfgRom.h"
#include "WriteReadDlg.h"
#include "IdCfgRomDlg.h"
int g_nSortColumnNum = 0;
int g_nLastArrowType = NO_ARROW;
// CWriteReadDlg dialog
IMPLEMENT_DYNAMIC(CWriteReadDlg, CDialog)
CWriteReadDlg::CWriteReadDlg(CWnd* pP... | [
"Tsikin@a8a5cdc4-a91d-e646-800f-a4054892b1cc"
] | Tsikin@a8a5cdc4-a91d-e646-800f-a4054892b1cc |
2d626727eee47dedc0b1c3af670baf917545225b | 71bbd5648e15b0098777e0de57559d8647873b55 | /Source/MidiKeyboardComp.h | 72aa96fe99d5dd02726be4d6cbace3993fa1cfde | [] | no_license | josephwhite/BitCruiser | 8a01288bb00d57787d3bc24d52a21bad34e0c963 | 575930861ab0a079e6547bf4b198068d165d8f07 | refs/heads/master | 2020-12-21T10:05:23.654010 | 2020-04-14T01:16:58 | 2020-04-14T01:16:58 | 236,395,658 | 2 | 0 | null | 2020-02-21T14:25:34 | 2020-01-27T00:20:45 | C++ | UTF-8 | C++ | false | false | 1,346 | h | /*
==============================================================================
MidiKeyboardComp.h
Author: Tom Couto
==============================================================================
*/
#pragma once
#include "../JuceLibraryCode/JuceHeader.h"
class MidiKeyboardComp : public MidiKe... | [
"noreply@github.com"
] | noreply@github.com |
20ba43245eff3ebd441ee3897da5f1506c685dfc | b2711c67946a3e8c0d0dda7bbe2c424975ac3bde | /example/less-than-4k/operation/yaml/serialize.cpp | ba317073291b55c8cb0f5f391f64366500d2a57c | [
"Apache-2.0"
] | permissive | RaphaelK12/reflection | 5332a272a01e635620ed547b38569f72e2c0bc3d | cc53218fcfc62ec1be9a85288c552da0a1ac8733 | refs/heads/master | 2022-11-30T12:27:10.286422 | 2020-08-16T15:25:49 | 2020-08-16T18:10:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,546 | cpp | #include <iostream>
#include <iomanip>
#include <string>
#include <functional>
#include "reflection/reflection.hpp"
class MyFirstClassOriginal //!< Original condition. Not bloated with any other code.
{
public:
MyFirstClassOriginal():m_float(98765){ }
void a(){ }
float & traitor(){ ... | [
"dmilos@gmail.com"
] | dmilos@gmail.com |
4ea910dc3bfa64a7985767559c8af614e49e4545 | da1e8ae097dbcda58ca4d714b7318c5f69cb0881 | /oop345/ms/ms3/LineManager.cpp | 4dd1716494e497ad763ec8ef0098213bae4be8e8 | [] | no_license | Hansol-Cho/Sem3 | f9c4e40b4621317e6f013e87c501ae8a705cfedd | 0daee123c0b9ca3738f16f12c52f96fedfa7daff | refs/heads/master | 2020-05-29T11:26:19.198355 | 2019-05-28T23:32:02 | 2019-05-28T23:32:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,869 | cpp | // Name: Hansol Cho
// Seneca Student ID: 103608170
// Seneca email: hscho5@myseneca.ca
// Date of completion: Nov 30th 2018
//
// I confirm that I am the only author of this file
// and the content was created entirely by me.
#include <fstream>
#include <string>
#include <functional>
#include "Utilities.h"
#in... | [
"hansol.cho613@gmail.com"
] | hansol.cho613@gmail.com |
a0b2d231e0a1a0206c7b10726f34e59dd7b40840 | e34d69f33d9bf3d9de99343ba24ad78bc5197a93 | /src/classes.h | 532b015fef54294fb6f32dd23b1e9f395f87ee8e | [] | no_license | cms-ttH/ttH-TauRoast | 8e8728a49d02d9e8d7dc119376a4aefb6e8fd77d | 3fe6529d7270dc091db00f95997ca6add8b95ac9 | refs/heads/master | 2021-01-24T06:13:06.485445 | 2017-10-11T14:04:05 | 2017-10-11T14:04:05 | 10,819,593 | 2 | 5 | null | 2016-09-15T07:19:20 | 2013-06-20T12:46:59 | Python | UTF-8 | C++ | false | false | 1,557 | h | #include "DataFormats/Common/interface/Wrapper.h"
#include "ttH/TauRoast/interface/Fastlane.h"
#include "ttH/TauRoast/interface/SuperSlim.h"
namespace {
struct dictionary {
fastlane::Leaf<int> dummy_ileaf;
fastlane::Leaf<float> dummy_fleaf;
fastlane::Leaf<std::vector<int>> dummy_vileaf;
fast... | [
"matthias@sushinara.net"
] | matthias@sushinara.net |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.