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
e8b8cb43f732195b631ce0c9a08f9c8bc836d89c
02439f359d5952b966729c6f756ef8ffc65ed36a
/src/pure-tx.cpp
0fc401df5444ba7b914cc61dbc6da50b76fa2803
[ "MIT" ]
permissive
fusionfoto/pure-v2
aef21ed238a2cccc4b975738c164ea19988f7efa
785aa2dea6d218cbf526855bb689edad36a1d5ce
refs/heads/master
2020-03-22T16:17:58.479171
2018-05-18T08:58:20
2018-05-18T08:58:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
20,268
cpp
// Copyright (c) 2009-2014 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "base58.h" #include "clientversion.h" #include "coins.h" #include "core_io.h" #include "keystore.h" #include "primiti...
[ "puredev321@gmail.com" ]
puredev321@gmail.com
9f2c1f002cf39741cc2695d351e36c6f1405dd85
18c67c69cc70fc56e76a24e358e6ea241fd782bc
/libopenmpt.mod/openmpt/soundlib/Dlsbank.h
d9c3fde2722c5cf56ee86204967d4652020bd7f1
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
bmx-ng/audio.mod
3882377171e35294e6f24b71562e22c1cda85ef5
f65767cdc695f4386c5e7e3cdcd7bc0095570eb4
refs/heads/master
2023-07-23T13:42:10.196858
2023-07-10T07:39:21
2023-07-10T07:39:21
221,508,885
1
3
null
2023-07-10T07:39:23
2019-11-13T16:53:24
C
UTF-8
C++
false
false
4,877
h
/* * DLSBank.h * --------- * Purpose: Sound bank loading. * Notes : Supported sound bank types: DLS (including embedded DLS in MSS & RMI), SF2 * Authors: Olivier Lapicque * OpenMPT Devs * The OpenMPT source code is released under the BSD license. Read LICENSE for more details. */ #pragma once #incl...
[ "woollybah@gmail.com" ]
woollybah@gmail.com
fc256aacd8eb879e0baab09e12fc1e38cb0bf741
6019a4be65f55703c6960c31533c79a485d6144e
/STO_login/database/databasehandle.h
b33d773aab041c88b4482a3147fe918f0fef2257
[]
no_license
yqzzj/sto
8c6ee4d067ed72dcf9de49fdf88a6744855aa204
9d92704a3c6aa122ada5433cafb85560856f1ee9
refs/heads/master
2020-04-17T22:34:48.691440
2016-08-31T13:40:49
2016-08-31T13:40:49
66,055,306
1
0
null
null
null
null
GB18030
C++
false
false
2,746
h
#ifndef DATABASEHANDLE_H #define DATABASEHANDLE_H #include <QSqlError> #include <QMutex> #include "database/DataBase.h" class DatabaseHandle : public QObject { Q_OBJECT public: explicit DatabaseHandle(QObject *parent = 0); static bool createDBConnection(); static void closeDBConnection(); stati...
[ "632533979@qq.com" ]
632533979@qq.com
4b5b5ced4c4f65710448fe4830363591baf08789
78bae575fe525533c5bb0f6ac0c8075b11a4271d
/338 Counting Bits.cpp
e0d79a173fd2ac9a00a0fbc4d3e741ffc01075b6
[]
no_license
Shubhamrawat5/LeetCode
23eba3bfd3a03451d0f04014cb47de12504b6399
939b5f33ad5aef78df761e930d6ff873324eb4bb
refs/heads/master
2023-07-18T00:01:21.140280
2021-08-21T18:51:27
2021-08-21T18:51:27
280,733,721
1
3
null
2020-10-21T11:18:24
2020-07-18T20:26:20
C++
UTF-8
C++
false
false
857
cpp
#include<iostream> #include<vector> using namespace std; vector <int> countBits(int num) { vector <int> ans; if(num<0) return ans; ans.push_back(0); int two; //for power of 2s int i; /*Logic:- using dynamic programming generating a table from 0 to n and for every index i , use previous values available in ...
[ "sr856161@gmail.com" ]
sr856161@gmail.com
07982da1db1ceed3283f07af553d2fe207378cb3
5c26ce906f0bd186ccbddf0b8406eb32abf762c9
/Course1_DivideAndConquer/CountInversion.cpp
8536a4445056405255655360a5fba5b31c943a42
[]
no_license
hchaozhe/Algorithms_course_codes
41bd9808b9949e3305ab351ec6a01c9391f04b02
769b7c3ca65a05da4014ed7c18b56e9ac007433b
refs/heads/master
2023-04-05T03:36:59.568393
2021-04-06T03:44:22
2021-04-06T03:44:22
346,228,137
0
0
null
null
null
null
UTF-8
C++
false
false
3,645
cpp
#include <iostream> #include <fstream> #include <vector> #include <string> #include <cmath> using namespace std; // #define DEBUGLL #define DEBUGSS void PlotHelp(vector<int> &num, int from, int to, long long int inv){ for (int i = from; i<=to;i++){ cout << num[i] << " "; } cout<< " with inversion " <<...
[ "hchaozhe@umich.edu" ]
hchaozhe@umich.edu
061addf7085798b5c0f061745e56459234128649
87cfed8101402f0991cd2b2412a5f69da90a955e
/daq/daq/src/mwnidaq/nid2a.h
e1814f9caacff9fbb3e761b19496e52810d15686
[]
no_license
dedan/clock_stimulus
d94a52c650e9ccd95dae4fef7c61bb13fdcbd027
890ec4f7a205c8f7088c1ebe0de55e035998df9d
refs/heads/master
2020-05-20T03:21:23.873840
2010-06-22T12:13:39
2010-06-22T12:13:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,821
h
// Copyright 1998-2003 The MathWorks, Inc. // $Revision: 1.3.4.6 $ $Date: 2003/12/22 00:48:14 $ // nid2a.h: Definition of the nid2a class // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_NID2A_H__D0C329D5_E0FF_11D1_A21F_00A024E7DC56__INCLUDED_) #define AFX_NID2A_H...
[ "stephan.gabler@gmail.com" ]
stephan.gabler@gmail.com
e1346509cdb529f91bce2cf37b99b799d8d05cf7
3bedf49f6d6e95c45779541aae4e518299ab68a7
/Geant4-Example5-NeutronInteractions/main/src/MyDetectorConstruction.cpp
fb9c90bda2657fdaff214789e20ce17c1844a343
[]
no_license
DrWLucky/GEANT4-Example5-NeutronInteractions
8df90bd7a12a197356da4c13b81a774964face55
cb44e6534c436dd210097ab20d4bb1e1493db638
refs/heads/master
2022-01-12T19:55:02.094010
2019-07-13T12:53:08
2019-07-13T12:53:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,467
cpp
#include "MyDetectorConstruction.hh" #include "MyDetectorMessenger.hh" #include "G4VPhysicalVolume.hh" #include "G4LogicalVolume.hh" #include "G4PVPlacement.hh" #include "G4Box.hh" #include "G4Trd.hh" #include "G4Tubs.hh" #include "G4NistManager.hh" #include "G4VisAttributes.hh" #include "G4RunManager.hh" #include "G...
[ "mariuszjozefhoppe@yahoo.com.au" ]
mariuszjozefhoppe@yahoo.com.au
a864ce1600476a37d3cd5fcb0057fde41f67338a
9a3f8c3d4afe784a34ada757b8c6cd939cac701d
/leetSeparateDigitsInArray.cpp
b2a3868c886324e1729dde67ebfd8e1082685963
[]
no_license
madhav-bits/Coding_Practice
62035a6828f47221b14b1d2a906feae35d3d81a8
f08d6403878ecafa83b3433dd7a917835b4f1e9e
refs/heads/master
2023-08-17T04:58:05.113256
2023-08-17T02:00:53
2023-08-17T02:00:53
106,217,648
1
1
null
null
null
null
UTF-8
C++
false
false
1,511
cpp
/* * //******************************************************2553. Separate the Digits in an Array.*********************************************** https://leetcode.com/problems/separate-the-digits-in-an-array/ *******************************************************************TEST CASES:***************************...
[ "kasamsaimadhavk@gmail.com" ]
kasamsaimadhavk@gmail.com
c92cd0f8fdb50bce619d1e37ff78e17520dc8766
b6d0b239e844d1ac0b0297850aee4b3990d2fd27
/nulldc/plugins/ImgReader/ImgReader.cpp
953fd5e7b5869d62ae9d222c8f207a648bc51ab8
[]
no_license
segafan/nulldcsme
8bffa0db02d61bb5b64b2685fa9e4d0720d544d1
b50615b26dbe951e9f63c4c4e90bea3bba554f02
refs/heads/master
2020-06-01T03:59:16.173042
2014-04-19T14:59:42
2014-04-19T14:59:42
37,951,981
0
0
null
null
null
null
UTF-8
C++
false
false
5,902
cpp
// nullGDR.cpp : Defines the entry point for the DLL application. // #include "ImgReader.h" //Get a copy of the operators for structs ... ugly , but works :) #include "common.h" HINSTANCE hInstance; BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, ...
[ "masterchan777@gmail.com" ]
masterchan777@gmail.com
36bf7a9aa5046526666ed2f060e57275a8e4f803
94dcc118f9492896d6781e5a3f59867eddfbc78a
/llvm/lib/Fuzzer/FuzzerIO.cpp
ac35d736bbfaa292630bf1f73086b6c898e717fb
[ "NCSA", "Apache-2.0" ]
permissive
vusec/safeinit
43fd500b5a832cce2bd87696988b64a718a5d764
8425bc49497684fe16e0063190dec8c3c58dc81a
refs/heads/master
2021-07-07T11:46:25.138899
2021-05-05T10:40:52
2021-05-05T10:40:52
76,794,423
22
5
null
null
null
null
UTF-8
C++
false
false
3,793
cpp
//===- FuzzerIO.cpp - IO utils. -------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
[ "fuzzie@fuzzie.org" ]
fuzzie@fuzzie.org
ff4ba326da8d88bc34ecde96f3643df7f7adb3d6
2f6e00bb938aaad85b23b4f06a929c7fbbd9e8a1
/lab4/userprog/progtest.cc
7fb25b00d364ec2ddd7702b83ff41add2a499ba8
[]
no_license
baker221/Nachos-Lab
b95f793d3bc1ef920895847961accb05202b2545
ca43e5d122badfd860521150ad1abd2c67cacee5
refs/heads/main
2023-07-17T12:57:08.524439
2021-08-27T02:28:40
2021-08-27T02:28:40
309,029,062
0
0
null
null
null
null
UTF-8
C++
false
false
3,032
cc
// progtest.cc // Test routines for demonstrating that Nachos can load // a user program and execute it. // // Also, routines for testing the Console hardware device. // // Copyright (c) 1992-1993 The Regents of the University of California. // All rights reserved. See copyright.h for copyright notice and limitation /...
[ "806871923@qq.com" ]
806871923@qq.com
f0b6c7c97ae4f8db1034811a9456fa36db3873da
3209df75963925dc6cc7941b63119fb7f1c4e97f
/Headers/FGCameraModifierLimitLook.h
a2097362e7b05f87f85ae6e16221e16187475843
[]
no_license
SatisGraphtory/SourceData
a06aff42b0da2156c0519e7c69093f3e1e7a83f5
7948e28a16ed600c4a9fae7873ef5ebbbbea6796
refs/heads/master
2023-08-18T09:27:14.186240
2021-04-20T18:38:54
2021-04-20T18:38:54
309,817,950
0
0
null
null
null
null
UTF-8
C++
false
false
1,134
h
// Copyright Coffee Stain Studios. All Rights Reserved. #pragma once #include "CoreMinimal.h" #include "Camera/CameraModifier.h" #include "FGCameraModifierLimitLook.generated.h" /** * */ UCLASS() class FACTORYGAME_API UFGCameraModifierLimitLook : public UCameraModifier { GENERATED_BODY() public: ...
[ "aafu@ucdavis.edu" ]
aafu@ucdavis.edu
985238a2650a1564984538fc4c010fde20920fbc
56aa0e07739f12107358e7630d4baa67f565dbbc
/src/io/MultiThreadedFileCollector.cpp
447d3b940026512a007ebb20967068757633b9c8
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
slide-lig/plcmpp
19d8cbd3c2656495226fc4ea091adbb44cdcda8d
d2f5d8e2d0543023faf24b081b6085e42778b73a
refs/heads/master
2021-01-16T18:31:51.430774
2014-06-18T15:16:53
2014-06-18T15:16:53
19,612,045
0
0
null
null
null
null
UTF-8
C++
false
false
2,613
cpp
/******************************************************************************* * Copyright (c) 2014 Etienne Dublé, Martin Kirchgessner, Vincent Leroy, Alexandre Termier, CNRS and Université Joseph Fourier. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in co...
[ "etienne.duble@imag.fr" ]
etienne.duble@imag.fr
11adfc60f5282b4ee968af5c54739103e513033e
0cab650e428599876511d0a4d7d1e215014bb3a5
/DAY_5/P12/Ram_main.cpp
214822a5a0821bd29f4857a59cdf60bfbadbf820
[]
no_license
ksg0605/Practice_CPP
ed2dca85248f180611422f053ebffffd4186f53a
d9149c536d125b7ec3b390e9f03b2062b27b5c08
refs/heads/main
2023-02-04T21:20:45.105804
2020-12-23T14:55:07
2020-12-23T14:55:07
306,889,898
2
0
null
null
null
null
UTF-8
C++
false
false
250
cpp
#include<iostream> #include"Ram.h" using namespace std; int main(){ Ram ram; ram.write(100, 20); ram.write(101, 30); char res = ram.read(100) + ram.read(101); ram.write(102, res); cout<<"102 번지의 값 = "<<(int)ram.read(102)<<endl; }
[ "yyh2337@naver.com" ]
yyh2337@naver.com
d99ea04c8e693eebd537248f796c0373f3aebd20
134fdeae8c3dd047cf737dc34468a5a6d67a934c
/Behavioral/ChainOfResponsability/include/Monster.hpp
83fd4b8ebf251473f6bd9f41cc68a96b98617c41
[ "Unlicense" ]
permissive
craviee/design-patterns-modern-cpp
5937873d6f3d7e974a44b8752d39e567b35bbef3
39896c8a2491c5599f79afa65a07deda2e4e7dd7
refs/heads/master
2020-09-08T21:35:55.806632
2020-02-05T14:52:34
2020-02-05T14:52:34
221,248,692
3
0
Unlicense
2020-02-05T14:52:36
2019-11-12T15:21:43
C++
UTF-8
C++
false
false
267
hpp
#pragma once #include "Party.hpp" class Monster { private: Monster* next{nullptr}; public: Monster(Party& party) : party{party}{}; ~Monster(){}; int power; void add(Monster* monster); virtual void handle(); protected: Party& party; };
[ "danielcraviee@gmail.com" ]
danielcraviee@gmail.com
45eefdf86be675809e994ec288d6b32c4758fffe
8fdeb339d75b3aed20fd82fcf1b59e42411234e1
/src/BootManager.h
ab3fd60cb5c6f7e264de2fe8f6d1b2bcffea88dc
[]
no_license
PMarinov1994/esp8266_MQTT_Transmiter
e6cc8bd471c1070a09fc7abddc5fb0931525479d
bb06ce9aaea6ac25d8bd9f491cedf5e18320e630
refs/heads/main
2023-04-03T01:26:26.627829
2021-04-12T11:25:19
2021-04-12T11:25:19
355,684,812
0
0
null
null
null
null
UTF-8
C++
false
false
172
h
#pragma once #include <Arduino.h> #define GPIO_RX 3 #define GPIO_TX 1 class CBootManager { public: CBootManager(); virtual ~CBootManager() {}; bool IsConfigBoot(); };
[ "44176168+PMarinov1994@users.noreply.github.com" ]
44176168+PMarinov1994@users.noreply.github.com
44162207134e56dfbc4fcf300dc0342cdfcf9c6c
758d6e7aad76b8ab57d7725cb17db005e5033485
/test/test_multidomain.cc
4f7b85d353e178a93a5286d327d39fd97deb5ba0
[ "BSD-3-Clause" ]
permissive
jurgispods/dune-ax1
4468b798a01928dd87b0a5eac1f8b5acf59ac157
152153824d95755a55bdd4fba80686863e928196
refs/heads/master
2023-04-15T05:45:58.440381
2021-11-09T22:42:16
2021-11-09T22:42:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,814
cc
#ifdef HAVE_CONFIG_H #include "config.h" #endif #include <iostream> #include <vector> #include <map> #include <string> #include <stdlib.h> #include <typeinfo> #include <dune/common/mpihelper.hh> #include <dune/common/exceptions.hh> #include <dune/common/fvector.hh> #include <dune/common/timer.hh> #include <dune/...
[ "jpods@dune-project.org" ]
jpods@dune-project.org
0574af8dda78faf488d29b4a10d8311ba1a71c1e
370cb6baa54324bbe779a05fb11123e2787aed17
/src/mpt/impl/prrt/prrt.hpp
81cbaa62222792a70acdfd41fd239c359a93d332
[ "BSD-3-Clause" ]
permissive
jeffi/mpt
0125ccbc8305dacfdd67ec1caffc3079369cb0f1
b867e91810b4b10970028301deb3ba9ab99812bf
refs/heads/master
2020-03-30T04:59:43.887739
2018-09-28T16:34:40
2018-09-28T16:34:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,369
hpp
// Software License Agreement (BSD-3-Clause) // // Copyright 2018 The University of North Carolina at Chapel Hill // // 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...
[ "jeff.ichnowski@gmail.com" ]
jeff.ichnowski@gmail.com
c802b44f71deca44b9da592246404e5bd953b724
caf491aed977a818d73e33e3b1abaa9c37c79d50
/Module2leason3/Source.cpp
0f254f96a16e8adcb82a0ae116c05a20737e6d1c
[]
no_license
MeushRoman/module2leasson3ht
e1314740188173fdf8de13fd3e9133754893ca91
c915b20873d1fa342e94de50f3e8195a862d4685
refs/heads/master
2020-03-19T16:39:11.571296
2018-06-09T13:11:26
2018-06-09T13:11:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,099
cpp
#include <stdlib.h> #include <stdlib.h> #include <locale.h> #include <math.h> #include <time.h> #include <iostream> void main() { setlocale(LC_ALL, "rus"); srand(time(NULL)); int n = 0; do { printf("n = "); scanf("%d", &n); if (n == 1) { printf("1. Определить, является ли данное целое число четным\n...
[ "amaii.sakura@gmail.com" ]
amaii.sakura@gmail.com
eff2a04f05e659bf1d4b2ba4523ba19efc6d8d70
9c0e73e8909bc4b959918f573993804faba487d2
/1128.cpp
e2a8d103e44d4be1e8ad47b66f4083950fd6ad0c
[]
no_license
MolinDeng/PAT
ab3d68ff747dfb1fc024fcbbfd3c2b787591efc3
8467fa07918f28aec3eff82c8e9bf81340e7f8ec
refs/heads/master
2020-03-23T01:17:57.323874
2018-10-13T13:01:39
2018-10-13T13:01:39
140,909,837
4
1
null
null
null
null
UTF-8
C++
false
false
889
cpp
#include <cstdio> #include <iostream> #include <cstdlib> #include <vector> #include <string> #include <algorithm> #include <functional> #include <cmath> using namespace std; int main() { int K, N; scanf("%d", &K); while(K--) { scanf("%d", &N); vector<int> config(N+1); vector<vector...
[ "zjumorning@gmail.com" ]
zjumorning@gmail.com
4db349124c009df4e576106d97431dcc3bbc94c6
4352b5c9e6719d762e6a80e7a7799630d819bca3
/tutorials/eulerVortex.twitch.test-test-test/eulerVortex.cyclic.twitch.moving/1.71/T
e895b25364b7ec5a63943358bf7ab2ef22ca165a
[]
no_license
dashqua/epicProject
d6214b57c545110d08ad053e68bc095f1d4dc725
54afca50a61c20c541ef43e3d96408ef72f0bcbc
refs/heads/master
2022-02-28T17:20:20.291864
2019-10-28T13:33:16
2019-10-28T13:33:16
184,294,390
1
0
null
null
null
null
UTF-8
C++
false
false
32,964
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*-------...
[ "tdg@debian" ]
tdg@debian
4dd16f0d7e8f52cea5bb59669b2f8655d7b0005f
9299f63808d939586db6b27b86aaf68eebf472f2
/scintilla/lexers/LexPython.cxx
aca076d9a66903016d39ceb69dba781c38a26cfc
[ "BSD-2-Clause", "BSD-3-Clause", "LicenseRef-scancode-scintilla", "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
1694776955/notepad2
80310678bc42bbbe292db527fb422b070f8ae2ea
721d80935c0b2c010c9d9b10c49f6e65d64e3d6b
refs/heads/master
2020-12-14T21:46:15.726617
2020-01-19T00:36:09
2020-01-19T00:36:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,769
cxx
// This file is part of Notepad2. // See License.txt for details about distribution and modification. //! Lexer for Python. #include <cassert> #include <cstring> #include "ILexer.h" #include "Scintilla.h" #include "SciLexer.h" #include "WordList.h" #include "LexAccessor.h" #include "Accessor.h" #includ...
[ "zufuliu@gmail.com" ]
zufuliu@gmail.com
f27c5277e45070541c545713656a13cd493abf42
aa69f4680f318295547d1ce76e471a2d53251a02
/Users/Giles/Downloads/Traffic Simulator 2017/gameengine/GUI/Button.cpp
b489342f7de987550c0b38813086e84a8635862e
[]
no_license
GilesPenfold/Traffic-Simulator-2017
66c9048eaa1c5abd015f34856552a361670f0d67
4baf0cbe666066ed0d81e8b22c54111446a9bbc9
refs/heads/master
2021-01-02T09:45:09.691614
2017-10-07T09:13:30
2017-10-07T09:13:30
99,288,529
0
0
null
null
null
null
UTF-8
C++
false
false
1,332
cpp
#include "Button.h" Button::Button(glm::vec3 cen, glm::vec2 dim, Texture* tex, Shader* guiShader){ this->pos[0] = glm::vec3(cen.x - dim.x/2, cen.y - dim.y/2, 0); this->pos[1] = glm::vec3(cen.x + dim.x/2, cen.y - dim.y/2, 0); this->pos[2] = glm::vec3(cen.x + dim.x/2, cen.y + dim.y/2, 0); this->pos[3] = glm::vec3(c...
[ "gtpenfold@hotmail.co.uk" ]
gtpenfold@hotmail.co.uk
8aaf5cef261471db862c68af0c2ca9ce8c723b65
1c24264c0884b709a7943f30dd157d92168581d0
/learncpp.com/09_Operator_Overloading/Question02/src/Main.cpp
aa49eee1f05708db8d214902f7686b464318e922
[ "MIT" ]
permissive
KoaLaYT/Learn-Cpp
56dbece554503ca2e0d1bea35ae4ddda3c03f236
0bfc98c3eca9c2fde5bff609c67d7e273fde5196
refs/heads/master
2020-12-22T13:08:02.582113
2020-10-26T02:33:24
2020-10-26T02:33:24
236,792,487
0
0
null
null
null
null
UTF-8
C++
false
false
610
cpp
/** * Chapter 9 :: Question 2 * * a simple operator overload practice * * KoaLaYT 17:48 02/02/2020 * */ #include "Average.h" int main() { Average avg{}; avg += 4; std::cout << avg << '\n'; // 4 / 1 = 4 avg += 8; std::cout << avg << '\n'; // (4 + 8) / 2 = 6 avg += 24; std::cout << avg << '\n'...
[ "hytohyeah@outlook.com" ]
hytohyeah@outlook.com
95216b4ecb2775d81abb45b593a88921ad7b6587
fe91ffa11707887e4cdddde8f386a8c8e724aa58
/third_party/blink/renderer/core/frame/scheduling.h
b2f35f168d71719ff5bee185f94bcaccfdaf36cf
[ "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "MIT", "Apache-2.0", "BSD-3-Clause" ]
permissive
akshaymarch7/chromium
78baac2b45526031846ccbaeca96c639d1d60ace
d273c844a313b1e527dec0d59ce70c95fd2bd458
refs/heads/master
2023-02-26T23:48:03.686055
2020-04-15T01:20:07
2020-04-15T01:20:07
255,778,651
2
1
BSD-3-Clause
2020-04-15T02:04:56
2020-04-15T02:04:55
null
UTF-8
C++
false
false
965
h
// Copyright 2019 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 THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_SCHEDULING_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_SCHEDULING_H_ #include "third_party/blink/rende...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
9fb278aad126cd69b377ee73bde177442c357b94
4d33c090428407d599a4c0a586e0341353bcf8d7
/trunk/net/ListenSock.h
b516f5943064571ecc49572e6a666baa4acf9d3f
[]
no_license
yty/bud
f2c46d689be5dfca74e239f90570617b3471ea81
a37348b77fb2722c73d972a77827056b0b2344f6
refs/heads/master
2020-12-11T06:07:55.915476
2012-07-22T21:48:05
2012-07-22T21:48:05
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
975
h
/******************************************************************** author : cpzhang created: 2012Äê-2ÔÂ-7ÈÕ 11:37 *********************************************************************/ #ifndef __ListenSock_h__ #define __ListenSock_h__ #include "TCPSock.h" namespace Shannon { class _NET_EXPORT_ ListenSock: publi...
[ "297191409@qq.com" ]
297191409@qq.com
8c46453a0ef73b1c89873a11f1b070336ed36f60
4ea408c28d642c970e4a26b24961300c650620ae
/Homework/Review/main.cpp
d656b5ad233ab2dba30844b4b899934fff8185cc
[]
no_license
joseroman1/CSC_17A_48983
fd047bc53dff225fa6e01070ddf7f26ccfc2812a
7cff1ae5265f95832a333f1b8528b634d1036905
refs/heads/master
2021-01-22T05:01:04.665119
2015-12-08T20:35:11
2015-12-08T20:35:11
42,428,556
0
0
null
null
null
null
UTF-8
C++
false
false
8,029
cpp
/* * File: main.cpp * Author: Jose Roman * Purpose: Review Assignment * Modified on September 13th, 2015 */ //System Libraries #include <cstdlib> #include <iostream> #include <iomanip> using namespace std; //User Libraries //Global Constants //Function Prototypes void problem1 (); void problem2 (); void pr...
[ "joseroman@outlook.com" ]
joseroman@outlook.com
7558c17efb110d07f5b33babc128e6d861761533
7d1bbcfc89bcc60614a2a2338e74d8b0fa48669f
/nowcoder/baidu_2017spring_dudu_go_home_2.cpp
c803a14d54d7643ac2068d5a91b54d6212d01b40
[]
no_license
Nana0606/basic-algorithms
3dcfb6554fe28fb8ea007c76e2e0b1aac9012035
f78317a934d945c1f468c28a7fc65d1560fc880f
refs/heads/master
2020-03-23T20:09:21.548501
2019-05-27T01:47:29
2019-05-27T01:47:29
142,024,882
1
0
null
null
null
null
GB18030
C++
false
false
691
cpp
# include <iostream> # include <vector> # include <algorithm> using namespace std; //题目:度度熊回家 //网址:https://www.nowcoder.com/question/next?pid=4998655&qid=95824&tid=206443599 int main(){ int N; cin >> N; int value; vector<int> vec; int len_N = N; while (N-- > 0){ cin >> value; vec.push_back(v...
[ "“paopaotanglee@126.com”" ]
“paopaotanglee@126.com”
a4f55acf8e5cf2aedffbe646b9238eba7d6ed982
9a255e0549bd3d5ae227156db37f4a0b4ee652da
/supervisor/src/network/bsdsocket/wrapper/events/IncomingMessage.cpp
649629a618c9498dba658c07b182d0ed37a58413
[ "MIT" ]
permissive
mdziekon/eiti-tin-ftp-stattr
3a01de21010760debd6a878d04374ba5305e57e2
c8b8c119f6731045f90281d607b98d7a5ffb3bd2
refs/heads/master
2021-01-17T20:59:57.805343
2015-06-09T19:24:59
2015-06-09T19:24:59
34,629,736
2
0
null
null
null
null
UTF-8
C++
false
false
402
cpp
#include "IncomingMessage.hpp" #include "../ClientVisitor.hpp" using tin::network::bsdsocket::wrapper::events::IncomingMessage; IncomingMessage::IncomingMessage( const std::string& ip, const unsigned int& port, const std::string& message ): ip(ip), port(port), message(message) {} void IncomingMessage::a...
[ "dani@notebookcheck.pl" ]
dani@notebookcheck.pl
4fb457dae2743daed6748cfaf57aa78c6ea866d5
2dd86497f804773a5de778c6efc342d86ad81cb8
/40-protocol/gb28181client/include/recinfo.h
727628d7b405ce9029e48d085459100d65f8a347
[]
no_license
px41833/wangjin
071e2efe94c233c0317caf6daee77debde6e791d
5c400d7605ae6060f2367bfa14bbc02d007c5802
refs/heads/master
2020-06-16T01:05:03.522914
2018-02-06T08:43:28
2018-02-06T08:43:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,533
h
#ifndef __REC_INFO_H__ #define __REC_INFO_H__ #include <stdio.h> #include <stdlib.h> #include <string.h> #include "xmlparser.h" #include "gb.h" class CRecordInfoList { public: /// recorder response item node class CNode { public: int id; void * ctx; int sn; int sum_num...
[ "yrj2009yrj@qq.com" ]
yrj2009yrj@qq.com
625d09bf9dc4a11d345ff934371441b5520b0499
356d45e683ddf4834f85619e574125675539b9de
/HelloTriangle/HelloTriangle/Camera.cpp
4d2c4dfe0423b17bca81778d04b9a7dd1117bc56
[]
no_license
Iteevo/HelloCG
3f954c8e977f4e31084de0d1911d9b8d4c866004
d9420ca00b07b648e50b5273c199536913ac75ec
refs/heads/master
2020-12-07T11:13:05.160144
2020-01-09T03:15:03
2020-01-09T03:15:03
232,710,398
0
0
null
null
null
null
UTF-8
C++
false
false
146
cpp
// // Camera.cpp // HelloTriangle // // Created by dn on 6/10/19. // Copyright © 2019 Iteevo. All rights reserved. // #include "Camera.hpp"
[ "" ]
f0be028af30e7235eabdc6a83c479396bc15ea44
8556aae0afcee3323801cf4de2008f1dcdadbbfa
/src/27/ciagi.cpp
d2b35648f0898f2753785292f0bafb918af4961d
[ "WTFPL" ]
permissive
AdamSiekierski/cpp
4ce080c71882e328286629fa188634802d654776
09b9a46b44ecce5cc1d6e0cb9d1c689b350563d5
refs/heads/main
2023-02-26T10:10:23.715457
2021-02-02T18:11:29
2021-02-02T18:11:29
307,671,598
4
0
null
null
null
null
UTF-8
C++
false
false
673
cpp
#include <iostream> int main() { std::cout << "ciag 1: "; int i = 12; while (i >= -12) { std::cout << i << " "; i -= 4; } std::cout << "\nciag 2: "; i = 12; while (i >= -12) { if (i != 0) std::cout << i << " "; i -= 4; } std::cout << "\nciag 3:\n" << "Podaj d...
[ "a@siekierski.ml" ]
a@siekierski.ml
3dace18713df1a8c0537d143d8558b0bb30d3f27
038fd9e7f469c4e7f7343a10c0183d60050f4b4e
/couchbase-sys/libcouchbase/src/jsparse/parser.h
d19dce07bcc46cc31ff8e4234e40daffeb3a1782
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
tinh-phan/couchbase-rs
32abc0119e11da7c8c06e7d610e364a42c493a6d
a6160df405302ea40848efe4751ab7b46dd692ca
refs/heads/master
2020-10-01T00:51:43.324887
2019-12-11T16:54:31
2019-12-11T16:54:31
227,413,790
0
0
Apache-2.0
2019-12-11T16:41:48
2019-12-11T16:41:47
null
UTF-8
C++
false
false
4,908
h
/** * Copyright 2013-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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appl...
[ "michael@nitschinger.at" ]
michael@nitschinger.at
207f8f235e1bd26d903ef8b9e9023db4105e0f44
31589435071cbff4c5e95b357d8f3fa258f43269
/PPTVForWin8/ppbox_1.2.0/src/p2p/server_mod/index_server_data_migration/statistic/DownloadDriverStatistic.h
32d0176f6953f47f42b888d5837be83db6c3c7ac
[]
no_license
huangyt/MyProjects
8d94656f41f6fac9ae30f089230f7c4bfb5448ac
cd17f4b0092d19bc752d949737c6ed3a3ef00a86
refs/heads/master
2021-01-17T20:19:35.691882
2013-05-03T07:19:31
2013-05-03T07:19:31
null
0
0
null
null
null
null
GB18030
C++
false
false
4,111
h
#pragma once #include <boost/enable_shared_from_this.hpp> #include <boost/shared_ptr.hpp> #include <boost/noncopyable.hpp> #include <map> #include <string> #include "framework/mswin/ShareMemory.h" #include "SpeedInfoStatistic.h" #include "StatisticStructs.h" #include "HttpDownloaderStatistic.h" using namespace std...
[ "penneryu@outlook.com" ]
penneryu@outlook.com
bbb3456e2609ca469a3b30c10eb995dc91dd44ff
25aa9cb1cb724a1e543211fa852a070f33df79de
/kaldi-ali.cc
131b8a050d64bdb2c614bbd3f7e1986172e7afac
[]
no_license
pikaliov/kaldi-readers-for-tensorflow
b42c7527ecda3126d90a47e286193770a9008580
c3f83feb68476de1624ae1e7931803bfb2d7c7cb
refs/heads/master
2021-08-28T21:38:37.793936
2017-12-13T06:42:39
2017-12-13T06:42:39
119,988,621
1
0
null
2018-02-02T14:00:53
2018-02-02T14:00:53
null
UTF-8
C++
false
false
7,765
cc
#include <memory> #include <regex> #include "tensorflow/core/framework/reader_base.h" #include "tensorflow/core/framework/reader_op_kernel.h" #include "tensorflow/core/lib/core/errors.h" #include "tensorflow/core/lib/io/buffered_inputstream.h" #include "tensorflow/core/lib/io/random_inputstream.h" #include "tensorflow/...
[ "zyfan@ling-ban.com" ]
zyfan@ling-ban.com
fba2d0a288c7f58d74ad3b1fc0558f6a82769798
86b6c8faf14d9e4156a183b3aaf8cb5a2e931c9e
/findMin.cpp
8de2ed433c2f286115aff9a116b0808045a7f03a
[]
no_license
hengshuangliu/lintcode
6293ac5ff006ab6957fce8bace82091fd62088dd
aa091ff712fd5fb430d654cc4ca13b4444ceba36
refs/heads/master
2021-01-22T12:37:39.841658
2017-09-08T07:51:08
2017-09-08T07:51:08
102,352,229
0
0
null
null
null
null
UTF-8
C++
false
false
869
cpp
#include<iostream> #include<vector> #include <cstdlib> using namespace std; class Solution { public: /** * @param nums: a rotated sorted array * @return: the minimum number in the array */ int findMin(vector<int> &nums) { // write your code here int left = 0, right = nums.size(...
[ "767924520@qq.com" ]
767924520@qq.com
41204a2f1ee4be02585a88da2339a5bbe288a094
b072ae78bbddb0c1e63cfeae2196fd13a476c440
/3D_Warfare_Client/3D_Warfare_Client/struct_package.h
4911846d7040ed25faeb2a64e8a81e08466ed60f
[]
no_license
sounghyun/NetGameProgramming
f1548254df3c6e8159e0bf1d02c011735cf3e2fa
aabfbe970a29390c1e0f9d53614519c8caae8a7a
refs/heads/master
2021-05-02T09:32:08.776388
2016-12-07T12:47:19
2016-12-07T12:47:35
72,851,222
0
0
null
null
null
null
UTF-8
C++
false
false
330
h
#ifndef STRUCK_PACKAGE_H #define STRUCK_PACKAGE_H #include <winsock2.h> #include <GL/glut.h> // includes gl.h glu.h #include <stdio.h> #include <stdlib.h> #include <time.h> #include <math.h> #include <sys/timeb.h> #include <list> #include <vector> using namespace std; struct Point { GLfloat x, y, z; GLint state; ...
[ "unfade2@gmail.com" ]
unfade2@gmail.com
4a1c6d5030ead7dcd96bac87fb73551883eba033
1586fd5da36e6616996410470984fced9afc17a1
/chrome/browser/vr/ui_scene.h
699af2db805f9999ad8c583b8ae9d259e5808b1c
[ "BSD-3-Clause" ]
permissive
thefreakingmind/chromium
01cf65599c5e1385250083827e6c61c8b5e58005
99c093c25c78d5268beae7ccd3d34bb23b17d30b
refs/heads/master
2023-02-25T10:27:43.277471
2018-05-02T14:12:25
2018-05-02T14:12:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,176
h
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_VR_UI_SCENE_H_ #define CHROME_BROWSER_VR_UI_SCENE_H_ #include <memory> #include <vector> #include "base/macros.h" #include "base/...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
4a71e51c82e17e58fbbf82fe5380928f1975eaff
6d5a257bf72afdd85660ad3e938e2aa3025c680b
/include/Core/Utilities/QProgInfo/QuantumVolume.h
053cc77ee060cae3ac82754e1ab56fb0b12b107e
[ "Apache-2.0" ]
permissive
OriginQ/QPanda-2
682b0e3bcdec7c66a651e8001d639f6146595fdf
a182212503a97981844140b165cb3cee8e293edd
refs/heads/master
2023-08-19T03:01:27.385297
2023-08-04T08:43:03
2023-08-04T08:43:03
136,144,680
1,207
96
Apache-2.0
2023-08-04T08:42:52
2018-06-05T08:23:20
C++
UTF-8
C++
false
false
3,090
h
#ifndef _QUANTUM_VOLUME_H_ #define _QUANTUM_VOLUME_H_ #include "Core/QuantumMachine/QuantumMachineInterface.h" #include "Core/QuantumMachine/OriginQuantumMachine.h" #include "Core/Utilities/QProgInfo/CrossEntropyBenchmarking.h" QPANDA_BEGIN #if defined(USE_OPENSSL) && defined(USE_CURL) /** * @class QuantumVolume...
[ "wj@originqc.cn" ]
wj@originqc.cn
203ac9b8ef01a33c1fa50f782d98ae73d67e5e8c
5399d919f33bca564bd309c448f1151e7fb6aa27
/server/configuration/ListenGuideline.hpp
910238d8e6551996150c15258d6a83ef780c9ade
[]
no_license
hotgloupi/zhttpd
bcbc37283ebf0fb401417fa1799f7f7bb286f0d5
0437ac2e34dde89abab26665df9cbee1777f1d44
refs/heads/master
2021-01-25T05:57:49.958146
2011-01-03T14:22:05
2011-01-03T14:22:05
963,056
4
0
null
null
null
null
UTF-8
C++
false
false
446
hpp
#ifndef __LISTENGUIDELINE_HPP__ # define __LISTENGUIDELINE_HPP__ # include "IVHostGuideline.hpp" namespace zhttpd { class ListenGuideline : public IVHostGuideline { private: api::uint16_t _port; bool _deny; public: ListenGuideline(api::uint16_t port, bool deny = false); ...
[ "github@hotgloupi.chapeaunoir.info" ]
github@hotgloupi.chapeaunoir.info
28c3a54f1f3a1d79d5c501f136c40d9efbec4c1c
cbf1069a489cd6b5c4ac61bcafb49e05eec98c99
/Programowanie Obiektowe/Lesson_7/C07/01_ID03P04/C07_Proj_ID03P04_0001/program.cpp
8fe762455baf05c00e4e24e87e308466c0776e0c
[]
no_license
RuslanLytvynov/University_WIT
35eb3a0622d76907fead57e63e625edfa6ac1b33
b75ee4bc0e16ccaa9abf8b50075ff64ea6e87a52
refs/heads/master
2021-03-12T10:56:17.579139
2020-12-06T11:49:18
2020-12-06T11:49:18
246,613,927
0
0
null
null
null
null
UTF-8
C++
false
false
115
cpp
#include "Application.h" int main(){ Application myApplication; myApplication.Run(); return 0; }
[ "lytvynovrus@gmail.com" ]
lytvynovrus@gmail.com
4b07fbd005fc32928efe4052c5ed4bafb02beb3b
d93fe00111f8072d803f7d13a576ce77267b9fd0
/src/test/assets/cache_tests.cpp
219a72ad7b87950f88760189c7985b9e69d4837e
[ "MIT" ]
permissive
yiya-core/yiya-core
279dcb00f6eb94bdd7eadee4e197565a9f5ecf5f
54bdc5c72f6d760cb3ec840f202c289bccd03ccd
refs/heads/master
2020-08-07T15:06:30.855194
2019-10-14T20:25:18
2019-10-14T20:25:18
213,237,061
0
0
null
null
null
null
UTF-8
C++
false
false
1,165
cpp
#include "assets/assets.h" #include <boost/test/unit_test.hpp> #include <test/test_yiya.h> BOOST_FIXTURE_TEST_SUITE(cache_tests, BasicTestingSetup) const int NUM_OF_ASSETS1 = 100000; BOOST_AUTO_TEST_CASE(cache_test) { BOOST_TEST_MESSAGE("Running Cache Test"); CLRUCache<std::string, CNewAsset> cache(NU...
[ "yiya-core@protonmail.com" ]
yiya-core@protonmail.com
28b1ae39d01e3fca2ea54d2cde29707f901adca2
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_2652486_1/C++/hex539/C.cc
bae10d62801471afd43b581880ffc704c179417a
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
2,489
cc
#include <functional>/*{{{*/ #include <unordered_set> #include <algorithm> #include <iostream> #include <sstream> #include <numeric> #include <cstdlib> #include <cstring> #include <cstdio> #include <string> #include <cstdio> #include <vector> #include <math.h> #include <queue> #include <deque> #include <stack> #include...
[ "eewestman@gmail.com" ]
eewestman@gmail.com
f859fd114ffadd83ea7589ba013633b127ce3d3b
36579e820f5c07cd1fe796abc777f23f32efeb10
/src/content/app/content_main_runner.cc
00864253f7c97b98d1e66eb67e717588523559a1
[ "BSD-3-Clause" ]
permissive
sokolovp/BraveMining
089ea9940ee6e6cb8108b106198e66c62049d27b
7040cdee80f6f7176bea0e92f8f3435abce3e0ae
refs/heads/master
2020-03-20T00:52:22.001918
2018-06-12T11:33:31
2018-06-12T11:33:31
137,058,944
0
1
null
null
null
null
UTF-8
C++
false
false
27,733
cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/public/app/content_main_runner.h" #include <stddef.h> #include <stdlib.h> #include <string.h> #include <memory> #include <string> ...
[ "sokolov.p@gmail.com" ]
sokolov.p@gmail.com
b9611ca62c9c60bb395f85e34c932f8b1f125b3b
c7693de80148bc9e6fa38e7bcf59717e6bcf1d93
/src/cyberlink/control/ControlResponse.cpp
173405368575faf3516d830e91b2f0b33e36bd6f
[]
no_license
muidea/magicMirror
bea6d0fe2696573641042528670a961756895828
8d301c26b8055cec7f48913f4497a52c6d5c91f7
refs/heads/master
2021-01-20T06:51:04.723500
2017-05-13T16:19:08
2017-05-13T16:19:08
89,934,711
0
0
null
null
null
null
UTF-8
C++
false
false
2,984
cpp
/****************************************************************** * * CyberLink for C++ * * Copyright (C) Satoshi Konno 2002 * * File: ControlResponse.cpp * * Revision; * * 08/13/03 * - first revision * ******************************************************************/ #include <control/ControlResponse.h> #...
[ "muidea@gmail.com" ]
muidea@gmail.com
da984e6a7ddd43e4daa52a88ae2a67cbdd1e6fc3
6ab6a8ea4493eea105734bd0fece9a61e59afa79
/public/codes/kruskals/kruskals.cpp
8c442bbd0ecd5bd929f4679bc670a52850e13f31
[ "MIT" ]
permissive
myNameArnav/dsa-visualizer
7e397c486be29ff611357dc27563bf3aa41c3558
4076297ba24462e7361cb621176f370b3cd60043
refs/heads/main
2023-08-22T16:07:42.605293
2021-09-27T11:10:29
2021-09-27T11:10:29
411,303,897
1
0
MIT
2021-09-28T13:57:09
2021-09-28T13:57:08
null
UTF-8
C++
false
false
3,015
cpp
// C++ program for Kruskal's algorithm to find Minimum // Spanning Tree of a given connected, undirected and // weighted graph #include <iostream> #include <vector> #include <algorithm> using namespace std; // Creating shortcut for an integer pair typedef pair<int, int> iPair; // Structure to represent a graph struct...
[ "sahilahmed0707@gmail.com" ]
sahilahmed0707@gmail.com
626b423ace85c9792575f2819c1afd90be490d4d
bd1bad37425d942964d8630bca2263e13d303515
/vendor/bela/include/bela/details/charconv_fwd.hpp
820a8ba277707961c5aa18312ecdbe3cbcc36264
[ "Apache-2.0", "MIT" ]
permissive
fcharlie/Planck
78855cdd4c659cd053bfbf6ac7913f5d12ad9b8c
56861b3d3a62ea16becea965bc3bc0198f28e26a
refs/heads/master
2021-06-06T09:35:44.525162
2021-05-17T13:48:44
2021-05-17T13:48:44
161,035,393
3
1
null
null
null
null
UTF-8
C++
false
false
2,207
hpp
// Porting from MSVC STL // xcharconv.h internal header // Copyright (c) Microsoft Corporation. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception #ifndef BELA_DETAILS_CHARCONV_FWD_HPP #define BELA_DETAILS_CHARCONV_FWD_HPP #include <type_traits> #include <system_error> #include <cstring> #include <cstdint> #i...
[ "charlieio@outlook.com" ]
charlieio@outlook.com
d7913e3ab420cd64606e244c4e8ff76c5e67665f
01e21d29af961df02e516e729c26c381ce1d485d
/modules/squarepine_core/maths/Trigonometry.h
59fc8b3b2d1d5ca0adef533612e603e9c3d03e10
[ "ISC" ]
permissive
thinium/squarepine_core
1f92848d668b9af48124e24891c2e1b85fe74532
9d73b0820b8b44129b62a643785e8a7d4a7035b0
refs/heads/main
2023-07-16T04:30:09.089866
2021-08-06T14:25:10
2021-08-06T14:25:10
383,528,340
0
0
NOASSERTION
2021-07-06T16:10:59
2021-07-06T16:10:58
null
UTF-8
C++
false
false
3,747
h
//============================================================================== /** Cas function */ inline double cas (double x) noexcept { return std::sin (x) + std::cos (x); } /** Cas function */ inline float cas (float x) noexcept { return std::sin (x) + std::cos (x); } /** Cas function */ template<...
[ "joel.r.langlois@gmail.com" ]
joel.r.langlois@gmail.com
12200bc5ad97374c11a03ca15ea98555cab1dc42
65b9a9ffa4333c01daa58e25d6b486607aec95f2
/Code/SkinMesh.h
03dc1c4f73a8e2d681580ccd8a7242398e37fbd7
[]
no_license
followDreamLgx/Snake
871d273f5bdd8682c2a7d214cf26f6b0c68a018d
20701610205026fef6e2a12768b9e8502fea3c80
refs/heads/master
2021-01-10T11:45:35.544133
2016-03-03T14:34:21
2016-03-03T14:34:21
53,056,341
0
0
null
null
null
null
GB18030
C++
false
false
1,457
h
//============================================================================= // SkinMesh.h: 蒙皮网格模型类的定义 //============================================================================= # ifndef _SKINMESH_H # define _SKINMESH_H #include "AllocateHierarchy.h" class CSkinMesh { private: CAllocateHierarchy* m_...
[ "254784121@qq.c" ]
254784121@qq.c
b1a2f4dc223163dd733aa5f773282679ee731bc0
bd18edfafeec1470d9776f5a696780cbd8c2e978
/SlimDX/source/direct2d/Geometry.cpp
120a559d5c732b4576854c0fa3e70b807b437a29
[ "MIT" ]
permissive
MogreBindings/EngineDeps
1e37db6cd2aad791dfbdfec452111c860f635349
7d1b8ecaa2cbd8e8e21ec47b3ce3a5ab979bdde7
refs/heads/master
2023-03-30T00:45:53.489795
2020-06-30T10:48:12
2020-06-30T10:48:12
276,069,149
0
1
null
2021-04-05T16:05:53
2020-06-30T10:33:46
C++
UTF-8
C++
false
false
18,462
cpp
/* * Copyright (c) 2007-2010 SlimDX Group * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, ...
[ "Michael@localhost" ]
Michael@localhost
ac63c4f7902523458b622edfd1345a8d11a38681
51b16e2d745c2fdcc35e5e2f14ffe9136407689b
/C++/Dynamic Programming/LongestSubstrPalindrome.cpp
00168feb054a11242d77c1475237ee743fc90c73
[]
no_license
anishashruti/Computer-programming
b54ab79c281b2068b340fc3f54bc8af37fdf7599
244b44916ff8087b1ce54f96e2c2d97fddd40816
refs/heads/main
2023-07-04T11:03:00.199696
2021-08-08T15:27:01
2021-08-08T15:27:01
379,686,669
0
0
null
null
null
null
UTF-8
C++
false
false
1,186
cpp
#include <bits/stdc++.h> using namespace std; void fastIO(){ ios_base::sync_with_stdio(false); cin.tie(NULL); } void printSubStr(string s, int low, int high) { for (int i = low; i <= high; ++i) cout << s[i]; } int longestsubstr(string s){ int n = s.size(); int adj[n][n]; int start ...
[ "anishashruti.at@gmail.com" ]
anishashruti.at@gmail.com
795d5360752822a125dc90016815bd3fb3fd259c
4cec58c6e54319d71dcbb24e7862d31733073b5c
/plugs/ImgReader/ImgReader.cpp
0b4abfdcfd8d601362ebefd797142ead763e7317
[]
no_license
libretro-mirrors/nulldce
dc56b5c6911d6bc22772d02384c1fa801aca1989
39c05500629116f0eb6bcb89a94027e1b987170c
refs/heads/master
2021-05-13T12:14:44.472836
2017-11-20T14:23:30
2017-11-20T14:28:48
116,666,088
1
0
null
2018-01-08T11:04:09
2018-01-08T11:04:09
null
UTF-8
C++
false
false
3,484
cpp
// nullGDR.cpp : Defines the entry point for the DLL application. // #include "ImgReader.h" #include <stdio.h> #include <string.h> #include "common.h" void FASTCALL libGDR_ReadSubChannel(u8 * buff, u32 format, u32 len) { //printf("libGDR_ReadSubChannel\n"); }/* FILE* fiso; u32 fiso_fad; u32 fiso_ssz; ...
[ "skmp@nillware.com" ]
skmp@nillware.com
e32d5042f232dbd7d0ca53629be823f8a2f3e0a1
57e55822ab1d54a3d7cf0eecb13f130f9bec8983
/cppsrc/encoder/fdkaac.cpp
dc44d6deb0d5a212a25992427444981a7c9130de
[]
no_license
taktod/ttLibGo
a358534fb6796265178a9b318de6121f6f496257
ca2590d41630c0ba97790f22f5a484ec1e156c01
refs/heads/master
2021-01-01T05:53:07.366436
2019-10-03T03:25:18
2019-10-03T03:25:18
97,297,745
20
1
null
null
null
null
UTF-8
C++
false
false
2,068
cpp
#include "fdkaac.hpp" #include "../util.hpp" #include <iostream> #include "ttLibC/ttLibC/container/container.h" using namespace std; extern "C" { typedef void *(* ttLibC_FdkaacEncoder_make_func)(const char *,uint32_t,uint32_t,uint32_t); typedef bool (* ttLibC_FdkaacEncoder_setBitrate_func)(void *,uint32_t); typedef v...
[ "poepoemix@hotmail.com" ]
poepoemix@hotmail.com
4ecd50354915f0a31bdeea48f0b410ada4f362ad
ae0b041a5fb2170a3d1095868a7535cc82d6661f
/MFCHash/stdafx.cpp
8953c3b2f3560b9237e39e1bb2d6ee832c5c49dc
[]
no_license
hexonxons/6thSemester
59c479a1bb3cd715744543f4c2e0f8fdbf336f4a
c3c8fdea6eef49de629a7f454b91ceabd58d15d8
refs/heads/master
2016-09-15T17:45:13.433434
2011-06-08T20:57:25
2011-06-08T20:57:25
1,467,281
0
0
null
null
null
null
UTF-8
C++
false
false
207
cpp
// stdafx.cpp : source file that includes just the standard includes // MFCHash.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h"
[ "killgamesh666@gmail.com" ]
killgamesh666@gmail.com
23637dd080dffbd66b80bb3e0b5490e51a0014cd
a9e308c81c27a80c53c899ce806d6d7b4a9bbbf3
/engine/xray/editor/world/sources/command_set_object_transform.cpp
61bf7e1efac8ed7a36ff508f59411ccd3acf08b4
[]
no_license
NikitaNikson/xray-2_0
00d8e78112d7b3d5ec1cb790c90f614dc732f633
82b049d2d177aac15e1317cbe281e8c167b8f8d1
refs/heads/master
2023-06-25T16:51:26.243019
2020-09-29T15:49:23
2020-09-29T15:49:23
390,966,305
1
0
null
null
null
null
UTF-8
C++
false
false
1,795
cpp
//////////////////////////////////////////////////////////////////////////// // Created : 30.03.2009 // Author : Armen Abroyan // Copyright (C) GSC Game World - 2009 //////////////////////////////////////////////////////////////////////////// #include "pch.h" #include "command_set_object_transform.h" #include "objec...
[ "loxotron@bk.ru" ]
loxotron@bk.ru
b69bd972ac3bcd3078d45a12cdc330df10383dbe
c67cbd22f9bc3c465fd763fdf87172f2c8ec77d4
/Desktop/Please Work/build/Android/Preview/app/src/main/include/Fuse.Input.FocusPredi-2161b71d.h
3a788c720472060ffdd458f850206cc04df2bfda
[]
no_license
AzazelMoreno/Soteria-project
7c58896d6bf5a9ad919bde6ddc2a30f4a07fa0d4
04fdb71065941176867fb9007ecf38bbf851ad47
refs/heads/master
2020-03-11T16:33:22.153713
2018-04-19T19:47:55
2018-04-19T19:47:55
130,120,337
0
0
null
null
null
null
UTF-8
C++
false
false
755
h
// This file was generated based on C:/Users/rudy0/AppData/Local/Fusetools/Packages/Fuse.Nodes/1.8.1/Input/Focus.Prediction.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.h> namespace g{namespace Fuse{namespace Input{struct FocusPredictStrategy;}}} namespace g{namespa...
[ "rudy0604594@gmail.com" ]
rudy0604594@gmail.com
b67658139305c6c88418f21cdad2f71b7cb3f987
864496807499c9cb8588d60c49356697b1370470
/Source/Game.cpp
688c7d7484a009f54cba356d8ac8b26d07f8c8f8
[]
no_license
Hopson97/Minesweeper
7357c1b50fafce289fa0edcb34fff67904a0e755
204d9bc798aa00355d771e09a480dcbefbfcf6ca
refs/heads/master
2022-07-06T09:56:22.955779
2017-02-11T17:53:28
2017-02-11T17:53:28
81,117,341
2
1
null
2022-06-18T17:47:06
2017-02-06T18:20:38
C++
UTF-8
C++
false
false
626
cpp
#include "Game.h" #include "States/Playing.h" #include "Util/Random.h" Game::Game() { Random::init(); pushState(std::make_unique<State::Playing>(*this)); } void Game::runLoop() { while (m_isRunning) { //system("cls");//I know "system" is bad, but I cba type out the "windows" way of clearing. ...
[ "mhopson@hotmail.co.uk" ]
mhopson@hotmail.co.uk
7f4f7cf5e8fab116e6a47a50912f9b53e346090f
a6a9d5259574756bdbe903a4d66bcd82b4b40b29
/multiplos.cpp
b5efc534a59cc9dfbf77e2705f90422b5460e284
[ "MIT" ]
permissive
DariaMachado/Algoritmos_em_C--
24299e8f931de63f4c1afd65a6edda1ce421611e
a61dae7445f8274e1c43ca7030ee69c1474395d1
refs/heads/main
2023-03-14T14:28:28.641084
2021-03-06T23:03:52
2021-03-06T23:03:52
341,552,762
0
0
null
null
null
null
UTF-8
C++
false
false
319
cpp
#include <bits/stdc++.h> using namespace std; int main() { int n1, n2; cout << "Digite dois numeros inteiros: " << endl; cin >> n1 >> n2; if(n1 % n2 == 0 || n2 % n1 == 0) { cout << "Sao multiplos" << endl; } else { cout << "Nao sao multiplos" << endl; } return 0; }
[ "78050749+DariaMachado@users.noreply.github.com" ]
78050749+DariaMachado@users.noreply.github.com
56d5131fdb1142322b95df5a103f73122ec89df0
8aebaaac7e08ccad863ed013d3de7ea025356e06
/main.cpp
1ade0bff2ea5099bbe16b0ebe3c7a098fc5bfa73
[]
no_license
fotsing365/IFCModule
0ae664f660138cff71f04e606cad1d8934c47c2a
56c1f8ec0f66543c47ee5665468ef7d095c02c2b
refs/heads/master
2021-01-21T10:25:23.523805
2017-05-18T12:30:06
2017-05-18T12:30:06
91,687,687
0
0
null
null
null
null
UTF-8
C++
false
false
33,704
cpp
// IFC SDK : IFC2X3 C++ Early Classes // Copyright (C) 2009 CSTB // // 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 ...
[ "fotsing365@gmail.com" ]
fotsing365@gmail.com
62c087bd16cef36d06abed3eafd8d78175d3a57a
bfb5d48e57876c7863d9a7d1ab03299e608ddc8b
/classes/MsgDelayResp.h
bd66e10792e85a870739f096d739c9504e7e47d2
[]
no_license
li7/PTP_Click
12c54bb7de77dc491de26ab2fe8759de04217fa3
fcf441b90d0e51d130d092bc7f6f62269c7e312b
refs/heads/master
2020-04-15T13:33:56.043581
2014-07-08T01:29:24
2014-07-08T01:29:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,454
h
#ifndef MSGDELAYRESP_H #define MSGDELAYRESP_H #include "TimeRepresentation.h" #include "constants.h" #include <iostream> using namespace std; class MsgDelayResp{ public: /*************Constructor************/ MsgDelayResp(); /****************accessors***********/ TimeRepresentation& get_delayReceiptTimestamp()...
[ "li7@hawaii.edu" ]
li7@hawaii.edu
3a1957dc4cb75bd1873a838b2f238fd60cc626bb
31287dccda1fa0be67d87c61175fc7e9206134e8
/Schedule/MagicWindow/NinePatchPainter.h
fd2f4f07f5f9364d7f94e0744c55d4ccba8c5c3c
[]
no_license
xtuer/Qt
83c9407f92cef8f0d1b702083bb51ea29d69f18a
01d3862353f88a64e3c4ea76d4ecdd1d98ab1806
refs/heads/master
2022-06-02T02:32:56.694458
2022-05-29T13:06:48
2022-05-29T13:06:48
55,279,709
15
13
null
null
null
null
UTF-8
C++
false
false
475
h
#ifndef NINEPATCHPAINTER_H #define NINEPATCHPAINTER_H class QRect; class QString; class QPainter; class NinePatchPainterPrivate; /** * @brief 使用九宫格的方式绘图 */ class NinePatchPainter { public: NinePatchPainter(int left, int top, int right, int bottom, const QString &imagePath, bool tiled); ~NinePatchPainter(); ...
[ "biao.mac@icloud.com" ]
biao.mac@icloud.com
2e2d1ed20b6d20251378c4af4ece5d3df3aaa883
220529721e151c6cc088ebecf4d3c19fd4716df3
/LeetCode/Minimum Length of String After Deleting Similar Ends/main.cpp
1cad3442245ce79db3e317461c97abe8df3801ba
[ "MIT" ]
permissive
jahid-coder/competitive-programming
baa2311796e3ffad3ded4789e43f4f37b95673ef
e7878de2445019c916404238180959dc9308ed4a
refs/heads/master
2023-08-26T10:13:57.816451
2021-10-18T04:26:32
2021-10-18T04:26:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
375
cpp
class Solution { public: int minimumLength(string s) { int i = 0, j = s.size() - 1; while (i < j && s[i] == s[j]) { char ch = s[i]; while (i <= j && s[i] == ch) { i++; } while (i <= j && s[j] == ch) { j--; ...
[ "thedevelopersanjeev@gmail.com" ]
thedevelopersanjeev@gmail.com
8fa44a3fa71db53c2221ad3356a33044849dc6fe
b5f6d2410a794a9acba9a0f010f941a1d35e46ce
/utils/RCBot2_meta/bot_ga_ind.cpp
90004afb47f66e3f50a30065273ad3f7be791a96
[]
no_license
chrizonix/RCBot2
0a58591101e4537b166a672821ea28bc3aa486c6
ef0572f45c9542268923d500e64bb4cd037077eb
refs/heads/master
2021-01-19T12:55:49.003814
2018-08-27T08:48:55
2018-08-27T08:48:55
44,916,746
4
0
null
null
null
null
UTF-8
C++
false
false
3,419
cpp
/* * This file is part of RCBot. * * RCBot by Paul Murphy adapted from Botman's HPB Bot 2 template. * * RCBot is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of th...
[ "christian.pichler.msc@gmail.com" ]
christian.pichler.msc@gmail.com
71c97f2b1453bc4ac4999bd50b395a29c09115e3
02fec111191ecede92d844422125ac8482171bde
/NepsAcademy/frete_silva.cpp
891599ab4bec0250b25084d6a9da8978c02dab2f
[]
no_license
Lucas3H/Maratona
475825b249659e376a1f63a6b3b6a1e15c0d4287
97a2e2a91fb60243124fc2ffb4193e1b72924c3c
refs/heads/master
2020-11-24T18:35:24.456960
2020-11-06T14:00:56
2020-11-06T14:00:56
228,292,025
0
0
null
null
null
null
UTF-8
C++
false
false
1,360
cpp
#include<bits/stdc++.h> using namespace std; #define fr(i, n) for(int i = 0; i < n; i++) #define frj(j, n) for(int j = 0; j < n; j++) #define frr(i, n) for(int i = 1; i <= n; i++) #define frm(i, n) for(int i = n-1; i >= 0; i--) #define pb push_back #define erase(i) erase(v.begin() + i, v.begin() + i + 1) typedef...
[ "lucashhh@usp.br" ]
lucashhh@usp.br
d825139b26a1389dd3417170486c453347969fc6
3309f74c7120899929139d80530f8a5b85e6b7f3
/JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedComponent.cpp
d8570afc7b6b370d255712cb767e33fd76d9e209
[]
no_license
AndyBrown91/MusicPlayer
d8910e6b5963c9abfa6e26fbe0c1e6b82be92e44
d5867a1448439b49b5140bc3eabc327230e1b4db
refs/heads/master
2020-04-12T21:02:20.544198
2013-07-25T11:18:48
2013-07-25T11:18:48
10,436,549
0
1
null
null
null
null
UTF-8
C++
false
false
9,453
cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2013 - Raw Material Software Ltd. Permission is granted to use this software under the terms of either: a) the GPL v2 (or any later version) b) the Affero GPL...
[ "andyjtbrown@gmail.com" ]
andyjtbrown@gmail.com
8cdf5696d41c35584e3f1a4183d082e93f3c31d8
43a2fbc77f5cea2487c05c7679a30e15db9a3a50
/Cpp/External (Offsets Only)/SDK/BP_SmallShip_Capstan_functions.cpp
fad306a28d4a9cdb580875f6e5fd17909b11dd22
[]
no_license
zH4x/SoT-Insider-SDK
57e2e05ede34ca1fd90fc5904cf7a79f0259085c
6bff738a1b701c34656546e333b7e59c98c63ad7
refs/heads/main
2023-06-09T23:10:32.929216
2021-07-07T01:34:27
2021-07-07T01:34:27
383,638,719
0
0
null
null
null
null
UTF-8
C++
false
false
1,195
cpp
// Name: SoT-Insider, Version: 1.102.2382.0 #include "../pch.h" /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Functions //---------------------------------------...
[ "Massimo.linker@gmail.com" ]
Massimo.linker@gmail.com
137ed3ebe3264c5a94ffbade562d9fc034e0057a
30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a
/Implementation/658.cpp
ba5f35ba85ce35a479fad572f4cf73643d52bd4f
[]
no_license
thegamer1907/Code_Analysis
0a2bb97a9fb5faf01d983c223d9715eb419b7519
48079e399321b585efc8a2c6a84c25e2e7a22a61
refs/heads/master
2020-05-27T01:20:55.921937
2019-11-20T11:15:11
2019-11-20T11:15:11
188,403,594
2
1
null
null
null
null
UTF-8
C++
false
false
503
cpp
#include<stdio.h> int main(){ int n,k,i; scanf("%d %d",&n,&k); int score[n],mark=0; for(i=0;i<n;i++){ scanf("%d",&score[i]); } for(i=0;i<k;i++){ if(score[i]==0){ mark=1; printf("%d",i); break;} } ...
[ "mukeshchugani10@gmail.com" ]
mukeshchugani10@gmail.com
f0b02990e3ea20783ffe862b10d512890ef2dda2
a65c77b44164b2c69dfe4bfa2772d18ae8e0cce2
/atcoder/Walk_on_Multiplication_Table.cpp
0d83c0b1b6a725309d0a473a4bbfff68dce2637d
[]
no_license
dl8sd11/online-judge
553422b55080e49e6bd9b38834ccf1076fb95395
5ef8e3c5390e54381683f62f88d03629e1355d1d
refs/heads/master
2021-12-22T15:13:34.279988
2021-12-13T06:45:49
2021-12-13T06:45:49
111,268,306
1
6
null
null
null
null
UTF-8
C++
false
false
884
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define REP(i,n) for(int i=0;i<n;i++) #define REP1(i,n) for(int i=1;i<=n;i++) #define SZ(i) int(i.size()) #ifdef tmd #define IOS() #define debug(...) fprintf(stderr,"%s - %d (%s) = ",__PRETTY_FUNCTION__,__LINE__,#__VA_ARGS__);_do(__VA_ARGS__); template...
[ "tmd910607@gmail.com" ]
tmd910607@gmail.com
652c9d52a131e33a05a8120c6bd79b6f57dca806
04b1803adb6653ecb7cb827c4f4aa616afacf629
/chrome/browser/web_applications/components/web_app_helpers_unittest.cc
1b4194f878f84f7b396958833d1e8a93e2cf8eb2
[ "BSD-3-Clause" ]
permissive
Samsung/Castanets
240d9338e097b75b3f669604315b06f7cf129d64
4896f732fc747dfdcfcbac3d442f2d2d42df264a
refs/heads/castanets_76_dev
2023-08-31T09:01:04.744346
2021-07-30T04:56:25
2021-08-11T05:45:21
125,484,161
58
49
BSD-3-Clause
2022-10-16T19:31:26
2018-03-16T08:07:37
null
UTF-8
C++
false
false
3,043
cc
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/web_applications/components/web_app_helpers.h" #include "testing/gtest/include/gtest/gtest.h" #include "url/gurl.h" namespace w...
[ "sunny.nam@samsung.com" ]
sunny.nam@samsung.com
48366f1ce15a52de6793c8f2e3663ff0aafe4e19
a23f895a3982037ea114200ef2f31e9c15e1c69e
/Marsh/Marsh/SpikeLauncher.h
13fc52c837e775b4c2f12562972c8e0c531427d9
[]
no_license
Casket/marsh-game-files
588fd930c804ca91fc9b227291d520e5e2c7e297
176fa31bf469e2ffd827b7601eb3f4334f2164ce
refs/heads/master
2020-12-24T15:23:15.703437
2013-05-15T15:46:21
2013-05-15T15:46:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
429
h
#pragma once #include "Main.h" using namespace std; class SpikeLauncher: public Attack{ int spawn_delay; int spawn_counter; int spawn_num; Attack* attack_spawn; public: SpikeLauncher(int x, int y, Sprite* img, Attack* to_launch, AttackStatistics stats, int delay, int spawn_num); ~SpikeLauncher(void); virtual A...
[ "sturgedl@rose-hulman.edu" ]
sturgedl@rose-hulman.edu
6ef718843cb03dce7e473ef6a4760302d812ddfe
891bfc38e6e85b643afe683ac69942634ec2dde7
/services/tracing/public/mojom/data_source_config_struct_traits.cc
bd1ca60cec9ecc0586765df0e7268b228fdb8d40
[ "BSD-3-Clause" ]
permissive
siliu1/chromium
6635bef82e896f2fee63dcd5f1182c289b35edb4
b9310a104d7cf73c7807963089a77e287ef4b19b
refs/heads/master
2023-03-18T14:13:43.241848
2019-02-13T19:56:46
2019-02-13T19:56:46
170,571,164
0
0
NOASSERTION
2019-02-14T04:28:44
2019-02-13T20:01:41
null
UTF-8
C++
false
false
1,081
cc
// Copyright 2019 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 "services/tracing/public/mojom/data_source_config_struct_traits.h" #include <utility> #include "services/tracing/public/mojom/chrome_config_str...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
ec5f4939be6ef85a7fec35618aee70b2f7208da8
c1863ac87c30f271f43e6ed834c949637f70dea3
/src/test/versionbits_tests.cpp
804d43db9884f090aeebfe67338e4181c0d3fb37
[ "MIT" ]
permissive
quantix-team/quantix
05bc3cdb97d83b617c1b53afdaa5fa6aa40628d0
6275c62e8ba36e53eefb46793a9444e2bec72da7
refs/heads/master
2020-03-19T16:20:15.662965
2018-06-22T06:44:44
2018-06-22T06:44:44
136,711,625
1
0
null
null
null
null
UTF-8
C++
false
false
15,211
cpp
// Copyright (c) 2014-2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "chain.h" #include "random.h" #include "versionbits.h" #include "test/test_quantix.h" #include "chainparams.h" #incl...
[ "quantixteam@quantix-coin.online" ]
quantixteam@quantix-coin.online
3e0c383d202402a3e5107a43084807c6b3dfc1ea
55d78aa8c8510cb7bbb8547d44249a9fe4e63f16
/tests/src/parser/KeywordEntries.test.cpp
0727d712fe100ab953a6742444db926a74500f42
[]
no_license
goforbroke1006/adelantado
8e72826974fe57efc17a2fda663ea34c1a0a9054
3eaf71ed129d69cf4e5907481edd5e11649b78dd
refs/heads/master
2023-01-20T02:24:50.928279
2020-11-30T00:23:06
2020-11-30T00:23:06
311,798,109
0
0
null
null
null
null
UTF-8
C++
false
false
3,001
cpp
// // Created by goforbroke on 15.11.2020. // #include <gtest/gtest.h> #include "../../../src/parser/KeywordEntries.h" TEST(atLeastOneLetter, positive_simplest) { ASSERT_TRUE( atLeastOneLetter("h")); ASSERT_TRUE( atLeastOneLetter("h...")); ASSERT_TRUE( atLeastOneLetter("2020hello")); ASSERT_TRUE( atL...
[ "go.for.broke1006@gmail.com" ]
go.for.broke1006@gmail.com
78222bc340b020566d90e922a0499ef44adc2533
40b9c9ba225c7c93456cd2173483c28c4b485557
/src/s2/s2cell_range_iterator.h
c1188c75fb7aee275c86bb1f602119909360f54d
[ "Apache-2.0" ]
permissive
google/s2geometry
04d89ed376da4943cbdf2f46a235e159df34e3f9
7773d518b1f29caa1c2045eb66ec519e025be108
refs/heads/master
2023-08-25T21:12:52.183730
2023-04-28T15:28:39
2023-04-28T15:28:39
46,291,330
2,042
326
Apache-2.0
2023-04-28T15:28:40
2015-11-16T17:41:03
C++
UTF-8
C++
false
false
9,232
h
// Copyright 2013 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
[ "jmr@google.com" ]
jmr@google.com
1ed0dfcb6c230016811923ad6e7c32f9c357cee5
2c562fdff8ac5c2d19a0589d630b960a3374db07
/src/notification.cpp
2e5d85567e2f5a52c7d3ea0f57719b2a6b77cb51
[]
no_license
lhardt/Minerva
219c39bfe2ccd185456dcc1052fd1ca6f89a6fcf
46003638d917c5f11a29535f45f3f9fc1a2815fa
refs/heads/master
2021-07-15T21:33:03.556572
2021-03-27T01:54:28
2021-03-27T01:54:28
243,601,556
1
0
null
null
null
null
UTF-8
C++
false
false
3,123
cpp
#include "gui.hpp" #include <wx/timer.h> #include <wx/hyperlink.h> Notification::Notification(Application * owner, wxWindow * parent, wxWindowID id, wxString text, wxPoint position , wxSize size) : wxPanel(parent, id, position, size){ SetBackgroundColour(wxColour(0x32,0x32,0x32)); wxSizer * sz = new wxBoxSizer(wxHO...
[ "leom.hardt@gmail.com" ]
leom.hardt@gmail.com
804646b1d47dcdb83ec105ff7f924aacf4ddf720
f4ee1e9b95abc8498e3e0094d873c471037589cc
/02_Transparency/02_Transparency/MyApp.h
d69be664f23499c6d300cacb1e214242c1d28142
[]
no_license
ZsemberiDaniel/2020OszGrafikaGyak
f6ac9ce35706d977f7d7c3dceee53a5b9fc57d52
cd00be4049582513c04521eef8f066d7a0a7a5cf
refs/heads/master
2023-01-23T03:51:26.042136
2020-12-08T12:54:22
2020-12-08T12:54:22
293,063,261
0
0
null
null
null
null
ISO-8859-2
C++
false
false
1,295
h
#pragma once // C++ includes #include <memory> // GLEW #include <GL/glew.h> // SDL #include <SDL.h> #include <SDL_opengl.h> // GLM #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <glm/gtx/transform2.hpp> #include "ProgramObject.h" #include "BufferObject.h" #include "VertexArrayObject.h" #in...
[ "zsemberi.daniel@gmail.com" ]
zsemberi.daniel@gmail.com
4b02b7b8dca9a77b1ce922fda9bc491827ca683e
76f0efb245ff0013e0428ee7636e72dc288832ab
/out/Default/gen/blink/bindings/core/v8/V8GeneratedCoreBindings72.cpp
dd22252b62d814e4f9128b3a4306966e04517d39
[]
no_license
dckristiono/chromium
e8845d2a8754f39e0ca1d3d3d44d01231957367c
8ad7c1bd5778bfda3347cf6b30ef60d3e4d7c0b9
refs/heads/master
2020-04-22T02:34:41.775069
2016-08-24T14:05:09
2016-08-24T14:05:09
66,465,243
0
2
null
null
null
null
UTF-8
C++
false
false
1,744
cpp
/* * THIS FILE WAS AUTOMATICALLY GENERATED, DO NOT EDIT. * * This file was generated by the action_derivedsourcesallinone.py script. * * Copyright (C) 2009 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the fol...
[ "dckristiono@gmail.com" ]
dckristiono@gmail.com
5fc304fcc6520bea3f642e78a9e829090a82fc68
1463abcfbe949dcf409613518ea8fc0815499b7b
/sprout/math/hypot.hpp
4334d580830b75253693ddc2f307a15f478eb295
[ "BSL-1.0" ]
permissive
osyo-manga/Sprout
d445c0d2e59a2e32f91c03fceb35958dcfb2c0ce
8885b115f739ef255530f772067475d3bc0dcef7
refs/heads/master
2021-01-18T11:58:21.604326
2013-04-09T10:27:06
2013-04-09T10:27:06
4,191,046
1
0
null
null
null
null
UTF-8
C++
false
false
1,840
hpp
#ifndef SPROUT_MATH_HYPOT_HPP #define SPROUT_MATH_HYPOT_HPP #include <limits> #include <type_traits> #include <sprout/config.hpp> #include <sprout/type_traits/float_promote.hpp> #include <sprout/type_traits/enabler_if.hpp> #include <sprout/math/detail/config.hpp> #include <sprout/math/fabs.hpp> #include <spr...
[ "bolero.murakami@gmail.com" ]
bolero.murakami@gmail.com
3ad7d714c3e79f0ca23a810e9c610d349908af33
c776476e9d06b3779d744641e758ac3a2c15cddc
/examples/litmus/c/run-scripts/tmp_1/MP+dmb.sy+[fr-rf]-ctrl-addr.c.cbmc_out.cpp
2f8aded2f0e3be04ca487f8ca75fc9cbd5696f8b
[]
no_license
ashutosh0gupta/llvm_bmc
aaac7961c723ba6f7ffd77a39559e0e52432eade
0287c4fb180244e6b3c599a9902507f05c8a7234
refs/heads/master
2023-08-02T17:14:06.178723
2023-07-31T10:46:53
2023-07-31T10:46:53
143,100,825
3
4
null
2023-05-25T05:50:55
2018-08-01T03:47:00
C++
UTF-8
C++
false
false
49,195
cpp
// 0:vars:3 // 3:atom_1_X0_1:1 // 4:atom_1_X2_2:1 // 5:atom_1_X6_0:1 // 6:thr0:1 // 7:thr1:1 // 8:thr2:1 #define ADDRSIZE 9 #define NPROC 4 #define NCONTEXT 1 #define ASSUME(stmt) __CPROVER_assume(stmt) #define ASSERT(stmt) __CPROVER_assert(stmt, "error") #define max(a,b) (a>b?a:b) char __get_rng(); char get_rng( ch...
[ "tuan-phong.ngo@it.uu.se" ]
tuan-phong.ngo@it.uu.se
7057d762a069c4c683b1f6fad432533577568a9b
a5a85f7b11fe781042c1e4e3fabdf46308c026b1
/Module 2/main.c/coeur.c/coeur.c.ino
d55b238d7c8710e164544c2a9cbe506d688b2380
[]
no_license
FlorianCa/Projet-Hexart-Care
6191cda8a7357953c14dfd95ab5195cf3981c8b8
c123c9e371a43e47b84f64d0ae5f7aa11df6fb03
refs/heads/master
2021-09-28T18:09:55.365803
2018-11-16T13:54:50
2018-11-16T13:54:50
157,174,888
0
1
null
null
null
null
UTF-8
C++
false
false
1,921
ino
#include "coeur.h" #include "param.h" int TabPinLed[10]={2,3,4,5,6,7,8,9,10,11}; int TabPinLed_1[10]={11,10,9,8,7,6,5,4,3,2}; int TabPinLed_2[5]={2,4,6,8,10}; int TabPinLed_3[5]={3,5,7,9,11}; int TabPinLed_4[4]={2,5,8,11}; int TabPinLed_5[4]={3,5,9,2}; int TabPinLed_6[4]={4,7,10,3}; int TabPinLed_7[5]={2,3,4,5,6}; int...
[ "44927341+FlorianCa@users.noreply.github.com" ]
44927341+FlorianCa@users.noreply.github.com
47021d97e7695899d135f6ab1e979a8d88a9ef26
7ff45f1195fa4bebb46237649b76fa97912ed587
/src/runtime/src/coreclr/vm/codeman.cpp
0dc1e17680681b54803a0adc537b8948bd32e66a
[ "MIT" ]
permissive
directhex/dotnet
5665ed71a1c4e9289ab7d86162954431967bc015
02cc69a55e6a44eb1e783e22fa8d9c4f64c7ac90
refs/heads/main
2023-08-09T08:35:32.866522
2022-12-08T00:01:47
2022-12-08T00:01:47
575,902,243
0
0
null
null
null
null
UTF-8
C++
false
false
226,113
cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // codeman.cpp - a managment class for handling multiple code managers // #include "common.h" #include "jitinterface.h" #include "corjit.h" #include "jithost.h" #include "eetwain...
[ "dotnet-maestro[bot]@users.noreply.github.com" ]
dotnet-maestro[bot]@users.noreply.github.com
86388bedcac37aae0a77e35edbcf62757565b400
a1b4d9a091dfd3720167e07aed0930fe0d3f4dbc
/secindexs/src/common/message_event.h
bbfcb417d1167674d4f1094da18805652df61f31
[ "MIT" ]
permissive
pravblockc/secondary-indexes
306aee834bc32603cc1ab1bf834119883ca4b552
b7aeef8319c9fa9e6b8b335ed7fedf8a7a76de01
refs/heads/master
2023-07-28T22:18:46.284511
2021-09-21T17:35:08
2021-09-21T17:35:08
408,839,483
0
0
null
null
null
null
UTF-8
C++
false
false
3,371
h
/** * Copyright (C) 2018-present MongoDB, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the Server Side Public License, version 1, * as published by MongoDB, Inc. * * This program is distributed in the hope that it will be useful, * but W...
[ "pravin.blockc@gmail.com" ]
pravin.blockc@gmail.com
53e698b082ca68a0eac26468ce2071048a2d73fe
d2a258b02cb941d012273558f4b6c2281ca56eeb
/ds/002_Stack/StackSTL.h
ad08f5f3159405cc4eb0fbf42c4c650164ea7c42
[]
no_license
jitendrakr54/Learning
7b379e4c015d47063d797042f4e83ffbdebef483
58e1443e91a644381e63bf9847c281043b23c5f8
refs/heads/master
2023-07-26T16:09:51.352594
2021-09-06T09:54:20
2021-09-06T09:54:20
391,670,709
0
0
null
null
null
null
UTF-8
C++
false
false
811
h
/* * StackSTL.h * * Created on: 04-Nov-2020 * Author: Jitendra */ #pragma once #include <iostream> #include <cassert> namespace ds { namespace stack { template<class T> class StackSTL { private: int size{}; int top; T *arr{}; public: StackSTL(int length) : size{length}, t...
[ "jitendrakr54@gmail.com" ]
jitendrakr54@gmail.com
4ee16d325b805fcb11c3dfaba0517f188b475986
b4f42eed62aa7ef0e28f04c1f455f030115ec58e
/messagingfw/msgtestproduct/media/inc/t_mediatestserver.h
ead1c0337bed359196e3355de513d782429564ed
[]
no_license
SymbianSource/oss.FCL.sf.mw.messagingmw
6addffd79d854f7a670cbb5d89341b0aa6e8c849
7af85768c2d2bc370cbb3b95e01103f7b7577455
refs/heads/master
2021-01-17T16:45:41.697969
2010-11-03T17:11:46
2010-11-03T17:11:46
71,851,820
1
0
null
null
null
null
UTF-8
C++
false
false
1,964
h
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). // All rights reserved. // This component and the accompanying materials are made available // under the terms of "Eclipse Public License v1.0" // which accompanies this distribution, and is available // at the URL "http://www.eclipse.org/legal/e...
[ "none@none" ]
none@none
759aa0e43c43e86d34bd3e11ddfe4f7d680e7dc9
af0ecafb5428bd556d49575da2a72f6f80d3d14b
/CodeJamCrawler/dataset/09_11405_99.cpp
26ff8e1799f9cb6d79f7082d782c9a714d453b37
[]
no_license
gbrlas/AVSP
0a2a08be5661c1b4a2238e875b6cdc88b4ee0997
e259090bf282694676b2568023745f9ffb6d73fd
refs/heads/master
2021-06-16T22:25:41.585830
2017-06-09T06:32:01
2017-06-09T06:32:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
724
cpp
#include <iostream> #include <cstdio> using namespace std; bool is[20][500]; char a[5005][20]; char p[100000000]; int main() { freopen("in.txt","rt",stdin); freopen("Aout.txt","wt",stdout); int l,n,d,i,j,k,m; scanf("%d %d %d ",&l,&d,&n); for(i=0;i<d;i++) gets(a[i]); p[0] = ')'; for(k=0;k<n;++k) ...
[ "nikola.mrzljak@fer.hr" ]
nikola.mrzljak@fer.hr
ce4b873d127813ebc4a50110ac639100c6167bd3
60e58a41cabf059812a7bba5267f175689bbc48f
/WickedEngine/wiFont.cpp
abe918d562acbd2a93111b359105568f64e86ac3
[ "MIT", "Zlib", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
all500234765/WickedEngine
e6b7d74276a1bb9266f30496786c9c4df478f4dd
b4aac25021454da93b90e213ee2f8a274a6bd76c
refs/heads/master
2020-05-21T01:17:52.927015
2019-05-08T18:00:12
2019-05-08T18:00:12
185,854,045
1
0
null
2019-05-09T18:45:41
2019-05-09T18:45:40
null
UTF-8
C++
false
false
17,122
cpp
#include "wiFont.h" #include "wiRenderer.h" #include "wiResourceManager.h" #include "wiHelper.h" #include "ResourceMapping.h" #include "ShaderInterop_Font.h" #include "wiBackLog.h" #include "wiTextureHelper.h" #include "wiRectPacker.h" #include "wiSpinLock.h" #include "Utility/stb_truetype.h" #include <fstream> #incl...
[ "turanszkij@gmail.com" ]
turanszkij@gmail.com
52b010721ee908370b92e0b4ccfc713d063c15f3
9a3b9d80afd88e1fa9a24303877d6e130ce22702
/src/Providers/UNIXProviders/HostedIPInterface/UNIX_HostedIPInterfaceMain.cpp
ddb620d19fae8ae279b99e8edcf0d95417af0952
[ "MIT" ]
permissive
brunolauze/openpegasus-providers
3244b76d075bc66a77e4ed135893437a66dd769f
f24c56acab2c4c210a8d165bb499cd1b3a12f222
refs/heads/master
2020-04-17T04:27:14.970917
2015-01-04T22:08:09
2015-01-04T22:08:09
19,707,296
0
0
null
null
null
null
UTF-8
C++
false
false
2,278
cpp
//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor lice...
[ "brunolauze@msn.com" ]
brunolauze@msn.com
bfa244ceb50b961120b6cea2da8a262ab1a69268
0fff2b8b5faa7e551f2f95bf4709ac146c42bbbf
/sort_demo.cpp
1f77d66b2af63b6c1cf41d8071c0758575265aba
[]
no_license
joiln/Bilibili_lanqiao_codes_1
45707922b8ad3197695005803aeb618c27d20826
a471c2950326428134c1be3fb2d907757ac0f109
refs/heads/master
2021-06-18T00:18:20.363737
2019-08-18T09:07:18
2019-08-18T09:07:18
202,847,888
2
0
null
null
null
null
UTF-8
C++
false
false
402
cpp
// // Created by chen on 2019/7/30. // #include <iostream> #include <algorithm> using namespace std; //从大到小排 bool cmp(int x,int y) { return x > y; } int num[10]; int main() { int n; for (int i = 0; i < 10; ++i) { cin >> num[i]; } sort(num,num+10,cmp); for (int j = 0; j < 10; ++j) { ...
[ "38676358+joiln@users.noreply.github.com" ]
38676358+joiln@users.noreply.github.com
82334354923a6cc3f5912ccb55b657cb659efa77
ee0cfbb03280a2549f88b0d2f6e7e5d905438c4d
/src/Wrappers/PosType2Block.cpp
08baa40f529ba38780c58e190312b54e4c309875
[]
no_license
liminglives/c-store
6d8f71e33fc130b3c779087c752910ddd9bf84a3
8516db5caa32620e24fab308a6659b369ff3bce6
refs/heads/master
2020-04-16T23:12:18.944454
2019-01-16T08:26:47
2019-01-16T08:26:47
166,002,609
2
0
null
null
null
null
UTF-8
C++
false
false
18,598
cpp
/* Copyright (c) 2005, Regents of Massachusetts Institute of Technology, * Brandeis University, Brown University, and University of Massachusetts * Boston. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following condit...
[ "zhengliming" ]
zhengliming
95e4854bf18d13ebc9834b09bc3e4ce3b949019f
509fdd2068df00dfb47a3fddd1d5bb0e7d9009aa
/Win32Project2/Win32Project2/Win32Project2Doc.cpp
4856ed9f07bb2abdffaea8d43b8dc9ad825d7c70
[]
no_license
joker-nshsh/exam1
8695b32b731487bf1c7b1ccc12a87474fdd254c0
ac46dc4664c2e387038e80dc0e844321224060da
refs/heads/master
2021-03-26T07:30:11.425572
2020-07-02T15:34:22
2020-07-02T15:34:22
247,682,370
1
0
null
null
null
null
GB18030
C++
false
false
2,687
cpp
// Win32Project2Doc.cpp : CWin32Project2Doc 类的实现 // #include "stdafx.h" // SHARED_HANDLERS 可以在实现预览、缩略图和搜索筛选器句柄的 // ATL 项目中进行定义,并允许与该项目共享文档代码。 #ifndef SHARED_HANDLERS #include "Win32Project2.h" #endif #include "Win32Project2Doc.h" #include <propkey.h> #ifdef _DEBUG #define new DEBUG_NEW #endif // CWin32Project2Doc...
[ "1569849722@qq.com" ]
1569849722@qq.com
1fc1420765f49e9b1a0aa29e46fe418719deab67
152f13462437d042efab568e514d4ab6c1e182ee
/DirectUI/Core/UIDxAnimation.h
735eb9df182a453dbf0b8076e31a23dc279dc413
[]
no_license
ZhouchaoAlbert/MiniQQ
fc900290482e700dd2908529b37cd44f2e28ed1d
387540f24ec7467c3908cadd6445acf91365e97b
refs/heads/master
2020-09-16T22:03:40.879243
2018-02-25T09:46:43
2018-02-25T09:46:43
66,358,640
4
1
null
null
null
null
UTF-8
C++
false
false
2,263
h
#ifndef UIDxAnimation_h__ #define UIDxAnimation_h__ #include <d3d9.h> #include <math.h> #pragma once namespace DuiLib { typedef enum { UIANIMTYPE_FLAT, UIANIMTYPE_SWIPE, } UITYPE_ANIM; class CDxAnimationUI; class UILIB_API CAnimationSpooler { public: CAnimationSpooler(); ~CAnimationSpo...
[ "838944042@qq.com" ]
838944042@qq.com
be60eb652b3bc23e22caff780d515788f65cff1f
fe8eda5ef62e7f43eb93bdb1906b4667ac76c3ab
/inazuma/cpp/ABC/Cprob/under_99/095.cpp
13ab6c58ab2655fab6a472407fab9a65d20e556f
[]
no_license
DeeeU/Everyday-problem-C
0b1011f2162aa4a3c4488cfeee432968309b2e9c
e7dba35fd7aee3b0e17ae5867576a1a11ae49b2b
refs/heads/master
2023-03-15T04:37:29.270017
2021-03-08T06:19:01
2021-03-08T06:19:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
437
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> p; int main() { int a, b, c, x, y; cin >> a >> b >> c >> x >> y; ll tmp1 = a * x + b * y; ll tmp2 = max(x, y) * 2 * c; ll tmp3 = min(x, y) * 2 * c; if (x > y) { tmp3 += ((max(x, y)-min(x, y)) * a); }else{ ...
[ "c011703534@edu.teu.ac.jp" ]
c011703534@edu.teu.ac.jp
e623ee69b780b03137dfb0b343c71987abfce868
0348bad09f104fc0338b6a5e051c5156952a9daf
/include/boost/callable_traits/detail/parameter_index_helper.hpp
452901aff7124520819e16708dfcd682f7256e3d
[ "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
sbosnick/callable_traits
588fff9f417a9d721f359206cd67577dba716950
26f62e21e7b95ec07da242195ebf5ce600503c7e
refs/heads/master
2021-01-22T22:13:30.468705
2017-03-12T01:01:29
2017-03-12T01:01:29
85,521,398
0
0
null
2017-03-20T01:07:54
2017-03-20T01:07:54
null
UTF-8
C++
false
false
1,989
hpp
#ifndef CALLABLE_TRAITS_PARAMETER_INDEX_HELPER_HPP #define CALLABLE_TRAITS_PARAMETER_INDEX_HELPER_HPP #include <tuple> CALLABLE_TRAITS_DETAIL_NAMESPACE_BEGIN template<std::size_t I, typename T, bool IgnoreThisPointer = false, bool AllowPlusOne = false, std::size_t Count = 0> struct parameter...
[ "badair@github.com" ]
badair@github.com
a64f4985579156d4a030d486509f5d123582a440
975aaead37462f90ca5af6edc378b7ab7c7dfa02
/BrofilerCore/CallstackCollector.h
76dcaf7e6cef83ab6b7ace70a23302fd85f018e6
[ "MIT" ]
permissive
galek/brofiler
98dd5228daf806cfd8b73be378dc0cdd3258fd46
b2cafd7d1473739ef3913ba8da6408d31c434158
refs/heads/master
2021-01-19T17:39:32.455180
2018-06-11T20:39:59
2018-06-11T20:39:59
40,742,968
0
0
null
2015-10-10T23:18:24
2015-08-15T01:48:17
C#
UTF-8
C++
false
false
950
h
#pragma once #include <MTTypes.h> #include "Brofiler.h" #include "MemoryPool.h" #include "Serialization.h" namespace Brofiler { ////////////////////////////////////////////////////////////////////////// class SymEngine; ////////////////////////////////////////////////////////////////////////// struct CallstackDes...
[ "nb_grif@mail.ru" ]
nb_grif@mail.ru
59c01c3d4c0db3a74f4e78fcb8a6e3582e377ccf
a04e0c3fcba8b85befa414d726ef2863b98cb013
/esercizi/2/esercizio8.3/Random.cc
9119191025427934e5ffcbbcd6d0565bebd258f3
[]
no_license
gfugante/Numerical-Treatment-of-Experimental-Data-TNDS-2018
df6e85c9d88ec804ee3af4f4dbc463becd193588
e11a488b53990ae5c14e110fecdefef3de186cf3
refs/heads/master
2023-07-13T16:02:16.433019
2021-08-25T14:21:01
2021-08-25T14:21:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
980
cc
#include <cmath> #include "Random.h" using namespace std; Random::Random(int seme){ _seme=seme; _a=1664525; _c=1013904223; _m=pow(2, 31); } void Random::setA(int a){ _a=a; } void Random::setC(int c){ _c=c; } void Random::setM(int m){ _m=m; } double Random::Rand(){ double n= (_a*_seme+_c)%_m; double d=n/(...
[ "gianlucafugante@MBP-di-Gianluca.fritz.box" ]
gianlucafugante@MBP-di-Gianluca.fritz.box
c3ae9c51d39ad227a0882b1a3a1d7dd723a5ae3f
8b34e827181766263ee0a825c3339bd44deee2ba
/SettlersOfCatanGame_CENG430/GameBoardTestCases.cpp
e502e082c2e65d199554632bdb0027c2611c062b
[]
no_license
ZacharyDownum/SettlersOfCatanAI
ba58bf930626d6279679f74e7f78d080e15c20de
2dca31ad615824721801fc150bc2f99f17d091de
refs/heads/master
2020-06-11T12:45:11.971765
2016-12-05T20:32:04
2016-12-05T20:32:04
75,663,757
0
0
null
null
null
null
UTF-8
C++
false
false
9,279
cpp
#include <map> #include <iostream> #include "GameBoardTestCases.h" #include "ResourceTile.h" #include "Node.h" #include "Edge.h" #include "Player.h" using std::map; using std::cout; using std::endl; //main function that returns zero if all test cases passed //will return the number of the test that failed (based on t...
[ "zdownum@gmail.com" ]
zdownum@gmail.com
8b2e4f8d1dd32dec79aa17eb15f61c6ac586bb50
7dc042a3f9068bc911c16f9173393660df704dab
/VC2010Samples/Attributes/General/AutoThread/AutoServer/AutoServer.cpp
ddcc0ca996df028605b4f7fcb748f25e6d4eb10d
[ "MIT" ]
permissive
pluciro/VCSamples
5639f953bfbe0ef598af601cc78d5a18012e1792
8453972390580ef1bbc8c09ec7a14d3c9111518e
refs/heads/master
2022-05-10T04:45:11.889276
2022-05-06T15:11:50
2022-05-06T15:11:50
280,199,366
0
0
NOASSERTION
2020-07-16T16:10:32
2020-07-16T16:10:32
null
UTF-8
C++
false
false
2,882
cpp
// This is a part of the Active Template Library. // Copyright (c) Microsoft Corporation. All rights reserved. // // This source code is only intended as a supplement to the // Active Template Library Reference and related // electronic documentation provided with the library. // See these sources for detailed inform...
[ "ericmitt@corp.microsoft.com" ]
ericmitt@corp.microsoft.com
e3f8ea545df305e81885357847a8db167401be07
02999553daed42d369b272c1c4193992496647cb
/TornadoEngine/Source/Modules/MMOEngine/src/Slave.cpp
df149b295e65841fdbf1862f3a6401bac7054809
[]
no_license
eshcrow/MMO-Framework
ee43144d58e8bf0e31310a21501d4ad7235b1a0d
0e691c0f21875186b440cd53fc33fb794c169176
refs/heads/master
2020-04-21T19:11:56.668434
2019-02-08T16:49:08
2019-02-08T16:49:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,224
cpp
/* Author: Gudakov Ramil Sergeevich a.k.a. Gauss Гудаков Рамиль Сергеевич Contacts: [ramil2085@mail.ru, ramil2085@gmail.com] See for more information License.h. */ #include "Slave.h" #include "Logger.h" #include "ControlScenario.h" #include "SessionManager.h" #include "Events.h" #include "ManagerContextClient_slave....
[ "ramil2085@mail.ru" ]
ramil2085@mail.ru
d8ead75b7ca37e2232f78a4c81dac04f7100b603
1d9df1156e49f768ed2633641075f4c307d24ad2
/third_party/WebKit/Source/core/exported/WebSecurityPolicy.cpp
3fe66b4a00ca62ba9b0d551e173bf9f80a0bc00d
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft" ]
permissive
GSIL-Monitor/platform.framework.web.chromium-efl
8056d94301c67a8524f6106482087fd683c889ce
e156100b0c5cfc84c19de612dbdb0987cddf8867
refs/heads/master
2022-10-26T00:23:44.061873
2018-10-30T03:41:51
2018-10-30T03:41:51
161,171,104
0
1
BSD-3-Clause
2022-10-20T23:50:20
2018-12-10T12:24:06
C++
UTF-8
C++
false
false
4,773
cpp
/* * Copyright (C) 2009 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditio...
[ "RetZero@desktop" ]
RetZero@desktop
685a3544cf106b832c253c5057ef3d755613922d
048ab5348b0c7240606463c99acb73e8f68e3c41
/QT_Open/Login/mainwindow.cpp
e85fd1f622a4ecf2016d4f6b98a0542f1da3fc1f
[]
no_license
Le-Van-Long2k/AppQuanLiBanHangTapHoa
e8b284aa4fdf393e87f47c5bca8caf1bc873dee5
6bb49500f7de0094e756dc438e57c955b05fe2bf
refs/heads/master
2023-01-16T03:36:17.079731
2020-11-22T14:16:51
2020-11-22T14:16:51
313,828,317
0
0
null
null
null
null
UTF-8
C++
false
false
170
cpp
#include "DangNhap.h" #include <QApplication> int main(int argc, char *argv[]) { QApplication a(argc, argv); MainWindow w; w.show(); return a.exec(); }
[ "longlevan2k@gmail.com" ]
longlevan2k@gmail.com