blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d9573583cf62a40e0bb865ef631701956de1e1c0 | 1a3787d444da7d93cb3226e44504e458b08e562d | /Day3(ValidPalindrome).cpp | 5baabc69ddda7717079ad932c538d61baf8de91b | [] | no_license | hsanghai20/LeetCodeAugustChallenge | 3646ab8fffba50f60914218e76b03489cf189d6e | 0ba37bad790dbd915fed0eea768c6821450ede0f | refs/heads/master | 2022-11-30T07:24:46.858364 | 2020-08-04T08:51:19 | 2020-08-04T08:51:19 | 284,209,453 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 495 | cpp | // Link: https://leetcode.com/problems/valid-palindrome/
// solution:
bool isPalindrome(string s) {
string str="";
for(int i=0;i<s.length();i++)
{
if(s[i]>='a' && s[i]<='z' || s[i]>='0' && s[i]<='9')
str+=s[i];
else if(s[i]>='A' && s[i]<='Z')
... | [
"harshsanghai2000@gmail.com"
] | harshsanghai2000@gmail.com |
8123285aeda00e8ec9d6a7f9df6b4b394b8e72ca | d3c37fd05a18babfc720cd2c98c4ce6f6f465f0a | /Recursion/prog5.cpp | 64368f48fd3bb9365921bef6b6d27b8afb6f4bea | [] | no_license | mallocash05/coding-ash | 686357af9fdeb73fe179c9b751fcaf8e7dc040b5 | b6cf5cf3c9167e53df011de7d5ed837ae6e72f13 | refs/heads/main | 2023-04-28T10:53:01.353396 | 2021-05-10T03:08:46 | 2021-05-10T03:08:46 | 361,511,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 661 | cpp | #include<bits/stdc++.h>
using namespace std;
void insert(stack<int>&stk,int elem)
{
if(stk.size()==0)
{
stk.push(elem);
return;
}
int x = stk.top();
stk.pop();
insert(stk,elem);
stk.push(x);
return;
}
void reverseStack(stack<int>&stk)
{
if(stk.size()==1)
return;
int temp = stk.top();
stk.pop();
re... | [
"noreply@github.com"
] | mallocash05.noreply@github.com |
0ee0d699a519dc7f9ff1c915af054bc732181d5a | fc8e2556848f1cc37690df551fe6923d214e9dec | /jcsf/banzi.h | c926f26fc6ac07f00980e3043603d763e13ba726 | [] | no_license | lyh666888/233 | ff5a3183cd45a105d07851317f43e3ae67784fa5 | 5f57e2d068af703ded41cad530cce8e4c1ce27c4 | refs/heads/master | 2022-12-23T12:18:44.589174 | 2020-04-22T03:52:01 | 2020-04-22T03:52:01 | 257,784,246 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 375 | h | #include<iostream>
#define maxn 1000001
class bcj
{
int fa[maxn];
int n;
void init()
{
for(int i=1;i<=n;i++)
{
fa[i]=i;
}
}
int find(int x)
{
if(x==fa[x]) return x;
else return fa[x]=find(fa[x]);
}
void merge(int x,int y)
{
... | [
"383912796@qq.com"
] | 383912796@qq.com |
27d0ddc3008bd074d6d2b6e9abbfdc9c7d16d9f1 | 84a19fe0b89bb19caa1641aeadc9623c1a181767 | /etc/indeednow_2015_qualb/d/d.cpp | d249c91193ee0454a4e50a3ab8644afde1372645 | [
"MIT"
] | permissive | wotsushi/competitive-programming | 75abae653cff744189c53ad7e6dbd2ca1a62e3a8 | 17ec8fd5e1c23aee626aee70b1c0da8d7f8b8c86 | refs/heads/master | 2021-06-10T06:42:40.846666 | 2021-05-31T10:32:51 | 2021-05-31T10:32:51 | 175,002,279 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 302 | cpp | #include "template.hpp"
int main() {
ll(N, C);
vll(a, N);
vvi X(C + 1);
rep(i, N) { X[a[i]].push_back(i); }
repi(i, C) {
ll l = 0;
ll ans = (N + 1) * N / 2;
X[i].push_back(N);
each(r, X[i]) {
ans -= (r - l + 1) * (r - l) / 2;
l = r + 1;
}
out(ans);
}
}
| [
"wotsushi@gmail.com"
] | wotsushi@gmail.com |
7dfbe9d766bab53a2bea1715791b7ac69292fef0 | dcc3272aa1f6ef7cc6cace5097566e34e981fab1 | /Engine/elgar/graphics/data/Renderable.hpp | 2e2804bd63c0e5b4d133b204ae151888b1f3eb32 | [] | no_license | jkstpierre/Elgar-Game-Engine | 11edcf0cf61b39c78cb06f2c72318d878a884716 | 47f993e196f6c67c598801a1ac88d3e8c0197302 | refs/heads/master | 2020-04-10T03:07:23.017246 | 2019-03-03T15:19:16 | 2019-03-03T15:19:16 | 160,761,342 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,929 | hpp | /*
Elgar Game Engine
Author: Joseph St. Pierre
Year: 2018
*/
#ifndef _ELGAR_RENDERABLE_HPP_
#define _ELGAR_RENDERABLE_HPP_
// INCLUDES //
#include <glm/glm.hpp>
#include <vector>
#include "elgar/graphics/buffers/VertexArrayObject.hpp"
#include "elgar/graphics/buffers/BufferObject.hpp"
#include "elgar/graphics... | [
"jkstpierre@wpi.edu"
] | jkstpierre@wpi.edu |
71427cee92dfc41ec489c20668630ac04331a0e7 | e2f0970da9e12b3b3d00b7b9d2eb8c60f0f68294 | /Elimination_Round_2/Editorials/Island_Queries1.cpp | cbaeb743c670e480015521683d9f859896a7fb33 | [
"MIT"
] | permissive | manojpandey/CodeSprint_India_2014 | c03d37ac1872a21ce32386b9aa656712e058d6e5 | 91ecfc9f565f20ae7517f556a0c414990a84e0d8 | refs/heads/master | 2021-01-23T14:04:24.747620 | 2014-11-03T15:02:28 | 2014-11-03T15:02:28 | 25,863,899 | 0 | 2 | MIT | 2021-06-22T19:20:46 | 2014-10-28T10:23:10 | C++ | UTF-8 | C++ | false | false | 1,288 | cpp | #include<bits/stdc++.h>
using namespace std;
#define LL long long int
#define sd(x) scanf("%d", &x)
#define MP make_pair
#define PB push_back
#define vi vector<int>
#define F first
#define S second
#define INF 2000000000
#define MOD 1000000007
#define D double
#define LD long double
#define N 512345
int p[N], pos[N... | [
"manojpandey1996@gmail.com"
] | manojpandey1996@gmail.com |
e742ce0aa7f1e2981eb0c286cd9c9126ee74666a | b865e323d6f13f1e7151f45dd5ffaaa2bac0ee90 | /poj/p1860/p1860.cc | 9bd3003fe185b4fe60bfcccada100ab63eefa91e | [] | no_license | jerryofouc/forStudy | 613f6b5bc78b2e23c537a0130616ac722412cd3c | 112a8a36212c2a80d539529bb6d00f38327df107 | refs/heads/master | 2021-01-25T04:02:52.608332 | 2014-06-14T11:56:04 | 2014-06-14T11:56:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,008 | cc | #include<iostream>
using namespace std;
struct Edge{
int start;
int end;
double rate;
double commission;
};
Edge edges[201];
int d[101];
double esp = 1e-8;
int main(){
int N,M,S;
double V;
cin>>N>>M>>S>>V;
for(int i=0;i<2*M;){
int start,end;
cin>>start>>end;
edges[i].start = start;
edges[i].end = end... | [
"zhangxiaojie10@otcaix.iscas.ac.cn"
] | zhangxiaojie10@otcaix.iscas.ac.cn |
fa199fbc7e1edca71b57dec7733cc5eff385becd | 0d9ae487950ee528c06a24113f207707f364df35 | /Lesson4HomeWorkLocal.cpp | ef71dacb94eb7dfde434ccfee064c84e4cbf59c5 | [] | no_license | f0rmat4/Lesson4HomeWorkLocal | 7ed41fad6e564c35b20d9faf2022630276c5ca6b | 9b695d9559c05aa86ffe2f0ffc65f9f97a0c5a0e | refs/heads/master | 2023-03-02T04:22:46.939412 | 2021-02-12T22:53:02 | 2021-02-12T22:53:02 | 336,904,800 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,232 | cpp | #include <iostream>
#include <cmath>
#include <Windows.h>
using namespace std;
int main(int argc, const char* argv[]) {
/*double Task1();
double a, b;
double sum = a + b;
cout << "Enter number" << endl;
cin >> a >> b;
if ((sum >= 10) && (sum <= 20)) {
cout << true << endl;
}*/
/*bool Task2();
c... | [
"f0rmat4you@gmail.com"
] | f0rmat4you@gmail.com |
7bab428ae2de739fa2cf92a5df3b3ea4a932ad58 | 9ecf6a678a0a21fdc0a2cfed3e421cf64fe6f52b | /main_analysis.cpp | 534a0d0bf3bff465e6470572056343d10a12f7c7 | [] | no_license | riccardomarabini/lab_root | 4c4f6b35774f3a5ec029db7ab3e2a8427fc9da96 | f7211767de774c960d70e9ed876b03b33dd9f5ab | refs/heads/main | 2023-09-05T13:38:06.543181 | 2021-10-29T14:28:59 | 2021-10-29T14:28:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 376 | cpp | #include "TH1F.h"
#include "TFile.h"
#include "TMath.h"
#include <iostream>
void analysis()
{
// analysing histo of types
TFile *particleRootFile_ = new TFile("particleRootFile.root");
TH1F *hParType_ = (TH1F *)particleRootFile_->Get("hParType");
hParType_->Draw();
// fitting angular histos
... | [
"riccardo.marabini@studio.unibo.it"
] | riccardo.marabini@studio.unibo.it |
510c2be4d979f3f6a72eb107ca6744a52b37e8dc | 7d3cd89be65cb65572f7e2951faa693fa5db2fac | /kernel/pci/pci.cpp | 60def824b6e1665d33b5454fb8824aa084ca3446 | [] | no_license | 3to5thpower/my-mikan-os | a1897e60d24aa1f7fbd5e588d4315c30d799c285 | 0e7c257d906d9f2571480e51efe67763077b618b | refs/heads/master | 2023-04-19T19:51:46.015195 | 2021-05-05T20:28:17 | 2021-05-05T20:28:17 | 363,453,548 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,479 | cpp | #include "pci.hpp"
#include "asmfunc.h"
namespace {
using namespace pci;
Error ScanBus(uint8_t bus);
/** @brief devices[num_devices]に情報を書き込み、
* num_devicesをインクリメントする
*/
Error AddDevice(const Device& device) {
if (num_device == devices.size()) {
return MAKE_ERROR(Error::kFull);
}
devices[num_de... | [
"nisi3genki@gmail.com"
] | nisi3genki@gmail.com |
ec92510f2712db124f9ad73ad2dbeb420352086b | 74a31a9666df200ab18c44566f2227d031823b23 | /myst0189g/Classes/game/ScoringSystem.h | 1fa6ffc3906fca4cf519ce2bbf5289fd70984d57 | [] | no_license | Crasader/Demo_Earlier_CC | 448f3447fc3fb237c2346069bf2344f44bd552db | 320c57f91b7d6603a6293b65a6702f76b1e035ba | refs/heads/master | 2020-12-04T12:24:47.254647 | 2018-05-31T02:51:24 | 2018-05-31T02:51:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,615 | h | //
// ScoringSystem.h
// proj.ios
//
// Created by Steven.Xc.Tian on 13-6-14.
//
//
#ifndef __proj_ios__ScoringSystem__
#define __proj_ios__ScoringSystem__
#include "../AppGlobal.h"
class ScoringSystem : public cocos2d::CCObject
{
// and the final score of current level
int finalScore;
// game limited... | [
"327239185@qq.com"
] | 327239185@qq.com |
4afed620e049169bea8fa2730a21ba7973ea3936 | 230a3023f92075e60c58a4d2aff7ffa8845ea367 | /shaderClass.h | ebacad22e5b4b84470f28ade86afcae54cc22145 | [] | no_license | Nyuu-s/OpenGl_base | 66cb0182785109ec96b4a44a281243846b98ae09 | 3caabf024a2e87c459da8d1e1a0bf8c119572ef2 | refs/heads/master | 2023-07-01T23:02:21.822976 | 2021-08-09T17:57:25 | 2021-08-09T17:57:25 | 389,968,559 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 600 | h | #ifndef SHADER_CLASS_H
#define SHADER_CLASS_H
#include<glad/glad.h>
#include<string>
#include<fstream>
#include<sstream>
#include<iostream>
#include<cerrno>
std::string get_file_contents(const char* filename);
class Shader
{
public:
// Reference ID of the Shader Program
GLuint ID;
// Constructor that build the Sh... | [
"edgar@DESKTOP-69TJ7NA"
] | edgar@DESKTOP-69TJ7NA |
45a32ab810ff0f803b50491b2cddd5fea57737e9 | 2728b551ea11cf5de3e793099e02d43d76e72e7b | /3rd/boost_headers/boost/spirit/home/x3/version.hpp | 799e152e1d4618d29d10d9b0ee102ac718307a0f | [] | no_license | Robien/acharn | 0d38317bd1eb40b61f18089288ad6a029105732d | e4b9c657a52edbd08962fe0df890c98c27d8b383 | refs/heads/master | 2021-01-10T18:42:38.169223 | 2020-04-08T05:48:19 | 2020-04-08T05:48:19 | 39,433,207 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 769 | hpp | /*=============================================================================
Copyright (c) 2001-2011 Joel de Guzman
Copyright (c) 2001-2011 Hartmut Kaiser
http://spirit.sourceforge.net/
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.... | [
"romain.guyard@mujin.co.jp"
] | romain.guyard@mujin.co.jp |
b22bf5e31e63d71806703fd47ebf80adc6083bcc | ef2588ffc23695239fa9c30458e397a47e776f3f | /keysettingsdialog.cpp | c3ed86be29b15055b694280ef0cdc9cf3ed0de5c | [] | no_license | dennn66/bb_qt_client | b67dbc5c4d89c4720cfb573cabc384cdaadc4293 | 38fa14a051e0ba9e4603123e03989865b1583a4d | refs/heads/master | 2018-11-01T22:53:15.481799 | 2017-10-03T11:47:37 | 2017-10-03T11:47:37 | 104,205,416 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,302 | cpp | #include "keysettingsdialog.h"
KeySettingsDialog::KeySettingsDialog(KeyCondition* con, L2Window* l2w, int tool, QWidget *parent) :
QDialog(parent),
ui(new Ui::KeySettingsDialog)
{
ui->setupUi(this);
QDoubleValidator *vd = new QDoubleValidator();
QIntValidator * vi = new QIntValidator();
condit... | [
"dennn6696@gmail.com"
] | dennn6696@gmail.com |
0cde3a6096e635585678b8a32c370ee8fd12eb55 | df3b0cd2099cb303c53914b6a67b7995af23cda9 | /RVO/rvo_ros/src/KdTree.cpp | 83200049b51a7169f3e564fc1cd5d0ef8fe46d71 | [] | no_license | idombanker/samples | de5e2b777e55f139212d4a428f5d25de153b18de | 996f4a1b33ab1fa709a068a2e0350f49d14286ed | refs/heads/master | 2021-05-31T15:02:03.760791 | 2016-04-11T07:18:20 | 2016-04-11T07:18:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,082 | cpp | /*
* KdTree.cpp
* RVO2 Library
*
* Copyright (c) 2008-2010 University of North Carolina at Chapel Hill.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for educational, research, and non-profit purposes, without
* fee, and without a written agree... | [
"syliu@mit.edu"
] | syliu@mit.edu |
74d71e5479b6b0f47ec021f163a390cb11ba4efa | 61a62af6e831f3003892abf4f73bb1aa4d74d1c7 | /USACO/Contests/Silver/2015-2016/Contest 3/silver16feb1.cpp | c42726fde94e49c06654edd0c15243265e05fb3a | [] | no_license | amsraman/Competitive_Programming | 7e420e5d029e8adfbe7edf845db77f96bd1ae80d | 6f869a1e1716f56b081769d7f36ffa23ae82e356 | refs/heads/master | 2023-03-17T00:20:19.866063 | 2023-03-11T00:24:29 | 2023-03-11T00:24:29 | 173,763,104 | 16 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 678 | cpp | #include <fstream>
#include <iostream>
#define INF 0x3f3f3f3f
using namespace std;
int main()
{
ifstream infile("cbarn.in");
ofstream outfile("cbarn.out");
int n;
infile >> n;
int pos[n];
int a, c = 0;
for(int i = 0; i<n; i++)
{
infile >> a;
for(int j =... | [
"noreply@github.com"
] | amsraman.noreply@github.com |
1f81d9c2b7ad58b040ebb93f368fac81173c9cf4 | ba48a88ed9c3eb938d9a4f833bec906df7443700 | /ItemModule.hpp | 1fdc3ae06b8aed4ac9e9ef3c5578d5cc708f1b63 | [] | no_license | Sammi-Husky/smash-ultimate-module-defs | fc70ff00c579134cc64459ec4bd5fa47f6447f66 | b633d1265d61ac0c984c7aad9127d86cb24e3005 | refs/heads/master | 2020-05-29T18:27:31.308150 | 2019-06-07T08:31:08 | 2019-06-07T08:31:08 | 189,300,244 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,504 | hpp | #ifndef ITEMMODULE_H
#define ITEMMODULE_H
namespace app::lua_bind {
namespace ItemModule {
u64 attach_item(app::BattleObjectModuleAccessor *,app::ItemKind,int,bool) asm("_ZN3app8lua_bind28ItemModule__attach_item_implEPNS_26BattleObjectModuleAccessorENS_8ItemKindEib") LINKABLE;
u64 attach_item_2(app:... | [
"sammi-husky@live.com"
] | sammi-husky@live.com |
b77d41bdae9b897e4aab02104a6c1368d7068f53 | bc56aa80d0417b002cb1381e3911ff1d0df40d06 | /KalmanTrack/KalSite.hh | 5310fc6081c166aaf5f3dee3a2654df48dc309f0 | [
"Apache-2.0"
] | permissive | brownd1978/FastSim | 177d79e8ce7bbd71df6f24295b157a8651962981 | 05f590d72d8e7f71856fd833114a38b84fc7fd48 | refs/heads/master | 2023-01-08T07:48:49.843154 | 2020-11-04T00:52:23 | 2020-11-04T00:52:23 | 284,155,237 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,258 | hh | // ------------------------------------------------------------------------------
// File and Version Information:
// $Id: KalSite.hh,v 1.62 2006/05/16 18:18:31 brownd Exp $
//
// Description:
// Class to describe a generic Kalman filter 'site'. A site is
// defined as somewhere along the trajectory where some... | [
"dave_brown@lbl.gov"
] | dave_brown@lbl.gov |
9e3b4dd2ac5d9103f6916724927f64b925ae13c0 | e11e6a42a0e3235618d2ff87cff9428b346fa1ed | /src/2000/2754.cpp | d4e011dcc7d84de47fc4927e51deae7937768093 | [] | no_license | khm2034/baekjoonAlgorithms | 53c9fb48e13e325a00746d33ea9be3aeb7389848 | 382303611c1334801e1e74a58f20bf7f3921914c | refs/heads/master | 2021-05-13T20:23:33.397069 | 2018-11-09T12:44:19 | 2018-11-09T12:44:19 | 116,910,526 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 603 | cpp | #include<cstdio>
char s[3];
int main() {
scanf("%s", s);
if (s[0] == 'A') {
if (s[1] == '+') printf("4.3");
if (s[1] == '0') printf("4.0");
if (s[1] == '-') printf("3.7");
}
if (s[0] == 'B') {
if (s[1] == '+') printf("3.3");
if (s[1] == '0') printf("3.0");
if (s[1] == '-') printf("2.7");
}
if (s[0] ==... | [
"khm2034@gmail.com"
] | khm2034@gmail.com |
f5654f152652b0057907870c37e200f9030fc976 | 416beb9f70ffc5c520b00039224e89bbe21e8be7 | /addon/src/window.h | 070e4691cc5dec9e801fc7cb2789c5dc37d6e31c | [] | no_license | 1j01/ahk.js | 14103701cb24b22109f7e7fe7e3eb8b06fc6752b | 527f26ee445eb47098cb7fd2dcf4cce68c1753a6 | refs/heads/master | 2021-06-06T21:29:09.726072 | 2014-05-29T06:22:33 | 2014-05-29T06:22:33 | 20,083,159 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,973 | h | /*
AutoHotkey
Copyright 2003-2009 Chris Mallett (support@autohotkey.com)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This... | [
"isaiahodhner@gmail.com"
] | isaiahodhner@gmail.com |
257e35704e05a683470741b67da79ba623f516c8 | 492976adfdf031252c85de91a185bfd625738a0c | /src/Game/AI/Action/actionCheckExistenceOfParticipant.h | f02455c44b312334235a92be0dfbe85f0d95e5d3 | [] | no_license | zeldaret/botw | 50ccb72c6d3969c0b067168f6f9124665a7f7590 | fd527f92164b8efdb746cffcf23c4f033fbffa76 | refs/heads/master | 2023-07-21T13:12:24.107437 | 2023-07-01T20:29:40 | 2023-07-01T20:29:40 | 288,736,599 | 1,350 | 117 | null | 2023-09-03T14:45:38 | 2020-08-19T13:16:30 | C++ | UTF-8 | C++ | false | false | 741 | h | #pragma once
#include "KingSystem/ActorSystem/actAiAction.h"
namespace uking::action {
class CheckExistenceOfParticipant : public ksys::act::ai::Action {
SEAD_RTTI_OVERRIDE(CheckExistenceOfParticipant, ksys::act::ai::Action)
public:
explicit CheckExistenceOfParticipant(const InitArg& arg);
~CheckExistenc... | [
"leo@leolam.fr"
] | leo@leolam.fr |
0470669cdd145d80b05f49bdf61059043d2efa16 | a2b0ccdfd1a3f385bc364d7330049a0273415fd7 | /Engine/Engine/src/systems/CollisionManager.h | e6193d1d49bd0ba53ad9575450fddb5422da9f54 | [] | no_license | TheGreenBridge/bridgeengine | c38d4115fec818aed842a29af48f1860cbfa9502 | fd13d261a9f537a04b8b5a11fb76033ef7ec4708 | refs/heads/master | 2021-01-24T00:15:29.504844 | 2018-02-24T18:18:27 | 2018-02-24T18:18:27 | 122,758,838 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 590 | h | #pragma once
#include "System.h"
namespace engine {
namespace collision {
struct AABB3D;
}
struct Event;
using namespace collision;
class CollisionManager : public ISystem{
private:
AABB3D* m_aCollidables;
U32 numCollidables = 0;
public:
CollisionManager();
~CollisionManager();
... | [
"blitzgneisser21@tugraz.at"
] | blitzgneisser21@tugraz.at |
9b3196a5a8218d39684c188fd85eebe23b1d1509 | c3a56f70668f5d46679750e3a781ab7d610142a2 | /Rok I/KluczPrzeszukiwanie_2D.cpp | 2c5559ee72f019719c7ec2094657e3097003e4d4 | [] | no_license | M4thez/UczelniaCDV | cf43fb341e52a947422c5fdef3550fc53e35a5a1 | 4b335279b3b26097d8b3149ff354da4012d68e64 | refs/heads/master | 2023-04-16T08:52:12.366261 | 2021-04-27T18:49:24 | 2021-04-27T18:49:24 | 279,605,240 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,402 | cpp | #include <iostream>
using namespace std;
int main()
{
int tab[5][5] = {{4, 2, 3, 6, 7}, {14, 12, 17, 15, 6}, {4, 27, 14, 17, 3}, {15, 12, 6, 81, 92}, {11, 3, 64, 21, 11}};
int klucz, pw, pk, kw, kk; // pw - poczatek wiersza, pk - poczatek kolumny, kw - koniec wiersza, kk - koniec kolumny
int i = 0;
c... | [
"namemat@gmail.com"
] | namemat@gmail.com |
05f2c9fd968c31fe5af82d41c899302a1946b714 | 2f6dcbbd8530518ca8a2fdec860acac83c9caaf5 | /src/mvc_get_image.cpp | 141d82974880ba92426d9ffea0bc3ead8220bf47 | [] | no_license | liucc09/microview | 8fc872e9b123c60667dceaf0887d4eddb7b9c03c | 1b50fe57327803be8bec31a4df49193b58431fdc | refs/heads/master | 2021-01-01T04:39:26.881697 | 2016-04-24T08:35:40 | 2016-04-24T08:35:40 | 56,961,893 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,236 | cpp | #include <stdio.h>
#include <tchar.h>
#include <windows.h>
#include "MVCAPI.h"
#include "mex.h"
HANDLE* m_phMVCs;
struct CapInfoStruct* m_pCapInfos;
double* pprhs0;
int* pprhs1;
BYTE* pImage;
/***
*输入参数:相机Id(行向量),m_phMVCs指针地址(行向量)
*输出参数:Matlab的Cell类型,每个单元存一副图像
***/
void mexFunction(int nlhs, mxArray *plhs[], int nr... | [
"liucc09@aliyun.com"
] | liucc09@aliyun.com |
4178fefe8e56dcf4bef95e2fa80dd39a9ce8c5b2 | a13d0142d33bed0bf8e2d6f2a6524a787f6b170e | /source/gc/gc.cpp | 704e0b81f50d960b72ba80fb8e6a15011d989946 | [] | no_license | einsteinx2/wiiflow-lite-einstein-mod | 6ec3347089fe763d06145dc49ad34a9b13b98c8c | 163f4645a970b2fb90e403b86e256af044855c04 | refs/heads/master | 2020-03-17T02:23:37.185157 | 2018-05-26T23:31:21 | 2018-05-26T23:31:21 | 133,188,269 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 11,745 | cpp | /****************************************************************************
* Copyright (C) 2012 FIX94
*
* 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... | [
"ben@einsteinx2.com"
] | ben@einsteinx2.com |
715c467a2ddb963ec7cd12854e3f48b855c3f6e9 | 8db71681e2a2f797ed3306207e3f99fea35c28b0 | /main.cpp | 949d32d2f8d770c16428534f4b9ea37fb1ba9e72 | [] | no_license | Aleksandra1818/OJP | 425fa3b75f277945a66d0934986a51a452055816 | 47d89486e795f05b060f40e594ae03876517c9ea | refs/heads/master | 2020-04-25T11:18:24.252329 | 2019-06-13T20:21:49 | 2019-06-13T20:21:49 | 172,740,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,256 | cpp | #include <SFML/Graphics.hpp>
#include <SFML/Audio.hpp>
#include "Ball.h"
#include "Paddle.h"
#include "Block.h"
#include <iostream>
#include <cstdlib>
using namespace sf;
using namespace std;
vector<int>life;
template <typename Object1, typename Object2> bool collision(Object1& a, Object2& b)
{
... | [
"noreply@github.com"
] | Aleksandra1818.noreply@github.com |
26268ae37decd85d926123451cb87bcc324c00b9 | 9e520130445d1a37a9ff0df2934a6d32a2d22fd0 | /lib/include/rmi/dds_service_sdk.h | d4988b1d25567640db1e68dfca34a7ec9b80a21f | [] | no_license | locke12456/DDS-Sample | 53727b6a562f24d302fa2cee07b81109f312d5af | 46b776ec4ba1fd9bd6325d7e649f1c6e191636fb | refs/heads/master | 2021-01-17T16:02:29.126507 | 2016-08-08T04:13:34 | 2016-08-08T04:13:34 | 64,986,376 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 35,484 | h | /*
* OpenSplice DDS
*
* This software and documentation are Copyright 2006 to 2015 PrismTech
* Limited and its licensees. All rights reserved. See file:
*
* $OSPL_HOME/LICENSE
*
* for full copyright notice and license terms.
*
*/
/**
* @brief Definition of a... | [
"locke.chen@adlinktech.com"
] | locke.chen@adlinktech.com |
f81ecb7bc2d3fb55e4e8381267446b4a2ce9d3aa | 59d1071ec52abc609a9f8736b31762631160f90f | /embedded/libraries/ros_lib/auto_warehousing/MovePackage.h | 7f113368e8bc9c8377d20c62d8d92bce7c8ba3e1 | [
"MIT"
] | permissive | Roboterbastler/roseau | 87f64e20d3a779c4702cf692664e36993b66660e | 6c1d195909d9ed3061c639e462d418ac1c91b3b6 | refs/heads/master | 2020-05-24T15:56:35.751733 | 2018-03-25T16:43:09 | 2018-03-25T16:43:09 | 84,855,207 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,160 | h | #ifndef _ROS_SERVICE_MovePackage_h
#define _ROS_SERVICE_MovePackage_h
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "ros/msg.h"
namespace auto_warehousing
{
static const char MOVEPACKAGE[] = "auto_warehousing/MovePackage";
class MovePackageRequest : public ros::Msg
{
public:
type... | [
"roboterbastler@posteo.de"
] | roboterbastler@posteo.de |
4f921040a43f641ed508d82f71cc29e1d8d66c22 | 7dad5327abe29bb0c3e539c74436c4770ad88373 | /player.cc | 0584db2cf1fe51b2fa8fbf702547b68c41a030d9 | [] | no_license | QianWu1995/chessGame | 2147f9072acf09738055770885c837ca0d8f7b32 | 3e3591cbd85df55302c75de7cd6397672b5d5bb0 | refs/heads/master | 2020-12-04T15:37:18.287095 | 2017-01-19T17:47:07 | 2017-01-19T17:47:07 | 67,641,971 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 642 | cc | //
// player.cpp
// Chess
//
// Created by Qian Wu on 2016-07-15.
// Copyright © 2016 Qian Wu. All rights reserved.
//
#include "player.h"
#include <memory>
Player::Player(bool black, bool human, int level,shared_ptr<Grid> board)
: black{ black }
, human{ human }
, board{board}
, score{ 0 }
, level{ level }
, isCh... | [
"noreply@github.com"
] | QianWu1995.noreply@github.com |
d036ab9e7c7f8d82d8f50f16d79dde05002967d8 | 77ff0d5fe2ec8057f465a3dd874d36c31e20b889 | /problems/yukicoder/No0392.cpp | 24c9638e0ce330741d9db7dddd58e3ce6409f63f | [] | no_license | kei1107/algorithm | cc4ff5fe6bc52ccb037966fae5af00c789b217cc | ddf5911d6678d8b110d42957f15852bcd8fef30c | refs/heads/master | 2021-11-23T08:34:48.672024 | 2021-11-06T13:33:29 | 2021-11-06T13:33:29 | 105,986,370 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,816 | cpp | #include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int INF = 1e9;
const ll LINF = 1e18;
inline ll gcd(ll a, ll b) { return b ? gcd(b, a%b) : a; }
inline ll lcm(ll a, ll b) { return a / gcd(a, b)*b; }
template<class S,class T> ostream& operator... | [
"clavis1107@gmail.com"
] | clavis1107@gmail.com |
994c9ce6d4310d984f9dedca1724112cdb7d38b1 | a0c4ed3070ddff4503acf0593e4722140ea68026 | /source/MAILPLUS/BULLET2/SRC/MSMAIL/DIALOGS.CXX | 370a212b610578f26f25b47aaef7aa6534186c12 | [] | no_license | cjacker/windows.xp.whistler | a88e464c820fbfafa64fbc66c7f359bbc43038d7 | 9f43e5fef59b44e47ba1da8c2b4197f8be4d4bc8 | refs/heads/master | 2022-12-10T06:47:33.086704 | 2020-09-19T15:06:48 | 2020-09-19T15:06:48 | 299,932,617 | 0 | 1 | null | 2020-09-30T13:43:42 | 2020-09-30T13:43:41 | null | UTF-8 | C++ | false | false | 68,275 | cxx | /*
* d i a l o g s . c x x
*
* Bullet dialog stuff
*/
/*
* H e a d e r s
*/
#include <bullinc.cxx>
#include "_command.hxx"
#include "_fin.hxx"
#include "_mtv.hxx"
#include "_blbxc.hxx"
#include "copydis.h"
#include <stdlib.h>
#include "..\vforms\_spell.hxx"
#include "..\vforms\_prefs.h"
_subsystem(commands/... | [
"71558585+window-chicken@users.noreply.github.com"
] | 71558585+window-chicken@users.noreply.github.com |
73c7375a9e2f0d607c8bf1df3eeae4c348cc72ad | 7abbb21f2734f7bb72d125eef2bc6114abb28043 | /src/encoder/QueueStats.h | fcd4b557fa76a9b45fbe8a48e0ebe0451761bdf9 | [
"MIT"
] | permissive | dneuge/cvr | 4fbe7246d20185941d85b769d2801e6eb097a11b | 516547dca0672c92aa4f4a37712e6135e7f6b011 | refs/heads/master | 2021-01-17T17:24:51.884891 | 2016-07-24T21:19:56 | 2016-07-24T21:19:56 | 64,080,149 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 330 | h | #ifndef QUEUESTATS_H
#define QUEUESTATS_H
class QueueStats {
public:
unsigned long latestPacketTimestamp;
unsigned long oldestPacketTimestamp;
unsigned long maxPackets;
unsigned long numPackets;
unsigned long maxMillis;
unsigned long totalBytes;
};
#endif /* QUEUEST... | [
"dneuge@energiequant.de"
] | dneuge@energiequant.de |
0beefc229add84eb4c568a1e6d7d767ffb4ca7ca | c3c08165c4fa27b1bbe3a23b0c581005413879c5 | /Compiler/ReASTree.h | ee265792ff3bee65b7f0b965739a0a11fc434fcf | [] | no_license | youyouye/Regular | 79be52308ec04fb38355eddb3f561e4c5acbba1e | 62918980bf3f00e2be394ba74aa798652108c001 | refs/heads/master | 2021-01-11T19:48:25.669228 | 2017-01-19T01:19:28 | 2017-01-19T01:19:28 | 79,401,903 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,833 | h | #ifndef CHARLITERAL_H_
#define CHARLITERAL_H_
#include <memory>
#include "ASTLeaf.h"
#include "ASTList.h"
class Nfa;
class Dfa;
using namespace std;
class CharLiteral:public ASTLeaf
{
public:
CharLiteral();
CharLiteral(Token& t);
~CharLiteral();
shared_ptr<ThompResult> thompson(shared_ptr<Nfa> mNfa);
shared_ptr<T... | [
"1393400756@qq.com"
] | 1393400756@qq.com |
348c98d4dc9999cf8ba254ee4160779f492ff2a4 | 7e18522294e211534e0f14267062dc6c9a1dfd5a | /src/module/cmds/cmds.h | 5018628f5ac212c47e12d7e7b8762ed5c4e69aa1 | [] | no_license | lanzze/Diffusion | d4e752d1ca47b2c1e03762451460c6a08def43a6 | 15ddc10332f62d7586ef0b5f53467f82f9c30ed2 | refs/heads/master | 2021-10-22T22:40:03.761515 | 2017-12-12T13:20:39 | 2017-12-12T13:20:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 318 | h | //
// Created by Angel on 2017/3/31.
//
#ifndef DIFFUSION_CMDS_H
#define DIFFUSION_CMDS_H
namespace lc{
typedef class CommandKey {
public:
static const int FILE_CIPHER = 1;
static const int TEXT_ENCIPHER = 2;
static const int TEXT_DECIPHER = 3;
} cmd;
}
#endif //DIFFUSION_CMDS_H
| [
"platolgy@126.com"
] | platolgy@126.com |
f8c1584f0ec7a80e5e1848148600d9ff63bd61a3 | 44bee3f4d8a92a353db08532e613a0b05d2f8c31 | /third/basic_lib/lib2-64/bsl/include/bsl/var/Ref.h | 35f982691cd2d90c9ad6f7dec8e9730755c12374 | [] | no_license | tengyue-ma/spokenlanguageunderstand | 73e4acb90295f9b38e3ab40355729560f614d75a | 8877ba7c20aee5b0a597b842974c50a51b804bda | refs/heads/master | 2020-04-23T13:35:57.015770 | 2019-02-18T05:41:34 | 2019-02-18T05:41:34 | 171,202,326 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 19,778 | h | /***************************************************************************
*
* Copyright (c) 2008 Baidu.com, Inc. All Rights Reserved
* $Id: Ref.h,v 1.4 2010/04/28 12:45:33 scmpf Exp $
*
**************************************************************************/
/**
* @file Ref.h
* @author chenxm(chenxia... | [
"tengyue.ma@hadoop045.hogpu.cc"
] | tengyue.ma@hadoop045.hogpu.cc |
79ac4837de4a54bc9f9bab506cbf3f311895f854 | 665f0b9ee240d5e153f855ae9fdafee18317a16b | /PAT again/A1126. Eulerian Path (25)/源.cpp | 65bc5c619f2b44dfb3d52c73bc70e3b073f13eaa | [] | no_license | diegoQiu/PAT-advanced | f3b15cb5a626067d319c792dfa5e4c697054a3a4 | 331e1d16416bc8f5d6e467cf52c5e3d8620c8f27 | refs/heads/master | 2021-09-09T05:55:19.163518 | 2018-03-14T03:31:33 | 2018-03-14T03:31:33 | 123,377,775 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 855 | cpp | #include<iostream>
#include<vector>
using namespace std;
const int maxn = 505;
int N, M;
int degree[maxn];
bool vis[maxn];
vector<int> pre[maxn];
int num = 0;
void dfs(int s) {
num++;
vis[s] = true;
for (int i = 0; i < pre[s].size(); i++) {
if (vis[pre[s][i]] == false) {
dfs(pre[s][i]);
}
}
}
int main() {
... | [
"siwangrufeng666@gmail.com"
] | siwangrufeng666@gmail.com |
3760259dc8e94974e23c51e1c3f370d8f90ff8d6 | 53bbde66a89cf44fa459509a0c5154df2a447494 | /detection/src/skeleton_detection.cpp | 0c56f1fbea0015e2d41759ef117ec307f475800b | [] | no_license | marketto89/open_ptrack | 0fb41c9d3047d79a0aa4116be9be73185ce2de86 | f3790b6aa1139f6b72c48ec43e8ee890e2fa704d | HEAD | 2019-07-06T15:58:08.375880 | 2017-09-26T21:34:58 | 2017-09-26T21:34:58 | 103,685,443 | 37 | 10 | null | null | null | null | UTF-8 | C++ | false | false | 7,332 | cpp | /*
* Software License Agreement (BSD License)
*
* Copyright (c) 2011-2012, Matteo Munaro [matteo.munaro@dei.unipd.it], Filippo Basso [filippo.basso@dei.unipd.it]
* Copyright (c) 2013-, Open Perception, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modifi... | [
"carraromarco89@gmail.com"
] | carraromarco89@gmail.com |
c043c140ed2280f5d936498873d3b84f9d28c44b | 5b4f65ddbf6c806025a433d062c71767af51ef7d | /src/qt/editaddressdialog.cpp | 2defed58af695720c8d0ef44a68c115f9f06733f | [
"MIT"
] | permissive | TangCoin/tangcoin_src | 659ed547d915305f83dfec29e4d51e117ce9f70e | 370e1de9b0d3867aba8724c2b63154331296ee41 | refs/heads/master | 2021-01-18T14:06:20.426523 | 2014-01-04T05:31:29 | 2014-01-04T05:31:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,565 | cpp | #include "editaddressdialog.h"
#include "ui_editaddressdialog.h"
#include "addresstablemodel.h"
#include "guiutil.h"
#include <QDataWidgetMapper>
#include <QMessageBox>
EditAddressDialog::EditAddressDialog(Mode mode, QWidget *parent) :
QDialog(parent),
ui(new Ui::EditAddressDialog), mapper(0), mode(mode), mod... | [
"sontek@gmail.com"
] | sontek@gmail.com |
6f5fd09fce7adf5f22b0a15ab303f95c2bd7f72f | 669fa4c410e0e71102b1f896529068a471e15db6 | /libraries/EctoControl/include/EctoControl/EctoSMC/EctoSMC.h | 607dd5210d912843f2ac9b7266ce088e2462860a | [] | no_license | Botbusters4635/2019RobotCode | f014dc83d3e8cb0839807ca5ab4fb0ed85e6634a | 2c056881107a085ddbb134ce7fa06c38bb065bc4 | refs/heads/master | 2020-12-04T09:44:42.379433 | 2020-01-04T07:16:03 | 2020-01-04T07:16:03 | 231,715,976 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,526 | h | //
// Created by alberto on 02/09/19.
//
#ifndef SLIDING_MODE_CONTROL_SLIDINGMODECONTROL_H
#define SLIDING_MODE_CONTROL_SLIDINGMODECONTROL_H
#include "EctoControl/EctoController.h"
#include "EctoControl/EctoControllerOutput.h"
#include "EctoControl/EctoControllerSource.h"
struct EctoSMCConfig {
double k2 = 0.0; ... | [
"empoleom@gmail.com"
] | empoleom@gmail.com |
ccec18908774619abe2883b79d861d6cc2f08b3a | cd060892280983a64d1d463fcea7b3edbf843cf8 | /former_work/BMC/Interframe/inc/Singleton.h | aa427c416bdecaf3486c43d43a1b9837a41f6db2 | [] | no_license | zhvirus/zhangtina | c8741d3cab4cc0929db6776dde3ce5a4733fabe1 | 88a6f85992861862e22cd9edbe852f45b8a62775 | refs/heads/master | 2021-01-21T04:31:30.673821 | 2016-06-29T03:14:16 | 2016-06-29T03:14:16 | 14,973,156 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 757 | h | #pragma once
template <typename T>
class Singleton
{
protected:
static T* ms_Singleton;
public:
Singleton( void )
{
assert( !ms_Singleton );
#if defined( _MSC_VER ) && _MSC_VER < 1200
int offset = (int)(T*)1 - (int)(Singleton <T>*)(T*)1;
ms_Singleton = (T*... | [
"zhvirus@hotmail.com"
] | zhvirus@hotmail.com |
c32b717e4b1080c356547c8da1d07e0e27d05245 | 2d56e306d86fadefea165e45da03a33c98187892 | /main.cpp | cd1dd3ffc7fb5b4f5f58c03b36f5526422949e3b | [] | no_license | areyeslo/Mass-Spring | ab7518d03179453f286235ab58caade52c65cc35 | 9417fb2d81201559920f3bb0c274d17d500f67c6 | refs/heads/master | 2021-01-22T13:13:59.662956 | 2015-02-13T04:35:06 | 2015-02-13T04:35:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 262 | cpp | /*!
* \author Babak Tootoonchi
* \version 1.0
* \date Sept. 2014
*/
#include <QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
| [
"b_tootoonchi@yahoo.com"
] | b_tootoonchi@yahoo.com |
b57b88e3ac97de7e07b7938523bcded070af1569 | f2db2d18b559cf3eb776c630a25a4f4e1f9ac433 | /utility/asynccontext.h | c7a41d8f35311d64e4ae8a598f5f80bcbbd1fcac | [
"Apache-2.0"
] | permissive | bliotti/beam | c1bc6d0ca9d4b447ed5283365d26da0844e2284d | 8560926b391917e122c3c9bbebdbf569d5c707ad | refs/heads/master | 2020-03-28T21:40:01.778751 | 2018-09-17T17:14:51 | 2018-09-17T17:16:49 | 149,173,152 | 0 | 0 | Apache-2.0 | 2018-09-17T19:18:21 | 2018-09-17T18:55:09 | C | UTF-8 | C++ | false | false | 2,660 | h | // Copyright 2018 The Beam Team
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | [
"strylets@gmail.com"
] | strylets@gmail.com |
61adebf40bd37f660187a6124ae3703d67ebff30 | b9995bd3337e0c0175e9480fd8961b6f414b34fe | /Temp/StagingArea/Data/il2cppOutput/Il2CppGenericMethodDefinitions.cpp | e1ff2f5751302f078f3dcc4f10081932cab67b10 | [] | no_license | PanattaE/Tarot_Numerology | 7dbfe50010e47b895d2a66c73b03b221474e8a75 | ebfdb3698ad5daf69998cc4efc9ee1651164884b | refs/heads/master | 2021-09-28T19:05:46.618751 | 2018-11-19T16:35:40 | 2018-11-19T16:35:40 | 155,305,434 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 94,015 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include "class-internals.h"
#include "codegen/il2cpp-codegen.h"
extern const Il2CppMethodSpec g_Il2CppMethodSpecTable[4847] =
{
{ 86, 0, -1 },
{ 94, 0, -1 },
{ 303, 0, -1 },
{ 486, 0, -1 },
{ 770, -1, 0... | [
"38263469+PanattaE@users.noreply.github.com"
] | 38263469+PanattaE@users.noreply.github.com |
f1a707259c97085cde15280bc89184462779e96f | 7e29f5b8895fa0a3e3bd2fa65fd55e931a40c4f4 | /flight_controller_logger/flight_controller_logger.ino | b515b2baa9aeaf8d5646351e747b1ac4f3f053a2 | [
"MIT"
] | permissive | gleguizamon/rocketry | 524b83063b7ead09f304a7fd8bb4a5215d48d2e3 | 5beeef528793a90c21836bd4a2be7be5127f8afc | refs/heads/master | 2023-09-02T10:06:40.363448 | 2021-10-23T14:17:41 | 2021-10-23T14:17:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,461 | ino | /* ***************************************************************************
* This sketch contains flight controller logic for candy rockets. *
* *
* Sketch uses Arduino Nano controller, and it contains limited amount of *
* R... | [
"i.vereshchagin@gmail.com"
] | i.vereshchagin@gmail.com |
49b36badbdfe3fae7aab9102c482668e45ea7a02 | 3a85ce2e7564d71f00aee149ecbcd373002de0b1 | /ssd1306_打印排布/ssd1306_打印排布.ino | 98ddf823499e12e73ce7c6654470b72a37c5e67b | [] | no_license | cnc4less/arduino_esp8266_lgt8f328p | 3d4ad0d6bc61bff2f95d7a8466a20f383617f640 | 7b758ac9d686707d338a361ed7d14360fe596807 | refs/heads/master | 2023-06-02T01:07:14.002724 | 2021-06-24T06:15:09 | 2021-06-24T06:15:09 | 397,990,537 | 1 | 0 | null | 2021-08-19T15:30:26 | 2021-08-19T15:30:26 | null | UTF-8 | C++ | false | false | 29,847 | ino | /*
PrintUTF8.ino
Use the (Arduino compatible) u8g2 function "print" to draw a text.
Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
Copyright (c) 2016, olikraus@gmail.com
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
ar... | [
"you@example.coms"
] | you@example.coms |
f71baf5ba0ba5e116908367887f58bff8e07bc99 | 4077a34df856709bcf63eb0fbb6ce95eff3d9cd8 | /ishape.h | cf794d42566893969267186203f908eadd9c860a | [] | no_license | karennik98/slideshow | bb631ed38df60c60604f426c59e8faf03164141d | 499629aa93296cd45b92e214f914a78dd852077c | refs/heads/master | 2020-11-24T16:26:30.197807 | 2019-12-22T23:53:44 | 2019-12-22T23:53:44 | 228,245,100 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 249 | h | #ifndef ISHAPE_H
#define ISHAPE_H
#include <QString>
class IShape
{
public:
IShape(QString name)
: mName(name)
{}
QString getName() { return mName; }
virtual ~IShape() {}
protected:
QString mName;
};
#endif // ISHAPE_H
| [
"karen.nikoghosyan.98@gmail.com"
] | karen.nikoghosyan.98@gmail.com |
4236b131b84420aa179eb0305fb37e4f66b32e3f | 549270020f6c8724e2ef1b12e38d11b025579f8d | /recipes/zpp_throwing/all/test_package/test_package.cpp | c723a245f1637cf7302f34903d29ca38ed07bac0 | [
"MIT"
] | permissive | conan-io/conan-center-index | 1bcec065ccd65aa38b1fed93fbd94d9d5fe6bc43 | 3b17e69bb4e5601a850b6e006e44775e690bac33 | refs/heads/master | 2023-08-31T11:34:45.403978 | 2023-08-31T11:13:23 | 2023-08-31T11:13:23 | 204,671,232 | 844 | 1,820 | MIT | 2023-09-14T21:22:42 | 2019-08-27T09:43:58 | Python | UTF-8 | C++ | false | false | 666 | cpp | #include <cstdlib>
#include <iostream>
#include "zpp_throwing.h"
zpp::throwing<int> foo(bool success) {
if (!success) {
// Throws an exception.
co_yield std::runtime_error("My runtime error");
}
// Returns a value.
co_return 1337;
}
int main() {
return zpp::try_catch([]() -> zpp:... | [
"noreply@github.com"
] | conan-io.noreply@github.com |
eedb7361b096a8dc585c92b24e55b1fb90437b14 | 43a2fbc77f5cea2487c05c7679a30e15db9a3a50 | /Cpp/External/SDK/BP_RB_Rank02_RankDesc_classes.h | 10dc2fca0e1a1695a149b241ae140b8b8da1d6ba | [] | no_license | zH4x/SoT-Insider-SDK | 57e2e05ede34ca1fd90fc5904cf7a79f0259085c | 6bff738a1b701c34656546e333b7e59c98c63ad7 | refs/heads/main | 2023-06-09T23:10:32.929216 | 2021-07-07T01:34:27 | 2021-07-07T01:34:27 | 383,638,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 797 | h | #pragma once
// Name: SoT-Insider, Version: 1.102.2382.0
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//-----------------------------------------------... | [
"Massimo.linker@gmail.com"
] | Massimo.linker@gmail.com |
63d1506de49732ed24f902fb411c7ca1ff9ad6fd | e104df78ab10c424b52c3cc37e6e5e7572a00d1e | /3rdparty/OpenGL/include/Simd/SimdSse2AddFeatureDifference.cpp | a140fad47c1b4eae1b4afc2fcee70dcf0f2d18a5 | [] | no_license | jsyang2207/ImageEvaluate | f50edc00b938f4ad9bd46e0cc68bc13b922f1600 | 59755d38fe48e169f2a02fca4e6f1929a8e5be6d | refs/heads/master | 2022-12-02T18:06:26.090997 | 2020-08-19T05:25:54 | 2020-08-19T05:25:54 | 288,387,109 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,057 | cpp | /*
* Simd Library (http://ermig1979.github.io/Simd).
*
* Copyright (c) 2011-2017 Yermalayeu Ihar.
*
* 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 limi... | [
"jsyang@4dreplay.com"
] | jsyang@4dreplay.com |
7854b78e34c35e437c64a3f2b05d8f942214f47b | 6b01517368d655e18759e5e3f09af183d0f68b35 | /httpdaemon.h | dc53f9d6c4e31d221d5e4b0d825adbe376f31ef5 | [
"Apache-2.0"
] | permissive | paulbarbu/http-daemon | d2317eeafbf56a2c22bdf976ad3f111c426473ba | 77eb81513250f1dca72626d62e6476d1c7e0898c | refs/heads/master | 2021-01-01T20:00:27.353222 | 2014-05-10T18:13:31 | 2014-05-10T18:13:31 | 11,590,558 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 270 | h | #ifndef HTTPDAEMON_H
#define HTTPDAEMON_H
#include <QtNetwork/QTcpServer>
class HTTPDaemon : public QTcpServer
{
Q_OBJECT
public:
explicit HTTPDaemon(QObject *parent = 0);
private:
void incomingConnection(int socketDescriptor);
};
#endif // HTTPDAEMON_H
| [
"barbu.paul.gheorghe@gmail.com"
] | barbu.paul.gheorghe@gmail.com |
f32c6804a4e4a5ea80419e551ce916c28ee95839 | f81124e4a52878ceeb3e4b85afca44431ce68af2 | /re20_3/processor35/constant/polyMesh/faceProcAddressing | 45363ca5c241b0470af2fb0d1f3088cbb01d43ee | [] | no_license | chaseguy15/coe-of2 | 7f47a72987638e60fd7491ee1310ee6a153a5c10 | dc09e8d5f172489eaa32610e08e1ee7fc665068c | refs/heads/master | 2023-03-29T16:59:14.421456 | 2021-04-06T23:26:52 | 2021-04-06T23:26:52 | 355,040,336 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 26,555 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*-------... | [
"chaseh13@login4.stampede2.tacc.utexas.edu"
] | chaseh13@login4.stampede2.tacc.utexas.edu | |
dd8d757ee2af4f162ff11201f3b04c3a910066e5 | b2531eced9be01fe6c8daf6949633454f24db47f | /CISCO/MFCApplication1/CXMLNode.h | 766cbf853ffef246840189e43be09805d0c32795 | [] | no_license | CheretaevIvan/VisualStudioProjects | 6f7575c97ead4b118a21d70c5a3ba1895e955cb5 | abdcac001e0d73387e2f7a704b8ea69e30ade2be | refs/heads/master | 2021-01-10T18:17:30.379719 | 2016-03-20T21:10:21 | 2016-03-20T21:10:21 | 54,338,383 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 6,528 | h | // Автоматически создаваемые классы-оболочки IDispatch, созданные при помощи мастера добавления класса из библиотеки типов
#import "C:\\Program Files (x86)\\Microsoft Office\\Office15\\MSWORD.OLB" no_namespace
// CXMLNode класс-оболочка
class CXMLNode : public COleDispatchDriver
{
public:
CXMLNode(){} // Вызывает ко... | [
"ivan_cheretaev@inbox.ru"
] | ivan_cheretaev@inbox.ru |
3768074edf54238e6eba6d5d6d8df54676abc426 | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14044/function14044_schedule_5/function14044_schedule_5.cpp | 27566ecbf5a395ab49a09edb5833e77e97c92993 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 910 | cpp | #include <tiramisu/tiramisu.h>
using namespace tiramisu;
int main(int argc, char **argv){
tiramisu::init("function14044_schedule_5");
constant c0("c0", 8192), c1("c1", 8192);
var i0("i0", 0, c0), i1("i1", 0, c1), i100("i100", 1, c0 - 1), i101("i101", 1, c1 - 1), i01("i01"), i02("i02"), i03("i03"), i04("... | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
0879ce64734228681e50557c06f42164f1351636 | 933f154b469178fb9c3dd648bc985960c19290db | /initial/57_InsertInterval/Solution.cpp | 98cca8ee0c25bc2774c5d18401113e763c24bf76 | [] | no_license | zywangzy/LeetCode | c5468ea8b108e9c1dec125fb07a5841348693f96 | df2cba28ed47938073ab1ffc984af158e3de7611 | refs/heads/master | 2021-09-29T13:39:58.151078 | 2018-11-24T22:35:04 | 2018-11-24T22:35:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,253 | cpp | #include "../IOLib.hpp"
/**
* Definition for an interval.
**/
struct Interval {
int start;
int end;
Interval() : start(0), end(0) {}
Interval(int s, int e) : start(s), end(e) {}
};
class Solution {
public:
vector<Interval> insert(vector<Interval>& intervals, Interval newInterval) {
if(in... | [
"wangzhiy@usc.edu"
] | wangzhiy@usc.edu |
8868610de6bf6cec38a0b0d4b028d568412d8886 | afe6fdfee554518ada67eda2be5ccac0bb9f6829 | /class-function-pointers/main.cpp | 982f89936b53b6b152f2a2957ba61894ba306dbf | [] | no_license | watervapour/experiments | 11d196c7868860110d8d1fb621d5c5f8a799c9a9 | 11f6d8032465ef5c15b94a53eebb6b2f40cefd20 | refs/heads/master | 2023-04-03T11:35:00.420958 | 2021-04-10T05:06:46 | 2021-04-10T05:06:46 | 356,465,680 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,006 | cpp | #include <iostream>
using namespace std;
class testClass
{
public:
testClass();
void funcA();
void funcB();
void callArrayFunc(int);
void (testClass::*classArr[2])() = {&testClass::funcA, &testClass::funcB};
// void (testClass::*arr[2])()={&testClass::funcA};
// void (testClass::*functionPointer)() = &testClas... | [
"watervapour@users.noreply.github.com"
] | watervapour@users.noreply.github.com |
b63ec7e004dfb8b70c9c008fa9ae0e7e16385ccc | 745033a240b005a675b12ca9a83f6463bb931b4e | /215. Kth Largest Element in an Array.cpp | 8352b1889bcaca19c5b414a5c54bb7f2857a80f0 | [] | no_license | zhuhaochuan/Leetcode | ef9b36f7b0368331d0ee8cc2089dc4dcd121cc60 | 28442a733093d6fd4fe078ceba3d1bee5655ce1d | refs/heads/master | 2018-09-04T00:52:37.636977 | 2018-06-22T07:06:42 | 2018-06-22T07:06:42 | 111,297,678 | 8 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 964 | cpp | //分析:找到一个无序数组当中第k大的元素
//最简单的做法就是将原始数组排序然后遍历排好序的数组
//快速排序带来的时间复杂度为o(nlog(n))
class Solution {
public:
int findKthLargest(vector<int>& nums, int k) {
sort(nums.begin(),nums.end(),greater<int>());
return nums[k-1];
}
};
//是否可以优化?采用堆的方式更好因为只需要维护一个只有k个元素的堆,每次进来的元素当堆的大小超过k的时候就pop堆顶的元素
//这样只需要构建一个k个元... | [
"1525722736@qq.com"
] | 1525722736@qq.com |
d6100b56f3db15199333536e70a1b61fe746eca9 | c0cd026edba9e57003e6519d4485ee520a709498 | /Test/Intermediate/Build/Win64/UE4Editor/Inc/Test_C/MainChar_GameMode.gen.cpp | 9f5a248d2a32763c04f9efd268ddea07fe29ff93 | [] | no_license | ZeyadTarek000/Test | 2f27029ea4d36ddda0b86330771fcf4c152298cc | 365819dff9567d05e269e045883f8fbef45eaeed | refs/heads/master | 2022-11-19T16:32:40.918321 | 2020-07-13T08:57:27 | 2020-07-13T08:57:27 | 279,245,218 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,507 | cpp | // Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
==============================================================... | [
"zeyad.tarek000@gmail.com"
] | zeyad.tarek000@gmail.com |
abf7e5e58b62c0ee24a4e76e7226313794d0b72a | 89dedd7f3c7acc81d12e2bcb2e716f9af9e5fa04 | /third_party/WebKit/Source/core/layout/compositing/GraphicsLayerTreeBuilder.h | b314447842ac3af5b3559a00b12ae82404ce76ca | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"MIT",
"Apache-2.0"
] | permissive | bino7/chromium | 8d26f84a1b6e38a73d1b97fea6057c634eff68cb | 4666a6bb6fdcb1114afecf77bdaa239d9787b752 | refs/heads/master | 2022-12-22T14:31:53.913081 | 2016-09-06T10:05:11 | 2016-09-06T10:05:11 | 67,410,510 | 1 | 3 | BSD-3-Clause | 2022-12-17T03:08:52 | 2016-09-05T10:11:59 | null | UTF-8 | C++ | false | false | 2,151 | h | /*
* Copyright (C) 2009, 2010 Apple Inc. All rights reserved.
* Copyright (C) 2014 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retai... | [
"bino.zh@gmail.com"
] | bino.zh@gmail.com |
3f568311ca8d25e45276073bb4603ff564bafb8c | 819b5880d30bb78886aa20a857e5cf21bae985f5 | /src/main.cpp | 4d8f45c0bc93bc8f8c8ac803efce9ebe43ff768b | [
"MIT"
] | permissive | skipTheR/liquid | 27c4b1aeb169fd55081b63d826cf39fc78455b0d | acc34428b4f814475fd95284e8af541c23694dbc | refs/heads/master | 2022-12-21T07:01:11.824669 | 2020-10-04T09:22:20 | 2020-10-04T09:27:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,263 | cpp | #include "main.h"
#include <iostream>
#include <sstream>
#include <stdio.h>
#include <cassert>
#include "config.h"
#include "CodeGenContext.h"
#include "AstNode.h"
#include "GetOpt.h"
extern int yyparse();
extern int yylex_destroy();
extern FILE* yyin;
extern liquid::Block* programBlock;
extern std::stack<std::string... | [
"xkbeyer@gmail.com"
] | xkbeyer@gmail.com |
e074624578ef81a78831190699c51ce2a59b9d30 | fd903f3e84195288da2fd230d39baaa4978c3456 | /cluster/clustering_util.hpp | ae0037c8a4e96ecd507c788111c4795d721d1651 | [
"MIT"
] | permissive | LilianaCaldeira/brainclustering | c4bd1e1cde2383b6235ec2835f8cf4fb96063c99 | 853bd46e12338da9ae4fe348c508163d9951feb3 | refs/heads/main | 2023-05-31T01:08:35.125361 | 2021-06-15T18:47:50 | 2021-06-15T18:47:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,180 | hpp | #pragma once
#include <cstddef>
#include <random>
#include <iostream>
#include "munkres.cpp"
namespace brainclustering {
struct best_pair {
size_t cluster;
double distance;
};
struct label_pair {
double init{0.0};
double end{0.0};
};
void build_labels_divisive(nd... | [
"giulia.baldini.11@gmail.com"
] | giulia.baldini.11@gmail.com |
8a3a669260ddeb781ec6bd10c3ec1061300cbaa0 | 513d082fe2216926780da0c64bafa501bc26dfb9 | /1047.cpp | c501a6d00a4c1f68d559382da755463866deb1f2 | [] | no_license | ismailrz/URI-Online-Judge- | b5fb465e0782a9f4057b34bce3721651640b1a4c | 07ab12d065e2f4367ae57f3079c80a98b7c2c8c7 | refs/heads/master | 2020-05-19T05:27:20.141904 | 2019-05-04T03:47:31 | 2019-05-04T03:47:31 | 184,848,542 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 549 | cpp | #include<stdio.h>
int main()
{
int a,b,c,d,M,H;
scanf("%d%d%d%d",&a,&c,&b,&d);
if(a==b && c==d){
H=24;M=0;
}
else if(a>b){
if(c>d){
H=24-a+b-1;
M=60-c+d;
}
else{
H=24-a+b;
M=60-c+d-60;
}
}
else if(b>a){
... | [
"ismailcse14@gmail.com"
] | ismailcse14@gmail.com |
6201c8a9b8a8ce73f1184a3625b4c21e2fbeebf1 | bf2869a0d080fa547c2557962659fa0822c4f6eb | /Bean/bean/env/native/component/ComponentGetForegroundExecutor.cpp | 92ba89ad7b31eecfcc4c0dffbd8615ec3065cd65 | [] | no_license | desktopgame/Bean | 966f8a148c94bb1035373a811c910e3f50f6d238 | 743904b5d61d4914536e5fbb678236199abe6f0b | refs/heads/master | 2021-09-26T08:43:48.247461 | 2017-11-11T06:22:01 | 2017-11-11T06:22:01 | 110,304,259 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 555 | cpp | #include "ComponentGetForegroundExecutor.h"
#include "../../../env/user/UserColor.h"
#include "../../../env/user/UserComponent.h"
//public method---
ComponentGetForegroundExecutor::ComponentGetForegroundExecutor() {
}
ComponentGetForegroundExecutor::~ComponentGetForegroundExecutor() {
}
Object_ * const ComponentGetF... | [
"koya0306@outlook.jp"
] | koya0306@outlook.jp |
37e9e948752ffa808d61aa45bebaea81e06968fa | 5e575cfae10bf1a38f05b814e6c18543a2c11d7d | /include/openmp.hpp | 3d2bb4954675573bf563a56d0613a17c119f962d | [
"MIT"
] | permissive | shohirose/sphcode | e1be1c000c2750353e974b393a79213b340f6941 | 67efb8882520cd8d53ca12ec07439dfa515fd862 | refs/heads/master | 2020-07-25T09:46:43.478914 | 2019-09-02T13:57:38 | 2019-09-02T13:57:38 | 208,250,132 | 0 | 0 | MIT | 2019-09-13T11:21:28 | 2019-09-13T11:21:28 | null | UTF-8 | C++ | false | false | 1,191 | hpp | #pragma once
#include <memory>
#include "defines.hpp"
#ifdef _OPENMP
#include <omp.h>
#endif
class omp_real {
int m_threads;
std::unique_ptr<real[]> m_values;
public:
omp_real(real const v = 0.0)
{
#ifdef _OPENMP
m_threads = omp_get_max_threads();
#else
m_threads... | [
"40363174+mitchiinaga@users.noreply.github.com"
] | 40363174+mitchiinaga@users.noreply.github.com |
fb0e33d15173e0a81c84f1646274a298b4a18a5c | 37013cd71bb5516e995c79fb25283ddd9c0bc376 | /SnakeMap.cpp | 2f7f837ee407d9732e52d4a276cbf88b6d6e120e | [] | no_license | opcow/Snake | bd962ad95870b0b4bd29a61936ce8bb358045ef4 | a9c6a8ccb0f714630b356ce734119d75787def6b | refs/heads/master | 2021-01-23T09:34:11.462093 | 2012-08-12T08:01:06 | 2012-08-12T08:01:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,021 | cpp | #include "SnakeMap.h"
CSnakeMap::CSnakeMap(int width, int height, SDL_Surface * surface)
{
mWidth = width;
mHeight = height;
mMap = new unsigned char[width * height];
mSurface = surface;
mTextures = 0;
}
CSnakeMap::~CSnakeMap(void)
{
if (mMap != 0)
delete mMap;
}
void CSnakeMap::AddT... | [
"mitch.crane@gmail.com"
] | mitch.crane@gmail.com |
4f5ed99a5393c12f868aa98429baccdcdab3e0e8 | a9c19db44ae2bf011c09c553fe680dc70cc9c74e | /Station Seven/Station Seven/ParticleSystem.h | b5ac4d319caecffc773c752b8c7058474018c0fb | [] | no_license | SeanAbnerNash/CA1---Space-Station-Rescue | 7b9d65e42323f0c46657738340c83a0a68b01ab0 | 70b0064eaf405302a8d7e04427794ec6c66618eb | refs/heads/master | 2020-11-30T22:08:29.767498 | 2020-01-17T22:43:53 | 2020-01-17T22:43:53 | 230,490,550 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 451 | h | #pragma once
#include "Particle.h"
class ParticleSystem
{
public:
ParticleSystem(int count, sf::Vector2f pos); // Constructor
// Update and draw functions
void update();
void draw(sf::RenderWindow& window);
std::vector<Particle*> m_particles; // The vector particles the system handles
private:
void resetPa... | [
"patrykwysocki"
] | patrykwysocki |
4074a8c972e5a3fbb4114c41901e746532db2279 | eb2510e9d6af1534f6275903e96aba6419e0b6d0 | /stm32/combined_tests/src/tfw_config.hpp | 51886c899dfd29ac3ea247dc1ccab543a4aab6eb | [
"MIT"
] | permissive | hodea/hodea-lib-testing | c3e5f216414a5a4dd5f6a0ff92b126a56aa679a1 | 5a51c1146a51a951e454c8c0350c902080e054d7 | refs/heads/master | 2021-09-20T11:56:00.043925 | 2018-08-09T07:48:29 | 2018-08-09T07:48:29 | 98,781,027 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 452 | hpp | // Copyright (c) 2017, Franz Hollerer.
// SPDX-License-Identifier: MIT
/**
* Test framework (tfw) configuration.
* \author f.hollerer@hodea.org
*/
#if !defined TFW_CONFIG_HPP
#define TFW_CONFIG_HPP
#include "tfw.hpp"
constexpr Tfw_log_level tfw_log_level = Tfw_log_level::info;
constexpr bool enable_pin_config_tes... | [
"f.hollerer@gmx.net"
] | f.hollerer@gmx.net |
7991f8e70b30bdb74200cf866848724dc2c7d8ec | 727c574f0b5d84ae485b852ccf318063cc51772e | /XJOJ/148 汽车到哪了.cpp | acad1f9d4291187ae6c02529abd7c0722dba48f7 | [] | no_license | cowtony/ACM | 36cf2202e3878a3dac1f15265ba8f902f9f67ac8 | 307707b2b2a37c58bc2632ef872dfccdee3264ce | refs/heads/master | 2023-09-01T01:21:28.777542 | 2023-08-04T03:10:23 | 2023-08-04T03:10:23 | 245,681,952 | 7 | 3 | null | null | null | null | GB18030 | C++ | false | false | 1,145 | cpp | /*
输入站与站之间的距离,再输入路程数,求现在在哪一站或哪两站之间
读入站与站之间的距离,改写成每站与起点的距离
再读入路程数,用二分查找属于哪个位置
不用二分会超时的
关键词:二分查找
*/
#include<iostream>
using namespace std;
int main()
{
int station[10001];
int t;
cin>>t;
while(t--)
{
int n,m,ask;
cin>>n>>m;
station[1]=... | [
"noreply@github.com"
] | cowtony.noreply@github.com |
df8ff7deee27a2ad49ec29487a43f1c14aa539ec | 5cb76c3273fe6f133a3ba8082799d20bfe2e9bf4 | /test/shared/test_ctor.cpp | dcab9ef63dbf83685f77fcc4ff4986b69d2cdefa | [] | no_license | Answeror/yapimpl | ef66caca988efd8198827301af36ab9e73bc1122 | 26f43eddb297937925354fe6f21b5a09e48fe76a | refs/heads/master | 2021-03-12T22:45:52.974985 | 2014-11-06T07:02:50 | 2014-11-06T07:02:50 | 9,958,622 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,333 | cpp | #include <boost/test/unit_test.hpp>
#include "yapimpl/include/shared.hpp"
#include "yapimpl/include/shared_impl.hpp"
namespace {
struct no {
no() : m(yapimpl::use_default_ctor) {}
~no() {}
int a() const { return m->a; }
struct impl {
int a;
impl() : a(1) {... | [
"answeror@gmail.com"
] | answeror@gmail.com |
acfd5cd2d9cbb6c1b204767297c9add4927ad645 | 16d51d41a4a6fd24f69995d8756a3f8a6bb8c50a | /HW3/ss/Matrix.h | 6a1cc3259ed5a3f0f79c88be5b85d935e2863e29 | [] | no_license | jjfrank0324/Data_Structure | 9c10d8e3cdc4c264de33bd8185cc30ab4b42d93b | 5dc190eac91f1748d83ec1b5eb9b13f5b04caa05 | refs/heads/master | 2022-12-02T16:05:47.383793 | 2020-08-24T18:19:28 | 2020-08-24T18:19:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,272 | h | #include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#include <sstream>
using namespace std;
class Matrix{
public:
Matrix();
Matrix(const Matrix& M2);
Matrix (unsigned int arows, unsigned int acols, double num);
~Matrix() ;//destruc... | [
"noreply@github.com"
] | jjfrank0324.noreply@github.com |
533919816b0313748257d37115cce4d7cdd4e459 | 0f4012d03230b59125ac3c618f9b5e5e61d4cc7d | /Cocos2d-x/2.0-x-2.03_branch_231_NoScript/samples/HelloCpp/Classes/SIX_Classes/SIX_RippleGrid3D.h | bd87669652132f824d09f301cc34bbb1765a76ec | [
"MIT"
] | permissive | daxingyou/SixCocos2d-xVC2012 | 80d0a8701dda25d8d97ad88b762aadd7e014c6ee | 536e5c44b08c965744cd12103d3fabd403051f19 | refs/heads/master | 2022-04-27T06:41:50.396490 | 2020-05-01T02:57:20 | 2020-05-01T02:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 478 | h | #pragma once
#include "cocos2d.h"
USING_NS_CC;
#define vertext_len 3
class SIX_RippleGrid3D:public CCGrid3D
{
public:
SIX_RippleGrid3D();
~SIX_RippleGrid3D();
static SIX_RippleGrid3D* create(const ccGridSize& gridSize);
virtual void update(float dt);
bool initWithSize(const ccGridSize& gridSize);
void dropSto... | [
"hanshouqing85@163.com"
] | hanshouqing85@163.com |
ef7243ae04c5492f87167ee3497518cb99d7368a | ad19976b5b1c9279ae8757619b3d7ec8a6b0ee6a | /src/qt/transactionview.cpp | f35871fd6faac7fc36141d18fbbe39b18d15cd9e | [
"MIT"
] | permissive | bixcoin/bixcoinv2 | 7caab4430a6b01d2cc2e09419585e1d7ee77108a | 84fb8a759ab5b079b71f90cd69ad59bf63e3a70b | refs/heads/master | 2021-09-01T14:25:19.990605 | 2017-12-27T12:55:12 | 2017-12-27T12:55:12 | 115,520,932 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,306 | cpp | #include "transactionview.h"
#include "transactionfilterproxy.h"
#include "transactionrecord.h"
#include "walletmodel.h"
#include "addresstablemodel.h"
#include "transactiontablemodel.h"
#include "bitcoinunits.h"
#include "csvmodelwriter.h"
#include "transactiondescdialog.h"
#include "editaddressdialog.h"
#include "op... | [
"bixcoin.co@gmail.com"
] | bixcoin.co@gmail.com |
5a75a1f1806cea5b35d425092e824970d633a91c | 6a1cc167ca55bb52ba24c76bf87c5e325625ca93 | /dsa-assignment1/wor/board.h | b80629c7ef4f0187efe19954f4c459615e3e18a9 | [] | no_license | stellalie/dsa | 94948a9dc93a03e100cc7f074bd6251d04227e2d | 5b5de71ddd2ff521214b4d7b731c51a48e4dd47b | refs/heads/master | 2021-01-13T04:21:48.608309 | 2012-04-01T13:43:22 | 2012-04-01T13:43:22 | 3,892,724 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,334 | h | #ifndef _BOARD_H
#define _BOARD_H
#include "constants.h"
#include "piece.h"
#include "move.h"
class board
{
// the board object manages the board.
// Particularly, which pieces are on each square
private:
// the array that hold the board square and which pieces are on it
piece* squares[MAXDIM][MAXDI... | [
"ask@stellalie.com"
] | ask@stellalie.com |
1313fcafcf78e4f327aa5cb977a9d12860132529 | c5ba091cb650334f8538409bff1947d8d35d1ddd | /Coding/fw/lib/IO/io.cpp | 51be80809e80b38706c3597c6afc5367035da07f | [
"BSD-3-Clause"
] | permissive | zengqz98/esp32-can-iot | d457b2ad9c06868c2b71b933e9ee838285dee3d0 | 7d3f17cc18107fe80ecb2b8c116964ef7bebb800 | refs/heads/master | 2023-03-11T17:58:16.487406 | 2021-02-23T06:39:56 | 2021-02-23T06:39:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,743 | cpp | /* MIT License
*
* Copyright (c) 2019 - 2020 Andreas Merkle <web@blue-andi.de>
*
* 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 limitation the ri... | [
"Gabryel.Reyes@newtec.de"
] | Gabryel.Reyes@newtec.de |
9ffd1cf455a188889c98bcc0531d41491e0adc7c | 579b1e5d59fcd2906a0bcfaea28bbe883e00955d | /Maximum of all subarrays of size k.cpp | 3af9769a3a7afea35b2192fee95f895d432d5da0 | [] | no_license | Ashish-kumar7/Must-do-interview-preparation-gfg | 61d49331d649accfa176972384f1be9b2263836c | e6745ed9dfe5833e9cfa610af945a4c296ba4a18 | refs/heads/master | 2023-08-16T17:07:36.716682 | 2020-10-04T18:52:52 | 2020-10-04T18:52:52 | 282,170,669 | 4 | 1 | null | 2022-11-07T07:52:44 | 2020-07-24T08:52:12 | C++ | UTF-8 | C++ | false | false | 708 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
//code
int t;
cin>>t;
while(t--){
int n;
cin>>n;
int k;
cin>>k;
int nums[n];
for(int i=0;i<n;i++){
cin>>nums[i];
}
vector<int>V;
deque<int>dq;
vector<int>ans;
for(int i=0;i<n;i++){
... | [
"ashishkumar357ak@gmail.com"
] | ashishkumar357ak@gmail.com |
f3fd4f45f33092dcac643a93aa81e75cf443e7c6 | 0dd888bd2cff61c3a8fda77bc04fd6430d2f3a7f | /include/xpln/obj/manipulators/embeddable/AttrAxisDetentRange.h | 6c384f27dfb1b51636f90db1cfd8503575c0d9f9 | [
"BSD-3-Clause"
] | permissive | steptosky/XplnObj | 48af5a2578e99e724f3087c26df1fc59fd6a2b44 | 06fb98aa325b49da68739d5409945d058f8e46cc | refs/heads/master | 2021-01-19T00:29:05.129791 | 2018-11-27T11:26:14 | 2018-11-27T11:26:14 | 87,170,493 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,915 | h | #pragma once
/*
** Copyright(C) 2018, StepToSky
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are met:
**
** 1.Redistributions of source code must retain the above copyright notice, this
** list of conditions and th... | [
"pancir3d@steptosky.com"
] | pancir3d@steptosky.com |
286db01ff5f1a5eddd826661334110fb6b652e12 | 1af49694004c6fbc31deada5618dae37255ce978 | /cc/trees/property_tree_unittest.cc | 489ece12ea2667f58c36254fffc5ce3a87e9fde9 | [
"BSD-3-Clause"
] | permissive | sadrulhc/chromium | 59682b173a00269ed036eee5ebfa317ba3a770cc | a4b950c23db47a0fdd63549cccf9ac8acd8e2c41 | refs/heads/master | 2023-02-02T07:59:20.295144 | 2020-12-01T21:32:32 | 2020-12-01T21:32:32 | 317,678,056 | 3 | 0 | BSD-3-Clause | 2020-12-01T21:56:26 | 2020-12-01T21:56:25 | null | UTF-8 | C++ | false | false | 23,894 | 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 "cc/trees/property_tree.h"
#include <utility>
#include "cc/input/main_thread_scrolling_reason.h"
#include "cc/test/geometry_test_utils.h"
#incl... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
6d98a99d57540e042d817ac09ee1ab9954c23e36 | 73ee941896043f9b3e2ab40028d24ddd202f695f | /external/chromium_org/chrome/browser/ui/app_list/search/mixer.h | 4f11aeac50ad87fd5863f0a58d46220907a1703c | [
"BSD-3-Clause"
] | permissive | CyFI-Lab-Public/RetroScope | d441ea28b33aceeb9888c330a54b033cd7d48b05 | 276b5b03d63f49235db74f2c501057abb9e79d89 | refs/heads/master | 2022-04-08T23:11:44.482107 | 2016-09-22T20:15:43 | 2016-09-22T20:15:43 | 58,890,600 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,794 | h | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_MIXER_H_
#define CHROME_BROWSER_UI_APP_LIST_SEARCH_MIXER_H_
#include "base/basictypes.h"
#include "base/memory/... | [
"ProjectRetroScope@gmail.com"
] | ProjectRetroScope@gmail.com |
acb5a5b0aa86e81821bda526e829729b3aaca5ea | c10d51e7cb00afd7996c624183a46e5be9e70b8a | /Tree/inorderTraversal.cpp | 843564930fc101c389ecf6467e6a95f83757057c | [] | no_license | Ezhilan271/Competitve_Programming | 13dfbc280361c329f45c45adedca17a41ca5e2ac | d25571f95b8ca0428a232dc2c37d84d79c404f27 | refs/heads/main | 2023-02-19T21:55:27.512823 | 2021-01-25T08:37:00 | 2021-01-25T08:37:00 | 321,731,764 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 295 | cpp | void solve(Node *root, vector<int> &result)
{
if(root==nullptr)
return;
solve(root->left, result);
result.push_back(root->data);
solve(root->right, result);
}
vector<int> inOrder(struct Node *root) {
vector<int> result;
solve(root, result);
return result;
}
| [
"noreply@github.com"
] | Ezhilan271.noreply@github.com |
c773aad8aba02a366e84ea2537a346a28e91864d | f320d378d6d0e21df97ba32cf49a9819cfb90c16 | /grafos/gabow.cpp | be38d9c35a86d947447ae0c55ae15e8d45e12a70 | [] | no_license | lucastdcj/maratona | 0ecf29e5e177ba3f096bc24ed47c06c367306ec5 | 11ab8cf19e89dc49c0e8852b8a079a3583604b1f | refs/heads/master | 2021-06-13T08:35:37.906630 | 2021-03-30T13:22:16 | 2021-03-30T13:22:16 | 68,003,342 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,080 | cpp | /*%
Emparelhamento Máximo Geral (Edmonds)
Autor: Davi Costa
Complexidade: O(n^3)
Testes: uva-11439, nuevo-4130, spojbr-ENGENHAR
Uso: CUIDADO - Nao utilizar o vertice 0
- Para cada aresta 'i' (sem direcao) u-v,
faca from[i] = u, to[i] = v e coloque i
na lista de adjacencia de ambos u e v.
- n e m devem ser utilizado... | [
"lucastdcj@gmail.com"
] | lucastdcj@gmail.com |
de0305d6304f95d59a025fd71c7bef65a43141a1 | 7cca79a01bdfd355aee52324f925bf0294afc892 | /Libraries/MiKTeX/Web2CEmulation/w2cemu-version.h | 0204c86134b1f048cf86dd7c5ba40b4a1d95964f | [] | no_license | Amaterasu27/miktex | 739df0e7ec38b526f0add05e78b46368bebbb969 | ccdc4f388368069011f169f97aef643c353fab7d | refs/heads/master | 2021-01-23T04:20:30.678404 | 2015-04-11T13:59:12 | 2015-04-11T13:59:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 862 | h | /* w2cemu-version.h: version number -*- C++ -*-
Copyright (C) 2010-2013 Christian Schenk
This file 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, or (at your
option) any late... | [
"csc@mycompany.com"
] | csc@mycompany.com |
20433f1a2414fe1aa522437539cedd81985bf769 | 5e6910a3e9a20b15717a88fd38d200d962faedb6 | /AtCoder/dp--M/u.cpp | 7bc52e8ed23831562d2719f067355a1d024e7919 | [] | no_license | khaledsliti/CompetitiveProgramming | f1ae55556d744784365bcedf7a9aaef7024c5e75 | 635ef40fb76db5337d62dc140f38105595ccd714 | refs/heads/master | 2023-08-29T15:12:04.935894 | 2023-08-15T13:27:12 | 2023-08-15T13:27:12 | 171,742,989 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 975 | cpp | // We only fail when we stop trying
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define endl '\n'
#define D(x) cerr << #x << " = " << (x) << '\n'
#define sz(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end()
typedef long long ll;
const ll Inf = 1e18;
const int N = 16... | [
"khaled.sliti@supcom.tn"
] | khaled.sliti@supcom.tn |
6d2445eb669721b4c9ed1f4bcb5a3cfdcbd21b4e | 4acd949a9e384c10efd498e7aefab0957ec4fc62 | /src/Button.h | 28b722f8100ea2fac7d84862c746a0a37f372939 | [] | no_license | RositcaMadzharova/Roulette2 | b91edf758f2addb9f0b7e408964ffd994fb76a23 | 75570b896915e7389a8670d6cd58efda0fcd6c8b | refs/heads/master | 2021-05-05T06:12:48.838260 | 2017-08-03T08:29:06 | 2017-08-03T08:29:06 | 118,791,948 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 413 | h | /*
* Button.h
*
* Created on: Jul 7, 2017
* Author: kakev
*/
#ifndef BUTTON_H_
#define BUTTON_H_
#include "LTexture.h"
#include <Windows.h>
class Button : public LTexture{
public:
Button(int x = 0, int y = 0);
virtual bool isHover();
virtual bool isClicked( SDL_Event *);
virtual bool i... | [
"noreply@github.com"
] | RositcaMadzharova.noreply@github.com |
cf57c39de6f7fda15742df79fbb26ca31066e469 | b69e34de6fd6d8169e33be70ce8db9bb9d8e29f3 | /Threats/Virus.h | 8d0e784652fe012f1743986cb9f772a789fcddee | [] | no_license | david-docteur/McOfee_Simulation | 5857db59df8d3d1cffb4b2635559cc99539ccb75 | 037f104436bd24c5ef92eec668a5d82a9ff5b8a7 | refs/heads/master | 2016-09-13T17:14:30.920583 | 2016-05-11T17:33:09 | 2016-05-11T17:33:09 | 57,882,316 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,151 | h | /*
* File: Threats/Virus.h
* Author: David Docteur
* Company: Undefined
* Date: XX/XX/XXXX
*
* This class will be the header of the Virus class,
* which inherits from the Threat abstract class.
*/
#ifndef VIRUS_H
#define VIRUS_H
#include "../Threat.h"
namespace McOfee
{
class Virus : public Threat
{
// F... | [
"david.docteur@linuxmail.org"
] | david.docteur@linuxmail.org |
c24d3575470bb44e614d67693e3888801dcfb109 | 31bc277d64fe8002c8c6376a7e89bab7e093a301 | /STSample/GeneratedFiles/Debug/moc_stsample.cpp | a0e327ffff916b2059df5c0cb31aafc4f9c7297d | [] | no_license | sunpu/stsample | cad5da33d01f1cf4183e20154f79b96e655de344 | 86dbea41cc428f12f15853cddd17a959fa8a4714 | refs/heads/master | 2021-09-07T12:41:16.454942 | 2018-02-23T01:42:33 | 2018-02-23T01:42:33 | 115,606,043 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,137 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'stsample.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.6.2)
**
** WARNING! All changes made in this file will be lost!
************************************************************... | [
"sunpumsn@hotmail.com"
] | sunpumsn@hotmail.com |
98ab797eabb2857c74c0535472d55f96d59c72c8 | d683b036089eacfb3d1f18aca2710af209ca9c38 | /MobileGameTest/Classes/Native/GenericMethods4.cpp | 445c846f27db5fa3f1056fe7fb9b590d18efb3b1 | [] | no_license | jibberjibbs/BootyCrawl | 63d524d771616ec8dfa06cbea2b42551e4858b83 | 73879f790ffb03051266e751b7ddc4025d43b48a | refs/heads/master | 2021-01-04T11:07:42.491643 | 2020-02-14T14:12:27 | 2020-02-14T14:12:27 | 240,520,283 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,747,770 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template ... | [
"61054571+jibberjibbs@users.noreply.github.com"
] | 61054571+jibberjibbs@users.noreply.github.com |
09fd1b5094b4afbb33f80447ddb2fb565c55e746 | 6c8e23a8899b01379944edcb19814ad5da2ccdf0 | /lab4/Archiever/Archiever/Archiever.cpp | a1e34d809da1f2380a6ef6ce696f35c0880f0f5e | [] | no_license | istrokan/SPlabs | aa8e171282a78977ee68788892b5535a688dac0a | 69ec855265fe4053be4a9d8449b2ad33fcf87a35 | refs/heads/master | 2022-07-31T12:01:03.789624 | 2020-05-20T10:08:47 | 2020-05-20T10:08:47 | 265,519,806 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,635 | cpp | // Archiever.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#define MAX_BUF 200
#define STCHAR sizeof(TCHAR)
#define WAITING_TIME 2000
int _tmain(INT argc, TCHAR** argv)
{
DWORD realC = 1;
LPCTSTR utilPath = TEXT("7z.exe");
LPTSTR act = argv[1];
LPTSTR archName, dirOrFile;
//m... | [
"noreply@github.com"
] | istrokan.noreply@github.com |
f9367f0010506c7c06b1dfb0fc6b8956dd02d6d2 | 8175c0d8a68a644cf05d8bb19b345587aefc499f | /test/host_api/test_rot.cpp | 2ec3c16213a61de612530ed02a04a7834aa6b24d | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kirilleizeman/FBLAS | 6859233e5d9e64e260c1765b13db40ad106c7d85 | c9655623897711758fcff98c741f556872ad3882 | refs/heads/master | 2022-09-21T21:36:21.668465 | 2019-09-12T08:57:20 | 2019-09-12T08:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,072 | cpp | /**
FBLAS: BLAS implementation for Intel FPGA
Copyright (c) 2019 ETH-Zurich. All rights reserved.
See LICENSE for license information.
Tests for rot routine.
Tests ideas borrowed from Blas testing
*/
#include <gtest/gtest.h>
#include <string>
#include <exception>
#include "../../include/utils/ocl_u... | [
"tiziano.dematteis@inf.ethz.ch"
] | tiziano.dematteis@inf.ethz.ch |
930587f01fe26cc4492d3767ded67aaa01e2d810 | f428ce841c4b6be41822fb22bd0b75032da345c3 | /WechatDllCpp/FriendListBTree.cpp | 3b6e969446fd1a88d08fa133cf520cfc4cbe1907 | [] | no_license | sumerzhang/WechatHookDll | 32da4fe2e1fec54d7271d6bcecac1079891eb6ca | 80b3fc2e99b17757d5eaa34f62586d2842d2251c | refs/heads/master | 2022-12-20T18:08:26.954446 | 2020-09-15T06:23:07 | 2020-09-15T06:23:07 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,541 | cpp | #include "stdafx.h"
#include "resource1.h"
#include "malloc.h"
#include "inc.h"
#include "FriendListBtree.h"
#include <tchar.h>
#include <list>
#include <commctrl.h>
#include <exception>
HWND hwnd_list;
typedef void(__stdcall *PLFUN)(void);
typedef std::list<DWORD> DWORD_LIST;
typedef std::list<std::wstring> WSTR... | [
"chennj_cn@aliyun.com"
] | chennj_cn@aliyun.com |
f3a121cace5833039e48272b17b4323044760f3e | 1d506a4d22a61f66de9019bf3795d10297ef9e4a | /HTTPServer/Headers/VHTTPResponse.h | 15ddfad5cba8510b6d556de9aeb190dd7ce8d3c5 | [] | no_license | sanyaade-teachings/core-Components | b439c37bbe0e5d896645848d8db183e40f40b9e7 | a93d30e32da6f5fd58c76dfed430093746906ed1 | refs/heads/master | 2021-01-18T10:56:50.349393 | 2013-05-16T15:04:40 | 2013-05-16T15:04:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,344 | h | /*
* This file is part of Wakanda software, licensed by 4D under
* (i) the GNU General Public License version 3 (GNU GPL v3), or
* (ii) the Affero General Public License version 3 (AGPL v3) or
* (iii) a commercial license.
* This file remains the exclusive property of 4D and/or its licensors
* and is protected by na... | [
"stephane.hamel@4d.com"
] | stephane.hamel@4d.com |
618003300847489546ccdb4846982dda5c52a87d | 2f931e946e9de8a46d8aee5a237b7b251ee78eed | /src/light/light_area.cpp | 5e2d98277286c7e94265321ce5605a4358f4da15 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | lwkobe/lightmetrica-v3 | 6d9e9539e844f55913d562ddb304574f4b28b265 | 181d6598c84abce95e553da9a7adeb6935432fb6 | refs/heads/master | 2020-06-20T13:23:11.592289 | 2019-06-21T09:10:52 | 2019-06-21T09:10:52 | 197,135,848 | 1 | 0 | NOASSERTION | 2019-07-16T06:41:44 | 2019-07-16T06:41:44 | null | UTF-8 | C++ | false | false | 3,416 | cpp | /*
Lightmetrica - Copyright (c) 2019 Hisanari Otsu
Distributed under MIT license. See LICENSE file for details.
*/
#include <pch.h>
#include <lm/light.h>
#include <lm/mesh.h>
#include <lm/json.h>
#include <lm/user.h>
#include <lm/serial.h>
#include <lm/surface.h>
LM_NAMESPACE_BEGIN(LM_NAMESPACE)
/*
\rst
.. f... | [
"hi2p.perim@gmail.com"
] | hi2p.perim@gmail.com |
ffa406c78c174c72d47fefbc241a1c660423da1c | d95dc1beb1f3681919bf787c9141b1119dc3e9ba | /supervisor/server/src/controllers/Controller.h | 0b15dd087cbcc35fb8462aaa6ae48582fcdc9655 | [] | no_license | ansartnl/GRANIT | ec26d53a291e98a098e7f1e6bb8812ed9983a8dd | 5f687b47c52444d9f0801414cebe903658678a53 | refs/heads/main | 2022-12-30T14:04:40.779016 | 2020-10-16T09:12:22 | 2020-10-16T09:12:22 | 304,633,662 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,739 | h | #ifndef _CONTROLLER_H__
#define _CONTROLLER_H__
#include "common.h"
#include <QtCore/QObject>
#include <QtCore/QTimer>
#include <QtCore/QSharedPointer>
#include <QtCore/QStringList>
#include <QtCore/QVariant>
#include <QtCore/QFile>
#include <QDateTime>
class DbConnThread;
QStringList readStream(const QString &file... | [
"50514882+dg-atmsys@users.noreply.github.com"
] | 50514882+dg-atmsys@users.noreply.github.com |
11a65246bc3a96813ec08f2c703a2eaf1eebc356 | 30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a | /scrape/data/Tokitsukaze and Discard Items/pulkit_287_TLE.cpp | dd4ac0692e16f1b17b9cf944a6968eefa7f43e7c | [] | no_license | thegamer1907/Code_Analysis | 0a2bb97a9fb5faf01d983c223d9715eb419b7519 | 48079e399321b585efc8a2c6a84c25e2e7a22a61 | refs/heads/master | 2020-05-27T01:20:55.921937 | 2019-11-20T11:15:11 | 2019-11-20T11:15:11 | 188,403,594 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 677 | cpp | #include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define ff first
#define ss second
#define pb push_back
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
ll n,m,k,i,j,q,r,c=0,count=0;
cin>>n>>m>>k;
ll a[m];
for(i=0;... | [
"harshitagar1907@gmail.com"
] | harshitagar1907@gmail.com |
670d7643500362ee679871b95fe6ae67cd5440b8 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/git/new_hunk_8092.cpp | 629745169f078757e98c108049b63205e2ac5326 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 333 | cpp | die("tag '%s' already exists", tag);
if (annotate)
create_tag(object, tag, &buf, message, sign, object);
lock = lock_any_ref_for_update(ref, prev, 0);
if (!lock)
die("%s: cannot lock the ref", ref);
if (write_ref_sha1(lock, object, NULL) < 0)
die("%s: cannot update the ref", ref);
strbuf_release(&buf);
... | [
"993273596@qq.com"
] | 993273596@qq.com |
7e0aebed54ce797d07238b3035f4b951c0e4272e | e0d9eccdcae2480aad690ff9756591f5c56ba0ff | /master/controll/testNode/test.cpp | bd61de584b3e461ef32ea2b0b938256f147d98a9 | [] | no_license | UiRobotics/2018-2019_Robotics | ff871cd39025259abbe99ff04c5141344c99bdef | b416236bac7c424d4de3ab9186d66a5964b54b15 | refs/heads/master | 2020-03-28T00:35:53.322214 | 2019-08-12T12:58:03 | 2019-08-12T12:58:03 | 147,431,491 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,682 | cpp | /*
* test.cpp
*
* Created on: Feb 14, 2017
* Author: JJB07
*/
//#include <iostream>
#include "inc/IDevice.h"
#include <iostream>
#include "lib/TransToOldFormat/msgParser.h"
#include "header/motor.h"
#include "header/SKit.h"
#include "lib/arduino-serial-lib.h"
#include "unistd.h"
int main()... | [
"uirobotics@gmail.com"
] | uirobotics@gmail.com |
0c0125b88216d351c9b016e8c231cce2af990def | 5a8b8953015a188dfa18164c98941af578e5921d | /src/SurfPair.h | f41c22927359f710ebd59958aa393105ac1cd3d5 | [] | no_license | clobosmesher/MixedOcTree | 5664063693b46dfb80d9763788da81cdd4a59879 | 9ba14e375137c04531c408f6fcf362658aa5e52d | refs/heads/master | 2023-01-24T22:34:17.527946 | 2023-01-19T20:39:42 | 2023-01-19T20:39:42 | 224,405,359 | 4 | 3 | null | 2023-01-19T20:39:44 | 2019-11-27T10:30:44 | C++ | UTF-8 | C++ | false | false | 1,287 | h | /*
<Mix-mesher: region type. This program generates a mixed-elements mesh>
Copyright (C) <2013,2017> <Claudio Lobos>
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 L... | [
"clobos@inf.utfsm.cl"
] | clobos@inf.utfsm.cl |
4afe6eff8a0f19d22b7175b5352875db37799042 | 1e8099b598f7d8563fb2bcd620740e26bad46f58 | /tests/UnitTests/DecomposeAmountIntoDigits.cpp | c39f8ebf753358dcfc9fb96737063b4e9757fd61 | [] | no_license | gmin/darknetspace2 | 2ffaa0a3a57f5205e12773926ab448de75cba765 | b2259b1fdcf2d2aa726bf97ad7ec0649b8568d00 | refs/heads/master | 2021-01-19T16:36:16.534635 | 2016-06-25T14:35:22 | 2016-06-25T14:35:22 | 101,009,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,633 | cpp | // Copyright (c) 2011-2016 The Cryptonote developers
// Copyright (c) 2014-2016 darknetspace developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "gtest/gtest.h"
#include <cstdint>
#include <vector>
#include... | [
"shengqiang_1001@163.com"
] | shengqiang_1001@163.com |
8cfadc5e082a0f2b803c079687c710b1c156a006 | 672d9fb60b6ae7fe1ba29ca4e0984701bb4691af | /Graphs/inlab/middleearth.cpp | eb4ef23101aab3a6ac017576b6ee8d85b5ccf50d | [] | no_license | nsalafranca/Data-Structures | ce3846dc7a49c0665bc3162d19881eb086f70d57 | b7ea4b1b10d593d9e2355fdd0bf546c3972a9df8 | refs/heads/master | 2021-01-11T18:43:40.547730 | 2017-01-20T23:59:52 | 2017-01-20T23:59:52 | 79,610,112 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,203 | cpp | //Nico Salafranca nms6dz middleearth.cpp
#include "middleearth.h"
#include <algorithm>
#include <stdlib.h>
#include <math.h>
#include <time.h>
// The list of all the place names that we'll be using
string all_city_names[] = {
// human towns, cities and strongholds
"Bree", // a human and hobbit tow... | [
"noreply@github.com"
] | nsalafranca.noreply@github.com |
84468fd0f17053d5c0c4207295b0db66f2c2025c | 86fd61f00f021f46de3e8297854181a599cf02c2 | /plugins /textureSplatting/textureSplatting.cpp | c3f39101124da0a64b2c9a7b10927f0c1ffdad28 | [] | no_license | danielmabo/G-FIB | 5e7624e5137cc39efbbbf3497a48c6732eeffeba | 1a644a57dd58c7dd5736e2998f08f82c897b5d3c | refs/heads/master | 2020-04-01T04:45:34.051983 | 2018-10-13T13:55:25 | 2018-10-13T13:55:25 | 152,876,267 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,922 | cpp | #include "textureSplatting.h"
#include <QFileDialog>
void TextureSplatting::onPluginLoad()
{
GLWidget &g = *glwidget();
g.makeCurrent();
// BoundingBox: Carrega shader, compila i munta
vs = new QOpenGLShader(QOpenGLShader::Vertex, this);
vs->compileSourceFile("splatting.vert");
fs = new QOpen... | [
"dmartinezbordes@gmail.com"
] | dmartinezbordes@gmail.com |
c7462a3ed72044d9b6d88428322c2fe1e2117a7d | 269d369c40395fd6886251a0872a7f6363694ea6 | /CS-0.0.1-new/CS/include/CS/Config.h | a013ee89fca855fc6d0aab90c692d549e4828bf1 | [] | no_license | wuyu201321060203/ColumnStore | 8e17c7149255a01393d118a78866d323a2f55c58 | 184dd698f9e16e49d41b14d1408650deb214ff39 | refs/heads/master | 2020-06-30T05:49:24.126550 | 2015-06-25T06:55:30 | 2015-06-25T06:55:30 | 37,957,405 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,991 | h | #ifndef CONFIG_H
#define CONFIG_H
#include <string>
#include <vector>
#include <google/protobuf/message.h>
#include <boost/shared_ptr.hpp>
#include <protocol/common.pb.h>
#include <protocol/MSG_CS_CS_ENTRY_GET.pb.h>
#include <protocol/MSG_CS_CS_VALUE_GET.pb.h>
#include <protocol/MSG_CS_DC_COLUMN_POSITION_LOCATE.pb.... | [
"wuyuangelysys@gmail.com"
] | wuyuangelysys@gmail.com |
9ce4e98015b9756634a608f82d35a29e7916024d | d62d05b3efa21e66090f7b549a667f0f50b0e77e | /cagomelattice.cpp | 48dd151a54718cff922d58456b8f3b09bac3e12c | [] | no_license | piterand/partsEngine | f95a7f966dff911976042fcba097b3fb9c14d77d | 35fa3b02088ba0372672f05f286d84be5a277def | refs/heads/master | 2020-04-07T20:32:31.354609 | 2018-11-22T13:22:06 | 2018-11-22T13:22:06 | 158,692,888 | 1 | 0 | null | 2018-11-22T12:00:28 | 2018-11-22T12:00:27 | null | UTF-8 | C++ | false | false | 7,829 | cpp | #include "cagomelattice.h"
Cagomelattice::Cagomelattice()
{
}
void Cagomelattice::dropSymmetricLattice(double l, Vect size)
{
this->clear();
totalSize=size*l;
double lx=size.x;
for(int vert=0;vert<lx+1;vert++){
if(vert==0){
for(int horiz=0;horiz<(lx);horiz++){... | [
"pitandmind@gmail.com"
] | pitandmind@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.