blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c3db1b0ca0bab87fed72c1ba2789f38873990c6c | 5a1dd7a895741dd73e772c951afe36dc985bbf1f | /CodeForces/295B.cpp | 63dbb61ca33d8522ecc7ec86dfcb7b3e714befa1 | [] | no_license | georgefidler1709/competitive_programming_solutions | ab2967433385ca574b9e181e6a5f66de505a07b8 | c503bffc30a9e30d7e63bc7e16294fae434f83a9 | refs/heads/master | 2020-11-23T22:27:13.700243 | 2019-12-13T13:41:16 | 2019-12-13T13:41:16 | 227,846,448 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,370 | cpp | #include <bits/stdc++.h>
using namespace std;
constexpr int MAX_N = 500;
using ll = long long;
int dist[MAX_N][MAX_N];
void floyd(int n, const vector<vector<int>>& adj, vector<ll>& dist_totals) {
// the distance between everything is infinity
for (int u = 0; u < n; ++u) {
for (int v = 0; v < n; ++v... | [
"georgefidler1709@gmail.com"
] | georgefidler1709@gmail.com |
eeb101644600a4a9fa1c78fcbcaf19758648fa3f | c2078c3aa4274cae96c3083ecd72843a74e3a243 | /Project Alpha/MVC_2D_framework/MVC_Model.cpp | 6afd39bf1808018285e7af8a421eec79a8a8922b | [] | no_license | ShumWengSang/Project-Alpha | ec181c57648ba3184bedbb7843616b80e4ec6170 | 9b8dca7edf5338e012e18b615341f70936141cdf | refs/heads/master | 2020-03-25T01:06:30.510723 | 2018-09-13T02:29:11 | 2018-09-13T02:29:11 | 143,222,199 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,499 | cpp | //*************************************************************************************************************************************//
//
// Original MVC framework made by Mr Toh Da Jun for DM2231 Game Development Techniques
// Adapted and modified by Kennard Kee Wei Sheng
//
//**************************************... | [
"ballwallcallall@gmail.com"
] | ballwallcallall@gmail.com |
5c178b66887b95ddb8224a050f21fb5765e0bb9d | 7b86f04a8bdf720e12870de5eca37cf229be7220 | /C++/Date/Date.cpp | 674e88ce6b8b993a1b2b08f89c31e6e7b66c2a12 | [] | no_license | olehcherpak/Trainee_Tasks | 325b4042199dc91b308102a1d7cde0346af77a65 | e11d81df1011616d04f5f9d83a40e57fa2f655b1 | refs/heads/master | 2021-01-20T01:04:55.546004 | 2017-05-18T13:00:25 | 2017-05-18T13:00:25 | 89,221,927 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,323 | cpp | #include <set>
#include <iostream>
#include "Date.hpp"
#define MAXMOUNTH 12
Date::Date(const int& _day, const int& _mounth, const int& _year) {
if (_year == 0) {
throw invalid_date_exception();
}
year = _year;
if (_mounth <= 0 || _mounth > MAXMOUNTH) {
throw invalid_date_exception();... | [
"oleh.cherpak@globallogic.com"
] | oleh.cherpak@globallogic.com |
f6b4fa6ce4d85d189b4302c50b3dcc149a318236 | a2ab7f211fa04992c2f970575dcb6280865b30a5 | /slid_window.cpp | 815adf2d25ca5bd18c7fc9a20fcd8caff3dbceb9 | [] | no_license | sahul343/coding | 5b6eb1854b39657e7c9d2720a89f6f518905288d | e19df72dd7bf51b4f424a51ab060135210991c86 | refs/heads/master | 2021-07-10T12:12:53.198902 | 2020-12-22T05:31:53 | 2020-12-22T05:31:53 | 227,541,725 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 701 | cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int n, m;
cin >> n >> m;
vector<int>a(n);
for(int i = 0; i < n; i++){
cin >> a[i];
}
deque<pair<int,int>>q;
for(int i = 0; i < m; i++){
while(!q.empty() && q.back().first > a[i]){
q.pop_back();
}
... | [
"sirpasahul343@gmail.com"
] | sirpasahul343@gmail.com |
a1447fe12cce5a0e134efc3725d3458e11b2df42 | b73eec3a26bdcffb6a19dec6b8b048079befe04c | /3rdparty/meshlab-master/src/meshlabplugins/edit_point/knnGraph.h | 234ea7a23a881744e43cc9ca5d15cbc8fe788f4a | [
"MIT",
"GPL-1.0-or-later",
"GPL-3.0-only"
] | permissive | HoEmpire/slambook2 | c876494174e7f636bdf5b5743fab7d9918c52898 | 96d360f32aa5d8b5c5dcbbf9ee7ba865e84409f4 | refs/heads/master | 2020-07-24T02:35:39.488466 | 2019-11-25T03:08:17 | 2019-11-25T03:08:17 | 207,775,582 | 0 | 0 | MIT | 2019-09-11T09:35:56 | 2019-09-11T09:35:56 | null | UTF-8 | C++ | false | false | 3,163 | h | #ifndef KNNGRAPH_H
#define KNNGRAPH_H
#include <QTime>
#include <vector>
#include <vcg/complex/complex.h>
#include <vcg/space/index/kdtree/kdtree.h>
namespace vcg {
namespace tri {
template <typename _MyMeshType>
class KNNGraph {
public:
typedef typename _MyMeshType::VertexType _MyVertexType;
/*... | [
"541218251@qq.com"
] | 541218251@qq.com |
966d309944e87b78b85dc6eda8c13e7972429b8d | 3b63434159d3ffe2f8af0586137b155820f6fd0d | /3rdparty/openmm/serialization/src/CustomManyParticleForceProxy.cpp | 1aee13fc4d0b990f764bdf4969f778bf2a590e44 | [
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | samuelflores/MMB | 2e50204f5bc5a9bd80e56ec4cf8901e782d2f822 | 96da444290ab1af4385013c566079d381d8051b4 | refs/heads/master | 2023-06-25T23:24:17.861167 | 2023-06-21T09:10:20 | 2023-06-21T09:10:47 | 29,155,968 | 6 | 10 | NOASSERTION | 2022-01-03T10:34:12 | 2015-01-12T20:43:46 | C++ | UTF-8 | C++ | false | false | 9,023 | cpp | /* -------------------------------------------------------------------------- *
* OpenMM *
* -------------------------------------------------------------------------- *
* This is part of the OpenMM molecular simulation toolkit originating from *
... | [
"samuelfloresc@gmail.com"
] | samuelfloresc@gmail.com |
da4cb6aa1362d0c99799e7fb6d9fae084bb8c498 | 5963efb46c9bbef73ccb6744ab4a52b6ebd6b305 | /Reference_Implementation/crypto_kem/ntru-hrss701/ntru01/keypair/syn/systemc/AES256_ECB_1_ctx_RoundKey.h | 6be4198f18ca1b988a60fa64d2cf276733b4ef76 | [] | no_license | Deepsavani/Post-Quantum-Crypto---NTRU | a5c0324c0281a9890fc977eae55cc4432c5dd8bd | 5494bd4af96998d4056a17ef425489cf45efbae7 | refs/heads/master | 2023-03-18T03:15:59.184060 | 2021-03-16T16:14:22 | 2021-03-16T16:14:22 | 348,408,223 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,773 | h | // ==============================================================
// File generated on Sun Aug 23 22:38:40 EDT 2020
// Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC v2018.3 (64-bit)
// SW Build 2405991 on Thu Dec 6 23:36:41 MST 2018
// IP Build 2404404 on Fri Dec 7 01:43:56 MST 2018
// Copyright 1986-... | [
"deepsavani@deeps-mbp.myfiosgateway.com"
] | deepsavani@deeps-mbp.myfiosgateway.com |
c0729bfe25c6283852231dc6594974cd706e85e4 | d9bde79eeb08a394daecf134c9ea5d7483757c44 | /virtual-machine/Ram.h | a95692c6b43c79fbca544afb6239daab66ab853f | [] | no_license | matt-welch/cpp-practicum | adf6ee5a23557abfe6cf3240a5669e1b41f18ca6 | f214b8258839b371dd3b8ffaf28a143268711d16 | refs/heads/master | 2016-09-13T07:01:19.863100 | 2012-04-25T08:07:50 | 2012-04-25T08:07:50 | 58,681,008 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 882 | h | /**
* @brief Volatile backend for the IMemory interface
*
* @par
* Copyright Matt Welch (c) 2011
* Creative Commons Attribution-ShareAlike 3.0 Unported License.
*/
#ifndef _RAM
#define _RAM
#include "IMemory.h"
#include <map>
using std::map;
namespace K1 {
class Ram : public IMemory {
public:
... | [
"matt-welch@users.noreply.github.com"
] | matt-welch@users.noreply.github.com |
7f9c5fd06c8b41d41f91f9e97c1a03dc703895e4 | 590eb4cc4d0fe83d9740ce478f857ca3a98e7dae | /OGDF/include/ogdf/internal/heap/BinomialHeap.h | 251d2c59ab74e87d83da358a5cbcbb3bc57e2d57 | [
"LGPL-2.1-or-later",
"GPL-3.0-only",
"GPL-1.0-or-later",
"EPL-1.0",
"MIT",
"GPL-2.0-only",
"LicenseRef-scancode-generic-exception",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | cerebis/MetaCarvel | d0ca77645e9a964e349144974a05e17fa48c6e99 | a047290e88769773d43e0a9f877a88c2a8df89d5 | refs/heads/master | 2020-12-05T05:40:19.460644 | 2020-01-06T05:38:34 | 2020-01-06T05:38:34 | 232,023,146 | 0 | 0 | MIT | 2020-01-06T04:22:00 | 2020-01-06T04:21:59 | null | UTF-8 | C++ | false | false | 8,195 | h | /** \file
* \brief Implementation of binomial heap data structure.
*
* \author Łukasz Hanuszczak
*
* \par License:
* This file is part of the Open Graph Drawing Framework (OGDF).
*
* \par
* Copyright (C)<br>
* See README.txt in the root directory of the OGDF installation for details.
*
* \par
* This progra... | [
"jayg@cbcbsub00.umiacs.umd.edu"
] | jayg@cbcbsub00.umiacs.umd.edu |
df649314991e2bef144b1c50117ccf6d8ebe5742 | 8a45cb38834c4089dc211f2640acaf437ca9f869 | /src/Input.h | 0c62e6837b3a7af3426dc56078ecca8ff1b8b173 | [] | no_license | the-gooniest/paint-bot | 1551aec28d4f498121abc7da92cdb6cfc46a964a | 5859af286357d94026eaba39e9ae9a014dda08d2 | refs/heads/master | 2020-05-07T01:01:26.002241 | 2019-04-09T01:05:35 | 2019-04-09T01:05:35 | 180,256,248 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,469 | h | #pragma once
#include <unordered_set>
#define GLEW_STATIC
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#define GLM_FORCE_RADIANS
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
class GameObject;
class Input {
static int penWidth, penWidthMax, penWidthIncrement;
static... | [
"goon.in.a.book@gmail.com"
] | goon.in.a.book@gmail.com |
f595a64e464c3d4ac397c5df0e709d88c397d338 | a9e923353fac938e7ad83b05ae1fa7717c240343 | /nofx/nofx_ofMath/nofx_ofDegToRad.h | fde35321c07072833bc5734c5c0bd4aa374f3c6a | [
"MIT"
] | permissive | 3p3r/nofx | f7dfc5cc8d283aa1e4e9cf53068c1016a99b30c1 | 7abc9da3d4fc0f5b72c6b3d591a08cf44d00277e | refs/heads/master | 2021-05-30T07:49:50.985812 | 2015-07-13T17:35:14 | 2015-07-13T17:35:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 235 | h | #ifndef _NOFX_OFDEGTORAD_H_
#define _NOFX_OFDEGTORAD_H_
#include "globals.h"
namespace nofx
{
namespace Math
{
NAN_METHOD(nofx_ofDegToRad);
} // !namespace Math
} // !namespace nofx
#endif // !_NOFX_OFDEGTORAD_H_ | [
"sepehr.laal@gmail.com"
] | sepehr.laal@gmail.com |
b1c122af5a41206a3fc355d4b369341f0bae1efe | c3dc08fe8319c9d71f10473d80b055ac8132530e | /challenge-134/adam-russell/cxx/ch-1.cxx | f6c9c935f69734efe31a4d5557e2a94945ff8b29 | [] | no_license | southpawgeek/perlweeklychallenge-club | d4b70d9d8e4314c4dfc4cf7a60ddf457bcaa7a1e | 63fb76188e132564e50feefd2d9d5b8491568948 | refs/heads/master | 2023-01-08T19:43:56.982828 | 2022-12-26T07:13:05 | 2022-12-26T07:13:05 | 241,471,631 | 1 | 0 | null | 2020-02-18T21:30:34 | 2020-02-18T21:30:33 | null | UTF-8 | C++ | false | false | 1,142 | cxx |
#include<iostream>
#include<vector>
#include<algorithm>
/*
* Write a script to generate first 5 Pandigital Numbers in base 10.
*/
class Pandigital {
public:
std::vector<int> first_n_pandigitals(int);
std::vector<int> first_5_pandigitals();
};
std::vector<int> Pandigital::first_n_pandigitals(in... | [
"ac.russell@live.com"
] | ac.russell@live.com |
bf0129a945b05c818f83f4a26cda5774ddc033dd | a3fe89219e209993bf9233ab72bf1b54b0f20c53 | /SmoothPolyDataFilter/SmoothPolyDataFilter.cxx | 5f91d851ba6a2fa776c3d2e6a95e87e020e2898f | [] | no_license | miladkiaee/VTKProjects | 58d919709de40f6c837112957e744ebb8900d930 | 983e9d8f1587c1a2a80b7f7925cf212bab1eda9d | refs/heads/master | 2020-04-29T21:35:21.261315 | 2019-03-19T03:45:25 | 2019-03-19T03:45:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,113 | cxx | #include <vtkVersion.h>
#include <vtkSmartPointer.h>
#include <vtkMath.h>
#include <vtkPoints.h>
#include <vtkPolyData.h>
#include <vtkPolyDataMapper.h>
#include <vtkProperty.h>
#include <vtkSmoothPolyDataFilter.h>
#include <vtkPolyDataNormals.h>
#include <vtkSTLWriter.h>
#include <vtkSTLReader.h>
int main(int argc,... | [
"kiaeedar@ualberta.ca"
] | kiaeedar@ualberta.ca |
8e18e00fec3db427e982b9be1aebd919e3ead82f | 680f6baa09a2dd329de269700096db55eaf7e09e | /src/mortgage_calculator.cpp | d353d098302ef53189ffb94fb8931a40373666df | [] | no_license | sdara/mortgage_calculator | 5f90f6306967bf8fcadce04463ef9b37dab53448 | 542e0d735ca579d2afb735db72c5667ce1403777 | refs/heads/master | 2020-03-27T02:26:57.904839 | 2018-08-23T02:45:20 | 2018-08-23T02:45:20 | 145,790,980 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,690 | cpp | #include <iostream.h>
#include <math.h>
class Mortgage
{
private:
float Payment;
float Loan;
float Rate;
int Years;
double Term;
public:
void setMortgageData(float setLoan, float setRate, int setYears)
{
//regular variables to be defined by user
Loan=setLoan;
Rate=setRate;
Years=setYears;
}
void cal... | [
"sdara@users.noreply.github.com"
] | sdara@users.noreply.github.com |
9e7d723d1e8129f51d4cd7832f52bb660472c109 | b376ee5567926cfa5b41d1665a82bced3e37227d | /azsim/CadContratoBasico.cpp | 1752bcae52533f0ff444360d22e7d204b969735b | [] | no_license | pbvieira/sistema-monitoramento24h | 8ff3f97ca3591375245f3f6f12cc4549055694a6 | e82752af68bb9ca57ac9b2353e38d7051f109cae | refs/heads/master | 2022-08-16T13:18:18.213452 | 2022-08-07T13:22:14 | 2022-08-07T13:22:14 | 91,400,871 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 19,166 | cpp | //---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "CadContratoBasico.h"
#include "DMApp.h"
#include "DMCliente.h"
#include "Home.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
... | [
"pbvieira.santos@gmail.com"
] | pbvieira.santos@gmail.com |
890fbe57fe11cdf14e04a03e4783f9422d230675 | 16c25858ef1e5f29f653580d4aacda69a50c3244 | /hikr/build/Android/Preview/app/src/main/include/Fuse.DeferredManager.h | 416f3d0e57804117971ae3c2f80ca5f2aed08196 | [] | no_license | PoliGomes/tutorialfuse | 69c32ff34ba9236bc3e84e99e00eb116d6f16422 | 0b7fadfe857fed568a5c2899d176acf45249d2b8 | refs/heads/master | 2021-08-16T02:50:08.993542 | 2017-11-18T22:04:56 | 2017-11-18T22:04:56 | 111,242,469 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,546 | h | // This file was generated based on /usr/local/share/uno/Packages/Fuse.Triggers/1.2.1/$.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.h>
namespace g{namespace Fuse{struct DeferredManager;}}
namespace g{namespace Uno{namespace Collections{struct PriorityQueue;}}}
name... | [
"poliana.ph@gmail.com"
] | poliana.ph@gmail.com |
d87f26b462bf813650f9cfe40b094c404a542aaa | 2431389d9816f9fd294682b3ede7ec8c160ede7f | /project_code/of_v0.7.4_vs2010_release/apps/myApps/FractalMining/src/gpgpu/GLSLShader.h | fbb0f8d0ba2509bc103ffee3337fc396d36ac755 | [
"Apache-2.0"
] | permissive | jadrabbaa/devart-template | 8c087535e4a08c993a4ae52830162008c07b612e | 989315310b3b30d4ac84d80669f777b88321c61f | refs/heads/master | 2020-03-17T20:33:05.767416 | 2014-03-13T23:22:54 | 2014-03-13T23:22:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,609 | h | #ifndef __GLSL_SHADER_
#define __GLSL_SHADER_
#include "ofMain.h"
#include "ofShader.h"
#include "GLSLShaderUniform.h"
#include "GLTexture.h"
#include "GLFrameBufferObject.h"
// wraps ofshader to include custom uniform variables and multiple render targets
class GLSLShader
{
public:
ofShader shader;
int nsrctex;
... | [
"davidh03@gmail.com"
] | davidh03@gmail.com |
3efc2d066dccb1133a3595b9afdaef746ff4eea0 | 9561a740c52b8c09e6367b93a1fd93a5f89b633c | /src/windows/filter/ClippingCamera/ClippingCamera.h | ba801fec5124cb434a9e6ca4d20e3170b4544e51 | [
"MIT"
] | permissive | conveyGmbH/cordova-plugin-document-scanner | 2de68dba0e3d6592dc921b81615e218ea4b3304c | 50e81f7fa5610b0d30e0347b04b82db8984f1ff7 | refs/heads/master | 2022-10-20T08:21:01.446161 | 2022-10-04T15:42:39 | 2022-10-04T15:42:39 | 209,381,370 | 2 | 0 | MIT | 2019-09-18T18:49:23 | 2019-09-18T18:49:22 | null | UTF-8 | C++ | false | false | 7,158 | h | // Defines the transform class.
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (c) Microsoft Corporation. All rights re... | [
"gilbert@convey.de"
] | gilbert@convey.de |
c57bc9aaff55c1872689f302483aa5b9c47f2bc2 | 759e2f49d8c6acaaa9f9f4596f0ac0e475aba03f | /Easy/Best Time to Buy and Sell Stock.cpp | 00430a6d04f61749ef9b49644c8ae25e636ccbdc | [] | no_license | Mr-zhang-in-Harbin/LeetCode | 52caf8c426fe6394b33dd3f53199a4d585081fda | c253129195eeb2c3e20ddd2eaacf4ed59ba394ef | refs/heads/master | 2021-09-13T02:27:13.109986 | 2018-04-24T01:05:23 | 2018-04-24T01:05:23 | 103,946,299 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 423 | cpp | class Solution {
public:
int maxProfit(vector<int>& prices) {
int n = prices.size();
if (n <= 1)
return 0;
int max = 0;
int now = prices[0];
for (int i = 1; i < n; i++)
{
if (prices[i] < now)
now = prices[i];
else if... | [
"1048117230@qq.com"
] | 1048117230@qq.com |
9f8966a1e688f447ba1c175ec99f2f4625c5cdd4 | f613545b1c79a75fd500f8ddd121b0a539e4ee5c | /test.cpp | 32e9c71330cac11f31535d7ecb1c2be7289ebc87 | [] | no_license | yihuang/simple-decimal | 455343e9719632194a8290368670dc1345655a99 | 134a3bcd747f90f24000d1d09e6e7bcec15d16c7 | refs/heads/master | 2020-06-18T13:35:16.627032 | 2019-07-21T18:59:18 | 2019-07-21T18:59:18 | 196,319,301 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 493 | cpp | #include "decimal.h"
int main() {
std::string tmp1, tmp2, tmp3;
Decimal a, b, c;
a.set_string("11.001");
b.set_string("10.1001");
c.set_string("0000.0001");
printf("%s %s %s\n", a.to_string(tmp1).c_str(), b.to_string(tmp2).c_str(), c.to_string(tmp3).c_str());
printf("%s\n", (a+b).to_string(... | [
"yi.codeplayer@gmail.com"
] | yi.codeplayer@gmail.com |
e1e63925e1a9f3efc2653d5fae5fb84a8c94ca1d | 94b74c42b822f4858a27ff20e6ac73105cd58bf1 | /Cutelyst/Plugins/View/Grantlee/urifor.cpp | d4e1224b0aa908fa51027d1bcf116c15f83d2e8e | [
"BSD-3-Clause"
] | permissive | Mactarvish/cutelyst | 6e46c3b34f14122a891def997323690400d78806 | a55c65681f59c1d338155794e7e2123c2f682ba3 | refs/heads/master | 2023-03-15T16:21:04.798815 | 2023-03-02T11:23:22 | 2023-03-02T11:42:03 | 129,601,602 | 1 | 0 | null | 2018-04-15T11:01:35 | 2018-04-15T11:01:35 | null | UTF-8 | C++ | false | false | 4,389 | cpp | /*
* SPDX-FileCopyrightText: (C) 2017-2022 Daniel Nicoletti <dantti12@gmail.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "urifor.h"
#include <grantlee/exception.h>
#include <grantlee/parser.h>
#include <Context>
#include <Cutelyst/Context>
#include <Cutelyst/ParamsMultiMap>
#include <QDebug>
UriFor::... | [
"dantti12@gmail.com"
] | dantti12@gmail.com |
fe958a84409dfcc758ce3f91741a41eeccf9f6aa | 2a7e77565c33e6b5d92ce6702b4a5fd96f80d7d0 | /fuzzedpackages/multinet/src/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h | 7f5ba0e99b638bd2e4dd1e05aa793757a7433c82 | [] | no_license | akhikolla/testpackages | 62ccaeed866e2194652b65e7360987b3b20df7e7 | 01259c3543febc89955ea5b79f3a08d3afe57e95 | refs/heads/master | 2023-02-18T03:50:28.288006 | 2021-01-18T13:23:32 | 2021-01-18T13:23:32 | 329,981,898 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 11,409 | h | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You ca... | [
"akhilakollasrinu424jf@gmail.com"
] | akhilakollasrinu424jf@gmail.com |
1560bb3a9ade5e245f2bf825c48bfdd55c870d46 | 492090aad8109011ccd3d7fd83170aefdd5b228d | /eis_0207/CalcM/inc/printf_data.h | f1d49f85e88733085ab78f067925f807e2d4b11c | [] | no_license | caibo0610/EIS | ac305742602e6a478c9e19c3cb30a3d168b7264b | 8986209fc6c1a54e546cfdbade6e9130d32251bd | refs/heads/master | 2020-03-23T19:28:41.792716 | 2018-07-23T07:53:55 | 2018-07-23T07:53:55 | 141,980,652 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 872 | h | #pragma once
#include <stdio.h>
/* 跟踪算法数据 */
typedef struct
{
int frameID;
double keypoints_detect_time;//角点检测耗时
double keypoints_match_time;//角点匹配耗时
double M_compute_time; //M矩阵计算耗时
double stabilizeframe_time; //稳像耗时
double M_mean_time; //稳像时求M矩阵平均值耗时
double warpAffine_time;;//仿射变换耗时
cv::Mat... | [
"1179320018@qq.com"
] | 1179320018@qq.com |
04703a332287a6f6bba4e4a20a146192c601ede6 | 09d6f1c92593ca2394ae4fe003e70dc2c59e3454 | /Progetto1/laser.cpp | 85b8457a42300cfe43900cce62b6fc16286e0389 | [] | no_license | alright21/LaboratorioAlgoritmi | ecfb5a7b256598f3a8702ffd277b76345a0f604c | 748c527140cac939b54a5774156ce24fa6ce15a6 | refs/heads/master | 2022-01-30T13:18:59.246560 | 2019-05-27T09:35:54 | 2019-05-27T09:35:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,073 | cpp | using namespace std;
#include <iostream>
#include <fstream>
#include <vector>
#include <queue>
struct nodo{
int nome;
int tempo;
vector <int> vicini;
vector <int> archiUscenti;
};
struct arco{
int partenza;
int arrivo;
int peso;
int primoSpegnimento;
int tempoAcceso;
int tempoSpento;
bool attraversabile;
... | [
"ainter21.6@gmail.com"
] | ainter21.6@gmail.com |
83f61ee7fce3e3752da179b48baeef94f36d0a39 | 4ad2ec9e00f59c0e47d0de95110775a8a987cec2 | /_infoarena/---.Psir/Generator/main.cpp | 65913b43d46920d94bdd3e1b7e3a6e131849604f | [] | no_license | atatomir/work | 2f13cfd328e00275672e077bba1e84328fccf42f | e8444d2e48325476cfbf0d4cfe5a5aa1efbedce9 | refs/heads/master | 2021-01-23T10:03:44.821372 | 2021-01-17T18:07:15 | 2021-01-17T18:07:15 | 33,084,680 | 2 | 1 | null | 2015-08-02T20:16:02 | 2015-03-29T18:54:24 | C++ | UTF-8 | C++ | false | false | 396 | cpp | #include <iostream>
#include <fstream>
#include <ctime>
#include <cstdlib>
using namespace std;
int n,i,lim;
int main()
{
ofstream fout("psir.in");
ifstream fin("data.in");
srand(time(NULL));
cerr << "n = "; fin >> n;
cerr << "lim = "; fin >> lim;
cerr << "Generating...\n";
fout << n <<... | [
"atatomir5@gmail.com"
] | atatomir5@gmail.com |
67deae470fef821da5877c05d8599fcd85cf669b | ce27a784662a033d17e8051a99d356456a74d87f | /code/itkRotateSphericalParameterizationFilter.h | 2d89bdb14c9b57bfe30376d4b8834e58698bc92f | [] | no_license | erkang/ITKASMCorrespondences | c71953609b419a35300d9e00a2f22d24c63aaa78 | d76d3d57d9efc75559932363528e302ba8657922 | refs/heads/master | 2020-09-28T07:08:33.919934 | 2016-08-30T17:48:15 | 2016-08-30T17:48:15 | 66,963,940 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,160 | h | #ifndef _itkRotateSphericalParameterizationFilter_h
#define _itkRotateSphericalParameterizationFilter_h
#include "itkMeshToMeshFilter.h"
#include "itkSphericalParameterizedTriangleMesh.h"
#include "itkAffineTransform.h"
namespace itk
{
/** \class RotateSphericalParameterizationFilter
* \brief This class rotat... | [
"ekyaya@gmail.com"
] | ekyaya@gmail.com |
c6a5a9b30d045d5dd5f2de608f0b9ed0b64a967c | 9471b2743486250464fe6a7e962f663033fdb265 | /POJ/2236/2901822_AC_3404MS_31616K.cc | 1d83965108e86e9837e7ae4975668bbd1f696a26 | [] | no_license | liruqi/topcoder | 25d1ce9fdb836c94d8229f11dc74e3e3a9819e53 | 17df44464c91db51a1a24a9658c41ccb1501870b | refs/heads/master | 2023-01-23T00:13:11.810623 | 2023-01-13T01:28:12 | 2023-01-13T01:28:12 | 6,572,063 | 6 | 6 | null | 2014-11-16T09:17:56 | 2012-11-07T00:31:47 | C++ | UTF-8 | C++ | false | false | 1,174 | cc | //poj2236
#include <stdio.h>
#include <set>
using namespace std;
const int maxn = 1010;
int N,D;
typedef struct point{
int x,y;
}pit;
pit P[maxn];
set<int> G[maxn];
int diss(int p,int q){
int x=P[p].x-P[q].x;
int y=P[p].y-P[q].y;
return x*x+y*y;
}
void graph(){
int i,j;
int ds = D*D;
for(i=1... | [
"liruqi@conew.com"
] | liruqi@conew.com |
f5bca782ec3048fe3e649146fec3936281e20a60 | 407b689baa1a6ec758d9170fe4b0d50e16fc1d71 | /port/cpl_json_streaming_writer.cpp | 1c2a24dd1daa36e520c775029db5b9ab57424ca6 | [
"LicenseRef-scancode-warranty-disclaimer",
"SunPro",
"LicenseRef-scancode-info-zip-2005-02",
"BSD-3-Clause",
"MIT",
"ISC",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"Zlib",
"LicenseRef-scancode-info-zip-2009-01"
] | permissive | DLR-TS/gdal | edb6a9485b4b4a45900182b6888fe566ca7b4c7f | 1c52709d923e8529356aca55205def6d4fc7fc21 | refs/heads/ogr/xodr | 2023-07-06T09:22:19.018806 | 2022-07-07T16:44:48 | 2022-07-07T16:44:48 | 89,003,817 | 16 | 7 | NOASSERTION | 2023-09-04T18:31:58 | 2017-04-21T16:32:09 | C++ | UTF-8 | C++ | false | false | 6,905 | cpp | /******************************************************************************
*
* Project: CPL - Common Portability Library
* Purpose: JSon streaming writer
* Author: Even Rouault, even.rouault at spatialys.com
*
******************************************************************************
* Copyright (c)... | [
"even.rouault@spatialys.com"
] | even.rouault@spatialys.com |
9092bbd5ac49db5b82613c588645f25b97d691bd | ddab5f70b76c83468fa43ea1db9930c382e408db | /GCJ/moist/Nicholas/gcj10.cc | dbdc5669c36df1e890a15fef64e4841e94d0f9a0 | [] | no_license | Isdemus/AlwaysBeCoding | 740e5b8a88dba63141a623f760e94da9090f2c4b | 819058d230e78cf68c7cf61420275bc8b4a50a77 | refs/heads/master | 2020-04-04T07:09:52.082211 | 2019-05-05T08:30:45 | 2019-05-05T08:30:45 | 52,696,589 | 1 | 0 | null | 2019-05-05T08:37:56 | 2016-02-28T00:47:24 | C++ | UTF-8 | C++ | false | false | 794 | cc | /*
Google Code Jam Entrance Test
(Moist: https://code.google.com/codejam/contest/2845486/dashboard)
Used Algorithm Method: lexicographical sorting using strcmp.
Coded by isdemus (Jun 10 2016)
*/
#include <iostream>
#include <string>
#define stdoutans(c, answer) std::printf("Case #%d: %d\n", c, answer);
using namesp... | [
"isdemus@gmail.com"
] | isdemus@gmail.com |
22579566b5e1dba3b770a28f9389c2fd30448c78 | fa5d9b8c633a318d2b12b7ea747db08526f32611 | /engines/ep/tests/module_tests/kvstore_test.h | 9ec6af63c4096dbb1ed27c6ae9221ed099290b12 | [
"Apache-2.0"
] | permissive | nandsatya/kv_engine | 96f372fb36824249c685cbdae11a242736732b97 | 8927dcd5e0dede0383e52dbc9b1e8a96ac921f9c | refs/heads/master | 2020-04-28T21:03:47.604896 | 2019-03-12T14:34:46 | 2019-03-13T19:00:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,693 | h | /* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* Copyright 2019 Couchbase, 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
*
* h... | [
"daver@couchbase.com"
] | daver@couchbase.com |
0d77e2c096dbd6652d18e18bbc82dbafed872f50 | 53b5abebd4a8ebf58966a8597a70ad52248d5fe9 | /core/model/treeitem.h | d47191f2081662c943f3dcabef884382a8e0acad | [] | no_license | antis81/MsPiggit | e34cd3404c2476389657d3afba6d012a4b34a82c | 62f2a5e75dfb82b30ecd3e92cfd19eb16501ae37 | refs/heads/master | 2021-01-16T00:22:11.654430 | 2012-07-15T12:12:33 | 2012-07-15T12:12:33 | 2,609,283 | 1 | 0 | null | 2012-07-15T09:09:10 | 2011-10-19T21:34:35 | C++ | UTF-8 | C++ | false | false | 1,978 | h | /**
** Copyright (c) 2011 by Nils Fenner
**
** This file is part of MsPiggit.
**
** MsPiggit is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your ... | [
"nilsfenner@web.de"
] | nilsfenner@web.de |
768033f023604696025f6b462e508d6d05ecbaf4 | f949b8e6b96c302854de40c627a39159b21db20b | /qt-crossprojectmanager/src/wizard/crosslinuxprojectwizard.h | 84842857ead4167ad13245aeb29af3c0886a306b | [] | no_license | elta/Cross-SDK | 5fa0a965cf3a43f074d6530a9f2f13f3aede4805 | a29feabb770f9f72f07bd274fac05157ec07deca | refs/heads/master | 2016-09-09T22:04:07.915763 | 2014-06-20T01:30:40 | 2014-06-20T01:30:40 | 6,680,316 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,173 | h | #ifndef CROSSLINUXPROJECTWIZARD_H
#define CROSSLINUXPROJECTWIZARD_H
#include "qtwizard.h"
namespace CrossProjectManager {
namespace Internal {
class CrossLinuxCApp : public QtWizard
{
Q_OBJECT
public:
CrossLinuxCApp();
protected:
QWizard *createWizardDialog(QWidget *parent,
... | [
"elta.era@gmail.com"
] | elta.era@gmail.com |
0fb8c6197282cd6c620e8898f9d54b6671b04361 | 1e6f0452c752e34073a783a1d8cabb08ca79e5a2 | /Gozel/src/Renderer/OpenGL/OpenGLShader.h | 5869f1e6a24da6ed5eceb25247a6c4cdd8c81f76 | [] | no_license | Gogotchuri/GraphicsRenderer | f553d16654d1c1d3ebf45696b2dc33e89fd5e9b9 | 9b5c1800df86ef7ad9f891be7fbc014baacbd97a | refs/heads/master | 2021-11-26T00:21:38.630394 | 2021-11-09T06:50:39 | 2021-11-09T06:50:39 | 227,993,689 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,131 | h | /*
* OpenGLShader.h
*
* Created on: Dec 11, 2019
* Author: gogotchuri
*/
#ifndef OPENGL_OPENGLSHADER_H_
#define OPENGL_OPENGLSHADER_H_
#include "Shader.h"
#include <glad/glad.h>
class OpenGLShader : public Shader {
public:
OpenGLShader(std::string& name, std::string& vertex_src, std::string& fragment_src... | [
"igogo17@freeuni.edu.ge"
] | igogo17@freeuni.edu.ge |
f21fe7fe863f27b38a47533ac8746a435acefaf5 | b585d735fc047c6c80b131ec4b681e61c0d0f13e | /cpp/src/keyczar/base/port.h | 39fae3d8c8e60f50634fbf314c5be40cb3bc7fc7 | [
"BSD-3-Clause",
"LicenseRef-scancode-protobuf",
"Apache-2.0"
] | permissive | solrates/keyczar | a6cf77eabac7cd45970989c50edd47a550535e3f | 8ef838c2888067fe8db7240246ab616008a06f6b | refs/heads/master | 2020-05-01T07:26:58.384799 | 2019-03-24T00:01:31 | 2019-03-24T00:01:31 | 177,352,390 | 0 | 0 | Apache-2.0 | 2019-03-23T23:59:39 | 2019-03-23T23:59:39 | null | UTF-8 | C++ | false | false | 1,876 | h | // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef KEYCZAR_BASE_PORT_H_
#define KEYCZAR_BASE_PORT_H_
#include <stdarg.h>
#include <keyczar/base/build_config.h>
#ifdef COMPILER_MSVC
#def... | [
"sebastien.martini@8f3b247a-914b-0410-8f51-05e301831c82"
] | sebastien.martini@8f3b247a-914b-0410-8f51-05e301831c82 |
f5693c3cc6d07924d9fc6ae6403b365f4237736b | f5f4360584d3df09d0c26a4dcc53e34a1c4ea3be | /vectortest.cpp | 696fa96cdb29f8067f9e2c8b0963b89047fe092f | [] | no_license | xjbdjay/cpp_learn | 3370f84f885147870078ad4324405e89bf5f1e35 | e3f6415e92a331c7c269fbdfd2fd02eb6193b5e0 | refs/heads/master | 2021-06-01T21:58:09.982539 | 2016-08-23T06:48:13 | 2016-08-23T06:48:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,020 | cpp | /*==================================
* Copyright (C) 2015 All rights reserved.
*
* 文件名称:vectortest.cpp
* 创 建 者:moon
* 创建日期:2015年04月11日
* 描 述:
*
======================================================*/
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
template<typename T>
void p... | [
"zhangfangjie@meituan.com"
] | zhangfangjie@meituan.com |
ceca949f0ef41d2322f1805d947df11eeb380a91 | 6f94fc2a29f5a63ba93c191b695da1c08c178df3 | /src/blockchain_db/testdb.h | 671a435718fd03429eb0422e0a26bee6e5b7e4ab | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | sub-rosa-group/aeon | 35297111a7df2d2a501ab8d2eaae12774edeb218 | 3c273063c2197cc3bac1f730fd86276ccbba3984 | refs/heads/master | 2020-06-29T04:08:41.223288 | 2019-07-30T06:14:27 | 2019-07-30T06:14:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,481 | h | // Copyright (c) 2014-2018, 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... | [
"stoffu@protonmail.ch"
] | stoffu@protonmail.ch |
86e62c25ce7b2ab227f3395763c4b86f304d65b0 | 9fb456a0f1cc77d148a9c5334c084c2a65630592 | /cornellbox/Eyeo2012/Matter/src/MatterApp.cpp | 866b68810c1cf54476639f8ef28753160511525e | [
"Apache-2.0"
] | permissive | eighteight/CinderEight | 4deba73910eb3e02d2f881da303205159a77f052 | d9dfc6a0ad9a9e6c5b82624971127f0335d91639 | refs/heads/master | 2021-06-19T14:46:18.448625 | 2021-01-16T20:55:22 | 2021-01-16T20:55:22 | 16,152,693 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 14,786 | cpp | #include "cinder/app/AppBasic.h"
#include "cinder/gl/gl.h"
#include "cinder/gl/Fbo.h"
#include "cinder/gl/Texture.h"
#include "cinder/gl/TextureFont.h"
#include "cinder/gl/GlslProg.h"
#include "cinder/ImageIo.h"
#include "cinder/Camera.h"
#include "cinder/Utilities.h"
#include "Resources.h"
#include "CubeMap.h"
//#incl... | [
"Vladimir_Gusev@condenast.com"
] | Vladimir_Gusev@condenast.com |
b5475b9d0cf50d4ec7f6d1a5426cfc5a92bea9b2 | b7a0715012ac1d07d38dd5ba55dae55b76a199ab | /MKR1000/Mp3Notify.h | f2ede358392f21568549c1ed7325f9f10b43e788 | [] | no_license | emielch/MyTag | 7b16da93443c62cde379723d44539218aeb3e404 | 46769615e1fd416a1d4e768b898219266f947081 | refs/heads/master | 2020-03-31T12:38:00.360997 | 2019-05-17T10:06:55 | 2019-05-17T10:06:55 | 152,224,148 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 884 | h | // Mp3Notify.h
#ifndef _MP3NOTIFY_h
#define _MP3NOTIFY_h
#if defined(ARDUINO) && ARDUINO >= 100
#include "arduino.h"
#else
#include "WProgram.h"
#endif
class Mp3Notify
{
public:
static void OnError(uint16_t errorCode)
{
// see DfMp3_Error for code meaning
Serial.println();
Serial.print("Com Error ");
Ser... | [
"emielch@gmail.com"
] | emielch@gmail.com |
9da8f2f1dca1f555ebcb19c48f793340f0025fc4 | f9bd7baaa0ab4ec009c0f29ce5fd86c79373402a | /workspace/Algorithms/DoublePointer/88.cpp | 1515d9e856860aa22d1f7b119ce876d8e373a9c0 | [] | no_license | JZDBB/Cpp-Code | 1ac084ce841fedf2aa390dc33f8def34b82fd2c4 | a68450b970dc93d40f20730ba5958f175978ab17 | refs/heads/master | 2021-01-04T18:59:23.259413 | 2020-07-06T09:46:45 | 2020-07-06T09:46:45 | 240,718,471 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 557 | cpp | #include"doublePointer.h"
// 88. 合并两个有序数组 ——需要注意归并数组提前清空的问题
void merge(vector<int>& nums1, int m, vector<int>& nums2, int n) {
// 第一版
/*int last = (m--) + (n--) - 1;
while (n >= 0) {
nums1[last--] = m >= 0 && nums1[m] > nums2[n] ? nums1[m--] : nums2[n--];
}*/
// 0ms 版 —— 或计算比与计算一般来说要减少一定的耗时,m和n的自增自减也耗时
int la... | [
"oxuyining@gmail.com"
] | oxuyining@gmail.com |
74059d1b033d746057ef65211263ab4ee94dfd0c | 3804a14e92377ab7dc31c868304020876b9787e1 | /ecdsa_getStats/main.cpp | 0e028f80fb7fc4d7f1a4de4f3db69997c6a123c5 | [] | no_license | zoglam/omnet_vkr | 6099215bc8ca32bf317653f97ae66179541834b0 | f95506fa4e7ed0e49569f0ad439cce0e322a2325 | refs/heads/master | 2023-01-23T09:58:57.557001 | 2020-05-24T21:03:06 | 2020-05-24T21:03:06 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,410 | cpp | #include <iostream>
#include <stdint.h>
#include "ecc.h"
#include <time.h>
#include <fstream>
using namespace std;
ofstream out("output.txt");
// ECC_BYTES = 32
int main() {
uint8_t p_publicKey[ECC_BYTES + 1];
uint8_t p_privateKey[ECC_BYTES];
uint8_t p_hash[ECC_BYTES];
uint8_t p_signature[ECC_BYTES * 2];
clock_t... | [
"anzoor1998@gmail.com"
] | anzoor1998@gmail.com |
0774ffa6e5b11c5e7d96b16b1e076e57779cf707 | b6b34bb6a1a194e02e3e0a66b098c12da8e8ac16 | /src/ShaderProgram.h | 768bf6a3e965b3bfd35f0bf43cda1231f994bfd3 | [] | no_license | qxzcode/TriGen | ba42cc8b027f18a72bdff38a6215bec30d3329c0 | 6bcb0962f918833e904e63d4db07b9d7c83034e5 | refs/heads/master | 2021-01-18T17:17:41.492939 | 2015-03-01T07:41:20 | 2015-03-01T07:41:20 | 29,900,366 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 422 | h | //
// ShaderProgram.h
// Bedrock
//
// Created by Quinn on 11/2/13.
// Copyright (c) 2013 Hexahedron Games. All rights reserved.
//
#pragma once
#include <OpenGL/gl.h>
#include <string>
class ShaderProgram {
public:
void newProgram(std::string vertSrc, std::string fragSrc);
void deleteProgram();
void useProgr... | [
"qxzcraft@gmail.com"
] | qxzcraft@gmail.com |
eb580d18ef16755f2bbc065554844b83d00c390d | 985548d3d330e121a5cffa3e3f9f17443ee9e196 | /2020/RoundF/C.cpp | 2eb8decfde8452eb3476b14e2e9554eb9d244a95 | [] | no_license | TYakumo/GoogleKickStart | 3d7c210d51c4876821fa874a6c9a7ed981758a70 | c25c00f62802794e918eeaabed038cd171411e10 | refs/heads/master | 2021-07-25T11:21:39.368943 | 2021-07-20T14:12:35 | 2021-07-20T14:12:35 | 248,889,725 | 0 | 0 | null | 2021-07-20T14:12:35 | 2020-03-21T02:06:35 | C++ | UTF-8 | C++ | false | false | 2,576 | cpp | #include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <vector>
#include <map>
#include <queue>
#include <set>
#include <cmath>
#include <unordered_map>
using namespace std;
using UMI = unordered_map <long long, int>;
using VI = vector <int>;
using VVI = vector <UMI>;
using VVVI = vecto... | [
"foxs91092@gmail.com"
] | foxs91092@gmail.com |
acb31274e440880385d095b4fc151ddb245b6137 | 9907e0c587a91a3bc4134ef825e0f16e07af0715 | /src/rpcserver.cpp | e9de441cbcab81b8f3227075ad39f2f229c50c50 | [
"MIT"
] | permissive | ssbtest/inthecoin | 47bb87a432ea48c97f731b452d03f039cb2579c4 | 4135e4924c3fe669c37ed38c4ecbe94cb54a2420 | refs/heads/master | 2020-04-01T16:26:09.266586 | 2018-10-17T02:05:11 | 2018-10-17T02:05:11 | 153,381,288 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,446 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The PIVX developers
// Copyright (c) 2017 The Phore developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://... | [
"44217829+ssbtest@users.noreply.github.com"
] | 44217829+ssbtest@users.noreply.github.com |
a6bbe9cf4458cdbb391a47213e6b719d25d48eef | 2cfa657fd119a23de2a5c2ae6d55e6d2516bae2d | /src/test/coins_tests.cpp | 84885658207e20ed578c76be84e389cce63f08d6 | [
"MIT"
] | permissive | vivuscoin/vivuscoin | 640b10ae3a72c03b501e03b07caae09ce6c87c81 | ba0db89712234bf68b2d6b63ef2c420d65c7c25d | refs/heads/master | 2023-05-07T06:26:26.241247 | 2021-05-25T03:54:32 | 2021-05-25T03:54:32 | 362,198,076 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 37,745 | cpp | // Copyright (c) 2014-2018 The Bitcoin Core developers
// Copyright (c) 2021 The Vivuscoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <attributes.h>
#include <coins.h>
#include <consensus/validation... | [
"support@vivuscoin.com"
] | support@vivuscoin.com |
47c8e9b689a65adf82512dcf036d58eb8662ad0c | 2b194f8a64ff124dad47d16675297fc233392cb6 | /Export/windows/cpp/obj/src/__boot__.cpp | 48dc07cfb2f0c98352731e2f9a554e1eec959807 | [] | no_license | chaoticgood1/OpenFLGameTest1 | 08be0184f5493b28ccd13196cd274491f04d120f | 3bf03c6b5ac1a7420ebe14249ff16978b5b28a89 | refs/heads/master | 2023-08-30T07:29:18.405256 | 2015-07-24T00:10:42 | 2015-07-24T00:10:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 56,715 | cpp | #include <hxcpp.h>
#include <sys/FileSystem.h>
#include <openfl/ui/Keyboard.h>
#include <openfl/ui/_KeyLocation/KeyLocation_Impl_.h>
#include <openfl/ui/GameInputDevice.h>
#include <openfl/ui/GameInputControl.h>
#include <openfl/ui/GameInput.h>
#include <openfl/text/TextLineMetrics.h>
#include <openfl/text/TextFormatA... | [
"colete_nico@yahoo.com"
] | colete_nico@yahoo.com |
a19b5a50debb11bba9f92f5e9ff4d7f419a852aa | 005eb1edbcef8e69a7f203642c4a849f27d82668 | /2890/main.cpp | 0fff4bdb7aa0b48c4a2a95ff045d2f35593fa964 | [] | no_license | JustinLiu1998/ECNU-Online-Judge | 3dc2e1fe899f4ff7d64decafc5f21508b8bab40d | c57d4343334c5c15b48e6ce09882ec8092e07672 | refs/heads/master | 2022-04-07T14:05:06.856405 | 2020-02-25T13:28:36 | 2020-02-25T13:28:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 939 | cpp | //
// main.cpp
// 2890
//
// Created by 刘靖迪 on 2017/9/22.
// Copyright © 2017年 刘靖迪. All rights reserved.
//
#include <iostream>
#include <stdlib.h>
using namespace std;
typedef struct{
int stature;
int num;
} mystruct;
int cmp (const void*a, const void*b) {
mystruct *x = (mystruct *)a;
mystruct *... | [
"liujingdiljd@icloud.com"
] | liujingdiljd@icloud.com |
5ce1b8bca35b9a611dede44793d0629bfcf4b90b | f87ca8f4cd464244e1decf480a26316ef3636a2b | /ttn-abp-v1-gateway/_txRx.ino | eaaa38ccafc9121dd144e7912ce0ba7209033a12 | [] | no_license | apoorv999/LoRa-BTP | 36da7ed3699ae80352f6aa2f6755047f4b392377 | 42e95291fc9b90c9df40940e2cfb255b5eaf5b45 | refs/heads/master | 2023-02-14T15:26:51.946525 | 2021-01-09T13:35:11 | 2021-01-09T13:35:11 | 291,453,264 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,237 | ino | // 1-channel LoRa Gateway for ESP8266
// Copyright (c) 2016, 2017 Maarten Westenberg version for ESP8266
// Version 5.0.1
// Date: 2017-11-15
//
// based on work done by Thomas Telkamp for Raspberry PI 1ch gateway
// and many others.
//
// All rights reserved. This program and the accompanying materials
// are made av... | [
"apoorv.aryan17@gmail.com"
] | apoorv.aryan17@gmail.com |
cdd905647851f90a5c820d11ef3d7a32fd2b3b1b | 20049d88e2e8f0e1904efc561103c1d84d21507a | /seleznev.vyacheslav/A1/rectangle.hpp | e12dc1ed3da34db14e3ab9b468c037aa904c3752 | [] | no_license | gogun/Labs-for-SPbSPU-C-course-during-2019 | 5442a69152add3e66f02a7541e8dc8dd817f38a1 | 16ade47b859517a48d0fdb2e9704464bce4cc355 | refs/heads/master | 2022-01-09T16:02:54.728830 | 2019-06-06T11:06:33 | 2019-06-06T11:06:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 503 | hpp | #ifndef RECTANGLE_HPP
#define RECTANGLE_HPP
#include "base-types.hpp"
#include "shape.hpp"
class Rectangle : public Shape
{
public:
Rectangle(const double width, const double height, const point_t& pos);
double getArea() const override;
rectangle_t getFrameRect() const override;
void move(const point_t& point... | [
"vya4eslav.seleznev@gmail.com"
] | vya4eslav.seleznev@gmail.com |
f68faaed26d5d187905ae22d45ff5613f88aed28 | 01d155f7254f7d35ddca74a968ecd9c4edb3c198 | /Source/DoomVR/DoomVRCharacter.cpp | 143233d7890224ab86d64c3000a0269159591119 | [
"MIT"
] | permissive | EvanJuV/DoomVR | c18aee6461183180d7415686afb2be8c6591df02 | 0370b5ce00982ffdcad42515112298752ef04415 | refs/heads/master | 2021-04-26T15:00:57.387001 | 2016-02-21T18:15:51 | 2016-02-21T18:15:51 | 52,166,578 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,153 | cpp | // Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "DoomVR.h"
#include "DoomVRCharacter.h"
#include "DoomVRProjectile.h"
#include "Animation/AnimInstance.h"
#include "GameFramework/InputSettings.h"
#include "PaperFlipbookComponent.h"
DEFINE_LOG_CATEGORY_STATIC(LogFPChar, Warning, All);
///////////... | [
"javenmeza@gmail.com"
] | javenmeza@gmail.com |
25d178d87bf9d03ef51409410e6d8be4c8ca0a64 | 753a70bc416e8dced2853f278b08ef60cdb3c768 | /include/tensorflow/lite/tools/evaluation/stages/image_preprocessing_stage.cc | 107b29fe30e7e0cf3b448d0a348499c24d98d743 | [
"MIT"
] | permissive | finnickniu/tensorflow_object_detection_tflite | ef94158e5350613590641880cb3c1062f7dd0efb | a115d918f6894a69586174653172be0b5d1de952 | refs/heads/master | 2023-04-06T04:59:24.985923 | 2022-09-20T16:29:08 | 2022-09-20T16:29:08 | 230,891,552 | 60 | 19 | MIT | 2023-03-25T00:31:18 | 2019-12-30T09:58:41 | C++ | UTF-8 | C++ | false | false | 10,882 | cc | /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | [
"finn.niu@apptech.com.hk"
] | finn.niu@apptech.com.hk |
78dcc5de477e48da13bf140719f83eb9af93ea9e | 182b986b29f3c8b6a470884b6dd5875d987b5a90 | /Tape.hpp | 6309547793802bad411173b098a491c84fc5ed25 | [] | no_license | ogre9k/BrainfuckInterpreter | 1c207ce7fe507af88bbeeddf05ab0c9e2dfb75a9 | 3e0387509494df0bf851caf42d05979fb4149158 | refs/heads/master | 2020-05-03T01:18:34.513997 | 2019-03-29T06:02:38 | 2019-03-29T06:02:38 | 178,333,617 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 320 | hpp | #pragma once
#include <vector>
// This class represents the Tape of values in a BF program
class Tape {
public:
Tape();
void plus();
void minus();
void left();
void right();
char output();
void input(unsigned char c);
bool isZero();
void print();
private:
std::vector<unsigned char> _tape;
int _index;
}; | [
"Brandon@ogre9k.com"
] | Brandon@ogre9k.com |
b3d6d8ce38c1cba9daf3a5dfcfa8c5cdef656961 | bf6714f2a7706ce48b6b6c3518c5bff89ed9ffeb | /SwordOffer_01__12/SW10.cpp | c842749b3b9714f755ed243aca74020a8fc7f611 | [] | no_license | Jia-Joe/OJ_hihoCoder_LeetCode_Sword2Offer | b35e24813c28b273be1dfded2878c82ff43ed828 | a1e5e0c1777434643c1983ae43e7dee442f8bca1 | refs/heads/master | 2020-12-28T17:14:25.025958 | 2016-10-09T10:57:14 | 2016-10-09T10:57:14 | 35,426,133 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 321 | cpp | class Solution {
public:
int rectCover(int number) {
if(number==0) return 0;
if(number==1) return 1;
if(number==2) return 2;
int a=1,b=2;
for(int i=2;i<number;i++){
int c=a+b;
a=b;
b=c;
}
return b;
}
}... | [
"472167879@qq.com"
] | 472167879@qq.com |
7ca332748ef5ee003f5f332be2ef0d6c08c2d775 | 804f9babe06c52cb3e017164a811d5a3118f85cc | /QTCalcStar/HTL/HtlBase/HtlBaseFactory.h | 1283be2bab9c3fc609074f01df85a9ab82638d37 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | j2doll/QtCalcStar.Anthony.Daniels | 83a6a9a7e3c6820930a7f50fe09ca45e7644f5bc | b9935c3c032fed90f378ce34ee21cf4dc01d5c8b | refs/heads/master | 2020-04-14T02:46:17.096730 | 2019-01-02T08:57:00 | 2019-01-02T08:57:00 | 163,591,269 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,822 | h | /*
** This file is part of the Hpc Template Library (Htl or HTL).
** It is based on a merger of QT, STL, and SigSlots along with development of new classes.
** License information is in the HtlLicense.h file
** This software was merged and developed by:
**
** Anthony Daniels
** QT, STL, SigSlots
**
** HTL is free ... | [
"j2doll@gmail.com"
] | j2doll@gmail.com |
9d9a9a23324926499fc06f590a2133907f2cce2c | 2716818d5b958108ef5b904457093fb06539c464 | /search-in-rotated-sorted-array.cpp | df83d5123ef5999fc13ed1c7d2902132c6034ae8 | [] | no_license | kongfy/leetcode | 2848cc3a3d79b1d9e4784a206334ea1dfb52d0de | c64858c21652a2703045fae227dd5b6ca1f7da9f | refs/heads/master | 2021-03-27T11:10:38.872920 | 2015-06-24T05:48:04 | 2015-06-24T05:48:04 | 18,844,681 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 898 | cpp | #include <iostream>
using namespace std;
class Solution
{
public:
int search(int A[], int n, int target)
{
int l = 0;
int r = n - 1;
while (l < r) {
int mid = (l + r) / 2;
if (A[mid] == target) {
return mid;
}
if (A[mid]... | [
"njukongfy@gmail.com"
] | njukongfy@gmail.com |
da679d84ac56d100fbb42ffccf8d8cb3350ec42e | d9884463cd8a925b11f46406f69cbd52c59672bf | /src/planner/include/planner/TrivialIK.h | 79e70cdbe174d9b0620d80ebe407a5026c39dcb6 | [] | no_license | ze3000A/adaptive-planning-for-manipulator | 6a79067bc50068c3cdfb51a7f2e3872c3cec322d | ae5762a4fc56e9db2edd79318dd9f30da4517147 | refs/heads/master | 2023-04-27T21:27:20.422300 | 2021-04-14T15:05:51 | 2021-04-14T15:05:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 632 | h | #include "Solver.h"
struct Point;
class TrivialIK : public Solver
{
public:
TrivialIK() = default;
void solveExpandIK(
const std::vector<tf::Vector3> &trivial_collisions,
const std::vector<double> &links_length,
bool show
);
bool isJointModelGroupValid(const robot_model:... | [
"ha.rg@yandex.ru"
] | ha.rg@yandex.ru |
7220f4fa8825ea9119e97ace9191f7211d9a4da7 | aa4a0ca8dd7cc4e182e594d759b038cbc0e0fa2e | /flameZoner.h | 199db9c8909713bc4310df0cf1bc01a8b14f1c77 | [] | no_license | Team-2years/Wizard-of-Legend | 2cb6e32af728eef195b0194f2b33174292845d70 | d65537c3bebce448c6a5f503443c5988f4a30252 | refs/heads/master | 2023-06-25T08:04:30.723316 | 2021-08-03T08:03:03 | 2021-08-03T08:03:03 | 392,237,105 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 183 | h | #pragma once
#include "enemy.h"
class flameZoner :
public enemy
{
virtual HRESULT init(POINT position);
virtual void release();
virtual void update();
virtual void render();
};
| [
"toto9811@naver.com"
] | toto9811@naver.com |
117a65ed81d72797a8cef6754652e31d1bd20f85 | 0813e18eb6b6cd5de9898c33788b9ab7e93727c6 | /codejam/2017/D2/broken_memory.cpp | 650daa6f75a3ad4a67364a00264ae1af2d9faf7d | [
"MIT"
] | permissive | metaflow/contests | a769e97337363743a1ec89c292d27939781491d3 | 5e9ffcb72c3e7da54b5e0818b1afa59f5778ffa2 | refs/heads/master | 2021-07-13T00:09:23.470950 | 2021-06-28T10:54:47 | 2021-06-28T10:54:47 | 19,686,394 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,739 | cpp | #if defined(LOCAL)
// #define RANDOM_TEST
#define PROBLEM_NAME "broken_memory"
const double _max_double_error = 1e-9;
#include "testutils.h"
#endif
#include "broken_memory.h"
#include "message.h"
#include <bits/stdc++.h>
using namespace std;
using vi = vector<int>; using vvi = vector<vi>;
using ii = pair<int,int>; us... | [
"metaflow@yandex-team.ru"
] | metaflow@yandex-team.ru |
3d7e2ab1271be6e049a9efba66f2f31a3de8c3a3 | 770c5c83bf5e48f1ca67b8ae417e50fd2dadb2d6 | /examples/apps/windows/otAdapter.h | 746cd5eabd4bbf77e0609d18f4680e2f15be98f9 | [
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | jimmyam/openthread | 69933c24eb284a46bdeae8bb289aa0f79f12e066 | febcd2d9a42564dfd04afab828fd5d86cecefe6f | refs/heads/master | 2021-01-22T21:37:22.897020 | 2017-03-18T05:20:47 | 2017-03-18T05:20:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,913 | h | /*
* Copyright (c) 2016, The OpenThread Authors.
* 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 ... | [
"jonhui@nestlabs.com"
] | jonhui@nestlabs.com |
b6ccecf3f8077888dd7dfd36d47e731fe2cdaa77 | 7f5cf478efc9301a0f6699a62b1719a4e5a0dc23 | /tutorials/tutorial20/include/tutorial20/message/ConnectCommon.h | 4848f630b26082ff04a91bd44a488f448ded5661 | [] | no_license | deadloko/cc_tutorial | 2020e63d036f262c700a407a62159fba34f9f190 | bed6a789413704220dc583442424fb2199fe4d93 | refs/heads/master | 2023-01-14T01:25:32.850052 | 2020-11-09T22:07:52 | 2020-11-09T22:07:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,008 | h | // Generated by commsdsl2comms v3.5.3
/// @file
/// @brief Contains common template parameters independent functionality of
/// @ref tutorial20::message::Connect message and its fields.
#pragma once
#include "tutorial20/field/VersionCommon.h"
namespace tutorial20
{
namespace message
{
/// @brief Common types a... | [
"arobenko@gmail.com"
] | arobenko@gmail.com |
f9d261b20ecb0e74a3a286da52aadd90d2cae6c0 | 3c8a2a0e12b32d7767de4899fed64dc4be848c27 | /calibration_guis/src/traj_panel.cpp | 9d68fa6b1e997896087e3ec54a0a7185eb0cbe51 | [
"Apache-2.0"
] | permissive | ros-industrial/industrial_calibration | 584cef8505738d657ca4343427e26bb3aad5b329 | 92cd9e52c1a60610c18c95683afdd9e213df7b7e | refs/heads/kinetic-devel | 2021-11-09T04:41:31.673843 | 2019-10-22T14:20:57 | 2019-10-22T14:20:57 | 14,937,866 | 107 | 87 | Apache-2.0 | 2021-09-29T13:51:59 | 2013-12-04T22:33:59 | C++ | UTF-8 | C++ | false | false | 9,094 | cpp |
#include <stdio.h>
#include <QColor>
#include <QSlider>
#include <QLabel>
#include <QGridLayout>
#include <QPushButton>
#include <QPainter>
#include <QLineEdit>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QLabel>
#include <QTimer>
#include <geometry_msgs/Twist.h>
#include <std_srvs/Trigger.h>
#include <ca... | [
"clewis@swri.org"
] | clewis@swri.org |
b8d5cef858e05f575a1d2a45466bc16d439b8461 | fc38a55144a0ad33bd94301e2d06abd65bd2da3c | /thirdparty/cgal/CGAL-4.13/include/CGAL/mesh_skin_surface_3.h | a79b2f9e46a5fafa098b6b87c65563e7c20c2426 | [
"LGPL-2.0-or-later",
"LGPL-3.0-or-later",
"GPL-1.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-commercial-license",
"LGPL-3.0-only",
"GPL-3.0-only",
"LGPL-2.1-or-later",
"LicenseRef-scancode-free-unknown",
"LicenseRef-scancode-proprietary-license",
"LicenseRef-scan... | permissive | bobpepin/dust3d | 20fc2fa4380865bc6376724f0843100accd4b08d | 6dcc6b1675cb49ef3fac4a58845f9c9025aa4c9f | refs/heads/master | 2022-11-30T06:00:10.020207 | 2020-08-09T09:54:29 | 2020-08-09T09:54:29 | 286,051,200 | 0 | 0 | MIT | 2020-08-08T13:45:15 | 2020-08-08T13:45:14 | null | UTF-8 | C++ | false | false | 1,718 | h | // Copyright (c) 2005 Rijksuniversiteit Groningen (Netherlands)
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
// You can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation,
// either version 3 of the License, or (a... | [
"huxingyi@msn.com"
] | huxingyi@msn.com |
79ae450366bc6405a35b2651e03dc32626395d17 | ba9bd0bc67b3825551915d2f9b278348956c1d04 | /Phong_Graphics_Test/MovingObject.h | d464b52b106240ecec9ce493324e63ca45b4aa9a | [] | no_license | thedonaldloughry/Portfolio | b8b8cab5f8a41a1d1c075a68859932f65abc2be3 | fe6f9c79e1d277ca0c6e74a121d617db61e90794 | refs/heads/master | 2021-01-25T12:08:34.820669 | 2015-04-12T00:31:47 | 2015-04-12T00:31:47 | 31,644,949 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,272 | h | #include "llgl.h"
#include <vector>
#include <stdexcept>
#include <iostream>
class MovingObject
{
public:
Mesh m = Mesh("octagon_Plane.binary.mesh");
vec4 pos;
vec4 vel;
vec4 glow;
float radius = 0.15;
float pct;
MovingObject(vec4 position, vec4 velocity, vec... | [
"dloughry32@gmail.com"
] | dloughry32@gmail.com |
615227066189ce0ed2b2d6fbdb0e949648a900b3 | 7d69f5b9493dd508587f63711080d8a5dcd15e48 | /src/LogAnalyzerCplus/ComCBVCLogAnalyze.cpp | 2feae9946dd1c0e6c5cd94fdbdfb6c33ea6ee9ec | [] | no_license | ylonge/HEVCLogAnalyzer | c8ea9d08ea877a496178c7dfc353539b68435fc2 | e98adfae58d81c1995b1286d3a9c1010cd6a8be1 | refs/heads/master | 2021-01-25T06:36:06.543823 | 2017-11-16T08:30:00 | 2017-11-16T08:30:00 | 93,593,016 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,595 | cpp | /*
* File name: ComCBVCLogAnalyze.c.
* Function:
* Author: Ylonge from MCL-ZJU.
* Date: 2015/11/18.
*/
#include <stdlib.h>
#include <stdio.h>
#include <cstring>
#include <math.h>
#include <algorithm>
#include <fstream>
#include <iostream>
#include <assert.h>
#include "ComCBVCLogAnalyze.h"
using namespace std;
... | [
"hualong0930@163.com"
] | hualong0930@163.com |
4c6915fcd7414727f971138d774d620dacd1411f | c4ccc013908e99970da7c0dd866d9b3a9a86489f | /src/tests/end2end/VertexOnlyRenderPipelineTests.cpp | d22b2dea7dd2fe21319604edf4b442cf6b8a164b | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | krockot/dawn | 4a37ff2a2172e63596776d2b1c1f715d1917ae06 | ccbc1a39da703667a575793387ca7e29913cec59 | refs/heads/main | 2023-08-22T14:47:36.474749 | 2021-10-05T22:32:49 | 2021-10-05T22:32:49 | 414,283,413 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,504 | cpp | // Copyright 2021 The Dawn 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 agreed t... | [
"dawn-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | dawn-scoped@luci-project-accounts.iam.gserviceaccount.com |
90208aab70684aa1e357e07a12913f178057b213 | e69c1a1dcea94eb86d07c3c36d64e8d8cc98497c | /Dravenklova/Plugins/FMODStudio/Source/FMODStudio/Private/FMODBank.cpp | 6d77aa0fdc098777c738481b59a8e459c7583ed6 | [] | no_license | Towkin/DravenklovaUnreal | d4ba684f6a626a72e994d2a010daccdefda9515b | dc5eee09c04294b6495ee05158f085b5c8454bfd | refs/heads/master | 2020-05-25T15:43:08.575798 | 2016-12-18T17:45:18 | 2016-12-18T17:45:18 | 61,118,458 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 554 | cpp | // Copyright (c), Firelight Technologies Pty, Ltd. 2012-2016.
#include "FMODStudioPrivatePCH.h"
#include "FMODBank.h"
#include "FMODStudioModule.h"
UFMODBank::UFMODBank(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
}
/** Get tags to show in content view */
void UFMODBank::GetAssetRegistr... | [
"emanuel.stromgren@pulpeten.se"
] | emanuel.stromgren@pulpeten.se |
b352c7a39257af028602138369c9b43799b77182 | c1e3fcbe701691d23c16bc5e4cf72730bb1c35c1 | /src/KHttpsSrv/MFCAppPostTest1/MainFrm.cpp | fb9a16a43df8451ee9f345fc5cbc89886e2946fd | [
"MIT"
] | permissive | Shuooang/Winpache | a3d4c475140767a6490008a6fa4b44b5880d601d | d4d9aa6d839a2908269be8d61acba18bcf738f3f | refs/heads/main | 2023-07-18T11:24:52.017248 | 2021-09-08T17:31:16 | 2021-09-08T17:31:16 | 377,214,088 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,989 | cpp |
// MainFrm.cpp: CMainFrame 클래스의 구현
//
#include "pch.h"
#include "framework.h"
#include "MFCAppPostTest1.h"
#include "MainFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMainFrame
IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
ON_WM_CREATE()
END_MESSAGE_MAP()
stat... | [
"keepspeed@gmail.com"
] | keepspeed@gmail.com |
8396812846532854f49dacfc4d872de43c656eb9 | 4d7836124bd6b30ef5b951b158c79ca3d44f41ff | /Repechaje/G.cpp | bdf0b002afefbe5d822d155ccb007606393f6f26 | [] | no_license | CFOP2357/-nullptr---Gran-Premio-de-Mexico-2020 | 98a7a226e0502de7feb96382c61d0253adf509cb | dc91d8723e06cb3d237f52763411c3c29b6df84c | refs/heads/main | 2023-03-03T00:40:35.303820 | 2021-02-14T06:19:27 | 2021-02-14T06:19:27 | 307,815,234 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,452 | cpp | #include <iostream>
#include <climits>
#include <vector>
#include <algorithm>
#include <cmath>
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <unordered_map>
#include <unordered_set>
using namespace std;
/*
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
typedef tree<... | [
"yoguel.salazar@gmail.com"
] | yoguel.salazar@gmail.com |
0f521150fea97bd8db1ec50bc8626f4d761b1408 | 5d8d10162ce53ba424752f441ba05f56adb1e0af | /proj.ino | a699716b1e9a28a449db22abd5ac81a0a16c56a2 | [] | no_license | jjchev/lab-datalog | b555fadad2af47963ee253e92881835021658079 | 7cac0c8496545bf758acc6aaf6c00d91bc3cdbc2 | refs/heads/main | 2023-07-26T22:52:47.028314 | 2021-08-19T02:29:04 | 2021-08-19T02:29:04 | 395,097,891 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,313 | ino | #include <OneWire.h>
#include <DallasTemperature.h>
#include <SD.h>
//Datalogger con arduino y microSD. Sensores LM35 (analog) y DS18B20 (digital). v0.5.0 /jjchev
// Declaracion de variables globales
const int pinDatosDQ = 2;
const int pinLM35 = A0;
const int pinLED = 5;
const int pinBOTON = 3;
const int cspin = 4;
... | [
"j.chevriau@gmail.com"
] | j.chevriau@gmail.com |
19df148b65061363f67295acab390ed488bac27c | 69005ab4c8cc5d88d7996d47ac8def0b28730b95 | /msvc-cluster-realistic-1000/src/dir_6/perf308.cpp | 508bf0404d9aa801e16c08f5096347cdf865814e | [] | no_license | sakerbuild/performance-comparisons | ed603c9ffa0d34983a7da74f7b2b731dc3350d7e | 78cd8d7896c4b0255ec77304762471e6cab95411 | refs/heads/master | 2020-12-02T19:14:57.865537 | 2020-05-11T14:09:40 | 2020-05-11T14:09:40 | 231,092,201 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 211 | cpp | #include <Windows.h>
#include <vector>
#include <inc_9/header_190.h>
static_assert(sizeof(GenClass_190) > 0, "failed");
std::vector<int> perf_func_308() {
LoadLibrary("abc.dll");
return {308};
}
| [
"10866741+Sipkab@users.noreply.github.com"
] | 10866741+Sipkab@users.noreply.github.com |
9b47cc090fda87a44bd6cdbc52d15042d7ab90a2 | 5c3c559b9accafebcbd143f543ecf20dd4410269 | /Catastrophe/Game/missile ai component.hpp | 1e5ff15d23dcd8c5e80ae9b3c1b36270c26fc347 | [] | no_license | indianakernick/Catastrophe | cd2688af966755d934c20aafdb73562674071939 | 8b50525c43c4f6d6b034e98c1882ded492745458 | refs/heads/master | 2022-05-24T13:45:30.678733 | 2018-10-06T09:32:44 | 2018-10-06T09:32:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 569 | hpp | //
// missile ai component.hpp
// Catastrophe
//
// Created by Indi Kernick on 23/10/17.
// Copyright © 2017 Indi Kernick. All rights reserved.
//
#ifndef missile_ai_component_hpp
#define missile_ai_component_hpp
#include "steer.hpp"
#include "ai component.hpp"
class MissileAIComponent final : public AIComponent... | [
"kerndog73@gmail.com"
] | kerndog73@gmail.com |
2f5ed4042683943020682da6099ea9932f29838b | 9029e19e83262ecad3b64b8a8eb8202df1756c85 | /aws-cpp-sdk-dataexchange/source/DataExchangeEndpoint.cpp | 5e2c7374df8b8bff87e50133b1d3cbe29640a93c | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | thesunisgas/aws-sdk-cpp | 5da80c064039e2c4636d87bf69f9059fcfcc83c5 | 5e13f32f0c3f1e7c259bd06404b3aba12fa7b9a5 | refs/heads/master | 2022-08-25T13:15:44.713783 | 2019-03-12T20:52:49 | 2020-05-19T05:11:57 | 261,756,291 | 2 | 2 | null | 2020-05-06T12:47:07 | 2020-05-06T12:47:06 | null | UTF-8 | C++ | false | false | 2,125 | cpp | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... | [
"thesunisgas7@icloud.com"
] | thesunisgas7@icloud.com |
cf8a587961cd6b9af506a751af5fd757cf8965db | 364e5cd1ce6948183e6ebb38bd8f555511b54495 | /DesignPattern/Prototype/PrototypeManager/src/ConcretePrototype1.cpp | 072f55d0153163b2a556fe3e19e0078bfb58bf74 | [] | no_license | danelumax/CPP_study | c38e37f0d2cebe4adccc65ad1064aa338913f044 | 22124f8d83d59e5b351f16983d638a821197b7ae | refs/heads/master | 2021-01-22T21:41:11.867311 | 2017-03-19T09:01:11 | 2017-03-19T09:01:11 | 85,462,945 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 655 | cpp | /*
* ConcretePrototype1.cpp
*
* Created on: Oct 21, 2016
* Author: eliwech
*/
#include "ConcretePrototype1.h"
ConcretePrototype1::ConcretePrototype1()
: _name("")
{
}
ConcretePrototype1::~ConcretePrototype1()
{
}
Prototype* ConcretePrototype1::clone()
{
ConcretePrototype1* prototype... | [
"474198699@qq.com"
] | 474198699@qq.com |
e91bfdf4eb49655f931cf2fcfd0ad1761cc7d7e6 | 872770c5323aa17120f2f708a1f0be09e663c9a8 | /Elastos/Framework/Droid/eco/src/core/widget/AbsListViewSavedState.cpp | efd47091a2dec8ed0a231b3851fced278dae262d | [] | no_license | xianjimli/Elastos | 76a12b58db23dbf32ecbcefdaf6179510362dd21 | f9f019d266a7e685544596b365cfbc05bda9cb70 | refs/heads/master | 2021-01-11T08:26:17.180908 | 2013-08-21T02:31:17 | 2013-08-21T02:31:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,904 | cpp |
#include "widget/AbsListViewSavedState.h"
AbsListViewSavedState::AbsListViewSavedState()
: mSelectedId(-1)
, mFirstId(-1)
, mViewTop(0)
, mPosition(0)
, mHeight(0)
{
}
AbsListViewSavedState::AbsListViewSavedState(
/* [in] */ IParcelable* superState)
: ViewBaseSavedState(superState)
, ... | [
"chen.yunzhi@kortide.com.cn"
] | chen.yunzhi@kortide.com.cn |
4f00684a5c0ace8d6787bc998a52837cb60fb0e4 | 1e08e84e907205c32db807633e4e8dda27c2312e | /AnimalOlympic/Flyweight/main.cpp | 4251fe7d759f426c858e08b274c4d2402b132421 | [] | no_license | mmt200088/FrameVictory | 951d6634d828c6fe11e237aff218db4983225f31 | 87ff7ece1aa72a55ce844e32876d9d69fb5c5d84 | refs/heads/main | 2023-01-22T05:36:22.145834 | 2020-11-26T02:44:15 | 2020-11-26T02:44:15 | 312,803,031 | 1 | 2 | null | 2020-11-24T11:50:50 | 2020-11-14T11:27:41 | C++ | UTF-8 | C++ | false | false | 105 | cpp | #include"State.h"
int main()
{
auto state = new State();
state->test();
system("pause");
return 0;
} | [
"hyo619@tongji.edu.cn"
] | hyo619@tongji.edu.cn |
2ffaa7de185ffb2b3b9de2a2d361158ba951e7ab | ac227cc22d5f5364e5d029a2cef83816a6954590 | /applications/physbam/physbam-lib/Public_Library/PhysBAM_Tools/Parsing/ARG_DATA.h | eeb0f0e4c75f64ce938347b900f21656f5ed92be | [
"BSD-3-Clause"
] | permissive | schinmayee/nimbus | 597185bc8bac91a2480466cebc8b337f5d96bd2e | 170cd15e24a7a88243a6ea80aabadc0fc0e6e177 | refs/heads/master | 2020-03-11T11:42:39.262834 | 2018-04-18T01:28:23 | 2018-04-18T01:28:23 | 129,976,755 | 0 | 0 | BSD-3-Clause | 2018-04-17T23:33:23 | 2018-04-17T23:33:23 | null | UTF-8 | C++ | false | false | 5,529 | h | //#####################################################################
// Copyright 2004-2005, Eran Guendelman, Geoffrey Irving, Igor Neverov, Andrew Selle.
// This file is part of PhysBAM whose distribution is governed by the license contained in the accompanying file PHYSBAM_COPYRIGHT.txt.
//########################... | [
"quhang@stanford.edu"
] | quhang@stanford.edu |
cdec16b26ab7c59282a240874b8a88d25b438116 | 724dc63de53c9911cb0ff037102bd5b964fe5768 | /C++/MFC/Circle/CircleDoc.h | 6502949fd9d2f1ffb37baf76236582831c3c3a65 | [] | no_license | liukechao/KCodes | a1820b3df3fb053e8a5cf4e69c03b3ac69c2a780 | 8862bf03eb030b931d45b40bbdd2cbbcfc3b0482 | refs/heads/master | 2021-01-15T13:24:27.606593 | 2018-09-17T01:25:34 | 2018-09-17T01:25:34 | 68,582,779 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,444 | h | // CircleDoc.h : interface of the CCircleDoc class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_CIRCLEDOC_H__96B50349_EDEC_41E7_8207_762E353C0315__INCLUDED_)
#define AFX_CIRCLEDOC_H__96B50349_EDEC_41E7_8207_762E353C0315__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#... | [
"liu_kechao@163.com"
] | liu_kechao@163.com |
86c19ba692b4ead97de73c4def7d055177b9a645 | 10d41367e7ec3f5d4074ceabae024b3ded3b4a13 | /c++/include/objects/trackmgr/gridrpcclient.hpp | 79d6d28a337fcae9409373393b220b41c44c57ad | [] | no_license | avtomaton/blast-ncbi | fb88c01df0a0f721dc942b7e00bb2cab22d3cac6 | a76cdd948affcc2c5c1c1ae6fc1481098e650d2d | refs/heads/master | 2021-01-01T06:27:01.871908 | 2015-03-06T09:39:43 | 2015-03-06T09:39:43 | 31,762,500 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,586 | hpp | #ifndef INTERNAL_MISC_SERIAL___GRID_RPC_CLIENT__HPP
#define INTERNAL_MISC_SERIAL___GRID_RPC_CLIENT__HPP
/* $Id: gridrpcclient.hpp 439067 2014-06-25 13:02:23Z meric $
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* Nat... | [
"avtomaton@gmail.com"
] | avtomaton@gmail.com |
d0efa1d02c1a665baabce89478cad38765d7cfbf | 544cf9fbb9fc83083d795b79d42fb382e23c06f9 | /main.cpp | 94b714517788d3c6896e45c70a617e7cdf0b9226 | [] | no_license | divan/vkontakteqml | b5810cd72c98388ffecab0fb758ea8f03a92bf69 | d247c1d7a0f3febcaa5100b0604b3081453737d1 | refs/heads/master | 2016-09-05T14:15:31.778533 | 2011-08-06T19:25:22 | 2011-08-06T19:25:22 | 2,166,126 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 261 | cpp | #include <QtGui/QApplication>
#include <QtDeclarative>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QDeclarativeView view;
view.setSource(QUrl("/opt/vkontakte/qml/main.qml"));
view.showFullScreen();
return app.exec();
}
| [
"ivan.daniluk@gmail.com"
] | ivan.daniluk@gmail.com |
32b3cf9da19b1fa38c47f21f43b09fc904d7e91d | 75407c7343521f74c51b0badf6ca22996e33b686 | /CPUT/CPUT/CPUTMeshOGL.h | 43a320b06bbafe057248f32e420e8aa46a6675b4 | [
"BSD-3-Clause"
] | permissive | xinfushe/InstancingAndroid | 76ce6f141ac870ec7b194771dd195ff465565fbf | fa178d64860a937a808e3f0d64aadb45f3e2414e | refs/heads/master | 2021-01-12T09:45:12.107603 | 2014-07-11T20:40:54 | 2014-07-11T20:40:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,043 | h | //--------------------------------------------------------------------------------------
// Copyright 2011 Intel Corporation
// All Rights Reserved
//
// Permission is granted to use, copy, distribute and prepare derivative works of this
// software for any purpose and without fee, provided, that the above copyrig... | [
"cferreir1@gmail.com"
] | cferreir1@gmail.com |
e7bccee7f0cc49476bf9f628b708663ebd3bc267 | 0e61dc4ba6d14aa82b1b8dcb52ab09d48acd63dc | /src/photog/utils.cpp | 41128beaeb8b3a1f8aeab08001ff0790ca201b32 | [
"MIT"
] | permissive | kyleingraham/photog | b2c1fa3031a59c5b917cf433e9520d4aee0efc2d | 1b3d77571f37fac3943ccd7a970de8045ad7c448 | refs/heads/master | 2023-06-11T14:02:44.638481 | 2021-07-12T03:25:47 | 2021-07-12T03:27:01 | 384,778,944 | 2 | 0 | MIT | 2021-07-12T03:27:02 | 2021-07-10T19:54:54 | C++ | UTF-8 | C++ | false | false | 412 | cpp | #include "utils.h"
#include <map>
#include <string>
#include "constants.h"
namespace photog {
photog::Layout get_layout() {
static std::map<std::string, photog::Layout> layouts =
{{"planar", Layout::Planar},
{"interleaved", Layout::Interleaved}};
// LAYOUT i... | [
"kyle@kyleingraham.com"
] | kyle@kyleingraham.com |
9df83c93bf4d7be38e56d97083f3fb53d8b3bac7 | 175b6d816c5a62dca6d0825b05242959c44ad201 | /filesaver.h | 0c54afa5762585a5d5706fb24469b0bf17ef3454 | [] | no_license | jkwok678/RailwayBuilder | e2df06fa91c4cb5e00e6db43ea512b54fc164d0d | 9db69107884df4de3b18cb0bf3869bd54dd62995 | refs/heads/develop | 2023-08-08T03:10:24.305549 | 2023-07-22T15:18:50 | 2023-07-22T15:18:50 | 388,106,327 | 0 | 2 | null | 2023-07-22T15:18:52 | 2021-07-21T12:16:16 | C++ | UTF-8 | C++ | false | false | 788 | h | #ifndef FILESAVER_H
#define FILESAVER_H
#include <QFile>
#include <QString>
#include "map.h"
class Filesaver
{
private:
QString lastSavedPath;
/**
* @brief Make the content that will be written to file.
* @param map The current map.
* @return A vector of QStrings that contain the text to write.
*/
std::v... | [
"jkwok678@gmail.com"
] | jkwok678@gmail.com |
53cc812cdfd169e207c100d257985873b95bee36 | 7b6f175ccd7ba46001ba6cf8ca9fbb6ead3f60e8 | /mkrStatic/mkrStatic.ino | bbed0bc9286de02442a44c26b0db0151cb06a8cd | [] | no_license | genau7/arduino | 9f2506714f813434ca4f038aeccaaefb7eb09c73 | 35372b56824a8bd13136214e0f146a6a92a2d478 | refs/heads/master | 2021-01-01T05:01:52.671577 | 2017-03-06T21:03:32 | 2017-03-06T21:03:32 | 58,673,381 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,105 | ino | #include <WiFi101.h>
#include <WiFiClient.h>
#include <WiFiServer.h>
#include <WiFiSSLClient.h>
#include <WiFiUdp.h>
#include <SPI.h>
#include <WiFi101.h>
#include <Adafruit_NeoPixel.h>
#define PIN_A 7
#define PIN_B 8
#define PORT 5555
#define NO_MORE_ACTIVE_LEDS -1
#define LEDNUM 324
char ssid[] = "Asiak"; // ... | [
"kstepek@hotmail.com"
] | kstepek@hotmail.com |
b4cb34df053aa0605df6cf11b8d8663ccf6a936d | ceade0bdfa3b637c8094a95fdb516ae427f6f14c | /stdFuture/StaticTest.cpp | 1fefe65378bb2fe8059c034f5e6c86ad182184b8 | [] | no_license | seabeach000/stdFuture | ebb299d8c7aa7e36b4119c2ffb2236e736482e08 | 4b2e260996c36ee6d429787893d47974d5171825 | refs/heads/master | 2021-05-04T07:40:41.572461 | 2021-03-11T01:26:36 | 2021-03-11T01:26:36 | 70,678,800 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,735 | cpp | #include "stdafx.h"
#include "StaticTest.h"
#include <iostream>
#include <map>
struct MediaData {
bool isInterlaced = false;
// video related parameters
uint16_t fps;
uint16_t w;
uint16_t h;
int tp_mode;
uint16_t video_payload_type;
int ... | [
"wangxingang@WANGXINGANG"
] | wangxingang@WANGXINGANG |
6c46e7b30d334c6f336eeb2e92327c3d10887f31 | 5456502f97627278cbd6e16d002d50f1de3da7bb | /components/web_contents_delegate_android/validation_message_bubble_android.h | dfc8215153ca68d049e971d0bcae1b2f2d71329c | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,439 | h | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_WEB_CONTENTS_DELEGATE_ANDROID_VALIDATION_MESSAGE_BUBBLE_ANDROID_H_
#define COMPONENTS_WEB_CONTENTS_DELEGATE_ANDROID_VALIDATION_MES... | [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
9a6d136da4ced55e9a884f3855723ce5fd1aedbc | 58099e123ecb367a267b5c525ad2f00cd1cf0e5c | /branches/V1_4_x_x/Minos/MinosLogger/ContestApp.h | b5e7f08eaf92fb726d82b94749b1550974bef5cc | [
"BSD-3-Clause"
] | permissive | BackupTheBerlios/minos-svn | 3dfdd40909e3025597306786dff85c0cad753d5f | c6d3c5d75a2b3e2693e9abd8d77c24954d8f831a | refs/heads/master | 2021-01-23T15:14:44.080903 | 2014-01-30T10:15:30 | 2014-01-30T10:15:30 | 40,776,224 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,803 | h | /////////////////////////////////////////////////////////////////////////////
// $Id$
//
// PROJECT NAME Minos Amateur Radio Control and Logging System
//
// COPYRIGHT (c) M. J. Goodey G0GJV 2005 - 2008
//
/////////////////////////////////////////////////////////////////////////////
//------------------------... | [
"g0gjv@5aba93d0-1d48-0410-ab36-a573633a0585"
] | g0gjv@5aba93d0-1d48-0410-ab36-a573633a0585 |
ba6969043f08b943f48815b8374ca4feabf02f3e | f29b7b3a54c6cfd3c1e831fe4ffe218a1adcc308 | /Class Assignments/ex5-1.cpp | 95d40d5730c29772cd83ae78c53545632199e909 | [] | no_license | rolandrao/CISS290 | 85be9ca4af93ada3806ee95a04e9e0827e5936d1 | a55f9765f9b005a496af76b8819ec4beab601876 | refs/heads/master | 2020-05-03T12:10:02.209163 | 2019-04-24T15:01:07 | 2019-04-24T15:01:07 | 178,617,305 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 502 | cpp | /* Roland Rao
Exercise 5-1 main
This program will instantiate a rectangle object
*/
#include<iostream>
#include"/Users/rolandrao/Documents/CISS290/Header Files/rectangle5-1.h"
using namespace std;
int main(){
rectangle51 r;
float len, wid;
cout << "Enter Length: ";
cin >> len;
cout << "Enter Width: ";
cin ... | [
"rolandrao@gmail.com"
] | rolandrao@gmail.com |
1e23e30a3fba2c065a2eb167d0c06a17e62b0a03 | 09c5e1da26c4805bc98f49b3a76e5ce98ea4a537 | /sstmac/hardware/topology/dragonfly_plus.cc | 85927097de5e0b5d9b9cd03fd90afe886d59d474 | [
"BSD-3-Clause"
] | permissive | sknigh/sst-macro | e711c1c6dd938b964f882c3b0358b5ad4c1edc95 | 63833b12797bf3c4d4e203c96bd8fbc1cb042a7b | refs/heads/master | 2021-01-24T22:14:19.517590 | 2018-05-22T13:48:00 | 2018-05-22T13:48:00 | 58,085,180 | 0 | 0 | null | 2016-05-04T21:28:35 | 2016-05-04T21:28:34 | null | UTF-8 | C++ | false | false | 5,487 | cc | /**
Copyright 2009-2017 National Technology and Engineering Solutions of Sandia,
LLC (NTESS). Under the terms of Contract DE-NA-0003525, the U.S. Government
retains certain rights in this software.
Sandia National Laboratories is a multimission laboratory managed and operated
by National Technology and Engineering... | [
"jjwilke@sandia.gov"
] | jjwilke@sandia.gov |
f75ee345fa112c8874c2ae7a354d5421eaf94a63 | 4bd58f155f6daec2c6bba5ce680ebe902dea8fea | /ARC/029/B.cpp | 79376ad37e0f0e683dcbd35c212ec4592fb3d37d | [] | no_license | creep06/competitive-programming | 8a8c80c7f6a7b211612812524a41fb4a8d5fa830 | 52fcb281dc47fcebe52787f968b053e5c0303c46 | refs/heads/master | 2020-04-09T07:01:53.169346 | 2019-06-02T11:28:59 | 2019-06-02T11:28:59 | 160,137,464 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,208 | cpp | #include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(ll (i)=0;(i)<(ll)(n);(i)++)
#define rept(i,n) for(ll (i)=0;(i)<=(ll)(n);(i)++)
#define reps(i,s,n) for(ll (i)=(s);(i)<(ll)(n);(i)++)
#define repst(i,s,n) for(ll (i)=(s);(i)<=(ll)(n);(i)++)
#define repr(i,n) for(ll (i)=(n);(i)>=0;(i)--)
#define each(itr... | [
"creep040@gmail.com"
] | creep040@gmail.com |
e5796eafa4dd535922a0904b7f265f9c3d0f7c6d | c02e6a950d0bf2ee8c875c70ad707df8b074bb8e | /build/Android/Debug/bimcast/app/src/main/include/Fuse.Resources.MemoryPolicy.h | f618d9ac07b5a34de06c06c9ac4761cf54ba467a | [] | no_license | BIMCast/bimcast-landing-ui | 38c51ad5f997348f8c97051386552509ff4e3faf | a9c7ff963d32d625dfb0237a8a5d1933c7009516 | refs/heads/master | 2021-05-03T10:51:50.705052 | 2016-10-04T12:18:22 | 2016-10-04T12:18:22 | 69,959,209 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,368 | h | // This file was generated based on C:\ProgramData\Uno\Packages\FuseCore\0.35.12\Resources\$.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Object.h>
namespace g{namespace Fuse{namespace Resources{struct MemoryPolicy;}}}
namespace g{
namespace Fuse{
namespace Resourc... | [
"mabu@itechhub.co.za"
] | mabu@itechhub.co.za |
7a2e1ad9c43f8c4bb70801515cfeb2ad82aaf74f | 2fea0090255463d2fd349adef4f1eb8035b306c5 | /src/python/lib/graph/opt/minstcut/minstcut.cxx | 6e52b7068c96d728fa539d61ed5e56610dc6cb44 | [
"MIT"
] | permissive | FynnBe/nifty | 5f7e49becb71ec03c41dbc5679c2e1e4885c7a8d | 067e137e9c1f33cccb22052b53ff0d75c288d667 | refs/heads/master | 2021-05-06T04:49:51.596952 | 2018-06-15T13:15:13 | 2018-06-15T13:15:13 | 115,007,430 | 0 | 0 | null | 2017-12-21T13:13:17 | 2017-12-21T13:13:17 | null | UTF-8 | C++ | false | false | 930 | cxx | #include <pybind11/pybind11.h>
#include <iostream>
namespace py = pybind11;
PYBIND11_DECLARE_HOLDER_TYPE(T, std::shared_ptr<T>);
namespace nifty{
namespace graph{
namespace opt{
namespace minstcut{
void exportMinstcutObjective(py::module &);
void exportMinstcutFactory(py::module &);
void exportMinstcutV... | [
"neishabouri@stud.uni-heidelberg.de"
] | neishabouri@stud.uni-heidelberg.de |
8e057fe56d9a63d8ec727f9df8e05dc440e55094 | 29e8f5821330a4b38991aeb98017ba8c20af4910 | /Detector/Core/DetectionList.h | b41ec93520b4837fe6601e7f97eb48a9f9ee4246 | [] | no_license | zaemin2/MultipleObjectTracker | e34dbd8c9f6df5799ae8672dab73643b87192002 | 9c202436a5a65757484e68abba691b28bea91999 | refs/heads/master | 2020-04-12T12:57:15.235979 | 2018-12-21T05:16:53 | 2018-12-21T05:16:53 | 162,507,321 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,593 | h | //============================================================================
// Author : F. De Smedt @ EAVISE
// Copyright : This code is written for the publication of "Open Framework for Combined Pedestrian detection". This code is for research and educational purposes only. For a different license, please ... | [
"zaemin2@gmail.com"
] | zaemin2@gmail.com |
4667d1527d38dc70654a977673c2365b85385bcc | e9a3755b1cc7574ed9029782e994a6c9ab305716 | /OpenGLtest/OpenGLtestView.h | 7da6766d35df7cfc5b5c871e7810eb092c957b64 | [] | no_license | soominnn/OpenGL_HomeWork | dfb451671248e00b8757317e25e2ef495a722675 | 9afe4888854fed197d1f58b4932a0ccdf31988db | refs/heads/master | 2023-09-05T07:31:44.752378 | 2021-11-03T01:28:30 | 2021-11-03T01:28:30 | 424,052,581 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,888 | h | //include header files
#include <gl\gl.H>
#include <gl\glu.H>
#include <gl\glut.H>
#include <gl\glaux.H>
//Generate auto linkage for libraries
#pragma comment(lib, "OPENGL32.LIB")
#pragma comment(lib, "GLAUX.LIB")
#pragma comment(lib, "GLU32.LIB")
#pragma comment(lib, "GLUT32.LIB")
// OpenGLtestView.h: COpenGLtestVi... | [
"mare804@naver.com"
] | mare804@naver.com |
77abe72edcb7333482d442c97327edbe634e977c | 015e383473ec9deb5339fbbf9c6f53bdf80a7095 | /recorder/src/main/cpp/Mp3Encoder.cpp | 7baa3f7b3458aedadb745e1b72e688c4a8cac9b5 | [] | no_license | xiaojigugu/AudioRecorder | d81201a8cf472b250e2e3cdc7acd5dd92747b3f3 | d700b8d8283f2a34af571b8f0e89807626bebab9 | refs/heads/master | 2022-11-29T19:30:08.827125 | 2020-08-15T05:33:01 | 2020-08-15T05:33:01 | 280,441,286 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,900 | cpp | //
// Created by Administrator on 2020/7/16.
//
#include "Mp3Encoder.h"
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
Mp3Encoder::Mp3Encoder(JavaVM *javaVm, JNIEnv *env, jobject pJobject) {
LOGI("lame_version:%s", get_lame_version());
this->env=env;
this->javaCallHelper = new JavaCallHelper(javaVm, ... | [
"924287557@qq.com"
] | 924287557@qq.com |
2b5c56a3a94ac3f70e985382e5f96c25e6d8d9dc | bf0e0ca8d71c453c506176ab40b343297ce77fc8 | /tpl/include/tpl/binary/ComPtr.h | be513ad39fbe85a6c8c872dc7c2cbb48d8390eaa | [
"MIT"
] | permissive | vihariswamy/cerl | 59ad9cebcf5443e0487160c47423cd4a872bf82e | 02b75ab9daf19f63294b7c078a73753328e2984b | refs/heads/master | 2022-12-26T04:09:22.807492 | 2020-10-01T10:57:40 | 2020-10-01T10:57:40 | 300,246,396 | 0 | 0 | MIT | 2020-10-01T10:57:07 | 2020-10-01T10:57:06 | null | UTF-8 | C++ | false | false | 3,192 | h | /* -------------------------------------------------------------------------
// WINX: a C++ template GUI library - MOST SIMPLE BUT EFFECTIVE
//
// This file is a part of the WINX Library.
// The use and distribution terms for this software are covered by the
// Common Public License 1.0 (http://opensource.org/lic... | [
"xushiweizh@gmail.com"
] | xushiweizh@gmail.com |
ce97e6bd391b956bc4384c41a9d12aee9d0e5078 | b71b8bd385c207dffda39d96c7bee5f2ccce946c | /testcases/CWE590_Free_Memory_Not_on_Heap/s03/CWE590_Free_Memory_Not_on_Heap__delete_int64_t_declare_02.cpp | 3bf8448db05eb93c69a5e911e6ce0266af5ea4fa | [] | no_license | Sporknugget/Juliet_prep | e9bda84a30bdc7938bafe338b4ab2e361449eda5 | 97d8922244d3d79b62496ede4636199837e8b971 | refs/heads/master | 2023-05-05T14:41:30.243718 | 2021-05-25T16:18:13 | 2021-05-25T16:18:13 | 369,334,230 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,007 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE590_Free_Memory_Not_on_Heap__delete_int64_t_declare_02.cpp
Label Definition File: CWE590_Free_Memory_Not_on_Heap__delete.nonpointer.label.xml
Template File: sources-sink-02.tmpl.cpp
*/
/*
* @description
* CWE: 590 Free Memory Not on Heap
* BadSource: declare Data buff... | [
"jaredzap@rams.colostate.edu"
] | jaredzap@rams.colostate.edu |
a2d6e5ab8a7c0788e6ba6e0e992eb10924207e4e | e5ef3cd9c7924d8971165356bc87f4e8303a8f83 | /src/Scene.cpp | 7b8bde1aa3c757d51b97c7fe54be39e1aa1d33ad | [] | no_license | beyonddiana/render_engine | d7de10188d1ba456dd6212e0c8f9c9adc23d2962 | 77244e70214770002049c8a2679750f761677a56 | refs/heads/master | 2023-03-16T15:32:05.814858 | 2014-08-06T01:27:46 | 2014-08-06T01:27:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,623 | cpp | #include <cassert>
#include "Scene.h"
#include "Engine.h"
#include "TextureManager.h"
#include "ShaderManager.h"
#include "Light.h"
#include "Model.h"
#include "Shader.h"
#include "GLUniform.h"
#include "Camera.h"
#define PI 3.14159265359
//
Scene::Scene() {
camera = new Camera(Vec3f(5.0, 3.0, 0.0), Vec3f(0, 0, 0)... | [
"mark.robert.logan@gmail.com"
] | mark.robert.logan@gmail.com |
af8650444a655c289929df4cc95cd11a1e5d5a8d | c39862dcbc5b9ad65f582752bcfd0c5eb9be463e | /dev/external/wxWidgets-3.1.0/include/wx/xrc/xh_propdlg.h | a52ff10d7158bf0d5d50e707db7925c0dd979cf1 | [
"MIT"
] | permissive | rexdex/recompiler | 5f1138adf5d02a052c8b37c290296d5cf5faadc2 | 7cd1d5a33d6c02a13f972c6564550ea816fc8b5b | refs/heads/master | 2023-08-16T16:24:37.810517 | 2022-02-12T21:20:21 | 2022-02-12T21:20:21 | 81,953,901 | 1,714 | 120 | MIT | 2022-02-12T21:20:22 | 2017-02-14T14:32:17 | C++ | UTF-8 | C++ | false | false | 960 | h | /////////////////////////////////////////////////////////////////////////////
// Name: wx/xrc/xh_propdlg.h
// Purpose: XML resource handler for wxPropertySheetDialog
// Author: Sander Berents
// Created: 2007/07/12
// Copyright: (c) 2007 Sander Berents
// Licence: wxWindows licence
///////////... | [
"rexdexpl@gmail.com"
] | rexdexpl@gmail.com |
0c3eb6eed929de8df61b0bfd6dd732525061d729 | 5137bcf0b13dbed8c67d1de46a3bba36ba838ae3 | /bellman_ford.cpp | 57db90efffad458f11f143413c2c1d4313e88c6d | [] | no_license | Jaskamalkainth/Code-Templates | bd4c92ff4efb7a7eb124436c33f2266fe4fab017 | 1411b47ae1ff39acdffeb32805cd96a77474e8e9 | refs/heads/master | 2022-09-16T22:16:00.623928 | 2020-05-25T06:56:15 | 2020-05-25T06:56:15 | 48,217,941 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,134 | cpp | /*
* Bellman Ford
*
* works on negative edges ( time complexity reduced to O(VE) from O(ElogV) of Dijkstra )
*
* Shortest distance from Source vertex to every other vertex
*
* Detects Negative cycle exist in the graph if exist
*
* O(VE) Complexity
*
*/
vector<int> d ;
struct edge
{
int a , b ,cost;
};
v... | [
"kainthjaskamal@gmail.com"
] | kainthjaskamal@gmail.com |
60edccf7805eff24e6b6028d317b36bb70e82273 | 254d642700c75f2ef659a968e778f1ae56b084e3 | /exp3-2/exp3-2/MainFrm.cpp | 4655a3d98c2f91a75ee7a9c7234995cbc256a9e1 | [] | 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 | 1,767 | cpp |
// MainFrm.cpp : CMainFrame 类的实现
//
#include "stdafx.h"
#include "exp3-2.h"
#include "MainFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMainFrame
IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
ON_WM_CREATE()
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARAT... | [
"1061737971@qq.com"
] | 1061737971@qq.com |
cb49dedfa4ace2f2c3c463302685851902383ec0 | b25898993f8646c8517d93662cbe9ae33cf51095 | /o2xfs-xfs3/src/o2xfs-xfs310-test.dll/cpp/cim/PositionCapabilities3_10.cpp | 3241a00992518f728c46d552da9fa8de0e248239 | [
"BSD-2-Clause"
] | permissive | dotfeng/O2Xfs | 5e4a16cd11305d4476ce28fb15887d6393ca90cd | 27e9b09fc8f5a8f4b0c6d9a5d1746cadb61b121d | refs/heads/master | 2021-01-24T20:25:10.044447 | 2017-03-08T22:07:02 | 2017-03-08T22:07:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,413 | cpp | /*
* Copyright (c) 2017, Andreas Fagschlunger. 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, ... | [
"github@fagschlunger.co.at"
] | github@fagschlunger.co.at |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.