blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
960662ab132bd268920e761cc854db36cc3e0bf9
8efc7fd4ed561f048ce444ce79eea32bcc32c605
/Tree/iterative traversal using stack.cpp
c3763b98081642f626c222066b88543d2c047751
[]
no_license
nandinicodes1/My-DSA
6acec1d47134bb9447e0393341110b9ae3a8be47
78e7facd7b87a31567b0174b05538da341c172e8
refs/heads/master
2023-05-05T20:26:36.572168
2021-05-26T18:24:10
2021-05-26T18:24:10
371,131,578
0
0
null
null
null
null
UTF-8
C++
false
false
1,399
cpp
#include<iostream> using namespace std; class node{ public: int data; node*left; node*right; node(int data) { this->data=data; left=NULL; right=NULL; } }; node* buildTree() { int data; cin>>data; if(data==-1) { return NULL; } node* root=new node(data); root->left=buildTree(); root->right=b...
[ "66621182+nandinicodes1@users.noreply.github.com" ]
66621182+nandinicodes1@users.noreply.github.com
45eaadddd2b53e65027ede561a021b3c9859ed3d
d93159d0784fc489a5066d3ee592e6c9563b228b
/DataFormats/HcalDigi/interface/HcalQIESample.h
c26c1b0c4ce9c61e01ceb5067a25f62f73929665
[]
permissive
simonecid/cmssw
86396e31d41a003a179690f8c322e82e250e33b2
2559fdc9545b2c7e337f5113b231025106dd22ab
refs/heads/CAallInOne_81X
2021-08-15T23:25:02.901905
2016-09-13T08:10:20
2016-09-13T08:53:42
176,462,898
0
1
Apache-2.0
2019-03-19T08:30:28
2019-03-19T08:30:24
null
UTF-8
C++
false
false
1,358
h
#ifndef DIGIHCAL_HCALQIESAMPLE_H #define DIGIHCAL_HCALQIESAMPLE_H #include <ostream> #include <boost/cstdint.hpp> /** \class HcalQIESample * Simple container packer/unpacker for a single QIE data word * * * \author J. Mans - Minnesota */ class HcalQIESample { public: HcalQIESample() { theSample=0; } HcalQI...
[ "sha1-8c13ed8543bcbb752234eba083938d877e748795@cern.ch" ]
sha1-8c13ed8543bcbb752234eba083938d877e748795@cern.ch
4619defea4472b6a1d95ffb62a61305d71e2a880
c4360aa83fbd3fe988b5e2d6f073eac4cc8c49a8
/hello.cpp
4bfd72368e1683fd7bfe22889e19010ddc172e87
[]
no_license
lucken99/CompetitivePro
d9e66e14128c92a04f44fe484258a39fab88e0fe
3c88e944c62d3755873bdfe5919409b1fa283ea3
refs/heads/master
2023-08-21T17:43:01.414921
2021-10-03T16:07:44
2021-10-03T16:07:44
298,874,682
0
4
null
2021-10-03T16:07:45
2020-09-26T18:22:55
C++
UTF-8
C++
false
false
296
cpp
// Simple C++ program to display "Hello World" // Header file for input output functions #include<iostream> using namespace std; // main function - where the execution of program begins int main() { // Output cout<<"Hello World!"; return 0; }
[ "noreply@github.com" ]
noreply@github.com
fdf10c8046acc043cd909e130aac4ef4f0b63ef1
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE23_Relative_Path_Traversal/s02/CWE23_Relative_Path_Traversal__char_environment_ofstream_15.cpp
1cb090b820690d49105765e5f949f33628423197
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
4,236
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE23_Relative_Path_Traversal__char_environment_ofstream_15.cpp Label Definition File: CWE23_Relative_Path_Traversal.label.xml Template File: sources-sink-15.tmpl.cpp */ /* * @description * CWE: 23 Relative Path Traversal * BadSource: environment Read input from ...
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
00257f21a34f19adfa9e91e04e05112edbc388df
f49af15675a8528de1f7d929e16ded0463cb88e6
/C++/C++ Advanced/AdvancedClassMembers/00PitfalMissingConstOnOverloadForSTL/00PitfalMissingConstOnOverloadForSTL.cpp
4e4c45ea7aeecbde3f7ebcbacd2361bb65c6da5f
[]
no_license
genadi1980/SoftUni
0a5e207e0038fb7855fed7cddc088adbf4cec301
6562f7e6194c53d1e24b14830f637fea31375286
refs/heads/master
2021-01-11T18:57:36.163116
2019-05-18T13:37:19
2019-05-18T13:37:19
79,638,550
2
0
null
null
null
null
UTF-8
C++
false
false
1,435
cpp
// 00PitfalMissingConstOnOverloadForSTL.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include "pch.h" #include <iostream> #include <set> class Fraction { int numerator; int denominator; public: Fraction(int num, int denom) : numerator(num), denominator(denom) {} int ...
[ "genadi_georgiev@abv.bg" ]
genadi_georgiev@abv.bg
95e993dc6506a3df5bce600b5458c1fe9084b113
debf2431df291d8c3ca266863472e13bb14d1e9e
/server/include/StartCommand.h
dfeffc16d6422319a2554817ce8ba5415b516ea5
[]
no_license
nagar-omer/reversi-java
e89756014c2646f330190a4d9b4e6838da78defa
65e5471e0cab8a113304416ac776a6764b36bc88
refs/heads/master
2023-06-22T21:30:57.431797
2018-01-25T08:53:31
2018-01-25T08:53:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,800
h
/***************************************************************************** * Student Name: Oved Nagar * * Id: 302824875 * * Student Name: Orly Paknahad * * I...
[ "ovednagar@gmail.comgit config --global user.email ovednagar@gmail.comgit config --global user.email ovednagar@gmail.com" ]
ovednagar@gmail.comgit config --global user.email ovednagar@gmail.comgit config --global user.email ovednagar@gmail.com
df939b728c1550430c17000dbb24674b93a0ce07
eb159429a128f7d9c639e6af1ea9f365bd1c7cc0
/125. Valid Palindrome.cpp
91ce14ecc4ab16e651b314bdbf9d53e6a0ec172e
[]
no_license
xanarry/leetcode
12dbd2729b336fb82ad8ef41394625369dce7294
19380e255c506a2b58831a7078d76db3955e41ef
refs/heads/master
2020-03-25T06:30:06.692407
2018-08-06T05:48:06
2018-08-06T05:48:06
143,506,008
0
0
null
null
null
null
UTF-8
C++
false
false
416
cpp
class Solution { public: bool isPalindrome(string s) { int i = 0, j = s.length() - 1; while (i < j) { while (i < j && !isalnum(s[i])) i++; while (i < j && !isalnum(s[j])) j--; cout << s[i] << "-" << s[j] << endl; if ((s[i] | 32) != (s[j] | 32)) ...
[ "xiong-yang@qq.com" ]
xiong-yang@qq.com
4c4636febb9a3bac68fa285d7b5cd0a494745caf
6e59c9389347ffa86eb839a6d7bc9cab7b79871f
/C++ Applications/RobotSimulator/labs/lab07/src/circular_obstacle.h
8b326b19b1c20ace6e2808b3ec6d231ab1c89bb2
[]
no_license
JonnySunny/Courses-Project
e1b2c22bc4d97969dbac82386cc800a8fa145514
5ca8cb01650fd02da4e936759a0e5b85e62a792b
refs/heads/master
2020-03-27T23:45:56.273304
2018-09-04T12:57:04
2018-09-04T12:57:04
147,344,676
1
0
null
null
null
null
UTF-8
C++
false
false
1,492
h
/** * @file circular_obstacle.h * * @copyright 2017 3081 Staff, All rights reserved. */ #ifndef SRC_CIRCULAR_OBSTACLE_H_ #define SRC_CIRCULAR_OBSTACLE_H_ /******************************************************************************* * Includes *******************************************************...
[ "15953111511@139.com" ]
15953111511@139.com
c6139cb67c9888caf1e5dfbfa4c7f7ce8dbd72be
ccb9a8752eb5a5bc70305c65a1611736836a3e45
/test/test_checked_right_shift.cpp
6d37aea9822d1618ea27116fe99936a6bb52d7ca
[ "BSL-1.0" ]
permissive
boostorg/safe_numerics
5a1a8d903edbf312731345462dbf39d7fa39469d
13ca3d6dd36db1aac2d6b5caca2c281d15c881ad
refs/heads/develop
2023-08-18T20:08:56.199185
2022-06-07T01:22:59
2022-06-07T01:22:59
5,021,752
132
32
BSL-1.0
2022-09-16T13:19:51
2012-07-13T16:14:14
C++
UTF-8
C++
false
false
3,827
cpp
// Copyright (c) 2012 Robert Ramey // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include <iostream> #include <boost/core/demangle.hpp> #include <boost/safe_numerics/checked_result.hpp> #include <boost/sa...
[ "ramey@rrsd.com" ]
ramey@rrsd.com
b0b6b7f0dc51466d6f4d38f59414ceeaa9cfe953
d2f4ac4a36a6416c56a7eb1bef463ec82f333381
/SnakeGame.hpp
76713dd0ae8755528e7ad9806b837f64dcc8e084
[]
no_license
scott9600/-
e6c9ed0c04b6c769ab9c24933017141ede020324
7489aa2a6193b3b1f6a1d7772abe060d415f8525
refs/heads/master
2020-10-01T22:18:50.731418
2019-12-12T18:14:23
2019-12-12T18:14:23
227,635,648
0
0
null
null
null
null
UTF-8
C++
false
false
5,715
hpp
#pragma once #include <iostream> #include <string> #include <list> #include <cstdio> #include <cstdlib> #include <ctime> #include <cassert> // 윈도우 및 리눅스 호환성을 위한 헤더 파일 #ifdef _WIN32 #include <Windows.h> #else #endif // 맵 크기 설정 #define MAP_SIZE_X 81 #define MAP_SIZE_Y 21 // 콘솔에 표시되는 모양 설정 #define SHAPE_WALL '#' #def...
[ "noreply@github.com" ]
noreply@github.com
89b842a15a6954aee330bc9b8aec8964a108b1c1
dd4ea6c4dc8c99d6553de987c5915de31b3d21d2
/be/src/pipeline/exec/hashjoin_probe_operator.h
54105e7f8b7cd37ed6c1a0e8825470a32e047572
[ "BSD-3-Clause", "PSF-2.0", "GPL-2.0-only", "Apache-2.0", "LicenseRef-scancode-public-domain", "dtoa", "MIT", "LicenseRef-scancode-facebook-patent-rights-2", "bzip2-1.0.6", "OpenSSL" ]
permissive
caiconghui/incubator-doris
ac6036e5162e1204dce59facc0f868f3026d4be6
dd869077f8ce3c2b19f29b3048c4e7e62ac31050
refs/heads/master
2023-08-31T20:57:15.392015
2023-01-19T07:56:51
2023-01-19T07:56:51
211,771,485
0
2
Apache-2.0
2019-09-30T03:57:01
2019-09-30T03:57:00
null
UTF-8
C++
false
false
1,571
h
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may...
[ "noreply@github.com" ]
noreply@github.com
b6576a7008a3bd87933f75c3fca5f2223aef50c2
d633caa9febaa29d496eaf92312ae341a38c9466
/mp_proxyserv/proxy_parse.cpp
2dd0c42d9bc92795e81af27dcf9c7fb9659db22c
[]
no_license
h1mal1a1/hiimparhelia
46b40cbd8032275e913513cfe8c0ec4461b4333e
23f17b9d8d182e99ba9b23458c4dcd34de86d206
refs/heads/master
2021-11-27T11:18:26.486946
2018-12-11T22:17:52
2018-12-11T22:17:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,506
cpp
#include <cstdlib> #include "proxy_parse.h" #define DEFAULT_NHDRS 8 //использую va_list, для того, чтобы передавать неизвестное кол-во параметров void debug(const char* format, ...) { va_list args; if(DEBUG) { va_start(args,format); vfprintf(stderr,format,args); va_end(args); ...
[ "noreply@github.com" ]
noreply@github.com
d33bc2df43742e5f8eed19735dd35e213dfbd109
8dc84558f0058d90dfc4955e905dab1b22d12c08
/components/autofill/core/browser/webdata/autocomplete_sync_bridge.h
2b53c23779da6612db62630e82fdf8ce7102a622
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
3,480
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 COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOCOMPLETE_SYNC_BRIDGE_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOCOMPLETE_SYNC_BRIDGE_H_ ...
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
2f8f2b69b7f7c9da0f57de446e3c638bc5c5f4ad
7bd5ca970fbbe4a3ed0c7dadcf43ba8681a737f3
/aoj/intro/ALDS/ALDS1_6_C.cpp
5190fa6dc4ee1605a8c5864eee6f82e1fa1028e3
[]
no_license
roiti46/Contest
c0c35478cd80f675965d10b1a371e44084f9b6ee
c4b850d76796c5388d2e0d2234f90dc8acfaadfa
refs/heads/master
2021-01-17T13:23:30.551754
2017-12-10T13:06:42
2017-12-10T13:06:42
27,001,893
0
0
null
null
null
null
UTF-8
C++
false
false
1,857
cpp
#include <iostream> #include <string> using namespace std; struct Card {char suit; int val; }; const int MAX = 100000, SENTINEL = 2100000000; Card L[MAX / 2 + 2], R[MAX / 2 + 2]; int cnt; void merge(Card A[], int n, int left, int mid, int right) { int n1 = mid - left; int n2 = right - mid; for (int i = 0...
[ "roiti46@gmail.com" ]
roiti46@gmail.com
9038df451de7628d31d026bb113dc443ce8bbd57
6ae9c3fe53201557ad63b68cbfb3fbfc11cf390d
/src/logconsole.cpp
a2e88fe8c271712c239cd72bf49fa5841d916927
[]
no_license
BackupTheBerlios/qtex-svn
90cd46b7dc9f8a46568a2a1bbe570ea278830a15
efad541bd493e832dbe99b47bb688b74d0f7dede
refs/heads/master
2020-04-06T03:44:00.887807
2008-03-31T14:57:01
2008-03-31T14:57:01
40,806,234
0
0
null
null
null
null
UTF-8
C++
false
false
3,180
cpp
#include "logconsole.h" LogConsole::LogConsole(QWidget *parent) : QTextEdit(parent) { setReadOnly(true); m_errorFormat.setForeground(Qt::red); m_badBoxFormat.setForeground(Qt::darkGray); } void LogConsole::keyPressEvent(QKeyEvent *event) { event->ignore(); } void LogConsole::mousePressEvent(QMouseEvent *e...
[ "m_scha26@e9368703-4046-0410-a5d1-c0970dff0443" ]
m_scha26@e9368703-4046-0410-a5d1-c0970dff0443
5ce644f2a5e32a8e997f3e05d28def4e450d1379
a3d06f60f827f043b169d8edc8e35ce81b95be55
/Main.cpp
011020e606a4cb7e5746e358334392134fe07015
[]
no_license
H4RDY-develop/ResChangingOpenCV
be7742fa0053b7dbfaadd9f7dc7644a772ebea5e
61b38a69fe60d0bee188cbe37b27fe185b7f871f
refs/heads/master
2023-06-14T08:42:22.323602
2021-07-10T14:26:25
2021-07-10T14:26:25
384,548,183
0
0
null
null
null
null
UTF-8
C++
false
false
1,265
cpp
#define GetCurrentDir _getcwd #include <iostream> #include <opencv2/opencv.hpp> #include <string> #include <Windows.h> #include <dirent.h> #include <sys/types.h> #include <vector> #include <stdio.h> #include <direct.h> // Adding libraries | May be extended using namespace std; using namespace cv; int value; int Direc...
[ "h4rdy@rocketship.com" ]
h4rdy@rocketship.com
f74db0a4a428130d32b1343633911a76b3f5f3c9
3ff1fe3888e34cd3576d91319bf0f08ca955940f
/ckafka/include/tencentcloud/ckafka/v20190819/model/InquiryBasePrice.h
2a9622bffb2724e8286a77a7a2994955ea4c08b6
[ "Apache-2.0" ]
permissive
TencentCloud/tencentcloud-sdk-cpp
9f5df8220eaaf72f7eaee07b2ede94f89313651f
42a76b812b81d1b52ec6a217fafc8faa135e06ca
refs/heads/master
2023-08-30T03:22:45.269556
2023-08-30T00:45:39
2023-08-30T00:45:39
188,991,963
55
37
Apache-2.0
2023-08-17T03:13:20
2019-05-28T08:56:08
C++
UTF-8
C++
false
false
15,427
h
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. 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 ...
[ "tencentcloudapi@tencent.com" ]
tencentcloudapi@tencent.com
1f22cb2f1cc76420410e2379aa127b1b9159bf53
3bc3f080f46a6897c6d88f036c784c63b3673979
/src/mame/includes/deco32.h
de3fa7c131eb957562d9188a9d294e1df669900b
[]
no_license
vikke/mame_0145
bec0f81aba918c8ca5579a13f72e3c8efc7d0065
e9b4636543b017c2a6cdd6cddeab4afc02740241
refs/heads/master
2021-07-04T03:00:14.861010
2021-06-02T10:07:17
2021-06-02T10:07:17
4,586,522
0
0
null
null
null
null
UTF-8
C++
false
false
2,631
h
#include "audio/decobsmt.h" class deco32_state : public driver_device { public: deco32_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), m_maincpu(*this, "maincpu"), m_decobsmt(*this, "decobsmt") { } required_device<cpu_device> m_maincp...
[ "vikke.bsd@gmail.com" ]
vikke.bsd@gmail.com
3a9c17744ef9936dc2f36bdad4a8ba1ec271d00c
9222f818abb402120fb24f61ac8ac24c483de393
/question/minimum-path-sum最小路径和.cpp
6e2e10b4d585a597c2c85bb0877192a9b8eaf19c
[]
no_license
bobzhw/question
56fd04d17f7607376446582ed37fc330f011594d
4d4bcb673e414e16ce72bd4609bedc9a7ad31e14
refs/heads/master
2020-05-23T20:59:22.185165
2019-06-04T13:31:49
2019-06-04T13:31:49
186,942,633
2
0
null
null
null
null
UTF-8
C++
false
false
786
cpp
#include<vector> #include<iostream> using namespace std; class Solution { public: int minPathSum(vector<vector<int> > &grid) { if (grid.empty()) return 0; int m = grid.size(); int n = grid[0].size(); vector<vector<int>> vv(m, vector<int>(n, 0)); for (int i = 0; i < grid.size(); i++) { for (int j = ...
[ "zhouwei@DESKTOP-1D7SFF0" ]
zhouwei@DESKTOP-1D7SFF0
143d46934ee7b958a6c15b6d5482a82fd5ea105a
46fdede0d13cf14bdd8ef9c2a04e3d04401659dd
/libSimOn/src/SysFsHelper.cpp
0aa4ad7a1365bc9cec9647d92b39312fbb1a8a73
[]
no_license
patgauvingeek/PiProjects
13897801afa0c705b2d2b1f84da3d35ea6348fcc
6c053d6b81641c55f78647c0f94dca7946314b0d
refs/heads/master
2021-01-01T19:50:08.648573
2019-09-09T01:55:05
2019-09-09T01:55:05
98,699,421
0
0
null
null
null
null
UTF-8
C++
false
false
909
cpp
#include "SysFsHelper.h" #include <fstream> #include <sstream> #include <stdexcept> namespace SimOn { void SysFsHelper::writeData(std::string const &filename, std::string const &data, std::string const &action, std::string const &item) { std::ofstream fileStream(filename); if (fileStream.is_open() == fals...
[ "gauvin.patrick@gmail.com" ]
gauvin.patrick@gmail.com
64da568f8ca80a418b135183553e1d80e08baafe
5a792582ff0d79d9fb9f1ed6750f84a7e3787507
/trunk/opt/qnx660/target/qnx6/usr/include/unicode/measunit.h
aa18f9ce8056c93c34ac2c425e964c09ccae3250
[]
no_license
jjzhang166/QNX-SDP
faeffb2bfa80ea41f06230d9cc4e33cacde821de
74d96ca4ffb547a8ac4ec71803b31d452507b3d0
refs/heads/master
2023-03-22T03:02:25.466107
2018-01-19T08:14:56
2018-01-19T08:14:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,846
h
/* ********************************************************************** * Copyright (c) 2004-2006, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************** * Author: Alan Liu * Created: April 26, 2004 * Since: ICU 3.0 ******...
[ "lidongsheng@linkmotionfuture.com" ]
lidongsheng@linkmotionfuture.com
b08e16e3c3d34d8cd9cf5705cca2394b1b585a9a
5e604b4a033e49d06588e3545837435b2ea3f651
/CPP04/ex00/Victim.hpp
1333653561b635ea79c9d4a1cbe3e42975377868
[]
no_license
lucasmln/Piscine_CPP
7519d4c4f1327c26e2dd887a0b6f2f4c22d1d38e
39fc0a025fc06b118d3cbcfdd3ee76760f1a1cf7
refs/heads/master
2023-02-19T19:18:46.283923
2021-01-22T10:46:01
2021-01-22T10:46:01
322,577,685
0
0
null
null
null
null
UTF-8
C++
false
false
1,296
hpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Victim.hpp :+: :+: :+: ...
[ "lucas.moulin78114@gmail.com" ]
lucas.moulin78114@gmail.com
d9649ffb888378afe0cb7f3fcea8994a40847204
f90920085074e79a37048155750b80e5e884c5d2
/tsrc/MMCTestDriver/MCETester/inc/TCmdSendHoldSession.h
f6d9be4107ebc3d2a58b3b91b6e66e73af0e1ec4
[]
no_license
piashishi/mce
fec6847fc9b4e01c43defdedf62ef68f55deba8e
8c0f20e0ebd607fb35812fd02f63a83affd37d74
refs/heads/master
2021-01-25T06:06:18.042653
2016-08-13T15:38:09
2016-08-13T15:38:09
26,538,858
1
1
null
null
null
null
UTF-8
C++
false
false
1,586
h
/* * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" * which accompanies this distribution, and is available * at the URL "http://www.eclipse.org/legal/epl-v10.h...
[ "piashishi@qq.com" ]
piashishi@qq.com
8be57f2d9931bec744da6e71c6abdda0d41d3251
75417c19c179ca8519149a7ea72755a6b8ab8b95
/ECS/include/Systems/ControlSystem.hpp
310c0df8cf852724346746216db2d90445deaabc
[]
no_license
ChrisMelling/ECS
8d458fdd603dd2f14d4fb8a430f9db3cbe2a97f5
47b2eb2f5d80fc03d1ca6cc13577117c1df39da4
refs/heads/master
2020-04-08T07:38:49.293702
2014-01-08T00:57:08
2014-01-08T00:57:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
565
hpp
#ifndef CONTROLSYSTEM_HPP #define CONTROLSYSTEM_HPP //STD #include <vector> //3RD #include <SFML/Graphics.hpp> //SELF #include "Constants.hpp" #include "EntityManager.hpp" #include "Entity.hpp" #include "Components/Movement.hpp" #include "Components/Display.hpp" #include "Components/Flags.hpp" #include "Utility/V...
[ "chrismellin@hotmail.co.uk" ]
chrismellin@hotmail.co.uk
b43b81c206010a10d7c4d27e0cee237b8e084c88
b5277b9f7e82da01c1f31368492e50d21e798303
/testboost/function_and_callback/ref_example.cpp
59c73111b556a3451edbca70fad7e0c924c8e04a
[]
no_license
tantaijin/testBoost
3646ac55eda4e71b7f60295d262a94778f9f2637
86763e8b6505f47d0608c0355b1fdef2b0bd5634
refs/heads/master
2021-05-07T01:23:03.342499
2018-02-01T15:04:44
2018-02-01T15:04:44
110,249,460
0
0
null
null
null
null
UTF-8
C++
false
false
726
cpp
#include "stdafx.h" #include "ref_example.h" #include "boost\ref.hpp" #include "boost\typeof\typeof.hpp" #include "assert.h" void test_ref() { int x = 10; boost::reference_wrapper<int> rw(x); assert(rw == x); (int&)rw = 100; assert(x == 100); boost::reference_wrapper<int> rw2(rw); assert(rw2 == 100); std::st...
[ "2642058010@qq.com" ]
2642058010@qq.com
f5e5289f587a0db70b180ef5845e50e9bee660d6
1e549b5aa71ed3700b6f8d0e3347923b1c431a6e
/terceira entrega/LAIGvs10/src/SceneCylinder.h
7b139cb84483bf96b172086641d2ac956b20fbd8
[]
no_license
PMRocha/Laig
1f5783cef0b5cb75a0f1a46abe9d777155b18285
6d4201937670b95f9a1bea633d1f25ffd54e9585
refs/heads/master
2021-01-22T01:04:33.672143
2015-01-09T11:57:55
2015-01-09T11:57:55
24,503,398
0
0
null
null
null
null
UTF-8
C++
false
false
658
h
#ifndef _SCENECYLINDER_H_ #define _SCENECYLINDER_H_ #include "SceneObject.h" #include <vector> #include <iostream> #include <math.h> #include "Point.h" using namespace std; class SceneCylinder:public SceneObject { private: float top; float base; float height; int slices; int stacks; float deltaRadius; vecto...
[ "zephiro309@gmail.com" ]
zephiro309@gmail.com
3a82632d77bd2e5a9a5e2c93528c6c58c0bb0e0e
99a87a793240e11085e9ac5fad51580922c83d04
/p2p/option.hpp
0fe092983937393e263a1e76c84ecccc5f6b665b
[]
no_license
xiaoshzx/p2p
85834fe4b761c16144d85622cb886be0f8c01040
8594bd7d497f25620fc1f2949552898194c0e9f9
refs/heads/master
2022-10-11T01:13:50.737666
2020-06-03T03:42:00
2020-06-03T03:42:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
624
hpp
#ifndef OPTION_H #define OPTION_H #include <cstdint> // fec percentage: 5%, 10%, 20% ... static const int OPT_SET_FEC_PERC = 0x01; static const int OPT_SET_PACKET_LOSS_PERC = 0x02; class Option { public: virtual void SetOption(int opt, int value) { switch (opt) { case OPT_SET_FEC_...
[ "2235710879@QQ.COM" ]
2235710879@QQ.COM
df47450dbdb355aeacd486596e76a10630b62ed8
6a53ebf648fe736ca9f83ce09d0716a63938a7eb
/busca_Serial.cpp
a99fd8b4686a7d57380cf4d2a9e5bfa50a85d22f
[]
no_license
JhonMarques/Arquivo-Sequencial-em-C-
84644223cee4f6cb7339ae28d61222a309b87be3
9840dad72d51a581e6058ab8ae364ac9157f2b7a
refs/heads/master
2020-09-27T16:49:37.668319
2016-09-04T19:38:40
2016-09-04T19:38:40
67,364,575
2
0
null
null
null
null
ISO-8859-1
C++
false
false
13,164
cpp
#include <iostream> #include <conio2.h> #include <iomanip> using namespace std; const int N = 20; struct tNo{ int cod; string nome; string endereco; string cidade; string uf; }; tNo Clien...
[ "noreply@github.com" ]
noreply@github.com
007528ce54325af8b952b6e10183dca1da083e5f
7dde994e7272996ae7d8bffbf04bdccab7683313
/WebServer_v4.0/util.h
8573633438cadf5a65ad325e19e89874dbe0c7b0
[]
no_license
guyongpu/WebServerProject
b08ff019b548a41df2f5d3ddacbcd13c68f4c30f
d91872cac1ffd90023f57f6a505c91610d8629d8
refs/heads/master
2020-07-28T14:57:20.350963
2020-02-14T05:54:47
2020-02-14T05:54:47
209,445,018
1
0
null
null
null
null
UTF-8
C++
false
false
452
h
// // Created by yongpu on 2019/12/17. // #ifndef WEBSERVER_V2_0_UTIL_H #define WEBSERVER_V2_0_UTIL_H #include <cstdlib> #include <iostream> #include <unistd.h> #include <fcntl.h> #include <signal.h> #include <errno.h> #include <string.h> using namespace std; ssize_t readn(int fd, void *buff, size_t n); ssize_t w...
[ "gyphust@qq.com" ]
gyphust@qq.com
fd971e33912debcd7d6e7c5f1f069e882e22f97b
51f985e90ba3ad44e3ad5722c65078220477e48f
/PhotoKit-master/PhotoKit-master/src/ImageProvider.cpp
18199babcac029856ab967addd1d8683f8c0e1c2
[]
no_license
jason-lv-meng/study
9444e7c4dfcd2871a232f4df9ae9acf467da89bf
2b115a9b2eee5ccfdd92bda755bb302d99ef7aa9
refs/heads/master
2020-09-20T17:48:34.866238
2019-11-28T23:45:01
2019-11-28T23:45:01
224,551,756
0
0
null
null
null
null
UTF-8
C++
false
false
1,552
cpp
/****************************************************************************** ImageProvider: base class for image filtering Copyright (C) 2012 Wang Bin <wbsecg1@gmail.com> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by t...
[ "lvmengzou2007@163.com" ]
lvmengzou2007@163.com
004ecb123569bcd653d30013e1888ab79ed92992
f5f5eee680e3c27a98a892a5c01dfc3bd0fd68c1
/Lab1-210/TimeDriver.cpp
ec64943e2d6ead98e2c6fd4ea35f7fe94fcc6ce1
[]
no_license
mmonitto2/Comsc---210
dd48f84d7d5f60c8bba0461915401faa54e98398
5bda042709bdd8c599fad56adc73454803e4d9c1
refs/heads/master
2020-05-18T16:19:26.224078
2014-08-17T00:32:37
2014-08-17T00:32:37
23,029,837
0
1
null
null
null
null
UTF-8
C++
false
false
3,660
cpp
// Lab 1b // Programmer: Michael Monitto // Editor(s) used: Visual C++ 2010 Express // Compiler(s) used: VC++ 2010 Express //RoadDriver.cpp, by Michael Monitto (0985765) #include <iostream> using namespace std; //Extra includes #include <cassert> #include "Time.h" #include "Time.h" //testing ifndef int main() { c...
[ "mmonitto@yahoo.com" ]
mmonitto@yahoo.com
2f1102123a241276ef6671c365109b34a2641507
dce4b6e007e214a57d533590411e5c2d83aa64e6
/YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFOneKey/YKAFOneKey.cpp
3aa015e7e14d8853318d5b1dd3aa69e5c22b26a5
[ "BSD-3-Clause", "CC-BY-2.5" ]
permissive
zonble/KeyKey
ebae0efc73828c5b28c44ac969e64e67e3386a01
80e6883ecc1f307f21c04a3db2d05d51409fbafb
refs/heads/master
2020-12-24T23:19:58.876765
2019-01-14T16:06:38
2019-01-14T16:06:38
7,112,217
2
0
null
null
null
null
UTF-8
C++
false
false
20,355
cpp
/* Copyright (c) 2012, Yahoo! Inc. All rights reserved. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. */ #include <sstream> #include "YKAFOneKey.h" using namespace OpenVanilla; class OneKeyStringTable : public OVLocalizationStringTable { public: OneKeyStringTable() { ...
[ "yikai@turnevery-lm.tpcity.corp.yahoo.com" ]
yikai@turnevery-lm.tpcity.corp.yahoo.com
9b43d715022d8740d9b60c435969c42fbab5e005
b86d4fe35f7e06a1981748894823b1d051c6b2e5
/UVa/10815 Andy’s First Dictionary 1.cpp
f8f715945756f315b2a57b88d45f635736d2bb7b
[]
no_license
sifat-mbstu/Competitive-Programming
f138fa4f7a9470d979106f1c8106183beb695fd2
c6c28979edb533db53e9601073b734b6b28fc31e
refs/heads/master
2021-06-26T20:18:56.607322
2021-04-03T04:52:20
2021-04-03T04:52:20
225,800,602
1
0
null
null
null
null
UTF-8
C++
false
false
993
cpp
#include<bits/stdc++.h> using namespace std; #define FI freopen ("input.txt", "r", stdin); #define FO freopen ("output.txt", "w", stdout); struct Dic{ string s[200]; } book[1000100],temp; int main() { FI; set <string> myset; set <string>:: iterator it; int i = 0,j = 0,k; bool t = 0; char c...
[ "sifat.acc@gmail.com" ]
sifat.acc@gmail.com
f3b07071b452a86c7768dceef9f5a63057b315ef
34dbe8f7576fc69b7a1cfc5eb31cff6d9ed817e5
/HW7/vp/platform/GaussianBlur1.h
237f6daec851fc2db95aecf9767a6bdf4deb19b6
[]
no_license
NickshihU7/EE6470
e586ebdfbbe3ea66ef432ab0fbecad15b5c7f914
8657777f8dc0966647cc9c0feeaef1b3fbdbb916
refs/heads/main
2023-06-12T12:46:33.226532
2021-07-04T02:22:26
2021-07-04T02:22:26
349,443,176
1
0
null
null
null
null
UTF-8
C++
false
false
3,513
h
#define SOBEL_FILTER_H_ #define SOBEL_FILTER_H_ #include <systemc> #include <cmath> #include <iomanip> using namespace sc_core; #include <tlm> #include <tlm_utils/simple_target_socket.h> #include "filter_def.h" struct GaussianBlur1 : public sc_module { tlm_utils::simple_target_socket<GaussianBlur1> tsock; sc_fi...
[ "noreply@github.com" ]
noreply@github.com
e006ebe035c7059bd9e74a70dddb40070616f296
cb51541a2b8f5912778cc11951dc54be60173d93
/Last_Digit_of_the_Sum_of_Squares_of_Fibonacci_Numbers.cc
63d7e9a7d41f7bb61a5435869af827f4a9316dab
[]
no_license
dev-gupta01/C-Programs
1bc1b4919af098fa456ea9a896d3d6ec91b5bacd
d3b214864046f581a6fdeac64d3d8f8fc38a3598
refs/heads/master
2021-05-24T17:39:18.674849
2020-04-07T09:22:32
2020-04-07T09:22:32
253,680,969
1
0
null
null
null
null
UTF-8
C++
false
false
552
cc
#include<bits/stdc++.h> using namespace std; int get_fibonacci_last_digit_fast(long long n) { if(n<=1) return n; int f1=0,f2=1,f3; for(int i=0; i<n-1;i++){ f3=(f1+f2)%10; f1=f2%10; f2=f3%10; } return f3; } int fibonacci_sum_fast(long long n) { int new_last_n = get...
[ "devashishgupta13022000@gmail.com" ]
devashishgupta13022000@gmail.com
1e15910275e3a005d65b70794368e4491fe4d595
d82234e36bad9a22166879888cbf0cddc9123006
/sprout/compost/effects/reverbed.hpp
265231a49272b5740a896ea5c44db65f318f4a6f
[ "BSL-1.0" ]
permissive
pasberth/Sprout
62229150bd399720f68d9de97bc3d60c2e7f335f
12e12373d0f70543eac5f2ecfbec8f5112765f98
refs/heads/master
2021-01-14T11:51:48.254846
2014-01-20T04:09:54
2014-01-20T04:09:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,364
hpp
/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.tx...
[ "bolero.murakami@gmail.com" ]
bolero.murakami@gmail.com
ce4e714a56fede3778b74613e18711c653fd0afe
18e06cdf38eced8b6bea24958a36f68a4684db16
/native/distributed/include/angel/pytorch/lr.h
56ea0f1c1430fb1b9f36e23759820baa8aa37866
[]
no_license
leleyu/graph
3836bf8e168c4f2e9fd86002db587fe993ab399c
87466146d99cfb2910aeebc9df847655c91ba6ee
refs/heads/master
2020-03-29T21:47:12.503609
2019-05-06T07:02:37
2019-05-06T07:02:37
150,387,447
2
2
null
2019-03-14T07:55:39
2018-09-26T07:39:07
Gherkin
UTF-8
C++
false
false
649
h
// // Created by leleyu on 2019-05-05. // #ifndef PYTORCH_LR_H #define PYTORCH_LR_H #include <iostream> #include <torch/torch.h> #include <torch/script.h> namespace angel { class LogisticRegression { public: explicit LogisticRegression(const std::string &path); at::Tensor forward(std::vector<torch::jit::IVal...
[ "yulele214@gmail.com" ]
yulele214@gmail.com
67d7081e1bee7a47f9636a7b55ea33bab5dd70da
5101c3ce5a4a02e9c270bd59337937d18406a7e1
/DatabaseManager.cpp
acf5331fea3eefbb6543ef0375c785df2b4d7a37
[]
no_license
NichHarris/real-estate-database-manager
5bbc6daca83f7cd9cfb5600c60a0d443e937a97e
859aa997d230aa764365073d8432be950987ed2a
refs/heads/master
2020-08-28T17:11:41.820542
2019-11-13T21:40:03
2019-11-13T21:40:03
217,765,311
0
0
null
null
null
null
UTF-8
C++
false
false
7,310
cpp
// Nicholas Harris - 40111093 // harris.nicholas1998@gmail.com // Vejay Tham. - 40112236 // V-jayy21@hotmail.com #include <iostream> #include"Client.h" #include"RealEstateAgent.h" #include"RealEstateManager.h" #include"LandSale.h" #include"HouseSale.h" #include"ApartmentSale.h" int main() { // Creat...
[ "noreply@github.com" ]
noreply@github.com
28fe90b795bf5d2c6c5a491597ecc2ebfc2943b9
8ddd2ca4b49c138980fc4220e0ca907bda5952ee
/library/gameTheory/wythoffGame.cpp
76ff31b2b5c384029559becb34d580c3dce10221
[ "Unlicense" ]
permissive
bluedawnstar/algorithm_study
b7b08e2fca31ecfc87bafa3a9734627245f16ad5
d5aec7035e65d8f5386a0791c26d59340fd09ef5
refs/heads/master
2023-06-24T19:47:57.640559
2023-06-14T14:43:01
2023-06-14T14:43:01
76,085,991
45
8
Unlicense
2023-06-14T14:43:03
2016-12-10T02:41:35
C++
UTF-8
C++
false
false
835
cpp
#include <vector> #include <algorithm> using namespace std; #include "wythoffGame.h" /////////// For Testing /////////////////////////////////////////////////////// #include <time.h> #include <cassert> #include <string> #include <vector> #include <numeric> #include <iostream> #include "../common/iostreamhelper.h" #...
[ "youngman.ro@gmail.com" ]
youngman.ro@gmail.com
a2b05112948766440bd6fa05fe0c34a52fabc12f
bd1fea86d862456a2ec9f56d57f8948456d55ee6
/000/086/139/CWE191_Integer_Underflow__short_rand_sub_82_goodG2B.cpp
eedafff752029fad36621fbcfbb4a6255c8bba50
[]
no_license
CU-0xff/juliet-cpp
d62b8485104d8a9160f29213368324c946f38274
d8586a217bc94cbcfeeec5d39b12d02e9c6045a2
refs/heads/master
2021-03-07T15:44:19.446957
2020-03-10T12:45:40
2020-03-10T12:45:40
246,275,244
0
1
null
null
null
null
UTF-8
C++
false
false
1,070
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE191_Integer_Underflow__short_rand_sub_82_goodG2B.cpp Label Definition File: CWE191_Integer_Underflow.label.xml Template File: sources-sinks-82_goodG2B.tmpl.cpp */ /* * @description * CWE: 191 Integer Underflow * BadSource: rand Set data to result of rand() * GoodSour...
[ "frank@fischer.com.mt" ]
frank@fischer.com.mt
a7aec34dfb323d3e95d5f2707f089aaccc3b6bb2
3fe1f29c4cc3766cae3df919c2dd87489588e8a1
/include/OpenCVGoodFeatureExtractor.h
0a87b73cb09d42f304f220ef14dc7cc9c98fbefa
[]
no_license
JeanElsner/practical-multi-view
307d0fd6bc753b45c2244d1d237c012284767608
4f830863501e6e76b395bbca830760aba1af2ee7
refs/heads/master
2021-09-09T13:50:19.307725
2018-03-16T18:06:27
2018-03-16T18:06:27
111,742,609
9
1
null
null
null
null
UTF-8
C++
false
false
596
h
#ifndef OPENCV_GOOD_FEATURE_EXTRACTOR_H #define OPENCV_GOOD_FEATURE_EXTRACTOR_H #include "BaseFeatureExtractor.h" class OpenCVGoodFeatureExtractor: public BaseFeatureExtractor { public: // Minimum quality of features, in order to be selected double quality = 0.01; // Minimum distance between features, in order to b...
[ "jean.elsner@googlemail.com" ]
jean.elsner@googlemail.com
b57b2064ea3f87385f241c04e3c39083556a7b86
bb608853d87c1b51e6cc8a71d037b8480855b6aa
/SrcGame/src/HoBaram/HoMinMax.h
f0a2000d16a0af2560edaad1f55211f3fb939a34
[]
no_license
tobiasquinteiro/Source-GothicPT
9b8373f9025b82b4bf5d37e53de610e2ad5bef51
6542d5c6ab8b797cb6d83f66bde5ea0cd663d0e6
refs/heads/master
2022-12-31T04:43:21.159375
2020-10-26T00:26:34
2020-10-26T00:26:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,040
h
#ifndef _HO_MIN_MAX_H #define _HO_MIN_MAX_H #include <vector> #include <string> #ifndef D3D_OVERLOADS #define D3D_OVERLOADS #endif using namespace std; inline void MakeUpperCase(std::string &str) { for(std::string::iterator i = str.begin(); i != str.end(); i++) { *i = toupper(*i); } } inline std::string RemoveQ...
[ "oarthurdev@gmail.com" ]
oarthurdev@gmail.com
162c1bdcf1bc2368842de614805400728ecd2eec
dd80a584130ef1a0333429ba76c1cee0eb40df73
/external/clang/lib/AST/InheritViz.cpp
3d64310dc56b6458fe432c20a03a780c41995e29
[ "MIT", "NCSA" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C++
false
false
5,247
cpp
//===- InheritViz.cpp - Graphviz visualization for inheritance --*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
317c220ced4c3bf9cbd47147c17a4fa7c04f9288
7ea0ee06c76bac889ab514d6f434bfc45ff2cdee
/src/chrono_models/vehicle/man/MAN_5t_Vehicle.cpp
4c906a6c0328889c2504b0db1d4edfc7f165aae2
[ "BSD-3-Clause" ]
permissive
zzhou292/chrono-collision
94772decb392bb054ed69d7ed2987e2cd7033c28
c2a20e171bb0eb8819636d370887aa32d68547c6
refs/heads/master
2023-02-09T18:07:27.819855
2021-01-07T03:59:55
2021-01-07T03:59:55
324,093,881
1
1
null
null
null
null
UTF-8
C++
false
false
10,904
cpp
// ============================================================================= // PROJECT CHRONO - http://projectchrono.org // // Copyright (c) 2014 projectchrono.org // All right reserved. // // Use of this source code is governed by a BSD-style license that can be found // in the LICENSE file at the top level of th...
[ "zzhou292@wisc.edu" ]
zzhou292@wisc.edu
0ea581812e156967bf70b1c96ad65cc50adec1aa
9c6b6b6aa676ee0b42a12d433a808be5e82a9109
/src/Camera.cpp
5b2535d4ed0e258c4aa51b840045dab94177ff4a
[]
no_license
vsian/PetTracer
8a766f3f1b073728e44dee7ca7088db2380b0ca7
bea0f7b766be02d106112a1ae30bc45035d699a0
refs/heads/master
2023-03-08T15:04:51.074582
2021-02-22T13:50:21
2021-02-22T13:50:21
336,226,245
0
0
null
null
null
null
UTF-8
C++
false
false
141
cpp
#include "Camera.h" Ray :: Ray camera :: getRay(float u, float v) { return Ray :: Ray(origin, lower_f + u * horizontal + v * vertical); }
[ "1652473569@qq.com" ]
1652473569@qq.com
fb5aae230547ca8e9562c466c19403e78e7b8dbb
63d66888933b428798cbb732455c1f42513532b2
/Examples/Include/Publish/ILine.h
47f13e71894afdfba5234951ab76b0ca0e9ff9d1
[]
no_license
LLuMM/Aspose.Cells-for-C
eac76ca4cc197f45fa6e4ba6def95e811d17e945
541ef8e35624ac243c639dac871607e1f0176b8b
refs/heads/master
2020-05-29T08:22:38.637825
2018-07-25T13:34:37
2018-07-25T13:34:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,192
h
#pragma once #include "System/Object.h" #include "System/Drawing/Color.h" #include "System/Double.h" namespace Aspose { namespace Cells { namespace Drawing { enum MsoLineStyle; enum MsoLineDashStyle; enum LineCapType; enum LineJoinType; enum MsoArrowheadStyle; enum MsoArrowheadLength; enum MsoA...
[ "shakeel.faiz@aspose.com" ]
shakeel.faiz@aspose.com
db2b5dcddb911f960c0cf0d86a105efa5338abcc
b312fd00fdf4e629189b1e282d4cda4fd10b0752
/usespace/xmlconf-3.2/core/portmirrormgr.cc
8d14a2b534d15129c3580690b812c36496643eb0
[]
no_license
wfqGithubHome/dailycode
1ee7b2c9087f6de1a54988ea535a71eee7c9b980
4b893bda0aa2b2190ef00129b47cda2cc3cf03e7
refs/heads/master
2021-01-20T21:09:07.317993
2016-06-15T14:01:29
2016-06-15T14:01:29
59,886,894
0
0
null
null
null
null
UTF-8
C++
false
false
2,608
cc
#include "portmirror.h" #include "portmirrormgr.h" #include "../global.h" #include <sstream> namespace maxnet{ int PortMirrorMgr::max_bridge_id = 0; PortMirrorMgr::PortMirrorMgr(){ } PortMirrorMgr::~PortMirrorMgr(){ #if 1 PortMirror * rule = NULL; for(unsigned int i=0; i < node_list.size(); i++){ ...
[ "18611665130@163.com" ]
18611665130@163.com
231d3d0b44dbc43b4415b200c5911d2230764aad
728de43d34e192c677916365696e96af5e992b19
/A-STD/src/FeatureCollector.h
99ce9ba2b88307e23552b1d58fe4017a6e288d93
[]
no_license
majineu/Parser
a8a8b497e51410f1c7739c83668a0e24c3f5f0d6
ed7548a7bfe72a57deebbee631eb555e161ee713
refs/heads/master
2020-05-18T06:14:10.149277
2015-06-06T08:08:37
2015-06-06T08:08:37
22,898,740
0
1
null
null
null
null
UTF-8
C++
false
false
1,566
h
#ifndef __FEATURE_COLLECTOR_H__ #define __FEATURE_COLLECTOR_H__ #include <map> #include <vector> #include <algorithm> #include "DepTree.h" #include "Pool.h" #include "State.h" #include "Template.h" using std::map; class CFeatureCollector { public: CFeatureCollector(bool insertMode);//, bool useDis); ~CFeatureColle...
[ "majineu@outlook.com" ]
majineu@outlook.com
3666e4b501608526c78aeac2a24a6e9851d56824
99f2afe3d5091e1f88baa95cd8fcd99f991760b1
/tests/flt.cpp
5a7ed6a73b153aaabd4f4303a19b9a3b37fbcfad
[ "MIT" ]
permissive
dantamont/zorder_knn
18044ec7a809d3095b5ee30665e2810dc60607a3
a8f4cb9c41d7c903f5dd4374ea2219192a80b970
refs/heads/master
2023-05-27T10:20:43.557023
2021-05-22T19:59:17
2021-05-22T20:03:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,515
cpp
// This file is part of zorder_knn. // // Copyright(c) 2010, 2021 Sebastian Lipponer // // 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 limitati...
[ "mail@sebastianlipponer.de" ]
mail@sebastianlipponer.de
9e9144dfa14abd5fc0701666e74b6d1d3033f717
c95fea72ffeaa3faba64c6837fc61928cf63e568
/src/octomap_to_table.cpp
d366ef62e730358bf22ed6a6f0ef7c68b5b34c5a
[]
no_license
kingjin94/filter_octomap
871b2c99025e0cbd1ca8f469a91f9b512f66e763
0bb079bf49ab630b203819834d6de2910b588274
refs/heads/master
2020-07-01T07:13:12.095706
2019-11-13T14:03:06
2019-11-13T14:03:06
201,085,744
0
0
null
null
null
null
UTF-8
C++
false
false
15,857
cpp
/* * Copyright (C) 2008, Morgan Quigley and Willow Garage, Inc. * * 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 condi...
[ "matthias.mayer@tum.de" ]
matthias.mayer@tum.de
057fe32779e96ef78dd3af5e3814f605333a2076
29f86350525cf6d81113f103906e39ae9d655d5c
/Data_Structures/Stack_and_Queue/Down_to_Zero_II.cpp
06e5cd1461b14f5a07532daadd7eadd3478083d4
[]
no_license
mkltaneja/HackerRank
a6d3155c1396339f4964bd39d1ac4cc44a9edf84
a55791b0cb4c87d48fc789be21b279b51f71a931
refs/heads/master
2022-12-06T14:39:59.965792
2020-08-19T19:27:27
2020-08-19T19:27:27
278,747,088
0
0
null
null
null
null
UTF-8
C++
false
false
2,976
cpp
#include <bits/stdc++.h> using namespace std; /* * Complete the downToZero function below. */ // Method 1 (using DP) --> O(n*sqrt(n)) // TLE void operations(int n, vector<int> &dp) { for (int n=2;n<dp.size();n++) { dp[n] = dp[n-1] + 1; for (int i=sqrt(n);i>=2;i--) { i...
[ "mkltaneja@gmail.com" ]
mkltaneja@gmail.com
d7e9b45d7f587b673e5cbf9172cdd9e70a82d542
63ec994c38f21ef5eb7ab28473b65c3fb9be4144
/src/Program.cpp
c64ac0066bcb9ab18734ae31005fe2d0c20c643c
[]
no_license
moneil113/Breaker
a6c0466484d09e0bbdd968fd6c6fd42bb21e03c8
60c5d615dce3d037062587947adcedb910080977
refs/heads/master
2020-08-30T20:57:48.438193
2017-04-17T22:32:57
2017-04-17T22:32:57
94,391,951
0
0
null
null
null
null
UTF-8
C++
false
false
2,517
cpp
#include "Program.h" #include <iostream> #include <cassert> #include "GLSL.h" using namespace std; Program::Program() : vShaderName(""), fShaderName(""), pid(0), verbose(true) { } Program::~Program() { } void Program::setShaderNames(const string &v, const string &f) { vShaderName = v; fShaderName = f; } ...
[ "matthewoneil13@gmail.com" ]
matthewoneil13@gmail.com
82ddcf1a2a0cfb394e59ab01d3ff8b10ca391c54
cb6fca75b78ef4c7140378713a27a8d26ed5f5ac
/397/b/b.cpp
2d82f1372e4a75be7626787ddfe551df1c959da8
[]
no_license
shpsi/uva
3d89466f54b81bc0411458413a41d0e3cd93ce57
647a0d0f0de3aa1f13b91e9060e2738d128a879e
refs/heads/master
2020-08-10T16:21:50.617613
2020-02-03T10:01:59
2020-02-03T10:01:59
214,375,814
1
1
null
null
null
null
UTF-8
C++
false
false
1,309
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<string, int> psi; typedef pair<string, string> pss; #define pb push_back #define PI acos(-1.0) #define EPS 1e-4 #define mp make_pair #define all(x) x.begin(), x.end() #define fastio ios_base::sync_with_stdio(fal...
[ "shiv.si@media.net" ]
shiv.si@media.net
9f7cab4706c1e220f28d90c6a699ef9f6b42be5b
57e2faf5f1df52fd0992b16471437a402000f866
/Codes(since 12-01)/[2018湖南集训]gift.cpp
4a3561fa8159fe0cde6c21822cce7b28d391059b
[]
no_license
1592063346/Codes
694dac4ac8c2e7c9a068d0b517e5e895962d1c48
711782c5e1c5d329d306f7e864c1d3d3e2af388c
refs/heads/master
2020-04-13T17:15:14.784201
2019-06-29T02:46:18
2019-06-29T02:46:18
163,342,851
0
0
null
null
null
null
UTF-8
C++
false
false
3,373
cpp
#include<bits/stdc++.h> using namespace std; const int N = 2345, mod = 998244353; void add(int& x, int y) { x += y; if (x >= mod) { x -= mod; } } int mul(int x, int y) { return (long long) x * y % mod; } int n, a[N], b[N], pa[N], pb[N], binom[N][N], s[N][N], fac[N], f[N], g[N], h[N], r...
[ "noreply@github.com" ]
noreply@github.com
17e44018e1b17882309eab43774c816705d26583
ec4aafac303320d3d86c30766e28980598e338eb
/Source/main.cpp
2f5b1009c145df1e386e19c506677245798d23df
[]
no_license
brianwong1103/Portable-Text-Editor
c51d61aa3f47d1a3a274e7f8cbf7daba3dc452b1
a58cef9f9579f6dbda7594e9fef26a6eb330c3fe
refs/heads/master
2020-03-19T16:10:32.891024
2018-06-16T12:35:22
2018-06-16T12:35:22
136,703,792
0
0
null
null
null
null
BIG5
C++
false
false
5,346
cpp
#include <windows.h> #include "main.h" BOOL LoadFile(HWND hEdit, LPSTR pszFileName) { HANDLE hFile; BOOL bSuccess = FALSE; hFile = CreateFile(pszFileName, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0); if(hFile != INVALID_HANDLE_VALUE) { DWORD dwFileSize; dwFileSize = GetFileSize(hFile, ...
[ "noreply@github.com" ]
noreply@github.com
7665d7db10347bf2ab48ad0620ce26cbd886ed8b
cde72953df2205c2322aac3debf058bb31d4f5b9
/win10.19042/SysWOW64/KBDSORS1.DLL.cpp
c3b9cda46883be65505525171e3f96f6125ac161
[]
no_license
v4nyl/dll-exports
928355082725fbb6fcff47cd3ad83b7390c60c5a
4ec04e0c8f713f6e9a61059d5d87abc5c7db16cf
refs/heads/main
2023-03-30T13:49:47.617341
2021-04-10T20:01:34
2021-04-10T20:01:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
94
cpp
#print comment(linker, "/export:KbdLayerDescriptor=\"C:\\Windows\\SysWOW64\\KBDSORS1.DLL\"")
[ "magnus@stubman.eu" ]
magnus@stubman.eu
7dcf7d1ad559737ace20440996699697d36abe0a
931f826a7968d721de0caa4d43aff7a4f0586a5d
/yandex_course/task_2.cpp
8e7bc9f4f3183683629012a005bd90929d35a21a
[]
no_license
Poltorola/Playground
7ebfcf01927c4ea297dbf8d8288cd8b9c634ff39
903571d7350c03d430d91d48765cf186d82f82e5
refs/heads/main
2023-01-10T21:10:48.856563
2020-11-13T12:49:57
2020-11-13T12:49:57
302,155,575
0
0
null
null
null
null
UTF-8
C++
false
false
328
cpp
// simple example of cast made in gnu nano // haven't recieved clion license on my new laptop yet :( #include <iostream> #include <cmath> int main() { double n; std::cin >> n; //here comes nice green space) std::cout << n - (int)n << std:: endl; retu...
[ "poltorola@yandex.ru" ]
poltorola@yandex.ru
cff312eff42f6b8252e4d579bdf2ae56ab82236c
ca4fe6ea9f61faf113d14db513ad6805a5d112b7
/libamqpprox/amqpprox_backendstore.cpp
2ea155cab7dcb5363da015d86665e2ca83a2aad6
[ "Apache-2.0" ]
permissive
tokheim/amqpprox
3613c9cad6b9cdeaf6be02886e083ed3d1821e8b
ff3e60372b24631739af8421ef62a9744917f607
refs/heads/main
2023-08-22T01:05:03.372402
2021-09-29T17:10:13
2021-09-29T17:10:13
423,238,449
0
0
NOASSERTION
2021-10-31T19:11:41
2021-10-31T19:11:40
null
UTF-8
C++
false
false
2,485
cpp
/* ** Copyright 2020 Bloomberg Finance L.P. ** ** 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...
[ "anightingale@bloomberg.net" ]
anightingale@bloomberg.net
d0a76c41fdb7f5612e01d3380d9f4bdb168f1e51
ec0c10f6c207a3ad1832fabe824767f406a992e0
/1976.cpp
13f54fe4f06d9e679bf1b6a5d78d309ab8918a4f
[]
no_license
luck2901/Algorithm
5f8e88f6fa6d49e11ce880a2550d5ed8c4c57b05
3462c77d1aa6af3da73c4f10b6dd7bb7a8e8a9b4
refs/heads/main
2023-07-14T09:32:33.963583
2021-08-26T02:10:09
2021-08-26T02:10:09
339,104,020
1
0
null
null
null
null
UTF-8
C++
false
false
1,135
cpp
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string.h> using namespace std; #define endl "\n" int N, M; int parent[201]; vector<int> v; int find(int u) { if(parent[u]==u) return u; else return parent[u] = find(parent[u]); } void Union...
[ "luck2901@naver.com" ]
luck2901@naver.com
935953e7042cb06233ce7fb6c73800ae4b7875a3
5004f0c1f7eba48acf74630eb0baf296fb2a3a51
/Atcoder/Grand039/B.cpp
989bb374adfa6d5bfca196558407af46ebab8f77
[]
no_license
shash42/Competitive-Programming
80ab2611764f2f615568f2011088c1f651f26dcc
f069e8de37f42dba9fb77941b297b33161c2d401
refs/heads/master
2021-03-17T17:30:38.242207
2020-07-21T18:24:13
2020-07-21T18:24:13
276,369,049
1
1
null
null
null
null
UTF-8
C++
false
false
1,052
cpp
#include<bits/stdc++.h> #define int long long #define pii pair<int, int> #define pb push_back #define mp make_pair using namespace std; const int N=202; int n, ans, lvl[N]; char mat[N][N]; queue<int> q; signed main() { cin >> n; for(int i = 1; i <= n; i++) { for(int j = 1; j <= n; j++) { cin >> mat[i][j]; ...
[ "shashwatnow@gmail.com" ]
shashwatnow@gmail.com
cbe41b82970bcebd54698567a63ca6a4c1c64a71
1537e3009b826ec67d9ed46b7054fa0412da770e
/lib/date/test/iso_week/op_div_survey.pass.cpp
1c70c7cb51da7c4b7371b01259f99c505e628797
[ "MIT" ]
permissive
TommyB123/pawn-chrono
403f385ebb74f4aa4b35395ee13485bdb0e4cce7
9e3a9237bff75c3191f5b1123c74abca07e11935
refs/heads/master
2022-12-06T16:11:09.456520
2020-08-12T12:17:58
2020-08-12T12:17:58
287,005,396
0
0
MIT
2020-08-12T12:15:34
2020-08-12T12:15:33
null
UTF-8
C++
false
false
11,196
cpp
// The MIT License (MIT) // // Copyright (c) 2015, 2016 Howard Hinnant // // 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...
[ "southclawjk@gmail.com" ]
southclawjk@gmail.com
2843060f092780dbc66474df9d9c8e591ccb80c8
03a957f10754ae97d998b9a5af01e0ec43a36409
/src/chrome/browser/sync_file_system/drive_backend/sync_worker.cc
ca3f5cdcaa6bc4065a40a141f2b96b5d8f946782
[ "BSD-3-Clause" ]
permissive
xph906/TrackingFree
e5d39ced8909380ec29a38f0776814f762389aea
41540f0bdc8e146630f680d835a4107e7b8fd2c4
refs/heads/master
2021-01-19T11:43:34.409514
2014-05-21T01:54:24
2014-05-21T01:54:24
19,993,612
1
1
null
null
null
null
UTF-8
C++
false
false
24,164
cc
// Copyright 2014 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/sync_file_system/drive_backend/sync_worker.h" #include <vector> #include "base/bind.h" #include "base/memory/weak_ptr.h" #inclu...
[ "xiangpan2011@u.northwestern.edu" ]
xiangpan2011@u.northwestern.edu
a5aa4517417b279ea1baeecec7d10b564833056b
7916582c6d99379b39ac39bddb48435b8c88662b
/code/Modules/IO/Core/schemeRegistry.cc
1e18b42f0bab6203db85e3c59ef862058c0a6254
[ "MIT" ]
permissive
numericalBoy/oryol
b8e0f8163b2b76c5ab804263457c077f0e0bdc2c
76a2dc7b4a06396295825b3eef26ab7119211968
refs/heads/master
2021-05-31T14:48:13.759321
2015-12-28T11:39:48
2015-12-28T11:39:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,213
cc
//------------------------------------------------------------------------------ // schemeRegistry.cc //------------------------------------------------------------------------------ #include "Pre.h" #include "schemeRegistry.h" #include "IO/FS/FileSystem.h" #include "Core/Core.h" namespace Oryol { namespace ...
[ "floooh@gmail.com" ]
floooh@gmail.com
801e22f726d7a45d80e251a1aa6ed502a5f0cd9f
9640114af546d4ca3641cd395b88207f9c737ee8
/samples/linear_road/output/pcapplusplus/linear_road_pos_report.h
ad511b8cb0e6692528bc0b058ccb7cabd0bebadf
[ "MIT" ]
permissive
MischMetal/p4-traffictool
fcb3f0e4609532e15c0082fcafd010c1c9cca953
761263bf6d911432f5a102fcf987095dc90afab2
refs/heads/master
2022-12-07T13:58:19.356237
2020-05-09T14:11:38
2020-05-09T14:20:01
290,684,078
0
0
MIT
2020-08-27T05:25:39
2020-08-27T05:25:38
null
UTF-8
C++
false
false
1,626
h
//Template for addition of new protocol 'pos_report' #ifndef P4_POS_REPORT_LAYER #define P4_POS_REPORT_LAYER #include <cstring> #include "Layer.h" #include "uint24_t.h" #include "uint40_t.h" #include "uint48_t.h" #if defined(WIN32) || defined(WINx64) #include <winsock2.h> #elif LINUX #include <in.h> #endif namespace...
[ "deepanshujindal.99@gmail.com" ]
deepanshujindal.99@gmail.com
8901adadfea04c3c2de262378d9061305d187ee2
04b1803adb6653ecb7cb827c4f4aa616afacf629
/net/proxy_resolution/proxy_resolver_v8_tracing.cc
3f7b5e810a5a6f2da2f3c22c71cae0780103b4f7
[ "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
35,666
cc
// Copyright (c) 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/proxy_resolution/proxy_resolver_v8_tracing.h" #include <map> #include <set> #include <string> #include <utility> #include <vector> #in...
[ "sunny.nam@samsung.com" ]
sunny.nam@samsung.com
8fca3c33c698d77aebd750198eb9879fac6bee09
25ee3becee33b6b2e77f325fb35cda90e563530b
/luogu/2.cpp
9a09acdfd9d32d9d301090c1169869c7af6386ff
[]
no_license
roy4801/solved_problems
fe973d8eb13ac4ebbb3bc8504a10fb1259da8d7a
b0de694516823a3ee8af88932452f40c287e9d10
refs/heads/master
2023-08-16T21:43:11.108043
2023-08-16T14:25:12
2023-08-16T14:25:12
127,760,119
5
1
null
null
null
null
UTF-8
C++
false
false
2,504
cpp
#include <iostream> #include <algorithm> #include <cstdio> using namespace std; enum Gacha_type { G_SINGLE, G_MULTI }; enum State { S_NONE, S_SINGLE, S_MULTI }; bool judge(int perm[], const int size, const int contiSingle, const int singleGacha, const int multiGacha, const int numMulti) { int single = 0; int...
[ "a82611141@gmail.com" ]
a82611141@gmail.com
5f11e7a9cdc6846f0d6e08ff8b830fbe85e4db61
be2744f43865b43c3e9983a02e13426129b283c4
/Source/Engine/Graphics/Graphics_DX11PointerTypes.cpp
d17f71381cfb8d6ec62fa863497e071e4bea234d
[]
no_license
BryanRobertson/Alba
e94ef8f2b68c6f97023cbcf9ba977056fd38e739
cba532d0c7ef2631a240f70f07bf1d258867bb3a
refs/heads/master
2023-02-20T08:22:59.884655
2021-01-23T00:50:15
2021-01-23T00:50:15
112,042,539
0
0
null
null
null
null
UTF-8
C++
false
false
122
cpp
#include "Graphics_Precompile.hpp" #include "Graphics_DX11PointerTypes.hpp" namespace Alba { namespace Graphics { } }
[ "bryanericrobertson+github@gmail.com" ]
bryanericrobertson+github@gmail.com
3c2822a1a76e62a34e057409b79af928ce379001
99d1a4d39b57b132824bc0a17b962673e92caaa1
/CSacademy/CS Round 59/B.cpp
08e40899b9097ba7b8058dd21d128342b95a06e9
[]
no_license
SarotBu/SaBuZaContestStorage
3ef1fc128de3ec2b22d00a57bd94f4ffed53cad8
5533de541f5247e460056e6758d5ce80b5c458de
refs/heads/master
2021-08-23T02:50:42.935907
2017-12-02T17:53:04
2017-12-02T17:53:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
687
cpp
#include <bits/stdc++.h> using namespace std; #define MAXN 100005 int G1,G2,P1,P2; int bsearch(int l,int r,int w1){ int ret =0; while (l<=r){ int mid = (l+r)/2; int tmp = (100*w1 + 100*mid)/G2; if (tmp < P2){ l = mid + 1; }else if (tmp > P2){ r = mid - 1...
[ "sabuza97@gmail.com" ]
sabuza97@gmail.com
a6d4441cf621a68d102229b344d72ed56eb76c33
a55ef49d93a6251ba1a7c62fa3b738849ff1cb5a
/src/controller/renderer/LightRenderer.cpp
40d3d62c5a7801e54482e26f7119aff4bd047b99
[]
no_license
cansik/deep-vision-installation
b130c0e9a7d88a46a3d995e2ff21e6cc1c009568
197f801fbf0b6af1163dc33cb375a1da21eb0a7f
refs/heads/master
2021-06-27T09:15:45.288995
2020-12-29T12:16:02
2020-12-29T12:16:02
184,307,584
2
0
null
null
null
null
UTF-8
C++
false
false
982
cpp
// // Created by Florian on 06.12.17. // #include <model/light/Led.h> #include "LightRenderer.h" #include "../../util/MathUtils.h" LightRenderer::LightRenderer(Installation *installation, unsigned long frameRate) : TimeBasedController(frameRate, FRAMES_PER_SECOND) { this->installation = installation; } v...
[ "florian@bildspur.ch" ]
florian@bildspur.ch
d7aadf395193ceaac198f5041fab38605972a696
232411e5462f43b38abd3f0e8078e9acb5a9fde7
/devel/.private/rotors_comm/include/rotors_comm/OctomapRequest.h
708e76a42289e9a2db766fa1435872d4727b8637
[]
no_license
Fengaleng/feng_ws
34d8ee5c208f240c24539984bc9d692ddf1808f9
a9fa2e871a43146a3a85a0c0a9481793539654eb
refs/heads/main
2023-03-29T17:25:42.110485
2021-03-30T14:50:24
2021-03-30T14:50:24
353,034,507
0
0
null
null
null
null
UTF-8
C++
false
false
7,038
h
// Generated by gencpp from file rotors_comm/OctomapRequest.msg // DO NOT EDIT! #ifndef ROTORS_COMM_MESSAGE_OCTOMAPREQUEST_H #define ROTORS_COMM_MESSAGE_OCTOMAPREQUEST_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> ...
[ "chenfy1998@gmail.com" ]
chenfy1998@gmail.com
e22971c2d70ea79e40b59754401c71819ee93ea2
9b7821a450ea0f44000a3316fe79af3e61496bef
/MS5803.cpp
3d501db04f3388a9a54248bb7c7e47060ae81f40
[]
no_license
tdnet12434/arduino_baro_spi_library
e7b179a227920376c719da5b124cb0b43a59f3af
383498fe6b19f2688f662cc272a659975ad6cfd5
refs/heads/master
2020-12-31T07:20:36.059356
2016-05-20T09:49:45
2016-05-20T09:49:45
59,283,554
0
0
null
null
null
null
UTF-8
C++
false
false
12,113
cpp
// // MS5803.cpp // // This library is for reading and writing to the MS5803 pressure/temperature sensor. // // Created by Victor Konshin on 4/10/13. // // // Copyright (c) 2013, Victor Konshin, info@ayerware.com // for the DIY Dive Computer project www.diydivecomputer.com // All rights reserved. // ...
[ "paheyisoicus@gmail.com" ]
paheyisoicus@gmail.com
4649b3d9701d0e7bb1ea56d230696220f36a5a84
d99cf41a7a1733d8c9302a085eb0d67ff5c1e5a1
/fourthsemester/lab7/OutOfRange.h
7a60ff8f72397267ae1ea2ddb1a3336d59b377da
[]
no_license
Brouney/cpp_uniwersity
b86c87b314d1e6ed195b78048dbe6638149d220d
e11ba813fa30c2105e19596520eb0ffec8fc7cae
refs/heads/master
2021-06-16T19:34:40.516355
2021-02-17T18:02:41
2021-02-17T18:02:41
162,703,106
0
0
null
2020-06-18T18:49:55
2018-12-21T10:51:37
C++
UTF-8
C++
false
false
355
h
#pragma once #include <iostream> #include <string> class Factory; #include "Factory.h" class OutOfRange{ public: OutOfRange(Factory* fact,double val,std::string str); void CleanFactory(); friend std::ostream& operator <<(std::ostream& ostr,OutOfRange& exception); Factory* factory; doubl...
[ "noreply@github.com" ]
noreply@github.com
e1afca5a354a70ef5ff8fa02e29e1b181cf216a6
adc9a2c50d35bfb90a2de0db6b578e95633ce624
/Lab_12_3/Lab_12_3/lab_12.cpp
9d4964b584a72ce4bbff4ce8cf0db5712ab9a20d
[]
no_license
eugene-elk/C_Labs
a14f5b801b0e8c41d9ec3d3d2896b77354c9da46
1d1f43a500848bafbbbfd167885bad3455cc29b2
refs/heads/master
2023-03-31T21:22:15.168164
2019-01-08T16:22:30
2019-01-08T16:22:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
548
cpp
#include<stdio.h> // Course: Programming (C) // Lab 12. Input and output operations // Student: Lositsky E.I. Group: M3105 // Teacher: Povyshev V.V. // Created 29.11.2016 // Description: use the command line, read from a file int main(int argc, char** argv) { if (argc == 1) scanf("%s", argv[1]); FILE *in = fopen...
[ "elosyash239@gmail.com" ]
elosyash239@gmail.com
ba38411a272d9bbd3386530cb70ba8fd83d57fb7
d14b5d78b72711e4614808051c0364b7bd5d6d98
/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/PDB/Native/NativeSourceFile.h
c6653368bc0cee73ef4bb98ea1da2fafc01c44e4
[ "Apache-2.0" ]
permissive
google/swiftshader
76659addb1c12eb1477050fded1e7d067f2ed25b
5be49d4aef266ae6dcc95085e1e3011dad0e7eb7
refs/heads/master
2023-07-21T23:19:29.415159
2023-07-21T19:58:29
2023-07-21T20:50:19
62,297,898
1,981
306
Apache-2.0
2023-07-05T21:29:34
2016-06-30T09:25:24
C++
UTF-8
C++
false
false
1,382
h
//===- NativeSourceFile.h - Native source file implementation ---*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
[ "swiftshader-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
swiftshader-scoped@luci-project-accounts.iam.gserviceaccount.com
fc728e0d923a340eb4760d5227f2539552b90106
668ebb505f4d8932e67dfdd1b24a99edcd4d880e
/10864.cpp
217d11d767b126e65bf5d1ab580c66ee26ddbe96
[]
no_license
jpark1607/baekjoon_Cplusplus
06df940723ffb18ad142b267bae636e78ac610d8
8a1f4749d946bc256998ef9903098c8da6da1926
refs/heads/master
2021-07-13T03:47:29.002547
2021-07-11T14:01:10
2021-07-11T14:01:10
51,923,768
0
0
null
null
null
null
UTF-8
C++
false
false
275
cpp
#include <stdio.h> int main(void) { int nArr[1001] = {0, }; int N, M, i; int x, y; scanf("%d %d", &N, &M); for(i = 0; i < M; i++) { scanf("%d %d", &x, &y); nArr[x] += 1; nArr[y] += 1; } for(i = 1; i <= N; i++) { printf("%d\n", nArr[i]); } return 0; }
[ "jpark1607@gmail.com" ]
jpark1607@gmail.com
35d9d72b2207585e52e05f61d7d54b4b176bc73f
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/httpd/gumtree/httpd_repos_function_2861_httpd-2.3.6.cpp
c2432cf461d6a5f218881057564398d56db0329e
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,474
cpp
static const char *include_config (cmd_parms *cmd, void *dummy, const char *name) { ap_directive_t *conftree = NULL; const char *conffile, *error; unsigned *recursion; int optional = cmd->cmd->cmd_data ? 1 : 0; void *data; apr_pool_userdata_get(&data, "ap_incl...
[ "993273596@qq.com" ]
993273596@qq.com
0b3ff97653ff43ad47b5082f53d4df7a31e2ee7c
fae551eb54ab3a907ba13cf38aba1db288708d92
/chrome/browser/ash/borealis/borealis_disk_manager_dispatcher.cc
9a0edcaf9a39c2dbe0f6033a564ad8402c7b42af
[ "BSD-3-Clause" ]
permissive
xtblock/chromium
d4506722fc6e4c9bc04b54921a4382165d875f9a
5fe0705b86e692c65684cdb067d9b452cc5f063f
refs/heads/main
2023-04-26T18:34:42.207215
2021-05-27T04:45:24
2021-05-27T04:45:24
371,258,442
2
1
BSD-3-Clause
2021-05-27T05:36:28
2021-05-27T05:36:28
null
UTF-8
C++
false
false
3,193
cc
// Copyright 2021 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/ash/borealis/borealis_disk_manager_dispatcher.h" #include "chrome/browser/ash/borealis/borealis_disk_manager.h" #include "chrome...
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
a2938ea628946db0ccc44d2ebd39ea8f03464bc9
70b9b1c5a60179f6a6a16b02feef638bfe8f9445
/opencv/MFCApplication2.cpp
420574d34f7a8d846573e5fa3cfc211c64a987d5
[]
no_license
eddie9712/c-c-
d731e7410df1e3d4d53f86b32a6c460411c98839
46d15709965f3db42eba90f27fef808ecb4eab68
refs/heads/master
2020-03-28T22:28:09.095233
2020-02-27T12:37:41
2020-02-27T12:37:41
149,234,960
1
0
null
null
null
null
BIG5
C++
false
false
3,016
cpp
// MFCApplication2.cpp : 定義應用程式的類別行為。 // #include "stdafx.h" #include "MFCApplication2.h" #include "MFCApplication2Dlg.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CMFCApplication2App BEGIN_MESSAGE_MAP(CMFCApplication2App, CWinApp) ON_COMMAND(ID_HELP, &CWinApp::OnHelp) END_MESSAGE_MAP() ...
[ "qw1562435@gmail.com" ]
qw1562435@gmail.com
e5de6595b43aa7564a36de914fcd8cd36f4682c0
03c6ce32026cbc90d4fdf1fa34c219bbf795bccc
/VDraw/ordering/vNode.h
d0f56344d03fcbc7848545458fd1abb1f6bfc365
[]
no_license
zhangbo-tj/DynamicSketching
570d4f03608e1e7b910bc8bd9299d0b6a4537274
75b96b4484b08c13602ac81686981720d292a34c
refs/heads/master
2020-12-29T00:30:20.969954
2013-04-29T07:23:54
2013-04-29T07:23:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,086
h
#ifndef VNODE_H_351342151617124325 #define VNODE_H_351342151617124325 #include "Vec.h" #include <vector> #include <queue> #include "..\vCurve.h" // to draw #include <opencv/cv.h> #include <opencv/cxcore.h> // graph #ifndef Q_MOC_RUN #include "boost/graph/adjacency_list.hpp" #endif class vGraph; class vNode{ priv...
[ "ailewuyou@gmail.com" ]
ailewuyou@gmail.com
3fc05cdbe1e47e3b0960a975afe7042f8a69d749
c8687d68998dd09ed8949fe0ef5e4f0b0dd3ad4a
/HordeMode/Source/HordeMode/Private/States/SPlayerState.cpp
28d01685083b9b1bc7b4458247551f05abf36dd3
[]
no_license
jamiea483/HordeGame
8f6751c2baecf8a080d198d11dac4d951f032269
67ffb4f8bc8ea0f6a1d23d387df6bb4aa0f14789
refs/heads/master
2021-08-06T18:15:21.879094
2020-09-24T19:34:04
2020-09-24T19:34:04
213,255,205
0
0
null
null
null
null
UTF-8
C++
false
false
347
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "States/SPlayerState.h" #include "Net/UnrealNetwork.h" void ASPlayerState::GetLifetimeReplicatedProps(TArray< FLifetimeProperty > & OutLifetimeProps) const { Super::GetLifetimeReplicatedProps(OutLifetimeProps); DOREPLIFETIME...
[ "jamiea483@hotmail.com" ]
jamiea483@hotmail.com
8b2640cf2faf0f4c6259302f7c6b83b3fa045ede
b5002ee01603c8bc033e2650faba777c944dd9c7
/source/ui/sidebar/inference.cpp
051063f450f778ab1f641c57bb6ea62d138327db
[ "Apache-2.0", "MIT" ]
permissive
zhiayang/peirce-alpha
826b4783eb53d1f292aa643ddcc6efbf31eef3b3
49931a234ba173ed7ea4bdcca9949f28d64d7b4f
refs/heads/master
2023-04-15T04:31:39.575268
2021-05-04T18:53:12
2021-05-04T18:53:12
350,060,638
1
0
null
null
null
null
UTF-8
C++
false
false
4,783
cpp
// inference.cpp // Copyright (c) 2021, zhiayang // Licensed under the Apache License Version 2.0. #include "ui.h" #include "alpha.h" #include "imgui/imgui.h" namespace imgui = ImGui; using namespace alpha; namespace ui { Styler flash_style(int button); char* get_prop_name(); size_t get_prop_capacity(); Styler ...
[ "zhiayang@nascentnoodle.com" ]
zhiayang@nascentnoodle.com
6c8906bb06131ea2e031654c63425a49bf0bc9bb
e858606ccacb9a78bfb48ca90b56d9469cff7a09
/RImageBook/src/thirdparty/x64/VTK/include/vtkShaderCodeLibrary.h
1f2f302a06646f176b0d5f2e81e618011c4b1fc4
[]
no_license
tkatsuki/rimagebook
51f41166e98d442f7b9e2226b65046586f95dfc8
d26a1502faf39804bf8cb06d1699de24e6d53d58
refs/heads/master
2021-01-19T17:59:07.539596
2015-06-29T21:12:57
2015-06-29T21:12:57
38,264,836
1
2
null
null
null
null
UTF-8
C++
false
false
2,599
h
/*========================================================================= Program: Visualization Toolkit Module: vtkShaderCodeLibrary.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. Th...
[ "yhourai@gmail.com" ]
yhourai@gmail.com
1d07bacdfc0fad95ad638fdcc975b8561aeef86e
1aa9e37e693d797bd72d29e29863fdc4c6667d01
/src/content/browser/renderer_host/media/video_capture_controller.h
1ab04ceb03832d167c6b1cc27e02f055cd81ba43
[ "Apache-2.0" ]
permissive
jgj212/osv-free
d22a6b27c7bee399873d8d53db711a5ab0d831a5
b81fee48bc8898fdc641a2e3c227957ed7e6445e
refs/heads/master
2020-03-25T08:43:08.483119
2018-02-28T14:19:13
2018-02-28T14:19:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,534
h
// 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. #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_CONTROLLER_H_ #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_CONTROLLER_H_ #incl...
[ "ygl@tamu.edu" ]
ygl@tamu.edu
e2608376691790fe3c0f160f50446c88b24b47a3
d15b49fce4b3f1a5e5c39a29b8ef86936bd02112
/Math Show.cpp
36acbae4e1531daa88a4402db40acd8a142afdf0
[]
no_license
ailyanlu1/Competitive-Programming-Solutions
45ad3e6a7812f6cac126463f7c1391566f2d4ec7
9016c740e18928be38b67470e125359058c203a5
refs/heads/master
2020-03-26T13:03:47.201438
2018-08-15T04:10:59
2018-08-15T04:10:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
959
cpp
#include <bits/stdc++.h> #define ll long long #define INF 0x3f3f3f3f #define MAXN 110 #define pii pair<int, int> #define mp make_pair #define f first #define s second #define vi vector<int> #define pb push_back #define max(a, b) (a) < (b) ? (b) : (a) #define min(a, b) (a) < (b) ? (a) : (b) int n, k, M, t[MAXN]; ll amo...
[ "noreply@github.com" ]
noreply@github.com
94b989b20dfd40a44693349e098d540638dbf0be
ff3c9c264eed5ea19da08825a4531d9ae975c09c
/_site/tutorial/cpp/exemplos/vetor2d.cpp
4fba8ce968d2fa97682afa2e378d702873f4d529
[ "MIT" ]
permissive
agostinhobritojr/agostinhobritojr.github.io
a9ca0562aa83679ac94a4232924fdcc5afe24c11
2778002c29f1f376adb12ed5f37e18990478a363
refs/heads/master
2023-05-26T15:32:39.258165
2023-05-22T18:17:35
2023-05-22T18:17:35
145,466,097
3
6
NOASSERTION
2023-02-01T22:32:39
2018-08-20T20:16:50
HTML
UTF-8
C++
false
false
233
cpp
#include <iostream> #include "vetor2d.hpp" using namespace std; void Vetor2d::setX(float x_){ x = x_; } float Vetor2d::getX(void){ return x; } void Vetor2d::setY(float y_){ y = y_; } float Vetor2d::getY(void){ return y; }
[ "agostinhobritojr@gmail.com" ]
agostinhobritojr@gmail.com
aa5e29481648cee35b93fe8a3960a178a5f37af6
141afafcbdd8eed80094dd7a827a75990f14e47d
/NQueens.cpp
aaf798d26d5c899932bfaf7d0667ca511b39a0a2
[]
no_license
iAbhyuday/playground
fb327843263e301e0053a45c63c68e60604a6539
1a8ee080fe60dac1e0449574a0a101e9cf456044
refs/heads/master
2022-03-28T08:52:00.428575
2020-01-12T15:17:34
2020-01-12T15:17:34
142,501,447
0
0
null
null
null
null
UTF-8
C++
false
false
1,275
cpp
#include<iostream> #include<vector> #include<list> #include<set> using namespace std; bool Safe(bool board[12][12] ,int r,int c ,int n){ // column check for(int row=0;row<r;row++){ if(board[row][c]) return false;} // left diagonal check int x=r,y=c; while(x>=0 && y>=0){ if(board[x][y]) ...
[ "noreply@github.com" ]
noreply@github.com
173676d4fb56624ebd0e31c0bde7524e1cff1e64
9185ec6429d843816ec90da8d2249e3ba18ac6f1
/SPS/adminPanal.cpp
64b5fcb03cb157b81e54bcbfbb74067f74f83038
[]
no_license
tarqmamdouh/StudentPrerequisiteSystem
e15f7b8f64930ee44199f8223dea352075db438e
5e7f7490da479714387e2b3bd40af8e7a9983a1e
refs/heads/master
2020-12-02T18:15:26.493714
2017-07-07T06:22:02
2017-07-07T06:22:02
96,505,329
0
0
null
null
null
null
UTF-8
C++
false
false
27
cpp
#include "adminPanal.h"
[ "tarq.mamdouh1996@gmail.com" ]
tarq.mamdouh1996@gmail.com
ccd908cc276e1d0a66f39b216175040026873e5e
50f29ccc5e88488650735ab0f79330b44ac1ba6b
/sodium/node.h
dca9f76db87301a406ba66c90082d32309206175
[]
no_license
clinuxrulz/na-cxx
ef35e3b8de2daef2d1a53d56726a240328e5b08a
20bea1a5880ac1429b8e0122ee0314c5da268237
refs/heads/master
2021-01-25T11:49:00.817170
2018-03-01T12:42:21
2018-03-01T12:42:21
123,433,491
0
0
null
null
null
null
UTF-8
C++
false
false
140
h
#ifndef _SODIUM_NODE_H_ #define _SODIUM_NODE_H_ namespace sodium { struct Source; struct Node; } // end namespace sodium #endif
[ "clinuxrulz@gmail.com" ]
clinuxrulz@gmail.com
87c53ed2cc7458d4ef3b6b2af25a22e97d9173c5
e862f48c627b8effec2a25b37c590ca4f2649fc0
/branches/ming_branches/spectrallibrary/MappedSpecnets.cpp
ae695fee56a0cc04abd889f57c22a9292d6b4007
[]
no_license
Bandeira/sps
ec82a77c315cf1aff9761c801d1dc63cb5c5e9f0
1809945c9e5a6836a753a434d2c8570941130021
refs/heads/master
2016-09-01T08:18:34.221603
2015-12-10T23:56:52
2015-12-10T23:56:52
47,741,477
0
0
null
null
null
null
UTF-8
C++
false
false
26,265
cpp
/* * MappedSpecnets.cpp * * Created on: Mar 2, 2011 * Author: aguthals */ #include "MappedSpecnets.h" namespace specnets { MappedSpecnets::MappedSpecnets(void) { contigs = new vector<MappedContig> ; spectra = new vector<MappedSpectrum> ; } MappedSpecnets::~MappedSpecnets(void) { del...
[ "ming@localhost" ]
ming@localhost
facdf4864dca62b91b9e97829d9d2561c0a272ba
b7880e3193f43e1a2f67b254f16d76d485cf3f46
/src/urn_jaus_jss_mobility_LocalWaypointListDriver_1_0/Messages/Shutdown.cpp
5481188aa714b647d77d026dc256164e84f6a5e8
[]
no_license
davidhodo/libJAUS
49e09c860c58f615c9b4cf88844caf2257e51d99
b034c614555478540ac2565812af94db44b54aeb
refs/heads/master
2020-05-15T17:44:55.910342
2012-01-18T20:33:41
2012-01-18T20:33:41
3,209,499
0
0
null
null
null
null
UTF-8
C++
false
false
6,163
cpp
#include "urn_jaus_jss_mobility_LocalWaypointListDriver_1_0/Messages/Shutdown.h" namespace urn_jaus_jss_mobility_LocalWaypointListDriver_1_0 { void Shutdown::AppHeader::HeaderRec::setParent(AppHeader* parent) { m_parent = parent; } void Shutdown::AppHeader::HeaderRec::setParentPresenceVector() { if(m_parent != NUL...
[ "david.hodo@gmail.com" ]
david.hodo@gmail.com
6cdcc2eacde738cafd2a7a8e29e508f8c1172e85
e2a24d5eac51c7db68d99fde0e2f2155c2d25171
/src/function/SRT.hpp
e41c1cdc4aa2ee05f2c65beb4e38df19cf56b1b0
[ "LicenseRef-scancode-warranty-disclaimer", "Apache-2.0" ]
permissive
Alexxu1024/Backup_kanzi
d1638c4300b3f3264a873c3a84ea67475ca77404
441c6f5f05c65df3374009abc08dc418c3b741ab
refs/heads/master
2020-07-26T03:15:06.262106
2019-08-31T22:55:15
2019-08-31T22:55:15
208,516,855
0
0
null
null
null
null
UTF-8
C++
false
false
1,392
hpp
/* Copyright 2011-2017 Frederic Langlet Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. you may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in ...
[ "flanglet@gmail.com" ]
flanglet@gmail.com
b26f837fac011c9b4cf0da455fe76faaf9b5f4c7
424d9d65e27cd204cc22e39da3a13710b163f4e7
/services/network/quic_transport_unittest.cc
07243209c997ca2ee352b2a343ab83c0b393f5f1
[ "BSD-3-Clause" ]
permissive
bigben0123/chromium
7c5f4624ef2dacfaf010203b60f307d4b8e8e76d
83d9cd5e98b65686d06368f18b4835adbab76d89
refs/heads/master
2023-01-10T11:02:26.202776
2020-10-30T09:47:16
2020-10-30T09:47:16
275,543,782
0
0
BSD-3-Clause
2020-10-30T09:47:18
2020-06-28T08:45:11
null
UTF-8
C++
false
false
25,323
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/network/quic_transport.h" #include <set> #include <vector> #include "base/rand_util.h" #include "base/stl_util.h" #include "base/test...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
caeafdb5470cb11794d579ccb29ee520361903ee
ddf8a06d056013ba77702bc10db26b58bac1c6fb
/Plane.cpp
818b79715d2fd758e5d0374a1233ea133cca400f
[]
no_license
HaoBruceLi/Ray-Tracer-in-Space
ece00d1176f541c727892ca24aea478404a42526
e47fbd07600ed365f29bf9b8ceaa85b362d62855
refs/heads/master
2022-12-17T16:10:49.821850
2020-09-13T03:31:04
2020-09-13T03:31:04
295,070,365
0
0
null
null
null
null
UTF-8
C++
false
false
1,945
cpp
/*---------------------------------------------------------- * COSC363 Ray Tracer * * The Plane class * This is a subclass of Object, and hence implements the * methods intersect() and normal(). -------------------------------------------------------------*/ #include "Plane.h" #include <math.h> /** ...
[ "noreply@github.com" ]
noreply@github.com
111a7ea7a5aa6667d28006fd3a4ba3a868198ad2
4b74bf216975b69cd829a15873ecc00a22cfa8d0
/RGFP/hardware/RFU/arith_PE.h
307f575ef5afc65721d16f02e994aadb451466bf
[]
no_license
GbuHti/Reconfigurable-DSP
b33315c14feba483bc62f4dd0879bf07eae559ef
e53194d8cb297630d2ffa70810cdc5c2d29b6c84
refs/heads/master
2021-07-17T11:49:14.829158
2020-06-02T05:56:12
2020-06-02T05:56:12
171,831,775
0
0
null
null
null
null
UTF-8
C++
false
false
3,926
h
#ifndef ARTITH_PE_H #define ARITH_PE_H #include "systemc.h" #include "tlm_utils/simple_target_socket.h" #include "tlm_utils/simple_initiator_socket.h" #include "tlm_utils/peq_with_get.h" #include "contextreg_if.h" #include "define.h" #include "slcs_if.h" #include <queue> using namespace std; using namespace sc_core...
[ "wdz@localhost.localdomain" ]
wdz@localhost.localdomain
604c397acf4cce5042d6997b6306820eb57c23bf
88927308022e14eb42970ee5229fa70e033ff13e
/cropzoomwidget.cpp
bf38cafbd71ba47460961769ad2aafae9292a752
[]
no_license
AugusteBonnin/CRACKS
160734c75f68205bec12375c3134bc5b77594827
640bae01933ceb162c326147c6f5d0ba4836f3f7
refs/heads/master
2022-02-24T07:57:20.607051
2022-02-05T10:16:45
2022-02-05T10:16:45
73,822,848
0
0
null
null
null
null
UTF-8
C++
false
false
1,174
cpp
#include "cropzoomwidget.h" #include <QMouseEvent> CropZoomWidget::CropZoomWidget(Form *parent) : CropQuadWidget(parent) { connect(this,SIGNAL(POIchanged(QPoint)),this,SLOT(updatePOI(QPoint))); } QSize CropZoomWidget::sizeHint() const { return QSize(256,256); } QSize CropZoomWidget::minimumSizeHint() const {...
[ "auguste.bonnin@free.fr" ]
auguste.bonnin@free.fr
bfaff9d3eed7a7cfe623aeb9e6de3aa3e3858400
a2ad4dcbe9960f9acb87f7e5bbc4cb312e1644f9
/CF 705A - Hulk.cpp
a220997dfa96a99f4af417a20c5bc51a34e5fd8a
[]
no_license
shakib75bd/CF-easy-Solutions
4d5c2f85a5990ce8fa943b64d46968948459a923
6d6050443ea1e3029285c526e7ec11475d63e737
refs/heads/master
2022-12-20T12:12:52.031285
2020-10-27T08:22:52
2020-10-27T08:22:52
282,594,969
1
0
null
null
null
null
UTF-8
C++
false
false
672
cpp
// ––=‹‹BISMILLAHITR RAHMANIR RAHIM››=–– // Problem name: CF 705A - Hulk // Lang: C++ // ©: _Shakib Hossen Shanto _ CSE Dept__Begum Rokeya University,Rangpur #include<bits/stdc++.h> using namespace std; #define uns unsigned #define ll long long #define dl double #define st string #define ch char #defin...
[ "noreply@github.com" ]
noreply@github.com
4364d4e2e518278757524d9366377407290793fa
fa826f1d5be334065f4699abd71c681475e2885e
/The 81 part 4/sum_of_distances_from_one_node_to_all_other_nodes.cpp
92defa7d384e5297885835cd3801a170a75e5530
[]
no_license
Touhidul121/All_code4
b66407b57c99154c54702322df73dc0570a84c09
c4671d09e02712dbaad4a64e2010bdbe5a612e86
refs/heads/main
2023-01-06T20:06:56.184895
2020-10-26T19:57:05
2020-10-26T19:57:05
307,488,246
0
0
null
null
null
null
UTF-8
C++
false
false
1,028
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxN = 2e5+1; vector<int>adj[maxN]; vector<ll>ans(maxN,0); vector<ll>cnt(maxN,1); int n; void dfs1(int node, int parent) { for(int child:adj[node]) { if (child != parent) { dfs1(child, node); ...
[ "60749211+Touhidul121@users.noreply.github.com" ]
60749211+Touhidul121@users.noreply.github.com
bef8e44c84cb75e28611c5d5e34e68ee2fdc1729
104a193527bc263482ea634842c15ec813a99c0f
/src/io/wavefront_mtl_io.cpp
d12f6551a3fdc5ad9a64730ce720aa50ab6e73f4
[ "MIT" ]
permissive
channotation/chap
d33b3a298ffd65b946a069c78baf8502c03271c9
1d137bfba9e0e9c4ed7dff016ccb0418834daac4
refs/heads/master
2022-10-26T16:45:56.138277
2022-03-02T22:33:51
2022-03-02T22:33:51
121,681,474
15
8
NOASSERTION
2022-10-05T23:43:00
2018-02-15T20:52:49
C++
UTF-8
C++
false
false
3,444
cpp
// CHAP - The Channel Annotation Package // // Copyright (c) 2016 - 2018 Gianni Klesse, Shanlin Rao, Mark S. P. Sansom, and // Stephen J. Tucker // // 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 th...
[ "gianni.klesse@gmx.de" ]
gianni.klesse@gmx.de
c353f808d3f9f42c22c7a7595476a6a132bb048e
ae9e57d255ffbbaf8cb4d3f61b4278eb4a2eccad
/MovSemantics2.cpp
abc392840f5165a20fd2449b639180d44136d118
[]
no_license
tv-sandeep/MoveSemantics
8a1d5cb1b70799b3081ed785801557c0bf8b1e99
3218564c6858a0a4921dcf6ef78bf50666eebd21
refs/heads/master
2022-12-02T02:15:14.552218
2020-08-14T19:00:37
2020-08-14T19:00:37
287,579,152
1
0
null
null
null
null
UTF-8
C++
false
false
876
cpp
#include "Header.h" class MyString1 { public: MyString1() = default; MyString1(const char* String) { printf("Created\n"); m_Size = strlen(String); m_data = new char[m_Size + 1]; strcpy_s(m_data, m_Size + 1, String); } MyString1(const MyString1& RHS) { printf("Copy constructor\n"); m_Size ...
[ "venkatasandeept@gmail.com" ]
venkatasandeept@gmail.com
a5e8a2d5637bc35ccfa584a210dcc4b4de8eb928
21a9b7ce603e75f4211a7882141f128239bf169e
/src/cryptonote_basic/checkpoints.h
ec432a1ceff4fb5e647f9e76496dcd4f7f57a2f3
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
bizunionchain/pango
5d6f31e5d02363f96686f93d1aa7bbac989d0e4b
a13ee7155de359d4b7ea6b070c5a34186ee37a08
refs/heads/master
2020-03-21T04:34:15.680618
2018-06-21T05:53:59
2018-06-21T05:53:59
138,115,385
0
0
null
null
null
null
UTF-8
C++
false
false
7,673
h
// Copyright (c) 2014-2017, The BUC Project // // All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, are // permitted provided that the following conditions are met: // // 1. Redistributions of source code must retain the above copyright notice, this list of // ...
[ "gonghuan98@163.com" ]
gonghuan98@163.com