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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fc3e0e16dac590bb8524bf8bd66d7da47ca75776 | 1b7bc0c8810624c79e1dade01bb63177058f1a28 | /Voltron/Source/UnitTests/DataStructures/Trees/SuffixTrie_tests.cpp | 16374322e559f3766849a4c9d6f1f274860d0a93 | [
"MIT"
] | permissive | ernestyalumni/HrdwCCppCUDA | 61f123359fb585f279a32a19ba64dfdb60a4f66f | ad067fd4e605c230ea87bdc36cc38341e681a1e0 | refs/heads/master | 2023-07-21T06:00:51.881770 | 2023-04-26T13:58:57 | 2023-04-26T13:58:57 | 109,069,731 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,032 | cpp | #include "DataStructures/Trees/SuffixTrie.h"
#include <boost/test/unit_test.hpp>
using namespace DataStructures::Trees::Tries::SuffixTries;
BOOST_AUTO_TEST_SUITE(DataStructures)
BOOST_AUTO_TEST_SUITE(Trees)
BOOST_AUTO_TEST_SUITE(Tries)
BOOST_AUTO_TEST_SUITE(SuffixTrie_tests)
BOOST_AUTO_TEST_SUITE(ExpertIO_tests)
... | [
"ernestyalumni@gmail.com"
] | ernestyalumni@gmail.com |
65c05019b2ef2a8c16c944fe535336989506409f | 63876d01ccee25cec402431e02f0f24f06b4b3a4 | /ch01_getting_started/exe/ex_01_04.cc | d2348704d43073e63e495c59e0cdac557dd26389 | [] | no_license | christyjohn/cpp_primer | af6f89d06f5048e05d703cf7cc10ffc98c362ac0 | f3352520fde9bf3094a48653e9513964ee100cb5 | refs/heads/master | 2021-04-21T11:46:57.263207 | 2020-03-31T14:06:15 | 2020-03-31T14:06:15 | 249,777,134 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 257 | cc | #include <iostream>
int main()
{
int v1 = 0, v2 = 0;
std::cout << "Enter two numbers" << std::endl;
std::cin >> v1 >> v2;
std::cout << "The produt of " << v1 << " and " << v2
<< " is " << v1 * v2 << std::endl;
return 0;
} | [
"christyjohn.crz@gmail.com"
] | christyjohn.crz@gmail.com |
d50d2f7b3779570cb4bff481bf6ed0a83808f780 | 47c3da6a94aa6039bd9cccf30a5424843c955eb0 | /Ones.cpp | 360c492111a010fee678979531fd904f1dc85da4 | [] | no_license | colinmrees/PE129 | 6eccf42b4de5657d9d39bb62c3094c9264249932 | e4e10c18f936c2ae1b018f1ab46b7c51268774e7 | refs/heads/master | 2021-05-05T03:11:18.111547 | 2018-02-01T07:29:12 | 2018-02-01T07:29:12 | 119,791,134 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,848 | cpp | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
#define lint __uint128_t
int intlog2 ( lint val) {
if (val == 0)
return 0;
if (val == 1)
return 0;
int ret = 0;
while (val > 1) {
val >>= 1;
ret++;
}
r... | [
"cmrees@gmail.com"
] | cmrees@gmail.com |
18d354cb289310595a7e9c9071b21d9cf6b82f2e | cd64cca3d9e72e4ef0273e32b0f2d852ddabdadf | /ElementAppearingMoreThan25PercentInSortedArray/ElementAppearingMoreThan25PercentInSortedArray/main.cpp | 84e0426b89d0663fc3df23996c1bb53a365d99ed | [] | no_license | stereotype13/LeetCodePractice | 48f4471a5e0b4d890ac31760f399f91173e197d8 | 1151084f16485c1ac0d5fadd6b533c0fb350a50b | refs/heads/master | 2020-11-25T03:34:57.825558 | 2020-03-09T21:33:02 | 2020-03-09T21:33:02 | 228,477,225 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,202 | cpp | /*
Given an integer array sorted in non-decreasing order, there is exactly one integer in the array that occurs more than 25% of the time.
Return that integer.
Example 1:
Input: arr = [1,2,2,6,6,6,6,7,10]
Output: 6
Constraints:
1 <= arr.length <= 10^4
0 <= arr[i] <= 10^5
*/
#include <iostream>
#include <vec... | [
"rhodel3@gatech.edu"
] | rhodel3@gatech.edu |
55bc2f3ec4af350954b06b24a9924ea6de4ffd84 | e0387cf8f45d3e2b7ea3788b299f195a621708a8 | /Source/Sable/Core/Bank/Library.cpp | be2c984cd6513b36a15b555f60daa2836ffd85f5 | [] | no_license | ClementVidal/sable.sable | eea0e822d90739269e35bed20805a2789b5fbc81 | 0ec2cd03867a4673472c1bc7b071a3f16b55fb1b | refs/heads/master | 2021-01-13T01:28:54.070144 | 2013-10-15T15:21:49 | 2013-10-15T15:21:49 | 39,085,785 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,859 | cpp | #include <Sable\Core\Bank\Library.h>
IMPLEMENT_MANAGED_CLASS1( Sable, CBankLibrary, CPersistentArchive )
using namespace Sable;
CBankLibrary::CBankLibrary( )
{
m_NextFreeId = 0;
m_CurrentBank = NULL;
m_IsStoring = FALSE;
}
CBankLibrary::~CBankLibrary()
{
}
Int64 CBankLibrary::GetIDFromObject(... | [
"clement.vidal@lam.fr"
] | clement.vidal@lam.fr |
92eb660652ef629ec7b1172c832e03a55f013971 | 45fc787fe73d9a64b6757da1abfa1237acfa34de | /arduino/illuminate_led/illuminate_led.ino | c454cb06facc0f29d81d20a5451983f588ef2b3c | [] | no_license | keiji/adk-handson | eff7b9e81d9d63dec663e70a4c1cbce080f20832 | b701ae5c8ed0719302605ae47330751393a49a1d | refs/heads/master | 2016-08-06T17:11:56.252620 | 2013-01-18T23:39:43 | 2013-01-18T23:41:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 245 | ino | #define PIN_LED 13
void setup() {
Serial.begin(115200);
pinMode(PIN_LED, OUTPUT);
}
int light = 0;
int p = 1;
void loop() {
light += p;
if (light == 0 || light == 255) {
p *= -1;
}
delay(10);
analogWrite(PIN_LED, light);
}
| [
"keiji_ariyama@c-lis.co.jp"
] | keiji_ariyama@c-lis.co.jp |
b68a1a8f30611453a584b845dfc47c5a5d0ada9e | 375b9785b16c0a64beb58aac0c2c605b2197d566 | /riscv-sim/src/PeriodicTimeout.cpp | 1ad629ca0b955041e7daef0e5a4662260aaa360f | [] | no_license | linwj130013/riscv-console | 51a67f6ee53f36ebe369ac5459aa931e297aef6f | 2110e388e34320f09a81a26891cbdeab12c548cc | refs/heads/main | 2023-02-18T09:48:08.845556 | 2021-01-19T19:02:29 | 2021-01-19T19:02:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,578 | cpp |
#include "PeriodicTimeout.h"
#include <cstdint>
/*
int CTimeout::SecondsUntilDeadline(struct timeval deadline){
struct timeval CurrentTime;
gettimeofday(&CurrentTime, nullptr);
return ((deadline.tv_sec * 1000 + deadline.tv_usec / 1000) - (CurrentTime.tv_sec * 1000 + CurrentTime.tv_usec / 1000)) /... | [
"cjnitta@gmail.com"
] | cjnitta@gmail.com |
5c01091bfc37af24ad98fcbc16ce8c24cb6e895c | a5051d65ab1eeec604fcb565742eb8837077439d | /off/把数组排成最小的数.cpp | 2b9dc9ac5197eeb715d298aed94aab17497675c0 | [] | no_license | Aspiration1314/Off | 81b3d02fa37bfb28321604f4f22a412816a42884 | 39705aed537e95520e7c2b59e4d6e3dd54d8e010 | refs/heads/master | 2020-04-30T02:26:00.849937 | 2019-03-19T16:56:59 | 2019-03-19T16:56:59 | 176,559,243 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 727 | cpp | /*思路:通过字符串解决大数问题,然后通过自定义的字符串比较规则,对字符串排序*/
class Solution {
public:
string PrintMinNumber(vector<int> numbers) {
if (numbers.size()<1)
return string();
string result;
vector<string> numberString;
for (int i = 0; i<numbers.size(); i++)
{
stringstream ss;
ss << numbers[i];
string s = ss.str();
n... | [
"1114544658@qq.com"
] | 1114544658@qq.com |
89b1e9f84bbbeee65c0d182132d672fabd94f080 | ad2bf55f50be16c3e2bdd3e49fef5f570224f371 | /Basic/Mang/Mang 1 chieu/300. Tim phan tu lon nhat va nho nhat.cpp | 5fda716af0cf9de5767d25a2af4c7ecd51cad8f1 | [] | no_license | GibOreh/CodeC | 31f1b79b6f5c741fecc0031f508b7b96eafc1844 | b45fd8ae9ae6e720c9c5dfc07c23c52f2f85c5d5 | refs/heads/master | 2022-11-24T09:55:50.111087 | 2020-08-02T05:54:31 | 2020-08-02T05:54:31 | 284,399,863 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 367 | cpp | #include <stdio.h>
void in(int x[],int n){
for(int i=0 ; i<n ; i++){
scanf("%d",&x[i]);
}
}
void check(int x[],int n){
int max=x[0],min=x[0];
for(int i=0 ; i<n ; i++){
if(max < x[i])
max = x[i];
if(min > x[i])
min = x[i];
}
printf("%d ",max);
printf("%d",min);
}
int main(){
int x[20],n;
scanf("... | [
"vuonghung2308@gmail.com"
] | vuonghung2308@gmail.com |
4d38f056a8b3a3d7a3c2f21e593e1314449967b4 | 1b7616e325dbf6c2f591b34a35246d37c078dbbf | /scanner.cpp | 9f9df36eb6beb7267cb813667bd1813570ab541f | [] | no_license | SefikMehmedovic/CS4280-P4 | cd0fd7773d2ac0e5afe17a77e5e1a1e8dfff3d44 | 2c16ad1b48e7a0045468c64861c2caf3fd25de1d | refs/heads/master | 2020-04-13T01:10:33.878061 | 2018-12-23T06:05:50 | 2018-12-23T06:05:50 | 162,866,429 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,483 | cpp | //scanner.cpp
#include <string>
#include <cctype>
#include <cstddef>
#include <iostream>
#include <cstdlib>
#include "scanner.h"
#include "token.h"
using namespace std;
//From token.h
int token_index;
int current_index;
int line_index;
vector <string> file_string;
static int comment_flag;
//function to read i... | [
"sefikm10@gmail.com"
] | sefikm10@gmail.com |
b44763de55dad5d2d2465116f1de48f19f19bdb9 | b9e46960a43d2a735f9170b97852d097c743f142 | /src/helpers.cc | d97cb2188decca7cb45a27a1fae050c46e616f88 | [
"MIT"
] | permissive | tunamako/cs426-shell | 9151ec70d298ccdb2ef2d3b10567457b6a0035f9 | b9b17bccc2fd4e9f2d4e03b2268cf7d7e1ebd2f6 | refs/heads/master | 2021-08-11T13:38:54.959523 | 2017-11-13T20:17:58 | 2017-11-13T20:17:58 | 108,306,895 | 0 | 0 | null | 2017-10-26T01:21:21 | 2017-10-25T18:06:40 | C++ | UTF-8 | C++ | false | false | 2,109 | cc | #include "helpers.h"
#include <sstream>
using namespace std;
void ErrorCheckExit(bool condition, string message) {
if(condition) {
perror(message.c_str());
exit(1);
}
}
void ErrorCheck(bool condition, string message) {
if(condition)
perror(message.c_str());
}
//Some info on stringstreams from
//https://stac... | [
"inedibledelicacies@gmail.com"
] | inedibledelicacies@gmail.com |
352ad87dc44b5689ecb0615591c65dfdb14cfca3 | 0d2deffa50a1596fbc5c4b04b7235932c0f6a695 | /src/qt/rpcconsole.cpp | f4be39dd95b27a8b75735b7296304c121b58a19a | [
"MIT"
] | permissive | cjcoingit/cjcoingitrepo | 031cf3f3abdb07cfcfc5aa5d6d93916ff58e2b1a | edbf67c2bfd9050862334f32f9a1922c684857b2 | refs/heads/master | 2021-01-18T23:34:52.463067 | 2017-04-10T18:28:41 | 2017-04-10T18:28:41 | 87,119,204 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 14,607 | cpp | #include "rpcconsole.h"
#include "ui_rpcconsole.h"
#include "clientmodel.h"
#include "bitcoinrpc.h"
#include "guiutil.h"
#include <QTime>
#include <QTimer>
#include <QThread>
#include <QTextEdit>
#include <QKeyEvent>
#include <QUrl>
#include <QScrollBar>
#include <openssl/crypto.h>
// TODO: make it possible to filt... | [
"cryptojournalcoin@gmail.com"
] | cryptojournalcoin@gmail.com |
457e5a00286a2e33c212329c3cc4c2a6d3666f28 | bf46ead26b9550c92c1f4cb81ff0bb553471ce8f | /src/test/scriptnum_tests.cpp | cd3279003fd7488a3794f396f9d5a73dfcb5f87f | [
"MIT"
] | permissive | HondaisCoin/hondaiscoinmn | afeadfa0a34c6b5aafb2f5f89f7d1b36a77a2ee3 | 5b159940ee12ff8886ef21498dfddffb4ac76b1a | refs/heads/master | 2020-08-29T03:44:24.444315 | 2019-10-27T20:59:52 | 2019-10-27T20:59:52 | 217,913,441 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,466 | cpp | // Copyright (c) 2012-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "scriptnum10.h"
#include "script/script.h"
#include "test/test_hondaiscoinmn.h"
#include <boost/test/unit_test.hpp>... | [
"you@example.com"
] | you@example.com |
23ae1f3f7df14117187ddb2546c3a6fbe4ce3c23 | 3329ff94ba44f5a575b5398985a33aa948b5f944 | /0.00705/uniform/lagrangian/sprayCloud/sprayCloudOutputProperties | 516a5217550fbdbe61cee3dccd105f34ada42faf | [] | no_license | zlsherl/SKPS_simple | 38cfac333dd65ed752e34c9f00b555d4255d2efc | 0de13926915af0c7eaf1904fe57a8149a7741ba1 | refs/heads/main | 2023-05-26T20:03:42.391527 | 2021-06-12T10:24:09 | 2021-06-12T10:24:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,509 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2012 |
... | [
"krystek.pietrzak@gmail.com"
] | krystek.pietrzak@gmail.com | |
a275a727e51948d50ec6e498e17f1d3c6ff32e27 | adfa317ce1bae691174309d7b361950b07ba5ca8 | /src/ParabolicBoxDomainPdeSystemModifier.hpp | c5936c4cc42c0830729301123c5f50fca2692740 | [] | no_license | CJohnsonMathSys/ChemChaste | 34a121a14a0e62dbb61e735a0c9bb5581652c403 | ca9308628948baf758b7a864b0269c6e6bf29325 | refs/heads/main | 2023-02-22T20:21:50.778557 | 2021-01-27T12:34:00 | 2021-01-27T12:34:00 | 307,725,542 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,982 | hpp | #ifndef PARABOLICBOXDOMAINPDESYSTEMMODIFIER_HPP_
#define PARABOLICBOXDOMAINPDESYSTEMMODIFIER_HPP_
#include "InhomogenousParabolicPdeForCoupledOdeSystem_templated.hpp"
#include "AbstractBoxDomainPdeSystemModifier.hpp"
#include "AbstractPdeSystemModifier.hpp"
#include "BoundaryConditionsContainer.hpp"
#include "Abstract... | [
"c.johnson.6@warwick.ac.uk"
] | c.johnson.6@warwick.ac.uk |
49807796d63581e6a2d97fe635a8cf72098b75f6 | e4f59a3b3a7eda4d1bc00050d76fc8bce1cf093f | /code/Spikes/timer_example_alex/timer_example_alex.ino | 663a0dae2b0fd6f1b643a82a1e88d137e1e45ea8 | [] | no_license | AlexanderNahr/arduino_team_PMES_WS2016 | 03ed37906254cae01adef7d83d787368806a837c | 691d8cb0f4df41bc46ac00b6936949804e428fb7 | refs/heads/master | 2021-01-12T09:55:09.534469 | 2017-03-10T22:39:41 | 2017-03-10T22:39:41 | 76,298,477 | 2 | 3 | null | 2017-03-11T11:53:47 | 2016-12-12T21:48:56 | C++ | UTF-8 | C++ | false | false | 12,311 | ino | /********************************************NOTE********************************************************************
* Statt Pin 13 habe ich pin A2 zur Tonausgabe verwendet.
********************************************************************************************************************/
/************************... | [
"alexnahr@gmail.com"
] | alexnahr@gmail.com |
81b50e9261d1acbc2d278add0930fe56fcfd8a49 | d00270bfa470bd6b040f5001b745a2d57a526ab5 | /Hacker Rank/sock-merchant.cpp | ccd91f9136340043a1f17d42c8f2db02736be61a | [] | no_license | williamchanrico/competitive-programming | fcec67b3c7c338ebd250bdfc33627a26afe44ab4 | 6290e9f7ebd5063b0341c8068a321d2044a2ad63 | refs/heads/master | 2021-01-22T23:15:32.561571 | 2020-10-17T12:16:44 | 2020-10-17T12:16:44 | 85,616,873 | 2 | 4 | null | 2019-08-11T14:49:18 | 2017-03-20T19:20:11 | C++ | UTF-8 | C++ | false | false | 409 | cpp | #include <algorithm>
#include <cstdio>
#include <map>
int main()
{
int N;
scanf("%d", &N);
int arr[110];
std::map<int, int> m;
for (int a = 0; a < N; a++) {
scanf("%d", &arr[a]);
++m[arr[a]];
}
std::sort(arr, arr + N);
int ans = 0;
for (auto it = m.begin(); it !=... | [
"williamchanrico@gmail.com"
] | williamchanrico@gmail.com |
894e4508ed06492948dfefee20540c3cc4ec40e3 | 1afdb4bce52b84572782b9a33a52bbd4000d784e | /learn/STL/iterator_bidirectional.cpp | 53be426731d7c7f2ea93c74b36a779a5ce53039e | [] | no_license | manishsurolia/C-Plus-Plus | 4eaeffaa9d020efdef5fe1c423a2a482ba1a9699 | 7991d9a0d911b376fc984cd60d96c9b869301d1d | refs/heads/main | 2023-04-14T19:36:31.259053 | 2021-05-06T13:06:55 | 2021-05-06T13:06:55 | 363,832,487 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 952 | cpp | /*
* The second kind of iterator is bidirectional.
*
* We can increment it, decrement it, but we can't add a value to the iterator.
*
* itr++ // allowed
* itr-- //allowed
*
* itr = itr + 5; // Not allowed.
* itr = itr - 5; // Not allowed.
* if (itr1 < itr2) // Not allowed.
*
* Below are the containers, ... | [
"manishsurolia@gmail.com"
] | manishsurolia@gmail.com |
cac5e4e7183bc95963e3b43c3e6dbdb21dd19aa8 | 8ac157eda8e6fe4dab420e47da32300e63c62489 | /Toph/Jenia's Homework.cpp | d177875acb3c029ef7051cb93ecd60621d2290ad | [] | no_license | mdskrumi/Online-Judge-Problem-Solutions | f11cc0e577437012c7da7f2ab376fa01638f95f5 | 453e5d5c2464a63bd919fe95bb16f4cc4a1c2513 | refs/heads/master | 2020-09-28T05:29:00.453502 | 2020-08-13T16:00:12 | 2020-08-13T16:00:12 | 226,700,158 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,878 | cpp | #include<bits/stdc++.h>
#include<ctype.h>
#include<string.h>
#include<stdio.h>
#define TAKING freopen("input.txt" , "r" , stdin);
#define MAKING freopen("output.txt","w" , stdout);
#define ll long long
#define sf scanf
#defin... | [
"mdskrumi@gmail.com"
] | mdskrumi@gmail.com |
7d36990c18124d01302e0327c973e846a40bff0f | 792fbf91f3da85c65db3b99a3f881e0686a19a7e | /IMApp/IMApp/TestApi.cpp | 6dc08cae3c0667dec2aae5738c271dce019aa8c7 | [] | no_license | wannianhong/txWindowsIMDemo | 17e652c5384e70a69f2ced747495ee946ce4416c | e9d70d1194ffe0ca747a729d3585d8b3108db24f | refs/heads/master | 2020-11-29T06:02:42.080324 | 2019-12-25T04:35:20 | 2019-12-25T04:35:20 | 230,039,382 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,646 | cpp | #include "TestApi.h"
#include "json.h"
#include "IMWnd.h"
#include <time.h>
//批量发送
void Test_TIMMsgBatchSend()
{
//构造消息文本元素
Json::Value json_value_elem;
json_value_elem[kTIMElemType] = TIMElemType::kTIMElem_Text;
json_value_elem[kTIMTextElemContent] = "this is batch send msgs";
//构造消息
Json::Valu... | [
"97548471@qq.com"
] | 97548471@qq.com |
b5b2092bc5acebcfc8ca728bd5eb339655720b6a | a0ebf3f7218a7599ae603ad42b5810b85502b3f8 | /DataStructures.Tests/polynomial_test.cpp | 5b314821de73dafd926b2298727e601f8d860309 | [] | no_license | drussell33/Data-Structures-With-Tests | 381cdc2ececd2d210b3fd8de9d349e707ab4819b | 570c8ff25d979dc16910a1652b4658dac8931d67 | refs/heads/main | 2023-08-30T02:47:21.426698 | 2021-11-10T21:57:47 | 2021-11-10T21:57:47 | 426,788,191 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,161 | cpp | #include "pch.h"
#include "CppUnitTest.h"
#include "adt_exception.hpp"
#include "crt_check_memory.hpp"
#include "polynomial.hpp"
using namespace data_structures;
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace data_structures_tests
{
TEST_CLASS(T14_Polynomial_Test)
{
public:
TEST_METH... | [
"drussell19@wou.edu"
] | drussell19@wou.edu |
c197ac5b165f9b326c97c46212509d191f83b1aa | a164f47a067c044161360e7f3d29e6ce42a5c557 | /inc/MusicLoader.hpp | 38870cfad46489a24dd107ababf57a639b49d6fc | [
"Apache-2.0"
] | permissive | Xwilarg/RhythmParadise | d437c33e1417d12b616e163516a375e37b466ae0 | a29558a47127e1ad29b3fc2d7fff0df6f844fbb4 | refs/heads/master | 2020-09-12T15:02:39.827345 | 2019-12-01T00:55:30 | 2019-12-01T00:55:30 | 222,460,585 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 907 | hpp | #pragma once
#ifdef _WIN32
#pragma comment(lib, "irrKlang.lib")
#endif
# include <irrKlang.h>
# include <string>
namespace rhythm
{
class MusicLoader final
{
public:
MusicLoader() = delete;
~MusicLoader() noexcept;
static bool LoadMusic(const std::string& path) noexcept;
s... | [
"xwilarg@yahoo.fr"
] | xwilarg@yahoo.fr |
9534275d39d6da0c9002f20fb3a99d0296301b82 | 7ed5234fa370e40aea99b6ea1e547500cf771780 | /EasyHLS_RTSP/main.cpp | f64d5446e421eb7e2a76ec6e5c8ac853749af8ef | [] | no_license | ntvis/EasyHLS | 63979e5b911eaef70639968dac01fe5aa5507ee2 | 65c9b17c8badc831eb645c893d4c62e22c4711fa | refs/heads/master | 2021-01-15T19:35:13.687040 | 2015-08-12T06:46:42 | 2015-08-12T06:46:42 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,056 | cpp | /*
Copyright (c) 2013-2014 EasyDarwin.ORG. All rights reserved.
Github: https://github.com/EasyDarwin
WEChat: EasyDarwin
Website: http://www.EasyDarwin.org
*/
#define _CRTDBG_MAP_ALLOC
#include <stdio.h>
#include "EasyHLSAPI.h"
#include "EasyRTSPClientAPI.h"
#include <windows.h>
#define RTSPURL "rtsp:... | [
"mysunpany@gmail.com"
] | mysunpany@gmail.com |
b820dde45cf4236704686c4f45893c5d433ead37 | c7a771dc8763f5f8803385ec0830d2fe484fcf88 | /utility/MsgQueue.hpp | 198aba34af7a9d37ba9e07e8d2b024f6e0c74f41 | [] | no_license | aralehuan/QtDemo | 1af39465be372e9d7f835ec6fd3a80ab2250d8ad | 79a619661cb37546717e39989e693940e1a2fe25 | refs/heads/master | 2021-05-26T00:58:29.152006 | 2020-06-11T10:44:41 | 2020-06-11T10:44:41 | 253,991,323 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,719 | hpp | #ifndef _MSG_QUEUE_H_
#define _MSG_QUEUE_H_
#include "concurrentqueue.h"
#define MSG_MAX_LEN 65535
/*
消息包队列(先进先出)
支持多线程
lixiaoming 2020-02-04
*/
class MsgQueue
{
public:
struct Item
{
int type;
uint16_t len;
void* data = nullptr;
size_t offset;
~Item()
{
if (data)
free(data);
... | [
"411635116@qq.com"
] | 411635116@qq.com |
81b0dae78ca5454b0c051ff1c2b295c40d047885 | b22f93e45064cf15aa25000af2990f112af48421 | /src/qt/test/uritests.cpp | 2b8b8046b025f5b78b7b93ad9e47c180655b2777 | [
"MIT"
] | permissive | regtable/netcoin-2 | 5e9056fd3fc27654e6632df1cdf5f7343e1db8b9 | 026f272d174e53df9276ad7029945969edbd6afe | refs/heads/master | 2020-03-08T01:06:52.075379 | 2017-12-29T10:03:13 | 2017-12-29T10:03:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,842 | cpp | #include "uritests.h"
#include "../guiutil.h"
#include "../walletmodel.h"
#include <QUrl>
void URITests::uriTests()
{
SendCoinsRecipient rv;
QUrl uri;
uri.setUrl(QString("netcoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?req-dontexist="));
QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv));
uri.setUrl(QString... | [
"kosextertioner@yahoo.com"
] | kosextertioner@yahoo.com |
e3f483a5ce60eee11b217794213e1088096612a5 | 30dd9ff200f97b525b069577471d23387b23970b | /src/sensing/driver/velodyne/velodyne_laserscan/include/velodyne_laserscan/VelodyneLaserScan.h | 32280b2b1dc1b1da790257676d0a1267877a587e | [
"BSD-3-Clause"
] | permissive | ColleyLi/AutowareArchitectureProposal | cd544ef913e3c49852d385883c3e3ee5b518b1b8 | 80ac2a8823d342e5a1e34703dbde27e8e9b5cd98 | refs/heads/master | 2022-04-18T01:41:53.649137 | 2020-04-21T12:18:58 | 2020-04-21T12:18:58 | 257,659,506 | 2 | 0 | Apache-2.0 | 2020-04-21T17:03:50 | 2020-04-21T17:03:49 | null | UTF-8 | C++ | false | false | 2,573 | h | // Copyright (C) 2018, 2019 Kevin Hallenbeck, Joshua Whitley
// All rights reserved.
//
// Software License Agreement (BSD License 2.0)
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// * Redistributions of s... | [
"yukky.saito@gmail.com"
] | yukky.saito@gmail.com |
5c809e4f70337c289cd127fcc38f16ff89e22cde | 2005da53aca39bddd2514ba0d75a8b5e65415391 | /Effects/13_pacman.h | 9902f933ded1c2befbd5c6df914036fd4af0e7e6 | [] | no_license | Dovgalyuk/LedTable_emulator | 9612b7595dd636ddf0627e19177b6a30ba97045e | 261ac1b4c22ab9f4b70d428329c6a3b8988b6ac8 | refs/heads/master | 2020-12-02T03:27:44.264454 | 2019-12-30T13:08:46 | 2019-12-30T13:08:46 | 230,872,319 | 0 | 0 | null | 2019-12-30T07:48:07 | 2019-12-30T07:48:07 | null | UTF-8 | C++ | false | false | 3,260 | h | #pragma once
#include "Effects/effect.h"
#define PACMAN_W 10
#define PACMAN_H 10
static const uint32_t pacman1[PACMAN_W*PACMAN_H] PROGMEM = {
0x000000, 0x000000, 0x000000, 0xffff00, 0xffff00, 0xffff00, 0xffff00, 0x000000, 0x000000, 0x000000,
0x000000, 0xffff00, 0xffff00, 0xffff00, 0xffff00, 0xffff00, 0xffff0... | [
"pavel.dovgaluk@gmail.com"
] | pavel.dovgaluk@gmail.com |
e31be0253ab44b174f872e3a16544589c43267d5 | 529ffc32bdfb6779c36fac274096db5855c98ef7 | /binary search tree/find no of rotation by bs method.cpp | 8c005bcb164bf8e5ab9a46b11b60df1ae82c399f | [] | no_license | rajukumar2152/Dtastructure-Algorithm | c2bc7442ff36d5a9ca1d5298f8d1b1acc178f8b2 | 545a28aeba3be3495ec73b9c8876997b8ccb313d | refs/heads/master | 2023-07-08T15:39:12.168944 | 2021-08-05T19:59:41 | 2021-08-05T19:59:41 | 373,874,308 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 623 | cpp |
///raju kumar sahi chak raha hain
#include<iostream>
using namespace std;
int k ;
void binrysearch(int a[], int s, int e , int num ){
int mid = s+(e-s)/2;
if (a[mid]==num){
cout << "NUMBER IS FOUND at index ->";
cout<<mid<<endl ;
int k=mid;
cout<<k<<"kbs ";
return... | [
"rajukumar2152chd@gmail.com"
] | rajukumar2152chd@gmail.com |
af4a4903fa6f9fadc6fcf0c8e72b22f08aeea755 | 45ce394ca1fc18194f7ed9dc1d3a7bfcb5d7fb99 | /Codeforces/818A.cpp | ddc230ffd71c90511745e4de535e077390780ae2 | [] | no_license | lethanhtam1604/MyAPCodes | 4bd34c19538ebd7271dde9b9cd6100cad7893e77 | d2528cda1ef8051839067a0bc05294bc34b357ea | refs/heads/master | 2021-01-23T16:26:06.383769 | 2018-02-10T12:46:10 | 2018-02-10T12:46:10 | 93,297,575 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 448 | cpp | #include <iostream>
#include <stdio.h>
#include <vector>
#include <math.h>
#include <unordered_map>
#include <string>
#include <algorithm>
using namespace std;
int main() {
#ifndef ONLINE_JUDGE
freopen("/Users/TamLe/Documents/Input.txt", "rt", stdin);
#endif
long long n,k;
scanf("%I64d %I64d", &n, &k);
... | [
"thanhtam.le@citynow.vn"
] | thanhtam.le@citynow.vn |
bf34390ec108c2ee0e4d6636f797992525b40991 | 770a91809c9859913f844f941d098b39635922fa | /sensors/SensorPca9685Led.h | a094a09f2404a74d39ec2fa23e659c8e0d7d66ed | [] | no_license | janjurca/NodeManager | 3439c952545f07c28a384980f1a549c0792a049d | 86364487f2dda1e3deddaa223c96c41d4655fd4e | refs/heads/master | 2023-08-04T11:06:18.024742 | 2021-09-13T19:48:48 | 2021-09-13T19:48:48 | 388,770,548 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,016 | h | /*
* The MySensors Arduino library handles the wireless radio link and protocol
* between your home built sensors/actuators and HA controller of choice.
* The sensors forms a self healing radio network with optional repeaters. Each
* repeater and gateway builds a routing tables in EEPROM which keeps track of the
* netw... | [
"noreply@github.com"
] | janjurca.noreply@github.com |
49222ff90b271d830a72611c852dab8f9e8c412d | 6260bd86db2e7a4ca329f0fb00aa57fc2720316d | /Pattern_C.cpp | 2040693b3b954c02d76b8c91d93f784678430f0b | [] | no_license | Raushankumar143/A-to-Z-Pattren | 58a5f495250cd24932c6ef729665b95c93b053a7 | 50c01f9e25f3fc42e9d9d171986c3cbcc953e730 | refs/heads/master | 2022-11-24T07:28:27.667252 | 2020-07-30T08:54:04 | 2020-07-30T08:54:04 | 283,718,068 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 381 | cpp | #include<iostream>
using namespace std;
int main()
{
int n;
cout<<"Enter size:";
cin>>n;
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
if(i==0||i==n-1||j==0)
{
cout<<"*";
}else{
cout<<" ";
... | [
"noreply@github.com"
] | Raushankumar143.noreply@github.com |
c3c1229f72a9077abb3e285c4d049b3a2260ee98 | 0ee479c186a0b7b025d8847cb67235bd1b980ec9 | /Pi_semaforo_rtos/Pi_semaforo_rtos.ino | afaaba1aaf5b94dfb2a62887cbea82fbe6407bf1 | [] | no_license | gervasiogesse/Projeto-Integrador | 2c1a09d2079feca353b9f52901ea4ab7a1abbe8e | 186b6f4c98817e5511022e43f3e7d4de297d7c09 | refs/heads/master | 2020-09-14T06:38:29.520197 | 2019-12-18T01:39:03 | 2019-12-18T01:39:03 | 223,052,499 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,140 | ino | /*
* Autores: Gervasio Gesse Junior
* Iris menezes Barbosa
* Titulo: Projeto Integrador 6 bimestre Univesp Polo Jandira
* Data: 23 de Novembro de 2019
* Resumo: Semáforo com intervalo de tempo variável com
* sinalização sonora para ficlitar a travessia deficientes
* visuais e pessoas com mobilidade r... | [
"gervasio.81@gmail.com"
] | gervasio.81@gmail.com |
ed7bc8e083c12884fded08dd6edf49f934cfca2a | aa049fc9c45ab0ee44a4f68ce456972fac36705f | /client/TxClient/withdraw.h | ad9aaab93dc28b5e8715752c2ad2626568ea6e71 | [] | no_license | yudi-matsuzake/tx | 3fca86912594a0a339d009ca561c93b9df6daef9 | 5cf42f096bff1ed228ab93011e0dc329601d708a | refs/heads/master | 2021-01-21T21:14:39.476972 | 2017-06-07T16:53:13 | 2017-06-07T16:53:13 | 92,320,591 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 400 | h | #ifndef WITHDRAW_H
#define WITHDRAW_H
#include <QString>
#include <QJsonObject>
class Withdraw
{
public:
Withdraw();
Withdraw(const int& account_id, const double& value, const QString& withdraw_method);
bool write(QJsonObject& json) const;
bool read(QJsonObject& json);
private:
static const QString JSON_TYPE;
in... | [
"paulor@alunos.utfpr.edu.br"
] | paulor@alunos.utfpr.edu.br |
e691de82570ec69293a0f4ccec8d311a9c5051d3 | fe2362eda423bb3574b651c21ebacbd6a1a9ac2a | /VTK-7.1.1/Views/Core/vtkDataRepresentation.cxx | bc3746092f4b461b34d9d4b4b89a62bb85fa672f | [
"BSD-3-Clause"
] | permissive | likewatchk/python-pcl | 1c09c6b3e9de0acbe2f88ac36a858fe4b27cfaaf | 2a66797719f1b5af7d6a0d0893f697b3786db461 | refs/heads/master | 2023-01-04T06:17:19.652585 | 2020-10-15T21:26:58 | 2020-10-15T21:26:58 | 262,235,188 | 0 | 0 | NOASSERTION | 2020-05-08T05:29:02 | 2020-05-08T05:29:01 | null | UTF-8 | C++ | false | false | 13,677 | cxx | /*=========================================================================
Program: Visualization Toolkit
Module: vtkDataRepresentation.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This sof... | [
"likewatchk@gmail.com"
] | likewatchk@gmail.com |
bca4be2272a4e895b122e7a049507646263ab59a | da659b9c71a3c89a71f1639669da93e315edb198 | /Compactador-Huffman/comdeshuff/tcell.h | 98f4cf84a77116aec493647d2ec346b18d4c6a41 | [] | no_license | amg1127/PROGRAMAS-DA-FACULDADE | 941b732f1abc1c2b8859dd2b8f1ce5e580183153 | 48efcdb52e6a165d6980406909b3501212c0d2c4 | refs/heads/master | 2020-05-17T19:56:39.930515 | 2020-02-17T11:55:04 | 2020-02-17T11:55:04 | 183,930,907 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,674 | h | class TCell {
private:
int _id;
int _weight;
char _character;
TCell *_parent;
TCell *_son0;
TCell *_son1;
bool _hasSons;
std::string _pathToSon (TCell *);
template <typename SWPTYPE>
inline void swapvar (SWPTYPE &v1, SWPTYPE &v2) { ... | [
"amg1127@5465fe1f-e9f4-4a51-a9b0-42098c041c11"
] | amg1127@5465fe1f-e9f4-4a51-a9b0-42098c041c11 |
f466f3f46c747c7cf2cc4a2a55c61133767947a6 | 719bcf0ec862bed0416c6a4d78ef03f1191f608b | /01.计算机基础知识/05.设计模式/04.行为型模式/08.访问者模式/c++/ComputerPart.h | ef0c52d40d0aaf80ad7b529c40f8d0cfc154a8bd | [] | no_license | cleveryuan777/C-background-development-interview-experience | d16e73efd08d020e3db2b7c3f718394b1806f2b3 | 48c1f22ea431a36288b73bc53e8573f828eed88c | refs/heads/main | 2023-06-14T05:04:55.013084 | 2021-04-04T14:19:56 | 2021-04-04T14:19:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 185 | h | #pragma once
class ComputerPartVisitor;
class ComputerPart
{
public:
ComputerPart();
virtual void accept(ComputerPartVisitor* computerPartVisitor) = 0;
virtual ~ComputerPart();
};
| [
"jackster@163.com"
] | jackster@163.com |
6b051b551d2e3aa7abe399710d0706d2748df7eb | 4cd434f48bf76da03503130cb3e9d8611a29a659 | /iTrace/CinematicCamera.cpp | ef9ee7b22502c3b7c107db646b011d6f7f4053c1 | [
"MIT"
] | permissive | Ruixel/iTrace | 39d593856f89664d9c42e570369af146e2098713 | 07e31bb60acba03bc6523986233f16191c502682 | refs/heads/master | 2022-12-22T13:44:10.535266 | 2020-10-01T22:43:41 | 2020-10-01T22:43:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,035 | cpp | #include "CinematicCamera.h"
#include <unordered_map>
#include "CommandPusher.h"
#include <iostream>
namespace iTrace {
namespace Rendering {
std::unordered_map<std::string, KeyFrame> KeyFrames;
std::unordered_map<std::string, Animation> Animations;
Animation* PlayingAnimation = nullptr;
std::vector<s... | [
"420iblazeitcopswontfindme@gmail.com"
] | 420iblazeitcopswontfindme@gmail.com |
6c19f429bb84e5bfc1f4e2d9e989c38712c7ec90 | dfb83f9e1d2a64e719c3d61004b25650f372f5a2 | /src/compiler/simplified-lowering.h | 19b98109671f18d0c6f7b0c0ae8b4237d24df1df | [] | no_license | kingland/v8-MinGW | 8ae0a89ebe9ad022bd88612f7e38398cfd50287e | 83c03915b0005faf60a517b7fe1938c08dd44d18 | refs/heads/master | 2021-01-10T08:27:14.667611 | 2015-10-01T04:17:59 | 2015-10-01T04:17:59 | 43,477,682 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,392 | h | // Copyright 2014 the V8 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.
#ifndef V8_COMPILER_SIMPLIFIED_LOWERING_H_
#define V8_COMPILER_SIMPLIFIED_LOWERING_H_
#include "compiler/graph-reducer.h"
#include "compiler/js-graph.h... | [
"sarayu.noo@gmail.com"
] | sarayu.noo@gmail.com |
c8979234267967df51c34d1f6320764989876a01 | 6054718314d0c98d8c8e8296e9f331fcb114ffae | /RenderToScreen.cpp | 3abe799f889dede59ddf38d1ea530685a8eeb8d6 | [
"MIT"
] | permissive | paleahn/ROIW_based-Raytracer | b00e21276f7a5aa496047fc801afaf006017d8d0 | 70499e2a4a0f1d12a4ca18909819026dbf2ac49e | refs/heads/master | 2022-04-23T18:52:23.846410 | 2020-04-25T16:21:55 | 2020-04-25T16:21:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,356 | cpp | #include "RenderToScreen.h"
#include "Logger.h"
#include <cstdint>
union color
{
struct
{
uint8_t b, g, r, a;
};
uint8_t data[4];
};
#pragma region WINDOW DISPLAY
//base code for window display provided Tommi Lipponen
#define WIN32_LEAN_AND_MEAN 1
#include <Windows.h>
#include <stdio.h>
... | [
"clepirelli@gmail.com"
] | clepirelli@gmail.com |
9914d119815417fe48f668f1b5ed2d527a44dd6c | c45ed46065d8b78dac0dd7df1c95b944f34d1033 | /TC-SRM-576-div1-256/xhk.cpp | 48d9ed3bf6e404793f85e3035da26df51d3081be | [] | no_license | yzq986/cntt2016-hw1 | ed65a6b7ad3dfe86a4ff01df05b8fc4b7329685e | 12e799467888a0b3c99ae117cce84e8842d92337 | refs/heads/master | 2021-01-17T11:27:32.270012 | 2017-01-26T03:23:22 | 2017-01-26T03:23:22 | 84,036,200 | 0 | 0 | null | 2017-03-06T06:04:12 | 2017-03-06T06:04:12 | null | UTF-8 | C++ | false | false | 3,388 | cpp | // BEGIN CUT HERE
// END CUT HERE
#line 5 "ArcadeManao.cpp"
#include<bits/stdc++.h>
using namespace std;
int n,m,sx,sy;
int a[110][110],fa[10010];
int id(int x,int y)
{return (x-1)*m+y;
}
int find(int i)
{return fa[i]==i?i:fa[i]=find(fa[i]);
}
class ArcadeManao
{ public:
int shortestLadder(vec... | [
"noreply@github.com"
] | yzq986.noreply@github.com |
c2e54c22d8ac1eacc6eb7b461133b6f1164c1580 | 95033e45e9abcc2316ed8c2cf4b7c5077beacd62 | /core/osd/ClockDevice.h | 04d51ce35ec2e758da5097d1827a39a2de27a8d3 | [] | no_license | zeromus/bliss32 | 5083ae05298962cf55d77396f1ad0a4a68e96e33 | 7a41f9d051c7e2ead21b4b1ed009935449b17d16 | refs/heads/master | 2016-09-01T18:02:18.309718 | 2015-06-17T22:12:06 | 2015-06-17T22:12:06 | 5,157,512 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 247 | h |
#ifndef CLOCKDEVICE_H
#define CLOCKDEVICE_H
#include "types.h"
#include "Device.h"
class ClockDevice : public Device
{
public:
virtual INT64 getTickFrequency() = 0;
virtual INT64 getTick() = 0;
};
#endif
| [
"zeromus@zeromus.org"
] | zeromus@zeromus.org |
19ac5e384467acbcc86d92914909e001e00a65ca | 40d5773ad01d383dc6f03b293859925e87711810 | /factory/factory2.h | a1e146939735716007e14edd9aec2121a49732ac | [] | no_license | luoyouchun/DesignPatten | 3bc2f0a89fc995b87b0d7369ccc5aee51c2efe0d | fc3f7e0756c5868dc100f908a6c75143cc8f1666 | refs/heads/master | 2020-04-17T10:18:12.047018 | 2019-01-31T09:15:46 | 2019-01-31T09:15:46 | 166,495,963 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,171 | h | #pragma once
#include <map>
#include <string>
#include <functional>
#include <memory>
template<typename P>
struct factory2
{
template<typename T>
struct register_t
{
register_t(const std::string& key)
{
factory2::get().map_.emplace(key, ®ister_t<T>::create);
}
inline static P* create... | [
"chinaluo_007@163.com"
] | chinaluo_007@163.com |
e72a2c65edf89f10ad353e538bcb233101f954e6 | d2dd6b45c6e6ac4fcc0f7aa34bc044615d3f42ce | /src/para/thread/thread_pool_test.cc | 7257a608d6c97c6b7868b92844b0bbd6dfa1229e | [
"MIT"
] | permissive | wzheng21/libpara | 50c92eed7f323d055871a7c30646c6bae21fcee7 | 25598bf4ba2407d4f9af50a2e9a49a6b5658fafe | refs/heads/main | 2023-06-05T04:06:49.149237 | 2021-06-19T00:30:26 | 2021-06-19T00:30:26 | 343,213,140 | 0 | 0 | MIT | 2021-06-19T00:30:27 | 2021-02-28T20:58:10 | C++ | UTF-8 | C++ | false | false | 527 | cc | // Copyright (c) 2021
// Authors: Weixiong (Victor) Zheng
// All rights reserved
//
// SPDX-License-Identifier: MIT
#include "para/thread/thread_pool.h"
#include "para/base/time.h"
#include "para/testing/testing.h"
#include "glog/logging.h"
namespace para {
TEST(SimpleThreadPool, Basic) {
SimpleThreadPool pool(2)... | [
"zwxne2010@gmail.com"
] | zwxne2010@gmail.com |
cc2b95e4cd0e3d00ce662e4723d3e07de8caa6f3 | 577491f76e130d0fc757f011834691c6aa635051 | /Sources/Devices/Instance.cpp | 2cb63e0471429ae04e8346e632af47ed0a6538fa | [
"MIT"
] | permissive | opencollective/Acid | e627b082046e0148aaf7e2a8667fdd22df34235b | 0e1ed9605c4cddb89f92c2daeaa70ec512ce23f3 | refs/heads/master | 2023-08-26T13:26:36.840191 | 2019-09-21T05:30:22 | 2019-09-21T05:30:22 | 210,002,966 | 0 | 1 | null | 2019-09-21T14:51:39 | 2019-09-21T14:51:38 | null | UTF-8 | C++ | false | false | 6,913 | cpp | #include "Instance.hpp"
#include "Graphics/Graphics.hpp"
#include "Window.hpp"
#if !defined(VK_EXT_DEBUG_UTILS_EXTENSION_NAME)
#define VK_EXT_DEBUG_UTILS_EXTENSION_NAME "VK_EXT_debug_utils"
#endif
namespace acid {
const std::vector<const char *> Instance::ValidationLayers = {"VK_LAYER_LUNARG_standard_validation"}; /... | [
"mattparks5855@gmail.com"
] | mattparks5855@gmail.com |
27596d2634f0d9efd956d0a48f022a7ceb563be5 | f6f0be9108ba516d0f49e009ffe525814c6f0c95 | /test/graph/checking_bipartiteness_online_test.cpp | 94b29046a79bb35626b011646ab44200615b5241 | [] | no_license | PauloMiranda98/Competitive-Programming-Notebook | fe07a318c50c147cc3939dfde9034fe3de5056d9 | 54af0a8dcefdeb5505538a3716855db62bcdc716 | refs/heads/master | 2023-08-02T04:36:52.830218 | 2023-07-31T00:21:04 | 2023-07-31T00:21:04 | 242,273,238 | 20 | 4 | null | 2021-07-08T19:21:44 | 2020-02-22T03:30:13 | C++ | UTF-8 | C++ | false | false | 130 | cpp | #include "../../code/graph/floyd_warshall.h"
void test(){
//No tests yet, then I'll add
}
int main() {
test();
return 0;
}
| [
"paulomirandamss12@gmail.com"
] | paulomirandamss12@gmail.com |
5605b06bcb526fea47c7520deb241382ef612c4c | a4c8533710e295ecf4726c618c1a02760d888613 | /02_Build/01_Compile/01_Tasking_4p3/ctc/include.stl/stl/_rope.h | 2313f7ebacb1b15989fa6433940d9c41d75eb3b3 | [] | no_license | miaozhendaoren/K2SAR_EMS | ee42a1918cf45fbbbb24b0c8a128951d14eeee67 | 787d17cfa2c9a3ef89743dce1778f0087de32254 | refs/heads/master | 2021-01-17T23:05:04.505435 | 2015-12-22T14:39:24 | 2015-12-22T14:39:24 | 49,954,845 | 1 | 0 | null | 2016-01-19T13:35:48 | 2016-01-19T13:35:48 | null | UTF-8 | C++ | false | false | 80,854 | h |
/*
*
* Copyright (c) 1996,1997
* Silicon Graphics Computer Systems, Inc.
*
* Copyright (c) 1997
* Moscow Center for SPARC Technology
*
* Copyright (c) 1999
* Boris Fomitchev
*
* This material is provided "as is", with absolutely no warranty expressed
* or implied. Any use is at your own risk.
*
* Permis... | [
"331201091@qq.com"
] | 331201091@qq.com |
708e125bf8ce2375b99689d29046aad43647bdf7 | 92ef9ddd14e80aa2f17928985ee700eb5852c785 | /Challenge-ReadSerial-Slave.ino | 591a8c05cf467b4b9d0494d9015f6ddb7a9fa92d | [] | no_license | OmriRaz/Ninja-Challenge-Intel-2019 | 530dee02ae1c1754fcfde50482564010d8736c7b | 94cfe2d5746b37b0614bed6b74ef7386bfa4b6c9 | refs/heads/master | 2021-06-30T10:12:09.193488 | 2021-03-02T14:10:16 | 2021-03-02T14:10:16 | 226,540,641 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 269 | ino | #include<SoftwareSerial.h>
SoftwareSerial SLAVE(2,3);
String input = "0";
void setup() {
SLAVE.begin(9600);
Serial.begin(9600);
}
void loop() {
while(SLAVE.available() > 0) {
input = SLAVE.read();
Serial.println("Recieved code is: " + input);
}
}
| [
"noreply@github.com"
] | OmriRaz.noreply@github.com |
78673482b3db29f0d28ec6224b57931364ad991e | 941214a73266366edbf48a05971c8c83512bfcda | /MS/directshow/baseclassesvc2017/transip.h | e59199d681e47b72c67c4c385854758769a8c143 | [] | no_license | sjk7/edu | 19c2f570c5addc02dbcb675cb4c37c578ecbb839 | 41842fca23d46b3d7709f40117e26490fd06b22b | refs/heads/master | 2020-06-15T19:37:16.043521 | 2017-11-19T05:48:18 | 2017-11-19T05:48:18 | 75,267,497 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,578 | h | //------------------------------------------------------------------------------
// File: TransIP.h
//
// Desc: DirectShow base classes - defines classes from which simple
// Transform-In-Place filters may be derived.
//
// Copyright (c) 1992-2001 Microsoft Corporation. All rights reserved.
//-------------------... | [
"radiowebmasters@gmail.com"
] | radiowebmasters@gmail.com |
e5d151e1755e98bacb494378aa48a8ef08ee98a4 | 019870db548f9dbad19093de581d75686d68d6ca | /src/core/XMLLoadable.cpp | f5cbc46d7241122571d1e3ada66bbc6d2266f727 | [
"WTFPL"
] | permissive | davidhhyq/JVGS | cf8c54f6e557b1b31960cdd11ea03e1713e107f1 | 59be35ed61b355b445b82bf32796c0f229e21b60 | refs/heads/master | 2020-06-17T14:19:03.785109 | 2014-11-12T09:48:17 | 2014-11-12T09:48:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,618 | cpp | #include "XMLLoadable.h"
#include "LogManager.h"
#include "../tinyxml/tinyxml.h"
using namespace std;
namespace jvgs
{
namespace core
{
XMLLoadable::XMLLoadable()
{
}
XMLLoadable::~XMLLoadable()
{
}
void XMLLoadable::queryBoolAttribute(TiXmlElement *e... | [
"jaspervdj@gmail.com"
] | jaspervdj@gmail.com |
cb5da0a2dbaa7f8347be7f0219f53b1ef4f681c0 | 04855d63403efcb5316e3ea11e57128e9f7c5c02 | /mediapipe/calculators/core/flow_limiter_calculator.cc | 6d595e6cd19ae24cee7e6723bc3f2cb91a9b60b2 | [
"Apache-2.0"
] | permissive | Gilgahex/mediapipe | bc49f9d8b7048f24c9fe59c98f68d8b3b6cd863d | c06effd494e8da07488723615522e67ce9783c0a | refs/heads/master | 2021-10-28T07:25:30.760525 | 2020-03-09T01:52:05 | 2020-03-09T01:52:05 | 216,973,960 | 4 | 7 | Apache-2.0 | 2021-10-14T01:29:02 | 2019-10-23T05:19:19 | C++ | UTF-8 | C++ | false | false | 7,454 | cc | // Copyright 2019 The MediaPipe Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or a... | [
"jqtang@google.com"
] | jqtang@google.com |
0c544558fa04ba6f3513a0a955c4688df4d3775a | a4c71e7e8fdd4f1a5595dc765dbd78681b786586 | /libraries/utilities/include/TypeAliases.h | 8e24eb85a2cf4275e63d3104e98890130c236b4e | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | awesomemachinelearning/ELL | 68307c9ed6aa001baab64d23529e22baad643f02 | cb897e3aec148a1e9bd648012b5f53ab9d0dd20c | refs/heads/master | 2020-09-26T10:41:06.841270 | 2019-08-09T22:02:42 | 2019-08-09T22:02:42 | 226,237,954 | 1 | 0 | NOASSERTION | 2019-12-06T03:26:24 | 2019-12-06T03:26:23 | null | UTF-8 | C++ | false | false | 1,161 | h | ////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Project: Embedded Learning Library (ELL)
// File: TypeAliases.h (utilities)
// Authors: Kern Handa
//
////////////////////////////////////////////////////////////////////////////////////////////////////
... | [
"kerha@microsoft.com"
] | kerha@microsoft.com |
1736d80dfec0aa35a8fcb213f6abe8abcc7d7ddd | 9e02c151f257584592d7374b0045196a3fd2cf53 | /AtCoder/ABC/102/A.cpp | e297acd7049e01fface3292eefcffe07afb84f8d | [] | no_license | robertcal/cpp_competitive_programming | 891c97f315714a6b1fc811f65f6be361eb642ef2 | 0bf5302f1fb2aa8f8ec352d83fa6281f73dec9b5 | refs/heads/master | 2021-12-13T18:12:31.930186 | 2021-09-29T00:24:09 | 2021-09-29T00:24:09 | 173,748,291 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 185 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int N; cin >> N;
if (N % 2 == 0) {
cout << N << endl;
} else {
cout << N * 2 << endl;
}
}
| [
"robertcal900@gmail.com"
] | robertcal900@gmail.com |
1a422115c8460dbad76bf699f522a7f4388eceea | 39185d0b188bf1736fb209a6480e732a31e1cb83 | /project/Shader.cpp | cd99267dd8134c846f9078aeb3caa7ead5a2bc98 | [] | no_license | DaniGodin/MotionBlur | a61f9fd19f9bd5b865729689d7d96c3119d81898 | 89a15760876e71bc29e62b3966cc21c1c3f20057 | refs/heads/master | 2020-05-20T20:57:20.468241 | 2019-07-08T09:28:57 | 2019-07-08T09:28:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,069 | cpp | //
// Created by dany on 03/07/19.
//
#include "Shader.hpp"
Shader::Shader(const char* vertexPath, const char* fragmentPath)
{
// 1. retrieve the vertex/fragment source code from filePath
std::string vertexCode;
std::string fragmentCode;
std::ifstream vShaderFile;
std::ifstream fShaderFile;
/... | [
"danielgodin.pro@gmail.com"
] | danielgodin.pro@gmail.com |
9665d519f309d7a075c1d3c027c0e94f1a0ebf3d | f85cfed4ae3c54b5d31b43e10435bb4fc4875d7e | /sc-virt/src/tools/clang/test/OpenMP/critical_codegen.cpp | be749a65f0cb7e42896ef99098c4da514b875417 | [
"NCSA",
"MIT"
] | permissive | archercreat/dta-vs-osc | 2f495f74e0a67d3672c1fc11ecb812d3bc116210 | b39f4d4eb6ffea501025fc3e07622251c2118fe0 | refs/heads/main | 2023-08-01T01:54:05.925289 | 2021-09-05T21:00:35 | 2021-09-05T21:00:35 | 438,047,267 | 1 | 1 | MIT | 2021-12-13T22:45:20 | 2021-12-13T22:45:19 | null | UTF-8 | C++ | false | false | 4,380 | cpp | // RUN: %clang_cc1 -verify -fopenmp -x c++ -emit-llvm %s -fexceptions -fcxx-exceptions -o - | FileCheck %s
// RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -triple x86_64-unknown-unknown -fexceptions -fcxx-exceptions -emit-pch -o %t %s
// RUN: %clang_cc1 -fopenmp -x c++ -triple x86_64-unknown-unknown -fexceptions -fcxx-ex... | [
"sebi@quantstamp.com"
] | sebi@quantstamp.com |
d69626decbd3e3c4e8c9ab64007c72e6502ff1c8 | 157bd746d634378cba837618971f59498e03ea16 | /Open_Acidification_pH-stat_arduino/ChangeKp.ino | 7447ea6ef8ef9abbdb3197dcf662bfa0cfd170d6 | [
"MIT"
] | permissive | riggja/Open_Acidification_pH-stat_arduino | 4ba18ae90b241ba03a91d52827f81205e5921d27 | ff3837bc9aac3142b46df043620c1224b9cd8e81 | refs/heads/master | 2022-12-28T07:08:18.469104 | 2020-09-17T00:37:14 | 2020-09-17T00:37:14 | 297,202,121 | 0 | 0 | MIT | 2020-09-21T01:54:36 | 2020-09-21T01:54:35 | null | UTF-8 | C++ | false | false | 1,695 | ino | // ************************************************
// Change Kp value
// ************************************************
void ChangeKp() {
double kp_temp;
kp_temp = Kp;
lcd.clear();
lcd.setCursor(0, 0);
lcd.print(F("Kp:"));
lcd.setCursor(0, 1);
lcd.print(kp_temp);
key = NO_KEY;
while (key != '#') {... | [
"noreply@github.com"
] | riggja.noreply@github.com |
037b9c6432e4f5f53e699ca34a5e6df17d654390 | 58e06a9c681c20a9d84b926247c723087331b9f1 | /cse20311/lab1/prog2.cpp | c4322789120e7d3f90f2a694f280852f063e9ae0 | [] | no_license | ericl1ericl/Notre-Dame | 1869a5f2d138d98520471d1838581d4bfdeb5f51 | 0a2f6c371e1bbb54b723d8c2c2c2b1b212922c14 | refs/heads/master | 2021-01-25T04:36:45.670324 | 2018-10-29T20:54:19 | 2018-10-29T20:54:19 | 93,458,868 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 582 | cpp | #include <iostream>
using namespace std;
int main()
{
int td;
cout << "Enter the number of touchdowns scored by the Irish: ";
cin >> td;
int xpt;
cout << "Enter the number of extra points made by the Irish: ";
cin >> xpt;
int fg;
cout << "Enter the number of field goals made by the Irish: ";
cin ... | [
"elayne@nd.edu"
] | elayne@nd.edu |
520a33eb013975868822fa7c6698f18b9517447c | 2705848da209f2200c651301b25e323e9eeaffbc | /EnergyEfficient_Scheduling_GGA/GroupingGenome.cpp | e4913218582d4bf5234a296b5aa2534a264937dc | [] | no_license | JR8ll/EEBS | a57aa2c1c553761cd761dec61b1f68b5aecb8207 | bd3902ede624e5d19da65f890bdd1f4409a45e8f | refs/heads/main | 2023-02-27T12:27:03.244492 | 2021-02-01T09:17:23 | 2021-02-01T09:17:23 | 334,894,607 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 21,688 | cpp |
#include "GroupingGenome.h"
GroupingGenome::GroupingGenome(){}
GroupingGenome::GroupingGenome(const GroupingGenome &other) {
this->copy((const GroupingGenome *) &other);
}
GroupingGenome::~GroupingGenome(){
int n = this->size();
for(int i = 0; i < n; i++) {
delete this->at(i);
}
}
void GroupingGenome::init() {... | [
"jrocholl@gmx.de"
] | jrocholl@gmx.de |
56d078f0ae59c6912ec3b34f4d5f49b65e32936f | 948f4e13af6b3014582909cc6d762606f2a43365 | /testcases/juliet_test_suite/testcases/CWE590_Free_Memory_Not_on_Heap/s01/CWE590_Free_Memory_Not_on_Heap__delete_array_int_declare_53a.cpp | a1c1b30a02a9a6d0247843407acab9a6aed2d0e3 | [] | no_license | junxzm1990/ASAN-- | 0056a341b8537142e10373c8417f27d7825ad89b | ca96e46422407a55bed4aa551a6ad28ec1eeef4e | refs/heads/master | 2022-08-02T15:38:56.286555 | 2022-06-16T22:19:54 | 2022-06-16T22:19:54 | 408,238,453 | 74 | 13 | null | 2022-06-16T22:19:55 | 2021-09-19T21:14:59 | null | UTF-8 | C++ | false | false | 2,733 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE590_Free_Memory_Not_on_Heap__delete_array_int_declare_53a.cpp
Label Definition File: CWE590_Free_Memory_Not_on_Heap__delete_array.label.xml
Template File: sources-sink-53a.tmpl.cpp
*/
/*
* @description
* CWE: 590 Free Memory Not on Heap
* BadSource: declare Da... | [
"yzhang0701@gmail.com"
] | yzhang0701@gmail.com |
9228924cb3c36116eed4107f3ddb3e76833b73b4 | f8d1986a121ae1f7448d5af1b58ad12dc60c6bcf | /deep_learning_object_detection/include/velodyne_height_map/heightmap.h | 08ec84c514925f85313f498e6494c752187b0ffa | [] | no_license | Sadaku1993/my_master_thesis_ros | 93d080b5de0bf2d7b47bea0665415bca6fac4aa4 | b60bb0b7822b9308d30f54d72d831e10db468fcc | refs/heads/master | 2020-03-11T07:41:35.225356 | 2018-03-24T06:19:11 | 2018-03-24T06:19:11 | 129,863,849 | 0 | 1 | null | 2018-04-17T07:26:12 | 2018-04-17T07:26:11 | null | UTF-8 | C++ | false | false | 1,959 | h | /* -*- mode: C++ -*- */
/* Copyright (C) 2010 UT-Austin & Austin Robot Technology,
* David Claridge, Michael Quinlan
*
* License: Modified BSD Software License
*/
#ifndef _HEIGHT_MAP_H_
#define _HEIGHT_MAP_H_
#include <ros/ros.h>
#include <pcl_ros/point_cloud.h>
#include <pcl/point_types.h>
#include <pcl/k... | [
"ce62001@meiji.ac.jp"
] | ce62001@meiji.ac.jp |
07cdabae9b7c1e1bfb720e23afff04355786c49f | e60849340c8c1a4c50c915c36ce45387e0388032 | /StructureGraphLib/Synthesizer.h | 7b70339b54d14b3766474550b06e45774f015c10 | [] | no_license | BigkoalaZhu/StBl | bb55d013d54052870aeb6982babaf240d14aa0d1 | 0433e1ed92b2e3993fe559709ecbdc218fcf3546 | refs/heads/master | 2021-01-13T00:59:08.416099 | 2015-12-12T02:56:37 | 2015-12-12T02:56:37 | 44,472,750 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,726 | h | #pragma once
#include "StructureGraph.h"
using namespace Structure;
#include "RMF.h"
extern int randomCount;
extern int uniformTriCount;
struct ParameterCoord{
float u, v;
float theta, psi;
float origOffset;
Eigen::Vector3f origPoint;
Eigen::Vector3f origNormal;
Structure::Node * origNode;
ParameterCoord()... | [
"chenyang.chandler.zhu@gmail.com"
] | chenyang.chandler.zhu@gmail.com |
6a13614cd35fde8e2425622356dc85a580d25ead | 2053e0ec782db1f74eba0c210fcc3ab381e7f152 | /leetcode/162.cpp | 6a5bcd28c30b753d1325b1b911f3300f4c2b8736 | [] | no_license | danielsamfdo/codingAlgo | 86d18b0265c4f5edb323d01ac52f24a2b88599d4 | 0a8e5b67d814ddedcb604f4588e6d959c8958c0b | refs/heads/master | 2021-05-15T10:46:18.941263 | 2017-11-01T02:42:40 | 2017-11-01T02:42:40 | 108,208,650 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 858 | cpp | //https://leetcode.com/problems/find-peak-element/
class Solution {
public:
int search(vector<int>& nums, int l, int r) {
if (l == r)
return l;
int mid = (l + r) / 2;
if (nums[mid] > nums[mid + 1])
return search(nums, l, mid);
return search(nums, mid + 1, r... | [
"danielsamfdo@gmail.com"
] | danielsamfdo@gmail.com |
931b6d161bf8ea675f2d50896cf7b796109823f7 | d613fa2cbc96c5de066248d9dfda9ac43bfe0f69 | /app/src/EditTableController.cpp | 595b7ecd75dda5896cf4db233eba68e038ab6d09 | [] | no_license | alejinjer/utag | bc4b082432c6f2fea323ce2efd85658b31db7d2a | c3abcddd7c8c2a5e89a6fed28c534aa53b55f6d2 | refs/heads/main | 2022-12-31T13:42:11.620722 | 2020-10-23T12:57:34 | 2020-10-23T12:57:34 | 306,637,045 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 781 | cpp | #include "EditTableController.h"
EditTableController::EditTableController(QTableWidget *parent)
: m_parent(parent)
{
for (int i = 0; i < TAG_COUNT; ++i) {
m_currentFileTags[i] = new QTableWidgetItem("");
m_parent->setItem(i, 0, m_currentFileTags[i]);
}
}
EditTableController::~EditTableCont... | [
"opiskun@e1r4p8.unit.ua"
] | opiskun@e1r4p8.unit.ua |
b44aee909a850211924f4a503dd11391b4666a0f | b511bb6461363cf84afa52189603bd9d1a11ad34 | /code/twice_integer.cpp | 4f6c7de443c001b58e475604e4b5e46e7f37a203 | [] | no_license | masumr/problem_solve | ec0059479425e49cc4c76a107556972e1c545e89 | 1ad4ec3e27f28f10662c68bbc268eaad9f5a1a9e | refs/heads/master | 2021-01-16T19:07:01.198885 | 2017-08-12T21:21:59 | 2017-08-12T21:21:59 | 100,135,794 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 614 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int i,t,n,j,k;
vector<int>a;
cin>>t;
while(t--)
{
cin>>n;
for(i=0;i<n;i++){
cin>>k;
a.push_back(k);
}
sort(a.begin(),a.end());
int count=0;
for(i=0;i<a.si... | [
"masumr455@gmial.com"
] | masumr455@gmial.com |
e908f1eb8661dacd5e95926183ccbe93942b52ee | 35cfa2ac88a962d71905c1a77f76d3fa3c3a6f55 | /Plane.cpp | c59617879d0b858b987fe8b8902270b55fda1851 | [] | no_license | Romain96/M1S2_GN | 31524dd471ac214dde5f44d744cf2d3a34b37ca8 | 9743f634c22035051587dffa917221d6b296ee58 | refs/heads/master | 2021-03-16T11:00:21.236577 | 2018-03-04T22:49:13 | 2018-03-04T22:49:13 | 120,600,256 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,405 | cpp | /*
* (C) Romain PERRIN
* romain.perrin@etu.unistra.fr
* UFR de Mathématiques-Informatique
* 2018-2019
*/
// glm
#include "glm/glm.hpp"
#include "glm/vec3.hpp"
#include "Plane.h"
//-----------------------------------------------------------------------------
// Constant(s)
//-------------------------------------... | [
"romain.perrin@etu.unistra.fr"
] | romain.perrin@etu.unistra.fr |
ea6856858ffbc835cb51e9f4c4e204bde93dac55 | b570f5afc4d9baeaaeb3757f46017a8eeb89d681 | /C++/Text/lib/Header.cpp | ce6c0bbc997fce3ee27463852ad959ffe2206ba8 | [] | no_license | Anat37/akos | b87f7b2e91adb0994ab2741b1ad65e303af87633 | 78f90b062ebf3dac7be241f95efc1b9f41aa20d0 | refs/heads/master | 2020-12-24T19:37:00.703813 | 2016-11-06T18:01:03 | 2016-11-06T18:01:03 | 58,388,351 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,259 | cpp | #include "Header.h"
Header::Header(const T_Args& args, int t_lvl)
{
level = t_lvl;
w_v = args.w_v;
char *tmp_border = new char[w_v+1];
memset(tmp_border, '#', w_v);
tmp_border[w_v] = '\0';
border = T_String(tmp_border);
delete[] tmp_border;
}
T_String Header::begining(T_String tmp, in... | [
"kozlof9@yandex.ru"
] | kozlof9@yandex.ru |
9d4930a7f256d7941824c2c34fd5ea6c2272d637 | 36183993b144b873d4d53e7b0f0dfebedcb77730 | /GameDevelopment/Game Programming Gems 5/Section5-Graphics/5.05-GridlessFire_Adabala/pqueue.cpp | 4babdca7db308bbdee2454a06186a16fbbeaa4e5 | [] | no_license | alecnunn/bookresources | b95bf62dda3eb9b0ba0fb4e56025c5c7b6d605c0 | 4562f6430af5afffde790c42d0f3a33176d8003b | refs/heads/master | 2020-04-12T22:28:54.275703 | 2018-12-22T09:00:31 | 2018-12-22T09:00:31 | 162,790,540 | 20 | 14 | null | null | null | null | UTF-8 | C++ | false | false | 1,846 | cpp | /***********************************************
Demo for chapter "Gridless Controllable Fire"
in Games Programming Gems 5.
Author: Neeharika Adabala
... | [
"alec.nunn@gmail.com"
] | alec.nunn@gmail.com |
848114d88c4cb77a2e2608983754a0e87ce40d9e | d732c881b57ef5e3c8f8d105b2f2e09b86bcc3fe | /src/module-wx/VType_wxNavigationKeyEvent.cpp | 7865193e75d53c4add497dbeb0ff05fedb77495a | [] | no_license | gura-lang/gurax | 9180861394848fd0be1f8e60322b65a92c4c604d | d9fedbc6e10f38af62c53c1bb8a4734118d14ce4 | refs/heads/master | 2023-09-01T09:15:36.548730 | 2023-09-01T08:49:33 | 2023-09-01T08:49:33 | 160,017,455 | 10 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,114 | cpp | //==============================================================================
// VType_wxNavigationKeyEvent.cpp
// Don't edit this file since it's been generated by Generate.gura.
//==============================================================================
#include "stdafx.h"
Gurax_BeginModuleScope(wx)
//----... | [
"ypsitau@nifty.com"
] | ypsitau@nifty.com |
feb8f93817283ad5a7356cc24b00d6f93afd0618 | 90e6ac97019b3478ff0596eb193af315a7a8bd4a | /IDR(s)/Matrix.h | 3d8274b4615dffcd9603a80881c48c9cd36503c5 | [] | no_license | aggarwal2000/IDR-biortho-NLA4HPC | ab2674e0975778f4310ede4a8391801c5f9fead3 | acd2aa6ed61f487d2be5ba103cfebe8a68d59421 | refs/heads/master | 2023-03-18T08:52:07.186156 | 2021-03-09T15:07:48 | 2021-03-09T15:07:48 | 346,045,190 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,992 | h | /*!
\file Matrix.h
\brief Definition of classes Dense_Matrix, CSR_Matrix and COO_Matrix
*/
# pragma once
#include<cassert>
#include<cuComplex.h>
#include"location_enums.h"
typedef cuDoubleComplex DoubleComplex;
//! enum class which defines storage order for dense matrices
/**
This enum class... | [
"aggarwal2000chd@gmail.com"
] | aggarwal2000chd@gmail.com |
84d7b308256818236e1a5459e272be9b2b9c7b5c | 33f8a1164c44b4ade4a1ae9edca25a5d631b14dc | /MusicClip.cpp | 53dab6e1e0f72cc6018b8ff6f72dbdeaf06e5652 | [] | no_license | kuribohlv9/Skelly_Dungeon | fe2ef781c3e4169ef7300a3af1347ee7f18bf4a3 | 01d8d165a3d045b58b467a5e5c4594ba6c92a115 | refs/heads/master | 2020-04-30T09:03:41.956469 | 2015-02-07T15:29:12 | 2015-02-07T15:29:12 | 28,010,758 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 708 | cpp | // MusicClip.cpp
#include "stdafx.h"
#include "MusicClip.h"
MusicClip::MusicClip()
{
m_xClip = nullptr;
m_iChannel = -1;
}
MusicClip::~MusicClip()
{
m_xClip = nullptr;
m_iChannel = -1;
}
MusicClip::MusicClip(Mix_Music* p_xClip)
{
m_xClip = p_xClip;
m_iChannel = -1;
}
void MusicClip::Play()
{
m_iCh... | [
"gamedesignwithdee@gmail.com"
] | gamedesignwithdee@gmail.com |
a969f570535f19af222f1023faa5f9039884f7ab | 44ab57520bb1a9b48045cb1ee9baee8816b44a5b | /Assist/Code/Toolset/CoreTools/ExportTest/CoreTools/Shared/MathematicsMacroShared.h | b2dc0d0e6549e0fd15b035850cd7f891099b35ec | [
"BSD-3-Clause"
] | permissive | WuyangPeng/Engine | d5d81fd4ec18795679ce99552ab9809f3b205409 | 738fde5660449e87ccd4f4878f7bf2a443ae9f1f | refs/heads/master | 2023-08-17T17:01:41.765963 | 2023-08-16T07:27:05 | 2023-08-16T07:27:05 | 246,266,843 | 10 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,025 | h | /// Copyright (c) 2010-2023
/// Threading Core Render Engine
///
/// 作者:彭武阳,彭晔恩,彭晔泽
/// 联系作者:94458936@qq.com
///
/// 标准:std:c++20
/// 版本:0.9.1.2 (2023/07/28 15:00)
#ifndef EXPORT_TEST_MATHEMATICS_MACRO_SHARED_H
#define EXPORT_TEST_MATHEMATICS_MACRO_SHARED_H
#include "Mathematics/MathematicsDll.h"
#include "CoreTools... | [
"94458936@qq.com"
] | 94458936@qq.com |
522a169f3d7c26997b4279be7a9bbc3f50194c09 | 12f441018818dc2dcb1a8a89bccd946d87e0ac9e | /cppwinrt/winrt/impl/Windows.Graphics.Imaging.1.h | 12eca538456ba35555f8a70f04a136e509d26eff | [
"MIT"
] | permissive | dlech/bleak-winrt | cc7dd76fca9453b7415d65a428e22b2cbfe36209 | a6c1f3fd073a7b5678304ea6bc08b9b067544320 | refs/heads/main | 2022-09-12T00:15:01.497572 | 2022-09-09T22:57:53 | 2022-09-09T22:57:53 | 391,440,675 | 10 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,596 | h | // WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.220608.4
#pragma once
#ifndef WINRT_Windows_Graphics_Imaging_1_H
#define WINRT_Windows_Graphics_Imaging_1_H
#include "winrt/impl/Windows.Foundation.0.h"
#include "winrt/impl/Windows.Graphics.Imaging.0.h"
WINRT_EXPORT namespace winrt::Windows::... | [
"david@lechnology.com"
] | david@lechnology.com |
796027e8d72687c6dd5d3e7397f99064d8845caa | 96a59ce1d89472f3342de04123606816e4b88ca3 | /zswlib/mesh/mesh_op.h | eeb208cd55424034b20e4a55b4e3c26c4865fcd1 | [] | no_license | wegatron/geometry | f620796fbeffc25417090c580041cdacefe74a01 | 36aa73a04deb54c8c24c2919f723af89dbf91226 | refs/heads/master | 2020-04-06T07:04:48.212278 | 2016-03-31T07:11:50 | 2016-03-31T07:11:50 | 36,479,096 | 0 | 0 | null | 2016-03-31T07:11:51 | 2015-05-29T02:50:36 | C++ | UTF-8 | C++ | false | false | 329 | h | #ifndef MESH_OP_H
#define MESH_OP_H
#include <zswlib/config.h>
#include <zswlib/mesh/mesh_type.h>
#include <zswlib/data_type.h>
namespace zsw
{
namespace mesh {
void ZSW_API rRingVertex(const zsw::mesh::TriMesh &tm, const size_t r, std::vector<zsw::FakeSet<size_t>> &ring);
}
}
#endif /* MESH_... | [
"wegatron@gmail.com"
] | wegatron@gmail.com |
2c27679e65e182cf55805ea8661aefacf8d08412 | ffdc77394c5b5532b243cf3c33bd584cbdc65cb7 | /mindspore/lite/tools/converter/micro/coder/opcoders/nnacl/fp32/shape_fp32_coder.cc | 2fae254c1c8c1a029780416350abca3ab653853c | [
"Apache-2.0",
"LicenseRef-scancode-proprietary-license",
"MPL-1.0",
"OpenSSL",
"LGPL-3.0-only",
"LicenseRef-scancode-warranty-disclaimer",
"BSD-3-Clause-Open-MPI",
"MIT",
"MPL-2.0-no-copyleft-exception",
"NTP",
"BSD-3-Clause",
"GPL-1.0-or-later",
"0BSD",
"MPL-2.0",
"LicenseRef-scancode-f... | permissive | mindspore-ai/mindspore | ca7d5bb51a3451c2705ff2e583a740589d80393b | 54acb15d435533c815ee1bd9f6dc0b56b4d4cf83 | refs/heads/master | 2023-07-29T09:17:11.051569 | 2023-07-17T13:14:15 | 2023-07-17T13:14:15 | 239,714,835 | 4,178 | 768 | Apache-2.0 | 2023-07-26T22:31:11 | 2020-02-11T08:43:48 | C++ | UTF-8 | C++ | false | false | 2,242 | cc | /**
* Copyright 2022 Huawei Technologies Co., Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law... | [
"gongdaguo1@huawei.com"
] | gongdaguo1@huawei.com |
4d556bae0498eabf9dba7cfd2d964e91a34fd3ec | c9b02ab1612c8b436c1de94069b139137657899b | /sgonline_srv/app/logic/LogicUserInteract.h | cac0eef8294334147163d11e7d5dfddc6d7527bf | [] | no_license | colinblack/game_server | a7ee95ec4e1def0220ab71f5f4501c9a26ab61ab | a7724f93e0be5c43e323972da30e738e5fbef54f | refs/heads/master | 2020-03-21T19:25:02.879552 | 2020-03-01T08:57:07 | 2020-03-01T08:57:07 | 138,948,382 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,595 | h | #ifndef LOGICUSERINTERACT_H_
#define LOGICUSERINTERACT_H_
#include "LogicInc.h"
class CLogicUserInteract
{
public:
int AddHelp(unsigned uidFrom, unsigned uidTo);
int AddAttack(unsigned uidFrom, unsigned uidTo);
int GetInteract(unsigned uid, unsigned oppositeUid, DataUserInteract &interact);
int GetInteracts(unsi... | [
"178370407@qq.com"
] | 178370407@qq.com |
a951c3f84ba35b364b449b69270d70d57a44dbf4 | b58f14efef35c16681a41e1fa31166b26ebc251a | /informatics/apple2.cpp | 3a0eae34fdac8bb61114524e494e905410c5dc92 | [] | no_license | dari-kayoo/Cplusplus | 298a1d487f1484e2779f11ebbfca7d5315cf78e1 | df3d36f1cc533dc7a53bc93fbf282dfd2c4d41aa | refs/heads/main | 2023-09-02T19:45:06.592705 | 2021-10-25T14:54:45 | 2021-10-25T14:54:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 131 | cpp | #include <bits/stdc++.h>
using namespace std;
int main (){
int n, k;
cin >> n >> k;
cout << k%n;
return 0;
} | [
"noreply@github.com"
] | dari-kayoo.noreply@github.com |
501c1a1e373129a4267a207b570cecb4a1ec363f | fdaf20f014438477812de55aa21f0449293df0e9 | /dataserver/common/hash_combine.h | 179ee397e16b283ed4cb845b29ed8d6566e0196d | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Totopolis/dataserver | b9b3d4ddb93f63de804e92d9e878fe33fa04ddf7 | 4aabebf7920973c67fb4249a4aca735956d5209c | refs/heads/master | 2021-01-23T11:20:21.098020 | 2019-04-08T17:52:04 | 2019-04-08T17:52:04 | 46,785,828 | 6 | 4 | null | 2016-09-28T15:23:27 | 2015-11-24T10:56:16 | C++ | UTF-8 | C++ | false | false | 1,419 | h | // hash_combine.h
//
#pragma once
#ifndef __SDL_COMMON_HASH_COMBINE_H__
#define __SDL_COMMON_HASH_COMBINE_H__
#include "dataserver/common/common.h"
namespace sdl { namespace hash_detail {
/*#if defined(_MSC_VER)
# define SDL_FUNCTIONAL_HASH_ROTL32(x, r) _rotl(x,r)
#else
# define SDL_FUNCTIONAL_HASH_ROTL32(x, r) ... | [
"idalidchik@gmail.com"
] | idalidchik@gmail.com |
e13e9c5e81bb48ccad4f42a3e87f5618a60d9a3e | b52bb5ec68118ea7e1f1246c26d4c84c409ff6bf | /RTS_AE/Game/Presets.cpp | 56ff83247fa4c325c5767352ab4bb4cf1b92f8c9 | [] | no_license | varo5/RTS_2016B | 8c8c0bb62af9dd22e56e2cb270f8db5ae0b00705 | 3784cb6d6b9a16f3161281db25af69b5cca15bc5 | refs/heads/master | 2021-01-19T07:01:36.501508 | 2016-10-10T21:43:38 | 2016-10-10T21:43:38 | 65,869,598 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 160 | cpp | #include "stdafx.h"
#include "Presets.h"
aePresets::aePresets()
{
m_nClassID = ClassId::Preset;
}
aePresets::~aePresets()
{
}
void aePresets::Destroy()
{
}
| [
"monsal00@gmail.com"
] | monsal00@gmail.com |
e6d7f2ecb53458fd2ac5a688695c41d9311693e4 | f34f81ffa1edddcf935ffb752dc6d55d2d6bed0d | /memory.cpp | bf442bfa87245611ddee20583674e6d41bd6839d | [] | no_license | cesa1995/Enviromental3 | ad0ed3a85ccb58ec786061e8ff5f9215a61aec35 | cb075083c37a4aed2168783ab0e7330089932e12 | refs/heads/master | 2022-11-14T03:32:55.258251 | 2020-06-22T18:03:07 | 2020-06-22T18:03:07 | 274,207,556 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,169 | cpp | #include "memory.h"
memory::memory(){}
//iniciar la memoria del controlador
bool memory::begin(){
bool success=true;
if(!SPIFFS.begin(true)){
Serial.println("SPIFFS Mount Failed");
success=false;
}
return success;
}
void memory::getServerConfig(int type, String arg[], memory memory, timeClock timeCl... | [
"cesar.contreras24777@gmail.com"
] | cesar.contreras24777@gmail.com |
3d4803ce1a48c47b55dd694492e3fb3ec81c6526 | e1e43f3e90aa96d758be7b7a8356413a61a2716f | /datacommsserver/esockserver/test/te_mecunittest/src/mectestpanic6step.cpp | eadcc5863fbeee85c8a02eaad988c0e6c16c0456 | [] | no_license | SymbianSource/oss.FCL.sf.os.commsfw | 76b450b5f52119f6bf23ae8a5974c9a09018fdfa | bc8ac1a6d5273cbfa7852bbb8ce27d6ddc076984 | refs/heads/master | 2021-01-18T23:55:06.285537 | 2010-10-03T23:21:43 | 2010-10-03T23:21:43 | 72,773,202 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,251 | cpp | // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v1... | [
"kirill.dremov@nokia.com"
] | kirill.dremov@nokia.com |
5c3737d68b6ebc0ac4d4ed621715a7092b1dfbcd | 3fee62a27cffa0853e019a3352ac4fc0e0496a3d | /zCleanupCamSpace/ZenGin/Gothic_I_Addon/API/oBarrier.h | 021dc7e4209330335b23e18e7a30b57d6d62c7d3 | [] | no_license | Gratt-5r2/zCleanupCamSpace | f4efcafe95e8a19744347ac40b5b721ddbd73227 | 77daffabac84c8e8bc45e0d7bcd7289520766068 | refs/heads/master | 2023-08-20T15:22:49.382145 | 2021-10-30T12:27:17 | 2021-10-30T12:27:17 | 422,874,598 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,661 | h | // Supported with union (c) 2018-2021 Union team
#ifndef __OBARRIER_H__VER1__
#define __OBARRIER_H__VER1__
namespace Gothic_I_Addon {
enum zTThunderSector {
zTThunderSector_None,
zTThunderSector_1,
zTThunderSector_2,
zTThunderSector_3,
zTThunderSector_4
};
// sizeof F8h
struct myVert {
... | [
"amax96@yandex.ru"
] | amax96@yandex.ru |
3de0a9fe34ad3392e07f869b899a97351ed66875 | 6762cae7e065d013247f6cce6404949d58cb7966 | /Software/SMT_Oven_stubs/Sources/fonts.h | 4dc7ac29a7e5590f4c2432ea45ef4e47499b6e87 | [] | no_license | podonoghue/T962a_Oven_Controller | c1569d474a134eea82a6b37e9a004df7bd27e699 | 816f82b0fba72aebe46eeb48660ff40b4e00e2d1 | refs/heads/master | 2021-01-17T18:23:13.665067 | 2019-06-12T11:25:57 | 2019-06-12T11:26:20 | 69,413,627 | 15 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,007 | h | /**
* @file fonts.h
* @brief Fonts for LCD
*/
#ifndef INCLUDE_USBDM_FONTS_H
#define INCLUDE_USBDM_FONTS_H
#include <stdint.h>
/*
* *****************************
* *** DO NOT EDIT THIS FILE ***
* *****************************
*
* This file is generated automatically.
* Any manual changes will be lost.
*... | [
"podonoghue@swin.edu.au"
] | podonoghue@swin.edu.au |
be19cdf6ae5a6d8518be5ccea1c5ae277b350541 | 33fa64e174fe0ba321b02f9c122d8eb97bb80cfa | /Source/Editor/Objects/SpriteEditor/spriteEditorTools.h | bd361cded7e95bded6b26b43539ad964341ff903 | [] | no_license | HumMan/BaluEngine | c59447d00e9b450a8a190ffc0f56821e423f057b | f62c2d6fbff0472389a6dd424e3cedbf72967979 | refs/heads/master | 2021-04-26T15:37:53.726774 | 2016-10-25T09:23:41 | 2016-10-25T09:23:41 | 43,567,178 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 438 | h | #pragma once
#include <Editor/abstractEditor.h>
using namespace EngineInterface;
class TSpriteEditorScene;
class TSpriteEditorToolsRegistry
{
public:
std::vector<TToolWithDescription> tools;
TSpriteEditorScene* scene;
public:
TSpriteEditorToolsRegistry(TSpriteEditorScene* scene);
TSpriteEditorToolsRegistry(TSpr... | [
"kop3nha@gmail.com"
] | kop3nha@gmail.com |
6c24425c29c07c480fbfa84260baa5dcf6c31729 | 36c31b485a5906ab514c964491b8f001a70a67f5 | /CSES/Problemset/Range Queries/subarraysumqueries.cpp | 9190157fae83d0ad24f7ab5a8ed53c63d34b6037 | [] | no_license | SMiles02/CompetitiveProgramming | 77926918d5512824900384639955b31b0d0a5841 | 035040538c7e2102a88a2e3587e1ca984a2d9568 | refs/heads/master | 2023-08-18T22:14:09.997704 | 2023-08-13T20:30:42 | 2023-08-13T20:30:42 | 277,504,801 | 25 | 5 | null | 2022-11-01T01:34:30 | 2020-07-06T09:54:44 | C++ | UTF-8 | C++ | false | false | 1,206 | cpp | #include <bits/stdc++.h>
#define ll long long
using namespace std;
const int mn = 2e5+1;
ll seg[mn<<2][4];
void recalc(int i)
{
int l=(i<<1)+1,r=(i<<1)+2;
seg[i][0]=seg[l][0]+seg[r][0];
seg[i][1]=max({seg[l][0],seg[l][0]+seg[r][0],seg[l][0]+seg[r][1],seg[l][1]});
seg[i][2]=max({seg[r][0],seg[r][0]+seg... | [
"mahajan.suneet2002@gmail.com"
] | mahajan.suneet2002@gmail.com |
dc4d99e897b94c1e245f92b0f5458954d46725c6 | d9650a91cde69003c0049779afd43e01646c56b7 | /Server/hdr/Logger.hpp | 65a6ffc6ca3e9c6caf64e90598a0c29a7a8be371 | [] | no_license | sdberardinelli/fault-detection | b080be8e1b3e45c5759b384933be803f08486e0b | f26bc9c6f92facb1a33ff4550aa9b48f833cc792 | refs/heads/master | 2020-12-24T17:08:33.775713 | 2014-04-23T02:29:19 | 2014-04-23T02:29:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,017 | hpp | /******************************************************************************
* Filename : Logger.hpp
* Source File(s): Logger.cpp
* Description :
* Authors(s) :
* Date Created :
* Date Modified :
* Modifier(s) :
*******************************************************************************/
#... | [
"sethb@198.105.251.35"
] | sethb@198.105.251.35 |
338bffc422bb5e1e60a3f702a73e51831dc24e5c | 2139bff1c9096ea7d168d453470e2bc89848e72a | /all.h | 8975de1798b4d697b1135c995c0067ab15719a98 | [] | no_license | si0005hp/cpp-sandbox | 33814ceaa3f1131e22d781a0e1ae24f0b9f4963d | 68f946afd01c6abdab2595ad06dc5d6f8af74c95 | refs/heads/master | 2023-06-08T07:25:49.819312 | 2021-06-20T09:45:47 | 2021-06-20T09:45:47 | 338,561,875 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,267 | h | #include <cassert>
#include <cerrno>
#include <cfloat>
#include <climits>
#include <cstdalign>
#include <cstddef>
#include <cstdint>
#include <cstdlib>
#include <exception>
#include <initializer_list>
#include <limits>
#include <new>
#include <stdexcept>
#include <string>
#include <system_error>
#include <typeinfo>
#i... | [
"si0005hp@gmail.com"
] | si0005hp@gmail.com |
4d19449e6b45d8e9a07f94617db4140b66ac9e6e | 8e8b748965e211710f926deef69cab8077509fef | /Dusk/Graphics/RenderModules/FFTRenderPass.h | 65f6138dca070db1e537052a19fa1b8cb88d2d43 | [] | no_license | i0r/project_freeride | 09240c7725298b4946d911dfff9de22a17c9288b | 896e6c3f08b830f93083f719a0816678c9128efb | refs/heads/master | 2023-02-06T10:07:30.369487 | 2020-12-28T11:10:07 | 2020-12-28T11:10:07 | 263,069,858 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 780 | h | /*
Dusk Source Code
Copyright (C) 2020 Prevost Baptiste
*/
#pragma once
class FrameGraph;
class RenderDevice;
class ShaderCache;
#include "Graphics/FrameGraph.h"
// Output of a FFT renderpass (inverse, convolution, etc.).
struct FFTPassOutput
{
FGHandle RealPart;
FGHandle ImaginaryPart;
FFTPass... | [
"baptiste.prevost@protonmail.com"
] | baptiste.prevost@protonmail.com |
80af6eb91c0bd37f232f942052f404a7f8dbdf94 | 0149a18329517d09305285f16ab41a251835269f | /Problem Set Volumes/Volume 6 (600-699)/UVa_612_DNA_Sorting.cpp | 644ce8301b0bf740259c48ecaab9ab1c700ff47a | [] | no_license | keisuke-kanao/my-UVa-solutions | 138d4bf70323a50defb3a659f11992490f280887 | f5d31d4760406378fdd206dcafd0f984f4f80889 | refs/heads/master | 2021-05-14T13:35:56.317618 | 2019-04-16T10:13:45 | 2019-04-16T10:13:45 | 116,445,001 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 900 | cpp |
/*
UVa 612 - DNA Sorting
To build using Visual Studio 2008:
cl -EHsc -O2 UVa_612_DNA_Sorting.cpp
*/
#include <iostream>
#include <algorithm>
using namespace std;
const int n_max = 50, m_max = 100;
struct dna_string {
char s_[n_max + 1];
int sortedness_;
bool operator<(const dna_string& s)... | [
"keisuke.kanao.154@gmail.com"
] | keisuke.kanao.154@gmail.com |
6da2378488d0d6493ea99e8fc4ef0e3920a67ab5 | 67d18d4bb54f3e7da06674c2bb65e4658d4538ba | /frontend/include/g++_HEADERS/hdrs1/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp | 5755938990137c056005a5d609421df794161499 | [
"MIT"
] | permissive | uwplse/stng | 8c1f483a96c8313b8ec36a15791db75d20cfcf33 | b077f4d469edf4971c356367f6019132047d6a3b | refs/heads/master | 2022-05-06T08:28:27.139569 | 2022-04-05T05:01:49 | 2022-04-05T05:01:49 | 63,819,139 | 15 | 7 | null | 2017-01-13T11:56:50 | 2016-07-20T22:32:32 | C++ | UTF-8 | C++ | false | false | 76 | hpp | /usr/include/c++/4.4/./ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp | [
"akcheung@cs.washington.edu"
] | akcheung@cs.washington.edu |
10920370e6fe997a6661ff2392c4a1a136719834 | ba9999ffb55fcd9491ddb796301f5c53975e275d | /include/sflight/mdls/modules/InverseDesign.hpp | e79e49b61a859a23260fe80131f96f177a0bad07 | [] | no_license | doughodson/sflight | 60c9d90d48e8a924652c38180c3031076e78e19e | 2200e5e8c9ececb3cde6e425ff95bea1ad336aca | refs/heads/master | 2022-02-28T21:34:35.854217 | 2019-09-06T18:11:29 | 2019-09-06T18:11:29 | 85,605,587 | 10 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,465 | hpp |
#ifndef __sflight_mdls_InverseDesign_HPP__
#define __sflight_mdls_InverseDesign_HPP__
#include "sflight/mdls/modules/Module.hpp"
#include "sflight/xml_bindings/init_InverseDesign.hpp"
namespace sflight {
namespace xml {
class Node;
}
namespace mdls {
class Player;
//------------------------------------------------... | [
"doug@openeaagles.org"
] | doug@openeaagles.org |
8e3f4809ec4a5cf983c00aa6a27101dbbb0ab60e | da14530f0161ff1d0461e5eba14c996dc4d329de | /class_CommandLine.h | 69a828aebe74b626b99ca53797d8f2e68afba53e | [] | no_license | lancegatlin/sample-cpp | 2677fa2ff9ce7fc091489e195773593f47361da5 | ed754d5309ae965cd4875045c1293647461a958f | refs/heads/master | 2016-09-06T19:22:32.189562 | 2013-03-23T20:48:59 | 2013-03-23T20:48:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,005 | h | #ifndef __CLASS_COMMANDLINE_H
#define __CLASS_COMMANDLINE_H
#include <vector>
#include <string>
#include <iostream>
#include <string_algorithm.h>
class CommandLine {
public:
typedef std::vector<std::string> tokenList;
private:
std::ostream &_out;
std::istream &_in;
std::string _promp... | [
"lance.gatlin@gtri.gatech.edu"
] | lance.gatlin@gtri.gatech.edu |
4fd155a1ce0d59004273936e6988965d92f86d59 | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-qt5-qhttpengine-server/generated/server/src/models/OAIComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougInfo.cpp | 98da913c3996a2fb976babfb5f264ff6b6bf6b6b | [
"Apache-2.0",
"MIT"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 4,625 | cpp | /**
* Adobe Experience Manager OSGI config (AEM) API
* Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API
*
* OpenAPI spec version: 1.0.0-pre.0
* Contact: opensource@shinesolutions.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openap... | [
"cliffano@gmail.com"
] | cliffano@gmail.com |
411730936e9eb1ef35caddd0090aaa22eb0bdd64 | e6d888dedc7b5a98352a2cd0e78c90a5a2b40497 | /src/cpp/deus/unicode_view_impl/UTF8SymbolToByteIndex.inl | 82a818bba93fb299c3c9cf63cd0a3fa496bfd2b9 | [] | no_license | the-arcane-initiative/Deus | 91659f2ca229cea5af94935d78eb36e1b594c44b | b1780190c6dfb3f6257c3cb77c8d35115bb59ef8 | refs/heads/master | 2021-05-03T17:31:29.867167 | 2018-06-12T10:49:32 | 2018-06-12T10:49:32 | 120,448,101 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,879 | inl | /*!
* \file
* \author David Saxon
* \brief Inline definitions for UTF-8 implementations of the
* symbol_to_byte_index function.
*
* \copyright Copyright (c) 2018, The Arcane Initiative
* All rights reserved.
*
* \license BSD 3-Clause License
*
* Redistribution and use in source a... | [
"davidesaxon@gmail.com"
] | davidesaxon@gmail.com |
967190f3ffe7c13adda19bff8c9b24375accb390 | 417e25aca1bbbaada5864d3b3b5814fa16ecbe11 | /supersonic/deke/table2data/table2data_q3_1.cc | 106d4caced4399b2a544bde6441aba66eefc6fd6 | [] | no_license | axyu/mixDB | 3f2da4935db870947156c139bd6a66be862778c1 | bf12a4d1d181c815d475eaef3920f4ad145d23f1 | refs/heads/master | 2021-01-17T13:25:59.423964 | 2016-07-14T05:44:32 | 2016-07-14T05:44:32 | 54,551,705 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,070 | cc | #include <iostream>
#include "supersonic/supersonic.h"
#include "supersonic/base/infrastructure/tuple_schema.h"
#include "supersonic/base/infrastructure/test_data_generater.h"
#include "supersonic/utils/file.h"
#include "supersonic/cursor/infrastructure/file_io.h"
#include <vector>
#include <sstream>
#include "deke/inc... | [
"lab.u@catfish.com"
] | lab.u@catfish.com |
e2df6ab700cfab5c6e24ed5ce19ef95bc6327c64 | d2d6aae454fd2042c39127e65fce4362aba67d97 | /build/iOS/Preview1/include/Fuse.Reactive.ThreadW-a73c34f4.h | 3d2c5851bcacc35bfeca53fa5b0fd1806a74ff3d | [] | no_license | Medbeji/Eventy | de88386ff9826b411b243d7719b22ff5493f18f5 | 521261bca5b00ba879e14a2992e6980b225c50d4 | refs/heads/master | 2021-01-23T00:34:16.273411 | 2017-09-24T21:16:34 | 2017-09-24T21:16:34 | 92,812,809 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,127 | h | // This file was generated based on '/Users/medbeji/Library/Application Support/Fusetools/Packages/Fuse.Reactive.JavaScript/1.0.2/$.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Object.h>
namespace g{namespace Fuse{namespace Reactive{struct ThreadWorker;}}}
namespac... | [
"medbeji@MacBook-Pro-de-MedBeji.local"
] | medbeji@MacBook-Pro-de-MedBeji.local |
c227489850397a1f1562772e73ff2198eb800d4e | 5d38d989e096bb2b2298d38c3c570e914e3a2c50 | /Source/OceanBoats/Private/UI/Menu/Widgets/SSoldierMenuItem.h | a807b2fe14990332211f83bd069e4c313cc9af26 | [] | no_license | magrlemon/OceanShips | 2b9b7419184aadea38f62acb123194c10a8dd42a | 7e4cb5a3aa6b6bd3c7c1027b3d9c1b9b270c6ebf | refs/heads/master | 2023-01-02T21:54:55.404769 | 2020-10-21T14:37:34 | 2020-10-21T14:37:34 | 285,441,836 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,578 | h | // Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "SlateBasics.h"
#include "SlateExtras.h"
//class declare
class SSoldierMenuItem : public SCompoundWidget
{
public:
DECLARE_DELEGATE_OneParam( FOnArrowPressed, int );
SLATE_BEGIN_ARGS(SSoldierMenuItem)
{}
/** weak... | [
"magr_lemon@126.com"
] | magr_lemon@126.com |
367779c0fd92eb9ea361673e871055af8f66fb36 | 0dda8cef707f38f5058c3503666cbe3bf6ce8c57 | /CODEFORCES/373D_Counting_Rectangles_is_Fun.cpp | 36254a53fe909f3124831bf4460d2b6e004b84f8 | [] | no_license | Yuessiah/Destiny_Record | 4b1ea05be13fa8e78b55bc95f8ee9a1b682108f2 | 69beb5486d2048e43fb5943c96c093f77e7133af | refs/heads/master | 2022-10-09T07:05:04.820318 | 2022-10-07T01:50:58 | 2022-10-07T01:50:58 | 44,083,491 | 0 | 1 | null | 2017-05-04T12:50:35 | 2015-10-12T04:08:17 | C++ | UTF-8 | C++ | false | false | 998 | cpp | #include<bits/stdc++.h>
using namespace std;
int constexpr maxn = 50;
int n, m, q, a, b, c, d;
char grid[maxn][maxn];
int pre[maxn][maxn], dp[maxn][maxn][maxn][maxn];
int main()
{
cin >> n >> m >> q;
for(int i = 1; i <= n; i++)
for(int j = 1; j <= m; j++)
cin >> grid[i][j];
for(int i = 1; i <= n; i... | [
"yuessiah@gmail.com"
] | yuessiah@gmail.com |
8a4effe750b80bbe7cb63866e75536880d844e47 | 3ded37602d6d303e61bff401b2682f5c2b52928c | /toy/0205/Classes/Model/CBAppManager.h | 64507d7d57847d9e00a7dc9f3d3a89187a617730 | [] | no_license | CristinaBaby/Demo_CC | 8ce532dcf016f21b442d8b05173a7d20c03d337e | 6f6a7ff132e93271b8952b8da6884c3634f5cb59 | refs/heads/master | 2021-05-02T14:58:52.900119 | 2018-02-09T11:48:02 | 2018-02-09T11:48:02 | 120,727,659 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 937 | h | //
// CBAppManager.h
// ColorBook
//
// Created by maxiang on 4/21/15.
//
//
#ifndef __ColorBook__CBAppManager__
#define __ColorBook__CBAppManager__
#include "cocos2d.h"
#include "CBAppGlobal.h"
#define xApp AppManager::getInstance()
class AppManager
{
public:
static AppManager* getInstance();
virtual... | [
"wuguiling@smalltreemedia.com"
] | wuguiling@smalltreemedia.com |
7689076f1b0904bbd6d961ace044d0226e93eb50 | bf04643a3ef65d04eace73ea5757ea5f2a1841c4 | /LCOF/lcof51 数组中的逆序对(归并排序)/res.cpp | 200b974cde66e35554e8fa2f9aae8ab2361300a6 | [] | no_license | MiChuan/Leetcode | 4ec65ee65bc4769ba0f7dbdba2db38e50ec4b331 | 802386b9ad4dd89d085ea9a7c095d101eb3d5343 | refs/heads/master | 2022-12-23T07:58:02.425794 | 2020-10-04T08:18:49 | 2020-10-04T08:18:49 | 275,826,054 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 810 | cpp | class Solution {
public:
vector<int> tmp;
int merge(vector<int>& nums,int l,int r){
if(l>=r) return 0;
int mid = (l+r)>>1;
int res = merge(nums,l,mid)+merge(nums,mid+1,r);
for(int i = l;i<=r;i++) tmp[i]=nums[i];
for(int k = l,i =l,j=mid+1;k<=r;k++)
if( i > mid... | [
"1102066475@qq.com"
] | 1102066475@qq.com |
01ae59c3cb1726a7c7e12b64778e760b93a70608 | ecffba720cb0af51925868f17a4d558cbdcb546a | /Flight Software/PowerTest_V2/MPU6050.ino | c4e6462e4a0bb3e26980269cdbf7e4fa3fe4178d | [] | no_license | ndshetty/CanSatElectronics2017-18 | 7bda8d926ffce49b1935d6ca8b43c9ab0ec1be47 | 679087ba58f028c8622340cf8b87729e1ef66dd5 | refs/heads/master | 2020-09-15T12:16:24.813888 | 2018-05-29T22:15:37 | 2018-05-29T22:15:37 | 223,441,561 | 1 | 0 | null | 2019-11-22T16:19:31 | 2019-11-22T16:19:31 | null | UTF-8 | C++ | false | false | 573 | ino |
/*void mpuSetup()
{
while(!mpu.begin(MPU6050_SCALE_2000DPS, MPU6050_RANGE_2G))
{
Serial.println("Could not find a valid MPU6050 sensor, check wiring!");
delay(500);
}
mpu.calibrateGyro();
mpu.setThreshold(3);
}
void mpuLoop()
{
mpuTime = millis();
Vector norm = mpu.readNormalizeGyro();
// Ca... | [
"ahsan.abrar16@hotmail.com"
] | ahsan.abrar16@hotmail.com |
1700581b3a83173edd4ab22d7ea6c3105fbbf97f | 2ce5246d19d55211172d79b4091aeafd73e77a27 | /Problems/boj1094.cpp | e53d7ddf0059f93f3919beff4f88475f2d0f1cdf | [] | no_license | MingNine9999/algorithm | 49e76a1fbcdbeea8388491c793f31ee6866054ae | 76be13e394e3e96cdcec0de9390f1fd573d442c5 | refs/heads/master | 2021-04-23T09:09:05.097401 | 2020-09-11T16:23:29 | 2020-09-11T16:23:29 | 249,915,663 | 2 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 367 | cpp | //Problem Number : 1094
//Problem Title : ¸·´ë±â
//Problem Link : https://www.acmicpc.net/problem/1094
#include <iostream>
#include <algorithm>
using namespace std;
int main(void)
{
ios::sync_with_stdio(false);
cin.tie(0);
int n;
int ans = 0;
cin >> n;
for (int i = 1; i <= 64; i <<= 1) {
if (n & i) {
a... | [
"mingu.song@nhn.com"
] | mingu.song@nhn.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.