blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
f14304104a7ba32703bea06a735cab0a379a516f
f3c745b8df5b2d043c9ac7cfb0ba4667e2c9abe7
/source/surface/sphere.cpp
f28719b92cd95adc987151f99b00bf8272d914e7
[ "MIT" ]
permissive
linusmossberg/monte-carlo-ray-tracer
8cc9c9b0801ae7a25865874c3acd8ef26233e368
ab3ab45dab8a2e9a36552ffb554c774cb07d6342
refs/heads/master
2022-05-31T07:20:19.361235
2022-03-11T12:42:37
2022-03-11T12:42:37
207,326,531
298
30
null
null
null
null
UTF-8
C++
false
false
1,522
cpp
#include "surface.hpp" #include "../common/constexpr-math.hpp" #include "../common/constants.hpp" Surface::Sphere::Sphere(double radius, std::shared_ptr<Material> material) : Base(material), origin(0.0), radius(radius) { computeArea(); computeBoundingBox(); } bool Surface::Sphere::intersect(const Ray& ra...
[ "linmo400@student.liu.se" ]
linmo400@student.liu.se
710a8dfe109b96134a1e81a0afc6b19b2067ed95
37d6909e8d5d50c9672064cbf9e3b921fab94741
/백준/1439번 뒤집기/1439.cpp
45c846d1c1ef691aeb081121380be91a9d2b32c6
[]
no_license
lee-jisung/Algorithm-study
97e795c6cb47d1f4f716719f490031479d0578ca
d42470cd24b3984dc15992089d34dbe2ae6bb70d
refs/heads/master
2021-06-28T05:49:12.417367
2021-04-01T13:53:43
2021-04-01T13:53:43
225,784,579
3
0
null
null
null
null
UTF-8
C++
false
false
583
cpp
#include <iostream> #include <string> // 맨 앞 & 뒤 숫자가 같으면 다른것들만 바꿔주기 // 다르면 뒤 숫자와 다른 수를 앞에서부터 뒤집기 using namespace std; int main(void) { string str; cin >> str; int cnt = 0; if (str[0] == str[str.length() - 1]) { for (int i = 1; i < str.length(); i++) { if (str[i] != str[i - 1] && str[i] != str[0]) cnt++; ...
[ "noreply@github.com" ]
lee-jisung.noreply@github.com
fb72ac647ca38d98e67d3e770e2aad69182f8843
bc825cbcfc893e83940c861cc225c54084ed39c8
/mtcore/interfaces.h
88f9558c6e2b1484dbb8ce0ec1c942151c473e5e
[]
no_license
fjarri-attic/mtcore
df6239c248bf4b5bb35b19aa90815406ef55076b
1fec6ba84c25ccffcc24ddd068e83eb3dfe85dfd
refs/heads/master
2021-01-02T22:51:52.146241
2009-02-26T22:24:23
2009-02-26T22:24:23
193,478
1
0
null
null
null
null
UTF-8
C++
false
false
146
h
#pragma once namespace Kernel { class ITask { public: virtual ~ITask() {} virtual void Init() {} virtual void Terminate() {} }; }
[ "Administrator@.(none)" ]
Administrator@.(none)
6d81931b46a50ec12eaecb596022fed9a87451b6
485e5122e4b0d7465a1c56dc76861a78bc9c7d09
/posaction.cpp
7f5afbbeaa26a2bce1e01288adbe31c1a0103f67
[]
no_license
MAWINA-ant/store
a602799570c4adafc0a8d319973f9562cad670e4
d20cf67f91d7c767155c408dbb11797ea6800546
refs/heads/master
2020-03-06T23:34:06.015467
2018-03-30T12:20:06
2018-03-30T12:20:06
127,135,308
0
0
null
null
null
null
UTF-8
C++
false
false
252
cpp
#include "posaction.h" namespace STORE { PosAction::PosAction(QObject *parent) : QAction(parent) { connect(this, SIGNAL(triggered(bool)), this, SLOT(was_triggered())); } void PosAction::was_triggered() { emit editItem(I, pWidget); } }
[ "chaika1201@gmail.com" ]
chaika1201@gmail.com
2e6ba7daf6b7c4e9de39d6dbeb82e81c5aa47a91
a5376368cd8e1d39fa1e8c64077e7e7b966ca8c9
/Memory with winApi/main.cpp
d51c4f35ec556c030158526976442527593e7453
[]
no_license
Kion-Smith/winAPI-Projects
fbbc751e68c60e684d9d34e21d356c4690d490f3
e234ec06fd1cae401d30f3bfce2b4d3e4cd7d2b7
refs/heads/master
2020-03-10T16:45:27.681625
2018-06-30T22:50:13
2018-06-30T22:50:13
129,482,064
0
0
null
null
null
null
UTF-8
C++
false
false
1,269
cpp
#include <iostream> #include <windows.h> #include <tlhelp32.h> bool ProcessRunning( const char*); int main() { char* userInput = new char[256]; std::cout << "Enter a name of a process and I'll tell you if it is on or not" << std::endl; std::cin >> userInput; if(ProcessRunning(userInput)) ...
[ "noreply@github.com" ]
Kion-Smith.noreply@github.com
8a5da6dcb242e3463a2f417979b343b0fac65e90
346c17a1b3feba55e3c8a0513ae97a4282399c05
/applis/uti_image/test_arg_main.cpp
54bac613f37bdee29c7309521f265fca5e22b3b7
[ "LicenseRef-scancode-cecill-b-en" ]
permissive
micmacIGN/micmac
af4ab545c3e1d9c04b4c83ac7e926a3ff7707df6
6e5721ddc65cb9b480e53b5914e2e2391d5ae722
refs/heads/master
2023-09-01T15:06:30.805394
2023-07-25T09:18:43
2023-08-30T11:35:30
74,707,998
603
156
NOASSERTION
2023-06-19T12:53:13
2016-11-24T22:09:54
C++
UTF-8
C++
false
false
3,738
cpp
/*Header-MicMac-eLiSe-25/06/2007 MicMac : Multi Image Correspondances par Methodes Automatiques de Correlation eLiSe : ELements of an Image Software Environnement www.micmac.ign.fr Copyright : Institut Geographique National Author : Marc Pierrot Deseilligny Contributors : Gregoire Maille...
[ "deseilligny@users.noreply.github.com" ]
deseilligny@users.noreply.github.com
1a0fa1742d388cfb0338224a1e50050ca1221815
88ae8695987ada722184307301e221e1ba3cc2fa
/v8/src/inspector/v8-inspector-impl.cc
60ad12aece057b4ff8eb12f99b830a4a44e12cc0
[ "BSD-3-Clause", "SunPro", "Apache-2.0" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C++
false
false
21,487
cc
/* * Copyright (c) 2010-2011 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 con...
[ "jengelh@inai.de" ]
jengelh@inai.de
8d86436b085312de8b149fb976f13cf975c0932b
610c78a7b447ec35d0330c282cf832ca53255e77
/566. Reshape the Matrix/matrixReshape.cpp
1b5ad31424fc65938d9adb061aeea955227f17b2
[]
no_license
kangzero/leetcode
d7087fe0ea1d21b0bb0f2200762b46bf2221781f
ae0c6ab73a24b01eb662961e2edd1a10aa358c68
refs/heads/master
2020-04-25T13:29:10.992474
2019-06-13T06:03:33
2019-06-13T06:03:33
172,810,857
0
0
null
null
null
null
UTF-8
C++
false
false
655
cpp
#define ONE_LOOP 1 #define TWO_LOOP 0 class Solution { public: vector<vector<int>> matrixReshape(vector<vector<int>>& nums, int r, int c) { int m = nums.size(); int n = nums[0].size(); if ((m * n) != (r * c)) return nums; vector<vector<int>> ret(r, vector<int>(c)); #if ONE_...
[ "noreply@github.com" ]
kangzero.noreply@github.com
3225fcfe12ce73d383effe2522f04946e6f63a59
550e81b9ac39f516d0fa385e7a86df7ee4725972
/university/10011-CompArchitecture/atari-emulator-project/main.cpp
a91f5f7368de4bba88df16642dc506b34f5fcfc5
[ "LicenseRef-scancode-public-domain", "Unlicense" ]
permissive
frainfreeze/studying
6fc02e1981a2bbdd7b34739e6f495aa882e905a6
492e0cb0afa67ded7c5827c90d9ac85d0fcabde3
refs/heads/master
2023-04-06T10:06:07.649267
2023-03-24T11:56:44
2023-03-24T11:56:44
107,185,269
0
2
MIT
2018-03-22T22:04:11
2017-10-16T21:31:27
C++
UTF-8
C++
false
false
11,249
cpp
#include<SFML/Graphics.hpp> #include<SFML/Audio.hpp> #include<SFML/Window.hpp> #include<iostream> #include<functional> //for std::bind #include<math.h> //Astar libraries #include<float.h> #include<vector> #include<set> #include<string.h> #include<string> #include<sstream> using namespace std; using names...
[ "kucar.tomislav@gmail.com" ]
kucar.tomislav@gmail.com
a577017acf498843dd6b3ab94bd21b3150267722
f44986e40bbb554cc915797bd4ea5fc6e32d1015
/vowel.cpp
4f1c0fb9e170a01e322e431a4c79a4f6445f3d65
[]
no_license
sumitkaushik1005/coding
934640a616e2e1ecca1a23a211bebd1fa2046158
b057270cfa91634ce828155a15a2b755d32f18ff
refs/heads/master
2020-09-01T14:23:04.055207
2020-04-29T15:12:08
2020-04-29T15:12:08
218,978,681
0
0
null
2020-04-29T15:12:09
2019-11-01T12:11:04
C++
UTF-8
C++
false
false
381
cpp
#include<bits/stdc++.h> using namespace std; int main(){ int t; cin>>t; while(t--){ int n; cin>>n; set<char> st; for(int i=0;i<n;i++){ char c; cin>>c; st.insert(c); } string s; getline(cin,s); getline(cin,s); int count=0; for(int i=0;i<s.length();i++){ char x=s[i]; if(st.find(x)...
[ "sumitkaushik1005@gmail.com" ]
sumitkaushik1005@gmail.com
9f2227e0a44a62dc03959a24f3d06111e149e0fb
04b1803adb6653ecb7cb827c4f4aa616afacf629
/third_party/blink/renderer/core/css/cssom/css_unparsed_value.cc
8d7badb9cac60bbe3591fe2e5fabbcda6302983c
[ "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
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
5,238
cc
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/core/css/cssom/css_unparsed_value.h" #include "third_party/blink/renderer/core/css/css_custom_property_declaration.h...
[ "sunny.nam@samsung.com" ]
sunny.nam@samsung.com
4e86431753e96de4a975e23918edba1429abb520
eaf16345fb8080a025dca33135b9529e1cfe9fe5
/src/qt/test/test_main.cpp
78b4b87d904c822c95a909f6280cd7d428831eea
[ "MIT" ]
permissive
CryptoLover705/unelmacoin-main
08d61b06a109c2ea030562d3cb7d1d602e4a4b25
76a5b5c65218c27e772292bb40dc7b84bc7e351f
refs/heads/main
2023-07-09T01:27:03.302221
2021-08-13T14:18:24
2021-08-13T14:18:24
383,394,304
0
0
MIT
2021-07-06T08:21:52
2021-07-06T08:21:51
null
UTF-8
C++
false
false
1,250
cpp
// Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The unelmacoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #in...
[ "sk@unelma.ee" ]
sk@unelma.ee
727ed8334ec1054ea28868594650dc4b78f3d2ea
88ae8695987ada722184307301e221e1ba3cc2fa
/components/autofill/core/browser/payments/iban_save_manager.h
f2e5a17084ca1bebd1aa7964defbd377b1d23b6f
[ "BSD-3-Clause" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C++
false
false
3,448
h
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_IBAN_SAVE_MANAGER_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_IBAN_SAVE_MANAGER_H_ #include <string> #include "base...
[ "jengelh@inai.de" ]
jengelh@inai.de
12e0de340bc4aee25883262126fcce2ed3d71094
368dac6c28dc44bd28288bce651c32f1f640dc91
/virtual/client/include/xercesc/dom/DOMRange.hpp
06e219c72086dcce69bd9277a816fc96f800ce77
[]
no_license
Programming-Systems-Lab/archived-memento
8fbaa9387329d1d11ae4e8c1c20a92aeadeb86e0
084c56a679585c60b5fc418cd69b98c00cf2c81e
refs/heads/master
2020-12-02T12:21:04.667537
2003-11-04T17:08:35
2003-11-04T17:08:35
67,139,953
0
0
null
null
null
null
UTF-8
C++
false
false
23,181
hpp
#ifndef DOMRange_HEADER_GUARD_ #define DOMRange_HEADER_GUARD_ /* * The Apache Software License, Version 1.1 * * Copyright (c) 2001-2002 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the f...
[ "mg689" ]
mg689
7ca638edb3bca2a02765dcecad2d4dc651bdb2dc
fdb536133ef6e6c8948666888bd3b4aa114d3b1e
/Обучение/Глава 4 Векторы/console application c++.cpp
ca87a0a4311fb6f0aee2e4907c42bace4f3e2531
[]
no_license
VibeProgramm/c-
cfd3044b62f486808b469f62f7c4011fa88bbfea
79234f62616ce086ac39658c8118e60eea4d62f5
refs/heads/master
2021-09-15T22:12:03.170993
2018-06-11T15:38:51
2018-06-11T15:38:51
136,946,547
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
842
cpp
//Автор: Мурзин Алексей #include <std_lib_facilities.h> int main() { setlocale(LC_ALL, "Russian"); // простой словарь: список упорядоченных слов cout << "Словарь с упорядочением слов по алфавиту" << endl; vector <string> words; string temp; while (cin >> temp) // считываем слова, отделенные разделителями ...
[ "aleksey16.11.2000@gmail.com" ]
aleksey16.11.2000@gmail.com
a354ae6c729b664c6521516a1828c4bcb5e85fc5
9b00eea8a87ee94ca2b44fc6359d03fc1c622435
/include/itkTileMergeImageFilter.h
57b59f079b7d3fe8228c009679149f282cf2d068
[ "Apache-2.0" ]
permissive
joeykleingers/ITKMontage
233c1175b1e48a6d13764c6fb9916103fa636185
4df8755f8dc5720971121e7237d296f4529072f9
refs/heads/master
2020-04-17T05:19:17.779317
2019-01-17T19:46:15
2019-01-17T20:24:47
166,273,398
0
0
null
2019-01-17T18:13:22
2019-01-17T18:13:22
null
UTF-8
C++
false
false
9,915
h
/*========================================================================= * * Copyright Insight Software Consortium * * 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...
[ "dzenan.zukic@kitware.com" ]
dzenan.zukic@kitware.com
4baa622bbd45c9d47942637aa919a957e9997ce8
38382b647abeb449c9c6b9f14a05577e607bba2f
/src/PID.cpp
02acb8d388ebdcc2b31a5ad20cf669a4996ef332
[ "MIT" ]
permissive
vijaykrishnay/Udacity_PID_Controller
284890cb9a5afca92724cbb39dcca665bf8ff036
e533eee5fcbb01cc4e000709dd32bb478471050d
refs/heads/master
2022-06-21T07:18:38.619481
2020-05-16T05:18:03
2020-05-16T05:18:03
263,511,693
0
0
null
null
null
null
UTF-8
C++
false
false
645
cpp
#include "PID.h" #include <math.h> PID::PID() {} PID::~PID() {} void PID::Init(double Kp_, double Ki_, double Kd_) { // Initialize PID coefficients (and errors, if needed) p_error = 0.; i_error = 0.; d_error = 0.; Kp = Kp_; Ki = Ki_; Kd = Kd_; } void PID::UpdateError(double cte) { // Update PID erro...
[ "odinson@Vijays-MacBook-Pro.local" ]
odinson@Vijays-MacBook-Pro.local
69f964e73285cefe0d461b8ef6a6adff355b007c
f62fb6eaafdfebe0453afe9a6a002181b396df3a
/CS325-Computer-Architecture/Labs/Lab08/Solutions/lab08S.cpp
c12fc2b1aecea604967df5d0df2ce933a6da348a
[]
no_license
ElvisRodriguez/Courses
5a74e56c47dd729eae8463b21c75d7f801ddb2da
93b5a1e4e2f821d6537fbd31c065ca12d0daab40
refs/heads/master
2021-08-19T11:20:32.105208
2021-06-16T17:23:55
2021-06-16T17:23:55
201,683,974
1
0
null
null
null
null
UTF-8
C++
false
false
709
cpp
#include <iostream> #include <cstdlib> #include <ctime> #include <string> std::string ToString(bool a[]) { std::string r = ""; for(int i = 0;i < 32;i += 1) { r += (a[i])?("1"):("0"); } return r; } void PopulateWord(bool a[]) { for(int i = 0;i < 32;i += 1) { a[i] = (rand() % 2 == 0); } } void GE(bool a[]...
[ "elvisrodriguez1992@gmail.com" ]
elvisrodriguez1992@gmail.com
1f257896ed542433e5b1e8652a8bf11c6a14cc79
0054d8b503ddca635a9c1a5121d76e1b182d573f
/WinUI/src/ui/lineedit.h
4eb19672c61286b30eff5f45f6d1d14a23e5e569
[]
no_license
Antonov548/WinUI
9c8d314034fbd304f20c2d2c0132148696654c3e
18c258264b4ec38cc93557395291f59914eac850
refs/heads/master
2020-04-29T00:51:23.206929
2019-08-16T10:54:31
2019-08-16T10:54:31
175,710,333
0
1
null
null
null
null
UTF-8
C++
false
false
258
h
#pragma once #include <winui_export.h> #include "textcontrol.h" namespace WinUI { class WINUILIB_EXPORT LineEdit : public TextControl { public: LineEdit(Widget* parent = nullptr); ~LineEdit(); private: static WidgetStyle line_edit_style; }; }
[ "antonov5551998@gmail.com" ]
antonov5551998@gmail.com
45894b6a0ed14d4e04660ebd7d50c40f2efe7d45
94e1db4d25f35c3e7747ef20b55a79d76a4d352a
/Gaussian.h
2172927659ca2e2284e46c8e840a2d08ca5da4b7
[]
no_license
gogoalexy/KalmanFilters
df6c818133d07221506e47756ddfcb16d6af685e
78f50908a3221582ef5ffb1e2f728f682ede6e50
refs/heads/master
2021-05-21T03:39:39.083177
2020-04-08T13:57:35
2020-04-08T13:57:35
252,520,089
0
0
null
null
null
null
UTF-8
C++
false
false
792
h
#ifndef GAUSSIAN_H #define GAUSSIAN_H #include <Arduino.h> #include <math.h> class Gaussian : public Printable { public: Gaussian(float Mean, float Variance); float mean; float variance; Gaussian& operator=(const Gaussian& b); Gaussian operator+(const Gaussian& b); Gaussian operator-(cons...
[ "cktfg18nthu@gapp.nthu.edu.tw" ]
cktfg18nthu@gapp.nthu.edu.tw
f80fc9bb595090935f68c526eeb31da8d6291a50
14c3da01d3ab56fd51184e2a3750446f72772e1a
/Code_Server/Game/common/util/Ntimer.h
a0d209b1c202d9bdd4f62f665956a46665e4a6b4
[]
no_license
JCGit/Ggame
d95ca495ffff6d89e44456324a9ce382335360ef
c83c09f9f908b961e8102aae31c6d54b34eb0ee1
refs/heads/master
2021-01-17T05:30:23.975793
2014-12-04T14:38:52
2014-12-04T14:38:52
27,226,705
0
1
null
null
null
null
UHC
C++
false
false
3,389
h
#ifndef N_TIMER_H #define N_TIMER_H //------------------------------------------------------------------------------ /** @brief 타이머 @author - 지완 @since - 2005.6.30 @remarks - 작업 중! */ class nTimer { public: nTimer(); ~nTimer(); public: void Start(cons...
[ "1027718562@qq.com" ]
1027718562@qq.com
652f0cd348d8fff50378e68d2d45f481eae30940
7d461d2c3e3a53505c1ebf6e13fcddb67ff7a10f
/src/core/dns/nresolver.h
19dfab553b1383bc71441afb9c08087309bfa071
[ "Apache-2.0" ]
permissive
elindsey/hurl
095f2956edce50c0a08b0533b710c004c9f24927
ad45030f3d1db51fabdb77608b255ca6c7f7a8a7
refs/heads/master
2020-12-22T19:53:55.498854
2020-01-31T01:47:20
2020-01-31T01:47:20
236,914,046
0
0
Apache-2.0
2020-01-29T15:11:18
2020-01-29T05:56:31
null
UTF-8
C++
false
false
9,220
h
//: ---------------------------------------------------------------------------- //: Copyright (C) 2016 Verizon. All Rights Reserved. //: All Rights Reserved //: //: \file: nresolver.h //: \details: TODO //: \author: Reed P. Morrison //: \date: 11/20/2015 //: //: Licensed under the Apache License, Version 2.0...
[ "reed.morrison@gmail.com" ]
reed.morrison@gmail.com
ae6db56515b787c4595dada43da6847a0a290f56
f822e186fba019562569857c8601779a3a468932
/src/cpp/lib/tw/functional/utils.hpp
a174fa30575bbc1219d04bfd456a6c79bef996d9
[]
no_license
ssh352/code_repo
cd418db35d80892c0a56c5292f7c5eba25295641
15848a274939696f620696093fbcc42dc3a46b79
refs/heads/master
2023-03-19T14:08:31.777110
2017-05-10T18:37:26
2017-05-10T18:37:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
979
hpp
#pragma once #include <tw/log/defs.h> namespace tw { namespace functional { template <typename THeader> class printHelper { public: printHelper(const THeader& header) { LOGGER_INFO << header << "\n"; } template <typename TItem> void operator()(const TItem& item) { LOGGER_INFO << item...
[ "vvayngart@yahoo.com" ]
vvayngart@yahoo.com
518eb3f8bf4196e01e4f95a73b910ee8e6ca22d8
605f00fae9a0945fb80854b3caaf7b8c7f7e8102
/course/struct.cpp
24ae378db080476c4fc7a42dd09a43a13b1caacf
[]
no_license
woskar/cpp-projects
34722c7d4d056e951934f77a64cc76eafdf2378e
b56a57eb295a1bd129030e823e4f08c76b154b98
refs/heads/master
2021-01-19T00:19:23.579896
2017-05-30T22:15:47
2017-05-30T22:15:47
87,154,407
0
1
null
null
null
null
UTF-8
C++
false
false
645
cpp
#include <iostream> // use preprocessor directive to prevent padding, see in struct #pragma pack(push, 1) //"allign Data on single byte boundaries" struct Person { // C++ will make this struct efficient to work with, // it has size 64 (a power of 2) instead of the actual 62 // so there is padding done. ...
[ "oskar.weinfurtner@icloud.com" ]
oskar.weinfurtner@icloud.com
0e54196f94967f56d88e93810c6862136d9669bc
0f5f1c7cb59e163303bbfa2ec2f7454770bf15c4
/0-1背包问题.cpp
0b319deb1835ee2b2a2432bf0f2fa837c56a2e5a
[]
no_license
cy3432412/algorithm-problem
f28ff7227a9c51916cbbe40b08cd431dfb5ee1c0
1b356500fba7493e29c62471eb0a23f1e955446f
refs/heads/master
2020-03-19T11:43:14.632676
2018-06-07T12:08:53
2018-06-07T12:08:53
null
0
0
null
null
null
null
GB18030
C++
false
false
1,106
cpp
/* 2018.5.28 01背包问题 */ #include <stdio.h> #include <stdlib.h> int max(int a, int b); int main(void) { int n; int W; scanf("%d", &n); scanf("%d", &W); //动态生成重量数组w和价值数组v int* w = (int*)malloc(n * sizeof(int)); int* v = (int*)malloc(n * sizeof(int)); for (int i = 0; i < n; ++i) { scanf("%d %d", &w[i], &v[i]); ...
[ "591992442@qq.com" ]
591992442@qq.com
b2b8e05b5c133a93dfe575275a83e8f71ed2fbff
04e1ec839c52eb835d1b8a9ccfeb119849f8e83c
/Project7_HighWay Driving/src/main.cpp
36a117f25402df2a1a8348f9902d58e664184a61
[]
no_license
Leey10/Udacity-Self-driving-Car-Engineer-Nanodegree
7c87bd979e3f43e143f111dc2e93ac167656d505
bed38fceeed69ff6f90a03869d24cfad27ce7546
refs/heads/master
2020-05-24T13:51:31.060754
2019-12-18T18:49:37
2019-12-18T18:49:37
187,298,413
2
0
null
null
null
null
UTF-8
C++
false
false
9,751
cpp
#include <fstream> #include <math.h> #include <uWS/uWS.h> #include <chrono> #include <iostream> #include <thread> #include <vector> #include <vector> #include "Eigen-3.3/Eigen/Core" #include "Eigen-3.3/Eigen/QR" #include "json.hpp" #include "PathTools.h" #include "helpers.h" #include "Vehicle.h" #include "JMT.h"...
[ "noreply@github.com" ]
Leey10.noreply@github.com
90cfdab4b04807337f608130ee4f65041b589972
eb583a2c1b5ae7f9276e619225eff7b73bcbbccd
/mainwindow.cpp
f65ed1c4d41cf6a7c641f89b27e5c0d2abdb1c4d
[]
no_license
bobrovskij-vadim/sushi_counter
cec676e02fe030485911c3f11e80d19e1016777c
37419ac3f8f90bb76bd9d2e4062ea6514c79a345
refs/heads/main
2023-02-20T16:07:03.534989
2021-01-19T15:35:16
2021-01-19T15:35:16
331,018,133
0
0
null
null
null
null
UTF-8
C++
false
false
11,913
cpp
#include "mainwindow.h" QVector <Position> position_list; QFile temp_save("temp_file.csv"); MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) { setWindowTitle("СУШИ"); //--------------Текстовые лайбы------------------ { add_label = new QLabel("ДОБАВИТЬ"); add_label_number = new QLabe...
[ "bobrovskij.vadim@gmail.com" ]
bobrovskij.vadim@gmail.com
8b0eef977158662206fd1658d780cef9429fa0e8
2bc222c4afd9db25917d5469db0ff5da0a076797
/test/t_cgi_address.cxx
bc373b8d3057084e3c23118bbd118355a6b65e22
[]
permissive
CM4all/beng-proxy
27fd1a1908810cb10584d8ead388fbdf21f15ba9
4b870c9f81d5719fd5b0007c2094c1d5dd94a9c4
refs/heads/master
2023-08-31T18:43:31.463121
2023-08-30T14:03:31
2023-08-30T14:03:31
96,917,990
43
12
BSD-2-Clause
2023-09-11T10:00:43
2017-07-11T17:13:52
C++
UTF-8
C++
false
false
9,172
cxx
// SPDX-License-Identifier: BSD-2-Clause // Copyright CM4all GmbH // author: Max Kellermann <mk@cm4all.com> #include "cgi/Address.hxx" #include "AllocatorPtr.hxx" #include "TestPool.hxx" #include <string_view> #include <gtest/gtest.h> using std::string_view_literals::operator""sv; [[gnu::pure]] static constexpr au...
[ "mk@cm4all.com" ]
mk@cm4all.com
f52817c05f4aecad0651352defee98da6bc02272
f7d896e5dcdf16338ea2c17f670b2c8129a6069e
/msad2022_pri/NumCpp/Functions/conj.hpp
9434efcc520516a53898a8e511a0c71ab7176ab9
[]
no_license
wataniguchi/EV3RT
4268b3817ac0037b5ccf52ceddd08f7b9320b9e6
330ca40a40b67043ffa77184f833ff1d9b54c306
refs/heads/master
2023-08-31T00:59:04.391244
2023-08-07T10:20:58
2023-08-07T10:20:58
177,363,579
0
10
null
2023-08-07T10:20:59
2019-03-24T02:50:03
C++
UTF-8
C++
false
false
2,764
hpp
/// @file /// @author David Pilger <dpilger26@gmail.com> /// [GitHub Repository](https://github.com/dpilger26/NumCpp) /// /// License /// Copyright 2018-2022 David Pilger /// /// Permission is hereby granted, free of charge, to any person obtaining a copy of this /// software and associated documentation files(the "Sof...
[ "wataru@taniguchifamily.com" ]
wataru@taniguchifamily.com
c53a79c270c3efd74bceaebf160cc6768cdf38a8
fbbc663c607c9687452fa3192b02933b9eb3656d
/tags/libopenmpt-0.2.6611-beta18/soundlib/XMTools.cpp
521c35c4df7990b4ca5abd3f858d0c903d2ad04f
[ "BSD-3-Clause" ]
permissive
svn2github/OpenMPT
594837f3adcb28ba92a324e51c6172a8c1e8ea9c
a2943f028d334a8751b9f16b0512a5e0b905596a
refs/heads/master
2021-07-10T05:07:18.298407
2019-01-19T10:27:21
2019-01-19T10:27:21
106,434,952
2
1
null
null
null
null
UTF-8
C++
false
false
15,180
cpp
/* * XMTools.cpp * ----------- * Purpose: Definition of XM file structures and helper functions * Notes : (currently none) * Authors: OpenMPT Devs * The OpenMPT source code is released under the BSD license. Read LICENSE for more details. */ #include "stdafx.h" #include "Loaders.h" #include "XMTools.h" #inclu...
[ "manx@56274372-70c3-4bfc-bfc3-4c3a0b034d27" ]
manx@56274372-70c3-4bfc-bfc3-4c3a0b034d27
378831df790f7d1b57ffe73d3cdfe6c1746a48fe
29c9afc7c06719571e961036453d74b300ae47fc
/arduino/lab4_esp8266_relay_usbled/lab4_esp8266_relay_usbled.ino
56e46079173b7848294abf85cf76a9d48361a224
[]
no_license
J-Kyu/iot-NodeMCU_RasberryPI_Study
13e8b3495793e217f01055bbb098f5cf7abbd577
b82034ac50500fe22d51dc5e30767c1c5b6fee21
refs/heads/main
2023-01-22T17:01:12.015783
2020-12-04T09:41:24
2020-12-04T09:41:24
302,235,373
0
0
null
null
null
null
UTF-8
C++
false
false
1,048
ino
#define D0 16 #define D1 5 #define LIGHT_PIN A0 #define LED_PIN D0 #define RELAY1_PIN D1 #define RELAY_OFF HIGH // HIGH 신호이면 릴레이 동작하지 않음 #define RELAY_ON LOW // LOW 신호이면 릴레이 동작함 int lightValue; int relay_state = RELAY_OFF; // 릴레이 OFF void setup() { Serial.begin(9600); delay(10); pinMode(LED_PIN, OUTPUT); // Initi...
[ "wjstkdrb91@naver.com" ]
wjstkdrb91@naver.com
9959d02d06fb3728a7f219fca1a48fdeae23a264
8e6f833bc99f77d3edfdab1504fb1a2eb9668c96
/firmware/libraries/potentiostat/ps_periodic_test.h
424af6d1ed7372a9afaf2e24bd0eea1c3fab1cfa
[ "CC-BY-4.0", "MIT" ]
permissive
selvanair/potentiometer
3bf2e140523dd3e8908d5f6ed0735ef279c5a443
6a2bb8433e877ef663973ea9fe1e3798029e840a
refs/heads/master
2022-12-10T12:47:44.353041
2020-03-19T18:30:19
2020-03-19T18:30:35
245,522,478
0
0
CC-BY-4.0
2022-12-07T04:56:50
2020-03-06T21:47:24
C++
UTF-8
C++
false
false
2,665
h
#ifndef PS_PERIODIC_TEST_H #define PS_PERIODIC_TEST_H #include "ps_base_test.h" #include "ps_constants.h" namespace ps { class PeriodicTest : public BaseTest { public: static constexpr float DefaultAmplitude = 1.0; static constexpr float DefaultOffset = 0.0; sta...
[ "will@iorodeo.com" ]
will@iorodeo.com
fad8889b3282d1b68b92ada15c6710b76b46fe7d
f7fded02bc6e9f29d504384708144489a0105cd4
/src/primitives/transaction.cpp
9098cbd6433e46b4dc8d227b6ee0cb35041beaa0
[ "MIT" ]
permissive
OICcoins/K9S
575346e03b625fe48f876700820b15024852f54e
c1a3e9b2ea5a7a602e0cb685cc8caeae0c74c28f
refs/heads/master
2023-06-09T03:48:10.082646
2021-06-23T04:10:47
2021-06-23T04:10:47
378,881,369
0
0
null
null
null
null
UTF-8
C++
false
false
8,226
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2015-2020 The PIVX developers // Copyright (c) 2021 The NEUTRON Core Developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-lic...
[ "30714489+OICcoins@users.noreply.github.com" ]
30714489+OICcoins@users.noreply.github.com
5a9b548d873e6c64047af24ffda8e6bf8a4ef5b9
73083255c108545866ebcbce571c5d332e46aaa3
/software/mibotGPIOInterface/mibGPIOInterface/inc/mibMCP3008.h
3443dd0e093a4864d6dfed562e2f17887ecca78f
[]
no_license
ddomurad/mibot
822569fd8ee69eb54dd2ce24ba8f2a3284ff6bf4
70ac156e1169c6176f4a92528612dbf3a14c9951
refs/heads/master
2021-01-10T11:54:54.357633
2016-09-04T17:36:21
2016-09-04T17:36:21
52,814,468
0
0
null
null
null
null
UTF-8
C++
false
false
316
h
#ifndef MCP3008_H #define MCP3008_H #include <QtCore> #include "mibGPIOInterfaceGlobal.h" namespace mibot { class MCP3008 { public: MCP3008(); ~MCP3008(); bool Init(int pinBase, int channel); int ReadChannel(int channel); private: int spi_channel; int pin_base; }; } #endif // MCP3008_H
[ "ddomurad@gmail.com" ]
ddomurad@gmail.com
130d93bb3e115231ad2adad0a5f951f0bd8fc896
91cde33d2e5af53d38e3b317edc30418482b45f7
/bst_calc.cpp
63f848572f5a6ba566118d71c9e857d30892fd83
[]
no_license
phiter07/HOMEWORK-8
495a14efc59b0bd2c6a2b9f19cc00fd14db75d6c
c2c29c3b580553e7fb9dc23896c784c92fa7eaf4
refs/heads/master
2023-01-22T12:33:19.128945
2020-12-02T05:44:56
2020-12-02T05:44:56
316,380,062
0
0
null
null
null
null
UTF-8
C++
false
false
1,112
cpp
#include <iostream> #include <sstream> using namespace std; struct Node { int data; Node* left; Node* right; }; Node* CreateNode(int data) { Node* new_node = new Node(); new_node->data = data; new_node->left = NULL; new_node->right = NULL; return new_node; } Node* addNode(Node* root, int data) {...
[ "ppn4@txstate.edu" ]
ppn4@txstate.edu
097318e4a078497c72e89ff4739efc7e7ca0c4c8
c69dbeb5e9aa4842acb89150eb9febc297ca42ca
/src/Controls.h
724185545c30beb0f552adb6cdabe160ea4fa97c
[]
no_license
surik/watery
85d71b03a846c0930549840576c94c7e3fb05b15
f7808d5f42eb15caba04f3688f37921d2b89620c
refs/heads/master
2021-01-13T02:32:17.503221
2013-03-27T14:14:10
2013-03-27T14:14:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,436
h
#ifndef CONTROLS_H_ #define CONTROLS_H_ 1 #include "deps.h" class App; class Controls { private: App *parent; bool aKeyPressed; bool bKeyPressed; bool xKeyPressed; bool yKeyPressed; bool lsKeyPressed; bool rsKeyPressed; bool upKeyPressed; bo...
[ "surikx@gmail.com" ]
surikx@gmail.com
5d2296ac98497d6f88e78ee9104529dff41c1523
bae9fe9b4248cd90c154365e49def9d5b014c966
/DFA/MainHelper.h
f448becebc5cf30939b5e49b021bdaca086d377c
[]
no_license
grammarhoard/2014-rosu-inference-cpp
865a7ff2dce985a6b95f98b1bf52ea70112a3b11
26c049505e5639e924317295ca90fa88e67ad7ae
refs/heads/master
2021-01-10T19:44:09.285407
2014-06-03T08:06:25
2014-06-03T08:06:25
41,694,893
0
0
null
null
null
null
UTF-8
C++
false
false
814
h
#include "TrainingSet.h" #include "Apta.h" #include "AptaVisualization.h" #include "Exbar.h" #include "Edsm.h" #include "Dfa.h" #include "easylogging++.h" #pragma once class MainHelper { public: MainHelper(); ~MainHelper(); void populateTrainingSet1(TrainingSet & trainingSet); void pop...
[ "devnull@localhost" ]
devnull@localhost
0db7a1dd95b987e31568871bac912899b7e4fe21
8a26199ba1e093249707bf5db321183700b83a29
/Energy-aware supercomputing/Cache.h
7a753a0289695c33d31d00c5761465cdd57efec2
[]
no_license
ollim84/Cplusplus-projects
15a27203736ac0acc2bd886d15fc32539334503d
62b0c3277eedf19a6226f572ba48d86090cd7355
refs/heads/master
2020-04-18T06:23:50.392098
2019-04-16T10:23:45
2019-04-16T10:23:45
167,318,688
1
1
null
null
null
null
UTF-8
C++
false
false
254
h
#ifndef __INET_CACHE_H #define __INET_CACHE_H //using namespace std; class Cache { // class name public: Cache();// {} // default constructor //CPU(int n); // constructor overloaded int Level; int Size; private: }; #endif
[ "noreply@github.com" ]
ollim84.noreply@github.com
a0ba06c5dfc1d4878f39115ec13e6b06ac27d7c3
99fb0415c13c45e6b77b9b0f9f4f5af4dabd22bc
/include/spellbook/stringifier/stringifier.h
d44c475d66044cf216b5e4039965d388704ae59b
[]
no_license
aurone/spellbook_ros
8406c367634ab073866e6750cdbee66d70ef64b2
6a5919abc7ac29521e7fed27014b4304110ef14b
refs/heads/master
2021-01-10T14:00:49.124498
2018-10-19T17:46:44
2018-10-19T17:46:44
43,969,229
1
1
null
null
null
null
UTF-8
C++
false
false
4,580
h
#ifndef stringifier_h #define stringifier_h #include <array> #include <string> #include <sstream> #include <vector> #include <Eigen/Dense> #include <geometry_msgs/Pose.h> #include <geometry_msgs/Point32.h> #include <smpl/angles.h> #include <visualization_msgs/Marker.h> //////////////////////////////// /// Because, le...
[ "andrew.dornbush@gmail.com" ]
andrew.dornbush@gmail.com
28f82843a8f2b7bc3c7fe6284f161ed1d2f5045b
25319d5a9e01e94d7edd2ee1c45d2c236412fc8e
/src/zecachain.cpp
2227561b87614b584438a9d440f8f89693455078
[ "MIT" ]
permissive
ZIBIZ-PROJECT/ZIBIZCORE-WEB
aa53c52d7e29331ae22238a9456f6ad9af6ad8b1
436e437f61d19fdf05e6069ae4ccd8e1895f6259
refs/heads/main
2023-03-06T00:40:38.013933
2021-02-22T17:36:00
2021-02-22T17:36:00
340,541,665
0
0
null
null
null
null
UTF-8
C++
false
false
14,544
cpp
// Copyright (c) 2018 The PIVX developers // Copyright (c) 2018 The zibiz developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "zecachain.h" #include "invalid.h" #include "main.h" #include "txdb.h" #include "ui_in...
[ "ipedrero84@gmail.com" ]
ipedrero84@gmail.com
9ccd2c318baffd2123551854ab09cb6659a34988
76007b83037e7b0e21996b3249df62c1c5a88ca4
/qt.bak/model-view/big-data/main-window.h
959cb3a1be238d48e44a843b3f70d133a86e4c23
[ "MIT" ]
permissive
dingjingmaster/demo
b84ad148bb1ef4e8c4302d54c4e3f1249a5b5c3f
a5767b166e9a8b27f440f32b7052a3a08e9cab16
refs/heads/master
2023-08-31T08:51:38.315518
2023-08-31T07:33:29
2023-08-31T07:33:29
156,793,226
2
1
MIT
2023-07-10T23:17:40
2018-11-09T01:37:35
C
UTF-8
C++
false
false
358
h
#ifndef MAIN_WINDOW_H #define MAIN_WINDOW_H #include <QMainWindow> #include <qglobal.h> class TableView; class TableModel; class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow(QWidget *parent = nullptr); ~MainWindow(); private: TableView* mView; TableModel* ...
[ "dingjing@live.cn" ]
dingjing@live.cn
8e7a787097d83690c4c1d1da650672d91d96c642
f3179366a3841425a5d5a7580ff89a7ca09aa651
/src/protocols.cpp
bae33718859cdd9caa3481f5c569376408a2c93c
[]
no_license
CoolRuss/TcpUdpEx
c2037cbcd2c74f9bea9d30fe716fbf834d2e3ed1
c1ac8cd32c59c4b1a39f938c58054678d9704534
refs/heads/master
2020-08-04T11:42:07.388479
2019-10-15T09:35:57
2019-10-15T09:35:57
212,125,822
0
0
null
null
null
null
UTF-8
C++
false
false
15,274
cpp
#include "../includes/protocols.hpp" /// /// TcpServer /// TcpServer::~TcpServer() { this->close(); } void TcpServer::init_server(int port_init, const string& address_init) { port = port_init; message = string(message_size_max + 1, 0); if ((socket = ::socket(AF_INET, SOCK_STREAM, 0)) < 0) { per...
[ "qwu@qlh.qld" ]
qwu@qlh.qld
c597422ce7ffbdec37d3075be4b5a3c12449c939
0fa1152e1e434ce9fe9e2db95f43f25675bf7d27
/src/drivers/uavcannode/Subscribers/LightsCommand.hpp
b42f3d6d9928a399040ebb5fa617ee058b3016cf
[ "BSD-3-Clause" ]
permissive
PX4/PX4-Autopilot
4cc90dccc9285ca4db7f595ac5a7547df02ca92e
3d61ab84c42ff8623bd48ff0ba74f9cf26bb402b
refs/heads/main
2023-08-30T23:58:35.398450
2022-03-26T01:29:03
2023-08-30T15:40:01
5,298,790
3,146
3,798
BSD-3-Clause
2023-09-14T17:22:04
2012-08-04T21:19:36
C++
UTF-8
C++
false
false
5,343
hpp
/**************************************************************************** * * Copyright (c) 2021 PX4 Development Team. 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. Redistri...
[ "noreply@github.com" ]
PX4.noreply@github.com
7bae83d137832035af388b89f1c6a5ab4942ae5d
c102d77e7e363d043e017360d329c93b9285a6be
/Sources/Samples/XML/SampleXML.h
a9860ec2b0d2e839248bda619319b67230a6f257
[ "MIT" ]
permissive
jdelezenne/Sonata
b7b1faee54ea9dbd273eab53a7dedbf106373110
fb1b1b64a78874a0ab2809995be4b6f14f9e4d56
refs/heads/master
2020-07-15T22:32:47.094973
2019-09-01T11:07:03
2019-09-01T11:07:03
205,662,360
4
0
null
null
null
null
UTF-8
C++
false
false
378
h
/*============================================================================= SampleXML.h Project: Sonata Engine Author: Julien Delezenne =============================================================================*/ #ifndef _SAMPLEXML_H_ #define _SAMPLEXML_H_ #include <Core/Core.h> #include <Core/Engine.h> #inclu...
[ "julien.delezenne@gmail.com" ]
julien.delezenne@gmail.com
9a911cb8cb1b0d1595b2177b8037ca7e644f1bfd
9b0c6e7e74c72f146e113c290504ebf26cf3a989
/srv/router_service.h
1b24c8dba807b7831885b2c902286425cecf387e
[]
no_license
Iggdrasil/Server
93cd419abdba93e7803f17c8c17c58443c4e9c16
182deb54f9bd3af0e280ac1d0a63a62c4ce9a7f5
refs/heads/master
2021-01-20T00:33:02.647650
2017-04-26T16:32:01
2017-04-26T16:32:01
88,635,069
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
1,111
h
#pragma once #include <boost\serialization\singleton.hpp> #include <boost\asio.hpp> #include "SafeQueue.h" #include "TProxyProcessor.h" #include "TClientMessage.h" #include "request_parser.h" class router_service : public safeQueue<TClientMessage>, boost::serialization::singleton<router_service> { boost::asio::io_ser...
[ "gromdmitrij@yandex.ru" ]
gromdmitrij@yandex.ru
1a699699dce611cd9684902617873b5547c219e1
d8a8831ad5f0edbd2df58471f70695e219ec9b24
/boost/examples/asio/http_server/request.hpp
7fd082a250c5f7a7b925924aca15129521dfceaf
[]
no_license
pingsoli/cpp
71a28fcd2f5e8c3e3a36eb9bfb452c5efc346f06
63ab2b4d94c0e349b47bdb2dd99c8631260d9cd1
refs/heads/master
2021-05-10T15:20:08.295191
2019-02-22T09:06:32
2019-02-22T09:06:32
113,022,278
0
0
null
null
null
null
UTF-8
C++
false
false
448
hpp
#ifndef HTTP_REQUEST_HPP #define HTTP_REQUEST_HPP #include <string> #include <vector> #include "header.hpp" namespace http { namespace server { // A request received from client. struct request { std::string method; std::string uri; int http_version_major; int ...
[ "pingsoli@163.com" ]
pingsoli@163.com
41129a27f4526aee1ca49530a5524016720c105b
64fdd186b10649e2aaa4920d112eb0045615bae2
/NPDCall.hpp
661c3d36f3dc8bc263d20da83dd80164e1cbc01f
[]
no_license
FlorianPerigne/tvf_compu
7fd7f4381afcfa2b32660cc4ef676bc524519991
cb98a27360d498e1dfc648bc994fa403392dcd9b
refs/heads/master
2022-07-31T12:37:49.579170
2020-05-17T19:01:59
2020-05-17T19:01:59
258,544,430
0
1
null
2020-05-17T18:57:07
2020-04-24T15:02:45
C++
UTF-8
C++
false
false
487
hpp
#ifndef NPDCALL_HPP #define NPDCALL_HPP #include "NonPathDependent.hpp" class NPDCall :public NonPathDependent { public: NPDCall(double strike, std::vector<double> weights, bool weight_bool); NPDCall(double strike, std::vector<double> weights); NPDCall(double strike); std::vector<double> get_weights(); std::...
[ "thibnast@hotmail.fr" ]
thibnast@hotmail.fr
d8dfaee95be2ea1cac5a4a8b82ffe5b4364a4289
9df24e9110f06ea1004588c87a908c68497b22c0
/2016/最长单增子序列优化.cpp
e05708cd359b4abd2fe4b5baee9f4c092df8c9e6
[]
no_license
zhangz5434/code
b98f9df50f9ec687342737a4a2eaa9ef5bbf5579
def5fdcdc19c01f34ab08c5f27fe9d1b7253ba4f
refs/heads/master
2020-07-02T17:24:14.355545
2019-03-13T12:39:45
2019-03-13T12:39:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
782
cpp
#include <iostream> #include <cstdio> #include <cstdlib> #include <algorithm> #include <cstring> #include <iomanip> using namespace std; int a[50002]; int Long[50002]; int Max=1,n; int find(int key) { int l=1,r=Max; while(l<=r) { int mid=(l+r)>>1; if(a[Long[mid]]<key) l=mid+1; ...
[ "728031989@qq.com" ]
728031989@qq.com
ffc6ca3182a545cd0efe7a30eaf254295f901c97
83983b26f3db2963871e6a1ab046c64b2c378dd7
/TWOVSTEN.cpp
7c8aa20cfdfce2faa0cde759830f44e9a55d0fd2
[]
no_license
sakib1913/CODE-CHEF-AND-CODEFORCES-SOLUTIONS-IN-CPP
144fda22091195330ae3baa1c7ce8523804d6d3b
73af645558ce5232a33e99f648840ecf1656f2cf
refs/heads/master
2022-11-12T18:18:51.824547
2020-07-11T13:13:52
2020-07-11T13:13:52
265,778,445
0
0
null
null
null
null
UTF-8
C++
false
false
266
cpp
#include<iostream> using namespace std; int main() { int t; cout<<"enter the number of test cases\n"; cin>>t; while(t--) { int x; cout<<"enter the number\n"; cin>>x; if(x%10==0) cout<<" 0"; else if(x%5==0) cout<<"1"<<endl; else cout<<"-1"<<endl; } return 0; }
[ "noreply@github.com" ]
sakib1913.noreply@github.com
9491371e7f0d1eef64ff74338d1d43e5564d8f9c
e8ae324a0bca5548fd9e52cdf7ba04210fd2d138
/model/dc.h
511a695ea305582a0c14443145ac8c92e26b6833
[]
no_license
wajdihajji/sync-ns-3
3282eb22e33501c09f0b212c8c95cc0dc2a13c03
f1df572268cca80140b4f2b89307fe63b01e9067
refs/heads/master
2021-04-27T15:19:03.847407
2019-10-30T15:45:52
2019-10-30T15:45:52
122,468,713
0
0
null
2018-03-21T10:43:04
2018-02-22T11:16:43
C++
UTF-8
C++
false
false
2,810
h
#ifndef DC_H #define DC_H #include <stdint.h> #include <string> #include "ns3/core-module.h" #include "ns3/inet-socket-address.h" #include "ns3/packet-socket-address.h" #include "ns3/string.h" #include "ns3/data-rate.h" #include "ns3/uinteger.h" #include "ns3/names.h" #include "ns3/random-variable-stream.h" #include ...
[ "w.hajji@lboro.ac.uk" ]
w.hajji@lboro.ac.uk
da94b74596d40bd8fc6fbbfd287d009918932f74
1af49694004c6fbc31deada5618dae37255ce978
/chrome/browser/nearby_sharing/nearby_notification_delegate.h
f9a757d67d6bbde51310f6957ba7056066b52b6c
[ "BSD-3-Clause" ]
permissive
sadrulhc/chromium
59682b173a00269ed036eee5ebfa317ba3a770cc
a4b950c23db47a0fdd63549cccf9ac8acd8e2c41
refs/heads/master
2023-02-02T07:59:20.295144
2020-12-01T21:32:32
2020-12-01T21:32:32
317,678,056
3
0
BSD-3-Clause
2020-12-01T21:56:26
2020-12-01T21:56:25
null
UTF-8
C++
false
false
1,181
h
// Copyright 2020 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_NEARBY_SHARING_NEARBY_NOTIFICATION_DELEGATE_H_ #define CHROME_BROWSER_NEARBY_SHARING_NEARBY_NOTIFICATION_DELEGATE_H_ #include <str...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
b684154e960e7846fb8cf6c4d49c93dd6f083270
c0e0138bff95c2eac038349772e36754887a10ae
/mdk_release_18.08.10_general_purpose/mdk/examples/HowTo/FunctionProfilerExample/leon/app_config.cpp
17f05799253b9702800b35c746a1d01f236c07ab
[]
no_license
elfmedy/vvdn_tofa
f24d2e1adc617db5f2b1aef85f478998aa1840c9
ce514e0506738a50c0e3f098d8363f206503a311
refs/heads/master
2020-04-13T17:52:19.490921
2018-09-25T12:01:21
2018-09-25T12:01:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,454
cpp
/// /// @file /// @copyright All code copyright Movidius Ltd 2012, all rights reserved. /// For License Warranty see: common/license.txt /// /// @brief Application configuration Leon file /// // 1: Includes // ---------------------------------------------------------------------------- extern "C"{ #inclu...
[ "palani.andavan@vvdntech.com" ]
palani.andavan@vvdntech.com
b9bc1b0d6cb5884ad84dc66fac61717496829b1a
c5f9df9a1a4891c53ed8b08de4d4791734fcc9a2
/02C和C++/C++内存模型/C++内存模型/虚拟继承.h
abd95bc39cc2bddd19543bd6d63fa5b0b3ac3f52
[]
no_license
happyxiaotao/-DayDayUp
e11c56dcc38597068766f15f3ce3b0b73725c039
0848b1e92f1ae0d735f102a665585ab532b6896f
refs/heads/master
2021-01-01T04:41:36.893023
2017-09-14T14:30:08
2017-09-14T14:30:08
97,222,931
0
1
null
null
null
null
BIG5
C++
false
false
479
h
#pragma once #include "Base.h" /* 剞攜樟創①錶 */ //等剞樟創 class Derived_1 : virtual public Base { int c; virtual void VFun1(); virtual void VFun4(); }; ////謗脯剞樟創 //class Derived : virtual public Derived_1 //{ // int d; //}; //等樟創 class Derived_2 : virtual public Base { int d; virtual void VFun2(); virtual void VFu...
[ "1550637676@qq.com" ]
1550637676@qq.com
88bc92e887aff50ede7126576ea803744d713e31
09a4962b93c196f2f8a70c2384757142793612fd
/Dripdoctors/build/Android/Preview/Dripdoctors/app/src/main/include/Fuse.Drawing.StrokeAdjustment.h
6248c22e17e302e8d4c80b3f525032f8f698950c
[]
no_license
JimmyRodriguez/apps-fuse
169779ff2827a6e35be91d9ff17e0c444ba7f8cd
14114328c3cea08c1fd766bf085bbf5a67f698ae
refs/heads/master
2020-12-03T09:25:26.566750
2016-09-24T14:24:49
2016-09-24T14:24:49
65,154,944
0
0
null
null
null
null
UTF-8
C++
false
false
345
h
// This file was generated based on C:\ProgramData\Uno\Packages\Fuse.Drawing\0.32.14\$.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Int.h> namespace g{ namespace Fuse{ namespace Drawing{ // public enum StrokeAdjustment :274 uEnumType* StrokeAdjustment_typeof(); }...
[ "jimmy_sidney@hotmail.es" ]
jimmy_sidney@hotmail.es
2357bbd8ca0998c51433c9138ab773f794a595a0
fb8909f8ca2418e3ee25469073fa06636c3d294b
/src/sframe/sarray.hpp
e483600debaff6c63a9771198ab02e9620cbaf36
[ "BSD-3-Clause" ]
permissive
fossabot/turicreate
a1e9d95fc1f68e7074d1d8024ffd64de82463d39
a500d5e52143ad15ebdf771d9f74198982c7c45c
refs/heads/master
2020-12-02T21:45:09.045339
2019-12-31T17:50:02
2019-12-31T17:50:02
231,127,861
0
0
BSD-3-Clause
2019-12-31T17:50:01
2019-12-31T17:50:00
null
UTF-8
C++
false
false
27,970
hpp
/* Copyright © 2017 Apple Inc. All rights reserved. * * Use of this source code is governed by a BSD-3-clause license that can * be found in the LICENSE.txt file or at https://opensource.org/licenses/BSD-3-Clause */ #ifndef TURI_UNITY_SFRAME_SARRAY_HPP #define TURI_UNITY_SFRAME_SARRAY_HPP #include <set> #include <i...
[ "znation@apple.com" ]
znation@apple.com
fba046c9ea5ec1128b1e0bae06ad62256f2b0dc1
c2e81e928547bc4052119b962c854de2f0c0bfed
/Ch3/Sec3.3.2/Ex3_14.cpp
1a15570172f09d561c05038be42be9b09b38fb91
[]
no_license
wkvictor/Cpp-Prime-5th-ed
4a1841575c16cf1c26a8b6278135c493019d1d29
76002b4a6e219cc3fe84de2f2786181b5ab4af79
refs/heads/master
2021-01-10T02:21:03.126268
2017-03-21T00:04:05
2017-03-21T00:04:05
45,233,297
0
0
null
null
null
null
UTF-8
C++
false
false
267
cpp
#include <iostream> #include <vector> using namespace std; int main() { vector<int> v; int num; while (cin >> num) { v.push_back(num); } // output the vector cout << "The vector is "; for(auto n: v) { cout << n << " "; } cout << endl; return 0; }
[ "victor.wangkun@gmail.com" ]
victor.wangkun@gmail.com
f5cf62d74104d3e19f8ef9de0375faad38c290e3
5c1ddd0200492f5a714d6743073077ee3524ea4b
/src/array.hpp
c8547fe9a73c448e27b09c9563e1479d6c19dda8
[ "Apache-2.0" ]
permissive
An0tony0522/igrow
1d387d8bed0cdf30824be7038e1aa8a2ee7f2e19
7dbad5a03d6ed0fc0d6409d76f5069c2f3e7fbe0
refs/heads/master
2021-01-17T14:12:56.707689
2014-02-17T14:40:00
2014-02-17T14:40:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,816
hpp
#pragma once #ifndef IGROW_ARRAY_HPP #define IGROW_ARRAY_HPP #include <array> using namespace std; //! Returns true if the absolute difference between a floating point value and zero is within the constant tolerance. bool zero(const double a); //! Returns true is the vector is (0, 0, 0). bool zero(const array<double...
[ "JackyLeeHongJian@Gmail.com" ]
JackyLeeHongJian@Gmail.com
71b4dd0b5ec9207f3cef3558be42392d4fc89fc3
b1ec31f5854ee53f371332129ab053a845857aa5
/C++/Solved/937_ReorderDataInLogFiles.h
a44a5dccf78152c003a276078034db1c037f3286
[]
no_license
bubbercn/LeetCode
e9c1ec2e6f9260b69f64e63fbd2bf97cf65e3ad7
42c19adba8d360059e8159564d7384d662c24e8d
refs/heads/master
2023-08-31T10:40:06.288845
2023-08-26T13:55:55
2023-08-26T13:55:55
56,971,005
0
0
null
null
null
null
UTF-8
C++
false
false
1,810
h
#pragma once #include "Common.h" class Solution { public: vector<string> reorderLogFiles(vector<string> &logs) { auto cmp = [](const string &s1, const string &s2) { auto pos1 = s1.find(' '); auto pos2 = s2.find(' '); char c1 = s1[pos1 + 1]; bool i...
[ "bubbercn@163.com" ]
bubbercn@163.com
63f73534eafdc0a7fa6da099b5b81cdc31ac7be4
2102ebee073fbf634c0fe79b319ac6d8c39e96b1
/src/LOGIC/block.hpp
ac858d21e11babb5124b36b538d0899f4074bc47
[]
no_license
jurajkula/ICP
f2819c426d445e9ae5b01c90f7d4a9d1dd7ef3c5
cc7e8c170c50580443808ad5e05c9f8b961e3fa9
refs/heads/master
2020-03-09T18:21:26.560276
2018-05-06T19:00:50
2018-05-06T19:00:50
128,930,295
0
0
null
null
null
null
UTF-8
C++
false
false
3,173
hpp
/* Autori : Juraj Kula <xkulaj02> * Michal Vasko <xvasko14> * Popis: Modul pre logické bloky a funcie pre prácu s nimi */ #ifndef ICP_BLOCK_HPP #define ICP_BLOCK_HPP #include <utility> #include <vector> #include "ICPmath.hpp" /** * @brief The Block class */ class Block { public: /** * @brief Bl...
[ "jurajkula95@gmail.com" ]
jurajkula95@gmail.com
7b449c79d6ad56cd94709d212dfad297c8f5b115
4c7ab284a41ddd125397c624bec5a84307146e54
/SEGOverlay/Content/Sample3DSceneRenderer.cpp
a1c0629cf68e0cd17a495f103ad8a5174080ad28
[]
no_license
KnottyBetaWolf/SupercalifragilisticEpicGamingology
e78b93202ba10bd748c3f48fd2e5245749374651
6d9ff2b5e5025fddef5d5a64780c9b2e38f51116
refs/heads/master
2021-01-11T03:32:38.520666
2016-10-16T00:08:35
2016-10-16T00:08:35
71,020,616
0
0
null
null
null
null
UTF-8
C++
false
false
8,788
cpp
#include "pch.h" #include "Sample3DSceneRenderer.h" #include "..\Common\DirectXHelper.h" using namespace SEGOverlay; using namespace DirectX; using namespace Windows::Foundation; // Loads vertex and pixel shaders from files and instantiates the cube geometry. Sample3DSceneRenderer::Sample3DSceneRenderer(const std:...
[ "jbessey76@gmail.com" ]
jbessey76@gmail.com
283f2e1c64e4b1633d55939bb23a16b39f2d9852
1c4c1fc58e589aa3f5c2b43cc78d283d02681360
/third-party/gecode/gecode/set/rel/re-eq.hpp
d7c81392ab58e45ff174c20cfaf0e30a6277a6c3
[ "BSD-2-Clause", "MIT" ]
permissive
liq07lzucn/easy-IP
593412448b0393cdc433fede4d08aeec8e40ae3d
d57607333b9844a32723db5e1d748b9eeb4fb2a2
refs/heads/master
2021-09-22T10:06:18.036631
2018-09-07T17:18:00
2018-09-07T17:18:00
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
5,566
hpp
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Guido Tack <tack@gecode.org> * Christian Schulte <schulte@gecode.org> * * Bugfixes provided by: * Grégoire Dooms <dooms@info.ucl.ac.be> * * Copyright: * Guido Tack, 2004 * Christian Schulte, 2004 * ...
[ "petter.strandmark@gmail.com" ]
petter.strandmark@gmail.com
6371d27954a67ea1ae7ca3c690f2eb7a5d405d1b
200d924e3a24343f057919cb46b39516c3b228cd
/src/controller/SetUpCodePairer.cpp
e261e2d0a78eab5e8ef4b71a097c2bdd8e0535b3
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ARMmbed/connectedhomeip
4a992fb91019eb4106ced03944d2669fd735d697
81310d6b73c5d3415c9f76972698a9c3185c127e
refs/heads/master
2023-03-11T03:49:03.271328
2022-08-26T13:54:13
2022-08-26T13:54:13
330,608,139
10
9
Apache-2.0
2023-03-06T16:05:41
2021-01-18T08:57:27
C++
UTF-8
C++
false
false
16,605
cpp
/* * * Copyright (c) 2021 Project CHIP 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...
[ "noreply@github.com" ]
ARMmbed.noreply@github.com
db83abdac711c78380c487a5d4783335763eb49e
102a38d72dfa3c86933fa81534c231a7705d89dc
/maze.ino
e324931e5491615023c6ef49f2830f949b60a3b9
[]
no_license
coolAryan/Maze-Solver-Bot
2bda993b00c01cfdce43ba6cf72cdc8690d56a4e
128ac91c7795430e0550893c2d2e015d914950ae
refs/heads/master
2023-07-18T06:11:46.769733
2021-08-29T09:18:37
2021-08-29T09:18:37
381,699,551
0
0
null
null
null
null
UTF-8
C++
false
false
20,726
ino
#include <Wire.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27,16,2); int LS1 =4; int LS2 =7 ; int RS1 = A1; int RS2 =A0 ; int FS = 3; int FLS = A3; int MS = A2; int RM1 = 10; int RM2 = 9; int ENR = 8; int ENL = 13; int LM1 = 12; int LM2 = 11; int led=5; char a[200]; char b[150]; int i, j,flag; int m=0; ...
[ "aryanjain584@gmail.com" ]
aryanjain584@gmail.com
7a99efe6680a7e97fb3db0a867fc6af2bb4a610c
634120df190b6262fccf699ac02538360fd9012d
/Develop/Server/ServerCommon/SProxyPlayerSpeaker.cpp
a0a994447abe192772a1b2e93b180eff21862407
[]
no_license
ktj007/Raiderz_Public
c906830cca5c644be384e68da205ee8abeb31369
a71421614ef5711740d154c961cbb3ba2a03f266
refs/heads/master
2021-06-08T03:37:10.065320
2016-11-28T07:50:57
2016-11-28T07:50:57
74,959,309
6
4
null
2016-11-28T09:53:49
2016-11-28T09:53:49
null
UTF-8
C++
false
false
2,471
cpp
#include "stdafx.h" #include "SProxyPlayerSpeaker.h" #include "SProxyPlayerListener.h" #include "STransData.h" #if (_MSC_VER >= 1900) #include <functional> #endif SProxyPlayerSpeaker::SProxyPlayerSpeaker() { // do nothing } SProxyPlayerSpeaker::~SProxyPlayerSpeaker() { // do nothing } void SProxyPlayerSpeaker::Ad...
[ "espause0703@gmail.com" ]
espause0703@gmail.com
9fb2c37f7d377eb671584527238151e549a33e52
ab5bd6ed10341b5c4d63fd04c4f6f809562c3485
/tensorflow/core/tpu/graph_rewrite/distributed_tpu_rewrite_pass.cc
41cee1fdfa1f1e8b684d76356c4f838b93d9c61b
[ "Apache-2.0" ]
permissive
Arashtbr/tensorflow
925aef7fa7ffe99d0321fc8af13804b6dfe41b7a
4f301f599748928f6a3471d466731cfe5b536670
refs/heads/master
2023-01-14T01:40:57.436443
2020-11-21T00:05:08
2020-11-21T00:12:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
184,281
cc
/* Copyright 2020 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...
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
80a13c5d2699db6df60929ecf2259a324ed2c416
0e40a0486826825c2c8adba9a538e16ad3efafaf
/S3DWrapper10/Trace.cpp
ab6beaa253f7273d86a6310ab62bf8f75c8d5109
[ "MIT" ]
permissive
iraqigeek/iZ3D
4c45e69a6e476ad434d5477f21f5b5eb48336727
ced8b3a4b0a152d0177f2e94008918efc76935d5
refs/heads/master
2023-05-25T19:04:06.082744
2020-12-28T03:27:55
2020-12-28T03:27:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
763
cpp
#include "stdafx.h" #include "Trace.h" #include <StrSafe.h> TCHAR* FormatStr( const TCHAR* szFormat, ... ) { static TCHAR szBuf[ 1024 ]; va_list vList; va_start( vList, szFormat ); StringCchVPrintf( szBuf, 1024, szFormat, vList ); va_end( vList ); return szBuf; } const TCHAR* GetErrorMessage( DWORD nError, con...
[ "github@bo3b.net" ]
github@bo3b.net
d3f7763683f992db0eb4d97f02e80ca1ad53f2da
fec81bfe0453c5646e00c5d69874a71c579a103d
/blazetest/src/mathtest/operations/smatdmatmult/UCaSUDa.cpp
ba92bcfe6cf58c3b5fa26d27ade0e35fb5467fbf
[ "BSD-3-Clause" ]
permissive
parsa/blaze
801b0f619a53f8c07454b80d0a665ac0a3cf561d
6ce2d5d8951e9b367aad87cc55ac835b054b5964
refs/heads/master
2022-09-19T15:46:44.108364
2022-07-30T04:47:03
2022-07-30T04:47:03
105,918,096
52
7
null
null
null
null
UTF-8
C++
false
false
4,564
cpp
//================================================================================================= /*! // \file src/mathtest/operations/smatdmatmult/UCaSUDa.cpp // \brief Source file for the UCaSUDa sparse matrix/dense matrix multiplication math test // // Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserv...
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
8efec5ba14eebdde93f61782014ced82fa84f3b7
9834f79213a52feb5de3049e484eb4d5128291b4
/src/media/sctp/noop.cc
8ac554892944ce5d9de41c9bdce1f40f9f3444ca
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
lcx1249445475/rtc
75f82b233e5ef6ccacc340765b82cb6cc9887ba5
c5fd8213776ebb1865009948b279f46e9e320a6a
refs/heads/main
2023-01-20T16:04:08.640598
2020-12-04T03:17:31
2020-12-04T03:17:31
317,800,356
0
0
null
null
null
null
UTF-8
C++
false
false
612
cc
/* * Copyright 2017 The WebRTC Project Authors. All rights reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contrib...
[ "1249445475@qq.com" ]
1249445475@qq.com
8cf80ba28527f1f23fa92f536f40e2c06f43cef0
7ef39f86df4e26433a4c451ab1decafc130de757
/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
2e44ac949b2cff4736280fb651c4e55492229b9b
[ "NCSA" ]
permissive
TriDis/llvm-tricore
52ba485804d1a86be9dae0110046560eace22bde
4bfc5ee073becdcf799978431a9c03045b1091a2
refs/heads/tricore
2023-07-20T04:08:45.191342
2017-02-04T15:54:01
2017-02-04T15:54:01
58,754,468
28
9
NOASSERTION
2023-07-06T06:36:14
2016-05-13T16:07:30
C++
UTF-8
C++
false
false
29,314
cpp
//===- XCoreDisassembler.cpp - Disassembler for XCore -----------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
[ "sidneypontesf@gmail.com" ]
sidneypontesf@gmail.com
45bae90841e62fa4c9cb8b179997998589f136e1
9463c71701c9690ccb367ea56cdfc735ea7019f6
/Turbulence_Modelling/LES_Modelling2ND.cpp
830b0fa145d8fac6c368365f4e6e08a63a27ecb9
[]
no_license
huahbo/Working_Turbulent
7c5eba237e3341e4055ea1e7927d02b729901d4a
97999ca2a969dbaa6e9aabce28c5f46ef7190a87
refs/heads/master
2021-01-18T14:31:24.121296
2014-09-12T13:03:46
2014-09-12T13:03:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,850
cpp
/******************************************* * Author: Michail Georgiou * Last Modified: Time-stamp: <2014-09-08 17:01:24 mike_georgiou> * * LES_Modelling2ND.cpp -- This program will compute the eddy viscosity, based on the LES approach. Second order accurate schemes will be used. * * Written on Wednesday, 20...
[ "mech5560@hotmail.com" ]
mech5560@hotmail.com
ac601b433faf54543da462928e621223adf88933
13abe50ebb46edfe8101dcf0d66ea9f50a33510a
/opengl1/glFuncs.h
2c6b9811d13af33f45e3ae7ce4e4576da2f1e1d1
[]
no_license
jacekbla/opengl_water_dudv
d1cb01bab6ff71ca7f01edf519239b49097f71d3
92199fb2fd21d002bc38145c8e9bd8481b91fcaf
refs/heads/master
2022-04-17T16:10:48.686207
2020-04-18T04:17:52
2020-04-18T04:17:52
256,667,927
1
0
null
null
null
null
UTF-8
C++
false
false
2,172
h
#include "Utility.h" #ifndef GLFUNCS_H #define GLFUNCS_H class glFuncs { public: static glFuncs& ref(); glFuncs(glFuncs const&) = delete; void operator=(glFuncs const&) = delete; PFNGLCREATEPROGRAMPROC glCreateProgram; PFNGLCREATESHADERPROC glCreateShader; PFNGLSHADERSOURCEPROC glShaderSource; PFNGLATTACHSHA...
[ "jacekbla302@gmail.com" ]
jacekbla302@gmail.com
7b4c18fa15f54ca36b2558dcb5f0f799f83cb437
c1a8cd1989778de968e3b08ea69134c3ed8817ef
/InterviewCPP/include/Triangle.h
7eeed574d2710f49fc6869b2c082e1c38516537d
[]
no_license
Orenmc/cpp-for-fun
3fefdd30f7614ad8e4c040fe745cbdb487764cd7
cdba1b9cf8ac4d36d1ef9739d3df0cfdc2303e36
refs/heads/master
2020-12-10T12:06:47.003475
2020-01-16T13:32:52
2020-01-16T13:32:52
233,588,663
0
0
null
null
null
null
UTF-8
C++
false
false
379
h
/* * Triangle.h * * Created on: Jan 13, 2020 * Author: oren */ #ifndef TRIANGLE_H_ #define TRIANGLE_H_ #include <Shape.h> class Triangle: public Shape { public: Triangle(const string& name, const Point& loc, float x, float y, float z); virtual ~Triangle(); virtual void draw() const override; private: ...
[ "oren.c90@gmail.com" ]
oren.c90@gmail.com
4f188d33eef774e518f5982a600eb93735a460d2
7138b963e54e46d37ac89ed6c2cd748200f8eed7
/AddBinary/AddBinary/AddBinary.cpp
6e99a33103e32c2ccf1997d3f1a0734a0b3b53ad
[]
no_license
zhumj13/LeetCode
5c94b1db739f10d2cc3fe40233a8dd45dbe9759d
4fe327f14e271c85d1b5e1c08721bac4f56ee5cc
refs/heads/master
2020-05-26T07:13:26.888917
2014-11-22T04:49:24
2014-11-22T04:49:24
null
0
0
null
null
null
null
GB18030
C++
false
false
246
cpp
// AddBinary.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include<iostream> #include<string> using namespace std; string addBinary(string a, string b) { } int _tmain(int argc, _TCHAR* argv[]) { return 0; }
[ "zhumj863@nenu.edu.cn" ]
zhumj863@nenu.edu.cn
f70864ade42aaa79cb5bce73d53f32e3c1d5def2
0505be552159cb8a4cf98441095e613d191cb078
/src/zbetfwallet.h
6852ad0d8f02c21acdeb27a80652c0cea0bb536c
[ "MIT" ]
permissive
betfintofficial/Betfint
16aeb1d54046f15af05670940c672d4065d83ef3
dbaf3e5590b949bd26eef91ac4d4c6950a06d64e
refs/heads/master
2020-04-18T08:03:53.284207
2019-02-11T08:55:05
2019-02-11T08:55:05
167,382,902
0
0
null
null
null
null
UTF-8
C++
false
false
1,976
h
// Copyright (c) 2017-2018 The PIVX developers // Copyright (c) 2018 The Betfint developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BETFINT_ZBETFWALLET_H #define BETFINT_ZBETFWALLET_H #include <map> #include "li...
[ "emna.sellami@sqoin.us" ]
emna.sellami@sqoin.us
42ffc5696465628bbbabb873ac93308fd2bc1dab
b8d348c464ad91b05ac8d608e1bae3aefce46528
/DCDC.ino
8346c627b6e4b66877123a1a11e52c52b3b41d8c
[]
no_license
jonvolk/VOLT_DCDC
c15d8cbd67de636d87056abd4702f87989ef8fd2
5cab82667402fb7cd56fc848ef94fc5abca8e0ec
refs/heads/main
2023-04-23T02:49:46.048096
2021-05-04T23:02:30
2021-05-04T23:02:30
363,293,368
1
0
null
null
null
null
UTF-8
C++
false
false
942
ino
#include <Arduino.h> #include <FlexCAN.h> //https://github.com/teachop/FlexCAN_Library unsigned char mes[8] = {0, 0, 0, 0, 0, 0, 0, 0}; char msgString[128]; // Array to store serial string const int led = 13; CAN_message_t msg; CAN_message_t inMsg; CAN_filter_t filter; void s...
[ "noreply@github.com" ]
jonvolk.noreply@github.com
7246118fcef12c9714803bae0ad035169c896f08
0ef832d8eaedc16253cc220bc704a52597d248fe
/model_server/gedge/src/set.cxx
631a9a58560d7cee9d4e4ca4b0b1017bf767790b
[ "BSD-2-Clause" ]
permissive
radtek/software-emancipation-discover
9c0474b1abe1a8a3f91be899a834868ee0edfc18
bec6f4ef404d72f361d91de954eae9a3bd669ce3
refs/heads/master
2020-05-24T19:03:26.967346
2015-11-21T22:23:54
2015-11-21T22:23:54
187,425,106
1
0
BSD-2-Clause
2019-05-19T02:26:08
2019-05-19T02:26:07
null
UTF-8
C++
false
false
3,499
cxx
/************************************************************************* * Copyright (c) 2015, Synopsys, Inc. * * All rights reserved. * * * * Redistribution and...
[ "ktransue@synopsys.com" ]
ktransue@synopsys.com
7dd99877a53718131f56efa08795ba4d5f87c46b
3b1b8bf3f47e4b34ce16a546c9124bebbd33a3e7
/WeatherClock/WeatherClock/server/server.ino
09a8e4a3fb34a4dacd8f8931d05309d4096f3e5f
[]
no_license
danmincu/Arduino
4a8d461a956477f874e951671bb1fa026c9b13cd
fbcdda2d9be3ec0e96c2f1ecd5270af9dd90b1b7
refs/heads/master
2021-05-15T12:31:38.166328
2017-10-26T19:07:13
2017-10-26T19:07:13
108,452,838
0
0
null
null
null
null
UTF-8
C++
false
false
949
ino
//simple Tx on pin D12 //Written By : Mohannad Rawashdeh // 3:00pm , 13/6/2013 //http://www.genotronex.com/ //.................................. #include <VirtualWire.h> char *controller; void setup() { pinMode(13,OUTPUT); vw_set_ptt_inverted(true); // vw_set_tx_pin(12); vw_setup(4000);// speed of data transfer Kbps ...
[ "danmincu@gmail.com" ]
danmincu@gmail.com
6167bd8c1d309cd0204964898bd34e3e98bc7d41
ac5551aa8b6c787efeb885eca09d9d1f19bf18b5
/src/qt/guiutil.h
d5f0750aff6505f76ba630b0f38919cd724ca388
[ "MIT" ]
permissive
Oontcoin/Oontcoin
cc4dae760e5c910e323307b7695459a19857494e
38c87375664ef3602ded4abf1692006e2af6b06b
refs/heads/main
2023-02-27T12:21:50.012542
2021-02-07T15:32:39
2021-02-07T15:32:39
336,602,759
1
0
null
null
null
null
UTF-8
C++
false
false
9,603
h
// Copyright (c) 2011-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. #ifndef BITCOIN_QT_GUIUTIL_H #define BITCOIN_QT_GUIUTIL_H #include "amount.h" #include <QEvent> #include <QHeaderView> #inc...
[ "oontcoin@gmail.com" ]
oontcoin@gmail.com
483257601356e2ba0ecf40506f17194dfd9976e2
445d91c2c17c1bcd39b3c2429862e5bfcb6fb747
/src/main/jimi/http/Request.h
72489220c8d1b1320259adcff8d8121814eb770e
[ "MIT" ]
permissive
shines77/jimi_http
942a4f597c47eadb122e8c9bf2ee345ce6b3c432
9d080c90d229a0789d703c6f780ffc8494ec5887
refs/heads/master
2021-08-07T01:35:53.331534
2020-07-20T14:34:13
2020-07-20T14:34:13
74,135,576
0
0
null
null
null
null
UTF-8
C++
false
false
816
h
#ifndef JIMI_HTTP_REQUEST_H #define JIMI_HTTP_REQUEST_H #if defined(_MSC_VER) && (_MSC_VER >= 1020) #pragma once #endif namespace jimi { namespace http { class Method { public: /************************************************************************ * * HTTP Request method: * * GET, POST,...
[ "gz_shines@msn.com" ]
gz_shines@msn.com
5ee070596acff258f7b80e9721a79be09a1ada0a
5885fd1418db54cc4b699c809cd44e625f7e23fc
/dmoj/dmopc19c6/p1.cpp
6bf382ade0d8a40c1ef39faed4eafca5a41e9787
[]
no_license
ehnryx/acm
c5f294a2e287a6d7003c61ee134696b2a11e9f3b
c706120236a3e55ba2aea10fb5c3daa5c1055118
refs/heads/master
2023-08-31T13:19:49.707328
2023-08-29T01:49:32
2023-08-29T01:49:32
131,941,068
2
0
null
null
null
null
UTF-8
C++
false
false
1,546
cpp
//#pragma GCC optimize("O3") //#pragma GCC target("sse4,avx2,abm,fma") #include <bits/stdc++.h> using namespace std; #define _USE_MATH_DEFINES #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; template <typename T> using ordered_set = tree<T, null_type, less<T>, ...
[ "henryxia9999@gmail.com" ]
henryxia9999@gmail.com
088fa0d983ed46ce2ea1db429828edf710393581
a452c3ae31e552d1ed1bd0499896fa0025001589
/load_test/src/utility.hpp
9d3e155eb3535ababec7e12d5861b25f7b789615
[ "MIT" ]
permissive
ddovod/libkvs
ad7aa20e88d4cd494b25db572eeb143afb78a8f8
81497d95541a1581bdeefd68b55ede61e8b6683c
refs/heads/master
2020-07-10T05:23:59.820918
2019-09-14T08:56:30
2019-09-14T08:56:30
204,177,087
0
0
null
null
null
null
UTF-8
C++
false
false
338
hpp
#pragma once #include <argh.h> #include <string> #include <unordered_map> #include <unordered_set> template <typename T> bool parseParam(argh::parser& args, const std::string& paramName, T& value); std::string generatePath(); template <typename T> typename T::value_type getRandomElement(const T& container); #incl...
[ "ddovod@gmail.com" ]
ddovod@gmail.com
bfc271c1a849e795c5931205b219c1b8367bb8d9
ca0be0b172ade81b79514b2e6e48c652a2c5b088
/src/ansa/networklayer/ipv4/AnsaIPv4.h
8fa6063eb9975f93c19bfd7854fd245c9a8b20d6
[]
no_license
towdie/ANSA
87f5b085eee0b0e9cae6e884e51190e36af9bcf2
247d78f04cf1b9e3e50c04f0e9f5b0f57fd7369c
refs/heads/master
2021-01-16T19:10:28.423047
2013-03-26T09:12:20
2013-03-26T09:12:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,833
h
// Copyright (C) 2013 Brno University of Technology (http://nes.fit.vutbr.cz/ansa) // // This program 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 3 of the License, or // (at your op...
[ "xproch21@stud.fit.vutbr.cz" ]
xproch21@stud.fit.vutbr.cz
8bd20ae7243bf27ecce2f759d1d24d425f8b39b3
829b3f2d0ae685d01fe097c03bf5c1976cbc4723
/deps/boost/include/boost/spirit/home/qi/operator/sequence.hpp
7b75e800dbe4144756a8987c2228af74d339f185
[ "Apache-2.0" ]
permissive
liyoung1992/mediasoup-sfu-cpp
f0f0321f8974beb1f4263c9e658402620d82385f
b76564e068626b0d675f5486e56da3d69151e287
refs/heads/main
2023-08-21T21:40:51.710022
2021-10-14T06:29:18
2021-10-14T06:29:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,887
hpp
/*============================================================================= Copyright (c) 2001-2011 Joel de Guzman Copyright (c) 2001-2011 Hartmut Kaiser Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_...
[ "yanhua133@126.com" ]
yanhua133@126.com
4ebd56fde87d218473e7967c735116da573ca1d3
b9e907023f100d219eca5f9916e1bfe2c4cdeda6
/res/len_slice.cpp
76c9e2e749a175fe8cbf1c0d2bba5b471499a9b4
[]
no_license
vaquierm/GoLite_Transpiler
dbbfb43d5861419bb7b048c6ece95a68bd39684f
bd7aa8a30de5f0975ce9d585dcd893e12e042205
refs/heads/master
2022-04-10T05:47:37.865250
2020-03-09T01:16:21
2020-03-09T01:16:21
237,467,649
6
0
null
2020-03-09T01:16:23
2020-01-31T16:15:40
OCaml
UTF-8
C++
false
false
75
cpp
template <class T> constexpr int len(Slice<T> &slice) { slice.len(); }
[ "noreply@github.com" ]
vaquierm.noreply@github.com
28cc542eb4711d790537ecd10f1169c22ac489d4
6eaa75293cfd6dd800c7bb21b025314fa478fcd9
/Basics/first.cpp
e9de0146acf71438b62d822e2a9372c39b05de7c
[]
no_license
Niteshyadav0331/Cpp-Programs
4881c0a6b8a88e52f1ebe7bf28f73c5c223b7e10
b223d63a186313b6617494e683094f30082663eb
refs/heads/main
2023-02-16T19:20:15.375166
2021-01-11T05:48:15
2021-01-11T05:48:15
323,109,786
1
0
null
null
null
null
UTF-8
C++
false
false
257
cpp
#include<iostream> using namespace std; int main() { int num1, num2; cout<<"Enter the value of num1 \n"; cin>> num1; cout<<"Enter the value of num2 \n"; cin>> num2; cout<<"The sum is "<<num1 + num2; return 0; }
[ "noreply@github.com" ]
Niteshyadav0331.noreply@github.com
7b459e02022fb24e6a49ccb926a301a1e2849f2f
c093d4bf1054239dab5b2062e0a745f354341658
/src/THaADCHelicity.C
d0940e43362d21ea9650aefc728e99db98d7918b
[]
no_license
halla-online/analyzer
386563d1fdca2ffad61a87adb8df9b259c875b41
db55c9052eadd82934181c8a520543daf9663fc0
refs/heads/master
2021-07-04T12:18:43.418433
2017-09-27T01:25:59
2017-09-27T01:25:59
105,029,608
0
1
null
2017-09-27T14:35:47
2017-09-27T14:35:47
null
UTF-8
C++
false
false
6,206
c
//*-- Author : Robert Michaels Sept 2002 // Updated by Vincent Sulkosky Jan 2006 // More updates by Richard Holmes, Feb 2006 // Changed into an implementation of THaHelicityDet, Ole Hansen, Aug 2006 //////////////////////////////////////////////////////////////////////// // // THaADCHelicity // // Helici...
[ "ole@jlab.org" ]
ole@jlab.org
d4622bce562680c52675f3fc47f5e6c06e518dda
b4e9ff1b80ff022aaacdf2f863bc3a668898ce7f
/gluon/Atriangle/bin/src/typedarray/Int32ArrayImpl.cpp
9731e2e2d62c6c539857d04239ce50d81de39c17
[ "MIT" ]
permissive
TrilateralX/TrilateralSamples
c1aa206495cf6e1f4f249c87e49fa46d62544c24
9c9168c5c2fabed9222b47e738c67ec724b52aa6
refs/heads/master
2023-04-02T05:10:13.579952
2021-04-01T17:41:23
2021-04-01T17:41:23
272,706,707
1
0
null
null
null
null
UTF-8
C++
false
true
6,586
cpp
// Generated by Haxe 4.3.0-rc.1+88ebbd0 #include <hxcpp.h> #ifndef INCLUDED_haxe_Exception #include <haxe/Exception.h> #endif #ifndef INCLUDED_haxe_io_Bytes #include <haxe/io/Bytes.h> #endif #ifndef INCLUDED_haxe_io_Error #include <haxe/io/Error.h> #endif #ifndef INCLUDED_typedarray_ArrayBufferView #include <typedarra...
[ "none" ]
none
bcc21d20d5b86b89712579f89e26d2fa45723829
5ef0915b6464e2163e7d2e05f9d2854566dc12d6
/ConsoleApplicationofFItnessBracelets/Main.cpp
4efbce9af9be95c0c4c23f6089d7da291d56023e
[]
no_license
onoda/ConsoleApplicationofFitnessBracelets
b4a599077953c42175b5ac52968c066fbe8fc3a2
ab0bcae87ac5af766c3773510c144635e042fd0d
refs/heads/main
2023-02-05T09:26:30.543763
2020-12-21T14:51:13
2020-12-21T14:51:13
318,731,453
0
0
null
null
null
null
GB18030
C++
false
false
1,588
cpp
// Main.cpp -- 主程序,以及数据框架。 #include<iostream> #include<Windows.h> using namespace std; unsigned menu();//考虑鲁棒性,需要避免用户输入非数字时会出现的卡死现象; void My_indicators(); /* *需要添加函数声明 */ int main() { cout << "您好,别来无恙啊!\n" "----------------------------------------------------\n\n"; Sleep(500); enum optio...
[ "noreply@github.com" ]
onoda.noreply@github.com
52321893f752e144cd63155d08c155420fd5c583
58d14a3da5d71b8706e7f2c3292414b29c49155c
/third.cc
e245168bcd3d03ae15c7b37c96f2341907ac41a1
[]
no_license
XinWenfei/ns3scripts
124c3641066e304d33cfe217edcc8943e809c666
d4dc5263f8c3ac53013d844352a1298de16d2ee0
refs/heads/master
2021-01-01T07:00:13.546142
2017-07-19T00:06:23
2017-07-19T00:06:23
97,565,378
1
0
null
null
null
null
UTF-8
C++
false
false
6,239
cc
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be us...
[ "xinwenfei.2012@gmail.com" ]
xinwenfei.2012@gmail.com
40138684073cbfbb483d1cb6216dd56807046e10
9209e84d3bde8ff55eb45b0ceed96e6921ec2800
/tools/clang/lib/CodeGen/CGExpr.cpp
b9870fd20dd0bf4a8ad535ac9e5324284a418720
[ "NCSA" ]
permissive
fanfuqiang/iec
650f8610d0d296f2c85ea7487abe55bbfeb66db9
db1598620d0b2d1b46c8d6df8f66f9cf106fd531
refs/heads/master
2021-01-13T02:19:24.040380
2016-02-22T02:35:51
2016-02-22T02:35:51
34,075,750
0
0
null
null
null
null
UTF-8
C++
false
false
139,328
cpp
//===--- CGExpr.cpp - Emit LLVM Code from Expressions ---------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
[ "feqin1023@gmail.com" ]
feqin1023@gmail.com
6f3bb6b74eec96f7966f6d0c256f0ec91e846f3f
90c9dc885340e28c421f129396a593b9b60e0ce1
/src/Core/x/xSurface.cpp
e03112ff6ede6e468928f6e2db2541549fd148de
[]
no_license
Gota7/incredibles
3b493718fb1a1145371811966a2024b5c8fec39f
14dd4a94edbe84c30482a8e873b5c8e9f48d1535
refs/heads/main
2023-06-16T12:38:46.252815
2021-07-10T07:59:53
2021-07-10T07:59:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
873
cpp
#include "xSurface.h" #include "xMemMgr.h" #include <hacks.h> static xSurface* surfs = NULL; static uint16 nsurfs = 0; void xSurfaceInit(uint16 num_surfs) { nsurfs = num_surfs; if (nsurfs) { surfs = (xSurface*)xMEMALLOC(nsurfs * sizeof(xSurface)); for (uint16 i = 0; i < nsurfs; i++) ...
[ "32021834+seilweiss@users.noreply.github.com" ]
32021834+seilweiss@users.noreply.github.com
422cc6610719e831d2d6d9e7f9bacc6a598a70a2
48605e1fcb40e09cabd9430eebe218dcd66c944b
/nrlprotolibglue.h
351f7a836247a4756b616bf7c5812172bf72f98c
[]
no_license
koja123/simulator
a4ff7a89276d9d6dd5e756bbbcf70416ffc7bfc3
aaf7599fdcc435aca9590976d199e6727117c273
refs/heads/master
2021-01-10T08:31:56.369379
2015-10-23T23:57:49
2015-10-23T23:57:49
44,844,689
0
1
null
null
null
null
UTF-8
C++
false
false
8,661
h
// Copyright (c) 2007-2015 by Space-Time Engineering, LLC ("STE"). // All Rights Reserved. // // This source code is a part of Scenargie Software ("Software") and is // subject to STE Software License Agreement. The information contained // herein is considered a trade secret of STE, and may not be used as // the basis...
[ "koja@pluslab.org" ]
koja@pluslab.org
df8bf24450a4973ed806daee4c6d1c4736119012
c1c5a8dc79cacf3b419bad77881213c5db2f80c3
/Kattis/Interview_Preparation.cpp
44b25d22a78f55fa7e2796870d731f3b40101f24
[]
no_license
EoinDavey/Competitive
7ff8b6b6225814ac60c3ace659bb63190eb52420
b2b6909b93f5c073b684477f8a4b06dac22ec678
refs/heads/master
2023-01-08T00:06:19.076941
2022-12-26T14:00:31
2022-12-26T14:00:31
67,259,478
17
1
null
2022-01-19T18:17:59
2016-09-02T22:46:26
C++
UTF-8
C++
false
false
1,764
cpp
#include<bits/stdc++.h> #define pb push_back #define fi first #define se second #define sz(x) x.size() #define rd3(x,y,z) cin >> x >> y >> z #define rd2(x,y) cin >> x >> y #define rd(x) cin >> x #define pr3(x,y,z) cout << x << ' ' << y << ' ' << z << endl #define pr2(x,y) cout << x << ' ' << y << endl #define pr(x) cou...
[ "eoind@vey.ie" ]
eoind@vey.ie
769466a372808aab9d1fea9225246f53a422f8f0
f2a3eb060b7fa0e060c376c088344ae7bd190ed3
/test/annotation.cpp
75dcdb1f762a4dc8ee722bef153840bdc5ec8229
[]
no_license
jbaramidze/KATU
60e4165b8658745b4d7d0fa4e7505efd2371a4da
9f23a2a940e5e25d263bab2ec58d4308c17a52a9
refs/heads/master
2020-04-01T06:39:46.176237
2018-10-14T09:42:52
2018-10-14T09:42:52
152,957,946
1
0
null
null
null
null
UTF-8
C++
false
false
684
cpp
#include <stdio.h> #include <stdlib.h> #include "dr_annotations_zhani.h" #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <unistd.h> #include <sys/types.h> /* See NOTES */ #include <arpa/inet.h> #include <string.h> #include <sys/stat.h> #inc...
[ "jbaramidze@gmail.com" ]
jbaramidze@gmail.com
b30768c49f7c14f80306a8452f5780215fb7b3bd
a7764174fb0351ea666faa9f3b5dfe304390a011
/drv/XmlMDataXtd/XmlMDataXtd_GeometryDriver.ixx
e708d6b1a1c3139396f7b08a49b40766249af141
[]
no_license
uel-dataexchange/Opencascade_uel
f7123943e9d8124f4fa67579e3cd3f85cfe52d91
06ec93d238d3e3ea2881ff44ba8c21cf870435cd
refs/heads/master
2022-11-16T07:40:30.837854
2020-07-08T01:56:37
2020-07-08T01:56:37
276,290,778
0
0
null
null
null
null
UTF-8
C++
false
false
799
ixx
// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #include <XmlMDataXtd_GeometryDriver.jxx> #ifndef ...
[ "shoka.sho2@excel.co.jp" ]
shoka.sho2@excel.co.jp
2901290da98a72455011e99201e2eb628640ddc7
ace28e29eaa4ff031fdf7aa4d29bb5d85b46eaa3
/Visual Mercutio/zBaseLib/PSS_Directory.cpp
303d3d4f891c6b22ca4a68019af9f5330b9a3db4
[ "MIT" ]
permissive
emtee40/Visual-Mercutio
675ff3d130783247b97d4b0c8760f931fbba68b3
f079730005b6ce93d5e184bb7c0893ccced3e3ab
refs/heads/master
2023-07-16T20:30:29.954088
2021-08-16T19:19:57
2021-08-16T19:19:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,045
cpp
/**************************************************************************** * ==> PSS_Directory -------------------------------------------------------* **************************************************************************** * Description : Provides a directory helper * * Devel...
[ "jean_milost@hotmail.com" ]
jean_milost@hotmail.com
e900a1b9efb17c4fd3fe1d329947cb864d10cc6e
53add517aa16ab2a90822ca04e610c6ab5099398
/POO/Practica1/random.cpp
f167bc98c0152e5e9b1c091db950e88668f2201e
[]
no_license
Jopepato/Repaso
c1478079cf4a577119842815d893c23e795e2dfb
78c8131ce521efb64846b9ae0d561eef319e29bd
refs/heads/master
2021-07-15T12:55:47.259594
2017-10-20T08:52:09
2017-10-20T08:52:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
629
cpp
//Random.cc //A program that generates a random number and u have to deal with it #include <iostream> #include <ctime> #include <cstdlib> using namespace std; int main(){ srand(time(NULL)); int num1, num2; num2 = (rand()%10)+1; cout << "Introduce un numero del 1 al 10: "; cin >> num1; cout << "\n"; ...
[ "i32petoj@uco.es" ]
i32petoj@uco.es
eea6f8588245fe99b55091de52f697a9efcee56c
da6195d3c463c8c0a90194dcf96e924cfe3e145f
/src/AssetManagement/shader.h
f824664114f7c376c3b0b234bc2967c157566acc
[ "MIT" ]
permissive
limepixl/model-viewer
bcd1a28e52cab6343fcef9443efe78317b83e410
5e6911513a80626c6c27ceba23d0610c70ce6af6
refs/heads/master
2022-12-19T21:49:32.225850
2020-09-29T17:03:54
2020-09-29T17:03:54
290,446,806
1
1
null
2020-09-29T17:03:55
2020-08-26T08:58:12
C++
UTF-8
C++
false
false
640
h
#pragma once #include <unordered_map> #include <string> #include <glm/vec3.hpp> #include <glm/vec4.hpp> #include <glm/mat4x4.hpp> struct Shader { unsigned int ID; std::unordered_map<std::string, int> uniformLocations; }; void UseShader(Shader& shader); void UniformInt(Shader& shader, const char*...
[ "stefs.ivanovski@tuta.io" ]
stefs.ivanovski@tuta.io
413acdbfb12755b7032365404ae86c2da12e7a44
aa9a95738b229153a0b9dccd9bcef8d19e0004ae
/src/ModularPetriNet.cpp
72d576ece26a26bf31c5a42360344182e1bd0549
[]
no_license
cabid/DistributedStateSpaceBuilder
7bd9ffe7c2d31d446f79072cd7c2777ab7680d77
d6d335ed36a42dabb050966cf326b034d4ee9e94
refs/heads/master
2020-06-10T17:00:51.049414
2020-04-16T09:55:52
2020-04-16T09:55:52
193,683,830
0
0
null
null
null
null
UTF-8
C++
false
false
30,680
cpp
// ModularPetriNet.cpp: implementation of the CModularPetriNet class. // ////////////////////////////////////////////////////////////////////// //#include "StdAfx.h" #include "Element_dss.h" #include "ModularPetriNet.h" #include "time.h" #include "ArcSync.h" #include <fstream> Marking MARQUAGE_VIDE; /////////////////...
[ "chiheb.abid@gmail.com" ]
chiheb.abid@gmail.com
65393ee87cdbe4ca6dd0dc111c38925e33cc4c86
a4ef45f97d8643bd7e84ae9086a36f02f6736b89
/HealthBar.cpp
084987fd48e16bdc7a75b509f1a25d1b99c7187f
[]
no_license
Karas-yohara-osaka/Mortal_Kombat_Remake
243c2c9a0978de3ed103b6dbbaeb1c601ee88698
cbd8d5fd8f9c68bd5e6e7578728ae31556959ee7
refs/heads/master
2020-10-01T18:50:06.709980
2016-09-25T03:43:29
2016-09-25T03:43:29
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
1,201
cpp
// // HealthBar.cpp // MortalKombat // // Created by Sarah Villegas on 4/26/16. // Copyright © 2016 Sarah Villegas && Nick && Thalia && Mike . All rights reserved. // #include "HealthBar.h" HealthBar::HealthBar() { healthOutline.setSize(sf::Vector2f(400, 50)); healthOutline.setFillColor(sf::Color::Red); hea...
[ "nicholasirosas@student.hartnell.edu" ]
nicholasirosas@student.hartnell.edu