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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
af4cc04c4e9c1cad843d84e2f1521b83e1c00bd3 | 28fdb090792a29ef08b7fdef9492bd251daecdd2 | /2020041302/2020041302/Calculate.cpp | b22a7a75139e08e41028986e3dda9f566bfcd5e8 | [] | no_license | DeeBluee/VS | 48394c2508c294d317a34a766ac97e5299a12d83 | 3fd81e7e6e7117d89e0fb01c972d06365b4cbfda | refs/heads/master | 2021-03-25T23:39:33.151283 | 2020-06-13T12:54:47 | 2020-06-13T12:54:47 | 247,655,136 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,423 | cpp | // Calculate.cpp : 实现文件
//
#include "stdafx.h"
#include "2020041302.h"
#include "Calculate.h"
#include "afxdialogex.h"
// Calculate 对话框
IMPLEMENT_DYNAMIC(Calculate, CDialogEx)
Calculate::Calculate(CWnd* pParent /*=NULL*/)
: CDialogEx(IDD_DIALOG1, pParent)
, a(0)
, b(0)
, d(0)
, c(_T(""))
{
}
Calculate::~Cal... | [
"1285088540@qq.com"
] | 1285088540@qq.com |
0fe674ab8e7ce03ff9a3d6cdfd21785affe228a7 | 1d3adc676bc9bec6e86ed6378f3ebc73e4a8ab32 | /stereovision/framerate tests/grab then retrieve/main.cpp | 94630120d9d9f813d0a8bf32278fd74e818c1489 | [] | no_license | dviewai/table-tennis-computer-vision | 054b6ab79705d6bc31db4a01f41d20b7a7fb73d6 | 17f11f5d8a0525e3efa71f5d2a9dbfa34409d9c0 | refs/heads/master | 2022-04-10T23:22:11.431075 | 2020-03-31T23:06:02 | 2020-03-31T23:06:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,049 | cpp | #include <opencv/cv.h>
#include <opencv/highgui.h>
#include <iostream>
#include <chrono>
using namespace cv;
using namespace std;
void myGrab(int camNum, VideoCapture& captureCam);
void myRetrieve(int camNum, VideoCapture& captureCam, Mat& frameCam);
int main(int argc, char const *argv[])
{
// we open the webc... | [
"vincent.marquet1@free.fr"
] | vincent.marquet1@free.fr |
5d68ba3c832c75ff8da20172a3813545054d2de3 | 5cfd2e0c484c4a51d9f6bb4a95a8b64640ac6992 | /src/player.cpp | 6333485d226a40505e2939cb4a7ffdd03856b8d7 | [] | no_license | lzh9102/tx100 | 54c2da5ea33cdd7e1eb10b45a34cd755d92b26d1 | 79d112bf47b15fc7ae1e44a9c85ca21ac5175505 | refs/heads/master | 2021-01-10T19:37:47.846806 | 2013-10-07T10:28:18 | 2013-10-07T10:28:18 | 41,461,187 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,429 | cpp | /*
* Copyright (C) 2012 Timothy Lin
* This work is licensed under GPLv3 as published by the Free Software
* Foundation. Please see http://www.gnu.org/licenses/gpl.html for details.
*
* For more information, please visit the project homepage:
* http://code.google.com/p/tx100
*/
#define PLAYER_SPEED (float)130
... | [
"lzh9102@gmail.com"
] | lzh9102@gmail.com |
8862d8446f5aa6432c91ff66ae1f76e0761b3ee9 | 18a3dcbc614ca10ea46892310044dd4427e3ddef | /二叉树/从上往下打印二叉树.cpp | ca5649f1f6f3827bd3a8832a242de15224d1c7b6 | [] | no_license | DeligientSloth/Coding-Interviews | d975bb65448f07b1ba0e493119bf6bd5b79b9645 | 9e594c03269b315931787caf22730dc655c91812 | refs/heads/master | 2021-09-02T04:04:58.868982 | 2017-12-30T06:51:03 | 2017-12-30T06:51:03 | 113,278,284 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 465 | cpp | class Solution {
public:
vector<int> PrintFromTopToBottom(TreeNode* root) {
queue<TreeNode*> Q;
vector<int> result;
if(root!=NULL) Q.push(root);
while(Q.empty()==false)
{
TreeNode* node=Q.front();
result.push_back(node->val);
Q.pop();
... | [
"32997064+DeligientSloth@users.noreply.github.com"
] | 32997064+DeligientSloth@users.noreply.github.com |
36f53b93e5f58475b9a6cbf21dd702b28cfcc4bf | 7c02fd1bad09eb6ee8d736418a2ac899a00ad59d | /app/src/main/cpp/eventbus/EventBus.cpp | e860103010d5d45bb33f95a840738c60cef076b3 | [
"MIT"
] | permissive | simonppg/Break_it_all | 21f413af77fb5230deb1d4b8e3df0cb39d7841e2 | ac50ca1fb5e7d644fbc0c709330edd5ce1082477 | refs/heads/main | 2023-07-20T07:16:46.237997 | 2023-03-27T01:04:07 | 2023-03-27T01:04:07 | 109,542,884 | 0 | 2 | MIT | 2023-07-19T05:07:37 | 2017-11-05T01:24:20 | C++ | UTF-8 | C++ | false | false | 1,674 | cpp | #include "EventBus.hpp"
#include <iostream>
#include <utility>
using std::pair;
EventBus::EventBus() {
// subMap = new SubMap;
}
void EventBus::publish(Event *event) {
logEvent(event);
EventType eventType = event->type();
if (subMap.find(eventType) == subMap.end()) {
return;
}
for (auto subscriber ... | [
"simonppg@gmail.com"
] | simonppg@gmail.com |
423c6461affddc31b52ab2286986cc22096c86fc | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/c8/5bd8e1c0dcf1e5/main.cpp | db0b27a75e686cf35747018af9fb43bcfc713130 | [] | no_license | WhiZTiM/coliru | 3a6c4c0bdac566d1aa1c21818118ba70479b0f40 | 2c72c048846c082f943e6c7f9fa8d94aee76979f | refs/heads/master | 2021-01-01T05:10:33.812560 | 2015-08-24T19:09:22 | 2015-08-24T19:09:22 | 56,789,706 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 503 | cpp | #include <iostream>
#include <string>
#include <vector>
class A
{
int _i;
int _j;
public:
A(int i, int j) : _i(i), _j(j) { std::cout << "cons" << std::endl; }
A(const A& other) { std::cout << "copy cons" << std::endl; }
private:
A& operator=(const A& other) { std::cout << ... | [
"francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df"
] | francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df |
97f4ad03144ffb3fa17d5e168d9b43586c86b9bf | 3efc50ba20499cc9948473ee9ed2ccfce257d79a | /data/code-jam/files/2974486_chenhaifeng_5709773144064000_1_extracted_B.cpp | 8f262ced66a61a108cecf14a1b94d465629ada16 | [] | no_license | arthurherbout/crypto_code_detection | 7e10ed03238278690d2d9acaa90fab73e52bab86 | 3c9ff8a4b2e4d341a069956a6259bf9f731adfc0 | refs/heads/master | 2020-07-29T15:34:31.380731 | 2019-12-20T13:52:39 | 2019-12-20T13:52:39 | 209,857,592 | 9 | 4 | null | 2019-12-20T13:52:42 | 2019-09-20T18:35:35 | C | UTF-8 | C++ | false | false | 594 | cpp | #include <stdio.h>
#include <iostream>
using namespace std;
int main() {
//freopen("B-large.in", "r", stdin);
//freopen("B-large.out", "w", stdout);
int t;
double c, f, x;
scanf("%d", &t);
for (int i = 0; i < t; i++) {
scanf("%lf%lf%lf", &c, &f, &x);
//printf("%lf %lf %lf\n", c, f, x);
double time = 0, t2,... | [
"arthurherbout@gmail.com"
] | arthurherbout@gmail.com |
80a0081fb11890a864c6cd2c075a38a31ff2e81c | d550c5617c8f2fbf29e53a1e57afded9f9cdc642 | /environment/dump_env1.cpp | 8230185bd7eb998e7df3dfd3484d81b6d3d158e0 | [] | no_license | panchul/sb_cpp | b8c2d48263953080b619f44be8bee1d3a662820a | f50a2521f2bcd0788a3cf33e304ec0566dd26f62 | refs/heads/master | 2021-07-05T06:32:29.423397 | 2021-06-22T17:33:13 | 2021-06-22T17:33:13 | 65,116,417 | 0 | 0 | null | 2018-03-18T05:35:43 | 2016-08-07T04:56:46 | C++ | UTF-8 | C++ | false | false | 298 | cpp | // compile it with 'g++ dump_env.cpp
#include <stdio.h>
extern char **environ;
int main() {
printf("Using 'extern char **environ;'\n-------------\n");
char **ep = environ;
char *p;
while ((p = *ep++))
printf("%s\n", p);
printf("-------------\n");
return 0;
}
| [
"apanchul@hotmail.com"
] | apanchul@hotmail.com |
070b3611c8a20486f70529abbf7f0780a3898163 | e7fb9ffb95b83998fc5cae5446d10a6a46b729b6 | /ArduinoBasic/Problem14/P14.ino | 80bff8541fead924f82e46df506db1ca6ab65f84 | [] | no_license | dinhminhqaz/ArduinoBasic | 3002216caa1c55d4c9f4725d3930a968ff27d94b | 52ee50504fc1482b2bbfb6de543991fc7fba315b | refs/heads/main | 2023-06-30T18:44:05.253389 | 2021-08-07T19:24:21 | 2021-08-07T19:24:21 | 393,769,773 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 411 | ino | int buzzPin=8;
int potPin=A3;
int potVal;
int toneVal;
void setup() {
// put your setup code here, to run once:
pinMode(buzzPin,OUTPUT);
pinMode(potPin,INPUT);
}
void loop() {
// put your main code here, to run repeatedly:
potVal=analogRead(potPin);
toneVal=(9940./1023.)*potVal+60;
digitalWrite(buzzPin,HIG... | [
"dinhminhqaz@gmail.com"
] | dinhminhqaz@gmail.com |
7e38dfee4662fd1accce05c53169049056d9f072 | 6821354f56b75d4192bd29c49a34077ff3b3a47b | /ThalesRemoteCppLibrary/thalesfileinterface.cpp | a708c4dbfae1f46cd7c6a59fe9b412f8824c8e93 | [
"MIT"
] | permissive | Zahner-elektrik/Thales-Remote-Cpp | 9e8641ef77da50c4383daf2c4dcd7b70def0ce91 | 0c912e6905329b6cdf230a7936aae4afd7a1b56b | refs/heads/main | 2023-08-17T04:14:46.874078 | 2023-08-09T08:23:05 | 2023-08-09T08:23:05 | 188,229,937 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,890 | cpp | /******************************************************************
* ____ __ __ __ __ _ __
* /_ / ___ _/ / ___ ___ ___________ / /__ / /__/ /_____(_) /__
* / /_/ _ `/ _ \/ _ \/ -_) __/___/ -_) / -_) '_/ __/ __/ / '_/
* /___/\_,_/_//_/_//_/\__/_/ \__/_/\__/_/\_\\__... | [
"maximilian.krapp@zahner.de"
] | maximilian.krapp@zahner.de |
316252b53a4701428bfaf82d29bdebd257ba41c3 | 22f857842ea3db81144385941267b3cb4f0c57d5 | /Voice/BaseVoice.h | 43672de8803ac9a4e7ddf7d0028cf22468d9a794 | [] | no_license | eriser/eLibv2 | c1810c8e455a779a1211c20917daa39c751b91cd | ead21b62ba05216c2ed458017219c6340f3ca661 | refs/heads/master | 2021-01-17T08:15:15.534631 | 2015-12-27T09:38:20 | 2015-12-27T09:38:20 | 49,957,461 | 1 | 0 | null | 2016-01-19T14:19:03 | 2016-01-19T14:19:02 | null | UTF-8 | C++ | false | false | 3,258 | h | #ifndef MODBASEVOICE_H_
#define MODBASEVOICE_H_
// TODO: how to handle parameter-changes which will affect the modules within the voice?
namespace eLibV2
{
namespace Voice
{
/**
this module provides a base voice which can be used to produce polyphonic output
every note is used to create... | [
"sys@e-fope.de"
] | sys@e-fope.de |
6a9e6f92a44835426225b69f12e606580d8a7daa | e795ca60bd1cf3897531b5bd24323376cbc9e79d | /share/lab9/postlab/timer.cpp | f3cc85f58cb14684c5bdfd69be6918a63bee9ef4 | [] | no_license | luke-anglin/MITOCW | d337b5326121102154d20f3977ff6bd4d54422bf | 54412f30334fa7b5990f7f5ee7377f7d9ad76746 | refs/heads/main | 2023-03-28T06:42:18.467359 | 2021-03-25T14:35:23 | 2021-03-25T14:35:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,597 | cpp | // NOTE: in order to compile this system on Linux (and most Unix
// systems) you will have to include the -lrt flag to your compiler.
/*Nicholas Mohammad
nm9ur
timer.cpp
10/19/2017
*/
#include <sstream>
#include <math.h>
#include <cstring>
#include "timer.h"
timer::timer(timer & t) : running(t.running) {
... | [
"lukeanglin@gmail.com"
] | lukeanglin@gmail.com |
9b4ad889cc2e3455a8be6b8d6c8ad1b15b325172 | 84b225d944bc0c079b43ce2a8ca5e542898398fa | /ViconUBXGPS/SerialWriter.h | 8dbed62fe92b6956d309495ab9e07a6cf3c4167a | [] | no_license | dwilson89/VivonToUBX | 89202004398aa31d190b9f4b3a44c7c6243c5b52 | 864e0a3181bb01cf0da961cee6662084fe04ec27 | refs/heads/master | 2020-06-12T09:12:07.402774 | 2014-08-31T08:25:28 | 2014-08-31T08:25:28 | 75,594,255 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 418 | h | #pragma once
using namespace System::IO::Ports;
using namespace System;
ref class SerialWriter
{
public:
SerialWriter(System::String^ portName, int baudRate);
void Open();
Boolean IsOpen();
void Close();
void Send(System::String^ payload);
System::String^ Read();
void Send(unsigned char* c,unsi... | [
"rh4istl1n@hotmail.com"
] | rh4istl1n@hotmail.com |
9fc2c9ac7b1c073552e1798daf9fd9dcbcfc0677 | be8b9231c92e6c184f0692c92df9667be3770cb1 | /Musical_Instruments_2017_2018/Musical_Glove/OLD CODE/gloves/Gloves_R/teensy/avr/libraries/ssd1351/ssd1351_indexedcolor.inl | a9cc87b89ccf6f94f3cc9319b98fc8e604167cb3 | [
"MIT",
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | Pocketart/typhoonclawvex | def0f4a607c90b1bafb180466dfa12ddd8a480c1 | eb4b523c13541b2b9136d32259bd0399b46a289e | refs/heads/master | 2021-09-15T07:26:07.218099 | 2018-05-07T02:20:15 | 2018-05-07T02:20:15 | 105,268,399 | 4 | 3 | MIT | 2018-05-04T17:30:49 | 2017-09-29T12:12:32 | C++ | UTF-8 | C++ | false | false | 1,044 | inl | // Specific implementations for high-color mode
// This gets included from inside the template definition in ssd1351.h, which is crazy, but it's the only way I know to make this compile.
MEMBER_REQUIRES(std::is_same<C, IndexedColor>::value)
void setColorDepth() {
// this is the same as high color mode for now.
// Th... | [
"henry012007@gmail.com"
] | henry012007@gmail.com |
760060b881c92452ff455e244897db5c79057ec5 | e711039670ac74a8e8abd55874815794f5b812b0 | /src/CalculateMinimumHP.cpp | 500256e82d1c36c9aa07643ae928d166e43bac72 | [] | no_license | proudzhu/leetcode | 1e08ffd0a7197722f7b954c2884c3d8a824c0f9e | e0c9788e6b26f3cdc98f080f22217412d09ac7ee | refs/heads/master | 2022-09-24T02:40:23.405383 | 2022-09-05T12:22:45 | 2022-09-05T12:22:45 | 44,177,044 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 566 | cpp | #include "CalculateMinimumHP.hpp"
#include <climits>
/*
* DP problem
*/
int calculateMinimumHP(std::vector<std::vector<int>>& dungeon)
{
int m = dungeon.size();
int n = dungeon[0].size();
std::vector<std::vector<int> > hp(m + 1, std::vector<int>(n + 1, INT_MAX));
hp[m][n - 1] = 1;
hp[m - 1][n] = ... | [
"proudzhu.fdu@gmail.com"
] | proudzhu.fdu@gmail.com |
935e733d34009cc623138f8237fdd692417dd08b | 9b3affbcebf4c3f481f4b01d9737ee67dc7d54b0 | /Plot/Source/Plot/Private/PlotItem_PlayEffect.cpp | 05044bf7607f327ea9d6d0804b10d783ad4fefc1 | [] | no_license | 977908569/Plot | d9e7e6118b32735a7637f71df89b8c9cfe33ddbf | 940b5d19246c1f8346a86584214d57f5f1b68e81 | refs/heads/main | 2023-02-08T16:24:52.844132 | 2020-12-31T06:20:20 | 2020-12-31T06:20:20 | 325,729,532 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,328 | cpp | #include "PlotItem_PlayEffect.h"
#include "Kismet/GameplayStatics.h"
#include "Particles/ParticleSystem.h"
UPlotItem_PlayEffect::UPlotItem_PlayEffect() {
bWait = false;
}
void UPlotItem_PlayEffect::Start()
{
if (auto MyPlot = GetPlot()) {
auto& PlotSpawnParticle = MyPlot->PlotSpawnParticle;
if (PlotSpawnPartic... | [
"977908569@qq.com"
] | 977908569@qq.com |
86edb289db0411c71df51b39fed4edbdafc0de81 | 52e32d1228fe4179e96309c799f37763f2767ac6 | /include/Trigger.h | 847adc87cd9674226d02eb18cc97ba27c36c56c6 | [] | no_license | kylemartin120/Zork | bbfeb152e834c9160e2371d92c7e6e50e65c58f0 | a8ecf7b963b68e4fcca48121e879fcbdb18297ef | refs/heads/master | 2021-08-19T21:55:54.793815 | 2017-11-27T14:15:06 | 2017-11-27T14:15:06 | 109,631,878 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 784 | h | #ifndef TRIGGER_H_
#define TRIGGER_H_
#include "Condition.h"
#include "StatusCondition.h"
#include "HasCondition.h"
#include <iostream>
#include <string>
#include <vector>
#include "rapidxml.hpp"
using namespace std;
using namespace rapidxml;
class Condition;
class Trigger {
public:
vector<string> actions;
ve... | [
"kmart120@hotmail.com"
] | kmart120@hotmail.com |
62b63292f29e5e45b3460f96f30ad42e044be4fc | 515eae03aa8892ce48e91b593f1d7057b4bf2cc2 | /CPP20/CONCEPT/concept_ordering4.cpp | 544b11cb5affc9e5d502dd969719f55def6831da | [] | no_license | et16kr/codenuri-clone | b7b759d85337009c40ee4b2d3e42e7c38a025c6d | d1178eec9db369d2cb94ceb44fd3a4982228f2eb | refs/heads/master | 2023-04-20T12:44:58.696043 | 2021-05-01T04:13:33 | 2021-05-01T04:13:33 | 363,316,531 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 445 | cpp | #include <iostream>
template<typename T>
concept Concept1 = sizeof(T) > 1;
template<typename T>
concept Concept2 = sizeof(T) < 8;
template<typename T>
concept Concept3 = Concept1<T> && Concept2<T>;
template<typename T> requires Concept1<T>
void foo(T a) { std::cout << "1" << std::endl; }
temp... | [
"et16kr@gmail.com"
] | et16kr@gmail.com |
c721d9137217f477a7b7c4a7caad17d6b347af43 | 0ed7f38691b880786bd4c8601d1a6f40ebd0c667 | /renderer.cpp | dea0c3196374f1f0e261b28bd0ee710f4d83420c | [] | no_license | Ernestynian/AI-Evolutionary-Images | 13d0e7f8e051c7df0083de31230975423052f1a6 | 18e8ea6dab6e6fe561f50eaed46d91d06fcd7496 | refs/heads/master | 2021-06-18T22:41:50.769362 | 2017-05-25T19:28:03 | 2017-05-25T19:28:03 | 91,721,747 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,421 | cpp | #include <cstdio>
#include <stdlib.h>
#include <malloc.h>
#include <fcntl.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include "renderer.h"
#include <X11/X.h>
#include <X11/Xlib.h>
#include <GL/glew.h>
#include <GL/gl.h>
#include <GL/glx.h>
#include <GL/glu.h>
typedef GLXContext(*glXCreateCont... | [
"rrocik@vp.pl"
] | rrocik@vp.pl |
0ab6e7586a9b9857e9485173af9ce5cef66ea418 | 52368d7ea35d80c95bee58b6fa0727894c98558a | /u411pgm1_panel/smu2_peaxism4.h | 357b4ead7bf691c4be698a74161ae2ff93ac2bdd | [] | no_license | catha32/u411pgm1 | f0aae78c4ac2962b4a96916f7b6f07789626e572 | 1033151dee336660483e4045aea9d12fdec4c059 | refs/heads/master | 2020-06-20T07:14:07.409115 | 2017-06-13T12:39:48 | 2017-06-13T12:39:48 | 94,197,580 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 339 | h | #ifndef SMU2_PEAXISM4_H
#define SMU2_PEAXISM4_H
#include <QDialog>
namespace Ui {
class smu2_peaxism4;
}
class smu2_peaxism4 : public QDialog
{
Q_OBJECT
public:
explicit smu2_peaxism4(QWidget *parent = 0);
~smu2_peaxism4();
public slots:
bool init();
private:
Ui::smu2_peaxism4 *ui;
};
#endif ... | [
"catharina.haebel@helmholtz-berlin.de"
] | catharina.haebel@helmholtz-berlin.de |
88144e3f46f284fed7dad4d6d222e40241e9b764 | e095c6b8f3d7c8aeac9628ceb9f776f37811ea36 | /HandlerMC/DlgOutput.cpp | 452f7b361de04c6b17d27ba1ad6578cb50d0b51a | [] | no_license | dangquang95/Handler_MC_SS | 3dc16ba78ef594d16ca18a802db26ccffad201bd | c70a78878ecd102b3fb627cf156d9998eb04b21d | refs/heads/master | 2022-11-25T11:46:42.045391 | 2020-07-28T02:49:19 | 2020-07-28T02:49:19 | 283,078,878 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,167 | cpp | // DlgOutput.cpp : implementation file
//
#include "stdafx.h"
#include "HandlerMC.h"
#include "DlgOutput.h"
#include "afxdialogex.h"
// DlgOutput dialog
IMPLEMENT_DYNAMIC(DlgOutput, CDialogEx)
DlgOutput::DlgOutput(CWnd* pParent /*=NULL*/)
: CDialogEx(IDD_DLG_OUTPUT, pParent)
{
}
DlgOutput::~DlgOutput()
{
}
voi... | [
"quang.ledang95@gmail.com"
] | quang.ledang95@gmail.com |
acb9ef9883a813559980d11d3a88e67090fee66a | 1103a717b305cc6d4aaac9e1d47cc6a1bb0afed4 | /SRC/RIA/Utility.cpp | cd54fd35e12020ce08426575e741388f8647e9cf | [] | no_license | rabbitjason/RIA | 3333942dd2acdaf7897ed74a565f905d337e5229 | af2befe41702a9e52913caac618facf3a4e27469 | refs/heads/master | 2021-04-25T14:04:31.560585 | 2018-05-14T06:22:23 | 2018-05-14T06:22:23 | 110,058,466 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,494 | cpp | #include "StdAfx.h"
#include "Utility.h"
CUtility::CUtility(void)
{
}
CUtility::~CUtility(void)
{
}
wstring CUtility::ANSIToUnicode(LPCSTR lpsContent)
{
int len = 0;
len = strlen(lpsContent);
int unicodeLen = ::MultiByteToWideChar( CP_ACP,
0,
lpsContent,
-1,
NULL,
... | [
"ping_gao_jpi@sina.com"
] | ping_gao_jpi@sina.com |
8db2a701cbad767fb414eee4250c4dd2ee3f4c17 | aa42f1436b3c398def6251b424cdb130079e7d5e | /src/mapOptmization.cpp | 2394fb66f27c2398683a830f2f02bc4aed75d2f7 | [
"BSD-3-Clause"
] | permissive | liuxinren456852/LIO-SAM | 1dfac6f9631886990d2bf914c04779bedaccce9e | bc50671b4337c110787d07ec70d82977d56fcdf0 | refs/heads/master | 2022-11-18T16:52:29.745832 | 2020-07-08T02:26:32 | 2020-07-08T02:26:32 | 276,532,795 | 0 | 0 | BSD-3-Clause | 2020-07-08T02:26:33 | 2020-07-02T02:49:27 | null | UTF-8 | C++ | false | false | 61,561 | cpp | #include "utility.h"
#include "lio_sam/cloud_info.h"
#include <gtsam/geometry/Rot3.h>
#include <gtsam/geometry/Pose3.h>
#include <gtsam/slam/PriorFactor.h>
#include <gtsam/slam/BetweenFactor.h>
#include <gtsam/navigation/GPSFactor.h>
#include <gtsam/navigation/ImuFactor.h>
#include <gtsam/navigation/CombinedImuFactor.... | [
"tixiao.shan@gmail.com"
] | tixiao.shan@gmail.com |
d501a3291b2f5cc2bd832f457c377c846258c4fb | f72de19d41937887d3e635fd2d76dc229c325d55 | /benchmarks/cache-thrash.cpp | 01d3bb4486cbe22e07a6dbc259e5a93f7c68fd3b | [] | no_license | rishabhkabra/6172-dynamic-memory-allocator | 10cd621a1fa30e4ccaa6deebbbe141811e99115e | cab44f514beab5151a02e9f2f6310bc0bc65caf9 | refs/heads/master | 2021-01-01T06:10:21.171986 | 2012-11-29T04:52:33 | 2012-11-29T04:52:33 | 12,188,883 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,313 | cpp | ///-*-C++-*-//////////////////////////////////////////////////////////////////
//
// Hoard: A Fast, Scalable, and Memory-Efficient Allocator
// for Shared-Memory Multiprocessors
// Contact author: Emery Berger, http://www.cs.umass.edu/~emery
//
// Copyright (c) 1998-2003, The University of Texas at Austin.
//
//... | [
"tfk@mit.edu"
] | tfk@mit.edu |
569df30e62c1ac91565cff538cfc711a3030467e | 1316bf69cb76ddde9e8cea19eb1aa5342bd309af | /CommonUtilities/Timer.hpp | 21c69903b2f8b9731ff1f94293941283c9cda715 | [] | no_license | proxxus/Common-utilities | 20f8ec1daaf0767dee64dde4ea963fd77ab8e3e9 | 19e47ae4a4809759cc0ed1c5e093cf93bdac562b | refs/heads/master | 2020-04-01T02:07:20.940247 | 2018-10-12T14:50:29 | 2018-10-12T14:50:29 | 152,765,907 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 503 | hpp | #pragma once
#include <chrono>
class Timer
{
public:
Timer();
Timer(const Timer &aTimer) = delete;
Timer& operator=(const Timer &aTimer) = delete;
void Update();
float GetDeltaTime() const;
double GetTotalTime() const;
private:
float myDT;
std::chrono::high_resolution_clock myClock;
const std::chrono::high_r... | [
"elias.oh@learnet.se"
] | elias.oh@learnet.se |
0b8beb206615bb043982c32ca1d277529b994705 | 942cc84d8528eff11ecb49dc9c9cad5327f75016 | /UnitTests/DatabaseHandlerBenchmark/tst_databasehandlerbenchmark.cc | 0891c4b990b84ee1d4c31e3b05cd666368ee72dd | [
"MIT"
] | permissive | PerttuP/EventTimer | 5e681934bb20e804e3e8625c1fdcc5c61f9d60a2 | 99946052a6d3ac36f35798f69a938e1c45dd3a4c | refs/heads/master | 2021-01-01T05:17:41.634951 | 2016-10-30T19:07:21 | 2016-10-30T19:07:21 | 58,411,167 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,141 | cc | /**
* @file
* @brief Benchmarking tests for the DatabaseHandler class.
* @author Perttu Paarlahti 2016.
*/
#include <QString>
#include <QtTest>
#include <memory>
#include "databasehandler.hh"
/**
* @brief The DatabaseHandlerBenchmark clas
* implements benchmarking for the DatabaseHandler class.
*/
class Datab... | [
"perttu.paarlahti@gmail.com"
] | perttu.paarlahti@gmail.com |
3556671759030f8191e6e5e625118066e268aaa2 | 057b656e6e9f2b9ccaba78bfb62b8e3b21585b30 | /congig.cpp | 78ce660b68183f8938e6554c20497776b07d4cef | [
"MIT"
] | permissive | VegetablesMaster/qt_serial | fc7ebf9afe27f079e229b72317e965afc8796d8c | f0cd97fa3496ec7a2b0408d3f19d0ae2999927db | refs/heads/master | 2020-05-19T12:51:23.903501 | 2019-08-08T05:43:12 | 2019-08-08T05:43:12 | 185,023,985 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 187 | cpp | #include "congig.h"
#include "ui_congig.h"
Congig::Congig(QWidget *parent) :
QDialog(parent),
ui(new Ui::Congig)
{
ui->setupUi(this);
}
Congig::~Congig()
{
delete ui;
}
| [
"42300161+VegetablesMaster@users.noreply.github.com"
] | 42300161+VegetablesMaster@users.noreply.github.com |
dea318563c5608efaae6c529e5b13e2097ef6160 | ca49e7235d40fa2acb63622a71a1339c85f6e5ea | /Karlos's code samples/Testing D3D11/Testing D3D11/ParticleSystem.h | e509c83cd8774786db8d467f544b215e154b1b86 | [] | no_license | xfac11/LitetSpel | c894f6075a1f64060b8eb2c037ce63e31b5acbfe | b14515cc8131f5fc0bb94f7b0b7f6d1a928568c5 | refs/heads/master | 2020-05-03T23:26:29.792671 | 2019-08-17T17:13:46 | 2019-08-17T17:13:46 | 178,865,742 | 4 | 2 | null | 2019-04-01T14:09:49 | 2019-04-01T13:09:10 | null | UTF-8 | C++ | false | false | 2,574 | h | #ifndef PARTICLESYSTEM
#define PARTICLESYSTEM
#include <d3d11.h>
#include <directxmath.h>
#include <string>
#include <vector>
#include "Texture.h"
#include "Vertex3D.h"
//#include "colorShader.h"
#include "DeferedShader.h"
class ParticleSystem
{
private:
struct ParticleType
{
DirectX::XMFLOAT3 positi... | [
"noreply@github.com"
] | xfac11.noreply@github.com |
3a4e9d49295fa96770a9b88b9f7880800cb2d365 | b9b50107cae005e227eb4fbeb4831b3a63a8f5c4 | /src/physics/physics_generic_constraint.inl | 562b1dcd7ace0d72c6d0a027da931971a97f13cc | [
"MIT"
] | permissive | Shtille/scythe | 1d043a8fdd27442e97bfcea5c2055a69b8b579be | b5ddafa3a25d78af34cb6ff00f433988789023d9 | refs/heads/master | 2022-10-22T08:33:31.669363 | 2022-10-05T12:04:24 | 2022-10-05T12:04:24 | 145,037,537 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,307 | inl | #include "physics_generic_constraint.h"
#include "common/sc_assert.h"
namespace scythe {
inline const Quaternion& PhysicsGenericConstraint::GetRotationOffsetA() const
{
if (!rotation_offset_a_)
rotation_offset_a_ = new Quaternion();
SC_ASSERT(constraint_);
btQuaternion ro = static_cast<btGeneric6DofConst... | [
"v.shtille@gmail.com"
] | v.shtille@gmail.com |
9732086ea91c2e5d107e1ee9e6e125af3418c884 | c3323e08d8dd5fad16ae2e5ca5e1e032d6462592 | /src/main.cpp | 11763ddd818c469da84c258945772a728116252b | [] | no_license | alexicon3000/MaterialsIntensity | bca4d089e211a5190e5c984dddeb6968a1d5ecfd | a7dd8b418f7bf89159b6531268aedd0858bd295c | refs/heads/master | 2016-09-06T03:45:19.672009 | 2014-04-26T21:37:44 | 2014-04-26T21:37:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 349 | cpp | #include "ofMain.h"
#include "testApp.h"
//========================================================================
int main( ){
ofSetupOpenGL(1024,768, OF_WINDOW); // <-------- setup the GL context
// this kicks off the running of my app
// can be OF_WINDOW or OF_FULLSCREEN
// pass in width and height too:
... | [
"alex.number2@gmail.com"
] | alex.number2@gmail.com |
dc02d31d3be2cb53c5f18e1d99ac022e09eaac07 | f5c3f2685798b2f6d49984364676700d7f789631 | /source_voxel_absorbed_dose/include/DetectorConstruction.hh | 42363bf9ab340d4b98c87a9683f453afeed09e5b | [] | no_license | llekiMnitsuJ/geant_voxel_s_values | ae4752245d26fc246ffadefac04e572035a0187d | 6e8fa7818be3761cd2f9870e64fe20311469daa8 | refs/heads/master | 2021-01-23T02:28:53.129676 | 2015-02-10T22:00:51 | 2015-02-10T22:00:51 | 30,207,852 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,361 | hh | //
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration... | [
"justin.mikell@gmail.com"
] | justin.mikell@gmail.com |
2f4c0ea9c87414ca5048baf632be8a9982c0f74f | 8f2843049463d24888d9a4532b1fd5d283b131ad | /skia/third_party/externals/angle2/include/platform/FeaturesGL.h | b3c760e600d98287e0d6e89b87359205010c6f88 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"Libpng",
"FTL",
"ICU",
"BSD-3-Clause",
"IJG",
"Zlib",
"NAIST-2003",
"MIT-Modern-Variant",
"LicenseRef-scancode-unicode",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"LicenseRef-scan... | permissive | openharmony/third_party_flutter | 90a413f139848ce36a6af11233f1cee101bdb1c1 | 3282d03b17ac498e90d993761296a53a4f89c546 | refs/heads/master | 2023-08-30T17:42:32.034443 | 2021-10-21T11:36:39 | 2021-10-21T11:36:39 | 400,092,174 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 20,079 | h | //
// Copyright 2015 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// FeaturesGL.h: Features and workarounds for GL driver bugs and other issues.
#ifndef ANGLE_PLATFORM_FEATURESGL_H_
#define ANGLE_PLATFORM_FEA... | [
"mamingshuai1@huawei.com"
] | mamingshuai1@huawei.com |
ed3f7a07c57a0f48f6f9607d069d0a5da07374b1 | 75b5bb557253a780bd2795d1ffaeaa767af1a790 | /Lab10.cpp | 42f0ab0f9dc4918895d81c5ccce2973c65252531 | [] | no_license | xilara/CS271 | 85d246959bb60989e5c08b711a25f0c5698e04f2 | 91206d85bed2aaf6dbbe14a00999f9c9f7a9b840 | refs/heads/master | 2020-05-18T23:36:40.200467 | 2019-05-03T07:39:42 | 2019-05-03T07:39:42 | 184,716,051 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,454 | cpp | // CS 271
// Program Name: Lab10.cpp
// Author: Xiana Lara
// Date: 04/25/19
// Purpose: test cases for Package and TwoDayPackages
#include <iostream>
#include <iomanip>
#include "Package.h"
#include "TwoDayPackage.h"
using namespace std;
int main()
{
//Package Test
Package p1("First Name", "1111 Street St",... | [
"noreply@github.com"
] | xilara.noreply@github.com |
abea0af09f7d1cacb9e1d92eef7ee342515188db | 64a2b5b7db60e105fdcb48804fd2c13d0fc6de7b | /editor/mainwindow_tab/weapon_edit.h | 30808ce6f7c190a834f2d11e35b1ad1d0756e5a0 | [] | no_license | gameblabla/rockbot | d6d821b10c63d30a1758c7eab4d7e1affccac23f | c912f9728802cd9b3f0ca50bbfc5610c8f85674f | refs/heads/master | 2022-11-02T16:21:55.157178 | 2019-04-23T21:12:01 | 2019-04-23T21:12:01 | 273,803,404 | 2 | 0 | null | 2020-06-20T23:56:13 | 2020-06-20T23:56:12 | null | UTF-8 | C++ | false | false | 729 | h | #ifndef WEAPON_EDIT_H
#define WEAPON_EDIT_H
#include <QWidget>
#include "../file/format.h"
namespace Ui {
class weapon_edit;
}
class weapon_edit : public QWidget
{
Q_OBJECT
public:
explicit weapon_edit(QWidget *parent = 0);
~weapon_edit();
void reload();
private:
void reload_weapon_list();
private slot... | [
"protoman@upperland.net"
] | protoman@upperland.net |
5f58fdb8e20253f5b42a17c9bf958a3310ec3615 | 430e2e0d4e69badbc7965873576c5188c7a08f80 | /src/profiles/Profile.h | b51fbf9c234b1ab3aecfe61bddc59cfa8f80f3a9 | [] | no_license | IgorMamushin/NetDrawer | adc674c00894e38833285954c75dff0a4734e394 | d56d35ea9a4af6c1e435ee3b354546bca91169ec | refs/heads/master | 2023-06-21T22:51:23.513608 | 2021-07-22T17:13:43 | 2021-07-22T17:13:43 | 387,471,508 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 424 | h | #pragma once
#include <chrono>
#include <iostream>
#include <string>
class LogDuration {
public:
explicit LogDuration(const std::string& msg = "");
~LogDuration();
private:
std::string message;
std::chrono::steady_clock::time_point start;
};
#define UNIQ_ID_IMPL(lineno) _a_local_var_##lineno
#define UNIQ_ID(... | [
"imamushin@1worldsync.com"
] | imamushin@1worldsync.com |
5f77c0a6ef0cbce3c5f3f5907ade81199e81d6fb | 53a4002d40fae3936428e9d074c72e1e5f88b549 | /process.cpp | 6ccc70bf4c5f4759e4ca919f29c6116c9d8a2abf | [] | no_license | weeChanc/system | 1a1061b2debe2373c7affee579fd71ceb4ed0ea5 | 5fd823131ce93602cc7ba83c402d580c81283fa4 | refs/heads/master | 2020-04-11T13:05:32.681159 | 2018-12-28T03:22:18 | 2018-12-28T03:22:18 | 161,803,786 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 605 | cpp | #include <iostream>
#include <string>
#include<ctime>
#include <algorithm>
#include <vector>
#include <windows.h>
#include <stdio.h>
#include "process.h"
using namespace std;
int main() {
ProcessSelectStrategy* SHORT_FIRST = new Strategy_SF();
ProcessSelectStrategy* HIGHT_RESPONSE_FIRST = new Strategy_HR();... | [
"214652773@qq.com"
] | 214652773@qq.com |
31dd96b1cca59fc6206efcab917ecc88e0c3b356 | 92378ed3d736cd24be135c7a035180fe67c707c7 | /p6top6t/p6top6t.cpp | 230b96ff3f2e921d91035438f75f3c5f1f973bd4 | [] | no_license | eighttails/N6XBasicChecker | 7e25740bbe0ac3b6d44ad96bebaa1c22ce548fc7 | 094de269ba1837f4dbefad443106bcde15a37a4f | refs/heads/master | 2021-07-12T03:44:49.737201 | 2021-06-12T14:19:09 | 2021-06-12T14:19:09 | 42,002,773 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,598 | cpp | // ***************************************************
// P6toP6T Ver.2.3 *
// 2013.12.31 by Yumitaro *
// 2021.06.08 by eighttails *
// ***************************************************
#include <stdint.h>
#include <stdio.h>
#include... | [
"eighttails@nifty.com"
] | eighttails@nifty.com |
56338857cbcb688692516ab293353d35ebc5490f | 0b2bb9df09731ccc8748b0b7bf66a7a427d4e416 | /src/compat/strnlen.cpp | c56709506324459ada68715a2bd770b2cfaef4c8 | [
"MIT"
] | permissive | tcilloni/cillocoin | aae0e5bbcb4808c489ac42d1db2725bfd4b42c5a | 1145e189b9f5f4fab414fc1751bf1fce189770c9 | refs/heads/master | 2022-06-09T23:58:47.924597 | 2019-05-03T15:25:48 | 2019-05-03T15:25:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 514 | cpp | // Copyright (c) 2009-2017 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include <config/cillocoin-config.h>
#endif
#include <cstring>
#if HAVE_DECL_STRNLEN == 0
size_t... | [
"thomas.martin.cilloni@gmail.com"
] | thomas.martin.cilloni@gmail.com |
8ad8b904c380a8bbaca1716e2a1570068c6e8aa1 | 93333464cf0dbab7926519b529afd749cf6db77c | /HelloStorage/HelloStorage.cpp | 0263611c55080de1d563b834c7970831ad907969 | [] | no_license | RockNCode/blockchainTraining | f40c42e88888d74cd10116d95f8877c885154eef | 6f21fa21950ad7f7d09a7811ce638967810ddf13 | refs/heads/master | 2020-03-22T23:23:53.235277 | 2018-07-21T01:24:49 | 2018-07-21T01:24:49 | 140,807,814 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,024 | cpp | #include <eosiolib/eosio.hpp>
#include <eosiolib/print.hpp>
using namespace eosio;
using std::string;
class HelloStorage : public eosio::contract {
public:
using contract::contract;
/// @abi action
void hello(const name username, const string& full_name) {
require_auth(username);
print("Hello, ",name(u... | [
"alexgarcia2k@gmail.com"
] | alexgarcia2k@gmail.com |
ad778fdab104697b1ac4cf8f2d54c8968406cbfe | 7a49ef56fd4fd0dd961937f76155a520bd121dec | /searchAlgorithmsUsingClasses/LinearSearch.cpp | cec50ec7a63131dc79413c48c5139857425afe3d | [] | no_license | umairmustafa753/Algorithms | 503b089c6297c5805a7c11404f7cacc963d14f0b | cf41a5ee129835ddfd21addd9f7f8d1dfbcfc37c | refs/heads/master | 2022-03-19T11:12:04.810966 | 2019-11-29T14:00:30 | 2019-11-29T14:00:30 | 210,692,657 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 382 | cpp | #include "LinearSearch.h"
LinearSearch::LinearSearch(){}
LinearSearch::~LinearSearch(){}
int LinearSearch::search( int array[], int sizeofArray, int key ){
//local variable.
int index = 0;
while( index < sizeofArray && array[index] != key ){
index++;
}
if( index > sizeofArray || array[ ind... | [
"umairhassaaan@gmail.com"
] | umairhassaaan@gmail.com |
961bc9f36ef5fd864afaf37a880bf3e63476eb81 | 7324879b19d76f9ea6984f876a9813653c08ec48 | /usage_example.cpp | 6b7976882b38cb8094a4881e266b0a0b745a3f08 | [] | no_license | koomisov/typelist | 8712d67a4b2e45f6e81b8369ec11c32850118417 | 90a65b6a0616d3c1e5e4536966a60756b3ff8f79 | refs/heads/master | 2020-09-22T10:08:30.050212 | 2019-12-01T13:10:30 | 2019-12-01T13:12:42 | 225,150,089 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 905 | cpp | #include <iostream>
#include "lib/typelist.hpp"
template <typename T>
struct AddConst {
using type = const T;
};
int main() {
using list = lib::typelist<int, double, std::string>;
using list2 = lib::push_front_t<char, list>;
lib::nth_element_t<1, list2> var = 'c'; // char
lib::largest_type_t<list2> var2 = ... | [
"you@example.com"
] | you@example.com |
4d5725d01fa6ce69b2dbfdd906d7a3346fc310c0 | 331cd47ae1d930df60cf6a5513c0a7d525b45a8c | /Source/Building_Escape/OpenDoor.cpp | 82417bc0c533202042d13b6b2944fc048411c9d9 | [] | no_license | AlanWisny/Building_Escape | e8999d90e11b7ba6a437ecdd3c44e9d42d8bd87a | 08662c25e651f69acc8a11edd168dd1a4f950969 | refs/heads/master | 2023-08-14T06:50:58.218606 | 2021-10-04T01:48:02 | 2021-10-04T01:48:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,572 | cpp | // Alan Thomasz Wisny 2021
#include "Components/AudioComponent.h"
#include "Components/PrimitiveComponent.h"
#include "Engine/World.h"
#include "GameFramework/PlayerController.h"
#include "OpenDoor.h"
#include "GameFrameWork/Actor.h"
// Sets default values for this component's properties
UOpenDoor::UOpenDoor()
{
// ... | [
"AlanWisny@hotmail.com"
] | AlanWisny@hotmail.com |
f1ca79b8cd7c3468f4cbb4acbd24f5b1984c8d20 | 45a917690bba40638160fd8636bafb9c21b7f849 | /src.cpp | 234bc12d0ad393d8465cf8c3d3399571fc7fe815 | [] | no_license | FrozenAsh1337/Flash-Reader | 79cd39377ca66c29a2c74c8eaed889c00c58495c | b8eac6a095b2fa30d748a0e1c25995b895d658ae | refs/heads/main | 2023-08-23T17:26:55.671990 | 2021-10-14T12:19:11 | 2021-10-14T12:19:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,039 | cpp | #include <iostream>
#include <string>
#include <unistd.h>
#include <cstdlib>
#include <fstream>
#include <chrono>
#include <thread>
void help()
{
std::cout<<"-o open text file."<<std::endl;
std::cout<<"-s set speed of words in seconds. Default speed is 0.5 seconds per word."<<std::endl;
std::cout<<"-i index of where... | [
"noreply@github.com"
] | FrozenAsh1337.noreply@github.com |
cbbf2cac5468e38c3fe17b49fdacdeb77b9bffa1 | 6982cc32bb79d09b80a505c827a4f8d03e0ab99a | /llvm-pass/InstructionCombining.cpp | 3f375b80e5a30835544c1071240d1b3da6d2d7d0 | [
"Apache-2.0"
] | permissive | 4tXJ7f/alive | 96c1083174a9170885e5a25cc8e7c06f9b0fc511 | 138bdc3c366f090a19547b9286e58a4b2e0aeead | refs/heads/master | 2021-01-21T08:33:24.842563 | 2016-04-01T08:24:13 | 2016-04-01T08:24:13 | 47,609,081 | 7 | 0 | null | 2015-12-08T08:31:18 | 2015-12-08T08:31:18 | null | UTF-8 | C++ | false | false | 120,540 | cpp | //===- InstructionCombining.cpp - Combine multiple instructions -----------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | [
"davemm@cs.rutgers.edu"
] | davemm@cs.rutgers.edu |
ac5941793ce65341f496757aff066b30b8d4ecfe | e19c6e8f6fc43451055a59e2ee98a64c77de877e | /breath/cpu/example/cpu.cpp | bd62f7c619fdbee0c622139aa718b386be431ec7 | [
"BSD-3-Clause"
] | permissive | erez-o/breath | 606a5e445ca2516c9131ca7e28fa37c12c525015 | adf197b4e959beffce11e090c5e806d2ff4df38a | refs/heads/master | 2023-01-11T20:24:16.573636 | 2020-11-01T03:06:57 | 2020-11-01T03:06:57 | 299,582,899 | 0 | 0 | NOASSERTION | 2020-09-29T10:29:39 | 2020-09-29T10:29:38 | null | UTF-8 | C++ | false | false | 2,953 | cpp | // ===========================================================================
// This is an open source non-commercial project.
// Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++, C#, and Java:
// http://www.viva64.c... | [
"gennaro.prota+github@gmail.com"
] | gennaro.prota+github@gmail.com |
d802ba345ed93836162ed5271e71aac24d88b491 | e8adb71ab57b24eb0f9fdacea5d51e6cef5a244e | /src/Plugins/VerilatorPlugin/VerilatorIntegrationLibrary/src/peripherals/fastvdma.h | 592c77716238904e73da248b7eb7c4eccb3aecd5 | [
"MIT"
] | permissive | mtrzas/renode | 97a895329e01a40ec8cf08dd46e9de0a9a9ad937 | 4c843c143771b0e005613149f1f22f7719e3d187 | refs/heads/master | 2023-07-31T21:59:58.766572 | 2021-09-06T11:10:48 | 2021-09-08T15:09:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 530 | h | //
// Copyright (c) 2010-2021 Antmicro
//
// This file is licensed under the MIT License.
// Full license text is available in 'licenses/MIT.txt'.
//
#include "../renode_bus.h"
#include "../buses/bus.h"
struct FASTVDMA : RenodeAgent
{
public:
FASTVDMA(BaseBus* bus, uint8_t* irq_reader=nullptr, uint8_t* irq_writer=... | [
"wkuna@internships.antmicro.com"
] | wkuna@internships.antmicro.com |
2f2a211f565241e1afb2d83de0fce3c4589d55bc | dd7f94de72394e48fdbef4214808fb568c3c1ffe | /calc.cpp | 33fc1fc5dc309c606f81f69b1387b11b9dc96eeb | [] | no_license | Jaishree-Gharde/esdl-jaishree-gharde | a88ae27d8a0d5edcc21eb216a11bf1a4b2673af5 | bc2d68bb9e786755e53d0bbd4bf33cdddff197f2 | refs/heads/master | 2021-01-01T17:46:57.520998 | 2014-07-30T03:20:25 | 2014-07-30T03:20:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 90 | cpp | #include<iostream.h>
using namespace std;
int main()
{
cout<<"Jaishree";
return 0;
}
| [
"jaishree.gharde@cumminscollege.in"
] | jaishree.gharde@cumminscollege.in |
a8a9ef5dadeabb9b4e88cc58b1b133e2e3c4b3be | 9ab2f13980526e713a41a1451481f978873756f5 | /prj.sandbox/markup/src/mainframe.h | c202270f8128423fe2664a0b19789e8dbab2ad3b | [] | no_license | vokintsop/visiworld | c77f37efce7a7035da4d88bc1546a88a0b7a0ff6 | 94a7b563dc79ba761611cdf9b774506b8aff2e90 | refs/heads/master | 2021-01-19T03:02:04.427416 | 2016-07-25T12:15:26 | 2016-07-25T12:15:26 | 45,334,758 | 0 | 2 | null | 2016-01-18T08:26:01 | 2015-11-01T09:32:55 | C++ | UTF-8 | C++ | false | false | 346 | h | #ifndef __MAINFRAME_H
#define __MAINFRAME_H
#include "geomap/geomapeditor.h"
#include "markup/markupeditor.h"
#include "maptorealworld.h"
class MarkupMainFrame
{
public:
Ptr< GeoMapEditor > pGeoMapEditor; // singleton
Ptr< MarkupEditor > pMarkupEditor;
Ptr< Camera2DPoseEstimator> pCamPoseEst;
};
... | [
"Vassili.Postnikov@gmail.com"
] | Vassili.Postnikov@gmail.com |
6eea2fb4af4bd2f0b59fb14a53a0e54a03fb76f7 | e0735384c3fb5948c0d42cdf7ec8f7ef8d90ed32 | /Курсовой проект Новик Виктории — оригинал/NVA_2020/Rules.h | a74405b2bc8c21bf24488dee287962be1b6c2ba4 | [] | no_license | vnvika/NVA_2020 | 8e1ee3a8c0f956e9a6af5486b84a35006c465049 | 4628f30b28e84d222cbc6b782d2216df46136147 | refs/heads/main | 2023-02-18T20:16:52.884877 | 2021-01-21T13:28:15 | 2021-01-21T13:28:15 | 331,633,699 | 1 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 8,641 | h | #pragma once
#include "GRB.h"
namespace GRB
{
Greibach greibach(NS('S'), TS('$'), 20,
Rule(NS('S'), GRB_ERROR_SERIES, 3, // Неверная структура программы
Rule::Chain(6, TS('t'), TS('f'), TS('i'), NS('P'), NS('T'), NS('S')),
Rule::Chain(6, TS('g'), TS('f'), TS('i'), NS('P'), NS('G'), NS('S')),
Rule::C... | [
"vnvika@icloud.com"
] | vnvika@icloud.com |
5008e690cf6edded8185a35eab0411dca3313ea7 | be2f96849070360cc71fb4f441760c2ad5cfeb34 | /lprdemo/lprdemo.cpp | 3b809c1666236f3b09a428038c553c8ca3dc831c | [] | no_license | HwangKC/HyperLPR_lib | 956e27a127d1e8f9fdfe79f06cf5c9254cc3eb34 | e0a253da81737fea60f979bc02d8818daa52b9bd | refs/heads/master | 2021-09-09T07:40:03.055408 | 2018-03-14T09:13:24 | 2018-03-14T09:13:24 | 125,017,644 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 10,059 | cpp | #include "stdafx.h"
#include <sys/stat.h>
#include <algorithm>
#include <functional>
#include <lprlib.h>
#define DEFAULT_DISPLAY_WIDTH (800)
#define DEFAULT_DISPLAT_HEIGHT (600)
std::vector<std::string> CH_PLATE_CODE{ "京", "沪", "津", "渝", "冀", "晋", "蒙", "辽", "吉", "黑", "苏", "浙", "皖", "闽", "赣", "鲁", "豫", "鄂", "湘", "粤... | [
"huang.kechao@ronghechina.com"
] | huang.kechao@ronghechina.com |
0cbea18593cd279ddecc6fb2e672d802c21d6d7f | 13dafbe0e33771bd24496637a761c4703fb0beb4 | /Codeforces/CutAndPaste.cpp | ecee803397d8f427b9d0070c5353aa64cb27475c | [] | no_license | Owmicron/CPStuff | 121d498b2418141fa45d27fcbfa0a1fd851a4293 | 436f3234ed2f2930b13169f30428ded5da557b75 | refs/heads/master | 2022-12-30T06:43:18.425735 | 2020-10-20T12:21:59 | 2020-10-20T12:21:59 | 258,448,760 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,704 | cpp | #include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#pragma GCC target ("avx2")
#pragma GCC optimization ("O3")
#pragma GCC optimization ("unroll-loops")
#pragma comment(linker, "/stack:200000000")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=n... | [
"owenultima@gmail.com"
] | owenultima@gmail.com |
b7fa8c79b2c3628880a701ec879ea865c5eb5cb1 | 1121785445c29515a68f2e31022ff33315518d68 | /OJ/HDU_CODE/33061.cpp | 44252001b4e14cad0a9bebf218ff9c9589eb9320 | [] | no_license | cpsa3/backup | 5406c4c14772c1789353c2cfe2a73e86677c392a | 64ca598b5c15352c623b290d5e93fa815df3489f | refs/heads/master | 2016-08-11T14:58:35.300203 | 2016-03-02T11:39:35 | 2016-03-02T11:39:35 | 45,887,997 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,826 | cpp | ////////////////////System Comment////////////////////
////Welcome to Hangzhou Dianzi University Online Judge
////http://acm.hdu.edu.cn
//////////////////////////////////////////////////////
////Username: 096040179JY
////Nickname: ___简言
////Run ID:
////Submit time: 2010-12-05 00:28:34
////Compiler: Visual C++
////////... | [
"1090303279@qq.com"
] | 1090303279@qq.com |
687c92312a6fef127b1645537da0209fa8cb135b | d82a39614b0d838147e72cdd2a2860911105d5cd | /objectDetector/GetHOGFeature.cpp | 6d7850669fe0ffa8ab5b59c7013d828ec047eb46 | [] | no_license | j0x7c4/GestureRecognition | eb1a839e7a7b52661782852fd72139571af181ab | a1d77193f0d7a139489769944a7152565359d5d8 | refs/heads/master | 2021-01-13T01:36:29.485474 | 2012-11-20T09:07:53 | 2012-11-20T09:07:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,691 | cpp | #include <cv.h>
#include <highgui.h>
#include <ml.h>
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
using namespace cv;
using namespace std;
void saveFeature ( int cat, vector<float>& feature, string filename );
int main(int argc, char** argv)
{
vector<string> img... | [
"china.eli@gmail.com"
] | china.eli@gmail.com |
0ebf694ea2ecda717ccfbd69162f9801c4907327 | b10543704745b1bb9641519bc648d8f7394953d9 | /src/SimpleGui/guiTextLine.hpp | 56d54b126572658bf805f3cb0ca058a56ae0ef61 | [] | no_license | scaryspacebat/SimpleUI | 339a19a2845cb3b906a9912a5af713ee5c18a7e0 | c6d2af1b10b03718bf25af8af11a16edece6e75f | refs/heads/master | 2020-03-10T22:13:29.821044 | 2018-06-08T00:15:41 | 2018-06-08T00:15:41 | 129,614,270 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 467 | hpp | #ifndef GUI_TEXT_H
#define GUI_TEXT_H
#include "GuiHasAdjustablePosXY.h"
#include <string>
class GuiTextLine : public GuiHasAdjustablePosXY {
public:
GuiTextLine( std::string t="" );
virtual ~GuiTextLine();
virtual void init();
virtual void render();
void setText( std::string t );
void s... | [
"38399058+scaryspacebat@users.noreply.github.com"
] | 38399058+scaryspacebat@users.noreply.github.com |
34889b04f0b715cf986c7e409124c23f80cede80 | 11588f23bb087199d2dd11b1c4111db6405ab1db | /source/server/config/stats/dog_statsd.cc | f7b94360881165557204d98c58a534c16f0fcfed | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ofek/envoy | 44d6b655cfde2664d5f8f5ddc1bae8707608e4ac | 8f30f67262d6db0762e3014e57e3bdfab96c0dfc | refs/heads/master | 2021-04-27T20:25:17.622262 | 2018-02-22T17:21:29 | 2018-02-22T17:21:29 | 122,378,235 | 1 | 0 | Apache-2.0 | 2018-02-21T18:48:36 | 2018-02-21T18:48:35 | null | UTF-8 | C++ | false | false | 1,527 | cc | #include "server/config/stats/dog_statsd.h"
#include <string>
#include "envoy/config/metrics/v2/stats.pb.h"
#include "envoy/config/metrics/v2/stats.pb.validate.h"
#include "envoy/registry/registry.h"
#include "common/config/well_known_names.h"
#include "common/network/resolver_impl.h"
#include "common/stats/statsd.h... | [
"mklein@lyft.com"
] | mklein@lyft.com |
9bb9dbac0c0e2b356c7a849368fea72fd06775c4 | 69d600ca5471224974b32a9ade1a09a158f07f44 | /opengl/imgui/imgui.h | 788f74c9c7974ec37e15072033e02531b13626a1 | [
"MIT"
] | permissive | ASTex-ICube/aa_real_time_glint | 2d18c25785ec9848acdf5ae0d17c4567f8363d5b | f5ac25dd10d791a3d695f30329f598e7342c7228 | refs/heads/main | 2023-03-23T20:18:42.505993 | 2021-03-02T16:44:58 | 2021-03-02T16:44:58 | 342,246,525 | 14 | 4 | MIT | 2021-03-02T16:44:59 | 2021-02-25T13:03:15 | null | UTF-8 | C++ | false | false | 224,324 | h | // dear imgui, v1.77 WIP
// (headers)
// Help:
// - Read FAQ at http://dearimgui.org/faq
// - Newcomers, read 'Programmer guide' in imgui.cpp for notes on how to setup Dear ImGui in your codebase.
// - Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp. All applications in examples/ are doing that.
// Read imgui.... | [
"simon.lucas@etu.unistra.fr"
] | simon.lucas@etu.unistra.fr |
7aa74f51856dcaf4cf8c1c14d474521d55974c2b | 1cae363f621efaa3bdd2b8708fd4b6bf337fe147 | /SharingFaces/src/main.cpp | 0d752d0c5abd888642015934a7ef73606782e71c | [
"MIT"
] | permissive | grahamplace/SharingFaces | a7446d1b3602ff11178e6ef1d896443dfe86373a | d890fca21cc766c8838d79410366bab8298ea941 | refs/heads/master | 2021-06-04T05:14:42.525562 | 2016-10-10T15:51:53 | 2016-10-10T15:51:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,650 | cpp | #define INSTALL
//#define USE_WHITE_POINT
#include "ofMain.h"
#include "SharingFacesUtils.h"
const int installWidth = 1080, installHeight = 1920;
class ofApp : public ofBaseApp {
public:
#ifdef INSTALL
static const int camWidth = 1920, camHeight = 1080;
ofxBlackMagic cam;
#else
static const int camWidth ... | [
"kyle@kylemcdonald.net"
] | kyle@kylemcdonald.net |
06046dcdfddbc08cd30ab6a62800d4f61a4d676d | f05155d1c9c41fcc6e31686505f856fd2fbc06de | /2020/August/B. T-shirt buying.cpp | a0d4922be7c0581e46484857b7ee0d6018baa3b1 | [] | no_license | T-tasir/Competetive-Programming | 22308db58c827a8dfa9d2f879f7a1c135f3ab96a | b56ab712fd2147a69b90b7300e281b9b6ed85852 | refs/heads/main | 2023-08-18T07:35:22.656508 | 2021-10-14T13:20:33 | 2021-10-14T13:20:33 | 368,572,215 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,494 | cpp | #include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double dl;
typedef unsigned long long ull;
#define pb push_back
#define PB pop_back
#define nn "\n"
#define O_O ios_base::sync_with_stdio(false); cin.tie(NUL... | [
"allmoontasir256@gmail.com"
] | allmoontasir256@gmail.com |
679af95decde2189d9db767bb8677d2c549a3d54 | 1ecb42c06d372f090ecf062c448be0ce0ebc2481 | /Interface/Interface.ino | 7d1cbd234ad4f735aba1b6ae1a943a95429453a8 | [] | no_license | alextzik/arduino_workshop-2019 | c72a6e4c3ef4ade1f9290b3568636081296b9c2a | 2231e8b42db2367c8a306d533d89833063456476 | refs/heads/master | 2022-01-13T11:47:35.194089 | 2021-12-29T17:43:29 | 2021-12-29T17:43:29 | 178,888,394 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,301 | ino | #include <LiquidCrystal.h>
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
#define btnNONE 0
#define btnRIGHT 1
#define btnUP 2
#define btnDOWN 3
#define btnLEFT 4
#define btnSELECT 5
// Number of codes
#define CODES 2
// Menu Variables
bool menu_flag = 0;
int last_btn = btnNONE;
int pos = 0;
// Interface Variab... | [
"noreply@github.com"
] | alextzik.noreply@github.com |
d82290b5a4b0d36b90cc70cb5aaeb651f397f261 | 5fa0e32ee5bf534e4a187870985d62d55eb3d5c6 | /humble-crap/prosaic-download-queue.hpp | 84785dec9954b949e3388daa5e08a9196dd159cd | [
"Unlicense"
] | permissive | lukesalisbury/humble-crap | 271ce3b6df1dfa9f1e7a8d710509e4e82bb1629c | 814c551cfdfa2687d531b50d350a0d2a6f5cf832 | refs/heads/master | 2021-01-18T17:14:59.234310 | 2019-10-28T05:30:37 | 2019-10-28T05:30:37 | 12,215,398 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,618 | hpp | /****************************************************************************
* Copyright © Luke Salisbury
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to a... | [
"dev@lukesalisbury.name"
] | dev@lukesalisbury.name |
cb8b2108965a6a783dbb83883f589dd805b04816 | 2b8adcdd03d8a41c4b4283f741e60078b54e34f7 | /src/servo/ServoPublisher.cpp | 715ef9818033fa5e738ed84fdd366620ae9afdc4 | [
"MIT"
] | permissive | CatixBot/KinematicsNode | e998fdad16ef3d3131581210cf017837826f0893 | 451d109a472807029de8dc7392dd851f3039c3db | refs/heads/main | 2023-03-06T10:25:36.892843 | 2021-02-13T23:56:14 | 2021-02-13T23:56:14 | 310,109,209 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 657 | cpp | #include "servo/ServoPublisher.h"
#include <catix_messages/ServoState.h>
servo::ServoPublisher::ServoPublisher(size_t servoIndex, ros::NodeHandle& node)
: servoIndex(servoIndex)
, publisherServoState(node.advertise<catix_messages::ServoState>("Catix/Servo", 1))
{
}
bool servo::ServoPublisher::setAngle(double... | [
"wurty@mail.ru"
] | wurty@mail.ru |
999f844da7b1cd0e9d34277833576946d42d8e23 | 182e1eee62c32297d8dbbf47d089b01443e1dcf2 | /HW3/Page.cpp | 6a08b2e214c98491eb8dbec7fdffb919d7351a3f | [] | no_license | emrebayrm/CSE_312_Operating_System_HWs | 0aee110f5d5ddb11ae3fddb6006630b773578dd7 | 40fdafe415506f9b74843d6d4c3c14bd63b72197 | refs/heads/master | 2021-07-25T11:05:34.733269 | 2017-11-07T18:33:18 | 2017-11-07T18:33:18 | 109,873,200 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 56 | cpp | //
// Created by emre on 5/27/17.
//
#include "Page.h"
| [
"noreply@github.com"
] | emrebayrm.noreply@github.com |
6b4de02fdbcdbfea56c614b471323076d262b774 | e2d636e98335b75980a4c150fa97d3e74d7c5f9a | /lua-grpc/lua/client/BindClientAsyncReaderWriter.cpp | d927af5e1af2860c1770eea4015dd2d1173bfbf5 | [] | no_license | zkqcommon/grpc_lua | 1c32202cd65c5c0834d8ec26d2d67f47e05d1088 | 94fef213f9a66b85a530a83a59a84bb0995cc2b7 | refs/heads/master | 2020-11-25T16:41:05.622618 | 2019-08-27T02:45:39 | 2019-08-27T02:45:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,831 | cpp | #include "BindClientAsyncReaderWriter.h"
#include "impl/CbWrapper.h"
#include "../common/GetTimeoutMs.h"
#include "../../core/client/client_async_reader_writer.h" // for ClientAsyncReaderWriter
#include "../../core/client/service_stub.h" // for ServiceStub
#include "../../core/common/completion_queue_... | [
"c_chenzhiyong@163.com"
] | c_chenzhiyong@163.com |
e3ef4d83672c4473ed44224b29e8c4a0550c9fde | 47797f5a4fdf3752ee8299df273162b4ec37c5be | /lab_hash/lphashtable.cpp | 557fd1fe56d4e9e6decd9355349fc62603baf92f | [] | no_license | jasonwhwang/cs225 | 54de7f3f8a7d22947596e37d6032be1f567bc312 | 88a906e72081ad9bddae6dbd8ce121567f93b72f | refs/heads/master | 2020-04-14T14:58:35.347276 | 2019-01-03T02:37:49 | 2019-01-03T02:37:49 | 163,912,871 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,604 | cpp | /**
* @file lphashtable.cpp
* Implementation of the LPHashTable class.
*
* @author Chase Geigle
* @date Spring 2011
* @date Summer 2012
*/
#include "lphashtable.h"
using hashes::hash;
using std::pair;
template <class K, class V>
LPHashTable<K, V>::LPHashTable(size_t tsize)
{
if (tsize <= 0)
tsize =... | [
"jasonwhwang@gmail.com"
] | jasonwhwang@gmail.com |
31b9b6aa6caa16af897d0585cb690eec652cd9af | 867dc15d20698dd36af40ff9b26177c23f8b8479 | /Classes/GameLayer/GameMap.cpp | 1e39ed596102e12ee74668f54bd23dcbf866f458 | [] | no_license | jianin45/SuperMario | d3a26c546b0abcb2ff1173a2e65051a3ab722abc | 9492c41f095e31a19612309aa710ff8ef23166db | refs/heads/master | 2021-01-21T02:24:13.061136 | 2015-02-25T01:58:11 | 2015-02-25T01:58:11 | 30,167,372 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 669 | cpp | //
// GameMap.cpp
// SuperMarry
//
// Created by Hello,world! on 15/1/28.
//
//
#include "GameMap.h"
GameMap::GameMap()
//mario_birthPos(Point::ZERO)
{
}
GameMap::~GameMap()
{
}
GameMap* GameMap::create(const char *tmxFile)
{
GameMap* game_map = new GameMap();
if (game_map && game_map->ini... | [
"jianin45@sina.com"
] | jianin45@sina.com |
bb7b5394bd49302e826f89756c3a6dd348c6e514 | d4b921fe134ba911579a9791426a1689d1aa0b35 | /Lab2/make_sequence.cpp | 4d09c4d10bf30aebf7ada20b6d400e4821b766e1 | [] | no_license | FluenceYHL/OperateSystem | ffcedc5d5ee5f76f6ed0935c41b14f7839d74e5b | f184c9b9147a6b67cc0a165983313e6d80c433d6 | refs/heads/master | 2020-04-09T01:14:13.612057 | 2018-12-31T13:18:05 | 2018-12-31T13:18:05 | 159,896,981 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,485 | cpp | #include <iostream>
#include <fstream>
#include <cstdlib>
#include <vector>
#include <ctime>
int main() {
srand(time(nullptr));
int cur = 1;
constexpr int page = 256;
constexpr int initSize = 64 * page;
auto getRand = [](int l, int r) {
l = std::abs(l), r = std::abs(r);
if(l == r) return l;
if(l > r) std::s... | [
"noreply@github.com"
] | FluenceYHL.noreply@github.com |
25dd0027a12ad6d303135ccfb366bd51aac1ef92 | f6bfcb7b46d827999bc2a69ad9a3689f7926740e | /src/GoldHook/CodeGenerator.cpp | 3c1b008a74cecc9c0a9467ae817ddddd2ec39e89 | [] | no_license | darfink/GoldMeta | d2818a5bd82f0ad0744c8f4b8c1627d62f648ffe | 7e234195db1674a7cc504db86e15d092e9af40a1 | refs/heads/master | 2016-09-06T16:52:59.627807 | 2014-03-04T11:42:52 | 2014-03-04T11:42:52 | 14,727,581 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 28,973 | cpp | #include <asmjit/asmjit.h>
#include <GoldMeta/Gold/IModuleFunction.hpp>
#include <boost/range/adaptor/reversed.hpp>
#include <cstddef>
#include <cassert>
#include <vector>
#include "../Default.hpp"
#include "HookContext.hpp"
#include "CodeGenerator.hpp"
#include "VTableOffset.hpp"
// We want to keep these to a minimu... | [
"elliott.darfink@gmail.com"
] | elliott.darfink@gmail.com |
7fdd7cb81bb64f573303066d1fb0d00ae91dd4f8 | 4591a91b39bf975b0779482ce4a908a9dc2cc17d | /rk3288/head/Transfer.h | aee646040ea79dce1cffadcebec73c3d01686fa3 | [] | no_license | hongquanzhou/bear_fault_diagnose | bcaf2f386c86dab28fc5fcdbca2d60fec6ae1a04 | 5f65c5f33bc253a03ebd3a2ef99cb127208831b7 | refs/heads/master | 2023-04-14T04:40:02.223660 | 2021-04-26T07:16:46 | 2021-04-26T07:16:46 | 286,705,838 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 784 | h | #include <stdio.h>
#include <iostream>
#include <fstream>
#include <vector>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <string.h>
#include <unistd.h>
#include <dirent.h>
#include "utils.h"
#include "Infer.h"
using namespace std;
class Transfer
{
private:
... | [
"18121350@bjtu.edu.cn"
] | 18121350@bjtu.edu.cn |
41ea9747846f7ad0023a0e3ae97b6af1b1070b68 | 8567438779e6af0754620a25d379c348e4cd5a5d | /third_party/WebKit/Source/core/frame/FrameSerializer.h | 290394485438e727ee54a712dd5e1c6693ef2e63 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LGPL-2.0-only",
"BSD-2-Clause",
"LGPL-2.1-only",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-2.0-only",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause"
] | permissive | thngkaiyuan/chromium | c389ac4b50ccba28ee077cbf6115c41b547955ae | dab56a4a71f87f64ecc0044e97b4a8f247787a68 | refs/heads/master | 2022-11-10T02:50:29.326119 | 2017-04-08T12:28:57 | 2017-04-08T12:28:57 | 84,073,924 | 0 | 1 | BSD-3-Clause | 2022-10-25T19:47:15 | 2017-03-06T13:04:15 | null | UTF-8 | C++ | false | false | 5,798 | h | /*
* Copyright (C) 2011 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:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditio... | [
"hedonist.ky@gmail.com"
] | hedonist.ky@gmail.com |
29c6f7619f4c6c47d3c1cc819cad7f6034e9854c | ba19c65239f9d9b47547864dfbd27be1acf4a5ce | /sim/check/check.ino | 2a9778b882566195c0b9d7c611c6caa66bbbd667 | [] | no_license | vk-0002/Arduino_Projects | 01cc91bd4d8c5069744ca9c50ac58706d5ebe134 | b4064bcb9c29a185a88215bf31cded66defbc5c4 | refs/heads/master | 2023-07-17T23:50:13.796457 | 2021-09-04T06:36:09 | 2021-09-04T06:36:09 | 403,064,365 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,176 | ino | #include <SoftwareSerial.h>
//Create software serial object to communicate with SIM800L
SoftwareSerial mySerial(3, 2); //SIM800L Tx & Rx is connected to Arduino #3 & #2
void setup()
{
//Begin serial communication with Arduino and Arduino IDE (Serial Monitor)
Serial.begin(57600);
//Begin serial communication ... | [
"vaibhavkshirsagar225@gmail.com"
] | vaibhavkshirsagar225@gmail.com |
aaa3a6ff603c4ec7dd925cd11c3adcde7f624117 | 5abcd25ca63733a326a0a86aa86a6aa76c94d4e3 | /src/RequestData.h | ed4dcee567610e1f601a7dff9bc2925713be5688 | [
"BSD-3-Clause"
] | permissive | NTUSTcs1091/Group3 | a9ad34cbe90e38e34563246dbb399319eb59eb9b | 7558d8b634836c713559538ddacc4f008cd56fe8 | refs/heads/master | 2023-06-03T14:42:46.477515 | 2021-06-29T08:13:21 | 2021-06-29T08:13:21 | 345,690,454 | 0 | 4 | BSD-3-Clause | 2021-06-28T09:24:28 | 2021-03-08T14:50:05 | C++ | UTF-8 | C++ | false | false | 1,140 | h | /*
Copyright (c) 2021 Chiu Yen-Chen, Swen Sun-Yen, Wen Yong-Wei, Yuan Wei-Chen.
All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. See the AUTHORS file for names of contributors.
*/
#ifndef SHORTLINK_SRC_REQUESTDATA_H_
#define SHORTLINK_SRC_REQUESTDATA... | [
"will889889@gmail.com"
] | will889889@gmail.com |
381dbb9d1331e50ea3b74c7c9cfbfc997d60fc1e | 844969bd953d7300f02172c867725e27b518c08e | /SDK/BP_AI_wpn_cutlass_ItemDesc_classes.h | cd630bcc7d4dde9921c316742c6228bea9385d35 | [] | no_license | zanzo420/SoT-Python-Offset-Finder | 70037c37991a2df53fa671e3c8ce12c45fbf75a5 | d881877da08b5c5beaaca140f0ab768223b75d4d | refs/heads/main | 2023-07-18T17:25:01.596284 | 2021-09-09T12:31:51 | 2021-09-09T12:31:51 | 380,604,174 | 0 | 0 | null | 2021-06-26T22:07:04 | 2021-06-26T22:07:03 | null | UTF-8 | C++ | false | false | 824 | h | #pragma once
// Name: SoT, Version: 2.2.1.1
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//------------------------------------------------------------... | [
"51171051+DougTheDruid@users.noreply.github.com"
] | 51171051+DougTheDruid@users.noreply.github.com |
2d7c94e42d0334871d64143eae6486f9a0ebbaf3 | 7351bfa321d486a26d0aa8fa211c0eac26699565 | /mainwindow.h | 78cc4ebf39cc29bb4bfe12a7aada50325d963e9b | [] | no_license | troe88/gps_draw | 69c7031240da67a67dda306061e7c35bcb5768a2 | 8cb16b8bd4e4fa77f7779c6f85c4eaffd2f80fb3 | refs/heads/master | 2021-01-19T06:43:36.250245 | 2015-05-15T08:17:02 | 2015-05-15T08:17:02 | 35,628,164 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 438 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QtCore>
#include <QtGui>
#include <QGraphicsScene>
#include <QGraphicsEllipseItem>
#include <QGraphicsRectItem>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *... | [
"dmitry.trok@gmai.com"
] | dmitry.trok@gmai.com |
0512463c12f813406b3266fe826053f74515def0 | 22561a413e066740733dd6bc8d92021f65d4a9ae | /Algorithm/Solution105.cpp | 5d70cad77f5da81332090d4ff200a0b3414e2a69 | [] | no_license | Pancf/Algorithm | 9c76198658146bd77d05220888f288b29e2fdef8 | 9a6de7f212abd371969b4ce3198e4e0b684a7e51 | refs/heads/master | 2023-04-07T21:06:57.071177 | 2021-04-09T09:06:33 | 2021-04-09T09:09:52 | 73,789,124 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,198 | cpp | //
// Solution105.cpp
// Algorithm
//
// Created by Pancf on 2020/12/6.
// Copyright © 2020 Pancf. All rights reserved.
//
#include "Solution105.hpp"
static TreeNode* build(std::vector<int> &preorder, std::vector<int> &inorder, int leftIdx, int rightIdx, int rootIdxInPreorder)
{
if (leftIdx == rightIdx) {
... | [
"panchenfeng@stu.xmu.edu.cn"
] | panchenfeng@stu.xmu.edu.cn |
f11d4b91984a127b9f1f2e20e43388d77bf0d20d | e93312c9388e16180be80e79d811e3338cf5e902 | /Cpp/InlineSample/InlineSample.cpp | b7ea69c059ef040a6004412727e7104749be463b | [
"MIT"
] | permissive | VontineDev/repos | 787d64e5222005359d0b510bf74f158fef870ba1 | 0e98250a00d3deb0da4907898c3972222f14a5c8 | refs/heads/main | 2023-04-17T05:10:57.202546 | 2021-04-29T02:18:15 | 2021-04-29T02:18:15 | 362,630,964 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,362 | cpp | // InlineSample.cpp : 이 파일에는 'main' 함수가 포함됩니다. 거기서 프로그램 실행이 시작되고 종료됩니다.
//
#include <iostream>
using namespace std;
#define ADD(a,b)((a)+(b))
int Add(int a, int b)
{
return a + b;
}
inline int AddNew(int a, int b)
{
return a + b;
}
int main()
{
int a, b;
scanf_s("%d%d", &a, &b);
printf("ADD()... | [
"57723128+VontineDev@users.noreply.github.com"
] | 57723128+VontineDev@users.noreply.github.com |
1022e992ae53f3aae4cadd0aa523c8d63b011e8d | 588ae69239b6211ed4aa7310824eae0c36229acc | /inc/run.hpp | 06a32a787876be61d324207a52ee1d802b11f860 | [] | no_license | ZARAG-YAN/My-Project | 00c69b240d1b851ad1c2fcb46577bbf85ebc9b03 | 1a17cde25dda89b669af848dc7c4b735e2ba9571 | refs/heads/master | 2020-04-26T01:53:13.249448 | 2019-03-22T12:53:04 | 2019-03-22T12:53:04 | 173,218,063 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 144 | hpp | #include <sstream>
#include <iostream>
void start(char [][10], char [][10], int&, int&);
bool user_input(int&, int&, char [][10]);
void run();
| [
"zara030396@gmail.com"
] | zara030396@gmail.com |
cad4f7ae1a02dbe8b1004ff3b5a0b7efc49ac210 | a796d62943524337fffd2ff594f494390ae84c5e | /src/game/server/hl2/npc_antlionguard.cpp | 16a50b789331e725396e75048f56de16e1436416 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | blockspacer/source-asw-sdk | 12c4be5e05f76f8b5a1b0e6671d34b66d6385a68 | 88156ac5a4204becb06c6d383e2a947c8b2b27a3 | refs/heads/master | 2021-09-10T09:49:32.508970 | 2018-03-23T23:10:13 | 2018-03-23T23:10:13 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 155,328 | cpp | //========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose: Antlion Guard
//
//=============================================================================//
#include "cbase.h"
#include "ai_hint.h"
#include "ai_localnavigator.h"
#include "ai_memory.h"
#include "ai_moveprob... | [
"demizexp@gmail.com"
] | demizexp@gmail.com |
df8dacfc06db409ce9ed5a080e8bff0891427bb9 | 015989f7730445efce710a216829b0a6029b4f9a | /myfunc.h | 49d26fca228366e59ae0d9d41310990dbab7d73c | [] | no_license | wriordan3/327_proj1_make | 87b3d12a15e0b009faa0684d0121a4893fac9b75 | 3ef9c0223ff765291eab9a004649d3f1adc5fa40 | refs/heads/master | 2020-12-22T16:49:48.904426 | 2020-02-02T04:59:34 | 2020-02-02T04:59:34 | 236,864,060 | 0 | 0 | null | 2020-01-28T23:20:24 | 2020-01-28T23:20:24 | null | UTF-8 | C++ | false | false | 88 | h | #include <iostream>
#ifndef _MYFUNC_H_
#define _MYFUNC_H_
std::string func();
#endif
| [
"william.riordan.17@cnu.edu"
] | william.riordan.17@cnu.edu |
84b468e201d5202167f252b1dd735a56e223bece | c1b03b59b3974058e3dc4e3aa7a46a7ab9cc3b29 | /src/module-wx.new/generated/Class_wx_TextAttrDimension.h | 5e577da83548252ba727e96bb9d1c1d934cb36c8 | [] | no_license | gura-lang/gura | 972725895c93c22e0ec87c17166df4d15bdbe338 | 03aff5e2b7fe4f761a16400ae7cc6fa7fec73a47 | refs/heads/master | 2021-01-25T08:04:38.269289 | 2020-05-09T12:42:23 | 2020-05-09T12:42:23 | 7,141,465 | 25 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,420 | h | //----------------------------------------------------------------------------
// wxTextAttrDimension
//----------------------------------------------------------------------------
#ifndef __CLASS_WX_TEXTATTRDIMENSION_H__
#define __CLASS_WX_TEXTATTRDIMENSION_H__
#include <wx/richtext/richtextbuffer.h>
Gura_BeginModule... | [
"ypsitau@nifty.com"
] | ypsitau@nifty.com |
0e7fbc1dce965d2d82606c449b1d0546c325d201 | c28b5f019de28eeacee5bcc9ee9165844c0e6d7a | /src/zslb/zslbmodule.cpp | 527f535a2573e723545aa9e4c6fbd3d1556747d7 | [
"MIT"
] | permissive | silbatech/silba-src | 9fa7c6592ae88aa9c785e207f7e2ce82592f2b16 | 8fa0435d469e9a704a3ebc8ff902b2dbbca19520 | refs/heads/main | 2023-03-10T01:02:04.905051 | 2021-02-16T12:12:17 | 2021-02-16T12:12:17 | 339,229,503 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,364 | cpp | // Copyright (c) 2019 The PIVX developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "zslb/zslbmodule.h"
#include "zslbchain.h"
#include "libzerocoin/Commitment.h"
#include "libzerocoin/Coin.h"
#include "hash.h"
#i... | [
"silbatech@protonmail.com"
] | silbatech@protonmail.com |
d28494bc34c316f8cfdc072be05be258038b420b | 15c929e97632c4760654e9bff7543678ac392183 | /src/s2/s2pointutil_test.cc | bf42f1ec5998f2461b2b612e405c6fd5b19a97ed | [
"Apache-2.0"
] | permissive | figroc/s2geometry | ce47540f6e02c374fab87a1dd92a63b4e172d935 | 42919c4dff169231183a82adcd6e4883597b2915 | refs/heads/develop | 2021-07-02T22:56:30.817785 | 2021-02-11T05:45:23 | 2021-02-11T07:41:15 | 223,169,681 | 2 | 4 | Apache-2.0 | 2020-03-31T10:20:33 | 2019-11-21T12:31:45 | C++ | UTF-8 | C++ | false | false | 6,705 | cc | // Copyright 2005 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable... | [
"jmr@google.com"
] | jmr@google.com |
b2169b2ad46032ca98d91bc1b1f18d30fa6f55b5 | 2a43df8cf1b29bf6f019e99c5a6b0fdb5a29b348 | /software/robot_arm/cliGet.ino | 03edd7cba9f4aa1adf3f7e32b3a7bb13fb074965 | [
"MIT"
] | permissive | SovGVD/arduino-robot-arm | 10911e9720c511ad5542458bba36d1369df63b81 | 0021a1922531d1973b165c69896d9e0b554501fa | refs/heads/master | 2022-12-08T06:27:21.173397 | 2020-08-30T07:20:04 | 2020-08-30T07:20:04 | 291,230,262 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 402 | ino | double cliGetAngles(double id)
{
// TODO cliSerial->
Serial.print(currentArm.upper);
Serial.print("\t");
Serial.print(currentArm.lower);
Serial.print("\t");
Serial.print(currentArm.wrist);
Serial.println();
return 1;
}
double cliGetPosition(double id)
{
cliSerial->print(gripperPos.x);
Serial.prin... | [
"sovgvd@gmail.com"
] | sovgvd@gmail.com |
c229091eabfe4cd9b461e1eb8063be20b05a814c | dea494a091b835b60af7069ae1733efd6d5cab2f | /Regexpr/test.cpp | 4102dcfa34e8d609d8f42c4e32367371bd9f194b | [] | no_license | ddoocc/RegExpr | 55c69daa6d25d6f6ec8dd7048fd53069e9d060d1 | 71def19bbfb81320a443400d2f005c5bff00350e | refs/heads/master | 2021-05-15T23:14:27.909952 | 2017-10-13T03:55:55 | 2017-10-13T03:55:55 | 106,775,440 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 227 | cpp | #include <iostream>
#include <vector>
#include <list>
#include <cstdio>
#include <deque>
#include <string>
#include <algorithm>
#include <numeric>
#include <functional>
#include <map>
#include "GraphImpl.h"
int main(void) {
} | [
"cwang173@gmail.com"
] | cwang173@gmail.com |
86ca59eab5410eea8451b7a1c9d509dce76ae2f2 | 596cf6c2e73ab8ef53773f198ec9b0ed61e612f6 | /src/vm/peimagelayout.cpp | 0178664ebd8a7f474bff23cf055dd69aaae42cad | [
"MIT"
] | permissive | kangaroo/coreclr | 7387d38671eb127da84c39e763a960f81607670b | 6f1c48b59908a797313777d792c51413db43afcd | refs/heads/master | 2021-01-17T10:28:18.821450 | 2015-03-01T06:16:02 | 2015-03-01T06:28:09 | 30,268,501 | 2 | 1 | null | 2015-02-03T22:40:02 | 2015-02-03T22:39:58 | null | UTF-8 | C++ | false | false | 30,250 | cpp | //
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
//
#include "common.h"
#include "peimagelayout.h"
#include "peimagelayout.inl"
#include "pefingerprint.h"
#ifndef DACCESS_COMPILE
PEImageLayout* PEImageLayout... | [
"dotnet-bot@microsoft.com"
] | dotnet-bot@microsoft.com |
b2fa34537727f5eb91e1795c5688ee414e5d705c | bfbe1b1d95ad945e4ecec8bb0aab106c30eb8b05 | /unreal/Puerts/ThirdParty/Include/asio/asio/any_io_executor.hpp | 68871e3006a38bcb7fd54dec7af11d8a3fb60832 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | Tencent/puerts | 1b1af6fa5589187a1f564aec43c073aaff0745c8 | bb573ac16db918c604c2230dfb6d780d935f7078 | refs/heads/master | 2023-09-03T13:55:05.475818 | 2023-08-31T08:08:32 | 2023-08-31T08:08:32 | 287,706,896 | 4,171 | 721 | NOASSERTION | 2023-09-12T11:18:11 | 2020-08-15T08:20:44 | C++ | UTF-8 | C++ | false | false | 9,535 | hpp | //
// any_io_executor.hpp
// ~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef ASIO_ANY_IO_EXECUTOR_... | [
"zombieyang@tencent.com"
] | zombieyang@tencent.com |
5fbb8c64d375e0cf39edc64f4278f6d8a04e1aab | 45c2892871f179902272150f42d780a1a4beb8ee | /interface_opencl/zlarfgx-v2.cpp | d9b4ebc9a5e117e4b6b8758e84dbee2621e6d6d9 | [] | no_license | alcubierre-drive/clmagma | 35b88162b057ee3cb8265c082e3679dcba1b158d | e6c2655d3ecd77972bec28bd15ed84bcbb7a1afa | refs/heads/master | 2021-02-27T15:40:02.552547 | 2020-03-07T11:05:21 | 2020-03-07T11:05:21 | 245,616,458 | 0 | 0 | null | 2020-03-07T10:59:33 | 2020-03-07T10:59:33 | null | UTF-8 | C++ | false | false | 9,240 | cpp | /*
-- clMAGMA (version 1.1.0) --
Univ. of Tennessee, Knoxville
Univ. of California, Berkeley
Univ. of Colorado, Denver
@date January 2014
@precisions normal z -> s d c
*/
#include <cstdio>
#include "CL_MAGMA_RT.h"
#include "common_magma.h"
//#define BLOCK_SIZE 768
#define BLOC... | [
"github::alcubierre-drive"
] | github::alcubierre-drive |
97fb27f7e00814d185e480159384f0fa76ef84ae | dd20fdcc226f7cec298546152ac64c14aa4ec9db | /customPlugins/edgeRealx.hpp | dea810a3905382c8dc142a93aab712702a74f731 | [] | no_license | jimbo07/openBBlib | e7caed66ce80afe4e2de7c529d3cbe087a231e10 | df1c5a93ab507e8334d78ca79d929d3714ef3b8c | refs/heads/master | 2022-08-22T15:26:23.654354 | 2020-02-06T12:46:28 | 2020-02-06T12:46:28 | 137,645,514 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,687 | hpp | #ifndef _EDGERELAX
#define _EDGERELAX
#include <string.h>
#include <math.h>
#include <float.h>
#include <vector>
#include <iostream>
#include <algorithm>
#include <maya/MFnMesh.h>
#include <maya/MVector.h>
#include <maya/MIntArray.h>
#include <maya/MFloatArray.h>
#include <maya/MPointArray.h>
#include <maya/MItMeshVe... | [
"noreply@github.com"
] | jimbo07.noreply@github.com |
d8f3a0bc688e3246c3c00fa02130d391ef952aca | 603a1e413cab3e40fc9a7cc5e2b789eb846a5b2b | /source/Scene/StageFileLoader.cpp | 1e3fb50f5e355138b8c7e97df1d14e052a5533c3 | [] | no_license | BooshSource/Petari | 999fdfda45411052942f3daafe7f3a78ff084899 | cb63f1782b56f3c023edd89ddee5bfeb659f20dd | refs/heads/master | 2023-02-09T10:43:37.879079 | 2021-01-08T00:05:27 | 2021-01-08T00:05:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 815 | cpp | #include "Scene/StageFileLoader.h"
#include "MR/MemoryUtil.h"
#include "MR/FileUtil.h"
#include "System/Galaxy/GalaxyStatusAccessor.h"
#include <stdio.h>
void StageFileLoader::startLoadingStageFile()
{
s32 curZoneIdx = 0;
while (mZoneNum > curZoneIdx)
{
MR::mountAsyncArchive(mNames[curZoneIdx], MR... | [
"xarf98@yahoo.com"
] | xarf98@yahoo.com |
e8fff037829f40c9f25f6babb666066237a4b672 | 88e18f396df6dc9bc3e45c106f560d0073438ef3 | /C++/General Projects/MorrisQp6/airplanes.cpp | 36016b64eefca8ce772961163d8206eb7af97b08 | [] | no_license | qmorrissmu/SMU-projects | 3f6f65065fc57ed93d3711c9e179aa819d459481 | e3db5e573d8b62798c17da2ba50966601a39b742 | refs/heads/master | 2022-11-30T08:09:38.945346 | 2020-07-31T22:42:02 | 2020-07-31T22:42:02 | 269,765,659 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 493 | cpp | #include "airplanes.h"
#include <iostream>
using namespace std;
Airplanes::Airplanes()
{
int miles;
}
void Airplanes::setMiles(int aM)
{
miles = aM;
}
int Airplanes::getMiles()
{
return miles;
}
void Airplanes::getCarbonFootprint()
{
int avgEm = 223;
double wTP = 1.2;
double ff = 1.9;
... | [
"noreply@github.com"
] | qmorrissmu.noreply@github.com |
65e650615a94ccd34c0c42e70c2869a0af872ea6 | 4ef3c5ed2cfa80eab58c148fd5b0879e222eeb77 | /examples/ShapeModel.cxx | 6a4d67b9a5d4d355ebc6c3e37ce7cc1055d15457 | [
"Apache-2.0"
] | permissive | GGiancarlos/ShapeModel | d6ef0317e22a0d2357e8d9e043f6a5386c01206b | 470af5c10a8044efa4ad1124256f062c7591bee7 | refs/heads/master | 2021-05-27T19:27:20.786221 | 2013-12-19T14:27:35 | 2014-01-02T21:42:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,885 | cxx | /*============================================================================
Library: Image Segmentation Using Statistical Shape Models
File: ShapeModel.cxx
Copyright 2013 Kitware, Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file exc... | [
"jamie.snape@kitware.com"
] | jamie.snape@kitware.com |
d7e5f8193132ee6953d482534f7a636d7953e3bd | 7fde4884897619ba5ad02d2d89e5efd31085dfb3 | /src/PE/ResourceData.cpp | 5fde9411e1f6e79f574806055a5996463c5728ec | [
"Apache-2.0"
] | permissive | tsarpaul/LIEF | d184de6f5bcb7ee966a8cff3bf4d9141b356e794 | de934b0f64e0304e78ef4d9d77ec5c16616c49c2 | refs/heads/master | 2022-11-19T03:45:52.534171 | 2020-07-17T21:54:36 | 2020-07-17T21:54:36 | 276,966,892 | 1 | 0 | Apache-2.0 | 2020-07-03T18:47:14 | 2020-07-03T18:47:13 | null | UTF-8 | C++ | false | false | 3,275 | cpp | /* Copyright 2017 R. Thomas
* Copyright 2017 Quarkslab
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | [
"romainthomasc@gmail.com"
] | romainthomasc@gmail.com |
b5ddda29d33711165d1f2d316246c72409f8dc2c | 3c12cf51a77859b51dcdbf6759f82d8cec9090e9 | /src/environment.cpp | 5f8d04e256829de054a4723ad99a892068ae3e56 | [] | no_license | eslamhussein906/Lidar-Object-Detection-Sensor-Fusion-ND- | 9b8c29c8b6ab8fbe8b6efbc71b27ab85a46888a2 | 335c17cbfaf30a79acda76dd62c168de5b4555c1 | refs/heads/master | 2022-04-27T13:01:18.555171 | 2020-04-26T20:15:27 | 2020-04-26T20:15:27 | 259,123,805 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,743 | cpp | /* \author Aaron Brown */
// Create simple 3d highway enviroment using PCL
// for exploring self-driving car sensors
#include "sensors/lidar.h"
#include "render/render.h"
#include "processPointClouds.h"
// using templates for processPointClouds so also include .cpp to help linker
#include "processPointClouds.cpp"
std... | [
"eslamhussein906.com"
] | eslamhussein906.com |
f68aab0c68bacf1c27d4dd00bb4f6d9a316aa233 | 58433f51b2966696950374947f5f38e5ef4aa889 | /cpp_day02/ex00/main.cpp | d1062497621421bd3fa57cc71ba2d456b6240f54 | [] | no_license | tlutsyk/cpp_pool | 5693d445d93ca8ed599148310cc2dbcc515a8d57 | a37954a5cacb370434a25d3f21db16576e70bfb8 | refs/heads/master | 2021-09-18T13:03:22.432433 | 2018-07-14T12:39:44 | 2018-07-14T12:39:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,654 | cpp | // ************************************************************************** //
// //
// ::: :::::::: //
// main.cpp :+: :+: :+: ... | [
"tlutsyk@e1r7p9.unit.ua"
] | tlutsyk@e1r7p9.unit.ua |
c70fdbbaed3d8ec79ac71d4d000f8ce80eab344f | 5edd607642dbd400031985927c18140c7dc3cc4a | /6.Builder/6.BuilderCodingExcercise/main.cpp | 94af8c39ef1f501c21102bbfe2ae433ca558f4bb | [] | no_license | mersed/design-paterns | b2a35b1d47616658a09f0ed8665abb04bee8f103 | 2ddbe1b9264d631d53347725b376f2e8721e7fa0 | refs/heads/master | 2021-02-06T02:41:29.461598 | 2020-03-20T23:24:12 | 2020-03-20T23:24:12 | 243,866,428 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,772 | cpp | #include <iostream>
#include <string>
// #include <ostream>
#include <vector>
// #include <sstream>
class Class
{
std::string class_name;
std::vector<std::pair<std::string, std::string>> fields;
const size_t indent_size = 2;
public:
Class() {};
/*
This is correct implementation. Udemy does n... | [
"kahrimanovic.mersed@gmail.com"
] | kahrimanovic.mersed@gmail.com |
9e858ef1e1d22ee88a3161dc7867fd3dd3aba344 | 49fa120bf72225a07eaf922260f6131493fccec9 | /calc.h | 60ae7a70b2ba9164fcd386dbac53059cb77fa4da | [] | no_license | RS-codes/Qt5_Basic_assign10 | 2e50e55bad4151e31e1d51a2c1220b1075cc15ec | e8c7d8f60531d441115b07d095bba659d865c601 | refs/heads/master | 2023-04-17T07:36:32.673691 | 2021-04-23T04:06:29 | 2021-04-23T04:06:29 | 360,757,816 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 280 | h | #ifndef CALC_H
#define CALC_H
#include <QObject>
#include <QDebug>
class calc : public QObject
{
Q_OBJECT
public:
explicit calc(QObject *parent = nullptr);
~calc();
int dogYears(int age);
int catYears(int age);
signals:
public slots:
};
#endif // CALC_H
| [
"RS-codes@github.com"
] | RS-codes@github.com |
751d4abd466756a923aa34b11121a04f46765ac7 | 6142f7482225a161bb166ae99dbd7e08795c3902 | /back up Company/Team.cpp | 79a0bbe9d5db6c8efe92b7e7c78a138a8d10a9f1 | [] | no_license | pavlinaikoleva/Tasks-from-ZZS | aec98ac9d903a21f89dd36288597c3f5076c120d | 290fcf8282405cdfd69dab2c15d00df6274d0311 | refs/heads/master | 2021-01-23T00:16:09.352469 | 2017-05-18T21:20:45 | 2017-05-18T21:20:45 | 85,714,114 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,126 | cpp | #include<iostream>
#include <cstring>
#include "Team.h"
#include "employee.h"
using std::cin;
using std::cout;
using std::endl;
Team::Team(){}
Team::Team(Employee * _leader, const char * _nameTeamProject)
{
leader = _leader;
strcpy_s(nameTeamProject, strlen(_nameTeamProject) + 1, _nameTeamProject);
}
Tea... | [
"noreply@github.com"
] | pavlinaikoleva.noreply@github.com |
c4ba361f0ef93a4fdee0a4fd7dfc5789cfea40a2 | 1880ae99db197e976c87ba26eb23a20248e8ee51 | /essbasic/include/tencentcloud/essbasic/v20201222/model/CheckMobileVerificationResponse.h | 2a70682cee9d9bc6ba0cff40f97006db6f3a2cab | [
"Apache-2.0"
] | permissive | caogenwang/tencentcloud-sdk-cpp | 84869793b5eb9811bb1eb46ed03d4dfa7ce6d94d | 6e18ee6622697a1c60a20a509415b0ddb8bdeb75 | refs/heads/master | 2023-08-23T12:37:30.305972 | 2021-11-08T01:18:30 | 2021-11-08T01:18:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,236 | h | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
... | [
"tencentcloudapi@tencent.com"
] | tencentcloudapi@tencent.com |
20ddfca4abf91aca25569bcc377f13f5fd186a66 | 608caefb3bf9343bfc3fdfc1f32ac76dcca9ddd4 | /KickerFP/KickerFP/header/Plane.h | e651ac8867a649abdea2abdb304346246af5bf66 | [] | no_license | isa1374/Kicker-CG | 23067fc36c1b476347a7bdf2b626b40ebffd0919 | 53c0de43e526635282c0abc39c5d9b26547a71b7 | refs/heads/master | 2021-08-20T01:24:49.789997 | 2017-11-27T22:59:21 | 2017-11-27T22:59:21 | 110,875,633 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 342 | h | //
// Plane.h
// KickerFP
//
// Created by Karla on 20/11/17.
// Copyright © 2017 Isa. All rights reserved.
//
#ifndef Plane_h
#define Plane_h
class Plane{
public:
Plane(int w, int h);
~Plane();
void display(int stepSize, float *color);
private:
int m_w, m_h;
float specularMat0[3], shine;
};
... | [
"karla@iMac-de-Karlita.local"
] | karla@iMac-de-Karlita.local |
caa0831f1d043e33e8acea15a9db082fa308f505 | 2f17e97deae811440177f3381a2fea0a34408e15 | /Chapter04/01_WindowDemo/WindowDemo.cpp | 51397067ca8c933978398002503f97537f634235 | [] | no_license | 0000duck/VisualCppZhangJun | e0890d86c584e6a5e1547c6bcc310379a9cea725 | acc9374febcd1b0077671bc960a96e82eb2c87dc | refs/heads/master | 2021-12-14T22:59:47.592746 | 2017-06-19T09:05:45 | 2017-06-19T09:05:45 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 728 | cpp | // WindowDemo.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "tchar.h"
#include "mainwnd.h"
#include "resource.h"
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdSh... | [
"lius@CPEKW-Q1100534.is.ad.igt.com"
] | lius@CPEKW-Q1100534.is.ad.igt.com |
21fe7e37bd12d8a3a30687c058070b7dd6f73de7 | f1bd3cd6e66b16e92805de9938a046d72b8f5356 | /src/raptor_encoder_api.cpp | 5629e222a378e4f1404bd987d68c1778b80bc8af | [] | no_license | ywu40/RaptorCodes_Cplusplus_Python | cddf9e9947afe99f1bcc69f37c352cd894bfee2a | 68670f0f76dd0986559ebb61ef24284a3e0a8fd9 | refs/heads/master | 2020-06-04T10:25:10.726813 | 2015-05-03T18:02:54 | 2015-05-03T18:03:10 | 34,228,767 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,406 | cpp | #include <stdio.h>
#include "raptor_encoder_api.h"
using std::vector;
void RaptorEncoder::set_data(const std::string &raw_data)
{
vector<unsigned char> vecData;
stringToVector(raw_data, vecData);
size_t data_size = vecData.size();
U8 *data_buf = new U8[data_size];
for (size_t i = 0; i < data_si... | [
"yeqingwu2011@gmail.com"
] | yeqingwu2011@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.