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 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
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 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
85f4fe99138a2e0947a1d4359415253417676f73 | 53c00afb37f88ff4449a6fa11c561f519630266d | /tsinghua_OJ_practise/add.cpp | 9b01d9766e84d685f5a45e6b58ca1d86c0e5488f | [] | no_license | arckalsun/for_study | c172bf9bd9eafe0586209257bbb374d2e8b86465 | aadf8afb770d111db25d06fdfb55affa74821a04 | refs/heads/master | 2020-04-17T14:09:26.599565 | 2016-11-20T02:43:28 | 2016-11-20T02:43:28 | 66,598,791 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 125 | cpp | #include<cstdio>
int main()
{
long long a, b;
std::scanf("%lld%lld", &a, &b);
std::printf("%lld\n", a + b);
return 0;
}
| [
"arckalsun@gmail.com"
] | arckalsun@gmail.com |
85eedbd6b640af4f43703cb5c452f8e72996cd02 | 80cab475c925bb1d268996f65c4fa9bd5d817a30 | /src/base/ids/graph_id.h | 58bcf1361378c7af0c960799c394e206aed41e3e | [] | no_license | evd995/IIC3413-DB | aeace58ffdeca57599fa380006281368961e1524 | f352bfb7b8b6f18191126066a7a2bb17ab51fa69 | refs/heads/master | 2021-05-17T02:01:34.673610 | 2020-03-22T18:48:53 | 2020-03-22T18:48:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 343 | h | #ifndef BASE__GRAPH_ID_H_
#define BASE__GRAPH_ID_H_
#include <cstdint>
class GraphId {
public:
uint64_t id;
GraphId()
: id(0) { }
GraphId(uint64_t id)
: id(id) { }
~GraphId() = default;
bool operator<(const GraphId other) const {
return this->id < other.id;
}
};
#end... | [
"cirojas@zoho.com"
] | cirojas@zoho.com |
27892aac2e07af1e36f23bc702b2dc0c7b4ab6c7 | c9de877a3af06de1f70de281d1f001496c05fa44 | /src/component/nsphysic_comp.cpp | a0e23adc0cc98c6b1d26ed3903d1bc842868ef3a | [] | no_license | dprandle/nsengine | 57b7f1e6d994845b79c079738606d258f9ca99c9 | 11aabc4ea7fa4f41f1df5bcff206acbbc278b372 | refs/heads/master | 2020-04-12T05:01:09.985356 | 2017-10-14T16:55:06 | 2017-10-14T16:55:06 | 38,236,764 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 690 | cpp | #include <component/nsphysic_comp.h>
#include <nsengine.h>
nsphysic_comp::nsphysic_comp():
nscomponent(type_to_hash(nsphysic_comp)),
col_type(col_cube),
sphere(),
obb(),
mass(80.0f),
gravity(true),
dynamic(false),
bounciness(0.0f)
{
}
nsphysic_comp::nsphysic_comp(const nsphysic_comp & copy):
nscomponen... | [
"dprandle@alaska.edu"
] | dprandle@alaska.edu |
6203beb6e33017d843e0f09efcb9f4509f86d364 | 99eba6b9d3ce45d73d41502c55df0be282b4f4a3 | /OnlineJudge/BOJ/14000/14918.cpp | 10ec5e439aefb15064583f2c4eac5c222dbb835c | [] | no_license | hajindvlp/Algorithm | ad7268b468c162bb9244d09b7c7f269c61bcacf9 | f9b4b530a177013f386d4f7f1f038c006ccbd9f0 | refs/heads/master | 2021-06-28T21:13:25.849062 | 2020-11-06T10:14:02 | 2020-11-06T10:14:02 | 172,189,561 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 101 | cpp | #include <stdio.h>
int main() {
int x, y;
scanf("%d %d", &x, &y);
printf("%d", x+y);
} | [
"harryhajinchung@gmail.com"
] | harryhajinchung@gmail.com |
f33a6a3e03e673abf68f96c32cbc5af9d13119d2 | 05692d2cd7590ce786eba8f0ab5fbc3a8a8b887f | /TeeChart/Include/TeeAvgFuncEditor.hpp | bf1ce0fa110821c46e1d0542d0568dbca18cae6e | [] | no_license | fpawel/AnkatMICROSeviceApp | e639d1f0c9ed5cfc4a260fdde2a1e3d3e6978d01 | 24ec2a69630548a1dd03d47ac1d0a27d3997e498 | refs/heads/master | 2021-06-15T22:32:37.323634 | 2017-04-28T12:16:29 | 2017-04-28T12:16:29 | 72,271,890 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,477 | hpp | // Borland C++ Builder
// Copyright (c) 1995, 2002 by Borland Software Corporation
// All rights reserved
// (DO NOT EDIT: machine generated header) 'TeeAvgFuncEditor.pas' rev: 6.00
#ifndef TeeAvgFuncEditorHPP
#define TeeAvgFuncEditorHPP
#pragma delphiheader begin
#pragma option push -w-
#pragma option push -Vx
#inc... | [
"Павел Филимоненков"
] | Павел Филимоненков |
741454bd0fb4f35b585406556da5709bbcc5c30c | 9c441e9b6d89b04a32a68b87960018dad35945a9 | /4x_game/parts/engine.h | c7fcd4c6eb1defd2c7cf80a2301f2dc5b536f12f | [] | no_license | yoshee4232/4x_game | 9c49ca850716aa1eb79195ac39a58fdfc0676d4f | 9ac7a1464c2ce7e4cad8f59f928dae5278a5ca17 | refs/heads/master | 2020-07-24T23:39:12.489650 | 2019-09-18T15:32:52 | 2019-09-18T15:32:52 | 208,085,616 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 235 | h | #pragma once
#include "part.h"
class engine:
public part
{
public:
engine();
engine(int _isp, int _thrust);
float getFlowRate() const;
~engine();
int isp = 0;
//in newtons
float thrust = 100;
float exhaustVelocity = 3000;
};
| [
"nathanyoshio@gmail.com"
] | nathanyoshio@gmail.com |
b99fe9186eeec260e4426c2d67ba725b88fa419a | 23e393f8c385a4e0f8f3d4b9e2d80f98657f4e1f | /Windows API函数参考手册/第10章硬件和系统/10.2鼠标/10_2_4_1/10_2_4_1.cpp | bda2542167ad5db1be49b36b562cb32f785f3937 | [] | no_license | IgorYunusov/Mega-collection-cpp-1 | c7c09e3c76395bcbf95a304db6462a315db921ba | 42d07f16a379a8093b6ddc15675bf777eb10d480 | refs/heads/master | 2020-03-24T10:20:15.783034 | 2018-06-12T13:19:05 | 2018-06-12T13:19:05 | 142,653,486 | 3 | 1 | null | 2018-07-28T06:36:35 | 2018-07-28T06:36:35 | null | GB18030 | C++ | false | false | 5,411 | cpp | // 10_2_4_1.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWin... | [
"wyrover@gmail.com"
] | wyrover@gmail.com |
e9d60f847216d813e88d3363d38cee64ffd83c33 | dd15595bb3430e3478f7a09ab26dec267db6c261 | /7_doubleHashing/7_doubleHashing.cpp | 92e1ffccba958e8b7093ae918375e4cd9371f80f | [] | no_license | shantanu0915/Skill-Development | d565ee22de9a8d4b1d29c224ad04b2790237dab2 | e4b2a2db768874572cc0a1520ece619b4611f40d | refs/heads/master | 2020-05-18T06:46:51.155880 | 2019-04-30T10:40:37 | 2019-04-30T10:40:37 | 184,240,311 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,656 | cpp | #include <iostream>
using namespace std;
const int TABLE_SIZE = 10;
int hashTable[TABLE_SIZE] ={0};
void addInTable(){
int key;
bool isPlaced = false;
cout<<"Enter the key to be inserted in the table : ";
cin>>key;
int Hash1 = key % TABLE_SIZE;
int Hash2 = 7 - (key % 7);
if(hashTable[Hash... | [
"shantanudangat64@gmail.com"
] | shantanudangat64@gmail.com |
a56df4848adb3b877f27f0d168c0258b8c569379 | 8727d1a506114c2bbab2f74db9bdaf68b5a6c83e | /9/test3.cpp | 4b63f9af64c21fee4664718dbe557ac7719d1042 | [] | no_license | BaiXious/Accelerated-cpp | 5c5525eb9678ad98475208f82ea63b1606e31a86 | 26ad13fe83aa36c8d3ca1caf89b04e90f441d7d7 | refs/heads/master | 2022-01-13T08:11:14.337940 | 2018-08-28T04:06:10 | 2018-08-28T04:06:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 151 | cpp | #include <iostream>
#include <string>
int main()
{
char* cp1 = "hello";
std::string s;
s += cp1;
std::cout << s << std::endl;
return 0;
}
| [
"1051378379@qq.com"
] | 1051378379@qq.com |
6b3ae58ccb4a5993edbe6302b035b428b933c77d | 2a1011dc1e475f686784f1307da46b5bc3e89f71 | /SourceCode/SourceCode/CutString.cpp | aab971993cc68c7902e83c8b1cb7058b64b696e9 | [] | no_license | pagontashika14/LTHDT | 153f827011acadcd323e5f63ee6862a28db39455 | e152aa3b8a4ae09528669159a319e1f49f0c1cfc | refs/heads/master | 2021-01-17T23:18:08.148475 | 2015-11-24T08:17:58 | 2015-11-24T08:17:58 | 43,871,204 | 0 | 0 | null | 2015-10-08T07:51:28 | 2015-10-08T07:51:27 | null | UTF-8 | C++ | false | false | 540 | cpp | #include "stdafx.h"
#include "CutString.h"
CutString::CutString() {
}
CutString::~CutString() {
}
vector<string> CutString::ReadLineToVector(string s) {
vector<string> v;
string ss;
int i = 0;
bool instring = false;
while (i < s.size()) {
if (s[i] == '\"')
instring = !instring;
else
ss += s[i];
++... | [
"pagontashika14@gmail.com"
] | pagontashika14@gmail.com |
fe0ab378c979c5b8b4cc7befc8742831b519c9ca | ef0c68bf18750576b646921557073c8bceb59158 | /A1083---列出成绩.cpp | 909b76999122378c2e2b141071ca983b286f70cd | [] | no_license | Patteecheetah/PAT-1 | 77bc4816a0fb52a5a7ff21e0a271ff029fdc0429 | 16b783636a7e6dde08b6cd347fb2af76e0c40993 | refs/heads/main | 2023-02-15T07:19:48.234138 | 2021-01-13T02:54:42 | 2021-01-13T02:54:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 713 | cpp | #include<stdio.h>
#include<algorithm>
using namespace std;
const int maxn=100010;
struct student{
char name[20];
char id[20];
int grade;
}stu[maxn];
bool cmp(student a,student b){
return a.grade>b.grade;
}
int main(){
int n;
scanf("%d",&n);
for(int i=0;i<n;i++){
... | [
"y1486170457@qq.com"
] | y1486170457@qq.com |
5179d0fcb0702cfcb9d14be417aee2c9d4267b7c | f7253e1aea1cff85519082dea6bf563d9ffd096f | /src/areadinfmn.cpp | 36598aee41e827b0c3639af75b69593f8e0ebc0d | [
"BSD-3-Clause"
] | permissive | mlt/TauDEM | 32ce23a6621a1f49b6ce86e0e97508d3a4725049 | 179fa62fe9b42affb2a656c65c451cf47ddc7206 | refs/heads/master | 2021-01-17T08:10:05.902105 | 2013-09-20T18:18:00 | 2013-09-20T18:18:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,868 | cpp | /* TauDEM AreaDinf main program to compute contributing area
based on D-infinity flow model.
David G Tarboton, Teklu K Tesfa
Utah State University
May 23, 2010
*/
/* Copyright (C) 2010 David Tarboton, Utah State University
This program is free software; you can redistribute it and/or
modif... | [
"mlt@gmx.us"
] | mlt@gmx.us |
203326eb9724746948d2f3cf410d2a3dceadf721 | 7ee340eca8401374ae3460d2d2e998f914e983e7 | /src/Chapter 5/Ex5_01/List_Course.h | 1cf1c07943d4573372ec428fc8863e311de35edb | [] | no_license | ldw3097/006842 | 69ced68789d75f4ec2fbc7f0c9d936d7f85c2991 | f5d8b5486fdd3d0d0abd2c513c288c4536864dd5 | refs/heads/master | 2023-02-17T06:12:16.034851 | 2020-12-23T14:18:46 | 2020-12-23T14:18:46 | 319,288,981 | 0 | 0 | null | 2020-12-07T10:50:45 | 2020-12-07T10:50:44 | null | UHC | C++ | false | false | 1,037 | h | // List_Course.h
// Ex5_01에서 그룹에 있는 학생들을 출력하기 위한 함수 객체
#ifndef LIST_COURSE_H
#define LIST_COURSE_H
#include <iostream> // 표준 스트림
#include <string> // string 클래스
#include <set> // set 컨테이너
#include <algorithm> ... | [
"한동훈"
] | 한동훈 |
63b6c54fd525cf20a08bbfc725910d5c320b2f78 | a688edff4803df9ae028067b25e9777d0fcb9570 | /src/Camera/Camera.h | 8a9a3130f75af3a8650a1d71c6676c2a1628b1b8 | [] | no_license | luisaras/meowtracer | 9cecda5740df33f325e2932195e50e0423727d53 | bad7c906bc3b3fe70cdb7136ee5eda431a68d85b | refs/heads/master | 2021-01-02T09:30:24.439374 | 2018-06-07T16:53:24 | 2018-06-07T16:53:24 | 99,229,430 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 551 | h | #ifndef __CAMERA__
#define __CAMERA__
#include "../Math/Ray.h"
#include "../Math/Matrix4.h"
class Camera {
protected:
Point3 position;
Vec3 horizontal;
Vec3 vertical;
Camera(Matrix4 &xform, Vec3 &h, Vec3 &v, Point3 &pos) :
horizontal(xform.TransformVector(h)),
vertical(xform.TransformVector(v)),
p... | [
"luisa.ras97@gmail.com"
] | luisa.ras97@gmail.com |
06d5993bf363c3ce716f9f0a92c9137cecc81e52 | 9f4b4172cb44aa2d06627ef97d969c59a8245d85 | /src/GameWorldScreen.cpp | 2f1a20f27243b53966bed6509919a589badfa078 | [] | no_license | geniass/PacmanDefender | 3a3d3445f46404dc867d2c8c67a1eb74d221041d | 7ebea5953e4c8c28d5d24171daebbef154ef1647 | refs/heads/master | 2021-03-19T16:36:07.702347 | 2015-08-31T12:18:33 | 2015-08-31T12:18:33 | 41,539,983 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,893 | cpp | #include "GameWorldScreen.h"
#include "PauseScreen.h"
#include "Player.h"
#include "Laser.h"
#include <SFML/Graphics.hpp>
#include <list>
#include <iostream>
using namespace std;
GameWorldScreen::GameWorldScreen()
{
running = true;
paused = false;
cout << running << endl;
}
shared_ptr<GameScreen> GameWor... | [
"aricroock@gmail.com"
] | aricroock@gmail.com |
436af184da82a68720f2261156acbc3956d71b76 | 615bd336a8026dc73c7b48f885dbae32f3799ec9 | /codeforces/443/A.cpp | abf6c4ced8ea82a4db86222c03fe6119769120c1 | [] | no_license | yash-gupta2000/CP_Codeforces | 82c842a8775229a1ab6da027f8b2471bbfc849f9 | c22b8ebe57f705c239a075def7a479192213c266 | refs/heads/master | 2023-02-09T02:04:42.817749 | 2018-12-14T05:50:00 | 2020-12-21T07:49:38 | 323,261,076 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,512 | cpp | //(👍≖‿‿≖)👍 👍(≖‿‿≖👍)//
//┌∩┐(ಠ_ಠ)┌∩┐//
//─────────────────────────────────────────────────────────────────────────────────────────────────
//─████████──████████─██████████████─██████████████───██████████████─██████████████─██████████████─
//... | [
"y25.gupta@gmail.com"
] | y25.gupta@gmail.com |
4bcde3f9395ad267b712f2594de9fd9e5d31e5df | 0508304aeb1d50db67a090eecb7436b13f06583d | /nemo/src/kits/media/TrackReader.h | 5a7e4a63624d87e90b94665d9bfd0a2929797994 | [] | no_license | BackupTheBerlios/nemo | 229a7c64901162cf8359f7ddb3a7dd4d05763196 | 1511021681e9efd91e394191bb00313f0112c628 | refs/heads/master | 2016-08-03T16:33:46.947041 | 2004-04-28T01:51:58 | 2004-04-28T01:51:58 | 40,045,282 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,085 | h | /***********************************************************************
* AUTHOR: Marcus Overhagen
* FILE: TrackReader.h
* DESCR: The undocumented BTrackReader class,
* used by BSound and the GameSound classes
***********************************************************************/
#if !defined(_TRAC... | [
"fadi_edward"
] | fadi_edward |
b8ff5626c3e0eb0df663366eb239621439d83cd6 | d7b84a31cafb72a3cb71b3a3cc724a68119ba18e | /Tyr/8.56/p | 6d52584c8290bc181fdd59eb3ecf69da79cd0d3d | [] | no_license | benroque/Ragnorak | 6cc7c68db801f9281a4ac241da754bce88ef6caf | a1bfc2430cccb207192792acebdd1530f1388a4c | refs/heads/master | 2021-01-14T08:13:18.774988 | 2017-02-20T08:32:53 | 2017-02-20T08:32:53 | 82,008,402 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 409,855 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 4.1 |
... | [
"benroque94@gmail.com"
] | benroque94@gmail.com | |
871ff8cc0e6d893dab496d7db84887b395b8806e | 80a5735ba2abdee190144c6fe6cb8c88609c402e | /meshlab/MeshLabSrc_AllInc_v132/vcglib/wrap/io_trimesh/import_vmi.h | 4c259423667e7d0d047297c8f593572820534d4b | [] | no_license | quxiaofeng/python-stl | 8947bbd4645417fd76ef45c864e7e3f54d213a4c | 0929ada14c96511056b88e4f97474c1cee7ade79 | refs/heads/master | 2021-05-16T02:17:10.530607 | 2013-12-16T19:18:26 | 2013-12-16T19:18:26 | 12,635,141 | 10 | 4 | null | 2018-09-14T13:18:57 | 2013-09-06T03:38:26 | C | UTF-8 | C++ | false | false | 35,004 | h | /****************************************************************************
* VCGLib o o *
* Visual and Computer Graphics Library o o *
* _ O _ *
* Copyri... | [
"quxiaofeng@outlook.com"
] | quxiaofeng@outlook.com |
a7e9a2580672c61adc57ed092bf746dd65cb1a30 | b46b7cd60e13c533bc97dbdabe9ee27e061667bf | /hello.cpp | f7249c275eb9e21f3cac7af372b8acf7540baac6 | [] | no_license | lapis-subie6/HelloGitHub | 5df22a1b56b73db67f4660098d5616b1c8c3795b | c85ddcb32c76ed986c66696a7975545ec8143b8f | refs/heads/master | 2023-01-15T13:47:00.090012 | 2020-11-24T16:25:47 | 2020-11-24T16:25:47 | 315,677,600 | 0 | 0 | null | 2020-11-24T16:25:48 | 2020-11-24T15:41:40 | C++ | UTF-8 | C++ | false | false | 130 | cpp | #include <iostream>
using namespace std;
main()
{
cout << "Hello world.\n";
cout << "Christian Leslie\n";
return 0;
} | [
"csl6@live.missouristate.edu"
] | csl6@live.missouristate.edu |
d3bbc92996252ed08909c80a754c3fef03a5371a | 08eb48756f18fc4ba8ad3d1271e1d442bbe71088 | /Card.cpp | f4b7c2502f08cb86ed954f2fc25f37618fabcb5e | [] | no_license | rjamesak/SfmlSol | a33104fdab2b36dfcdabbde3a8b4a83357aa272c | f5482ec2be6454919d0b6b8c5e7e522841bfee4c | refs/heads/master | 2020-04-12T21:46:25.309197 | 2018-12-27T02:05:31 | 2018-12-27T02:05:31 | 162,771,614 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 257 | cpp | #include "Card.hpp"
//ctor sets face and suit
Card::Card(CardFace cardFace, CardSuit cardSuit)
{
m_cardFace = cardFace;
m_cardSuit = cardSuit;
}
CardSuit Card::getCardSuit()
{
return m_cardSuit;
}
CardFace Card::getCardFace()
{
return m_cardFace;
}
| [
"JamesR@akrr.local"
] | JamesR@akrr.local |
4284f2af8cf19b81f8fa49140e3b3743002fe5e4 | c9ea4b7d00be3092b91bf157026117bf2c7a77d7 | /交互题初步/U0454/alice.cpp | 1f35428cfeb3c99d42d2ab5ade44d01eccc744d6 | [] | no_license | Jerry-Terrasse/Programming | dc39db2259c028d45c58304e8f29b2116eef4bfd | a59a23259d34a14e38a7d4c8c4d6c2b87a91574c | refs/heads/master | 2020-04-12T08:31:48.429416 | 2019-04-20T00:32:55 | 2019-04-20T00:32:55 | 162,387,499 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 454 | cpp | #include<iostream>
#include<fstream>
#define MAXN 1010
using namespace std;
int n=0,m=0;
char a[MAXN<<1];
ifstream fin("alice.in");
int main()
{
register int i=0;
register char c='\0';
//ios::sync_with_stdio(false);cin.tie(0);fin.tie(0);
fin>>n>>m;
fin>>a;
for(i=0;i<2*n;)
{
cin>>c;
... | [
"3305049949@qq.com"
] | 3305049949@qq.com |
27984f3e5c45521a2b7ffe12a4379718d8ccf650 | df0ef682cf1aa72a72b41a2c254a21c53a15bbd9 | /prototypes/daq/PacketChunker.h | 9bc7c9fff82c2acfdec5454f4954c8cf896cb533 | [] | no_license | dreademarco/Spectrometer | 72804d4e413d1ba9e2b72de748dcef76c8bb88da | b981774f0f77f6960bc872836d3a80fa2cf92e48 | refs/heads/master | 2020-04-06T04:22:23.012289 | 2015-05-26T10:10:08 | 2015-05-26T10:10:08 | 25,346,077 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,159 | h | #ifndef PacketChunker_H
#define PacketChunker_H
#include <stdio.h>
#include <stdio.h>
#include <math.h>
#include <unistd.h>
#include <errno.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include... | [
"andreajuve@gmail.com"
] | andreajuve@gmail.com |
62c6b280c764f86c5fe03c5c60dbeb60f4411b01 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5636311922769920_1/C++/ZhukovDmitry/D.cpp | f3a9e6f8fcbe47365a3c4896050740e3697a3348 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 2,137 | cpp | #include "bits/stdc++.h"
using namespace std;
#define clr(x) memset((x), 0, sizeof(x))
#define all(x) (x).begin(), (x).end()
#define pb push_back
#define mp make_pair
#define sz size()
#define For(i, st, en) for(int i=(st); i<=(int)(en); i++)
#define Ford(i, st, en) for(int i=(st); i>=(int)(en); i--)
#define forn(i, ... | [
"alexandra1.back@gmail.com"
] | alexandra1.back@gmail.com |
34e1662343125ccd09a0dc72f560bdea187928d4 | fab0bbcd842e86b35103eb9682204261eb287496 | /1.Basics/1.4_assign_variable.cpp | 0a086aab734f535c08878e83fc8adcf84d7fe3c4 | [] | no_license | kokonattuDream/C-plus-plus | f0e6330de3336dfe924032d744de413c60a0f44d | 982894d01a2938f4367b7cbe9d5e78656a73cf6c | refs/heads/main | 2023-02-09T15:36:01.551591 | 2021-01-07T20:26:00 | 2021-01-07T20:26:00 | 325,375,212 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 802 | cpp | #include <iostream>
int main()
{
int width;
width = 5; // copy assignment of value 5 into variable width
// variable width now has value 5
width = 7; // change value stored in variable width to 7
// variable width now has value 7
int len = 5; // copy initialization of value 5 into variable len
int... | [
"kerjohn.chen@gmail.com"
] | kerjohn.chen@gmail.com |
cfb035c1cbfdf7a2e78b791d685fa38ba8aeb2b9 | 3d53dcd16a290c5fd3a1cd26bbbf5605a81bce3b | /src/local.cpp | f48193b2fff2122c547bcaf23491a851c54a801a | [
"BSD-3-Clause",
"Artistic-1.0",
"Artistic-2.0"
] | permissive | Yargling/MuxDevelopment | d1144ab1f8b6479d2a844e12b160759d855f1665 | cb900bc12086c3e7956c4c0d01cd0dcd9fc610b6 | refs/heads/master | 2021-03-12T23:32:22.872500 | 2013-04-29T20:41:08 | 2013-04-29T20:41:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,125 | cpp | /* local.cpp
*
* Inspired by Penn's local extensions; implemented for TinyMUX by
* M. Hassman (June 2005)
*/
#include "copyright.h"
#include "autoconf.h"
#include "config.h"
#include "externs.h"
#include "functions.h"
#include "command.h"
// ------------------------------------------------------------------------... | [
"doug1984@gmail.com"
] | doug1984@gmail.com |
88ebd4aa38637af8b111beb3b0dc85e2b638f56c | 06ae40ff7b1de99c2d84d1f22d34d03c1d7c9079 | /src/transforms/complex_magnitude.h | d042b5498f298e1e5a709faefe6d21dd161673ab | [
"Apache-2.0"
] | permissive | zyh329/veles.sound_feature_extraction | 4270696885613b582e896bf652e1fe0a46704f2c | 56b7c5d3816d092c72a874ca236e889fe843e6cd | refs/heads/master | 2021-01-18T10:23:00.173800 | 2015-08-10T08:27:49 | 2015-08-10T08:27:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,218 | h | /*! @file complex_magnitude.h
* @brief Calculate the magnitude of each complex number.
* @author Markovtsev Vadim <v.markovtsev@samsung.com>
* @version 1.0
*
* @section Notes
* This code partially conforms to <a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml">Google C++ Style Guide</a>.... | [
"v.markovtsev@samsung.com"
] | v.markovtsev@samsung.com |
94ba05f830ab84d6f447641feea696bbdeaf83ca | 76fcb824dd98893b086803a578b60a869094f2aa | /CatchMaster/Classes/Scene/HighScoreScene.cpp | aaec9b8a3d4147aaea3830efaa9169433a692f37 | [] | no_license | Johan08/cocos2dx-commecial | 682c747a8fbe74a460afa5b7cecf412bde43ad88 | 62384172b4b3daa405439c5566f4ad7db95c0bea | refs/heads/master | 2021-01-20T11:20:40.660233 | 2015-01-06T13:05:58 | 2015-01-06T13:05:58 | 41,216,802 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 335 | cpp | //
// HighScoreScene.cpp
// CatchMaster
//
// Created by sxz on 2015/01/01.
// Copyright 2015年 __MyCompanyName__. All rights reserved.
//
#include "HighScoreScene.h"
bool HighScoreScene::init()
{
if ( !Scene::init() ) return false;
auto layer = HighScoreLayer::create();
this->addChild(layer);
re... | [
"xinzhushi.gmail.com"
] | xinzhushi.gmail.com |
3c2a1a9e236cd7bd639f1f38fb89e5f41bcec270 | 3fb6ddbddce53b51071fa69bb872183df70c4dae | /medium/leetcode103/queue.cpp | 1ef48e1d39aa0c9f60b7d644d955db8a86ba7343 | [] | no_license | sophiahat413/LeetCodePractice | 326987cc6122172edb6f9d84cc6d7cc866e98852 | e2f614947f88dd69c94e7215e97299de32ecfe90 | refs/heads/master | 2021-07-10T07:43:45.609900 | 2019-01-18T05:30:20 | 2019-01-18T05:30:20 | 140,516,685 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,096 | cpp | /**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<vector<int>> zigzagLevelOrder(TreeNode* root) {
if(root == NULL)
ret... | [
"sophia850413@yahoo.com.tw"
] | sophia850413@yahoo.com.tw |
cdcdf791be178e01cff762b1ad5780fbbc10b39e | 1b08cfdd3b2d569878a8b7df7ff2a2d3020d0e09 | /include/asio/detail/reactive_socket_send_op.hpp | d5925ecad2397964078451953ee836e97dab1aaf | [
"BSL-1.0"
] | permissive | barrbrain/asio | ca55e8a07accbd44b767e86241273cc4db67b8d1 | 97b3114f410b86a4c63d90d7f9312a128acac677 | refs/heads/master | 2020-04-27T05:55:52.523092 | 2010-11-24T06:50:15 | 2011-02-08T00:07:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,575 | hpp | //
// detail/reactive_socket_send_op.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2010 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)
//
... | [
"david.barr@cordelta.com"
] | david.barr@cordelta.com |
e4ef0845eec6f1f4d7abf13b669e04c9f9f1a3f8 | 6827eb7ee2d1685ad49528021e43c84e1ff4c376 | /3_semestre/Estrutura_de_dados_I/Lista_Duplamente_Encadeada/Lista_Animais.hpp | c0969720f84146e03986fcd9059ca9699c2c44ba | [] | no_license | Darian-Mello/ciencia_computcao | d38bab4511a098afd35a92ec59993278ec21c981 | bc55f8ca2df78c03f529902eb7cb5a5e6f875eae | refs/heads/main | 2023-08-25T13:45:07.658041 | 2021-11-06T00:23:09 | 2021-11-06T00:23:09 | 425,117,018 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 4,189 | hpp | #ifndef _HPP_LISTA_DUPLA
#define _HPP_LISTA_DUPLA
struct Animal{
int codigo;
int idade;
double peso;
};
struct No
{
Animal dado;
No *prox;
No *ant;
No() // construtor
{
prox = nullptr;
ant = nullptr;
}
};
struct Lista
{
No *inicio;
No *fim;
int tamanho;... | [
"darian.mello25@gmail.com"
] | darian.mello25@gmail.com |
965c1971eff86c38a77cc1a7c1ba174576035b2f | 21ca06cefb2d30a23940ef11c2789e7877a428b1 | /src/Tests/TestVotante.cpp | afe8b8c2c381629ec15998703af0a8e3fb076580 | [] | no_license | frossi85/tp1-orga-datos | 19611035491a1e27807e28221f6f501d798abccc | b5a1829fcbe280ea7e3c04ea99593573a1e9a005 | refs/heads/master | 2021-01-10T11:06:26.798995 | 2011-12-04T03:17:31 | 2011-12-04T03:17:31 | 52,965,989 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,086 | cpp | /*
* TestVotante.cpp
*
* Created on: 12/10/2011
* Author: administrador
*/
#include "TestVotante.h"
#include "../DataAccess.h"
#include <iostream>
using namespace std;
TestVotante::TestVotante() {
this->clase_en_testeo="Votante";
}
void TestVotante::inicializar(){
this->distrito=new Distrito("Lanus")... | [
"mat1204.torres@gmail.com"
] | mat1204.torres@gmail.com |
d5128b38514e4df18e4e5c39ef45e13ede2e46cb | 46bf19da3c36128a37d086150c6dd7635e211033 | /TerrainGeneration/TerrainGeneration/Water.cpp | 4d9467666b3bb0a96e6dd24c9fe407f5610ee969 | [] | no_license | bernhardfritz/Bachelorarbeit | 559db12f767e9224f852bd98d12796ac4af994bf | 6196f19826f9927265dce57567205e69fc9a898b | refs/heads/master | 2021-01-17T02:22:21.368953 | 2016-11-13T22:04:10 | 2016-11-13T22:04:10 | 45,753,174 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,539 | cpp | //
// Water.cpp
// TerrainGeneration
//
// Created by Bernhard Fritz on 25/02/16.
// Copyright © 2016 Bernhard Fritz. All rights reserved.
//
#include "Water.hpp"
Water::Water(int columns, int rows, float waveLevel, float waveWidth, float waveHeight) : Heightmap(columns, rows) {
setWaveLevel(waveLevel);
s... | [
"bernhard.e.fritz@gmail.com"
] | bernhard.e.fritz@gmail.com |
de0e2c3e1225ddb1c932be138b802a666e0aeb09 | ce8bcdce184888ce53d9544ede34e77b408e3c1b | /Gh0st_Client_Gh0st/ShellDlg.h | 82cd63c25459a990b7c66094dd32dc9214cc919c | [] | no_license | bolabola/gh0st | 2637bd5f720faf49e86cafc9bcd8baa6845c3b48 | ef5e362bb1ac22c0fc1353083e9b67e551aa9212 | refs/heads/master | 2020-07-29T08:50:04.546341 | 2019-09-20T07:51:36 | 2019-09-20T08:14:49 | 209,735,698 | 24 | 16 | null | null | null | null | UTF-8 | C++ | false | false | 1,608 | h | #if !defined(AFX_SHELLDLG_H__B9C64D08_103F_4401_9E0D_B8CCAE1B99C9__INCLUDED_)
#define AFX_SHELLDLG_H__B9C64D08_103F_4401_9E0D_B8CCAE1B99C9__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ShellDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
... | [
"lesiry@gmail.com"
] | lesiry@gmail.com |
046ca5d72c9945f5244d66b737e7ce740ae5f1cf | 2a5b1e66b06b9abb909085641a1e9eb4531c3962 | /leetcode/Maximum Product of Word Lengths/solution.cpp | 1eda6e5f0e3bb1e5ca3fe4e6ea8d430aaa12e7f7 | [] | no_license | xidui/algorithm-training | e0bb7e7a2253d14402ef34b2aacd74e9595fa725 | c19d544c1d8208ed8eb573a1c97d897bbde970de | refs/heads/master | 2021-01-17T09:51:30.153456 | 2016-11-13T10:36:04 | 2016-11-13T10:36:04 | 41,213,759 | 52 | 13 | null | null | null | null | UTF-8 | C++ | false | false | 2,158 | cpp | // my first solution
// with unordered_map and vector
// 1680ms
class Solution {
public:
int maxProduct(vector<string>& words) {
vector<unordered_map<char, bool> > vuci;
for (int i = 0; i < words.size(); ++i){
unordered_map<char, bool> temp;
for (int j = 0; j < words[i].lengt... | [
"664984593@qq.com"
] | 664984593@qq.com |
6b7822c6b4277414cc02c831c84ab93f4d92de88 | e13860ecc8ff1d295bc61a6d119a3a83da2e022d | /branches/nmapsys2/System/myMath.cpp | 1b7341eca514485c4262c924c93b5aa24f57acdb | [] | no_license | spring/svn-spring-archive | 9c45714c6ea8c3166b5678209aea4b7a126028ea | 538e90585ed767ee713955221bfdd89410321447 | refs/heads/master | 2020-12-30T09:58:08.400276 | 2014-10-15T00:46:52 | 2014-10-15T00:46:52 | 25,232,864 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 999 | cpp | #include "StdAfx.h"
#include "myMath.h"
#include "math.h"
#include "mmgr.h"
CR_BIND_STRUCT(float2);
CR_REG_METADATA(float2, (CR_MEMBER(x), CR_MEMBER(y)));
CR_BIND_STRUCT(int2);
CR_REG_METADATA(int2, (CR_MEMBER(x),CR_MEMBER(y)));
float3 headingToVectorTable[1024];
class CMyMath
{
public:
CMyMath()
{
for(int a=0;... | [
"spring@abma.de"
] | spring@abma.de |
868c07a1646ca8d6ae8df857de6229cae83b6edb | 75d61b9c328e791ce614d012338d443563eabe25 | /translator/LexicalAnalyzer/Scanner.cpp | 84664c64bb589cdddde0968aa2126045998956a6 | [] | no_license | LosYear/minic-translator | b537b641e2fa8c765e8b7cd462f5405f7c25aa3f | 9e6e127993e9de11e311ee879d2d0d57458ccf3a | refs/heads/master | 2020-03-15T13:46:47.792612 | 2018-05-31T18:07:40 | 2018-05-31T18:07:40 | 132,174,891 | 0 | 0 | null | 2018-05-31T18:07:41 | 2018-05-04T18:22:01 | C++ | UTF-8 | C++ | false | false | 4,316 | cpp | #include "Scanner.h"
LexicalScanner::LexicalScanner(std::istream& stream) : _stream(stream) {}
LexicalToken LexicalScanner::getNextToken()
{
_value = "";
_state = 0;
while (true) {
char c = 0;
_stream >> std::noskipws >> c;
if (_state == 0) {
// End of input stream?
if (_stream.eof() || c == '\0') ... | [
"losevyaroslav@gmail.com"
] | losevyaroslav@gmail.com |
fa6480386369f9c0ca29e5204adc7ff41110eaa1 | 7fac5c553457a6719996dc2d7445367983cc7d68 | /aprinter/printer/modules/WebApiConfigModule.h | 8dc0220a87dc08512813ec379b0cf2eab8d791a1 | [
"BSD-2-Clause"
] | permissive | tetious/aprinter | 24de80127ce063153dfede52037edfc299fa3e34 | a2312a5b2e877899b346518bce147eb95eba1b54 | refs/heads/master | 2020-12-29T00:29:17.779416 | 2017-07-25T20:24:41 | 2017-07-25T20:24:41 | 64,562,887 | 0 | 0 | null | 2016-07-30T20:30:09 | 2016-07-30T20:30:07 | null | UTF-8 | C++ | false | false | 4,410 | h | /*
* Copyright (c) 2016 Ambroz Bizjak
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditio... | [
"ambrop7@gmail.com"
] | ambrop7@gmail.com |
98681699ebabb29adb10df40d6e03611739763fa | 9a3b9d80afd88e1fa9a24303877d6e130ce22702 | /src/Providers/UNIXProviders/IPConfigurationService/UNIX_IPConfigurationServiceMain.cpp | 321f54427975a516b524c54455cd38c7a71d6047 | [
"MIT"
] | permissive | brunolauze/openpegasus-providers | 3244b76d075bc66a77e4ed135893437a66dd769f | f24c56acab2c4c210a8d165bb499cd1b3a12f222 | refs/heads/master | 2020-04-17T04:27:14.970917 | 2015-01-04T22:08:09 | 2015-01-04T22:08:09 | 19,707,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,298 | cpp | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor lice... | [
"brunolauze@msn.com"
] | brunolauze@msn.com |
2f658a4bf57dacf54168f7034aae837c80b8f679 | 0e4ade1c15ea16b45675d5b3877d67175fabdf21 | /src/client/data_container.cpp | fce552d3ee7c48e19f56385f1c1438fe15d78d78 | [] | no_license | GonzaM21/portal | 4ef5df1f09a17895585a3c0973b682b2760d0bc2 | 3dfc1f092b19e0611c84dd13e8edccce73471fd3 | refs/heads/master | 2022-01-10T12:31:11.753382 | 2019-06-29T23:36:58 | 2019-06-29T23:36:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,135 | cpp | #include "data_container.h"
DataContainer::DataContainer() {
this->end_game =false;
this->end_level =false;
this->receive_map =false;
this->error_message =false;
this->waiting_next_level = false;
}
void DataContainer::setReceivedMap(bool received_map) {
this->receive_map = received_map;
}
vo... | [
"joelsaidman1@gmail.com"
] | joelsaidman1@gmail.com |
1f23136f32abf165cac38b76c35920747bc5ae0b | c6a44a11a305810e430d502a4543976bbee93d19 | /worldobject.h | 0e72917bebcd26351212004629116204578bb6b1 | [] | no_license | craigrusselltiu/side-scrolling-game-2 | bceca022b91c80a5b4c9f565658e5d77c37b66e9 | b9ad647ecf13f174cf863a4e054cec37ebb0b49c | refs/heads/main | 2023-03-25T17:14:59.918547 | 2021-03-20T17:39:55 | 2021-03-20T17:39:55 | 345,545,808 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 816 | h | #ifndef WORLDOBJECT_H
#define WORLDOBJECT_H
#include <string>
#include <QPixmap>
#include <QPainter>
#include "position.h"
#include <QDebug>
class WorldObject {
public:
// Constructors + Destructors + type
WorldObject(Position* pos, QPixmap* sprite);
virtual ~WorldObject();
virtual std::string type()... | [
"craigrusselltiu@users.noreply.github.com"
] | craigrusselltiu@users.noreply.github.com |
00fc7b62c92b01847f4a0bb6867e9cde436e1a12 | 59afba829f48a63e2a16f72d76fe96d520c2c7ae | /2.data_structures/linear/stl/UVa10880.cc | 987202775030be649b6ced2a9ab845ded6a3922d | [] | no_license | saeidtafazzol/competitive-programming | ab8d8fb3ae1553c904cde57713844bb6f4ffcdd2 | 6929fee0046a4caf94cbb55681402c57faa973f6 | refs/heads/master | 2023-01-11T21:58:35.931746 | 2020-08-19T21:12:26 | 2020-08-19T21:12:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 744 | cc | #include <bits/stdc++.h>
using namespace std;
int main(){
int n;
int dv[1<<20];
scanf("%d",&n);
for(int ttd = 1;ttd<=n;ttd++){
int c,r;
int sz = 0;
scanf("%d %d",&c,&r);
int num = c - r;
for(int i = 1;i<=int(sqrt(num));i++){
if(num%i==0){
... | [
"saeed.tafazzol@gmail.com"
] | saeed.tafazzol@gmail.com |
36dbaa7dc92006427a880593eec5d9a528f6dda3 | 939cfcd71914284263bd9eba61ac402b49a1aca1 | /src/core/GUI/TextLog/TextLogGenericItem.cpp | be8fe2df13dd56a208c2bcb650ed72b4d4a97173 | [
"MIT"
] | permissive | tedvalson/NovelTea | 3837f76186452bd75cba06efb83ce67a92241081 | 54c28d61d2d5eb45e3130ee416aa77c948c2e9c6 | refs/heads/master | 2022-09-22T17:32:17.593266 | 2022-09-16T23:30:21 | 2022-09-16T23:30:21 | 253,251,360 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 765 | cpp | #include <NovelTea/GUI/TextLog/TextLogGenericItem.hpp>
#include <NovelTea/TextTypes.hpp>
namespace NovelTea
{
TextLogGenericItem::TextLogGenericItem(Context *context, const std::string &text)
: TextLogItem(context)
, m_text(context)
{
TextProperties textProps;
m_text.setText(text, textProps);
}
void TextLogGener... | [
"machin3@gmail.com"
] | machin3@gmail.com |
0484b080bcb8724fcc2d498ff56e97c299b99b8e | ebf7fa65537f1010368dc2355e801d52721c05be | /Source/Framework/Renderer/Internal/Buffer.cpp | 60f415b3f64ce22675f2fb1065f5f5e7b6718ae5 | [] | no_license | D13David/Framework | e784f2cc347ea867ac40b7edea5c75451961952a | c68d4e015856f518dd03aba9fd26d0db2f6ac0f6 | refs/heads/master | 2021-01-25T05:22:09.951102 | 2014-04-28T14:07:12 | 2014-04-28T14:07:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,495 | cpp | #include "Core.h"
#include "Buffer.h"
#include "Game.h"
#include "RenderSystem.h"
VertexBuffer::VertexBuffer()
: m_resource(0)
, m_backingStore(0)
{
m_bufferInfo.canRead = false;
m_bufferInfo.canWrite = false;
m_bufferInfo.mapped = false;
m_bufferInfo.dynamic = false;
}
VertexBuffer::VertexBuffer(const Ve... | [
"reinigdavid@googlemail.com"
] | reinigdavid@googlemail.com |
bacebb4bb88ac221823013355702a99ebbece46d | 38dbb429a776a6a87a7b25d572c0066505c3ac03 | /CodeForces/ProblemSet/1154B.cpp | bd3ca041794551410f48972eca78ef51dab6f946 | [] | no_license | EulerLee/OJ | 796e9d42d000cdc45af478fe664d6235d97772df | 7f5c2d4a3def7287f93ce4d1888d5d98f3b4276e | refs/heads/master | 2022-11-11T09:14:13.899256 | 2022-11-03T10:59:26 | 2022-11-03T10:59:26 | 66,716,354 | 7 | 1 | null | 2016-09-27T08:02:23 | 2016-08-27T13:41:30 | C++ | UTF-8 | C++ | false | false | 1,112 | cpp | #pragma comment(linker, "/stack:247474112")
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
#define REP(i, n) for(ll i = 0; i < n; ++i)
#define RANGE(i, x, n) for(ll i = x; i < n; ++i)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const ll INF = 0x3f3f3f3f3f3f3f3f;
void accelerate(... | [
"euler19960402@gmail.com"
] | euler19960402@gmail.com |
3d2a5680a48557d9968f00209fd302e543a92122 | 41caa27f77527186c67d1da207d42273f77859ce | /Codigos/grafos.cpp | 9f3d390226430b988b791cd8b3fa8fe78c87034c | [] | no_license | PhilipOfMacedon/EstruturasDeGarfos | 5c74a8e9141b6f7c413afa052407e3e11393f954 | b7b94678b514a8de96cc8b146ae02acc50b080e2 | refs/heads/master | 2022-06-01T20:36:41.527576 | 2017-07-15T16:37:48 | 2017-07-15T16:37:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,374 | cpp | #include "grafos.hpp"
#include <iostream>
using namespace std;
/////////////////////////////////////////////////////////////////////////////////////
//////////////////////// Implementação da Excessão ////////////////////////////
VertexNotFoundException::VertexNotFoundException (const char* message) {
this -> m... | [
"filiperodrigues97@hotmail.com"
] | filiperodrigues97@hotmail.com |
4178ea7c34c3db77184bc38fdd384f8555aa67d7 | 7f31f8fccc6e358eb919daf8781e444c13b64762 | /CS202/HW3/HW3/MedianHeap.cpp | 7ab43849b49e4a34377ee1827fb2a026581e381e | [] | no_license | MAKman1/Bilkent-CS-Curriculum | c1d24c3a054152ddc312f0420daa4942a86b552c | 61b113158962dcf52b40c75b8c60350449df1c51 | refs/heads/master | 2023-05-02T00:04:58.278089 | 2021-05-26T17:31:14 | 2021-05-26T17:31:14 | 370,052,413 | 11 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 968 | cpp | /**
* Title: Running Median
* Author: Muhammad Arham Khan
* ID: 21701848
* Section: 3
* Assignment: 3
* Details: HW 3
**/
#include "MedianHeap.h"
using namespace std;
void MedianHeap::insert( int value){
if( value > findMedian()){
minHeap.insert( value);
if( minHeap.size() > maxHeap.size() + 1){
... | [
"muhammadarhamkhan@gmail.com"
] | muhammadarhamkhan@gmail.com |
45e9bb126b3ea37a229b6113e45356cd5543b6dc | 1e87ce1602d79f87e5620052a0aaca2cdbd37026 | /Source/Snake/MedKit.h | ffcc6d9661bee4623c7073cef50a1d177f332377 | [] | no_license | HW27/Medival_Game | a5b4e8f9c2cfb40d79971de1a1e271c1f1ea800b | 3c03e4770d2207b54f26ed932dd9d9b2ecd45f20 | refs/heads/master | 2020-03-25T20:41:03.547692 | 2018-09-02T15:16:57 | 2018-09-02T15:16:57 | 144,140,932 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 501 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "SnakeCharacter.h"
#include "MedKit.generated.h"
UCLASS()
class SNAKE_API AMedKit : public AActor
{
GENERATED_BODY()
public:
// Sets default values for this... | [
"cygan227@gmail.com"
] | cygan227@gmail.com |
9d242015c6ca0b6c0581e9d84c156971cd7fe5f8 | 8652a66d3994098ef4cf9186cd36171eb3833ad3 | /WINCE700/platform/common/src/soc/omap35xx_tps659xx_ti_v1/omap35xx/WAVE/audioctrl.cpp | 54f3e6df9ddf12fb60b8c9edae7441052dd06f33 | [] | no_license | KunYi/em-works | 789e038ecaf4d0ec264d16fdd47df00b841de60c | 3b70b2690782acfcba7f4b0e43e05b5b070ed0da | refs/heads/master | 2016-09-06T03:47:56.913454 | 2013-11-05T03:28:15 | 2013-11-05T03:28:15 | 32,260,142 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,117 | cpp | //
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use th... | [
"lqk.sch@gmail.com@9677f95b-f147-b01e-6ec8-0db75aaa1bab"
] | lqk.sch@gmail.com@9677f95b-f147-b01e-6ec8-0db75aaa1bab |
c131d63489e3a5de4ab3d5dae92f083fedab7753 | 603765eeb80e1b1686b9cc3f271f60a2908e25fb | /include/Buffer.h | 9135de9bdb2029883780b13fb2ac004d92acc27c | [] | no_license | swpuzhang/SparkNet | c095812b6902ab3d2e464f0780ce7929d6902429 | 7df37aa4569fd57288e0fcb09b9a804e54fc8e6f | refs/heads/master | 2022-07-18T19:33:57.880363 | 2020-05-20T15:11:19 | 2020-05-20T15:11:19 | 261,528,584 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,591 | h | #ifndef BUFFER_H
#define BUFFER_H
#include <vector>
class Buffer
{
public:
static constexpr size_t IniteSize = 1024;
Buffer() :
_buffer(IniteSize),
_readIndex(0),
_writeIndex(0)
{
}
void Swap(Buffer& buffer)
{
_buffer.swap(buffer._buffer);
std::swap(buffer._readIndex, _readIndex);
std::swap(buffer._w... | [
"840757167@qq.com"
] | 840757167@qq.com |
7c65e5087a120ab1e245ac2e15c0de7755e9cb07 | 5b889efc1305199a9182de6743334d80a3c8e0bc | /Utils.h | dc4423afdead07f1e8a6b42525ce69292207412d | [] | no_license | marcus1337/NEAT | 08329624c4fe7b303daa1a75529bce676d241718 | b6d13c604dd7c3a1388d75fcb4c6b9bf43639ef5 | refs/heads/master | 2021-06-14T17:41:59.961345 | 2021-04-07T16:54:34 | 2021-04-07T16:54:34 | 181,440,957 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,674 | h |
#include <stack>
#include <map>
#include <set>
#include <vector>
#include "Node.h"
#ifndef UTILS_H
#define UTILS_H
namespace NTE {
class Utils {
protected:
static bool dfs(int current, std::set<int>& white, std::set<int>& gray, std::set<int>& black, std::map<int, Node>& nodes);
static void ... | [
"blurgas@hotmail.com"
] | blurgas@hotmail.com |
fa66b019b8bbe4c84445344faa257289e8f7ea2b | 62abad72fecc42fc793b75a7a662e8a1bda751ca | /iDSK.0.13/src/Basic.cpp | a42545ed28f85ad3da1f8a41efa020750bfced5b | [] | no_license | ralferoo/cpctools | f8f8d1efd0e846f5c126f8e1ee18e48cf77589d0 | 650bbd2ed9d930f1163f4c3af7e1c95746f12095 | refs/heads/master | 2021-01-01T19:21:00.659832 | 2018-02-26T10:40:33 | 2018-02-26T10:40:33 | 6,627,889 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 14,296 | cpp | #include <iostream>
using namespace std;
#include <math.h>
#include <string.h>
#include <stdio.h>
#include "MyType.h"
#include "Itoa.h"
#include "Basic.h"
//static char ConvCpcFr[ 128 ] = " !\"#$%&'()*+,-./0123456789:;<=>?àABCDEFGHIJKLMNOPQRSTUVWXYZ[ç]^_`abcdefghijklmnopqrstuvwxyzéùè~";
//
// Tableau de décryptage... | [
"ralf@ranulf.net"
] | ralf@ranulf.net |
1c8273b0b15822b261e12242fa2729bf165ed9e2 | 18ad206ce03ee50184d9dc9f7e081acc35c6d006 | /complete_runs/run+15/3/p | 4246d01b3e3ba38cf02bfa5183fd05a7ac908026 | [] | no_license | mars2020/CFD-Final-Project | 32080bdd118a8e16a33f715a8fd38d1187f75fd5 | 55c73d10635f7e6dcc223a812a29519a9d1218cd | refs/heads/master | 2022-01-10T19:44:53.590268 | 2019-05-15T01:42:17 | 2019-05-15T01:42:17 | 180,909,389 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 597,485 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6.0
\\/ M anipulation |
\*-----... | [
"george.newman10@gmail.com"
] | george.newman10@gmail.com | |
5d01410971baf30d132937d534addd17e2008647 | ea8d520e306557ce903115d28dad8ac1cf2a1a1b | /robot/navigation/AStar/MotionState.hpp | 63507852b33b9ca66bb5899e09879a71c6988b7c | [] | no_license | viviancwy/m19404 | 9f535ad13609f87b6c89e988791a2437d0b8d291 | 33bac9bb091948f9170c1f5d9307db5075f73205 | refs/heads/master | 2021-01-10T01:30:34.411340 | 2013-11-23T20:38:19 | 2013-11-23T20:38:19 | 55,335,634 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 958 | hpp | /* ========================================================================
* Copyright [2013][prashant iyengar] The Apache Software Foundation
*
* 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... | [
"pi19404@gmail.com"
] | pi19404@gmail.com |
ca744a811219f14d1cc7f730d95813cbdcd32e2a | 26df6604faf41197c9ced34c3df13839be6e74d4 | /src/org/apache/poi/ss/formula/functions/Sumx2py2_1.cpp | 1db0d97151589a3566f62e8cadcdc6f496fc4350 | [
"Apache-2.0"
] | permissive | pebble2015/cpoi | 58b4b1e38a7769b13ccfb2973270d15d490de07f | 6dcc0c5e13e3e722b4ef9fd0baffbf62bf71ead6 | refs/heads/master | 2021-07-09T09:02:41.986901 | 2017-10-08T12:12:56 | 2017-10-08T12:12:56 | 105,988,119 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 689 | cpp | // Generated from /POI/java/org/apache/poi/ss/formula/functions/Sumx2py2.java
#include <org/apache/poi/ss/formula/functions/Sumx2py2_1.hpp>
poi::ss::formula::functions::Sumx2py2_1::Sumx2py2_1()
: super(*static_cast< ::default_init_tag* >(0))
{
clinit();
ctor();
}
double poi::ss::formula::functions::Sumx2p... | [
"zhang.chen.yu@outlook.com"
] | zhang.chen.yu@outlook.com |
d06f3a0c88dc76aac2e6a35a146a2a6f01ce3e42 | d07fda58945180b751b0eb29fb64048eb14a4266 | /Hazel/src/Hazel/LayerStack.cpp | e5025edae5ac6312eccda4d53979bdcafb23ee72 | [
"Apache-2.0"
] | permissive | NissanGoldberg/Hazel | 7a40b3be5e5d9dda7ee835f748871af67e802f8e | 39e190076658d0850065fbdfd0f8e5b945a9e25a | refs/heads/master | 2022-11-15T16:31:17.329984 | 2020-07-15T11:16:15 | 2020-07-15T11:16:15 | 277,513,220 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 895 | cpp | #include "hzpch.h"
#include "LayerStack.h"
namespace Hazel {
LayerStack::LayerStack() {
//m_LayerInsert = m_Layers.begin();
}
LayerStack::~LayerStack() {
for (Layer* layer : m_Layers)
delete layer;
}
void LayerStack::PushLayer(Layer* layer) {
//m_Layers.emplace(m_LayerInsert, layer);
m_Layers.emplac... | [
"nissan.goldberg@gamil.com"
] | nissan.goldberg@gamil.com |
024a4a8f95e5a09a1e5a15cb7e29709520df3487 | a3d471f182c584514c37f800dc7f2339563a474b | /Software/libraries/Series3Common/fins_crickets_unit.cpp | d04f6c9862a1da765acb938f4b5d6cafbbd23d87 | [] | no_license | kkkazumi/Hylozoic-Series-3 | 60a47792cdddb961ba0f1de2a868c718157ddf16 | 67c59d300acc039924211805f89d164b4da76aa4 | refs/heads/master | 2022-10-08T06:06:45.406537 | 2016-02-18T23:17:18 | 2016-02-18T23:17:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,359 | cpp | #include "fins_crickets_unit.h"
//===========================================================================
//===== CONSTRUCTOR and DECONSTRUCTOR =====
//===========================================================================
FinsCricketsUnit::FinsCricketsUnit(uint8_t fin0_port_id,
uint8_t fin1_port... | [
"matthew.tk.chan@gmail.com"
] | matthew.tk.chan@gmail.com |
0aa14d4bd06be4d14bc932829cd38975796448ba | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /chromeos/services/secure_channel/ble_weave_client_connection.cc | 74ed0777e02767bc88887def6c6cbdf01ea20108 | [
"BSD-3-Clause"
] | permissive | ECS-251-W2020/chromium | 79caebf50443f297557d9510620bf8d44a68399a | ac814e85cb870a6b569e184c7a60a70ff3cb19f9 | refs/heads/master | 2022-08-19T17:42:46.887573 | 2020-03-18T06:08:44 | 2020-03-18T06:08:44 | 248,141,336 | 7 | 8 | BSD-3-Clause | 2022-07-06T20:32:48 | 2020-03-18T04:52:18 | null | UTF-8 | C++ | false | false | 42,607 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/services/secure_channel/ble_weave_client_connection.h"
#include <memory>
#include <sstream>
#include <utility>
#include "base/bind.h"... | [
"pcding@ucdavis.edu"
] | pcding@ucdavis.edu |
28d6df2ca643e93ec3858fbfd829a8af09070fd8 | 85711124645325a6a3e975fd4cf9279f74a4aa30 | /tesselate/shape.cpp | e961322bbe2fec8b683ccae8d06926ceec440e3f | [] | no_license | muhummadPatel/cgp1 | 0179c35d1310b11421c9c5e7d797a2c4d93ecfe6 | 3d68cad919aa7e6a8cbba489112d315b54ac2846 | refs/heads/master | 2020-04-10T10:07:49.009071 | 2016-02-28T14:53:03 | 2016-02-28T14:53:03 | 52,084,918 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,231 | cpp | #include <GL/glew.h> // changed from '#include <glew.h>' for mac
#include "shape.h"
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
using namespace cgp;
void ShapeGeometry::setColour(GLfloat * col)
{
int i;
for(i = 0; i < 4; i++)
diffuse[i] = col[i];
for(i = 0; i < 3; i++)... | [
"muhummad.patel@gmail.com"
] | muhummad.patel@gmail.com |
e0f079df3ad7193475ee8f1159571f534eff0843 | 15b041d2a3c8bed8395980c262d7c82224de4913 | /src/MPC.h | d93e41606bc07b06b97ff33375867dc61ff21bfb | [
"MIT"
] | permissive | buiducanh/mpc-project | f26fb911cc3c3c5bca47a7a9baf9f7637c5daed7 | 76551e88e60c1501c756189156876a4eda866410 | refs/heads/master | 2020-03-25T19:26:51.629026 | 2018-08-11T01:11:04 | 2018-08-11T01:11:04 | 144,083,605 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 365 | h | #ifndef MPC_H
#define MPC_H
#include <vector>
#include "Eigen-3.3/Eigen/Core"
using namespace std;
class MPC {
public:
MPC();
virtual ~MPC();
// Solve the model given an initial state and polynomial coefficients.
// Return the first actuatotions.
vector<vector <double> > Solve(Eigen::VectorXd state, Eig... | [
"b.ducanh96@gmail.com"
] | b.ducanh96@gmail.com |
9090938378d290441d15645883aacfe2ac85cc07 | 5ed2c620083bfdacd3a2cd69e68401f6e4519152 | /CppPrimer/Unit7/E727-729/E727-729/Screen.h | 58f47cf33804b869913a21bd3d04b6f731539c9d | [] | no_license | plinx/CodePractices | 03a4179a8bbb9653a40faf683676bc884b72bf75 | 966af4bf2bd5e69d7e5cfbe8ed67c13addcb61b9 | refs/heads/master | 2021-01-01T05:40:02.159404 | 2015-08-30T20:16:44 | 2015-08-30T20:16:44 | 33,318,262 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 897 | h | #ifndef _SCREEN_H
#define _SCREEN_H
#include <string>
using std::string;
class Screen {
public:
using pos = std::string::size_type;
Screen() = default;
Screen(pos wd, pos ht, char c) : width(wd), height(ht), contents(wd * ht, c) {}
Screen &move(pos, pos);
Screen &set(char);
Screen &set(pos, pos, char);
Screen... | [
"plinux@qq.com"
] | plinux@qq.com |
d35d7e2d4c39cac0572b54b9a32d81171b9962bf | 9f3d0bad72a5a0bfa23ace7af8dbf63093be9c86 | /vendor/assimp/4.1.0/code/FBXDocumentUtil.cpp | 27921b92056ae8cb4fc776ed06e81a25c0d6b2ad | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"Zlib"
] | permissive | 0xc0dec/solo | ec700066951f7ef5c90aee4ae505bb5e85154da2 | 6c7f78da49beb09b51992741df3e47067d1b7e10 | refs/heads/master | 2023-04-27T09:23:15.554730 | 2023-02-26T11:46:16 | 2023-02-26T11:46:16 | 28,027,226 | 37 | 2 | Zlib | 2023-04-19T19:39:31 | 2014-12-15T08:19:32 | C++ | UTF-8 | C++ | false | false | 4,586 | cpp | /*
Open Asset Import Library (assimp)
----------------------------------------------------------------------
Copyright (c) 2006-2017, assimp team
All rights reserved.
Redistribution and use of this software in source and binary forms,
with or without modification, are permitted provided that the
following conditions... | [
"aleksey.fedotov@gmail.com"
] | aleksey.fedotov@gmail.com |
0742c8f4a5c36c82424bf7fa0147121edbf6d13e | 522a944acfc5798d6fb70d7a032fbee39cc47343 | /d6k/trunk/include/scadastudio/quoteItem.h | 1f7fb335a98b4f17a66fa422667a9bf0dfd0c95c | [] | no_license | liuning587/D6k2.0master | 50275acf1cb0793a3428e203ac7ff1e04a328a50 | 254de973a0fbdd3d99b651ec1414494fe2f6b80f | refs/heads/master | 2020-12-30T08:21:32.993147 | 2018-03-30T08:20:50 | 2018-03-30T08:20:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,458 | h | #ifndef CQUOTEITEM_H
#define CQUOTEITEM_H
#include <QStandardItem>
class CQuoteItem : public QStandardItem
{
public:
CQuoteItem()
{
}
CQuoteItem(const QIcon &icon, const QString &strText):QStandardItem(icon, strText)
{
}
CQuoteItem(const QString &strText)
:QStandardItem(strText)
{
}
CQuoteIt... | [
"xingzhibing_ab@hotmail.com"
] | xingzhibing_ab@hotmail.com |
c8fab4dfe229f21d4b57efc5a19ec56734a57858 | 942894d325054c5ca905c2b202ee32acb671e3c3 | /114.FlattenBinaryTreetoLinkedList.cpp | d2ec92e019f9b2e925c7855485cd2dfe944002ec | [] | no_license | daiwenbo/leetcode | 01d73f95a5a269ebd91ae443a7a992abeab48ad1 | beaf365b072ad6a7ef562418d8c9a42bd5036be4 | refs/heads/master | 2016-08-11T14:02:51.361752 | 2016-02-11T22:23:17 | 2016-02-11T22:23:17 | 50,599,600 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,274 | cpp | /*
Given a binary tree, flatten it to a linked list in-place.
For example,
Given
1
/ \
2 5
/ \ \
3 4 6
The flattened tree should look like:
1
\
2
\
3
\
4
\
5
\
6
Hints:
If you notice ca... | [
"daiwenbo@gmail.com"
] | daiwenbo@gmail.com |
155a85557a0a926a938739bcf5a79ccb3e8467dd | be0282afa8dd436619c71d6118c9db455eaf1a29 | /Intermediate/Build/Win64/Design3D/Debug/Projects/Module.Projects.cpp | d9b55aa87a3ccc0f21ed937890db29859a56a730 | [] | no_license | Quant2017/Design3D | 0f915580b222af40ab911021cceef5c26375d7f9 | 94a22386be4aa37aa0f546354cc62958820a4bf6 | refs/heads/master | 2022-04-23T10:44:12.398772 | 2020-04-22T01:02:39 | 2020-04-22T01:02:39 | 262,966,755 | 1 | 0 | null | 2020-05-11T07:12:37 | 2020-05-11T07:12:36 | null | UTF-8 | C++ | false | false | 1,067 | cpp | // This file is automatically generated at compile-time to include some subset of the user-created cpp files.
#include "D:\Github\UnrealEngine4\Engine\Source\Runtime\Projects\Private\CustomBuildSteps.cpp"
#include "D:\Github\UnrealEngine4\Engine\Source\Runtime\Projects\Private\LocalizationDescriptor.cpp"
#include "D:\G... | [
"Snake_Jenny@126.com"
] | Snake_Jenny@126.com |
ea6948891350dec6170b17a196596985bdfb93f6 | 67d226c01b71e718b5fe49a9587ee09156400a4a | /Console/updator.cpp | fc89c995e5ee38ed216f2a432659d58979b2a532 | [] | no_license | camadrigalg/opensvr | c3b853d6ced4eb1f2acde4fed95f0b26851dc4cb | e9d3a8d4995cea7aa97d338bab2684931f139122 | refs/heads/master | 2021-01-18T14:11:35.620965 | 2011-04-25T05:18:36 | 2011-04-25T05:18:36 | 34,023,346 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,426 | cpp | #include "StdAfx.h"
#include "Console.h"
#include "updator.h"
#include <iostream>
#include <math.h>
#include <ctime>
namespace Updator {
double percent;
time_t initialTime, currentTime;
char* gstr=0;
void InitializeWaitbar(char* str){
// Initialize waitbar
gstr = str;
if(gstr) Console::info... | [
"simba.forrest@gmail.com"
] | simba.forrest@gmail.com |
ed879d7a6c62660393288b221af2f6325e815fcb | 2822dcf0ccf6497f1a17184c6f504e070b904c80 | /LeetCode/MedimumLevel/Restore IP Addresses.cpp | b7c6ee48b4089597bb05106189723a5390ee33d1 | [] | no_license | DangZhonghua/CodingPractice | a57893a9ed03f48ac8193dff05d1e002abf1b198 | 2ca27e153ba844f6b82a4de274821743b797ddd2 | refs/heads/master | 2021-01-24T04:30:04.091210 | 2019-11-10T11:27:34 | 2019-11-10T11:27:34 | 122,940,460 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,794 | cpp | /*
https://leetcode-cn.com/problems/restore-ip-addresses/
Restore IP Addresses
Given a string containing only digits, restore it by returning all possible valid IP address combinations.
Example:
Input: "25525511135"
Output: ["255.255.11.135", "255.255.111.35"]
*/
/*
use backtrack to solve this: valid IP is four par... | [
"forseekme@163.com"
] | forseekme@163.com |
6946e82a79d03eed8a8964e3c80f9b144b02c871 | 01a1f90fe03fa2cb42f404c63422818e6bffa243 | /oxygine/src/Event.h | 82d657faf9fddc11fe03d51192446ade6bc13cd8 | [
"MIT"
] | permissive | sanyaade-teachings/oxygine-framework | adbec320125fd7469a0859b54cab143b7add7886 | 6bbc9ba40e2bfb6c27c2ac008a434244c57b6df6 | refs/heads/master | 2021-01-17T20:06:32.452996 | 2020-02-10T01:59:00 | 2020-02-10T01:59:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,624 | h | #pragma once
#include "oxygine_include.h"
#include <list>
#include "core/Object.h"
#include "closure/closure.h"
#include "Input.h"
#include "EventDispatcher.h"
#undef OUT
namespace oxygine
{
enum events
{
_et_unknown,
_et_TouchFirst,
_et_TouchDown,
_et_TouchUp,
_et_TouchMove,
_et_TouchClick,
_et_TouchO... | [
"frankinshtein85@gmail.com"
] | frankinshtein85@gmail.com |
19fa72aa827889c56d6a945ed2afd0ab7c946961 | 263575f154900d0071fb660d7b492af0bd9f47b5 | /Wicked/Wicked/src/classes/Window.cpp | b944446b3d385b35aec6cc70b76fe17df7dd86c9 | [
"MIT"
] | permissive | JacobC66/WickedEngine | 06a7dadeb613801d4383aeed5f2c8b06fc551477 | 6108c228f65fa81b806350745a418bbabf2505e3 | refs/heads/master | 2021-04-18T21:47:23.962862 | 2018-04-06T19:27:49 | 2018-04-06T19:27:49 | 126,770,233 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,920 | cpp | #include <glad\glad.h>
#include <iostream>
#include "Window.h"
namespace wicked
{
GLFWwindow* Window::currentWindow{ nullptr };
Window::Window(int width, int height, const char * name)
: m_width{ width },
m_height{ height },
m_name{ name },
m_buffersActivated{0}
{
}
Window::~Window()
{
glfwTerminate(... | [
"sosa.007@hotmail.com"
] | sosa.007@hotmail.com |
0e4c594914e7b50899be073e631eb85a8f769941 | 6e2d2b596c48ec6575d87a331d0d9e575088d69e | /issuefunc.cc | 458a46b4f42099082b8a95c1d36cff595baac628 | [] | no_license | saurabhlabde29/Dynamic-Instruction-Scheduling-in-an-Out-Of-Order-Superscalar-Processor | af8e74f515cdedf9f39dec1eacdcdee13b74afd6 | 98cf924914d8ebe6bc960184c400f408703c9d19 | refs/heads/master | 2020-04-20T11:10:57.875483 | 2019-02-02T08:00:44 | 2019-02-02T08:00:44 | 168,808,930 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,987 | cc | #include<iostream>
#include<cstdlib>
#include<string>
#include<fstream>
#include<vector>
#include<cmath>
#include<iomanip>
#include<cstdio>
#include"main.h"
using namespace std;
void issuefunc(int n, int s, SCHEDULINGQUEUE schedulearray[], TEMPISSUE tempi[], FROB frobarray[10000], FUNCUNITS funcarray[], int *... | [
"saurabhlabde@Saurabhs-MacBook-Pro.local"
] | saurabhlabde@Saurabhs-MacBook-Pro.local |
9ed5fd5325f3e03719acd24efd1ec42c49aee8e4 | c51febc209233a9160f41913d895415704d2391f | /library/ATF/LPPOLYTEXTA.hpp | 609ff99824ad4ecd5b629778a5594967bbe43282 | [
"MIT"
] | permissive | roussukke/Yorozuya | 81f81e5e759ecae02c793e65d6c3acc504091bc3 | d9a44592b0714da1aebf492b64fdcb3fa072afe5 | refs/heads/master | 2023-07-08T03:23:00.584855 | 2023-06-29T08:20:25 | 2023-06-29T08:20:25 | 463,330,454 | 0 | 0 | MIT | 2022-02-24T23:15:01 | 2022-02-24T23:15:00 | null | UTF-8 | C++ | false | false | 257 | hpp | // This file auto generated by plugin for ida pro. Generated code only for x64. Please, dont change manually
#pragma once
#include <common/common.h>
#include <tagPOLYTEXTA.hpp>
START_ATF_NAMESPACE
typedef tagPOLYTEXTA *LPPOLYTEXTA;
END_ATF_NAMESPACE
| [
"b1ll.cipher@yandex.ru"
] | b1ll.cipher@yandex.ru |
e29e58d55ee6a15b49b6511204f2cb80065a0799 | 590eb4cc4d0fe83d9740ce478f857ca3a98e7dae | /OGDF/src/coin/Cgl/CglRedSplitParam.cpp | 9d66a02c15e3ac0bf14728bb83730211838ddfb3 | [
"MIT",
"LGPL-2.1-or-later",
"GPL-3.0-only",
"GPL-1.0-or-later",
"EPL-1.0",
"GPL-2.0-only",
"LicenseRef-scancode-generic-exception",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | cerebis/MetaCarvel | d0ca77645e9a964e349144974a05e17fa48c6e99 | a047290e88769773d43e0a9f877a88c2a8df89d5 | refs/heads/master | 2020-12-05T05:40:19.460644 | 2020-01-06T05:38:34 | 2020-01-06T05:38:34 | 232,023,146 | 0 | 0 | MIT | 2020-01-06T04:22:00 | 2020-01-06T04:21:59 | null | UTF-8 | C++ | false | false | 7,600 | cpp | // Name: CglRedSplitParam.cpp
// Author: Francois Margot
// Tepper School of Business
// Carnegie Mellon University, Pittsburgh, PA 15213
// Date: 11/24/06
//
// $Id: CglRedSplitParam.cpp 944 2011-01-04 23:26:07Z lou $
//---------------------------------------------------------------------... | [
"jayg@cbcbsub00.umiacs.umd.edu"
] | jayg@cbcbsub00.umiacs.umd.edu |
4502aeb515506781eb178802dd4ac899d7879b33 | ebc144cd5658eabdb1b7c549741d2718ebe6ff85 | /ThirdParty/log4cplus-2.0.7/include/log4cplus/helpers/thread-config.h | 0d89762b85dd3263e066a57cc487221f0215a785 | [
"Apache-2.0",
"Zlib",
"BSD-2-Clause"
] | permissive | UWB-Biocomputing/Graphitti | 175a8fa442fc61341338efea504adb797136c339 | 6c392438d9e5367b0ddfee9c7fb257df27a05bf4 | refs/heads/master | 2023-09-04T09:04:24.244967 | 2023-08-07T23:55:00 | 2023-08-07T23:55:00 | 273,115,663 | 8 | 22 | Apache-2.0 | 2023-09-13T20:22:13 | 2020-06-18T01:41:41 | C++ | UTF-8 | C++ | false | false | 1,786 | h | // -*- C++ -*-
// Module: Log4CPLUS
// File: thread-config.h
// Created: 4/2003
// Author: Tad E. Smith
//
//
// Copyright 2003-2017 Tad E. Smith
//
// 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... | [
"cdok@uw.edu"
] | cdok@uw.edu |
2200979f4eefde24bd9028b8c7dd4639e22fa6e6 | bb3ab1d635a1696bb8cb81c672d06747d9a521a6 | /src/test/script_standard_tests.cpp | 75b698c478f58c9c73efda0188c1a3b316cf6131 | [
"MIT"
] | permissive | dogxteam/dogxwallet-master | 55ab22aa37c7ce131a06151958743acb1f3e12af | 346189354bdec9a80c20bdc429ddec15c3b17b73 | refs/heads/master | 2020-04-28T23:42:38.257585 | 2019-03-14T17:19:07 | 2019-03-14T17:19:07 | 175,666,685 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,307 | cpp | // Copyright (c) 2017-2018 The dogxcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <key.h>
#include <keystore.h>
#include <script/ismine.h>
#include <script/script.h>
#include <script/script_error.h... | [
"alizha@tom.com"
] | alizha@tom.com |
d9bac5790c8b7cdcd1f81a285f0049b55b604fdd | 1fdda85a365a07abdd13332ab11cdeb0a9f485cb | /src/lib/avahi/Explorer.cxx | 161106171f973260a7a554461102f2761215be11 | [] | no_license | CM4all/libcommon | 5a568ca3fce1ab985ff2ed9464a044bebb5ec5d5 | 5827f2ccec15cf1fbdbffab308268fd7d9ac1943 | refs/heads/master | 2023-08-18T08:15:48.015497 | 2023-08-17T14:34:48 | 2023-08-17T14:51:45 | 95,901,877 | 19 | 10 | null | 2018-02-28T21:16:40 | 2017-06-30T15:34:34 | C++ | UTF-8 | C++ | false | false | 6,629 | cxx | // SPDX-License-Identifier: BSD-2-Clause
// Copyright CM4all GmbH
// author: Max Kellermann <mk@cm4all.com>
#include "Explorer.hxx"
#include "ExplorerListener.hxx"
#include "Error.hxx"
#include "ErrorHandler.hxx"
#include "Client.hxx"
#include "net/IPv4Address.hxx"
#include "net/IPv6Address.hxx"
#include "util/Cast.hx... | [
"mk@cm4all.com"
] | mk@cm4all.com |
e57b953eb481cbb96e7e16588d1ab5277b8b8c65 | da9ef2b5e869e36bb9c31403682621c95be1e9c8 | /lab/Lab051018/Retirement_Vector_V4_MVC_Functions_1/main.cpp | 3c4bf135d23603ec7c92f62e7f999fe30b56996e | [] | no_license | ja2712164/Pass_Suff | 9678e1dc263b80f033cb0c9e5c3408a2c591dc6f | ca8807e5c708207c153251c3120487727341264a | refs/heads/master | 2021-09-14T08:55:29.083330 | 2018-05-10T19:48:36 | 2018-05-10T19:48:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,977 | cpp | /*
* File: main.cpp
* Author: Jonathan Acosta
* Created on May 10th, 2018, 11:25 AM
* Purpose: Retirement with arrays and MVC model
*/
//system Libraries
#include <iostream> //I/O Library-> cout, endl
#include <iomanip> //Format Library
#include <vector>
using namespace std; //namespace I/O stream library cre... | [
"Gazelemacosta@gmail.com"
] | Gazelemacosta@gmail.com |
a1a740214a6276fe20feb395bd8f6d0f19d5c136 | 71af935b0a23ab356305a25ac58a12414f30edf1 | /drivers/formats/mbr.cpp | c76355469f461bcd94c1602c7eb73c38d0fc5cbf | [
"BSD-3-Clause"
] | permissive | pgrAm/JSD-OS | 29857c57d2f7d7cc4953523ae7988f56bceee7b2 | c27aeb607f6798af577a5fe581d58992959a5e93 | refs/heads/master | 2022-08-09T22:34:12.733405 | 2022-07-23T18:29:42 | 2022-07-23T18:29:42 | 171,043,471 | 57 | 3 | BSD-3-Clause | 2022-05-10T22:09:41 | 2019-02-16T19:33:33 | C++ | UTF-8 | C++ | false | false | 1,511 | cpp | #include <kernel/filesystem/fs_driver.h>
#include <kernel/kassert.h>
#include <stdint.h>
#include <stdio.h>
#define MBR_SIZE 512
struct __attribute__((packed)) mbr_partition
{
uint8_t status;
uint8_t chs_first_sector[3];
uint8_t type;
uint8_t chs_last_sector[3];
uint32_t lba_first_sector;
uint32_t sector_co... | [
"jakedelmastro@gmail.com"
] | jakedelmastro@gmail.com |
4a81311049d21a7d0c57254de204fc462db22986 | ec7d1269672e09ff8ff2720b60f350677c8c15f1 | /arm-linux-gcc-4.5.1/4.5.1/arm-none-linux-gnueabi/sys-root/usr/include/c++/4.5.1/debug/debug.h | f1a2a2b701138ab7f9e91cbd5b68309cbb61b17a | [] | no_license | ElevenH/First-Blood | 6a4d8ed48e93660c44b0623405bf30530eeea16b | 44ee02b8126c5609dc78d917633bde9caf4d0d68 | refs/heads/master | 2022-02-07T16:20:43.634359 | 2022-01-28T08:04:42 | 2022-01-28T08:04:42 | 46,023,766 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,182 | h | // Debugging support implementation -*- C++ -*-
// Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software;you can redistribute it and/or modify it under the
// terms of the GNU General Public License ... | [
"pangchol@163.com"
] | pangchol@163.com |
2920a9538cb918bdfa22b0e205ab3a9deaeef38e | f739df1f252d7c961ed881be3b8babaf62ff4170 | /softs/SCADAsoft/5.3.2/ACE_Wrappers/TAO/tao/TransportCurrent/TCC.h | a36fb1aa02f23f2750d21fea4073c5a6e4535ac3 | [] | no_license | billpwchan/SCADA-nsl | 739484691c95181b262041daa90669d108c54234 | 1287edcd38b2685a675f1261884f1035f7f288db | refs/heads/master | 2023-04-30T09:15:49.104944 | 2021-01-10T21:53:10 | 2021-01-10T21:53:10 | 328,486,982 | 0 | 0 | null | 2023-04-22T07:10:56 | 2021-01-10T21:53:19 | C++ | UTF-8 | C++ | false | false | 10,513 | h | // -*- C++ -*-
//
// $Id$
// **** Code generated by the The ACE ORB (TAO) IDL Compiler v1.6a_p10 ****
// TAO and the TAO IDL Compiler have been developed by:
// Center for Distributed Object Computing
// Washington University
// St. Louis, MO
// USA
// http://www.cs.wustl.edu/~schmidt/do... | [
"billpwchan@hotmail.com"
] | billpwchan@hotmail.com |
9c7c3f27f91e542a7f85c29460a16bff6dd7758a | b5e9ee331d96d9b5b43fe8653a96301af67cc95b | /opencv/src/external/qwt/qwt_abstract_slider.h | d9facbbed22234abeaa90665525e66220f96cde3 | [] | no_license | joonhwan/study | 531d3b0f3cb2c26dae9953f05a56a12305215f4a | e79490820e7c03bbfad58e7f9fd02a3f72783e67 | refs/heads/master | 2023-01-23T22:31:59.364783 | 2020-02-23T14:01:28 | 2020-02-23T14:01:28 | 4,001,896 | 9 | 2 | null | 2023-01-14T00:56:35 | 2012-04-12T06:19:31 | C++ | UTF-8 | C++ | false | false | 5,164 | h | /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License, Version 1.0
**************... | [
"joonhwan.lee@gmail.com"
] | joonhwan.lee@gmail.com |
9452760ae81166a14e8e47ea528430a14b44ce56 | d0772e9a2ab5d3c162b436e37311bf3db167ede4 | /memo_iterator.hpp | 3c8da67222fcce6c2625159ea0a4e86d12822582 | [
"MIT"
] | permissive | belyaev-mikhail/iterations | 8046f7caba598c91aa512c7250d8a6cb5f499fb8 | f86300288444ddb70db6966e98a30795c23a10c3 | refs/heads/master | 2020-07-11T07:25:12.145679 | 2017-01-24T18:23:12 | 2017-01-24T18:23:12 | 204,477,753 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,623 | hpp | /*
* count_iterator.hpp
*
* Created on: Nov 10, 2015
* Author: belyaev
*/
#ifndef MEMO_ITERATOR_HPP_
#define MEMO_ITERATOR_HPP_
#include <unordered_map>
#include "iterator_adapter.hpp"
namespace essentials {
namespace iterations {
template<class It>
struct memo_iterator_simple: simple_iterator_facade<It... | [
"2496075+belyaev-mikhail@users.noreply.github.com"
] | 2496075+belyaev-mikhail@users.noreply.github.com |
ac48bd86b496909370f6c6ddb4eb2b077120e837 | 58ac7ce414dcbe875e26bb6fae692e3c74f39c4e | /chrome/browser/android/browsing_data/url_filter_bridge.cc | 7b1e9ecb8108cfbc7fb687854904557e7cecc5a4 | [
"BSD-3-Clause"
] | permissive | markthomas93/tempwork | f4ba7b4620c1cb806aef40a66692115140b42c90 | 93c852f3d14c95b2d73077b00e7284ea6f416d84 | refs/heads/master | 2021-12-10T10:35:39.230466 | 2016-08-11T12:00:33 | 2016-08-11T12:00:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,128 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/android/browsing_data/url_filter_bridge.h"
#include "base/android/jni_android.h"
#include "base/android/jni_string.h"
#include "... | [
"gaoxiaojun@gmail.com"
] | gaoxiaojun@gmail.com |
6dcd90fba848fcc7c5a0aebdc7f5586801f93cc8 | eddc84bbf831f58c5b70d9fad0c53b7c2b12af43 | /practice/1624.cpp | 036e479d71d849b825b659d02514939ec36d070c | [] | no_license | amitray1608/PCcodes | 79a91a85203b488eeca695ec8048e607269882e0 | e0d49c0b0c05d80d4d813e4a706a8b900de55a91 | refs/heads/master | 2023-06-20T02:01:05.875982 | 2021-07-23T02:25:54 | 2021-07-23T02:25:54 | 305,299,557 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 897 | cpp | #include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define deb(x) cout << #x << " = " << x << endl;
typedef long long ll;
typedef long double ld;
const int MOD = 1e9 + 7;
const int MAXN = 64;
int col[MAXN], diag1[MAXN], diag2[MAXN];
vector<string> s(8);
int ans = 0, n = 8;
void recc(int y) {
if(y == n)... | [
"amitray1608@gmail.com"
] | amitray1608@gmail.com |
9ffd7a06410e2129216e88920caab86fd0d32178 | f09be262c24f8e8d6c029c29832cf1730dd379bb | /3rdparty/half_float/half.hpp | 8a43f713fd883e4de73aaf911fff9a86cdee3300 | [
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LicenseRef-scancode-generic-cla"
] | permissive | NVIDIA/caffe | 86daa95b8bd7cfc74cb22984a8508782c763568b | 82832a87e587a83d4b5a2a451d9f22cb71dd1588 | refs/heads/caffe-0.17 | 2023-09-05T03:40:03.082476 | 2021-08-22T20:29:59 | 2021-08-22T20:29:59 | 31,136,177 | 769 | 394 | NOASSERTION | 2023-04-03T07:27:52 | 2015-02-21T18:41:24 | C++ | UTF-8 | C++ | false | false | 150,447 | hpp | // half - IEEE 754-based half-precision floating point library.
//
// Copyright (c) 2012-2013 Christian Rau <rauy@users.sourceforge.net>
//
// 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 wi... | [
"snikolaev@nvidia.com"
] | snikolaev@nvidia.com |
8191340a2f480f5941a68d2d4fceacfe50db1e2c | 481f3c6b713379912988084cf10810e7d9a74fd0 | /content/renderer/pepper/v8_var_converter_unittest.cc | 3645f7d0b58f69d852e9058521e58924865a08e9 | [
"MPL-2.0-no-copyleft-exception",
"LicenseRef-scancode-unknown-license-reference",
"AGPL-3.0-only",
"LGPL-2.1-only",
"GPL-2.0-only",
"MPL-2.0",
"BSD-3-Clause"
] | permissive | huhisoft/huhi-android | bab71148730ff68b770f56b93b731302528045ec | 1c00f05a2ab19f0d6acf42331931de61555a93e8 | refs/heads/master | 2023-01-13T11:26:25.618267 | 2019-11-11T04:09:38 | 2019-11-11T04:09:38 | 219,455,870 | 0 | 4 | BSD-3-Clause | 2022-12-10T08:31:33 | 2019-11-04T08:48:00 | null | UTF-8 | C++ | false | false | 16,704 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/renderer/pepper/v8_var_converter.h"
#include <stddef.h>
#include <stdint.h>
#include <cmath>
#include <memory>
#include <unordered... | [
"huhibrowser@gmail.com"
] | huhibrowser@gmail.com |
396c15f34e6dc2819e597354083a6471941a7869 | 697fe7d0ca6199d694ca4214669fc0cb606c143a | /src/tspl/fitcurves.h | 1430f3b3fffda08e8e31c09fe3bf06470b9ed45d | [] | no_license | Frc5572/engfaire | 749ac053e6367572d2478527b58b5ac4ac26014a | 5ee0622d414a14da37e5bed78103c6e5c849f72b | refs/heads/master | 2021-05-10T07:32:48.127580 | 2018-01-25T00:36:06 | 2018-01-25T00:36:06 | 118,840,381 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,745 | h | /*
* Copyright (c) 2008-2011 Zhang Ming (M. Zhang), zmjerry@163.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 or any later version.
*
* Redistribution and ... | [
"wwatso1tech@gmail.com"
] | wwatso1tech@gmail.com |
6821d63c5e18e91c3a00798887bfd4437d3f7c80 | 573a7c8a66fa87d398bf8bc1c642a671feedf2f7 | /BitMatchClient/BitMatchClient/API.h | c7731745df7d40195b2e8b329cddbc0366f7b422 | [] | no_license | MatWillows/BitMatch | 471d49139d98713da1878de0d079d4b83af9427e | 2682aee6d1a1d986b8853e3ac6419879f4e22276 | refs/heads/master | 2022-12-24T15:10:25.314787 | 2020-01-09T19:17:50 | 2020-01-09T19:17:50 | 232,622,040 | 0 | 0 | null | 2022-12-11T19:48:32 | 2020-01-08T17:39:50 | C++ | UTF-8 | C++ | false | false | 458 | h | #pragma once
#define CURL_STATICLIB
#include <curl\curl.h>
#include<string>
using namespace std;
typedef struct match_request
{
int id;
int ppl;
long time;
bool accepted;
string data;
};
class API
{
public:
static API* Instance;
CURL* curl;
API()
{
Instance = this;
curl = curl_easy_init();
};
... | [
"mat.williams@gmail.com"
] | mat.williams@gmail.com |
99f8de459a74052c8fbcd518a31f4bedc43ab110 | a78fbd1b6696de7efc460fdc65ed8f325a299a50 | /muste_apds9960/muste_apds9960.ino | d3a5f539e97df253feffbc1b42d30ba51cb7acba | [] | no_license | BornaBiro/MUSTE_EINK | 1c2c55b7459d4fea9440de32b4b6dae17e196be0 | 123a34c973005425b6d51250889b9cb0b56e1bc5 | refs/heads/master | 2020-07-05T08:03:08.331031 | 2019-08-15T17:13:31 | 2019-08-15T17:13:31 | 202,581,912 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,587 | ino | #include "page1.c"
#include "page2.c"
#include "page3.c"
#include "page4.c"
#include "page5.c"
#include "page6.c"
#include "page7.c"
#include "page8.c"
const uint8_t* p[] = {image_data_page1, image_data_page2, image_data_page3, image_data_page4, image_data_page5, image_data_page6, image_data_page7, image_data_page8};
... | [
"43830307+BornaBiro@users.noreply.github.com"
] | 43830307+BornaBiro@users.noreply.github.com |
d12cf5892888c86acfd4ffa547a7a3007b8abc94 | f7dff5bceaa2b568d5bb2a43b6ed117e2c81b0f1 | /easydk/src/easyinfer/model_loader.cpp | e78043c18feef66760be19030a5780acdba2c0e7 | [
"LicenseRef-scancode-other-permissive",
"BSD-3-Clause",
"Apache-2.0"
] | permissive | CambriconECO/EDK_SSD_Sample | e005a8857685499a0f9942a320a142b7195279d0 | 2a1f2dfd3753ca068d155534c6d90c854075adc7 | refs/heads/master | 2023-04-01T04:53:06.758135 | 2021-04-01T06:21:18 | 2021-04-01T06:21:18 | 353,602,274 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,331 | cpp | /*************************************************************************
* Copyright (C) [2019] by Cambricon, 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 a... | [
"wuyangyang@cambricon.com"
] | wuyangyang@cambricon.com |
0043e7a433bde429928928b262c58fc1cdb29aa2 | 9ab6c262492e61cbde7e92511a4669f4eab34159 | /HomeWork10Q1/HomeWork10Q1/Source.cpp | dd90791de608cd5beed98c8eeb89a4c91c2ecace | [] | no_license | YosefSchoen/IntroToProgramming | 54087c19fc86ce12337fe75ebfb80fa25007beb3 | 58c032a0cf45d567dfaf913b68e9cd677c3f67e2 | refs/heads/master | 2020-07-30T20:45:01.923464 | 2019-09-23T12:44:05 | 2019-09-23T12:44:05 | 210,351,836 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,478 | cpp | /*
Homework 9
This program will let the user build an inventory of a store and see/update things such as price, amount in stock, and order more items
Introduction to Computer Science.
Question 1.
Yosef Schoen
12/31/17
*/
#include <iostream>
#include <cstring>
using namespace std;
//assign names to the switch fu... | [
"josephaschoen@gmail.com"
] | josephaschoen@gmail.com |
125f3a22fd849708df6031a1b389fc723dc6716b | 55fc0e953ddd07963d290ed56ab25ff3646fe111 | /StiGame/gui/DecoratedButton.h | 3b35f8a36237f70d506034d9bbdbac0e4a721d36 | [
"MIT"
] | permissive | jordsti/stigame | 71588674640a01fd37336238126fb4500f104f42 | 6ac0ae737667b1c77da3ef5007f5c4a3a080045a | refs/heads/master | 2020-05-20T12:54:58.985367 | 2015-06-10T20:55:41 | 2015-06-10T20:55:41 | 22,086,407 | 12 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,478 | h | #ifndef DECORATEDBUTTON_H
#define DECORATEDBUTTON_H
#include "Item.h"
#include "EventThrower.h"
#include "CaptionSupport.h"
namespace StiGame
{
namespace Gui
{
/// \class DecoratedButton
/// \brief Button with custom graphics
class DecoratedButton :
public Item,
public EventThrower,
public CaptionSupport
{
... | [
"jord52@gmail.com"
] | jord52@gmail.com |
fc8f337168e943a5145affd712eb92b474f1eee1 | 38fdcec47ed1f51a77e1b3c54b0b186c7346c037 | /src/cpp/arcanecore/base/arg/DefaultHelpFlag.cpp | fa7b76adbe5e91412afbde25af8c89aeb7a0f28e | [] | no_license | the-arcane-initiative/ArcaneCore | 9b15b0b706258ef4795cc34be98ffc4326943bd0 | 30aa81e1e4b0d3766cc53fb6c397678b8764f6b5 | refs/heads/master | 2021-01-24T10:15:37.289445 | 2018-08-17T12:15:54 | 2018-08-17T12:15:54 | 123,047,068 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,533 | cpp | /*!
* \copyright Copyright (c) 2018, The Arcane Initiative
* All rights reserved.
*
* \license BSD 3-Clause License
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of ... | [
"davidesaxon@gmail.com"
] | davidesaxon@gmail.com |
0bdba26084f523648565232e70e7cabcce5e50c2 | c7d5552497ca71cb7fa88f2d25aad4006f72aba7 | /Engine/include/Porkholt/Core/PHGLRenderbuffer.h | 74b981baee0fb9e31eca11ff59d0264b179ae0bd | [] | no_license | dapetcu21/Porkholt | bef4b6f02f56b4d9a33318ec6c498527c849c5fa | 9bff9925742469d18b3dac4ff3e1f7d4af5dfda8 | refs/heads/master | 2016-08-11T13:13:57.319386 | 2015-11-23T22:06:37 | 2015-11-23T22:07:54 | 46,735,692 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 619 | h | /* Copyright (c) Marius Petcu, Porkholt Labs!. All rights reserved. */
#ifndef PHGLRENDERBUFFER_H
#define PHGLRENDERBUFFER_H
#include <Porkholt/Core/PHGLFBOAttachment.h>
class PHGameManager;
class PHGLRenderbuffer : public PHGLFBOAttachment
{
protected:
GLuint id;
int w, h;
friend class PHGLFramebuffer... | [
"dapetcu21@gmail.com"
] | dapetcu21@gmail.com |
c34fac43842138c2fdce255230808f34ec2cd064 | 4010bdf48cb92928f6cce4c6c4435baddb116e09 | /Classes/MatrixClass/rg/Vector.h | 7276cb5ea809026c7b2141d92df77a246e8ed4b7 | [] | no_license | dcamvik2020/Full-code-base | b96d17d1e17c1ce6ea5e94907af65e508cfbb4f0 | 5c76dcbd0da193fb1f0ca0e385384befe9281c32 | refs/heads/main | 2023-07-31T17:01:08.900785 | 2021-09-18T16:04:37 | 2021-09-18T16:04:37 | 356,920,890 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,718 | h | #include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <cstring>
/// In programmer's responsibility:
/// - remember about Vector sizes (he can change it as he wants at any time)
/// - remember about Vector's aim (what variable responses)
/// -
using std::cin;
using std::cout;
using std::c... | [
"vik-melnikov2001@mail.ru"
] | vik-melnikov2001@mail.ru |
c91bc2a1e3dee52c493a4a15a34e2a3ccb389a37 | c3131577f706b25623da31f1d5af668c717eb91b | /PixelCalibrations/include/PixelTBMUBCalibration.h | 245791f5b13d377fc6baf0805a270c28b8c7822d | [] | no_license | cmspixelpilot/POSOverlay | 29e5739cf4f1556802ca02ae8ee1663dcd941b22 | abdd29afe0aeddefc111a14f723ec365329b34a8 | refs/heads/master | 2020-04-04T04:17:25.383958 | 2016-10-14T14:19:15 | 2016-10-14T14:19:15 | 29,026,300 | 1 | 13 | null | 2016-11-24T19:45:07 | 2015-01-09T17:04:16 | C++ | UTF-8 | C++ | false | false | 1,218 | h | /*************************************************************************
* XDAQ Components for Distributed Data Acquisition *
* Copyright (C) 2000-2004, CERN. *
* All rights reserved. *
* Authors: J. Gutleber and L. Orsini ... | [
"cmspixelpilot@yahoo.com"
] | cmspixelpilot@yahoo.com |
c48fda292c4642efc5471b703e362f3657e8f1db | 4ceeac3c05c690ebcb53f265782aac6a3f911985 | /chromeos/services/secure_channel/secure_channel_impl.h | e191b1b3f5b616de3be0710571b2d7df9ee5d849 | [
"BSD-3-Clause"
] | permissive | userkrm/chromium | 15934f10f9e43ec4f436e506077a2657f5cd0a36 | 5adff4fb994f187a64d18617584167d87525e838 | refs/heads/master | 2022-12-11T23:08:44.771979 | 2020-09-23T07:50:35 | 2020-09-23T07:50:35 | 297,855,415 | 0 | 0 | null | 2020-09-23T04:47:51 | 2020-09-23T04:47:51 | null | UTF-8 | C++ | false | false | 8,132 | h | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_SERVICES_SECURE_CHANNEL_SECURE_CHANNEL_IMPL_H_
#define CHROMEOS_SERVICES_SECURE_CHANNEL_SECURE_CHANNEL_IMPL_H_
#include <memory>
#includ... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
3d0292e7580aaade9756daa634a0144548eafdcf | 4fc41ade4832fa29c5d8b22074bd4f7c675750b9 | /app/src/main/cpp/native-lib.cpp | 32e34fa3fdf0bb8ac089422b035fa8768b5f882c | [] | no_license | restourgie/IRMA-ANDROID | 2bc65784358916a5c4d93bf11d9290cebfdac574 | 8f74823e2c63faa7fdcc3a59b842ac1a2e0aec60 | refs/heads/master | 2021-06-19T22:36:05.459564 | 2017-07-23T20:29:46 | 2017-07-23T20:29:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 274 | cpp | #include <jni.h>
#include <string>
extern "C"
JNIEXPORT jstring JNICALL
Java_com_example_restourgie_irma_MainActivity_stringFromJNI(
JNIEnv* env,
jobject /* this */) {
std::string hello = "Hello from C++";
return env->NewStringUTF(hello.c_str());
}
| [
"r.estourgie@gmail.com"
] | r.estourgie@gmail.com |
7fc692ca42b5dcea9cf08e5123668431ddd1ead5 | b4b4e324cbc6159a02597aa66f52cb8e1bc43bc1 | /C++ code/HSNU Online Judge/89(18).cpp | 148be8354d3ed72d4a05117ce6ec8ce95ad10925 | [] | no_license | fsps60312/old-C-code | 5d0ffa0796dde5ab04c839e1dc786267b67de902 | b4be562c873afe9eacb45ab14f61c15b7115fc07 | refs/heads/master | 2022-11-30T10:55:25.587197 | 2017-06-03T16:23:03 | 2017-06-03T16:23:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,650 | cpp | #include<cstdio>
#include<vector>
#include<algorithm>
#include<cassert>
using namespace std;
const int INF=2147483647;
int N,X,Y,K;
vector<char>DIGIT,DEP;
vector<int>PRE;
int DP[2][10][901][910];
vector<int>V[2];
struct Edge
{
int u,c;
Edge(){}
Edge(const int _u,const int _c):u(_u),c(_c){}
};
vector<Edge>ET[10];
inl... | [
"fsps60312@yahoo.com.tw"
] | fsps60312@yahoo.com.tw |
2af6f4aecfe0e8c4c3c3ed4aa637fdee522754df | e8282e3ae8aafa07b7f7261c639f206c4e97e0fc | /02 - SMA/Latihan_OSN_2016/codeforces/644A.cpp | 130106781fe93d8a642be7b8884d9d1241362c16 | [] | no_license | irfansofyana/cp-codes | 7cad844da49b901ccf678b75c31ed41e2fa9d645 | 9fa723129088f0e4832ecb7e012fe586b6d59e41 | refs/heads/master | 2023-04-04T00:48:36.334817 | 2021-04-12T03:07:06 | 2021-04-12T03:07:06 | 218,084,148 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,687 | cpp | #include <bits/stdc++.h>
using namespace std;
const int MAKSN = 105;
int n,a,b;
int arr[MAKSN][MAKSN];
int i,j,k;
int dx[]={-1,1,0,0};
int dy[]={0,0,1,-1};
bool bisa;
bool cek(int x,int y){
return (x >= 1 && x <= a && y >= 1 && y <= b);
}
void print(){
int genap,ganjil;
genap = 2; ganjil = 1;... | [
"irfansofyana0305@gmail.com"
] | irfansofyana0305@gmail.com |
2a636b60c838311f04db62fc76b26a5c70512af9 | 4c232c21d4f96f501187864dde75c0f31e6a88fd | /TGUI-0.6.3 Visual C++12 (2013) - 32bit/src/TGUI/ClickableWidget.cpp | ad70dac061c9e7680caed419d350b5e4857fe778 | [
"Zlib"
] | permissive | Maxomann/kgEngine | b65934ecab4257765234e11f6fcf56597d69bd8a | 09978403769ef7682259bc5a3cffa234efb77d4e | refs/heads/master | 2016-09-06T05:20:01.272312 | 2014-09-04T10:01:10 | 2014-09-04T10:01:10 | 18,226,743 | 1 | 0 | null | 2014-07-14T15:02:29 | 2014-03-28T21:18:13 | C | UTF-8 | C++ | false | false | 8,895 | cpp | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// TGUI - Texus's Graphical User Interface
// Copyright (C) 2012-2014 Bruno Van de Velde (vdv_b@tgui.eu)
//
// This software is provided 'as-is', without any express or implied warranty.
... | [
"kay.gonschior@googlemail.com"
] | kay.gonschior@googlemail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.