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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0323e3bdc11fc2fcb0e0a2a2772c071623bec5d4 | ab2c8f75630b3f3d99e80cc887833d754bf144e4 | /output/Il2CppOutputProject/Source/il2cppOutput/Il2CppCompilerCalculateTypeValuesTable.cpp | 2a881d835c4c3297bfb4ba6c737373dc8655c4c8 | [] | no_license | L200150144/gameFarm | 3a13ec68cbed79b0ad9000a2c491595c888f7c35 | 8d9129cb544b39f3411cc5f494aecf4ff837e298 | refs/heads/master | 2020-08-19T15:40:48.653154 | 2019-10-26T16:05:33 | 2019-10-26T16:05:33 | 215,930,613 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 445,728 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
IL2CPP_EXTERN_C_BEGIN
IL2C... | [
"dian7896@gmail.com"
] | dian7896@gmail.com |
81db1bf165967208fbf08b1d2487d6935bd666bc | 5898d3bd9e4cb58043b40fa58961c7452182db08 | /part2/ch11/11-2-1-memory-management/src/memory_management.cpp | 7ca1087cc503cc59d7224f8a4d3fa38ea7821860 | [] | no_license | sasaki-seiji/ProgrammingLanguageCPP4th | 1e802f3cb15fc2ac51fa70403b95f52878223cff | 2f686b385b485c27068328c6533926903b253687 | refs/heads/master | 2020-04-04T06:10:32.942026 | 2017-08-10T11:35:08 | 2017-08-10T11:35:08 | 53,772,682 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,503 | cpp | /*
* memory_management.cpp
*
* Created on: 2016/04/29
* Author: sasaki
*/
#include <vector>
#include <memory>
#include <iostream>
using namespace std;
void bad()
{
cout << "-- bad() --\n";
int* p1 = new int{99};
int* p2 = p1;
delete p1;
p1 = nullptr;
char* p3 = new char{'x'};
*p2 = 999;
cout << "*... | [
"sasaki-seiji@msj.biglobe.ne.jp"
] | sasaki-seiji@msj.biglobe.ne.jp |
ecd8bc03a1f66b118da2df37a9899c096f02cbe1 | bccc7476e89e697c5430abefc79b557fbd710d8b | /sycl/test/extensions/properties/mock_compile_time_properties.hpp | 581165b62e521aee644c632ce0a3a4505ec8c6e9 | [
"LicenseRef-scancode-unknown-license-reference",
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | vmaksimo/llvm | 807128c72befc8ffab263d0e7830e6d518e0133e | 4423b83a3c4df4cf4bb7e7fd8439188e0b8f3703 | refs/heads/llvmspirv_pulldown | 2023-07-31T16:38:54.368516 | 2022-04-13T23:48:37 | 2022-04-13T23:48:37 | 180,105,314 | 0 | 0 | null | 2022-04-14T06:45:50 | 2019-04-08T08:34:56 | null | UTF-8 | C++ | false | false | 4,830 | hpp | //==--- mock_compile_time_properties.hpp - Mock compile-time properties ---==//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | [
"noreply@github.com"
] | vmaksimo.noreply@github.com |
ecb2c922b3cdef9635380416a941c23b61be5419 | 685a40801df0dbad646a205d105a7ba3bbf026f5 | /ciclo 2/regristros.cpp | 6f100c62ebc4c6003378f91ac36a6ffbd8658929 | [] | no_license | MarcBgF05/LabosFunda01 | 363e885eca7c1ccdbed5f325f1e62a56fe141ae9 | a5a2abb64055d4cd3a97efebe3f00a64f133ae98 | refs/heads/master | 2022-12-08T15:43:45.120385 | 2020-09-11T00:30:42 | 2020-09-11T00:30:42 | 250,353,850 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,496 | cpp | #include "iostream"
#include "string.h"
using namespace std;
struct libro{
string titulo;
string autor;
};
struct libro catalogo[3];
int canti=0;
void entrada();
void buscartitulo();
void buscarautor();
int main(){
bool continuar = true ;
do{
int opcion = 0;
cout<<"1 entrada de libro \n";
cout<<"2 bus... | [
"00028320@uca.edu.sv"
] | 00028320@uca.edu.sv |
f4db04a0a49de6fcbd0e79e19427e9f81018e0f1 | a84871f6f228e78e8bac3cda55c180e33a4eac6d | /16.Hashmap/hashatable.cpp | 4c9c37dadc0c35273b81918c4bc03febd83c62ee | [] | no_license | shubham-gupta-17/Data-Structures-and-Algorithms | 78fdc106dec7ee53a62e281a8bad4236ea82b63d | 86d46eda5ff45bd651309eff955e39eb17746208 | refs/heads/master | 2022-12-24T16:32:33.830053 | 2020-09-21T08:01:50 | 2020-09-21T08:01:50 | 245,585,948 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 573 | cpp | #include<iostream>
#include<cstring>
#include"hashtable.h"
using namespace std;
int main()
{
int table_size=7;
hashtable<int> map(table_size);
map.insert("burger",100);
map.insert("pepsi",110);
map.insert("pizza",120);
map.insert("ashu",130);
map.insert("sande",140);
map.insert("arvidn",150);
map.insert("haug... | [
"sg61642@gmail.com"
] | sg61642@gmail.com |
1765592b1a290de04f2d343d17249ca73d3be822 | 3bfa508183bdd770392ed6bee55c177f2f779071 | /src/expr.hh | ab81b5435cb1b602945423714746aef63774836e | [
"BSD-2-Clause"
] | permissive | fluxbios/kratos | 644d7d126f208f4fa0d614075dd79f06d41f1516 | c5a754b827edfc5cc4f1692a51af7d4cc2c39b0b | refs/heads/master | 2023-05-28T12:18:19.567960 | 2021-06-04T18:00:25 | 2021-06-04T18:00:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 28,038 | hh | #ifndef KRATOS_EXPR_HH
#define KRATOS_EXPR_HH
#include <optional>
#include <set>
#include <stdexcept>
#include <string>
#include <unordered_set>
#include <vector>
#include "context.hh"
#include "ir.hh"
namespace kratos {
enum class ExprOp : uint64_t {
// unary
UInvert,
UMinus,
UPlus,
UOr,
UN... | [
"keyi@stanford.edu"
] | keyi@stanford.edu |
5e2dda3dad6d398c405492f43754decf48f1d0e6 | 1b8635478f49bdd3840e6769ba28b68983953b38 | /src/util.cpp | 94963094be65565f8eeb3733a2112181da0eb4a1 | [
"MIT"
] | permissive | citrixrep/dietbitcoin | f84834a6933c09dc791f82ed59d29b480ac84253 | 36db78ebbc1c16caf845d3ce7eac26e871ece911 | refs/heads/master | 2021-10-23T19:09:09.588443 | 2021-10-18T12:12:40 | 2021-10-18T12:12:40 | 154,414,320 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,448 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2016 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include "config/dietbitcoin-config.h"
#endif
#includ... | [
"35432239+dietbitcoin@users.noreply.github.com"
] | 35432239+dietbitcoin@users.noreply.github.com |
b18d535732bdc230a44c259c35042aab02ca1d18 | 1ac2d374099f0d265e0d78f0fc811da2c0b4f084 | /Ch03/14_ModelView/04_TableWidget/widget.cpp | eec9176e0e48f128c0bb163514a8323e5a33c25c | [] | no_license | kwoss2341/qt_ex | e3d0aa179667409a8878572c481667142debf42a | e3bc7b11e624b5f230d9b17e9ac970f36d18bb2f | refs/heads/master | 2023-03-24T03:00:41.744163 | 2021-03-20T14:21:46 | 2021-03-20T14:21:46 | 337,698,939 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,272 | cpp | #include "widget.h"
#include "ui_widget.h"
#include "checkboxheader.h"
#include <QDebug>
Widget::Widget(QWidget *parent) :
QWidget(parent),
ui(new Ui::Widget)
{
ui->setupUi(this);
ui->tableWidget->setRowCount(5);
ui->tableWidget->setColumnCount(2);
CheckBoxHeader* header = new CheckBoxHeader(... | [
"kwoss2341@gmail.com"
] | kwoss2341@gmail.com |
6733ddb3fe7b3e7117ce1671ded2542c87e42ea2 | 9e1fb87d6aa5084c850d3165ea749da67d0add59 | /atcoder/SQUARE869120CONTEST_01_C.cpp | c7f561ab1ba406810b18ebe3962d810163b47716 | [] | no_license | Yang-33/competitive-programming | 673d57bc95efb559f8e2905bad758cd576505761 | f85ef9f1a5763334e4d26f9206154e4f7c0a85ac | refs/heads/master | 2021-01-12T03:19:17.961860 | 2019-10-06T15:35:48 | 2019-10-06T15:35:48 | 78,174,818 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,121 | cpp | #include <bits/stdc++.h>
using namespace std;
using VS = vector<string>; using LL = long long;
using VI = vector<int>; using VVI = vector<VI>;
using PII = pair<int, int>; using PLL = pair<LL, LL>;
using VL = vector<LL>; using VVL = vector<VL>;
#define ALL(a) begin((a)),end((a))
#define RALL(a) (a).... | [
"kasai.yuta0810@gmail.com"
] | kasai.yuta0810@gmail.com |
d225e1bba50881a38255e590bb8b95fa0f0a0587 | bf4080a1ac7a9b644822905f2a95d131fa690d73 | /BitInputStream.hpp | 0b6b15dbe5aa4d7464a50b1d00b18e49a55e3a89 | [] | no_license | ashley41313/paul3 | a04d25dfa9f5f828c5b2f5c59bc8162fc6de148c | 298e4cb795d69373fbafefac821d44ca5efb209e | refs/heads/master | 2022-08-26T17:57:28.198925 | 2019-05-21T06:35:02 | 2019-05-21T06:35:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,650 | hpp | /*file header:
* ashley eckert aeckert@Ucsd.edu
* This file has the bitinputstream class and it's method
* this file is used to make bit by bit operations.
**/
/*class header
* the bitinputstream class creates a buffer and does bitwise
* operations on the buffer using 0's and 1's, and then only
* when it has ... | [
"aeckert@ieng6-241.ucsd.edu"
] | aeckert@ieng6-241.ucsd.edu |
18d39fee28bcb0890222079a8bee06ef676e3bdb | 20cf6482b7f5a68bd0029414c02f7ec4747c0c5f | /triton2/server/loginserver/erating/EProtocol/AGIPPfOrderQuery.cpp | 0978bd1d6a36b267c5ae1f25334728df41e9f938 | [] | no_license | kensniper/triton2 | 732907c76c001b2454e08ca81ad72ace45625f6c | 7ad2a359e85df85be9d87010047a198980c121ae | refs/heads/master | 2023-03-23T02:20:56.487117 | 2017-02-26T00:00:59 | 2017-02-26T00:00:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31 | cpp | #include "AGIPPfOrderQuery.h"
| [
"243884919@QQ.COM"
] | 243884919@QQ.COM |
1af7b165dd1ae5ec3f3398ad2a14e798c9bd803d | daac7288255974bac80fe929659055fbe41d53cf | /cpp/clipper.hpp | f724a3f88ec5de1ea6c82983e8aa04d369414c79 | [
"BSL-1.0"
] | permissive | twosilly/Clipper | cc1d6319ac968c2d31f6c3b44694698ea0225d48 | 45620775dd756e0b46ea80d87bc8cadc8ca715b8 | refs/heads/master | 2021-01-17T21:53:51.792675 | 2017-11-21T09:21:04 | 2017-11-21T09:21:04 | 84,183,001 | 1 | 1 | null | null | null | null | GB18030 | C++ | false | false | 16,345 | hpp | /*******************************************************************************
* *
* Author : Angus Johnson *
* Version : 6.4.2 ... | [
"twosilly@foxmail.com"
] | twosilly@foxmail.com |
689cb0e0781c6553da5f51fd6ae05662a118d4fb | 222ce1c5da5d912395cc873fb2886605cc1550ea | /book/implem.cpp | 32f06e8191a6cd14b4611e1fe8a02a58063b5dda | [] | no_license | tkotowski/AGH | 573b8dea816606d358fd5768e6f11a5135d30505 | 5ddadcf1c6f702f4985012607ff9690460728cf2 | refs/heads/master | 2021-01-10T02:39:34.349320 | 2016-03-28T10:32:34 | 2016-03-28T10:32:34 | 54,883,850 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,472 | cpp | #include <iostream>
#include <fstream>
#include "implem.h"
void interface(void){
std::cout<<"Press 1 to Add Record\nPress 2 to read existing data base\nPress 3 to delete entire data base\nPress 4 to exit program\n";
};
void AddRecord(void){
std::ofstream write;
write.open("Data_Base.txt");
if(!write.... | [
"tomasz.kotowski95@gmail.com"
] | tomasz.kotowski95@gmail.com |
c637875023c0e0f9f38c0ff7e8b497be8b49530f | 08c70a61aea3186ec199d3bf2932cdb3feb6c5b4 | /UVA-Online-Judge-Solved-problems/toph pythagorianRocks.cpp | 4cfa75da7d3909fc094aae422fe83dd73d5be09e | [] | no_license | Ash-ik/Programming-Problems-Solutions | 28d7063eeaa356d3bc1ac28ac770d2bb15d35cff | 4950c2c6e5326502f7758a15c82498ea9c96d85b | refs/heads/master | 2021-01-12T06:19:20.081560 | 2017-01-18T11:14:27 | 2017-01-18T11:14:27 | 77,342,181 | 8 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 194 | cpp | #include<stdio.h>
int maxi(int a,int b)
{
if(a>b) return a;
return b;
}
int main()
{
int a,b,c;
scanf("%d %d %d",&a,&b,&c);
printf("%d\n",maxi(a,maxi(b,c)));
return 0;
}
| [
"ashikcse12@gmail.com"
] | ashikcse12@gmail.com |
196ea290b6041216e8f446d170b3b948d87fbf83 | 650076fb94a086e15bdaa5bd2f51ce72df42dce4 | /src/qt/eros/sendcustomfeedialog.cpp | 6da4d4f82aed67a4885385179c93a88f92378de9 | [
"MIT"
] | permissive | c0de0x/ErosCore | 548075fe85c46e2bb3946f94361689dbad692da8 | a71767f7ee7105dc83973aac8ac60903b69459c9 | refs/heads/master | 2022-11-25T14:35:59.091923 | 2020-07-30T14:38:39 | 2020-07-30T14:38:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,052 | cpp | // Copyright (c) 2019-2020 The PIVX developers
// Copyright (c) 2020 The EROS developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "qt/eros/sendcustomfeedialog.h"
#include "qt/eros/forms/ui_sendcustomfeedialog.h"
... | [
"60665036+ErosCore@users.noreply.github.com"
] | 60665036+ErosCore@users.noreply.github.com |
2c408073ddc5da5a29e115d9d796d29778195c72 | 297b86c2d3da6f6dbbb214193c9738c0520a71fa | /counterFlowFlame2D/system/fvSchemes | 2ac9f363052c6f26bf1ee133c354466f73f83b61 | [] | no_license | wjj31767/thermo_dnn | cdb77e234255fc989a77b9f2607f48d39770d890 | 01bf2b56b8d50d7464b578b8a46f441e40fb7e4a | refs/heads/master | 2023-07-18T01:52:57.375849 | 2021-08-27T07:51:52 | 2021-08-27T07:51:52 | 329,052,697 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,457 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2012 |
... | [
"noreply@github.com"
] | wjj31767.noreply@github.com | |
fd34dee275fc3183ddeb642074d60cde5e4b70d5 | d678a380ad8db03eaf785a6f490f60a11e90c036 | /GeoFeatures/Internal/boost/python/converter/arg_to_python.hpp | 7f0f9ab03daa6a4719ca60a8ea6cd5cb5537b517 | [
"BSL-1.0",
"Apache-2.0"
] | permissive | Niko-r/geofeatures | 0eaa09c65bd9c7e47c3da7bb69e2f20776ba557c | b3b1311f7836b700d47064490e3d7533b8d574ee | refs/heads/master | 2020-05-29T11:07:11.474367 | 2016-07-16T01:43:36 | 2016-07-16T01:43:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,519 | hpp | // Copyright David Abrahams 2002.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef ARG_TO_PYTHON_DWA200265_HPP
# define ARG_TO_PYTHON_DWA200265_HPP
# include <boost/python/ptr.hpp>
# include <boost/python... | [
"hatter24@gmail.com"
] | hatter24@gmail.com |
da53251837e8e58ab415062d369c2ede51d097f2 | 8e7ef8f67ba8bc3cd5ad37376c3570559d8ccbbb | /Client/Client.cpp | e652242835d8dec2d376dc6cd1a7bfd5bc7dc79e | [] | no_license | CongGroup/IWQoS-18 | 648b8a6dc91f0e386b82748108bf47e3fdbc7d82 | 3d05844e1738d73ef5b9eece70e2872e1fd49666 | refs/heads/master | 2020-03-11T07:28:57.628549 | 2018-04-17T07:37:33 | 2018-04-17T07:37:33 | 129,857,927 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,616 | cpp | #include <string>
#include <cstring>
#include <cstdint>
#include <iostream>
#include "config.h"
#include "TMiddleBoxService.h"
#include "../Caravel/ThriftAdapt.h"
#include "../Caravel/TimeDiff.h"
#include "../FastORE/OREHelper.h"
#include "ClientCpp.h"
#include "Header.h"
using namespace std;
using namespace cara... | [
"mengycs@gmai..com"
] | mengycs@gmai..com |
3216310f25de17db26e5ea263b6c9e0d364bca94 | 8308fdb6b1bc6cc60c67dbe4a29b8e5cd6ac614b | /332. Reconstruct Itinerary/solution.cpp | 640d3fc758e019eb67bff5f3a98bfa7a4e650775 | [] | no_license | linlaw0229/leetcode | de619b3643e9907f5129135004e052c9545dc4b9 | ed5c02912b17f577809ea6e3a117dd86c08e306f | refs/heads/master | 2020-06-25T16:54:07.977545 | 2018-12-16T20:52:12 | 2018-12-16T20:52:12 | 96,977,564 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,686 | cpp | /*
Given a list of airline tickets represented by pairs of departure and arrival airports [from, to], reconstruct the itinerary in order. All of the tickets belong to a man who departs from JFK. Thus, the itinerary must begin with JFK.
Note:
If there are multiple valid itineraries, you should return the itinerary tha... | [
"linlaw0229@gmail.com"
] | linlaw0229@gmail.com |
cbaf2416b0ddd3452fe50406e7347c3bc9c3d5d2 | 5b301a667c7b4815b24b5015bfd90583604fc8e1 | /CLookDisk.cpp | e1cf5fe79b41bb0cbf15b9f521e09416d1bfd78f | [] | no_license | Badgerweasel/Hard-Drive-Simulator | 76aeb53f99e686c24fad6e01e170e7670f6f1ea0 | 1ae29450a698643ae8997bf3b653ff95d56ebc11 | refs/heads/master | 2021-01-04T16:04:57.529462 | 2020-02-20T01:31:14 | 2020-02-20T01:31:14 | 240,627,667 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,040 | cpp | #include "CLookDisk.hpp"
#include "Request.hpp"
#include <stdlib.h>
#include <vector>
CLookDisk::CLookDisk()
{
diskQueue = new CLookQueue();
serve = nullptr;
length = 0;
numInterrupts = 0;
totalLengthOfQueue = 0;
requestsServed = 0;
maxLengthOfQueue = 0;
track = 0;
sector = 0;
}
CL... | [
"Shipwreck145@gmail.com"
] | Shipwreck145@gmail.com |
b097f5f33f6bd79dc5c9b13b95a63c74f0433ed8 | a92b18defb50c5d1118a11bc364f17b148312028 | /src/prod/src/retail/native/FabricDnsService/fabric/FabricAsyncOperationCallback.h | 89a5b77f32bb7c3650352b233a5bdcb628ca3361 | [
"MIT"
] | permissive | KDSBest/service-fabric | 34694e150fde662286e25f048fb763c97606382e | fe61c45b15a30fb089ad891c68c893b3a976e404 | refs/heads/master | 2023-01-28T23:19:25.040275 | 2020-11-30T11:11:58 | 2020-11-30T11:11:58 | 301,365,601 | 1 | 0 | MIT | 2020-11-30T11:11:59 | 2020-10-05T10:05:53 | null | UTF-8 | C++ | false | false | 1,255 | h | // ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------
#pragma once
namespace DNS
{
... | [
"noreply-sfteam@microsoft.com"
] | noreply-sfteam@microsoft.com |
4e8300150d7f0ec8aeb9314bbadd3be24d8ea5ce | cd1f25c01cfe4bd596fd38d0226c469772351a50 | /CBP/src/qt/tradingdialog.h | 878bf574dfdcf555c60470ea4c30aa811c67d59d | [
"MIT"
] | permissive | Crypto-Block-Pay/CBP | 74a7f7fd1b52ab09101e5be5e8e2760b18375b26 | cf0a3b8b70efa8879de7902659c9b4c1dde8423e | refs/heads/master | 2020-03-21T11:02:41.049666 | 2018-06-29T20:54:18 | 2018-06-29T20:54:18 | 138,486,046 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,714 | h |
#ifndef TRADINGDIALOG_H
#define TRADINGDIALOG_H
#include <QDialog>
#include <QObject>
#include <stdint.h>
#include "ui_tradingdialog.h"
#include "clientmodel.h"
#include "walletmodel.h"
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
#include <QJsonObject>
#include <QJsonArray>
namespace Ui... | [
"info@magtvireland.com"
] | info@magtvireland.com |
5214f778cc0c6242430bdcefd958d63e588a92f6 | 0a443bd0a525fc81c55639a797a601ef5482d7b3 | /SuperMarket.cpp | 9c05fa08d9039bf736f891118bc11dd650f5e283 | [] | no_license | JPValiente/supermarketmanager | b85793b549ca22bf2def380afe552c47b7402b46 | d2dec0669b58738939303b3c100e29c34b1dd826 | refs/heads/master | 2020-06-05T01:06:13.189362 | 2019-06-19T05:36:54 | 2019-06-19T05:36:54 | 192,260,006 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,101 | cpp | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <ctime>
#include <unistd.h>
#include <thread>
//#include... | [
"anclenius@gmail.com"
] | anclenius@gmail.com |
0ebe921b8c0ce4a5d5b8ceadbd1684a729f6991f | 1210453e38968431db342cc34260b281db07b923 | /example-AllComponentsGui/src/ofApp.h | 09e4b95c3130b530bb7c9ef8cc1be6b3aee516cb | [
"MIT"
] | permissive | braitsch/ofxDatGui | d56d08c88e906dad07e7afae13a3a6e26d889bf9 | 21dadfe612c16bf364d9bcdfe5a6055ab4eb2891 | refs/heads/master | 2023-08-07T05:00:58.808296 | 2018-12-17T22:07:56 | 2018-12-17T22:07:56 | 41,451,953 | 485 | 129 | NOASSERTION | 2022-01-26T14:21:28 | 2015-08-26T21:59:31 | C++ | UTF-8 | C++ | false | false | 817 | h | #pragma once
#include "ofMain.h"
#include "ofxDatGui.h"
class ofApp : public ofBaseApp{
public:
void setup();
void draw();
void update();
ofxDatGui* gui;
bool mFullscreen;
void refreshWindow();
void toggleFullscreen();
void keyPressed(int key);
... | [
"stephen@braitsch.io"
] | stephen@braitsch.io |
de9c4034f4db87dc386269571c350a855a8b8767 | 23389702ae1c5b167672cfef069fcb7e99025e2c | /lab5/lab5/lab5/BinarySearchTreeNode.h | c701949c715da6dafb645baf9c130380b9a7baab | [] | no_license | verdande2/CST276-Design-Patterns-Winter-13 | 07d11378a56394b0ad5219dfc9825592e0ef8788 | bf1919031e13ebeb7e34f37e1276d7c76caa5481 | refs/heads/master | 2020-09-23T03:19:58.396694 | 2016-08-23T17:10:14 | 2016-08-23T17:10:14 | 66,387,169 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,507 | h | /************************************************************************
* Class: BinarySearchTreeNode
*
* Purpose: This class is a node of a binary search tree.
*
* Manager functions:
* BinarySearchTreeNode()
* BinarySearchTreeNode(Node* left, Node* right, T data)
* BinarySearchTreeNode(T data)
* BinarySearchTreeNo... | [
"ASparkes@jeldwen.com"
] | ASparkes@jeldwen.com |
5d6e536f7da4e59b10df87e272e854e143bf3389 | 960e1519a2339633b9094fe5dea7695d13eb6854 | /Day1/3Looping/digsum.cpp | 3c4dd556b87fa356221fe6a3d0c5e9f5453d4f79 | [] | no_license | shardik99/psuc-workshop | 1425336e695682e5448b834e67971f28c815aba5 | 0a4d848d54f9dd775bbdbeec53bb0aac2a4707a5 | refs/heads/master | 2021-07-24T23:57:11.474235 | 2017-11-04T18:08:38 | 2017-11-04T18:08:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 260 | cpp | //Program to calculate sum of digits of a number
#include<iostream>
using namespace std;
int main(){
int num, sum, dig;
cin>>num;
sum=0;
while(num!=0){
dig=num%10;
sum+=dig;
num/=10;
}
cout<<"Sum: "<<sum<<endl;
} | [
"shardik99@gmail.com"
] | shardik99@gmail.com |
9e58139ca15a65e3f46c4bc9807a7aed0d0d57ca | a93593acd72dccc2bf92d349c8ffd619f2dd1be0 | /NameRunner/NameRunner/proj.win32/Map.h | 6d098700d4d1c6dccb3cc193145842ec9a6ea1a5 | [] | no_license | opp0615/batwing | 0586ee08e377bee70df1c608f87be540601a648d | 414ca0b50badba58893587da618d26477454afb0 | refs/heads/master | 2016-09-06T19:33:48.918485 | 2014-02-17T02:47:44 | 2014-02-17T02:47:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 274 | h | #pragma once
#include "cocos2d.h"
using namespace cocos2d;
class Map {
private:
CCSprite* m_map1;
CCSprite* m_map2;
int m_game_speed;
int width,height;
public:
Map(CCSprite* g_map1,CCSprite* g_map2,int g_game_speed);
void Scrolling();
CCSprite* getMap(int n);
}; | [
"opp0615@naver.com"
] | opp0615@naver.com |
5aad0e9bfe1156183a577909eedf219fd1cd8862 | f648f462fbdd8055b321f44c12e7a6b18a0df1f3 | /1369.cpp | e0d9cc8071afb8abb82f55e5c9ca97443cef6e8f | [] | no_license | ShuangjiaMo/OJ | ffb26561c14e9b9c8e5b507ac3f49b28a9bee19f | d219d6cbe028a27ac05c60f72460a715c4a52f24 | refs/heads/master | 2021-01-21T14:12:16.569083 | 2016-02-29T11:51:26 | 2016-02-29T11:51:26 | 35,718,197 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 412 | cpp | #include <iostream>
using namespace std;
int jump(int n, int s, int l)
{
if(n==0) return 0;
else if(n==s) return 1;
else if(n==l && l%s != 0) return 1;
else if(n==l && l%s == 0) return 2;
else if(n>l) return jump(n-s, s, l)+jump(n-l, s, l);
}
int main()
{ int n, a, b;
long long ans;
cin >> n >... | [
"1055289361@qq.com"
] | 1055289361@qq.com |
87751bf93e011afcf8453a3b4723e316f91ce716 | 70c7eaeade3152e2471dbed3e6dd1ac2372d8e16 | /firmware/main/controller.hpp | 7ba40d7e05bcad62130d9d773ae1ce00d9f517b8 | [] | no_license | samsface/boop | b656afde87aa9bf0422527bafa2cc1f2a9e18f20 | ead5580f1bb7ae5cbc7dbcb0292c9b88a9289328 | refs/heads/master | 2020-04-15T01:05:13.540245 | 2019-01-13T23:15:20 | 2019-01-13T23:15:20 | 164,263,115 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,964 | hpp | #pragma once
#include "config.hpp"
#include "comm.hpp"
#include "script.hpp"
void(*g_reboot)(void) = 0;
struct comms
{
const config::config& c;
comm::client<comm::channel::hardware_serial, comm::protocol> serial;
comm::client<comm::channel::wifi, comm::protocol> wifi;
comms(const config::config& c) : c{ c }... | [
"samsface@gmail.com"
] | samsface@gmail.com |
a884cb9b9abefbf860367bfbdd62f5079c9cefbe | 9c1c77f33cc17042c09dde624f9f56a24b2a9094 | /Classes/LevelConfigUtil.h | c5e1b98fe211b0ae0bf1ea6d9da14ed55c6e08f2 | [] | no_license | spocklin/spockTower | 9601fda1aa0df3b23176adffb505f99e1ba4ef1c | da20117b3615fd22fab73a9a00c587557c95399b | refs/heads/master | 2020-04-06T06:28:03.646344 | 2016-09-30T10:05:51 | 2016-09-30T10:05:51 | 69,004,890 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,207 | h | //
// LevelConfigUtil.h
// CarrotFantasy
//
// Created by Yan on 14-9-26.
//
//
#ifndef __CarrotFantasy__LevelConfigUtil__
#define __CarrotFantasy__LevelConfigUtil__
#include "PublicDefine.h"
class LevelConfigUtil:public Ref
{
public:
CREATE_INSTANCE_FUNC(LevelConfigUtil);
DESTROY_INSTANCE_FUNC(... | [
"mac@macdeMac-Pro-5.local"
] | mac@macdeMac-Pro-5.local |
960964f65d36f02a5a2e74a6f89de15b21872bd4 | a83829cc83b5c667f8b75245959502041f07de00 | /subarray.cpp | 34ffafa794e2080382dd1c6fcd70833114ec36f0 | [] | no_license | anirudhjack/Competitive-programming | 6fbb815cbce14e6a994901cca7019314e1e9c5b5 | 0a93bdfa74f0f090b64065af0501968711eb0cac | refs/heads/main | 2022-12-28T03:25:18.605795 | 2020-10-18T19:42:59 | 2020-10-18T19:42:59 | 303,385,974 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,364 | cpp | #include<bits/stdc++.h>
#define ll long long
#define pb push_back
#define mp make_pair
using namespace std;
#define p 1000000007
//Subarray questions
//MAXIMUM SUB ARRAY SUM
//We use kadane algorithm to find maximum subarray sum in an array.
//Algorithm:If an array contains positve integers only then whol... | [
"noreply@github.com"
] | anirudhjack.noreply@github.com |
f7f2feb941f3f38ed61032b0b285466e90682a0a | 2ea35e2e0a5eae434841eef54a480e4402f2f3e7 | /s7/Buffer.cpp | 8fb513a5adfe5aa8ae532d9d96fff54955e4f821 | [] | no_license | zhangwenxiao/Cpp-Reactor-Networklib | 0566017e748d7237e8e69389aaaf709fe614612b | e236bea8cd02a0f474f0ff2ed6d858baf94e59f5 | refs/heads/master | 2020-03-26T01:42:01.399151 | 2018-08-26T13:58:54 | 2018-08-26T13:58:54 | 144,378,371 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 741 | cpp | #include "Buffer.h"
#include "SocketsOps.h"
#include <muduo/base/Logging.h>
#include <errno.h>
#include <memory.h>
#include <sys/uio.h>
using namespace muduo;
ssize_t Buffer::readFd(int fd, int* savedErrno)
{
char extrabuf[65536];
struct iovec vec[2];
const size_t writable = writableBytes();
vec[0].... | [
"1321457973@qq.com"
] | 1321457973@qq.com |
12c773b201bc5f619a32afd6aa9dcec310ff3805 | 6465cf427614315cacb8c17c2bcb9fcbace99dac | /32blit-pico/display.hpp | bef4ce0de786cf62e29f21dcc9e70e56eb435f21 | [
"MIT"
] | permissive | lenardg/32blit-beta | 0d7be7f6cfec4187c9617c6b9f61837665ee4516 | f40b0292c29fd866e50c67c7edcee3f9b1614265 | refs/heads/master | 2022-10-26T04:51:34.091856 | 2022-09-30T10:49:00 | 2022-09-30T10:49:00 | 227,807,088 | 0 | 0 | MIT | 2019-12-13T09:48:01 | 2019-12-13T09:48:01 | null | UTF-8 | C++ | false | false | 379 | hpp | #pragma once
#include <cstdint>
#include "engine/api_private.hpp"
void init_display();
void update_display(uint32_t time);
bool display_render_needed();
blit::SurfaceInfo &set_screen_mode(blit::ScreenMode mode);
bool set_screen_mode_format(blit::ScreenMode new_mode, blit::SurfaceTemplate &new_surf_template);
void s... | [
"charlie@daft.games"
] | charlie@daft.games |
26e6ea8e5036014c23699d00ef9ab8a06802d888 | fb2707e4b05250576fcc4c84950c40d3c17346a2 | /trex/utils/bits/SingletonDummy.hh | 14e2b3118e09f942a9aff15dcdb32bc69bf5bdff | [
"BSD-3-Clause"
] | permissive | fredpy/trex2-agent | 649d4b0b3b8f24e38620ccb3f31f99db3cd62af3 | 156bb198b7d058b54f710331da3b008a68a51793 | refs/heads/trex_stable | 2021-11-23T11:32:10.087191 | 2021-10-26T11:44:29 | 2021-10-26T11:44:29 | 32,430,406 | 14 | 15 | null | 2017-06-28T08:23:33 | 2015-03-18T01:20:53 | C++ | UTF-8 | C++ | false | false | 4,880 | hh | /** @file "SingletonDummy.hh"
* @brief Defintion of the SingletonDummy class
*
* This header is for internal use and define an
* abstract definition of the SingletonWrapper
* used to create and manipulate phoenix singletons
* internally
*
* @author Frederic Py <fpy@mbari.org>
* @ingroup utils
*/
/***********... | [
"fredpy@gmail.com@eff219cc-a5a7-32d8-cb09-f88e880e2402"
] | fredpy@gmail.com@eff219cc-a5a7-32d8-cb09-f88e880e2402 |
ba9708d7736dd52159a3ffc6fd4abe902f79a640 | 062f73b7e41f6a3a9f6a33845e60788638bcadb5 | /src/SteenX/LLVM/MetadataExtractor.cpp | 4837077818ccc27ae9f3047f296e1a21b909c44c | [
"MIT"
] | permissive | cherusker/racehog | 7a75d98391b98f1c9d76d1d7f13c19c635fd7d0b | 30f6285866f528fae0e05a8e8f2c354b1e171b1f | refs/heads/master | 2020-05-22T14:10:14.931131 | 2019-05-13T08:35:56 | 2019-05-28T20:13:52 | 186,378,936 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,353 | cpp | #include "SteenX/LLVM/MetadataExtractor.h"
#include "llvm/IR/DebugInfoMetadata.h"
// TODO: Avoid (some of the) duplicate code in here?
racehog::Function::MetadataReference
racehog::MetadataExtractor::
extractFrom(const llvm::Function& func) {
const auto sub = func.getSubprogram();
if (sub == nullptr)
return... | [
"prince.cherusker@gmail.com"
] | prince.cherusker@gmail.com |
c2cc42c13bcf20ece58df2ced1e8656cf0eb61fa | ffcabd96a938aadefc02dd2e3e010099bcf531c7 | /src/state_initializer.cpp | ebbd9a3b741bdc889ab47242f5781e84528c7be5 | [] | no_license | jarsam/tonav_msckf | 246d93a68c9df1b7632e167aa45bf1309222b0c6 | 3aa91e59831e01998e2dd8c72e1e6783874a0706 | refs/heads/master | 2021-06-16T06:23:11.087884 | 2017-05-07T07:50:39 | 2017-05-07T07:50:39 | 90,516,937 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 798 | cpp | #include "state_initializer.h"
#include <Eigen/Core>
#include "quaternion.h"
StateInitializer::StateInitializer()
: orientation_(Quaternion::identity()) {
position_ = Eigen::Vector3d::Zero();
velocity_ = Eigen::Vector3d::Zero();
}
void StateInitializer::setOrientation(const Quaternion& orientation) ... | [
"jackshirobots@gmail.com"
] | jackshirobots@gmail.com |
b627674bcb169c79bb94808c9e7f3580cb83a554 | b4828cf9403fedde5dd346b3338a5f4bf0f1eb96 | /leetcode_sol/39-Combination_Sum.cpp | 1daa6de278e243fbfd5844ae0f199e58f6e1e9c6 | [] | no_license | Masters-Akt/CS_codes | 9ab3d87ca384ebd364c7b87c8da94b753082a7e3 | 1aaa107439f2e208bb67b0bcca676f90b6bc6a11 | refs/heads/master | 2023-01-24T00:11:05.151592 | 2023-01-21T18:45:57 | 2023-01-21T18:45:57 | 292,529,160 | 6 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 714 | cpp | class Solution {
private:
void backtrack(vector<vector<int>>& ans, vector<int>& candidates, vector<int> temp, int target, int start){
if(target<0) return;
if(target==0) ans.push_back(temp);
else{
for(int i=start; i<candidates.size();i++){
temp.push_back(candidates... | [
"64123046+Masters-Akt@users.noreply.github.com"
] | 64123046+Masters-Akt@users.noreply.github.com |
1b04a28f4365cfc5d3fa8642ed6c1396c9d4eafa | fe7c6ccb491b4203a42f956a67a43c236dc75f11 | /mbgl-core/src/mbgl/text/tagged_string.cpp | 251e21726cce0083a5eab7c97be11188b734361b | [] | no_license | luyufanzhi/win_mapbox | f571fef859bb39927b6590df606ea37f3eef9d73 | 4e024cbd35237e4994b65adb61b265bebed41ea9 | refs/heads/master | 2023-04-14T20:45:09.734962 | 2020-05-19T11:18:27 | 2020-05-19T11:18:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,611 | cpp | #include <mbgl/text/tagged_string.hpp>
#include <mbgl/math/minmax.hpp>
#include <mbgl/util/i18n.hpp>
namespace mbgl {
void TaggedString::addSection(const std::u16string& sectionText, double scale, FontStack fontStack, optional<Color> textColor) {
styledText.first += sectionText;
sections.emplace_b... | [
"machfe@126.com"
] | machfe@126.com |
fcada4c9ccc791bd0c96796428df70d8b2cac9c9 | d4d2b9b61c28947542b3d0b9a3d84b9031a04d30 | /Menu.cpp | 8b0d3c5b3dbd4653a69c7aa0cf052b2f5e5975bb | [] | no_license | DougHughes8906/find-the-thief | 7a9d2c484529c027f4e1b1a369b10186f46046e7 | 6c31e8d26f9f957c1dca85f7265b1efeae2367fa | refs/heads/master | 2020-09-19T16:19:40.421724 | 2019-12-16T17:38:26 | 2019-12-16T17:38:26 | 224,244,225 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,256 | cpp | /*********************************************************************
** Program name: Menu.cpp
** Author: Doug Hughes
** Date: December 2, 2019
** Description: Implementation file for the Menu class.
** The class allows for the creation, storage, and use
** of a dynamic menu. The sole member variable is a
** ve... | [
"dhughes8906@gmail.com"
] | dhughes8906@gmail.com |
3119883d03425b1530196d1a91704b836b20f15f | 7cfd43ff5627c7cb71cfbea5e1cb1e18665ebdb7 | /src/RTSLogicSystem.cpp | 70cd46368943efb6528364c497e7540c181ac9d3 | [
"MIT"
] | permissive | RHUL-CS-Projects/towersAndMuskets | 1d0a89012fda161e7c74e1e9fbbc1eeaa2535287 | 6679857813e6bcd55e3bfc4f587e23e76da6e603 | refs/heads/master | 2021-01-17T08:04:13.858526 | 2016-06-12T21:33:55 | 2016-06-12T21:33:55 | 60,636,214 | 8 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 33,470 | cpp | #include <RTSLogicSystem.h>
#include <EventReceiver.h>
#include <ObjectManager.h>
#include <list>
#include <RenderManager.h>
#include <StatePlaying.h>
#include <RTSLogicComponent.h>
#include <SelectableComponent.h>
#include <PathMovementComponent.h>
#include <SteeringComponent.h>
#include <TransformComponent.h>
#inclu... | [
"zyvb031@029d1f5e-ba45-47f3-9ba4-d89dc58e0cf9"
] | zyvb031@029d1f5e-ba45-47f3-9ba4-d89dc58e0cf9 |
b830ef10885819244b8e5c9598a80b513e984d95 | 992df225867ed5530649e3e739b8345cb89d8489 | /nfcthread.h | 9b2818ad5ddfff1d675c330146fcf0fd54a97493 | [] | no_license | vamanea/nfcdoor-qtlock | f11586cabadc41b04eb8a3ce541a6788b9c2e662 | 79ee63db198fa774f0f0a99a4a81bfafec9b6247 | refs/heads/master | 2021-01-20T12:20:40.166217 | 2015-07-06T19:01:06 | 2015-07-06T19:01:06 | 38,389,457 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 704 | h | #ifndef NFCTHREAD_H
#define NFCTHREAD_H
#include <QThread>
#include <QVariant>
#include <QTemporaryFile>
#include <nfc/nfc.h>
class NFCThread : public QThread
{
Q_OBJECT
public:
explicit NFCThread(QObject *parent = 0);
void run();
signals:
void nfcLog(const QVariant &line);
void certValidated(con... | [
"valentin.manea@gmail.com"
] | valentin.manea@gmail.com |
a052a46b6f78d0a857087e2e0318e7009d99575b | 38f055a979a0e4acecf5d2a5ad0d0344d1f52db2 | /src/mess/includes/newbrain.h | c0410f885b3cd60d23c98a65b6ec43e96852fae0 | [] | no_license | poliva/mame-rr | 0cc05bed2a80addbb906e97b8f25633496eecab6 | 124dbb66844bc6d8747b19b8483cefa28fb6b7fb | refs/heads/master | 2021-01-22T05:16:42.247183 | 2015-04-24T08:59:22 | 2015-04-24T08:59:22 | 34,506,421 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,593 | h | #pragma once
#ifndef __NEWBRAIN__
#define __NEWBRAIN__
#define ADDRESS_MAP_MODERN
#include "emu.h"
#include "cpu/z80/z80.h"
#include "cpu/z80/z80daisy.h"
#include "cpu/cop400/cop400.h"
#include "machine/upd765.h"
#include "machine/6850acia.h"
#include "machine/adc0808.h"
#include "machine/z80ctc.h"
#i... | [
"pau@eslack.org"
] | pau@eslack.org |
4c6bea20429463089dbbff698087aabd22dcd8da | 5ee7b59b955ebde297f0dd924382a96a79771681 | /plnrcmbd/CrdPlnrNav/PnlPlnrNavGlobal.h | ad5a398250653cca0d4ef6f129009197671bdf9b | [] | no_license | epsitech/planar | a3b22468e6718342218143538a93e7af50debee0 | e97374190feaf229dac4ec941e19f6661150e400 | refs/heads/master | 2021-01-21T04:25:32.542626 | 2016-08-07T19:20:49 | 2016-08-07T19:20:49 | 48,572,177 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,729 | h | /**
* \file PnlPlnrNavGlobal.h
* job handler for job PnlPlnrNavGlobal (declarations)
* \author Alexander Wirthmueller
* \date created: 4 Dec 2015
* \date modified: 4 Dec 2015
*/
#ifndef PNLPLNRNAVGLOBAL_H
#define PNLPLNRNAVGLOBAL_H
// IP custInclude --- INSERT
/**
* PnlPlnrNavGlobal
*/
class PnlPlnrN... | [
"awirthm@gmail.com"
] | awirthm@gmail.com |
2fc1e5d12a4bad7722d2cf655f848518f86f7a3c | 0e330acab757857fb0855b8a03e4f1c113e64b13 | /src/LatMRGRoutines.cc | 34b128e4ffc50f372d2cf1560f6b198ab4ce8037 | [] | no_license | erwanbou/LatMRG | 8ce14730ac68feba840f1c04d45a0ce251bff8f1 | 8ecc3a9c95c211f0fe534de54c4217f1baaf1a63 | refs/heads/master | 2021-01-23T12:33:45.686517 | 2017-09-01T22:09:56 | 2017-09-01T22:09:56 | 93,171,349 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 10,424 | cc | // This file is part of LatMRG.
//
// LatMRG
// Copyright (C) 2012-2016 Pierre L'Ecuyer and Universite de Montreal
//
// 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.ap... | [
"paul.wambergue@gmail.com"
] | paul.wambergue@gmail.com |
172e6899e2704a6d3343ffbd097bcf956a7e1da1 | 270f8f38fa57bea3e99199450439da1c8106ad23 | /src/engine/seeder.cpp | 538d0dac23d70d1b5a3f337a3726c37865f8adac | [] | no_license | volodymyrkochyn/qttetris | b19dfa5a72f76b39721c4193e9b85191a162803d | 8a271c83ce6cb85cbfd412be7adef5865d9d5fb8 | refs/heads/master | 2020-06-16T17:43:58.320734 | 2016-12-06T00:46:01 | 2016-12-06T00:46:01 | 75,079,117 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 109 | cpp | #include "seeder.h"
#include <QTime>
uint Seeder::seed() const
{
return QTime::currentTime().msec();
}
| [
"vovakochun@gmail.com"
] | vovakochun@gmail.com |
d19965de3b4a29a2108be6380d1221d2d0f1286f | bc1c43d7ebb8fbb23d022f1554e1639285f276b2 | /osl/sample/performance/isCheckPerf.cc | 9e4301c1ed788ebc57924015c43990d4bf4989bc | [] | no_license | ai5/gpsfish | d1eafdece0c7c203c32603892ff9263a8fbcba59 | b6ed91f77478fdb51b8747e2fcd78042d79271d5 | refs/heads/master | 2020-12-24T06:54:11.062234 | 2016-07-02T20:42:10 | 2016-07-02T20:42:10 | 62,468,733 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,547 | cc | /**
* 王手判定の速さを見る
*/
#include "osl/numEffectState.h"
#include "osl/move_generator/allMoves.h"
#include "osl/move_generator/move_action.h"
#include "osl/move_classifier/check_.h"
#include "osl/csa.h"
#include "osl/misc/perfmon.h"
#include <iostream>
#include <cstdio>
using namespace osl;
int main(int argc,char **argv)... | [
"taibarax@gmail.com"
] | taibarax@gmail.com |
85c3f9e86daa24b9800df2efe3f9b768490517d8 | 89f8351a69ead623623dd30806df829adb2a677f | /16-模型视图投影矩阵/模型视图投影矩阵/main.cpp | 02ba0a31ac397cf20684be8fa0d09ab4119a4f86 | [
"Apache-2.0"
] | permissive | AlanGeIT/OpenGL | 1bba917c0f3e8cf8710b2a5487cd5076368169b0 | 4e49c72aa1eb587ecc0ce12ab73c3356c08a99cd | refs/heads/master | 2022-11-06T09:55:23.095504 | 2020-06-28T09:45:52 | 2020-06-28T09:45:52 | 275,553,784 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,253 | cpp | //
// main.cpp
// 模型视图投影矩阵
//
// Created by Alan Ge on 2020/4/19.
// Copyright © 2020 AlanGe. All rights reserved.
//
#include <stdio.h>
#include "GLTools.h"
#include "GLMatrixStack.h"
#include "GLFrame.h"
#include "GLFrustum.h"
#include "GLGeometryTransform.h"
#include "GLBatch.h"
#include "StopWatch.h"
#include... | [
"alange@Alan16.local"
] | alange@Alan16.local |
e36aeed956ce870ba54b946663d4460b54b589b6 | 169bd4618ac6e2301296bdb82b1de06e7f84ef59 | /include/hmac_sha512.h | 4ed65c4464ce73ed1ab8fbcf1c7d15dfee4bc663 | [
"Apache-2.0"
] | permissive | madMAx43v3r/mmx-node | be9eeff35c9f6b11d45ebcc2b695b90c149550df | a0f4fdfede7cfdbd6c548a00c8a4905e6a76506c | refs/heads/master | 2023-08-23T06:32:15.434280 | 2023-08-18T08:17:15 | 2023-08-18T08:17:15 | 431,829,941 | 203 | 55 | Apache-2.0 | 2023-09-01T10:52:52 | 2021-11-25T12:02:35 | C++ | UTF-8 | C++ | false | false | 772 | h |
// Copyright (c) 2014-2018 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_CRYPTO_HMAC_SHA512_H
#define BITCOIN_CRYPTO_HMAC_SHA512_H
#include <sha512.h>
#include <stdint.h>
#include... | [
"max.wittal@mwittal.de"
] | max.wittal@mwittal.de |
ebb94a9ba8e6284bbb833b12c682ee8018ed1d23 | 8ce14cc6b531cc4be6acbf5295d701dd49c851f1 | /Client/include/connectionHandler.h | 763be8ce3f3377b2cebc56dff72fdf8a93b9e9a0 | [] | no_license | danielab1/SocialNetwork | 2db807dbb4647e558ef201301c6a9ff2f854be5e | b31990f0bc2f243301c3459611a24136c4506058 | refs/heads/master | 2022-12-15T14:22:21.132465 | 2020-09-15T19:20:49 | 2020-09-15T19:20:49 | 295,826,822 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,873 | h | #ifndef CONNECTION_HANDLER__
#define CONNECTION_HANDLER__
#include <string>
#include <iostream>
#include <boost/asio.hpp>
#include <condition_variable>
using boost::asio::ip::tcp;
class ConnectionHandler {
private:
const std::string host_;
const short port_;
boost::asio:... | [
"danielab@post.bgu.ac.il"
] | danielab@post.bgu.ac.il |
6108b014744b36a430f03d4bd50b66dd2500e3b9 | 715023da006513f0dd09e5c4267d371b8ba4e4f6 | /xray-svn-trunk/xr_3da/line_edit_control.cpp | 9f5defe269d3b8bbb6f16cb7b6e72482296d06cf | [] | no_license | tsnest/lost-alpha-dc-sources-master | 5727d58878b1d4036e8f68df9780f3d078e89f21 | fbb61af25da7e722d21492cbaebd6670d84e211c | refs/heads/main | 2023-02-11T16:37:16.570856 | 2021-01-09T17:09:49 | 2021-01-09T17:09:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,081 | cpp | ////////////////////////////////////////////////////////////////////////////
// Module : line_edit_control.cpp
// Created : 21.02.2008
// Author : Evgeniy Sokolov
// Description : line edit control class implementation
////////////////////////////////////////////////////////////////////////////
#include "stdafx.h"... | [
"58656613+NikitaNikson@users.noreply.github.com"
] | 58656613+NikitaNikson@users.noreply.github.com |
0a381e4ef1fdfdbfa79e92782a5692a993de96a4 | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/drivers/serveravailability/watchdog/main.cpp | fce9b7feb2ee9ab048bce39510c3b2eb6e77262f | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 6,922 | cpp | /*++
Copyright (c) 1991 - 2001 Microsoft Corporation
Module Name:
## ## ### #### ## # #### ##### #####
### ### ### ## ### # ## # ## ## ## ##
######## ## ## ## #### # ## ## ## ## ##
# ### ## ## ## ## # #### ## ## ## ## ##
# # ## #... | [
"seta7D5@protonmail.com"
] | seta7D5@protonmail.com |
28d354f19dc3e8252dbd14eb1b7756e77ef6d80e | c6d77298e99ee0193cb1f7dc11b71b64196e2e66 | /plugin/jit.h | 3ec44d4233f06a93824db28a51b144e60bf1f58d | [
"BSD-2-Clause"
] | permissive | blackeagle1122/samp-plugin-jit | 6764a1cd25f9e13ae2194774d2ac2d28f3b1c012 | 5d51b7225ce9ed27634ddbaacb126dfe2d303ad3 | refs/heads/master | 2021-01-16T22:03:31.375658 | 2014-03-30T15:38:04 | 2014-03-30T15:40:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,685 | h | // Copyright (c) 2012-2014 Zeex
// 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 conditions an... | [
"zeex@rocketmail.com"
] | zeex@rocketmail.com |
8857e1e2e7e2dc2583f97926e8d30663e43bde10 | 6b029fff7f45d0458ee1454518644366c5537e75 | /grap/list.h | ea497c4b60c61a6582ed45708015c01ef99262db | [] | no_license | sergeychaliy2/Algorithms | 752f50d0832c1a0d2676ebd972a04891e73dc4ca | 99ebd01abcdb3bdf301cbb546123ff73d416f3fb | refs/heads/master | 2023-02-12T10:29:48.224943 | 2021-01-11T10:27:12 | 2021-01-11T10:27:12 | 292,372,383 | 0 | 0 | null | 2020-09-02T19:11:58 | 2020-09-02T19:11:57 | null | UTF-8 | C++ | false | false | 1,561 | h | #ifndef LIST_H
#define LIST_H
// List
// Stores integer values inside
typedef unsigned int Data;
struct ListItem;
template<class ListItem>
struct List {
ListItem *pHead;
//Iterator
struct Iterator {
private:
ListItem *pHead;
public:
Iterator(ListItem *pHead);
Iterator operator++(int);
L... | [
"noreply@github.com"
] | sergeychaliy2.noreply@github.com |
ecde547969687bf2d53e909606e9d70f0fecc303 | 346c17a1b3feba55e3c8a0513ae97a4282399c05 | /CodeGenere/photogram/cEqAppui_GL__PTInc_M2CPolyn4.h | cc1d33d6482627e11291d9ba8627c393e5cdd0fa | [
"LicenseRef-scancode-cecill-b-en"
] | permissive | micmacIGN/micmac | af4ab545c3e1d9c04b4c83ac7e926a3ff7707df6 | 6e5721ddc65cb9b480e53b5914e2e2391d5ae722 | refs/heads/master | 2023-09-01T15:06:30.805394 | 2023-07-25T09:18:43 | 2023-08-30T11:35:30 | 74,707,998 | 603 | 156 | NOASSERTION | 2023-06-19T12:53:13 | 2016-11-24T22:09:54 | C++ | UTF-8 | C++ | false | false | 1,325 | h | // File Automatically generated by eLiSe
#include "general/all.h"
#include "private/all.h"
class cEqAppui_GL__PTInc_M2CPolyn4: public cElCompiledFonc
{
public :
cEqAppui_GL__PTInc_M2CPolyn4();
void ComputeVal();
void ComputeValDeriv();
void ComputeValDerivHessian();
double * AdrVarLo... | [
"deseilligny@users.noreply.github.com"
] | deseilligny@users.noreply.github.com |
0aa62a5aa02acd1a35b105009a1b6178646db0b5 | a615de86e07d0723d6fe24eaadc0a2efc0efacb4 | /ArduinoJson.h | 1c573262a9afd32f9c1f90e6f8046ce4d3cb290d | [] | no_license | Cyrhades/Compteur-Youtube-Arduino-NodeMCU-ESP8266 | da011a2d86a6d9d0b6c7c01d18c03e9218c460c1 | 0a0369b82dc77957497c529784ef09f3376f6a96 | refs/heads/master | 2020-07-09T02:43:53.260109 | 2019-08-22T18:55:20 | 2019-08-22T18:55:20 | 203,852,598 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 97,402 | h | // Copyright Benoit Blanchon 2014-2017
// MIT License
//
// Arduino JSON library
// https://bblanchon.github.io/ArduinoJson/
// If you like this project, please add a star!
#pragma once
#include <stddef.h> // for size_t
#include <stdint.h> // for uint8_t
#include <string.h>
namespace ArduinoJson {
namespace Interna... | [
"cyrhades76+heroku@gmail.com"
] | cyrhades76+heroku@gmail.com |
1514e097a07a660e87eb79d4ab17a2b271b018ea | ae90b21a75bcada2db96474f5624d73291459487 | /RRS_Transmitter/out/WLANT/demodulator.cpp | f79c8ff4f52b33d6bff13437c5b230c3b98449b7 | [] | no_license | Elizarspbspb/RRFI | c8f5803cfb76b99b460f81855916065f32bae06b | 827b3eeaddea1dda9a14137b87ea47ba11a929bf | refs/heads/master | 2023-07-11T06:24:28.333827 | 2021-08-13T16:04:02 | 2021-08-13T16:04:02 | 394,362,396 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,714 | cpp | /* File History
* $History: demodulator.c $
*
* ***************** Version 5 *****************
* User: Akozlov Date: 16.12.04 Time: 16:12
* Updated in $/WLAN
* Calculating of channel_sq_amplitudies changed
*
*/
#include "demodulator.h"
#include "sim_params.h"
#include "sim_consts.h"
#inc... | [
"valera81368@mail.ru"
] | valera81368@mail.ru |
b2f6235ec403bac7d2e4cb5c1199dd0a2b473c5c | eecf0603c8336a49d35ca87f12ad7b2769115422 | /QOSS-V1.0/DenisovRadiator/CodeJin/SourceModeGenerationD.cpp | 2ec894beae3a7b3e7d35b79437ef3c20312be3c2 | [] | no_license | Devil-ly/QOSS-V1.0 | e90fab43f9a69fdd16f5cbfc5f95db83fa09e656 | 73e15f398be7567e187cb2814415a2dd23caaf63 | refs/heads/master | 2021-05-06T19:12:02.890104 | 2018-05-26T07:49:56 | 2018-05-26T07:49:56 | 112,161,447 | 2 | 4 | null | 2018-04-12T06:13:32 | 2017-11-27T07:15:17 | C++ | GB18030 | C++ | false | false | 25,931 | cpp | #include "SourceModeGenerationD.h"
calculation::SourceModeGenerationD::SourceModeGenerationD(
int _SourceKind, int _SourceType, int _Rotation, int _m, int _n,
double _Frequency, double _Radius, double _Height, double _Width,
int _N) :
SourceKind(_SourceKind), SourceType(_SourceType), Rotation(_Rotation),
m(_m), n... | [
"Administrator@PC201303161919"
] | Administrator@PC201303161919 |
88b5ebda770226199a7102d5f40af2e0c54ca017 | d2d211505131fc69695ff7c9b61a38c0ebe5736e | /leet011_maxArea.cpp | 372e77ccf9f8f855275184cbf4288c379abaeba2 | [] | no_license | csijun/leetcode | 3a7135b6023f39776c785fabee1701404e456369 | 9cd1fc1f4383d16ef95ef6d06223523fb8537e39 | refs/heads/master | 2021-08-14T14:41:00.414575 | 2017-11-16T01:48:43 | 2017-11-16T01:48:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 946 | cpp | #include<iostream>
#include<string>
#include<stdlib.h>
#include<vector>
using namespace std;
class Solution {
public:
int maxAreaOld001(vector<int>& height) {
int area = 0;
for(int i = 0; i < height.size()-1; i++){
for(int j = i+1; j < height.size(); j++){
int mi = min(... | [
"sdgl0505@163.com"
] | sdgl0505@163.com |
018f7e9d2d0c9d54f3682de1c5d57e2d4a9c1411 | 2884129fa8b1e0d6e3f028b56dbbece804bcc689 | /myLib.cpp | 889e6202cad4d632c3da7f5ee09f184541e2179f | [] | no_license | RahulRocks/9LetterWordGame | 8ab4690ee5c47a76ec6a4b87b6ba950a9ed5d2ec | 163db0fd5ae94df750b7ebe28e958c114d3cf447 | refs/heads/master | 2022-12-03T22:56:13.120230 | 2020-08-02T00:15:52 | 2020-08-02T00:15:52 | 284,359,739 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,873 | cpp | #include <myLib.h>
#include <algorithm>
#include <random>
#include <unordered_map>
// Global variables
std::vector<std::string> dictionary;
// A function to check if a string is a valid English word
ucm::json checkWord(std::string word){
ucm::json x;
x["word"] = word;
x["valid"] = false;
auto got ... | [
"rahul8848@gmail.com"
] | rahul8848@gmail.com |
a8b67d658395e4e97382169fbc1f95e892779ab9 | d15ca1dc87cd19c67ec186d29e9e857859781f69 | /match/main1.1.cpp | efcfc75104485563104ec56e07fe213c5a843c3d | [] | no_license | Vole23/leetcode | 8aebea25cd7d096ee018fbc4a14bad9ebdb0625f | 09f8f5bdf574a761174176cb17905e976d8415dc | refs/heads/master | 2023-09-02T13:55:01.940024 | 2021-10-23T08:18:52 | 2021-10-23T08:18:52 | 326,338,506 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,159 | cpp | #include<bits/stdc++.h>
#include<fcntl.h>
#include<unistd.h>
#include<sys/mman.h>
#include<mutex>
#include<sys/stat.h>
using namespace std;
typedef unsigned long long ll;
auto usingtime = 0.0;
auto begintime = clock();
auto endtime = clock();
char* result[6]{};
ll number = 0;
class ArcNode{
public:
ll src... | [
"123566548@qq.com"
] | 123566548@qq.com |
d5728057beadb6d0c7f67ea859a1235e942b54e3 | 3db023edb0af1dcf8a1da83434d219c3a96362ba | /windows_nt_3_5_source_code/NT-782/PRIVATE/CAIROLE/STG/OFSSTG/OFSPSTG.CXX | 6989b4511aaf73e9d446b0ecd83f87b1995bd70a | [] | no_license | xiaoqgao/windows_nt_3_5_source_code | de30e9b95856bc09469d4008d76191f94379c884 | d2894c9125ff1c14028435ed1b21164f6b2b871a | refs/heads/master | 2022-12-23T17:58:33.768209 | 2020-09-28T20:20:18 | 2020-09-28T20:20:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,833 | cxx | //+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1993.
//
// File: ofspstg.cxx
//
// Contents: COfsPropStg implementation
//
// Classes: COfsPropStg
//
// History: 10-Jun-93 DrewB Created
//
//-------... | [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
640ce138073c268f5c45804527a3ca9320d05f99 | b3217a155f290e78fb90f91ecf33e16a6f6310f0 | /c2c/Builder/ManifestWriter.h | 344508df2f419c7f040602248a9f9a2b19c4fde1 | [] | no_license | Alikvk/c2compiler | f7925353dc2c8770f50f28f302f80d5fd8bccdbb | b3f2a05a76b02f8b6fc35dd739b182c117290bda | refs/heads/master | 2021-05-08T10:26:37.262223 | 2017-12-28T11:38:56 | 2017-12-28T11:38:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 964 | h | /* Copyright 2013-2017 Bas van den Berg
*
* 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 agr... | [
"b.van.den.berg.nl@gmail.com"
] | b.van.den.berg.nl@gmail.com |
b94171c97fc12229f8480b4692be8b863af22488 | e9762514d154dc51779c24ea31e2c811331444f6 | /Classes/Receptor.h | 09d815803ba62a095149718d69e945bd0d591b27 | [
"MIT"
] | permissive | otakuidoru/Reflection | 03eeadc1c6c5c65d547b84e31f090f6f0b423ac9 | 05d55655a75813c7d4f0f5dee4d69a2c05476396 | refs/heads/master | 2022-12-10T11:37:27.651073 | 2020-08-23T20:22:50 | 2020-08-23T20:22:50 | 254,940,690 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,753 | h | /****************************************************************************
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal... | [
"chuck.marshall@gmail.com"
] | chuck.marshall@gmail.com |
3817b2e51c43818ee9d61b80b17e90d1a6dee0dc | 390549e8876a05cded4eacb501f3171b5bbf3679 | /Template class LL/Data.hpp | 4ac86f728d33cc7ca14dfb7b2bbdae23158d5953 | [] | no_license | swilliams511/Linked-List | cd5fbffb7f9cea2ea334ba7b97585624632b47d7 | 713e1dbd38fae5f3cf8ba263eb8c3600fec1664d | refs/heads/master | 2021-01-17T08:38:42.980636 | 2017-04-19T06:41:23 | 2017-04-19T06:41:23 | 60,288,945 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,643 | hpp | #ifndef _DATA
#define _DATA
#include <string>
#include <iostream>
//sample data object to be used by a template class
class Data{
public:
//base object functions
Data(); //default constructor
Data(int v, std::string n); //parameter constructor
~Data(); ... | [
"williasc@seawolf.sonoma.edu"
] | williasc@seawolf.sonoma.edu |
638428a02b15f080d81f55df4a13af302e24a949 | 3b9b4049a8e7d38b49e07bb752780b2f1d792851 | /src/ui/views/win/hwnd_message_handler.cc | b035fd32716f75454a44aa5dd02b652a0c6dceba | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | webosce/chromium53 | f8e745e91363586aee9620c609aacf15b3261540 | 9171447efcf0bb393d41d1dc877c7c13c46d8e38 | refs/heads/webosce | 2020-03-26T23:08:14.416858 | 2018-08-23T08:35:17 | 2018-09-20T14:25:18 | 145,513,343 | 0 | 2 | Apache-2.0 | 2019-08-21T22:44:55 | 2018-08-21T05:52:31 | null | UTF-8 | C++ | false | false | 107,584 | 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 "ui/views/win/hwnd_message_handler.h"
#include <dwmapi.h>
#include <oleacc.h>
#include <shellapi.h>
#include <tchar.h>
#include <utility>
... | [
"changhyeok.bae@lge.com"
] | changhyeok.bae@lge.com |
24357053388664e7112f09d19f6cf8349aefa46c | fc214bfc7caf6050eec8ec5201e7f7eb568e3a17 | /Windows/Qt/Qt5.9-msvc2017/5.9/msvc2017/include/Qt3DRender/5.9.2/Qt3DRender/private/qcollisionqueryresult_p.h | c9d6e25e6fae60ced5897de3af963ecaa454df71 | [] | no_license | MediaArea/MediaArea-Utils-Binaries | 44402a1dacb43e19ef6857da46a48289b106137d | 5cde31480dba6092e195dfae96478c261018bf32 | refs/heads/master | 2023-09-01T04:54:34.216269 | 2023-04-11T08:44:15 | 2023-04-11T08:44:15 | 57,366,211 | 4 | 1 | null | 2023-04-11T08:44:16 | 2016-04-29T07:51:36 | C++ | UTF-8 | C++ | false | false | 5,283 | h | /****************************************************************************
**
** Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt3D module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** License... | [
"you@example.com"
] | you@example.com |
b8f06cce44c12ae7a758b38f77f17949dec8766f | afee7d79003616df7e215715aad78a8ec01657e2 | /UVA/11286 - Conformity.cpp | 83f693ed947b757ceac9d09e00111601a7303a36 | [] | no_license | elgharib94/Problem-Solving-Solution | d8c7eb0cac4f555bb7cba84687bc8fa0fca64fd6 | e9ae560bddcafa6f91c7d586e40ff22ad18fe92e | refs/heads/master | 2023-01-04T17:35:41.741788 | 2020-10-29T13:09:21 | 2020-10-29T13:09:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 646 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
map<set<int>, int> m;
map<set<int>, int>::iterator it;
set<int> s;
int n, x, mx;
int c = 0;
while (cin >> n && n != 0) {
mx = 1;
c = 0;
for (int i = 0; i < n; ++i) {
for (int i = 0; i < 5; ++i) {
cin >> x;
s.insert(x);
}
////////... | [
"aelghareb.ext@orange.com"
] | aelghareb.ext@orange.com |
ef24ded4ab4c71078a61c7da769b01f7682c2e12 | a51a1a17ed8ffe31df94aa2b5890cce04fd21849 | /tests/test-hdr/queue/hdr_intrusive_segmented_queue_hp.cpp | 41264b72c7a93c4a0f8637b0e877177a571aee1f | [
"BSD-2-Clause"
] | permissive | pranith/libcds | 3e72c84ecb0e264a417b4fdd2a2a314702d65b11 | eda369d5593612cafa68dc359874f8b61b1a6bb6 | refs/heads/master | 2020-07-10T11:37:47.980600 | 2014-10-01T04:28:00 | 2014-10-01T04:28:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,982 | cpp | //$$CDS-header$$
#include "hdr_intrusive_segmented_queue.h"
#include <cds/intrusive/segmented_queue.h>
#include <cds/gc/hp.h>
namespace queue {
void HdrIntrusiveSegmentedQueue::SegmQueue_HP()
{
typedef cds::intrusive::SegmentedQueue< cds::gc::HP, item,
cds::intrusive::segmented_queue::mak... | [
"khizmax@gmail.com"
] | khizmax@gmail.com |
8e01d1094e90f244a8ef94595aec72cae9aa8985 | 9ec53dadacad0615ea99342d151a562d4ea8c27a | /MakeSkims/CS_GJets/SkimmingGJets.cc_0Pho | 1c40a4382b31924945acc4a7700e4d4fde7ff6df | [] | no_license | vhegde91/SUSY_Photon | 97e855b039a7ed4f4b8579155bced815fa24b0da | a55515069b8093541a941717c764dbe71869bd74 | refs/heads/master | 2021-01-01T15:41:58.520062 | 2018-06-29T07:01:29 | 2018-06-29T07:01:29 | 97,674,573 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,960 | #define SkimmingGJets_cxx
#include "SkimmingGJets.h"
#include <TH2.h>
#include <TStyle.h>
#include <TCanvas.h>
#include <iostream>
#include <vector>
#include <cstring>
#include <string>
#include <fstream>
using namespace std;
int main(int argc, char* argv[])
{
if (argc < 2) {
cerr << "Please give 3 arguments "... | [
"vhegde91@gmail.com"
] | vhegde91@gmail.com | |
11234852a105c2d49af6a3e24fec2f8af69d5d63 | c87095bd13b9080224324b3a6dd4fd538912d97e | /Direct3D/Rotating Cube/win_main.cpp | fc43da899e9748deda1e59f5c62149f582853e69 | [
"MIT"
] | permissive | Agrelimos/tutorials | 6a0a8ef6652a44bd5a35b59bf192326c831367ff | 7d2953b8fbb5c56a921a17e7e3cac3d1f4fbb41b | refs/heads/master | 2020-04-01T05:26:56.560609 | 2018-10-13T18:45:56 | 2018-10-13T18:45:56 | 152,903,588 | 0 | 0 | MIT | 2018-10-13T18:44:42 | 2018-10-13T18:44:42 | null | WINDOWS-1252 | C++ | false | false | 10,582 | cpp | // Done by TheTutor
/*
If you've spent any time programming 3D applications you've probably seen a rendition
of the "rotating cube demo". World renown, the rotating cube app is
a beginning rung on the ladder to 3D nirvana. With some handy D3D functions, if you know how
to put a cube on the screen, making it ro... | [
"staff@gametutorials.com"
] | staff@gametutorials.com |
3e175a7376326703ac00b688a7bfa9a4ea85e589 | e71fc363e9f8988e3a471d7f9c69c0eabdc017b4 | /opt_jr/src/search_factory.hh | 30a9598a6d45cff2650297e23e5746b8ea4aabe9 | [] | no_license | davide-burba/PACS_PROJECT | e58b34c2abbbe48453d7e1e373bc9fe17d73bb40 | 1fd26a1a8f6e959b0a5e29db1d8154750af9519b | refs/heads/master | 2021-09-04T20:52:12.370760 | 2018-01-22T10:24:55 | 2018-01-22T10:24:55 | 108,164,261 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 640 | hh | #ifndef SEARCH_SELECTOR
#define SEARCH_SELECTOR
#include <memory>
#include <iostream>
#include "search_base.hh"
#include "batch.hh"
#include "opt_jr_parameters.hh"
/**
Search_factory is a factory of search objects.
search_builder method chooses a policy for search template class
according to parameters stored in t... | [
"davide.burba@mail.polimi.it"
] | davide.burba@mail.polimi.it |
69feae13acdd189122d75d183c14e111a1183221 | 8bfc0b8cb378acab599cdf57e6aee01743589632 | /src/platform_dependant.h | 19c467c232c9e923eafde8c7b9c67c907c6fc424 | [
"MIT"
] | permissive | jayden97/DataStructures-team5 | 039794088e823ec3a8441acd80c986c53a4510b7 | fc1f5a4de6efe5d2e73bf7f0837e03cf0294885b | refs/heads/main | 2023-01-30T20:21:57.199914 | 2020-12-11T10:22:09 | 2020-12-11T10:22:09 | 308,786,322 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 679 | h | #ifndef DSP_TEAM_PROJECT_PLATFORM_DEPENDANT_H
#define DSP_TEAM_PROJECT_PLATFORM_DEPENDANT_H
#if !defined(CONSOLE_OUTPUT_MODE_ANSI) && !defined(CONSOLE_OUTPUT_MODE_NCURSES)
#if defined WIN32
#define CONSOLE_OUTPUT_MODE_ANSI
#else
#define CONSOLE_OUTPUT_MODE_NCURSES
#endif // defined WIN32
#endif
#include <string>
#i... | [
"jyc00410@gmail.com"
] | jyc00410@gmail.com |
bbdfd479ca7824a3196e9ee12bc4af19103ec5e5 | fca02b395fe1a5d9ae3180466f7c9ca7703c46e9 | /HC-SR04/ping_satyam/sketch_mar04a/sketch_mar04a.ino | 4a18c5d7a02fe327576f0e234c68e466ec541e03 | [] | no_license | Naman311/ReconSubsea-Trainee | d795690ad613184789535323f4607e50f719d30b | 582b1668f5948c6672dd691b76d8218cbadee6d4 | refs/heads/master | 2021-04-27T00:22:37.367003 | 2018-04-02T19:55:44 | 2018-04-02T19:55:44 | 123,801,355 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 649 | ino | long duration,distance;
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
pinMode(4, OUTPUT);
pinMode(12, INPUT);
Serial.begin(9600);
}
void loop() {
digitalWrite(4, LOW); //Output to pin 4: 0
delayMicroseconds(2);
digitalWrite(4, HIGH); //Output to pin4: 5V
delayMicroseconds(10);
digitalWrite(4, LOW); //Output to p... | [
"36452790+satyamambast@users.noreply.github.com"
] | 36452790+satyamambast@users.noreply.github.com |
d2f3c723fd7fc9d44ed466a8b63de17a707fbe30 | 51a6a2ff1ce6c36e5f601196331645f38916a032 | /넷겜플 충돌처리 (2)/SimpleGame/Block.h | 60a092122150b2dbee92d27a75a7c2c2523bfe02 | [] | no_license | psshoon/NetGameple_hhh | bc2ac3aae6669b41466b06181f3fe8e7ab84ad9c | fe57f78083b21d4ccb4c05ade144e524606c8528 | refs/heads/master | 2021-08-22T20:59:35.170084 | 2017-12-01T08:03:51 | 2017-12-01T08:03:51 | 109,956,336 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 221 | h | #pragma once
#include "Define.h"
#include "Object.h"
class Block : public Object {
public:
Block();
virtual ~Block();
private:
public:
virtual void SetType(ObjType tType);
virtual void update(float elapsedTime);
}; | [
"psshoon123@naver.com"
] | psshoon123@naver.com |
ddd78e224b5286b95af21ef4075b01e5e1e3a003 | 6e392062306dbaf5214f61daa6be91c5792fc401 | /stack_queues/queueStack.cpp | b238551413b4624572e97ed91ffba504bb9c365a | [] | no_license | NileshKumarGupta/dsaPractice | b1e959441a73247746d0f52d7c3bde5fb52ac1d3 | 9c431aaae4e9a19c1ab975cd8342f7c0b0415ab5 | refs/heads/master | 2022-11-09T12:49:26.864730 | 2020-06-19T15:49:09 | 2020-06-19T15:49:09 | 272,737,315 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,531 | cpp | #include<iostream>
#include<bits/stdc++.h>
using namespace std;
class MyQueue{
private:
stack<int> forward;
stack<int> backward;
public:
void enqueue(int val){
if(forward.empty()){
int stack_size = backward.size();
for(int i = 0; i < stack_size; i++){
int top_val = ba... | [
"f20180233@goa.bits-pilani.ac.in"
] | f20180233@goa.bits-pilani.ac.in |
882cca8a1664c240f4bd39c4e556349e4a7d88ad | bd1fea86d862456a2ec9f56d57f8948456d55ee6 | /000/073/692/CWE124_Buffer_Underwrite__CWE839_fscanf_83a.cpp | e2e66ada32698621c8d453723692ddd73b05990a | [] | no_license | CU-0xff/juliet-cpp | d62b8485104d8a9160f29213368324c946f38274 | d8586a217bc94cbcfeeec5d39b12d02e9c6045a2 | refs/heads/master | 2021-03-07T15:44:19.446957 | 2020-03-10T12:45:40 | 2020-03-10T12:45:40 | 246,275,244 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,255 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE124_Buffer_Underwrite__CWE839_fscanf_83a.cpp
Label Definition File: CWE124_Buffer_Underwrite__CWE839.label.xml
Template File: sources-sinks-83a.tmpl.cpp
*/
/*
* @description
* CWE: 124 Buffer Underwrite
* BadSource: fscanf Read data from the console using fscanf()
* ... | [
"frank@fischer.com.mt"
] | frank@fischer.com.mt |
bd7a8f9001a900de457fd3e9e33b53c16105e899 | 5988ea61f0a5b61fef8550601b983b46beba9c5d | /3rd/ACE-5.7.0/ACE_wrappers/apps/drwho/PMS_Usr.cpp | 81c4699d3df27da6aead913e2bc69075312e6a5f | [
"MIT"
] | permissive | binghuo365/BaseLab | e2fd1278ee149d8819b29feaa97240dec7c8b293 | 2b7720f6173672efd9178e45c3c5a9283257732a | refs/heads/master | 2016-09-15T07:50:48.426709 | 2016-05-04T09:46:51 | 2016-05-04T09:46:51 | 38,291,364 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,278 | cpp | // $Id: PMS_Usr.cpp 80826 2008-03-04 14:51:23Z wotte $
#include "Options.h"
#include "SL_Server.h"
#include "PMS_Usr.h"
#include "ace/ACE.h"
#include "ace/Log_Msg.h"
#include "ace/OS_NS_string.h"
#include "ace/OS_NS_unistd.h"
#include "ace/OS_Memory.h"
// This function "encodes" a list of friends by putting the useri... | [
"binghuo365@hotmail.com"
] | binghuo365@hotmail.com |
cd67eb57eee508346e2163294683200e329a28c4 | 88b991fc54265c13f62710393169839676f2ffd2 | /Lib/Settings/MemSettings.h | 4b8e2021073a9006e0178a27413c1df01ddace1f | [] | no_license | RATime360/Code | 4b51c6af12e73bd77becf44067aee8d0c97101fe | 6694bfd7c71d0247911d02ab6e0c3c41e3479900 | refs/heads/master | 2023-01-14T10:01:53.356289 | 2020-11-18T06:41:46 | 2020-11-18T06:41:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 935 | h | #pragma once
#include <QMap>
#include <Lib/Include/Common.h>
#include "SettingsA.h"
DefineClassS(QSettings);
DefineClassS(MemSettings);
class MemSettings: public SettingsA
{
QMap<QString, QVariant> mDictionary;
QString mPrefix;
public:
/*override */virtual bool Open(const ... | [
"DevilCCCP@gmail.com"
] | DevilCCCP@gmail.com |
18a0c52a28fe1bda5c4ae1fa0d0f1695edcc7da4 | d8d4b0f9120385fdd78c142b291bce3994a5008d | /SDK/BP_Logo_classes.h | 6e7e5250766c72e6035edf0172e5b57b79ca1eda | [] | no_license | xnf4o/DBD_SDK_460 | e0dc30ee6fc250478be10171c99776a1172f66ab | efd4049148a88a6ea67643c89f5820b7096e23f8 | refs/heads/main | 2023-03-30T21:02:20.509098 | 2021-04-03T01:55:57 | 2021-04-03T01:55:57 | 354,176,407 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,852 | h | #pragma once
// Name: DBD, Version: 4.6.0
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//--------------------------------------------------------------... | [
"xnf4o@inbox.ru"
] | xnf4o@inbox.ru |
0f26b791b4d5cb62353d795532de550f25890039 | 95570ae3de9febfe81989751982f6a6eafe080ff | /Sources/Database/db_value.cpp | 0f65e13ffc96cafa8158a297e36742dbe50f3e0b | [
"Zlib"
] | permissive | kyelin/ClanLib | a552f224c2007598a1ab8acaf4e2caa967908851 | 2558aba725e6866a81d50b13178cbd5c60ab6edc | refs/heads/master | 2021-01-24T21:36:07.499397 | 2014-11-18T02:09:39 | 2014-11-18T02:09:39 | 19,273,763 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,337 | cpp | /*
** ClanLib SDK
** Copyright (c) 1997-2013 The ClanLib Team
**
** This software is provided 'as-is', without any express or implied
** warranty. In no event will the authors be held liable for any damages
** arising from the use of this software.
**
** Permission is granted to anyone to use this software for a... | [
"rombust@hotmail.co.uk"
] | rombust@hotmail.co.uk |
281bf4675d263353232994ea515fc0d137fc6062 | 254d642700c75f2ef659a968e778f1ae56b084e3 | /exp7-5/exp7-5/exp7-5.cpp | 071c1444bc020d5cf54d0a830bc020e29c5ffcee | [] | no_license | cf-GitHub-114/experiments-of-VC | 89e5c283258346b05326c890122b55bdcc19aa48 | d131b2e1cccd695b8cfe4461037f63a4e716a3d5 | refs/heads/master | 2021-05-18T10:04:14.209289 | 2020-07-10T20:55:22 | 2020-07-10T20:55:22 | 251,201,578 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 4,423 | cpp |
// exp7-5.cpp : 定义应用程序的类行为。
//
#include "stdafx.h"
#include "afxwinappex.h"
#include "afxdialogex.h"
#include "exp7-5.h"
#include "MainFrm.h"
#include "exp7-5Doc.h"
#include "exp7-5View.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// Cexp75App
BEGIN_MESSAGE_MAP(Cexp75App, CWinApp)
ON_COMMAND(ID_APP_ABOUT, &Cex... | [
"1061737971@qq.com"
] | 1061737971@qq.com |
a825bf50d74e69d73c9e6543b397d1126d9603c3 | d1b03d4b061305018084b4dc21a4bdba35335c05 | /Plugins/SocketIOClient/Source/ThirdParty/websocketpp/test/processors/extension_permessage_compress.cpp | 7f26a9dd521db94cf6cd560c9e08b89d96ce6da6 | [
"Apache-2.0",
"MIT",
"Zlib",
"BSD-3-Clause"
] | permissive | uetopia/ExampleGame | 004b9f1a6f93c725750a82b51cac8d8516c3b769 | 008ab5d3e817ef763fa42ed551715208682a7ecf | refs/heads/master | 2023-03-08T07:56:55.819372 | 2023-02-26T14:59:42 | 2023-02-26T14:59:42 | 205,035,752 | 36 | 16 | Apache-2.0 | 2020-05-23T22:14:35 | 2019-08-28T22:42:22 | C++ | UTF-8 | C++ | false | false | 7,369 | cpp | /*
* Copyright (c) 2014, Peter Thorson. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of cond... | [
"ed@uetopia.com"
] | ed@uetopia.com |
9f586472494209c177c0f692ba5c36b5577b2237 | 88ae8695987ada722184307301e221e1ba3cc2fa | /third_party/pdfium/fxbarcode/cbc_codebase.h | 250cbf3ce2f767c4dbc9e4a99010a235632c3d0e | [
"Apache-2.0",
"LGPL-2.0-or-later",
"MIT",
"GPL-1.0-or-later",
"BSD-3-Clause"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 1,317 | h | // Copyright 2016 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef FXBARCODE_CBC_CODEBASE_H_
#define FXBARCODE_CBC_CODEBASE_H_
#include <stdint.h>
#inclu... | [
"jengelh@inai.de"
] | jengelh@inai.de |
ceef1fa6c7dc3de7cfad8b6c615f55745fd2db2b | 8362abae46af490be7d8f2089d97a7a40363de0f | /src/randomize/Distrib.h | 2fe4c4db9323bbd72d2ff67382ee3e49b1d997e7 | [] | no_license | canercandan/randomize | 0753444b81c369871738028d2149e7023bfdc2c5 | ff2d13414cc0e94eaeb3373d767e4d442682d299 | refs/heads/master | 2021-01-01T16:55:52.054473 | 2011-02-26T15:01:21 | 2011-02-26T15:01:21 | 1,371,904 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,181 | h | /*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but... | [
"caner@candan.fr"
] | caner@candan.fr |
af6a0769f9e0bdb796c057a3730d6d754d5de594 | 1ac739e73f504b88275bf3a2ce7f6649c4736331 | /SDK/ANAREA_AppleImageUtils_parameters.hpp | 62c4335677338ae0e300409e408ca9a1a397572e | [] | no_license | frankie-11/ANAREA-SDK | d6a0974a72ecf75fc016849883d9118791956e7c | b49808b7e1c33afead53c577f88ab7ff89aa993e | refs/heads/master | 2022-12-01T06:52:19.732996 | 2020-08-16T16:13:38 | 2020-08-16T16:13:38 | 287,978,810 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,211 | hpp | #pragma once
// ANAREA (4.24) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "../SDK.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Parameters
//---------------------------------------------------------------------------
// Function AppleImageUtil... | [
"60810131+frankie-11@users.noreply.github.com"
] | 60810131+frankie-11@users.noreply.github.com |
c4f5cc9ff5044d0274938134c111ef723026fd38 | 6612c256537ad20c7cb9bbb4ca8f881cd77908ab | /src/Moj_1/TouchGFX/generated/images/src/button_up_pressed.cpp | 9c75cec280f9e48998fe0519d837f027a9a3f43c | [] | no_license | SzymonKwiecinski/Implementation-of-the-HMI-panel-on-a-discovery-kit-containing-a-STM32-microcontroller | 14abb0d177cced04e9c4d780f03e25bab64e238d | ca695bbe32fe6549da07a3cd7255789b32eeb92b | refs/heads/main | 2023-08-29T09:03:46.784748 | 2021-10-17T11:45:12 | 2021-10-17T11:45:12 | 315,503,458 | 0 | 0 | null | 2021-10-17T11:35:57 | 2020-11-24T03:04:07 | C | UTF-8 | C++ | false | false | 177,072 | cpp | // -alpha_dither yes -dither 2 -non_opaque_image_format ARGB8888 -opaque_image_format RGB565 0x7a0b671d
// Generated by imageconverter. Please, do not edit!
#include <touchgfx/hal/Config.hpp>
LOCATION_EXTFLASH_PRAGMA
KEEP extern const unsigned char _button_up_pressed[] LOCATION_EXTFLASH_ATTRIBUTE = // 130x56 ARGB88... | [
"kwiecinskji@gmail.com"
] | kwiecinskji@gmail.com |
67991ffeac1da5a8c5f861872792e32e241c5c05 | 32440b53eb897b377a44b7838719b6a66f2283ef | /src/mobius/ActorComponent.hpp | 48a500870469f795e3d9e79aa3a82b1dfde24657 | [
"Zlib",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | madeso/lolball | 7f904900be5acb55ee37fca342ecb4cfe3dcd342 | 18d831efa9978a07808fcfa51a7cda4925e1ac14 | refs/heads/master | 2020-06-05T12:23:00.462002 | 2014-09-24T06:00:50 | 2014-09-24T06:00:50 | 24,402,678 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 387 | hpp | #ifndef ACTOR_COMPONENT_HPP
#define ACTOR_COMPONENT_HPP
#include "Component3.hpp"
class Actor;
class ActorComponent : public Component3 {
public:
ActorComponent(Actor* pActor);
virtual void onRender(const World3& pWorld, real pTime, RenderMode& pRenderMode) const = 0;
void render(const World3& pWorld, real pTime,... | [
"sir.gustav.the.coder@gmail.com"
] | sir.gustav.the.coder@gmail.com |
6cefeb2e7e5e4c7261b65132f5efbfddb76fb055 | ec3a754ac21137a04250ef7dc9e5152e94fb7bd3 | /damBreakFine/0.55/p | 7e0dd63db5b2ae02a84464b715f11d8d99e3f4ea | [] | no_license | johnathoncobabe/425 | 2336a62cd0f575b777cd549a886a15b5799b6c72 | e1ee61fb87a1078683d71a1d15131713c435cfae | refs/heads/master | 2021-01-10T10:00:11.128510 | 2015-10-02T17:54:40 | 2015-10-02T17:54:40 | 43,466,206 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 73,895 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
... | [
"johnathoncobabe@gmail.com"
] | johnathoncobabe@gmail.com | |
3b2b18840822ab499eb80d20837623093f4a874b | 94e3462eeda77497c6f5f0b16bc17eeb34e4b04e | /src/crypto/hash.h | 93c5ec257d7e551cc4a277cfc902553ab72ff7bd | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | pdxxxz/intensecoin | 9fec0934923a82135c8b99bbec129719ba3f647a | 3a6c59c2f136300400e34729f33d4ed5f3fddc22 | refs/heads/master | 2020-03-11T04:28:56.881078 | 2018-04-16T16:02:41 | 2018-04-16T16:02:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,377 | h | // Copyright (c) 2014-2017, The Monero Project
//
// 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 o... | [
"valiant1x@users.noreply.github.com"
] | valiant1x@users.noreply.github.com |
e32c302a2e0f8a55265d47089760e6a98214a303 | b20b79c19c61259f527f48a80e48e09987522a37 | /Lab3/Lab3-eclipse/Employer.h | ee534f35d527432158ae962cf54eddbf94544a4c | [] | no_license | itsbinay/Comp-2012 | 103327d9e92d0b8735cb668c242282c30123e8ed | baddee21b4d7b9c211a9be179e134a4c99528206 | refs/heads/master | 2020-04-26T16:24:13.948038 | 2019-12-16T18:25:45 | 2019-12-16T18:25:45 | 173,677,026 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 385 | h | // TODO: Class declaration of Employer
#ifndef _EMPLOYER_H
#define _EMPLOYER_H
#include "Person.h"
#include "Employee.h"
#include <string>
using namespace std;
class Employer : public Person
{
private:
Employee* employee[NUM_MAX_EMPLOYEE];
int num_of_employee;
public:
Employer(string name);
void... | [
"binaygurung9@gmail.com"
] | binaygurung9@gmail.com |
3e6cf0f66539a9a53233237ebe14dad2ebe9786e | 076d699d2ad3c97603a514224634b774271647fb | /AGC028/first.cpp | bff6e67394a907ed4806e8a548bbd5c1b6b46b47 | [] | no_license | siberiy4/comp_prog | 2d3e612561239cc48226c572cb67187eddd9e952 | 3ca7070f9ae4ef1aff6d1a39ce8492a076204793 | refs/heads/master | 2022-12-06T21:23:35.191599 | 2019-08-18T14:52:02 | 2019-08-18T14:52:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 112 | cpp | #include<iostream>
#include <cmath>
#include <cstdio>
using namespace std;
main(){
long double X,pie;
} | [
"e1n17075@st.oit.ac.jp"
] | e1n17075@st.oit.ac.jp |
aa73fd8bca820d3174d20c1be7b12eb6866c6155 | b23b7c19bf2dd2896e3134e78296ddff0ff27ed3 | /calibrar.ino | 5a1703c3fb4e9335e75ca8154d7dbd0ddad3ba50 | [] | no_license | bemielison/CS5463_ESP8266_Medicao_Energia | 7c9075a498c494b963ab2272ccfd98318bce441e | a9409529c67afb6b7e6243bb44d9ac3d053034df | refs/heads/master | 2020-05-26T06:00:55.025445 | 2019-05-23T01:29:34 | 2019-05-23T01:29:34 | 188,129,493 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,087 | ino |
int calibrar(){
Serial.println("Valores iniciais default");
//-----------------------------------------------------------------------------------------
leitura(ler_IDCoff); //
MSB = valor_3byte&0b100000000000000000000000;
if(MSB==0){ IDCoff_lido = (valor_3byte*calibra*100000); }
else {IDCoff_lido = (((v... | [
"noreply@github.com"
] | bemielison.noreply@github.com |
1968655776ca19422ee38edea881875fad10e872 | 5933373d7421235d7978ef1f04c90c84d4c32c6b | /contrib/psol/include/net/instaweb/system/public/system_server_context.h | 5805e4a5b8603b289cc9178cb141ff142c6e74b8 | [
"MIT"
] | permissive | heartshare/openresty-bundle | 1343287bca0c747c562b0ba2e640e613d9db4884 | 2a8f4a2bff14fad719fc516c5836aac47c289c67 | refs/heads/master | 2021-01-22T07:27:55.759619 | 2014-08-27T13:48:42 | 2014-08-27T13:48:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,089 | h | // Copyright 2013 Google Inc.
//
// 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 agreed to in... | [
"bhanlon@inviqa.com"
] | bhanlon@inviqa.com |
b8a1f6a0c490680852b9095c13a269d2c1ffaaff | e732401d01896ed876a1b2b93c6c891fc4ad5b97 | /Day13.cpp | 337c681143f5d070725184d4a22851ca888d8c22 | [] | no_license | VraskaG/leetcodeMayChallenge | 6114bc2f1b1272cb1ee336e0f211dc0cba2d66fb | c7c8d912728984b0105bfef78b4a17cc5b1d3cfc | refs/heads/master | 2022-08-07T22:41:43.643788 | 2020-05-14T03:51:06 | 2020-05-14T03:51:06 | 261,456,361 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 631 | cpp | class Solution {
public:
string removeKdigits(string num, int k) {
if (num.size() <= 1)
{
return "0";
}
int j;
for (int i = 0; i < k; i++)
{
for (j = 0; j <= num.size(); j++)
{
if (num[j] > num[j ... | [
"noreply@github.com"
] | VraskaG.noreply@github.com |
0c2e6a1b87b163bfe51e77b71715ea62530dd939 | 01528a046e1c5bfaa1e1b94d30babb35675c9f3a | /trunk/iWinOnline-cocos2dx/iwin/Classes/Network/JsonObject/Game/GetMinMaxBoard.h | 688ebdce3cba37943e41fa0fcfcc0a0bc0c6c6b7 | [] | no_license | flowerfx/cc_iw_game | f48802b355baaaff887e289d7cd97d2ba8f58082 | 81309a8651e2ec089d1bd08a07cacb0949d05df7 | refs/heads/master | 2021-01-21T15:32:22.670075 | 2020-05-08T09:15:50 | 2020-05-08T09:15:50 | 81,444,503 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 654 | h | #ifndef _GetMinMaxBoard_H_
#define _GetMinMaxBoard_H_
#include "platform/CCPlatformMacros.h"
#include <string>
#include "json/document.h"
#include <vector>
#include "Common/Common.h"
namespace iwinmesage
{
class GetMinMaxBoard
{
CC_SYNTHESIZE(int, gameId, GameId);
CC_SYNTHESIZE(int, roomID, RoomID);
CC_SYNTHESIZE(... | [
"qchien.gl@hotmail.com"
] | qchien.gl@hotmail.com |
1eb4078425bbb9853d49b169ec8da1598da880e2 | 2fbc53be11890acb5c13b7b0f520e537e19bf0ae | /Brain-box.ino | bb1f509eb5db2d92f07c0f23ce4f46fe38fd0ecb | [] | no_license | nebed/Brain-box | 9fdaa757ad0248fea795e47f86eff502e88ea0cb | 26b0a13891d9a5591fb1e949799b2aa98c6eda13 | refs/heads/master | 2021-09-14T11:27:47.938327 | 2018-05-12T20:38:40 | 2018-05-12T20:38:40 | 113,590,777 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,803 | ino | // ARDUINO BRAIN BOX
//Version-1.0
//by
//Nebedum Uchenna
//Afifia-oru Harmony
//Muheeb Habeeb Tola
//Nwaiwu Emmanuel
//Dated : 06/12/2017
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#define BAT_ADC A0 // Battery side voltage divider is connected to pin A0
#define SOL_ADC A1 // Solar panel side voltage ... | [
"noreply@github.com"
] | nebed.noreply@github.com |
fd6da473ef8e24aaa713d9e7c1924f66252d981b | d57c4aff70fcce17969023f380b217c6f4946708 | /src/demo04.cpp | 514ac2b99c10a0efb06a08c633c272bb6e1bad65 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | johangardhage/dos-bcdemos | ec06eb590bd128566dead632bd0013618fba00d3 | 285c44bb8d44fc2e2939ec6491e7d5f66a0db98f | refs/heads/master | 2020-04-01T21:32:46.733918 | 2018-10-21T14:47:14 | 2019-07-22T14:22:31 | 153,662,056 | 42 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,785 | cpp | //
// Retro programming in Borland C++ 3.1
//
// Environment shading demonstration
//
#include "lib/types.h"
#include "lib/engine.h"
#include "lib/graphics.h"
#include "lib/misc.h"
#include "lib/polygons.h"
objecttype *objectptr;
colortype palette[256];
char filename[] = "assets/chrmface.3d_";
cha... | [
"johan.gardhage@gmail.com"
] | johan.gardhage@gmail.com |
24877591f2586801d661b153d6b67e366988ecb5 | 4d4822b29e666cea6b2d99d5b9d9c41916b455a9 | /Example/Pods/Headers/Private/GeoFeatures/boost/mpl/O1_size_fwd.hpp | 7995c322ff3a9b22eb8af3e57fe603a298ac7a68 | [
"BSL-1.0",
"Apache-2.0"
] | permissive | eswiss/geofeatures | 7346210128358cca5001a04b0e380afc9d19663b | 1ffd5fdc49d859b829bdb8a9147ba6543d8d46c4 | refs/heads/master | 2020-04-05T19:45:33.653377 | 2016-01-28T20:11:44 | 2016-01-28T20:11:44 | 50,859,811 | 0 | 0 | null | 2016-02-01T18:12:28 | 2016-02-01T18:12:28 | null | UTF-8 | C++ | false | false | 58 | hpp | ../../../../../../../GeoFeatures/boost/mpl/O1_size_fwd.hpp | [
"hatter24@gmail.com"
] | hatter24@gmail.com |
2464f30f83ba22a18c691be3fdd4c215f5e73951 | f971907302ae5f36b2eb5bb52b0513b0a7c869aa | /src/drm_1/lib/connector.cpp | 18d8179255c7d49407ea50ca440e7794892436dd | [] | no_license | darkenk/bbb_tests | 8c13c8ca5073245a7ec0b1690bf61af9245cdb2c | 932acdf11e0a3cbca61cf2c84e90c761ca9c5efe | refs/heads/master | 2020-05-21T04:40:13.318836 | 2016-11-18T16:43:08 | 2016-11-18T16:43:08 | 53,541,320 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,469 | cpp | #include "connector.hpp"
#include "modeinfo.hpp"
#include "dk_utils/logger.hpp"
Connector::Connector(int fd, uint32_t connectorId) {
mFd = fd;
mObject = drmModeGetConnector(fd, connectorId);
if (not mObject) {
throw "Connector not connected";
}
}
Connector::Connector(Connector&& c) {
mFd ... | [
"darkenk@gmail.com"
] | darkenk@gmail.com |
4857ba441276bcbc5d5374f1d514ac377df6875f | f7cd49ea71d710e40d5d655aaf745e327e39807a | /Engine_DX_MAKEFILE_PROJ/Engine/Sources/direct_api.cpp | a753dca1f8a868d3e7c42e64ce0fe850c0fd0f9e | [] | no_license | Draver93/oldProjects | 01c4df5beed6c8a71b49828ad38d15eaa3cc7ea6 | 84eab3c327870ee42d996da6b1778265d1a80059 | refs/heads/master | 2021-08-23T04:43:21.321035 | 2017-12-03T10:47:07 | 2017-12-03T10:47:07 | 112,919,008 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 5,066 | cpp | #include "direct_api.h"
direct_api::direct_api()
{
}
direct_api::~direct_api()
{
if (p_direct3d)p_direct3d->Release();
if (p_direct3d_device)p_direct3d_device->Release();
}
HRESULT direct_api::create_direct(HWND h_window, bool fullscrean)
{
p_direct3d = NULL;
p_direct3d_device = NULL;
ZeroMemory(&display,... | [
"draver39@gmail.com"
] | draver39@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.