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
01f7138b13532ad1c64d9d7bbd621a9be014ce33
bff757517d48e1964c1c5ae7c88dd9a2d2a5a0f9
/Copy-paste.cpp
8f0744fcdcf6e41523be5d5e06edf5ca96331b04
[]
no_license
firoze-hossain/CodeForces-1
c8f98c546c142b7c19ec0d3c23b10f00d3c88aad
4e6a0a23f0ce542d3e3f061eb9001d1853f26c08
refs/heads/master
2023-06-26T05:50:53.589258
2021-07-30T14:47:28
2021-07-30T14:47:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
604
cpp
#include <iostream> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int t; cin>>t; for (int i = 0; i < t; ++i) { int n,k; cin>>n>>k; int ar[n]; for (int j = 0; j < n; ++j) { cin>>ar[j]; } int maxEl=-1; ...
[ "54479676+CormacKrum@users.noreply.github.com" ]
54479676+CormacKrum@users.noreply.github.com
80c2d26b5d093161c28efbf3fe867de53fa4baa3
a084484005b7e37e166c067ea54f22afd24e4be9
/Project2/Project2/Set.h
93720217c8fc0bcee56ff5afb813a285ddf79844
[]
no_license
leogretz2/CS32
c3f6e0ffc676bb2c927866784614783e4f66aae5
9e95f7fb84aee9b35ebaa486c0038e8c5dce4f7f
refs/heads/master
2020-05-22T21:01:52.909800
2019-05-14T02:08:17
2019-05-14T02:08:17
186,520,559
0
0
null
null
null
null
UTF-8
C++
false
false
1,864
h
#ifndef NEWSET_H #define NEWSET_H #include <string> #include <iostream> using ItemType = std::string; const int DEFAULT_MAX_ITEMS = 250; class Set { public: Set(); // Create an empty set (i.e., one with no items). Set(const Set& other); ~Set(); Set& operator=(const Set& rhs); ...
[ "noreply@github.com" ]
noreply@github.com
cbd7708319122caf938614153c68323643ee5137
2a9390355be52ed3faf56d345846e564961980ea
/practice/array.cpp
ab59365977ce4599738105625e2988f167a4b944
[]
no_license
Anshulguptag/Data-Structures
44890900bc49f2a752a10528c6279d4aafc17bc5
3ca979418f30278a2227ac3eabbe6cf21ec6c3aa
refs/heads/master
2020-03-22T01:56:48.315518
2018-08-10T06:06:04
2018-08-10T06:06:04
139,340,074
0
0
null
null
null
null
UTF-8
C++
false
false
2,039
cpp
#include<bits/stdc++.h> using namespace std; double sum(vector<int> A,int start,int end) { double sum = 0; for(int i=start;i<end;i++) { if(A[i]>=0) sum = sum+A[i]; } return sum; } vector<int> maxset(vector<int> &A) { int i; vector<int> temp; for(i=0;i<A.size();i++) ...
[ "anshulguptamasteramazon@gmail.com" ]
anshulguptamasteramazon@gmail.com
983b2ea4a931a81b3f40ddd596555a84b7da3b1f
590f586058538edd13c4f2d1c864a05b6ead1ee0
/Lucky Division.cpp
e0dd9172ab23378a2e0edc49cbf2552f7a16bf52
[]
no_license
srb2719/Competitive-programming
8940f1cc3aa79952d3f224e83b1ab9bc9265abd4
81c333837a60108842d8c23fe93963ebbfc6713a
refs/heads/master
2020-05-18T04:46:15.205446
2019-04-30T03:17:19
2019-04-30T03:17:19
184,182,686
0
0
null
null
null
null
UTF-8
C++
false
false
509
cpp
#include<bits/stdc++.h> #include<vector> #include<string> #include<set> #include<algorithm> using namespace std; int main() { string n; cin>>n; int flag = 0; for(int i=0; i<n.length(); i++) { if(n[i] == '4' || n[i] == '7') { flag = 0 ; } else { flag = 1; break; } } ...
[ "noreply@github.com" ]
noreply@github.com
6143b87a21d13b83f9c8fe0885a583cefd081c99
e5c6f0782cb49bd49e6c6015b477db7d6aee0481
/application.h
67e66c541b5aeef6ad34c2631704406389317c9e
[]
no_license
hu602271981/QT
768d9073d0dc2e21c0ed8ddb219018081f623b87
88095101e7ae3118c4e36861eb879185077ea599
refs/heads/master
2020-12-02T10:04:37.713457
2017-07-09T14:20:21
2017-07-09T14:20:21
96,688,189
0
0
null
null
null
null
UTF-8
C++
false
false
445
h
#ifndef APPLICATION_H #define APPLICATION_H #include <QApplication> #include <screensaver.h> #include <QDebug> #include <QTimer> //application重写 class Application : public QApplication { public : Application (int & argc, char ** argv); bool notify(QObject *, QEvent *); void setWindowInstence (ScreenSave...
[ "noreply@github.com" ]
noreply@github.com
f7663c9323d288d68ed5b4e2db29c1984dfa4241
54ead317ee9feb62a8176ba8a43822d24ac79ef0
/main.cpp
0d3e6b2770f64090f4109efeb4df0fb37238a13d
[]
no_license
ytl0623/1091-System-Programmnig-Cross-Assembler
68ea7bfd6b54ace928c708afeb8f588048e13702
328cf3a5ac404bdcdeb7e000946b09945ac25b17
refs/heads/main
2023-06-16T06:38:33.715122
2021-07-01T16:52:20
2021-07-01T16:52:20
382,099,480
0
0
null
null
null
null
UTF-8
C++
false
false
1,458
cpp
# include <iostream> # include <fstream> # include <cstdio> # include <stdio.h> # include <cstdlib> # include <stdlib.h> # include <cstring> # include <string.h> # include <cmath> # include <math.h> # include <time.h> # include <vector> # include <stack> # include <queue> # include <iomanip> # include <s...
[ "noreply@github.com" ]
noreply@github.com
2b4e3c50f826896b1ef42993e2a3373c5ac407f0
1dd080a31d885c2bac39d7066ccc09e5b221f879
/planet.cpp
b15f943ff81de528918bb7dfb59d519f39aa2e68
[]
no_license
celestialphineas/SolarSys
552af09a022c1bb48c057ea54eea1ad45c693e49
716c2eff40b0fed6f5d3d28d9cd795f20bb03520
refs/heads/master
2021-08-14T15:20:32.555761
2017-11-16T03:37:23
2017-11-16T03:37:23
108,384,413
0
0
null
null
null
null
UTF-8
C++
false
false
3,180
cpp
#include "planet.h" void Planet::update(float time_) { x = parent->x + semi_majoraxis*cos(deg2rad(orbit_epoch_offset) + time_/orbit_period*2*M_PI); y = parent->y + semi_majoraxis*sin(deg2rad(orbit_epoch_offset) + time_/orbit_period*2*M_PI); z = 0.f; rotation_about_axis = rotatio...
[ "hanghang0713@hotmail.com" ]
hanghang0713@hotmail.com
e955f03d381b79e49f78969d3acd01dc5dfd22d1
6d78f273c2b9a3c75a117ae04e506bc31ae34b7e
/include/internal/AvatarHelpers.h
e732dd6a8ab3936caaa2461d1fd2307dd3fcdefe
[ "Apache-2.0" ]
permissive
UCAS-IIGROUP/avatar
22687d558b7b67d215bdea46fe288d3a25a0ca70
e08ca9629ecda301f19a6686b4d5c0bc87971075
refs/heads/master
2023-05-11T10:00:27.823500
2021-05-20T19:59:48
2021-05-20T19:59:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,674
h
#pragma once #include <utility> #include <algorithm> #include <vector> #include <Eigen/Core> #include <opencv2/core.hpp> namespace ark { /** Hand-written faster function to load a saved PCL point cloud directly * into an Eigen vector, where points are stored: x1 y1 z1 x2 y2 z2 ... * The reason we flatten the clo...
[ "sxyu@berkeley.edu" ]
sxyu@berkeley.edu
9ced34c7ea686ccfb5b86ff6e087835cc39f71b7
6bbee2a1f319c06a140b0afe80806f4d3608fc3a
/birrt_star_algorithm/include/birrt_star_algorithm/birrt_star.h
4e2ac30bf0032a611c60726ea310fa4cb931d4e6
[]
no_license
yt100323/robot_motion_planning
39abea8dd22fb961999db3381d57879b700e8548
f625c65017ba6098b693fa3b5dac3ab64f5862f5
refs/heads/master
2020-05-23T13:45:19.969390
2017-01-23T12:42:59
2017-01-23T12:42:59
84,773,583
0
1
null
2017-03-13T02:02:26
2017-03-13T02:02:26
null
UTF-8
C++
false
false
21,250
h
/* * birrt_star.h * * Created on: July 06, 2015 * Author: Felix Burget */ // --- Includes -- #include <ros/ros.h> #include <planner_data_structures/data_structs.h> #include <kuka_motion_control/control_laws.h> #include <validity_checker/feasibility_checker.h> #include <planning_heuristics/distance_heurist...
[ "burgetf@informatik.uni-freiburg.de" ]
burgetf@informatik.uni-freiburg.de
861a545ba3024e89a46c5b84fe89a50c3b59cde7
74b88b5195fb8696a84eff08dbe6fc658c7e712c
/GOESP/Hacks/ESP.cpp
66adb7b9d18b1f533e4eabb2629d458be758cbf5
[ "MIT" ]
permissive
guotengfff/GOESP
31dbe906d387bbbb2689b11dca5443ce279756cb
5aff1e67ccf64a2d39e264a5cf42dfd67400d7d9
refs/heads/master
2021-04-10T17:41:40.167782
2020-03-19T14:37:27
2020-03-19T14:37:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
21,346
cpp
#define NOMINMAX #include "ESP.h" #include "../imgui/imgui.h" #include "../imgui/imgui_internal.h" #include "../Config.h" #include "../Helpers.h" #include "../Interfaces.h" #include "../Memory.h" #include "../SDK/ClassId.h" #include "../SDK/Engine.h" #include "../SDK/Entity.h" #include "../SDK/EntityList.h" #include ...
[ "danielkrupinski@outlook.com" ]
danielkrupinski@outlook.com
9f9fa3c8c17d7abfb6537f5c20073263a31ebe6f
f6e3e9dd43d13d069631339cc49cfc4455c0b984
/cryptonote/src/Logging/CommonLogger.cpp
8c7f561f2f3553ab53995c0e74947c140850acf5
[ "MIT" ]
permissive
gmin/safenetspace2
0076c9a08a8964f34f94e0b6bdc15784a9a8c483
869f53fb85c7c34cd45d9fea3a3658421ba58dda
refs/heads/master
2021-08-18T21:59:06.064389
2017-11-24T02:20:05
2017-11-24T02:20:05
102,718,693
0
0
null
2017-09-07T09:30:35
2017-09-07T09:30:35
null
UTF-8
C++
false
false
2,147
cpp
// Copyright (c) 2014-2016 XDN developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "CommonLogger.h" namespace Logging { namespace { std::string formatPattern(const std::string& pattern, const s...
[ "guom@bankledger.com" ]
guom@bankledger.com
05bf7a567edc0eac4993e0f87dbfc6973b599406
dff8a221638932704df714b30df53de003342571
/ch17/main.cpp
8468996992b1f32e3010d54213733a141217ce45
[]
no_license
DevinChang/cpp
1327da268cbbde4981c055c2e98301d63e9ca46b
f35ee6f7b2d9217bd2d40db55a697330aeffc7e8
refs/heads/master
2021-01-20T13:55:55.399888
2017-05-18T08:01:15
2017-05-18T08:01:15
90,538,499
3
0
null
null
null
null
UTF-8
C++
false
false
719
cpp
#include "ex17_4_5.h" #include <bitset> #include "ex17_11.h" int main2() { //ex17_10 std::cout << "ex17_10: " << std::endl; std::vector<int> iv{ 1, 2, 3, 5, 8, 13, 21 }; std::bitset<32> bit; for (auto p : iv) bit.set(p); std::cout << bit << std::endl; //ex17_11 std::cout << "ex17_11: " << std::endl; std:...
[ "DevinChang@126.com" ]
DevinChang@126.com
1ff507492fa0cbd1ec924d3c904951b8fd6012d8
6fa0a0cfc80b08b11bdfcfa8ed6cf8cbae8b1c5d
/mlir/lib/ExecutionEngine/SparseTensor/NNZ.cpp
eb110def4402c9c7c02f154e52f6ad634e9f7bb0
[ "LLVM-exception", "Apache-2.0", "NCSA" ]
permissive
WangLuofan/llvm-project
2a9d10924d48e157f64c23a8e1320cc0b1c406ea
87549e61dae5c1cbb8ef590058aa93053ded481d
refs/heads/main
2022-11-22T22:26:22.368740
2022-10-21T14:22:26
2022-10-21T14:23:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,489
cpp
//===- NNZ.cpp - NNZ-statistics for direct sparse2sparse conversion -------===// // // 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 // //===---------------------------...
[ "2998727+wrengr@users.noreply.github.com" ]
2998727+wrengr@users.noreply.github.com
1e6b9edf99e86af237dab3eb508f04f095dc387c
e1f82ab09d881b4bff7d77064b376c581becd3f5
/UNO/hc165/hc165.ino
b8eb8e3cf9e31705cce8100793a40b834bfd4437
[]
no_license
52manhua/mydruino
ee1195680ee649c477de93eae144043a068b8ae4
e9d4e4f2ced18fd39025d1ff02e3fd1c4265c556
refs/heads/master
2021-01-15T21:19:09.695558
2017-11-08T02:41:58
2017-11-08T02:41:58
99,858,803
0
0
null
null
null
null
UTF-8
C++
false
false
4,021
ino
/* * SN74HC165N_shift_reg * * Program to shift in the bit values from a SN74HC165N 8-bit * parallel-in/serial-out shift register. * * This sketch demonstrates reading in 16 digital states from a * pair of daisy-chained SN74HC165N shift registers while using * only 4 digital pins on the Arduino. * * You can da...
[ "top355@yopmail.com" ]
top355@yopmail.com
6d67601dc52fe62d48c9c6efc6a66b75c7574e3b
12246ea976ff53b4b947b8e51a1327fa0bf5081b
/Comparison/main.cpp
bb1af504995d3c46f8abf5a640ce2a9cd2624060
[]
no_license
Ligvest/Learning.STL
3abcfcf99c4ba505438f52387b5e24407944bddd
ed7634eec6bf1a7ac3ced46c0dd3adb5f88bc668
refs/heads/master
2020-03-27T23:31:28.692500
2018-09-04T09:57:47
2018-09-04T09:57:47
147,324,920
0
0
null
null
null
null
UTF-8
C++
false
false
337
cpp
#include <iostream> #include <array> int main() { std::array<int, 4> arr = { 1,56,18,7 }; std::array<int, 4> arr2 = { 1,55,190,8 }; bool result = (arr == arr2); std::cout << "(arr == arr2) = " << result << std::endl; result = (arr > arr2); std::cout << "(arr > arr2) = " << result << std::endl; system("paus...
[ "Dovzhik.Anatoly@gmail.com" ]
Dovzhik.Anatoly@gmail.com
924c387fbf97c71024ec7054f5694c33455a5b85
d1c817808f6b34875e3d3d15c881f257248596ca
/pbdata/alignment/CmpAlignment.hpp
056b142ab7e50b624bdb44f474c2ee7a797b15ae
[]
no_license
mchaisso/pbsamstream
09e0be7fa3300a2d47f0b5149c7036573d7ea978
44f22d2c9f33d976677682dd29ae39fcb1d1d17c
refs/heads/master
2021-09-16T15:24:09.208501
2018-06-21T20:36:53
2018-06-21T20:36:53
110,061,502
4
0
null
2018-05-18T14:34:17
2017-11-09T03:16:26
C++
UTF-8
C++
false
false
3,010
hpp
#ifndef DATASTRUCTURES_ALIGNMENT_CMP_ALIGNMENT_H_ #define DATASTRUCTURES_ALIGNMENT_CMP_ALIGNMENT_H_ #include <cassert> #include <algorithm> #include <iostream> #include <map> #include <string> #include <vector> #include "../Enumerations.h" #include "../Types.h" class CmpAlignmentBase { public: // // For use i...
[ "mchaisso@usc.edu" ]
mchaisso@usc.edu
f919dc1a96f1ac8000cc3548ea84472e5206156f
97b629e9bd4ff54f65d6d9eb2e0f2db3d8b71129
/src/clientversion.h
d25e3ee7705aaeaa5c8da9d4fa0c5471d69cd85b
[ "MIT" ]
permissive
vencoin1/Vencoin
825bb990b39894fd79dd8170fdda688236ea7a36
d21154b5d8faf3d77421e1272974b27bc3094777
refs/heads/master
2020-05-01T04:03:37.080759
2019-03-23T08:27:06
2019-03-23T08:27:06
175,571,766
0
0
null
null
null
null
UTF-8
C++
false
false
2,064
h
// Copyright (c) 2009-2014 The Bitcoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CLIENTVERSION_H #define BITCOIN_CLIENTVERSION_H #if defined(HAVE_CONFIG_H) #include "config/venture-config.h" #el...
[ "vencoin@yandex.com" ]
vencoin@yandex.com
746f4b6c97c321a44e9d77f3211be8886b690d8b
9d86e3d3e2b9c9a56e7a73c632de6e2e52196800
/二叉树(前中后序非递归).cpp
f809abcf9e0b170ae0b3d0cf1d4819154387c663
[]
no_license
1904114835/DLUT_shujujiegou_datastructure
106da4cdfd8cfbac985e14a8b38f89c80975fb3b
c53559efe1bbc27152516ad0cde93d9f1d4edeb8
refs/heads/master
2022-01-13T12:00:30.391305
2019-06-09T12:50:30
2019-06-09T12:50:30
189,977,004
3
0
null
null
null
null
UTF-8
C++
false
false
1,728
cpp
#include<bits/stdc++.h> #define MAX 200 using namespace std; typedef struct Node{ int data; Node *lc,*rc; }Node,*Tree; struct Stack{ Tree data[MAX]; int point; }; struct Queue{ Tree data[MAX]; int f,r; }; typedef struct { struct { Tree d; int flag; }data[MAX]; int top; }SeqStack2; Tree creat(){ Tre...
[ "noreply@github.com" ]
noreply@github.com
66ea036778a4c3adfb42c0dad8cbc7c9e965f66d
3a6ad2aae6210dac61b2c8d058fe9b372f85b4ae
/scons/libs/processing/src/ControlScaler.cxx
f5db169bb709fe975d44db963fbe8f41eb422ee5
[]
no_license
millerthegorilla/clam
d6551afc56db62d293adce1c9b72e2828455b60d
5e0e95394b57260af75af0cc7a5bc800c46cf750
refs/heads/master
2020-12-25T14:48:19.716915
2016-09-03T14:03:59
2016-09-03T14:03:59
67,293,280
0
0
null
null
null
null
UTF-8
C++
false
false
1,342
cxx
#include "ControlScaler.hxx" #include "ProcessingFactory.hxx" namespace CLAM { namespace Hidden { static const char * metadata[] = { "key", "ControlScaler", "category", "Controls", "description", "ControlScaler", 0 }; static FactoryRegistrator<ProcessingFactory, ControlScaler> reg = metadata; } void Contro...
[ "jamesstewartmiller@gmail.com" ]
jamesstewartmiller@gmail.com
3898aaa7c09c4ec1c3f0ff604d384dc71206d169
3b6d96b48e881da0cb31a3fffbcefddfb89873cf
/src/TextureHandler.cpp
5bdee12687465c88f4aabf4fd496ebcb96d3e11e
[]
no_license
Hagartinger/Chess
c5d6435b4f9fd07b7584cd5fedc5e2250174ca53
27c99230470423f3be10643d4271435d1b8affa2
refs/heads/master
2021-09-20T01:12:34.210141
2018-08-02T05:43:17
2018-08-02T05:43:17
111,571,788
0
0
null
null
null
null
UTF-8
C++
false
false
841
cpp
#include <iostream> #include "TextureHandler.h" TextureHandler::TextureHandler(){ } TextureHandler::~TextureHandler(){ } SDL_Texture* TextureHandler::load(SDL_Renderer* renderer, std::string textureName) { if(textures[textureName] == 0) {//don't have such texture std::string filePath = "../resources/" + textu...
[ "ArturDzabiev@gmail.com" ]
ArturDzabiev@gmail.com
025361a02604ebc29e74ca86c43f6e92ed0f585e
09ee4ec9a935b3c385700f3fe606c639fee1ac3e
/C++/Sum in array.cpp
fde20846cd1248fd02f663a32de4651f8bc53871
[ "MIT" ]
permissive
wahyudieko/Hello-world
f80b6be04a265755fddd95e7a3b729ebb4d3d5c7
36a9e8f6469e25c48c163705f8d130ad40323266
refs/heads/master
2020-03-30T20:34:06.471992
2018-10-28T04:28:15
2018-10-28T04:28:15
151,593,596
2
1
MIT
2018-10-28T04:28:15
2018-10-04T15:23:59
HTML
UTF-8
C++
false
false
219
cpp
#include <iostream> using namespace std; int main(){ int n,sum = 0; cin >> n; int o[n] = {}; for(int i =0;i < n;i++){ cin >> o[i]; } for(int i =0;i < n;i++){ sum = sum + o[i]; } cout << sum << endl; return 0; }
[ "sarthakmaggu5@gmail.com" ]
sarthakmaggu5@gmail.com
5a684ea28c533118e0e9b9cf5dada0630646a2f3
53c5c9965743e1f2d74fb06dd24b3a846ea9f2f9
/finTest/Q1b.cpp
a4940e16c8abbc2b17dd89fc4232308ee90ba403
[]
no_license
ctm6100/CCC-Lab
3f4c0cc4c8f691bca7865b8afc3d2e7dbbbbf4bd
b3aaf600684b11f3f21a1ab05df4fe9f2f265bd5
refs/heads/main
2023-01-30T11:38:05.606439
2020-12-08T03:35:02
2020-12-08T03:35:02
304,251,876
1
0
null
null
null
null
UTF-8
C++
false
false
4,336
cpp
#include <avr/io.h> #include "avr/interrupt.h" #include <ctype.h> //LED GPIO--------------------------------------------------------------------------- //LEDa1 -> PB0 (D8) //LEDa2 -> PB1 (D9) //LEDb1 -> PC4 (A4) //LEDb1 -> PC5 (A5) void LEDa1on(){ PORTB |= (1 << 0); } void LEDa1off(){ PORTB &= ~(1 << 0); } void LE...
[ "noreply@github.com" ]
noreply@github.com
3c2c30b539c71d0e20b457c083af9b363bdaed6b
9a9529e92db9080eeac812b43f744372faea3aa3
/test/normalize_to_nfkc_058.cpp
aad3752ca4fb1f389d3bcebdfb473cd594a7ee37
[ "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
LonghronShen/text
b14c17215d8ec6ead0cf1e09fa795470fc009159
797da04625e66901390dea013a74c2638df80f21
refs/heads/master
2020-04-08T08:36:51.197496
2019-03-06T08:54:32
2019-03-06T08:54:32
159,185,388
0
0
BSL-1.0
2018-11-26T14:49:32
2018-11-26T14:49:31
null
UTF-8
C++
false
false
733,641
cpp
// Warning! This file is autogenerated. #include <boost/text/normalize_string.hpp> #include <boost/text/utility.hpp> #include <boost/text/string_utility.hpp> #include <gtest/gtest.h> #include <algorithm> TEST(normalization, nfkc_058_000) { // CFE0;CFE0;110F 116E;CFE0;110F 116E; // (쿠; 쿠; 쿠; 쿠; 쿠; ) HANG...
[ "whatwasthataddress@gmail.com" ]
whatwasthataddress@gmail.com
29411b02927f88dbce178d5d487e4c7e9005d001
81fea7e421f7a8dce11870ca64d4aed1d1c75e04
/c++03/build_example.ii.cpp
fe77af41463df98a2d4823b6e7d9be01cccce236
[]
no_license
petergottschling/dmc2
d88b258717faf75f2bc808233d1b6237cbe92712
cbb1df755cbfe244efa0f87ac064382d87a1f4d2
refs/heads/master
2020-03-26T14:34:26.143182
2018-08-16T14:00:58
2018-08-16T14:00:58
144,994,456
27
3
null
null
null
null
UTF-8
C++
false
false
461,716
cpp
# 1 "build_example.cpp" # 1 "<built-in>" # 1 "<command-line>" # 1 "/usr/include/stdc-predef.h" 1 3 4 # 1 "<command-line>" 2 # 1 "build_example.cpp" # 1 "/usr/include/c++/4.8/iostream" 1 3 # 36 "/usr/include/c++/4.8/iostream" 3 # 37 "/usr/include/c++/4.8/iostream" 3 # 1 "/usr/include/x86_64-linux-gnu/c++/4.8/bi...
[ "peter.gottschling@simunova.com" ]
peter.gottschling@simunova.com
5629ec2aa7e4788f67c5cc815ad3377ecd3037d0
0cc7b2863488e8bc74c4e329ff528bd0f1990822
/voice/template_recur.cpp
a2f42fed9a53df0dcf5bcb3ccc1d306f737d9ed1
[]
no_license
cleverwyq/CPP11
66bf27316d48d630c937cf5282fd5f800b09b428
ae9e11da03b7b6afaf7a09c512f292b7e5007fee
refs/heads/master
2020-04-11T07:06:31.590727
2019-04-11T16:18:26
2019-04-11T16:18:26
161,601,334
0
0
null
null
null
null
UTF-8
C++
false
false
975
cpp
#include <iostream> using namespace std; template<int N> int Fibbo(); //error: template instantiation depth exceeds maximum of 900 //(use -ftemplate-depth= to increase the maximum) substituting //'template<int N> int Fibbo() [with int N = -1794]'| //My comments: N==1||N==2 is nothing during compile!!!!...
[ "you.wang@sap.com" ]
you.wang@sap.com
610770cd24300fb3934daf410524c98c5cd19959
97bd2bc90481e59da387772cd414f07516e6f2cd
/test/pastel/sys/test_view.cpp
3148c0375a5d07f836466b69b8b0b21a736e58ce
[]
no_license
kaba2/pastel
c0371639be222cfa00252420c54057a54a93a4a3
c7fb78fff3cbd977b884e54e21651f6346165ff5
refs/heads/master
2021-11-12T00:12:49.343600
2021-10-31T04:18:28
2021-10-31T04:18:28
231,507,632
3
2
null
null
null
null
UTF-8
C++
false
false
1,010
cpp
// Description: Testing for Views // DocumentationOf: view/view.h #include "test/test_init.h" #include "pastel/sys/array.h" #include "pastel/sys/view.h" namespace { class RowVisitor { public: template <typename Contained_View> void operator()( const Contained_View& view) const { } ...
[ "kaba@hilvi.org" ]
kaba@hilvi.org
f1699086a2394d111c03e721e712321df6813a29
9b64cc9ea87c3dc1792c45879594ec1fcf8905ce
/RerF-2.0.4/packedForest/src/forestTypes/basicForests/stratifiedInNodeClassIndices.h
561174a4f0e2c54b07d68aa90364d49c06697636
[]
no_license
QuasiLegendre/Home
cdf06c1ef09084a71a2e6a4b6bd44abac997a737
3872534792fd24dd70a3aad4c766168852c2287f
refs/heads/master
2020-07-23T03:38:57.817152
2019-09-10T01:21:06
2019-09-10T01:21:06
207,436,040
0
0
null
null
null
null
UTF-8
C++
false
false
5,716
h
#ifndef stratifiedInNodeClassIndices_h #define stratifiedInNodeClassIndices_h #include <iostream> #include <random> #include <vector> #include <algorithm> namespace fp{ class stratifiedInNodeClassIndices { private: std::vector<std::vector<int> > inSamples; std::vector<int> inSamps; std::vector<std::vect...
[ "hjkl464646@gmail.com" ]
hjkl464646@gmail.com
bcbe1858231237dbc3198ee8e37b1a9884591fdb
44acfa7195d859771ad540dd2cc1f54e2c950f45
/src/main.cpp
703d68efa75a2b8bf6d99e0b368ac86772e538ca
[ "MIT" ]
permissive
RitoInc/resp4wn
4fa8497ffc7eb9e1e886dc86c8938532e59a3fb8
1bf725f8aeafecbbc801bc9654acfb087f0a9ab0
refs/heads/master
2020-04-06T07:32:16.615313
2018-08-12T22:18:54
2018-08-12T22:18:54
157,275,865
0
0
null
null
null
null
UTF-8
C++
false
false
277,235
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2017 The Respawn developers // Distributed under the MIT software license, see the accompanying // file COPYING or ...
[ "42325974+RespawnCoin@users.noreply.github.com" ]
42325974+RespawnCoin@users.noreply.github.com
43cd6128e8a0519dccfd5d3d3ce3635fb2e3767d
d6b4bdf418ae6ab89b721a79f198de812311c783
/mdl/include/tencentcloud/mdl/v20200326/model/QueryDispatchInputInfo.h
7cb5009f7fd0015c7ef6b8b2cda7c016a37294ef
[ "Apache-2.0" ]
permissive
TencentCloud/tencentcloud-sdk-cpp-intl-en
d0781d461e84eb81775c2145bacae13084561c15
d403a6b1cf3456322bbdfb462b63e77b1e71f3dc
refs/heads/master
2023-08-21T12:29:54.125071
2023-08-21T01:12:39
2023-08-21T01:12:39
277,769,407
2
0
null
null
null
null
UTF-8
C++
false
false
5,719
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
7934d5c0864ecf429f3c86119acabf5ae5a4367d
ee3785eb0205893a3c5a0946119f59482bd8edc6
/contrib/IECoreArnold/include/IECoreArnold/ParameterAlgo.h
512046f5af48f21332065bbace0af18c8618d3b7
[ "MIT" ]
permissive
mottosso/cortex
46f80d093a80bfe1926fd8f6b73d915dcd87f1dd
e2600cef60d380e4fd5e06b8f2fe18c9b52f5afd
refs/heads/master
2021-01-22T21:27:52.079668
2016-08-24T06:52:48
2016-08-24T06:52:48
66,432,611
0
0
null
2016-08-24T05:22:41
2016-08-24T05:22:40
null
UTF-8
C++
false
false
3,536
h
////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2016, Image Engine Design 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: // // * Re...
[ "thehaddonyoof@gmail.com" ]
thehaddonyoof@gmail.com
3a0f44f90ddc27662b89bd0b490d434b978ed3e6
e433c43197677f02a41686ad2b9a715c251b2b00
/winhistory.cpp
207b23bc694589cb2e28437a7f0cdc5cb41cb3ed
[]
no_license
tcp-software/spgrab
503dca7cb9430c2fa18a41fabb6c81d98f801697
d129da8d05bb34f0f7242e8e926c029f30f1a355
refs/heads/master
2022-05-05T00:33:14.586951
2013-11-13T15:31:51
2013-11-13T15:31:51
14,367,648
0
0
null
2022-04-22T16:13:05
2013-11-13T15:20:18
C++
UTF-8
C++
false
false
4,214
cpp
#include "winhistory.h" #include "ui_winhistory.h" #include "window.h" #include "config.h" #include <QMainWindow> #include <QSettings> #include <QWidget> #include <QLineEdit> #include <QDebug> #include <QMessageBox> #include <QUrl> #include <QDesktopServices> #include <QDebug> #include <QClipboard> #inc...
[ "dvsoftware@gmail.com" ]
dvsoftware@gmail.com
cb74a8e3ed8b57bf5a19d97e5bed02e1be5e4fe0
0fcf29112861b79cf28f5da53f6c91b9b44a295d
/nnt/string_defs.h
c0f3ca47773188e13cdc251e280b45b628059b00
[]
no_license
gezhuang0717/NucnetLight
7b0d6250d00a6a3ac50b8833200a5f38e5457e45
77f7baa73b3497a2d8562f33fee00e61ac42f133
refs/heads/master
2020-12-07T13:37:53.618100
2017-06-27T18:18:42
2017-06-27T18:18:42
95,587,966
0
0
null
null
null
null
UTF-8
C++
false
false
10,080
h
// Copyright (c) 2011-2015 Clemson University. // // This file was originally written by Bradley S. Meyer. // // This is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (a...
[ "zhuang.ge@riken.jp" ]
zhuang.ge@riken.jp
829ad3df5cf66df6784c3fa7d53aa04dff3f0156
2f6acc2dfac585975d475e4cf84f92ac75f46430
/UVaoj/10534.cpp
e0b3dd5e94643386f965546ba40aeaa6544af8ae
[]
no_license
NextApp/ACM
1925f47c93e03fccce4943ca1e135b05db8b83cb
fb3013ea631d17b49968e6a8ff93566f4578e36b
refs/heads/master
2021-05-09T02:53:22.190254
2018-01-28T03:48:14
2018-01-28T03:48:14
119,224,427
0
0
null
null
null
null
UTF-8
C++
false
false
1,415
cpp
#include<iostream> #include<cstdio> #include<cstring> #define N 10050 using namespace std; int n,d[N],l[N],e[N]; struct T { int a,p; } c[N]; int binary_search(int m,int num) { int a=1,b=m; while(a<=b) { int k=(a+b)/2,s=(k==m||c[k+1].a>num); if(c[k].a<num&&s)return c[k].p; else if...
[ "yupeng@tuya.com" ]
yupeng@tuya.com
6218e6be04f99663f4f30c7a0a1ffbae279ea26c
dc2346931b96d30e3b0d554b2d8e6f627abd2e12
/mfc-example/webtest/webtest/webtestView.cpp
7f708f5e0f31ba15aab4e9e991b3be8183b11058
[]
no_license
tt-16/practice-code
941961098a89eff22dc6396b2411b2dc76eb0a14
9bd3825d87dc13c957d0b3582a743e7afc4c1841
refs/heads/master
2021-01-12T16:42:06.535781
2017-05-19T05:28:57
2017-05-19T05:28:57
71,430,182
0
0
null
null
null
null
GB18030
C++
false
false
1,396
cpp
// webtestView.cpp : CwebtestView 类的实现 // #include "stdafx.h" #include "webtest.h" #include "webtestDoc.h" #include "webtestView.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CwebtestView IMPLEMENT_DYNCREATE(CwebtestView, CHtmlView) BEGIN_MESSAGE_MAP(CwebtestView, CHtmlView) // 标准打印命令 ON_COMMAND(ID_FILE_PR...
[ "fantian_0033@163.com" ]
fantian_0033@163.com
8c80b7b492d891b49d4a184765d279aa556bf068
4afc9826c4f153d465405410851a67ba20c41bc7
/PokerObjects/PSuit.h
094a8a0c1f99b0fdcffb53329448e47f88d34d40
[]
no_license
aliakbarRashidi/2003RTOnlinePokerStats
3755656b73b830ed8f7d3fb36a28fd2764f1c7a4
1132eff688ae4b00269583b6efa84272dbe3d8b4
refs/heads/master
2020-05-09T21:08:42.386148
2016-09-29T11:49:49
2016-09-29T11:49:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,121
h
// PSuit.h: interface for the PSuit class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_PSUIT_H__ED62888F_1579_445D_ADD3_4FDA488BA44F__INCLUDED_) #define AFX_PSUIT_H__ED62888F_1579_445D_ADD3_4FDA488BA44F__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000...
[ "piers.shepperson@btinternet.com" ]
piers.shepperson@btinternet.com
f6e53afb4f96a39d47d75f35141dee7b789c75b3
cea89f2cf20c5767ad168fe795cc9bf4019c0189
/405/Coordinate.cpp
580dd9feee725f420e10a98323d4e815c607294a
[]
no_license
hanzg2014/IMOOC
b9fb6cd98645927dde5a6a919b4a13f69777c857
3c87c4b8bcdc754873303a993e5529972e95bcdc
refs/heads/master
2021-01-22T04:32:53.219460
2017-02-10T09:46:49
2017-02-10T09:46:49
81,550,744
0
0
null
null
null
null
UTF-8
C++
false
false
181
cpp
#include <iostream> #include "Coordinate.h" using namespace std; Coordinate::Coordinate() { cout<<"Coordinate"<<endl; } Coordinate::~Coordinate() { cout<<"~Coordinate"<<endl; }
[ "hanzg@gmail.com" ]
hanzg@gmail.com
83388816085a24e8e26bd5def1d305edbb9f8b58
6f2b6e9d77fc4dd5e1dae8ba6e5a66eb7c7ae849
/sstd_boost/sstd/libs/fusion/test/sequence/tree.hpp
7d127c8a1f617410c93792ecea81ee016dca7974
[ "BSL-1.0" ]
permissive
KqSMea8/sstd_library
9e4e622e1b01bed5de7322c2682539400d13dd58
0fcb815f50d538517e70a788914da7fbbe786ce1
refs/heads/master
2020-05-03T21:07:01.650034
2019-04-01T00:10:47
2019-04-01T00:10:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,181
hpp
/*============================================================================= Copyright (c) 2006 Eric Niebler Use, modification and distribution is subject to 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) ================...
[ "zhaixueqiang@hotmail.com" ]
zhaixueqiang@hotmail.com
0f283b16bcb7bb540e7514528939568609467ba3
4dc3bead007549c03ad14e589a5ebe7157ac4da0
/src/myOptCont4.cc
6c6985e710b6f89542f704fe293a361a9e076eaf
[]
no_license
skiptoniam/ecomix
428615e5a7fc4af8f834f129b79b3279bb9d132d
73f167135380f73b886ab8ce1ead2b0a4fe29e74
refs/heads/master
2023-04-08T18:52:49.673475
2022-05-27T01:49:47
2022-05-27T01:49:47
80,573,432
5
2
null
2021-01-09T05:29:32
2017-01-31T23:36:08
R
UTF-8
C++
false
false
420
cc
#include"rcp4.h" myOptContr::myOptContr(){}; myOptContr::~myOptContr(){}; void myOptContr::setVals( const SEXP &Rmaxit, const SEXP &Rtrace, const SEXP &RnReport, const SEXP &Rabstol, const SEXP &Rreltol, SEXP &Rconv) { maxitQN = *(INTEGER( Rmaxit)); traceQN = *(INTEGER(Rtrace)); nReport = *(INTEGER(RnReport)); a...
[ "skiptoniam@gmail.com" ]
skiptoniam@gmail.com
573cb8c4060c36a8274f11727b03d808ed2a4598
a8aa1fc7d0eb8baa38dfceb8dfb47f8d5ca64986
/Basic/randomTrial.cpp
c5c0bcea0302ac02c6a25f4a11dd6bdb5c3718d1
[]
no_license
Deadshot96/Cpp-code
986cc9cb15da62a944babb9e9837c8d19cd4bad7
3504d0b4de8b293eb807dcb078638ed365bf8e6c
refs/heads/master
2023-07-12T07:11:56.584373
2021-08-17T12:30:56
2021-08-17T12:30:56
307,159,788
0
0
null
null
null
null
UTF-8
C++
false
false
330
cpp
# include <iostream> # include <stdlib.h> # include <time.h> using namespace std; int main(int argc, char const *argv[]) { /* code */ srand(time(0)); cout << time(0) << endl; for (short i = 0; i < 10; i++) { /* code */ cout << "Random Number: " << rand() << endl; } re...
[ "bhushan1810patil@gmail.com" ]
bhushan1810patil@gmail.com
a2cc014e6b87ef0c447f1aafb20ba44bf738c1f3
4a61ce1d9a69f1befd0b5aecbc86b10c22580b2f
/src/CueReaderMultiplexer.cpp
63e59bd4e2e14d221a2c99868c98085cd6e1ae5f
[ "BSD-2-Clause" ]
permissive
fernandotcl/btag
521c18316ac6af0b7d8f122d95f81867e15ad005
6b5754a122bad3190662263f034425d6cdabde47
refs/heads/master
2023-08-02T14:26:06.943635
2019-04-04T18:42:55
2019-04-04T18:44:36
825,476
7
2
BSD-2-Clause
2020-12-05T20:11:07
2010-08-09T00:04:30
C++
UTF-8
C++
false
false
1,818
cpp
/* * This file is part of btag. * * © 2015 Fernando Tarlá Cardoso Lemos * * Refer to the LICENSE file for licensing information. * */ #include <boost/foreach.hpp> #include "CueReaderMultiplexer.h" CueReaderMultiplexer::CueReaderMultiplexer(const std::list<std::string> &filenames, ...
[ "fernandotcl@gmail.com" ]
fernandotcl@gmail.com
28ea4abd5273038a3f70344044717a3f5d92be83
39df74a3f6caed9b7e43e4259895281edc639e91
/GAME.CPP
da0c343c017858e873644ed25de5847979bceebf
[]
no_license
Prof-Calculus/Arcade-Games
d346bc8efc47dee25358e986cacbc8ddc72e281f
e3b9ede030769cc0de8e9e600c3348cb0af6bcd3
refs/heads/master
2016-09-10T19:03:19.630233
2014-12-18T15:44:21
2014-12-18T15:44:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
29,091
cpp
#include <iostream.h> #include <graphics.h> #include <stdlib.h> #include <string.h> #include <stdio.h> #include <conio.h> #include <alloc.h> #include <fstream.h> #include <dos.h> #include <iomanip.h> const int Breadth = 1*2,NumElements = 10; int choice; struct datas { char name[23]; int score; }sc...
[ "srinivasan1995@gmail.com" ]
srinivasan1995@gmail.com
90dbd6d8502b3c0d49cbdd552f3a82e59630084c
33a52c90e59d8d2ffffd3e174bb0d01426e48b4e
/uva/10400-/10473.cc
2aa8003003226e0c996fc5c69e4520d3085e8fcf
[]
no_license
Hachimori/onlinejudge
eae388bc39bc852c8d9b791b198fc4e1f540da6e
5446bd648d057051d5fdcd1ed9e17e7f217c2a41
refs/heads/master
2021-01-10T17:42:37.213612
2016-05-09T13:00:21
2016-05-09T13:00:21
52,657,557
0
0
null
null
null
null
UTF-8
C++
false
false
1,247
cc
// 10473 #include<iostream> #include<string> #include<cctype> #include<cstdlib> #define MAX_SIZE 60 using namespace std; string source; bool read(){ cin >> source; if(source[0]=='-') return false; return true; } void work(){ long long digit=0; if(source.length()>2 && source[0]=='0' && source[1]=='x'...
[ "ben.shooter2@gmail.com" ]
ben.shooter2@gmail.com
3a316fd1daebcbe6468064928fbd866446d6ca13
4da7de4ce2fffd74596e20c6df7a92a3173fca4d
/src/rpcwallet.cpp
029429e2ade280362c2e760ab2769edb583e978a
[ "MIT" ]
permissive
lastcoin/lastcoin
74c0dce437bc253ef30258735f3dec786a47f1d9
cec7b6ea66d336c1d3ee151f5601039241d99b43
refs/heads/master
2016-09-06T03:35:00.792939
2014-06-16T04:29:49
2014-06-16T04:29:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
54,847
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <boost/assign/list_of.hpp> #include "wallet.h" #include "walletdb.h" #include...
[ "lastcoinproject@gmail.com" ]
lastcoinproject@gmail.com
4be271f4cc8a04ecc82248cc7b0dd33bec315100
8f6d35c5c3f5bf77991f3f66554d88fa7fcdc9cd
/Mayflower/MayflowerWindow.h
2764d4634f08e672f66635a779ab6f1959590d66
[]
no_license
AndrewReisdorph/Mayflower-Gameboy-Emulator
6730107ab66ed4ba70a29fda1fa396b29f4d5168
1fcad1d0817017015a18407cae91ab0b60a39430
refs/heads/master
2018-08-25T10:02:22.292007
2018-07-03T06:04:20
2018-07-03T06:04:20
103,408,029
0
0
null
null
null
null
UTF-8
C++
false
false
1,166
h
#pragma once #include <wx/wx.h> #include "MemoryViewListCtrl.h" #include "EmulatorEngine.h" #include "GameboyScreenPanel.h" #include "RamAssemblyList.h" #include "RegisterView.h" #include "MemoryViewListCtrl.h" #include "DebugToolbar.h" #include "IOMap.h" class GameboyScreenPanel; class EmulatorEngine; class RamAssemb...
[ "AndrewReisdorph@gmail.com" ]
AndrewReisdorph@gmail.com
27099c58e02b53f0ebdbe3053278e6be3cc25fa8
161fa261303342543f22a9dfe007ce0dab662606
/devel/include/move_base_msgs/MoveBaseActionGoal.h
1767e0d2a652d59c9cf017ca6b4063056e90b702
[]
no_license
HaoYejia/MyCar
81fac51ccecfcd5b86dbabbc63d33053c1632618
b7b20e6cafeb6a7312e876ff9ad59f72118e364e
refs/heads/master
2020-06-24T01:11:36.119110
2019-07-25T10:02:12
2019-07-25T10:02:12
198,803,669
0
0
null
null
null
null
UTF-8
C++
false
false
8,703
h
// Generated by gencpp from file move_base_msgs/MoveBaseActionGoal.msg // DO NOT EDIT! #ifndef MOVE_BASE_MSGS_MESSAGE_MOVEBASEACTIONGOAL_H #define MOVE_BASE_MSGS_MESSAGE_MOVEBASEACTIONGOAL_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/built...
[ "haoyejia@outlook.com" ]
haoyejia@outlook.com
0b62d72d293184a1934f3b2992f69410093d4aad
73ee941896043f9b3e2ab40028d24ddd202f695f
/external/chromium_org/ash/system/date/date_view.h
98bc45fb7bb026ab17a4d127a7fed12d8fd2c2ca
[ "BSD-3-Clause" ]
permissive
CyFI-Lab-Public/RetroScope
d441ea28b33aceeb9888c330a54b033cd7d48b05
276b5b03d63f49235db74f2c501057abb9e79d89
refs/heads/master
2022-04-08T23:11:44.482107
2016-09-22T20:15:43
2016-09-22T20:15:43
58,890,600
5
3
null
null
null
null
UTF-8
C++
false
false
3,814
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 ASH_SYSTEM_DATE_DATE_VIEW_H_ #define ASH_SYSTEM_DATE_DATE_VIEW_H_ #include "ash/system/date/tray_date.h" #include "ash/system/tray/actionable...
[ "ProjectRetroScope@gmail.com" ]
ProjectRetroScope@gmail.com
e04d7da716bd51ca772b7560d954357a5da37480
b45612ec940592562765f940e934897120e012ef
/EDU_codeforces/2.Segment_tree_part_1/step_1/2.Segment_tree_for_the_minimum.cpp
42b75c5bdc914301f5075785207ad921bbe907f5
[]
no_license
ShubhamAgrawal-13/CSES-Problem-Set
9697a52edce59394db6103fd4371c79fa8ccad8e
c67f4c8ab80e11602f77db8b6572dfd7c774ea32
refs/heads/master
2022-12-18T13:17:59.146810
2020-08-12T19:39:11
2020-08-12T19:39:11
272,518,178
1
0
null
null
null
null
UTF-8
C++
false
false
1,860
cpp
#include <bits/stdc++.h> using namespace std; #define ll long long #define mod 1000000007 #define deb(x) cout << #x << "=" << x << "\n" #define ar array #define all(v) v.begin(),v.end() #define clr(x,v) memset(x,v,sizeof(x)) class SegTree{ public: int size; vector<ll> values; void init(int n){ size=1; whi...
[ "shubham.agrawal@students.iiit.ac.in" ]
shubham.agrawal@students.iiit.ac.in
4b53e65f6b0c87465c93213a3bbd003ffc7222bd
6d630f23b88eb53903d493a82d302ac3ca57f65f
/codeforces/round_713_div3/b/cfmain.cpp
bf923d59131965b90be463797527ab77c2c48d89
[]
no_license
wangjiewen/algorithm_practice
dba2b1d9740792de340a91fbae41b0f7ca3039e2
80d8e7c96cff47a67ecb3522f026410e5f7be045
refs/heads/master
2022-08-17T19:58:00.568316
2022-07-18T14:04:35
2022-07-18T14:04:35
164,859,178
0
0
null
null
null
null
UTF-8
C++
false
false
811
cpp
#include <bits/stdc++.h> using namespace std; string sq[405]; void solve() { int n; int x[2] = {0}, y[2] = {0}; int num = 0; cin >> n; for (int i = 0; i < n; i++) { cin >> sq[i]; for (int j = 0; j < n; j++) { if (sq[i][j] == '*') { x[num] = i; y[num] = j; num++; } } } int tx, ty; if...
[ "issinfonia@gmail.com" ]
issinfonia@gmail.com
bfc38b26697fc43f64be8cb8f9b8a89baab055f0
910b053d9be793cc9a88279b59f305f82f5adfb6
/ObjC-Swift-Interop/ObjCConsoleProject/ObjCConsoleProject/main.hpp
63635dbfde25f55d085da416ef2674fd5293fbb6
[]
no_license
m039/XLIS
d2a108daf61ed6bd712f7d3d0f1bdeff6786d1ed
61db01b4c2e281bd141bf3ee8c2a5d74e0925aaf
refs/heads/master
2021-06-14T19:39:38.806980
2017-03-04T11:56:31
2017-03-04T11:56:31
81,931,151
9
2
null
null
null
null
UTF-8
C++
false
false
338
hpp
// // Testik.hpp // ObjCConsoleProject // // Created by Dmitry Mozgin on 18/02/2017. // Copyright © 2017 BTG. All rights reserved. // #ifndef Testik_hpp #define Testik_hpp #include <stdio.h> #ifdef __cplusplus extern "C" { #endif void testBar(); void testFoo(); #ifdef __cplusplus } #endif #endif ...
[ "m0391n@gmail.com" ]
m0391n@gmail.com
a2d7f9fea17f8fe94d174085c001a08591a604fa
61661b067743f4e7d54710402017639bba89d9e7
/Moisture/PumpControl.h
2a40c435b2160413e3f6cefbeebefd1c5fadd967
[]
no_license
nlurkin/watering
83af75f849b5f8700906161cbfda98caf97fc721
071a09226d5858c7fd2ffbf0c200749d5d37a052
refs/heads/master
2023-04-14T06:05:30.758511
2023-04-06T12:09:17
2023-04-06T12:09:17
194,562,694
1
0
null
2021-03-25T20:09:54
2019-06-30T21:24:30
C++
UTF-8
C++
false
false
2,153
h
/* * PumpControl.h * * Created on: 4 Nov 2017 * Author: Nicolas Lurkin */ #ifndef PUMPCONTROL_H_ #define PUMPCONTROL_H_ #include <Arduino.h> /** * \brief This is the class controlling the pump. * * It is simply running the pump for a defined amount of time. * A running period is always followed by a d...
[ "nicolas.lurkin@cern.ch" ]
nicolas.lurkin@cern.ch
1ad359ff2fe11dc0373e3a1bbc91227c305bdaf7
ad4a16f08dfdcdd6d6f4cb476a35a8f70bfc069c
/source/bsys/wave/wave.h
8385f6092d875bfceb55381c65cdc3ff6d69b011
[ "OpenSSL", "MIT" ]
permissive
bluebackblue/brownie
fad5c4a013291e0232ab0c566bee22970d18bd58
917fcc71e5b0a807c0a8dab22a9ca7f3b0d60917
refs/heads/master
2021-01-20T04:47:08.775947
2018-11-20T19:38:42
2018-11-20T19:38:42
89,730,769
0
0
MIT
2017-12-31T13:44:33
2017-04-28T17:48:23
C++
UTF-8
C++
false
false
1,562
h
#pragma once /** * Copyright (c) blueback * Released under the MIT License * https://github.com/bluebackblue/brownie/blob/master/LICENSE.txt * http://bbbproject.sakura.ne.jp/wordpress/mitlicense * @brief WAVE。 */ /** include */ #pragma warning(push) #pragma warning(disable:4464) #include "../typ...
[ "blueback28@gmail.com" ]
blueback28@gmail.com
ac3b56965bac2eea9f1c0fc34ce32eb2a78fd140
f607fca5b5257eac90a8e615a4cee39d90a2523e
/AntiDupl.NET-2.3.9/src/3rd/tinyxml/tinyxml.h
d0f1ea5b7817738d733de1ab57b03250859c7ba0
[]
no_license
fengxing666/CV_Resource
65d63e323dabf046d113734b121ed8e508f6afec
ca7277da68a71bbfc240028c0375799d4d867e96
refs/heads/main
2023-09-03T18:00:43.457819
2021-10-17T14:14:53
2021-10-17T14:14:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
66,663
h
/* www.sourceforge.net/projects/tinyxml Original code by Lee Thomason (www.grinninglizard.com) This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use t...
[ "payu.chen0422@gmail.com" ]
payu.chen0422@gmail.com
64897cc3b2dc87878517f8bee7f2fd892340ac6d
565eb4616f6ee6884fa9aab36d8b1e33bbc437be
/src/glad.cpp
24ec388ea887afc07b9516e4e458f5811e220b48
[]
no_license
czyzlukasz/OpenGL
73600f9438f30dca0405429c7dc4e8a7c0141429
738edc197169a3598fc4dd9230991c9c3c6f172f
refs/heads/master
2023-04-28T09:32:22.377842
2018-08-13T14:31:25
2018-08-13T14:31:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
144,936
cpp
/* OpenGL loader generated by glad 0.1.20a0 on Wed May 9 14:14:25 2018. Language/Generator: C/C++ Specification: gl APIs: gl=4.6 Profile: compatibility Extensions: Loader: True Local files: False Omit khrplatform: False Commandline: --profile="compatibility" ...
[ "krawacik3@gmail.com" ]
krawacik3@gmail.com
0ed2e7b39d737c1370e20df07fb8109e2f7b9f63
c7399b29b6222afd03cfd9b14ad21b81bc446779
/Practica 1/VisualDataRay/Light.h
fe64dd004b2e59b7150e4cf1dbaaee001bc2f31a
[]
no_license
polsafont/GraficsUB
ee0fdc0662239ec9f492963fa50f8b847c2ff46f
06fc211a90b0110982a51dfcc62874f1e3ab85ee
refs/heads/master
2021-05-21T21:31:22.048959
2019-12-01T12:38:40
2019-12-01T12:38:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
330
h
#ifndef LIGHT_H #define LIGHT_H #include "Ray.h" class Light { public: Light(vec3 point); virtual ~Light(){} vec3 position; vec3 diffuse; vec3 specular; vec3 ambient; float a; float b; float c; float atenuation; private: double const EPSILON = 0.0000000000001; }; #endif /...
[ "johnnynuca14@gmail.com" ]
johnnynuca14@gmail.com
db57bd63ad4250d852f25ab3ce803093b3b79524
20683c00ba6acdcf0933233156d7a173472c61af
/src/test/versionbits_tests.cpp
43d7ba734795e94568c33c54f2632133f2e6cf94
[ "MIT" ]
permissive
AddmoreMining2020/Addmore
1b0576d39d0a6789ee18dc8610d6b037cbd8e909
f0b0df156959774b6c2ecb518ce8b16a706bfa12
refs/heads/master
2021-01-07T18:25:16.546967
2020-02-20T03:11:08
2020-02-20T03:11:08
241,781,590
0
1
null
null
null
null
UTF-8
C++
false
false
15,272
cpp
// Copyright (c) 2014-2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "chain.h" #include "random.h" #include "versionbits.h" #include "test/test_addmore.h" #include "chainparams.h" #incl...
[ "60209727+AddmoreMining2020@users.noreply.github.com" ]
60209727+AddmoreMining2020@users.noreply.github.com
49be0f9361943bb88f26bbde79bf8f5403b5787c
eb667f1737a67feb07bf2d1298ff6757526ee8fb
/930 Binary Subarrays With Sum/Binary Subarrays With Sum.cpp
47c6cf83b3783d72676046793a6551cd5c1205ea
[]
no_license
yukeyi/LeetCode
bb3313a868e9aedada3fe157c6307b00d32a09c9
79d37be2aefd674e885a5bdc6dac0a5adf02f91c
refs/heads/master
2021-04-18T22:18:26.085485
2019-06-09T06:25:29
2019-06-09T06:25:29
126,930,413
0
1
null
null
null
null
UTF-8
C++
false
false
412
cpp
class Solution { public: int numSubarraysWithSum(vector<int>& A, int S) { unordered_map<int,int> M; M[0] = 1; int sum = 0; int res = 0; for(int i = 0;i<A.size();i++) { sum += A[i]; res += M[sum-S]; if(M.count(sum) == 0) M[su...
[ "yukeyi@Keyis-MBP.fios-router.home" ]
yukeyi@Keyis-MBP.fios-router.home
9ec247e12bd7a4726ab48ab1818ac024833ec8a6
99530b1b878569e1d7ba4c9c0858e68e4dca81d1
/Plugins/AdCollection/Source/AdCollection/Private/PlayRewardVideoCallbackProxy.cpp
4f7d62f8335136d860baab1f4f752179507ea8a2
[]
no_license
Mikesdav/Defend
34185ffeb35139ddba0b1c62200f9b621af8b625
4332c8841206d09c1b616f48fb226512da4f545e
refs/heads/master
2021-05-01T03:16:10.564230
2018-05-11T20:07:36
2018-05-11T20:07:36
121,188,125
0
0
null
null
null
null
UTF-8
C++
false
false
1,895
cpp
/* * EZ-Mobile-Ads - unreal engine 4 ads plugin * * Copyright (C) 2017 feiwu <feixuwu@outlook.com> All Rights Reserved. */ #include "PlayRewardVideoCallbackProxy.h" #include "Engine.h" #include "AdCollection.h" UPlayRewardVideoCallbackProxy::UPlayRewardVideoCallbackProxy() : Delegate(FPlayRewardCompleteDelegate::Cr...
[ "davidmikesel@gmail.com" ]
davidmikesel@gmail.com
35b1eef4f3d94f410812158170e16090425d8171
f36cbd7ca5bf2c753d6d1a306bf79ecfb908483e
/earth_enterprise/src/fusion/rasterfuse/geraster2kml.cpp
94928769befe6a8f8fa3e102bde4756a93259d80
[ "Apache-2.0" ]
permissive
doc22940/earthenterprise
edda8cab2e616ed4bb08fd7cbe47436d0ac9ac59
475faea9cc9232c9603419f5f9ea241b24a4d546
refs/heads/master
2021-05-27T12:02:18.880594
2020-04-07T21:47:29
2020-04-07T21:47:29
254,266,057
1
0
Apache-2.0
2020-04-09T03:54:21
2020-04-09T03:54:20
null
UTF-8
C++
false
false
31,672
cpp
// Copyright 2017 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
[ "avnish@sunrise.mtv.corp.google.com" ]
avnish@sunrise.mtv.corp.google.com
fb772e6a340fe313c3e0e718206ad0e854f1ed86
f13c1d496af0d55c0b4608fbd5d40f7878496c89
/CPP Project/알고리즘챌린지/가운데를 말해요.cpp
1e0ce64cac9940b300b1e75f1be5e6df6a343fc6
[]
no_license
ezzooooo/CPP-Project
ff13dec8a8ddfe5f549ef81464a5582b25df39a8
405365585c53565120393ffc9503140c51e52b9a
refs/heads/master
2020-12-05T06:44:43.095012
2020-04-24T07:03:15
2020-04-24T07:03:15
232,038,196
4
0
null
null
null
null
UTF-8
C++
false
false
1,069
cpp
//#include <iostream> //#include <vector> //#include <queue> // //using namespace std; // //priority_queue<int> max_heap; //priority_queue<int, vector<int>, greater<int>> min_heap; // //int main() { // // int n; // scanf("%d", &n); // // for (int i = 0; i < n; i++) { // int input; // scanf("%d", &input); // //...
[ "dkreka11@gmail.com" ]
dkreka11@gmail.com
3cf6f2a3b3c9a8187b12acd592b59d554aae1778
de1e806ef74d1af5343ddbc45fcf206e6d4b10d0
/src/RungWheelController/3x2.h
756aec4593bc9a444a5e1f566f1ab2ef9e998dcd
[ "BSD-3-Clause" ]
permissive
janelia-arduino/RungWheelController
ef6dde85e806fcb5ee0110b6009f7723c7ee1b20
ac7403ffce6a08f97320cc93fb62e45c52e4d89d
refs/heads/master
2021-09-25T22:52:28.877313
2021-09-17T14:58:54
2021-09-17T14:58:54
70,087,501
0
1
null
null
null
null
UTF-8
C++
false
false
834
h
// ---------------------------------------------------------------------------- // 3x2.h // // // Authors: // Peter Polidoro peter@polidoro.io // ---------------------------------------------------------------------------- #ifndef RUNG_WHEEL_CONTROLLER_3X2_CONSTANTS_H #define RUNG_WHEEL_CONTROLLER_3X2_CONSTANTS_H #incl...
[ "peterpolidoro@gmail.com" ]
peterpolidoro@gmail.com
64632e16d56846f230336ea1f90d630dd7900efa
2fa08e83ad9e4445f3b44e5c3d51f8f007734802
/server/src/connection.cpp
661b43b87a5c4fbe319b33e098c6bd2c48000e44
[]
no_license
mgmillani/dicely-done
656a659dc7709a0883c1a661c2eb5c5ef2e05522
5620f296b928e4f9910fd2fcdcdae251baf8bc06
refs/heads/master
2021-01-19T03:16:46.772495
2015-06-29T20:40:27
2015-06-29T20:40:27
34,763,989
0
0
null
null
null
null
UTF-8
C++
false
false
5,725
cpp
#include <list> #include <string> #include <random> #include <time.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/socket.h> #include <sys/fcntl.h> #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> #include <unistd.h> #include "connection.hpp" #include "debug.h" #de...
[ "marcelogmillani@gmail.com" ]
marcelogmillani@gmail.com
308beecaf741f4af7b9792c48df2dc532944df04
451ea083d1dce106ffb3ab7c78e8fa3abe61a725
/Day 134/bubbleSort.cpp
d31bf6299a02e81d4cc88df9f25400e3e1c7f83f
[]
no_license
S4ND1X/365-Days-Of-Code
52dd6a8b9d0f5c3c27b23da8914725e141d06596
257186d2a4d7c28a3063add55d6b72d20fccb111
refs/heads/master
2022-04-19T22:55:08.426317
2020-03-02T23:35:28
2020-03-02T23:35:28
164,487,731
5
1
null
null
null
null
UTF-8
C++
false
false
702
cpp
#include <iostream> using namespace std; //Create a macro, for from 0 to a limit #define forA(n) for(int x = 0; x<n; x++) //From limit to 0 #define forD(n) for(int x = n; x>=0; x--) int main(){ //Example Array int arr[] = {6,7,9,2,54,6,1,3,6,8,2,1}; int i, j, aux; //? Bubble sort for(i = 0; i<12; ...
[ "42609763+S4ND1X@users.noreply.github.com" ]
42609763+S4ND1X@users.noreply.github.com
0579ca9349041cf6b2d49a0c8074cd550727647c
3ded37602d6d303e61bff401b2682f5c2b52928c
/ml/1072/Classes/Unit/tool/KettleNode.cpp
886c4aafad15d3e897223b23525dc9f1e09be30b
[]
no_license
CristinaBaby/Demo_CC
8ce532dcf016f21b442d8b05173a7d20c03d337e
6f6a7ff132e93271b8952b8da6884c3634f5cb59
refs/heads/master
2021-05-02T14:58:52.900119
2018-02-09T11:48:02
2018-02-09T11:48:02
120,727,659
0
0
null
null
null
null
UTF-8
C++
false
false
2,644
cpp
#include "KettleNode.h" #include "Global.h" #include "AudioHelp.h" #include "extensions/cocos-ext.h" #include "cocostudio/CCArmature.h" #include "cocostudio/Cocostudio.h" using namespace cocostudio; USING_NS_CC; USING_NS_CC_EXT; KettleNode::KettleNode() { m_pClippingNode = nullptr; m_pGridNode = nullptr; ...
[ "wuguiling@smalltreemedia.com" ]
wuguiling@smalltreemedia.com
f94cac252e665450ccc750ed8fc2e758249b9055
d6eda0fc0f6a9cb463eef1f3938b4faf6056d1e2
/CPUT/source/CPUTMaterial.cpp
325fe965d480a38b23b9a70ac0aa09642c7adeef
[ "Apache-2.0" ]
permissive
zjucsxxd/ChatHeads
a061ee38eadb9f2c0adce4f793aa6346bf67b5cf
f83c43f7fd3537badd74c31545ce2a45340474ee
refs/heads/master
2020-03-27T05:08:05.931801
2017-06-05T19:26:06
2017-06-05T19:26:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,136
cpp
///////////////////////////////////////////////////////////////////////////////////////////// // Copyright 2017 Intel Corporation // // 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 // ...
[ "marissa@galacticsoft.net" ]
marissa@galacticsoft.net
5a15e15c88da127fd17f0d1a699195a94794bee2
76957b84c5c97ac08dd2baea6cd3d5db96d26012
/common_project/tool_kits/protocol/utils/byte_parser.h
0bb3fb89fb38c362ca35f81b2ca2b8100e8f1fea
[]
no_license
luchengbiao/base
4e14e71b9c17ff4d2f2c064ec4f5eb7e9ce09ac8
f8af675e01b0fee31a2b648eb0b95d0c115d68ff
refs/heads/master
2021-06-27T12:04:29.620264
2019-04-29T02:39:32
2019-04-29T02:39:32
136,405,188
0
1
null
null
null
null
UTF-8
C++
false
false
2,856
h
#ifndef __PROTO_UTILS_BYTE_PARSER_H__ #define __PROTO_UTILS_BYTE_PARSER_H__ #include <stddef.h> // for size_t #include <stdint.h> // for uint8_t #include <string> #include "protocol/macros.h" PROTO_NAMESPACE_BEGIN namespace byte_parser { class EndianChecker { public: static bool IsLittleEndian() { static En...
[ "993925668@qq.com" ]
993925668@qq.com
19d6cc0d08dee57956c4b08424aef757d467bc7b
b269741a89b98982a4692744b4b77bd04dc30ab6
/src/cpu/nhwc_pooling.cpp
92470f739643e37f738bfc288ac3a9a11cfb5493
[ "Intel", "Apache-2.0", "BSD-3-Clause" ]
permissive
ThejanW/mkl-dnn
c6a609a3f4ca445d62ee2f294dcb3a6d29b01696
ec3b670b709b529b230f2f62e333bdf44b2fc7fe
refs/heads/master
2020-03-19T12:11:02.233426
2018-06-05T14:27:43
2018-06-05T14:27:43
136,502,057
1
0
Apache-2.0
2018-06-07T16:10:09
2018-06-07T16:10:09
null
UTF-8
C++
false
false
15,969
cpp
/******************************************************************************* * Copyright 2018 Intel Corporation * * 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.o...
[ "nikita.astafiev@intel.com" ]
nikita.astafiev@intel.com
8629008eef6bae8c592357cd63ea434bf4dc156c
210adc5d8a9b4e157decf71a852bad4b163a2a8a
/lab5/src/lab5.cpp
cd40341b538e76af47bcb688dde97f38623377b6
[]
no_license
svyatoslavratov/sailfish-unn
08758187a900af3bb629a4f1686fe35c6e186553
145acedb4e2f9a08aa67b64300e52d03adc01ea8
refs/heads/main
2023-08-06T17:35:12.074498
2021-09-29T21:06:10
2021-09-29T21:06:10
411,828,678
0
0
null
null
null
null
UTF-8
C++
false
false
665
cpp
#ifdef QT_QML_DEBUG #include <QtQuick> #endif #include <sailfishapp.h> int main(int argc, char *argv[]) { // SailfishApp::main() will display "qml/lab5.qml", if you need more // control over initialization, you can use: // // - SailfishApp::application(int, char *[]) to get the QGuiApplication * ...
[ "44136293+svyatoslavratov@users.noreply.github.com" ]
44136293+svyatoslavratov@users.noreply.github.com
b76056a4a207eadf441500df01708f3ab97e1d09
420911b750ec7cbe7aa6a293eedab9a181261557
/headers/asteroid.h
3f52dbd3b267d35f2ec1de4bd937e73c903e771c
[]
no_license
joelewis43/CS463
e05f328623a5ff75cca577ef40f285164b8900f7
e64e86543aec7a59de56e7bd09e8a068250026e9
refs/heads/master
2020-08-07T01:28:09.727173
2019-12-07T01:24:47
2019-12-07T01:24:47
213,240,071
0
0
null
2019-12-06T04:03:45
2019-10-06T20:37:34
null
UTF-8
C++
false
false
1,730
h
#ifndef ASTEROID_LEVEL_H #define ASTEROID_LEVEL_H #include "builder.h" #include "random.h" #include <math.h> #include <algorithm> class AsteroidLevel : public LevelBuilder { public: /** * Constructor for a LevelBuilder object * * @param rows - Number of rows that should generated for the l...
[ "tmantock@gmail.com" ]
tmantock@gmail.com
16f879448bb96165ddd3d5b6f98db9f6b2e1ec3d
438fdcf2cbc55ceb7383b5b09b99ab24be1cce49
/src/SetupTab.cpp
731a1784473fcaee34d3659f9933a9986ff3e511
[]
no_license
Squirtle/lazy-newb-pack-qt
1e900bab8a3c39e273fe8a49073e04c325563e09
cddbf5bacaaf05b7f8b9dcc4290c0d481b3bddd4
refs/heads/master
2020-05-19T13:19:13.535807
2012-08-26T22:48:25
2012-08-26T22:48:25
3,108,045
3
1
null
null
null
null
UTF-8
C++
false
false
2,006
cpp
#include "SetupTab.h" #include "ui_SetupTab.h" #include "DwarfFortress.h" #include "DwarfFortressProcess.h" #include <QProcess> #include <QProcessEnvironment> #include <QFileDialog> #include <QDesktopServices> SetupTab::SetupTab(QWidget *parent) : QWidget(parent), ui(new Ui::SetupTab) { ui->setupUi(this)...
[ "unnamedrambler@gmail.com" ]
unnamedrambler@gmail.com
a094f3919a7da2adf048ee29519dfc88ccaa4836
a7698637dbdd14cd765023c1a084934b8ff7f1d3
/benchmarks/stmbench7/code/src/parameters.h
a8ba54da26898043dc4d7c6c3f05ace3fbae707b
[]
no_license
shadyalaa/RWLE
394eee1907b521f0aaca63cbc6f64fa7e7f98935
03d28a78c14d0b4625bd3c9e27b2ef79f3082ef3
refs/heads/master
2021-06-22T14:33:14.290777
2017-04-06T21:33:49
2017-04-06T21:33:49
57,441,873
1
3
null
null
null
null
UTF-8
C++
false
false
14,222
h
#ifndef SB7_PARAMETERS_H_ #define SB7_PARAMETERS_H_ #include <cmath> #include <iostream> #include <vector> namespace sb7 { class ConfigParameters; class OperationProb; /** * These are final parameters for the benchmark. */ class Parameters { protected: static const int DEFAULT_NUM_ATOMIC_PER_COMP; s...
[ "shadyalaa@gmail.com" ]
shadyalaa@gmail.com
34438f5f5d0853fc1c3c646692c360f79584ea0f
9ad207e7b1adf68343438f7c7737e41f4847fcfd
/338. Counting Bits.cpp
c6013b59d34cd763d5a476e60b58b5326cb59421
[]
no_license
MahtabTanim/LeetCode
795200271025027198aa0e247d887f739957f8b5
a2bc61ed45cdf0aeda4336ec15023dec99a5af5f
refs/heads/master
2023-06-06T20:34:27.715906
2021-07-17T05:17:01
2021-07-17T05:17:01
275,657,471
0
0
null
null
null
null
UTF-8
C++
false
false
339
cpp
class Solution { public: vector<int> countBits(int num) { vector<int> V; for(int i = 0;i<=num;i++){ int x = i; int c =0; while(x>0){ c++; x=x&(x-1); } V.push_back(c); } ...
[ "noreply@github.com" ]
noreply@github.com
e7f37dd639bacf7cac3402a219be842b677cbbb8
af67949764ed270923e594a1c255322afa0966a0
/test.cpp
db3acb9f97cf34c036f60bca31c549a4653e7102
[]
no_license
hadrian238890/TEST
d0cd14a2b68ae59adf11a3ec9e88500578ca99b4
e21fffca2f90742cab58618d6185c4a97c66c868
refs/heads/master
2020-04-15T00:28:19.119802
2019-01-06T17:27:07
2019-01-06T17:27:07
164,241,330
0
0
null
null
null
null
UTF-8
C++
false
false
1,124
cpp
#include <iostream> #include <cstdlib> #include <string> #include <set> using namespace std; void backToFront(string word) { for(int i = word.size(); i > -1; i--) { cout << word[i]; } cout << endl; } bool checkIfSameLetter1(string word) { cout << "Set container method " << endl; cout << "Are there any dupli...
[ "hadrianpoland@gmail.com" ]
hadrianpoland@gmail.com
2d79b6bf5abc0760fff314e0d25e96599bec6fa9
491688a1b91cf96ed5f7a458aa77491e65baaa36
/B/Nearest_Neighbor.h
a87e0f1cce3e2c06971791e9329914b118d98724
[ "MIT" ]
permissive
annaptrd/Vector-image-representation-using-autocoding-NN
83796f51633c1d977c23a1da24cc5bf8a22be699
28b44b9b4fefc5e02789575194119fc2a0ffd61e
refs/heads/main
2023-05-27T08:09:37.142706
2021-05-30T16:17:02
2021-05-30T16:17:02
372,252,606
0
0
null
null
null
null
UTF-8
C++
false
false
262
h
#include <vector> #include <iostream> #ifndef Nearest_Neighbor_H #define Nearest_Neighbor_H using namespace std; void find_the_true_distance(vector <vector <int> > input_vector, vector <int> query, int* true_best_distance,int* true_nearest_neighbor); #endif
[ "noreply@github.com" ]
noreply@github.com
02e1db71df29d380ecb627421d297c28d233fd57
d15d4c2932159033e7563fe0889a2874b4822ce2
/Theme/kuangbin/1.EasySearch/A.cpp
7103f0a6bea6f974af123e6e955e7750a81d651b
[ "MIT" ]
permissive
lxdlam/CP-Answers
fd0ee514d87856423cb31d28298c75647f163067
cde519ef9732ff9e4e9e3f53c00fb30d07bdb306
refs/heads/master
2021-03-17T04:50:44.772167
2020-05-04T09:24:32
2020-05-04T09:24:32
86,518,969
1
1
null
null
null
null
UTF-8
C++
false
false
774
cpp
#include <cstring> #include <iostream> using namespace std; typedef long long ll; char board[9][9]; bool vis[9] = {false}; int n, res; void dfs(int row, int m) { if (m == 0) { res++; return; } if (row >= n) { return; } dfs(row + 1, m); for (int i = 0; i < n; i++) { if (board[row][i] == ...
[ "lxdlam@gmail.com" ]
lxdlam@gmail.com
72576d937c4e2b81fdf362e1706cf4e61291ad6a
107b1734db02c415f739c3375f2a3aaaa25c9692
/Dziennik_lekcyjny/Load_file.cpp
d88610a097db3f101b7764f3c2cd10091f0c8092
[]
no_license
KasiaBartoszek/SchoolRegister
d026c48c50a685362d75d961f2e740e785c7e7ef
0a8f6bc81230f6b1150c41a0db569f2d88382f44
refs/heads/master
2022-07-16T19:05:55.657777
2020-05-13T14:11:10
2020-05-13T14:11:10
263,647,246
0
0
null
null
null
null
UTF-8
C++
false
false
2,584
cpp
#include "Load_file.h" using namespace std; void Load_file::load_student(string inper, Students &obper) { fstream file_inper; file_inper.open((inper), ios::in); if (file_inper.good() == true) { string line, s_pesel, s_name, s_surname, s_date, s_street, s_apartment, s_city; while (getline(file_inper, ...
[ "noreply@github.com" ]
noreply@github.com
0fd744badc30770b7d2b22d6056a8d3991b7d625
348517397b884c6f12a3fe74f870fde1a14b7b07
/10-19/problem_12.cpp
70b40ef4a95975c2c886516ec73077012591d364
[]
no_license
xiaff/sword-offer-practice
899f7d9a15fdfaac0b5f0dd62faff525e9035f60
ce6bc52cb313c81aa68ca31d22d11f7036e22209
refs/heads/master
2021-01-10T01:19:50.562527
2015-10-26T15:40:09
2015-10-26T15:40:09
43,377,065
0
1
null
null
null
null
UTF-8
C++
false
false
908
cpp
/* 面试题12:打印 1 到最大的 n 位数 输入数字 n,按顺序打印出从 1 到最大的 n 位十进制数。 比如输入数字 3,则打印出 1、2、3 ··· 999。 */ #include<iostream> using namespace std; class Solution { public: void printToMaxNDigits(int n){ if(n<=0){ return; } char* number=new char[n+1]; number[n]='\0'; for(int i=0;i<10;i++){ number[0]=i+'0'; print...
[ "loochenwei@gmail.com" ]
loochenwei@gmail.com
1ea8f2c807e18eb2ca2f2f38b231df01791457ad
29be7c52e05d32a4b02e6c0a1a6424abb2f60d57
/fuse-qreader/Example/build/Android/Debug/app/src/main/include/Android.com.fuse.Expe-9d584358.h
fe10dbc77a9adbd700f7b565d1299d4a037a6e74
[ "MIT" ]
permissive
redtree0/CITOS-APP
3b8cbc86fd88f6adb5b480035788eac08290c7a6
624f69770d8573dffc174f1f9540c22f19c71f14
refs/heads/master
2020-03-29T05:42:49.041569
2018-09-25T14:24:55
2018-09-25T14:24:55
149,594,359
0
0
null
2018-09-20T10:47:57
2018-09-20T10:47:57
null
UTF-8
C++
false
false
8,623
h
// This file was generated based on C:/Users/채재윤융합IT학부/AppData/Local/Fusetools/Packages/Uno.Net.Http/1.9.0/Implementation/Android/ExperimentalHttp/HttpRequest.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Android.Base.Wrappers.JWrapper.h> #include <Android.Base.Wrappers-...
[ "moter74@naver.com" ]
moter74@naver.com
efabc5fcf009d446dd70c2b3098551928ae78a65
287230b6695941701830dd513273d516c7235ba9
/prebuilts/gcc/linux-x86/arm/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf/arm-linux-gnueabihf/include/c++/8.3.0/ext/pb_ds/detail/cond_dealtor.hpp
4f1cc9b101de5cd2c120ca011da7d345b10dae6b
[]
no_license
haohlliang/rv1126
8279c08ada9e29d8973c4c5532ca4515bd021454
d8455921b05c19b47a2d7c8b682cd03e61789ee9
refs/heads/master
2023-08-10T05:56:01.779701
2021-06-27T14:30:42
2021-06-27T14:30:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
129
hpp
version https://git-lfs.github.com/spec/v1 oid sha256:a3949db1a0f4c423b4e3c62e63a54596ad723e02ded608265846589ac3a4a042 size 2724
[ "geierconstantinabc@gmail.com" ]
geierconstantinabc@gmail.com
f05a7ef3b457dcf2822e657008ebe5296223a39e
7fe9c825a46e0ce6250e05183cd065c258f777f4
/Code/Trees/BST_insert_search_delete.cpp
eea72d5e07ad9543c70fdc453927f4c62e1d1fe5
[]
no_license
100sarthak100/DataStructures-Algorithms
5a550275c9da99e94ea303acac30db6b307af880
b1193665b417a2654767141c7a55ab6d04edd582
refs/heads/master
2023-03-04T17:41:48.381379
2021-02-20T12:57:52
2021-02-20T12:57:52
266,804,252
2
5
null
2020-10-25T03:09:09
2020-05-25T14:43:47
C++
UTF-8
C++
false
false
2,140
cpp
#include <bits/stdc++.h> using namespace std; struct Node { int data; Node* left; Node* right; }; Node* makeNode(int data) { Node* newNode = new Node; newNode->data = data; newNode->left = NULL; newNode->right = NULL; return newNode; } Node* insert(Node* root, int data) { if(root ...
[ "sarthaknaithani127@gmail.com" ]
sarthaknaithani127@gmail.com
d10f4200bbe9ee1d1664c3bc1e722842f89abf82
db6903560e8c816b85b9adec3187f688f8e40289
/VisualUltimate/WindowsSDKs/vc7/atlmfc/src/mfc/viewprnt.cpp
7dbebe836e53c38e7276838d59bc6fadea699435
[]
no_license
QianNangong/VC6Ultimate
846a4e610859fab5c9d8fb73fa5c9321e7a2a65e
0c74cf644fbdd38018c8d94c9ea9f8b72782ef7c
refs/heads/master
2022-05-05T17:49:52.120385
2019-03-07T14:46:51
2019-03-07T14:46:51
147,986,727
4
1
null
null
null
null
UTF-8
C++
false
false
11,854
cpp
// This is a part of the Microsoft Foundation Classes C++ library. // Copyright (C) Microsoft Corporation // All rights reserved. // // This source code is only intended as a supplement to the // Microsoft Foundation Classes Reference and related // electronic documentation provided with the library. // See these sourc...
[ "vc6@ultim.pw" ]
vc6@ultim.pw
0dd8b69f580aef61ebc7d4096e0738c46d6d3ade
92e67b30497ffd29d3400e88aa553bbd12518fe9
/assignment2/part6/Re=110/71.2/U
6146b2d759387b7c7ceb048d0c540410caa07fee
[]
no_license
henryrossiter/OpenFOAM
8b89de8feb4d4c7f9ad4894b2ef550508792ce5c
c54b80dbf0548b34760b4fdc0dc4fb2facfdf657
refs/heads/master
2022-11-18T10:05:15.963117
2020-06-28T15:24:54
2020-06-28T15:24:54
241,991,470
0
0
null
null
null
null
UTF-8
C++
false
false
63,749
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*-------...
[ "henry.rossiter@utexas.edu" ]
henry.rossiter@utexas.edu
ea41a56288c784ad42b5672e8d9dc061f1adbf32
9baddaf0c91617af0554ea80780dff4d8e126cdb
/CodeVein_0.1/Client/Codes/Material_Inven.cpp
75af0dabd47088cffaf8582a5b581a85e1157913
[]
no_license
plmnb14/TeamProject_3D_CodeVein
d0742b799f639f7d78db51aaba198195f4cc5c76
15317dac5d8a75d76abf267d31d7c3930505684a
refs/heads/master
2023-05-07T08:21:02.579479
2020-04-02T06:57:57
2020-04-02T06:57:57
null
0
0
null
null
null
null
UHC
C++
false
false
6,165
cpp
#include "stdafx.h" #include "..\Headers\Material_Inven.h" CMaterial_Inven::CMaterial_Inven(_Device pDevice) : CUI(pDevice) { } CMaterial_Inven::CMaterial_Inven(const CMaterial_Inven & rhs) : CUI(rhs) { } HRESULT CMaterial_Inven::Ready_GameObject_Prototype() { CUI::Ready_GameObject_Prototype(); return NOERROR;...
[ "rala2580@naver.com" ]
rala2580@naver.com
cc4a3a98777e69fe743fe0799df661bd00063e50
efdc794bc1152d9e702ea03e32142cf4ff1031cd
/third_party/pdfium/xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder.cpp
08a40c51b3ba574eed67bca58836d09eba85ba37
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
taggun/node-pdfium
c3c7c85fd4a280993aa0ce99dcb2f41ce8d592dc
1990bc55e39f700434841e35078cecaa347b1e36
refs/heads/master
2020-12-02T12:44:31.341993
2020-02-26T20:52:34
2020-02-26T20:52:34
96,583,707
3
3
BSD-2-Clause
2020-02-26T20:48:59
2017-07-07T23:34:05
C++
UTF-8
C++
false
false
12,875
cpp
// Copyright 2014 PDFium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com // Original code is licensed as follows: /* * Copyright 2006 Jeremias Maerki i...
[ "michael.arthur@ikegps.com" ]
michael.arthur@ikegps.com
8ce6f1b44b1d5f5764ca2b7fd7e077609e8e8f28
d85777873c9462bf0ca2e9e001808118517a4e71
/SegmentBracketWord.cpp
47f94c5301c2d6793ddaccf202e8723302ee1794
[]
no_license
hkmangla/cppProgramms
e8806e12d12aa948997dd02e5f2e747def42e661
9ebe9866ff7362092a3929d6f11a8d8fcb7c1ca5
refs/heads/master
2020-05-21T13:33:44.837358
2017-09-21T18:01:25
2017-09-21T18:01:25
69,689,126
1
0
null
null
null
null
UTF-8
C++
false
false
1,596
cpp
#include<iostream> using namespace std; //char arr[30002]; char tree[100001]; int lazy[100001]; int final; /** * Build and init tree */ void build_tree(int node,int last, int a, int b,char arr[]) { if(a > b) return; // Out of range if(a == b) { // Leaf node tree[node] = arr[a]; // Init va...
[ "hemantmangla78@gmail.com" ]
hemantmangla78@gmail.com
e52af348b5e5e309e753c794a3626f66ed6de5b5
c3c848ae6c90313fed11be129187234e487c5f96
/VC6PLATSDK/samples/Com/async/server/cunknown.h
f4a6b2b478c56dd671a61388ce7f96793413a36a
[]
no_license
timxx/VC6-Platform-SDK
247e117cfe77109cd1b1effcd68e8a428ebe40f0
9fd59ed5e8e25a1a72652b44cbefb433c62b1c0f
refs/heads/master
2023-07-04T06:48:32.683084
2021-08-10T12:52:47
2021-08-10T12:52:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,902
h
// ---------------------------------------------------------------------------- // // This file is part of the Microsoft COM+ Samples. // // Copyright (C) 1995-2000 Microsoft Corporation. All rights reserved. // // This source code is intended only as a supplement to Microsoft // Development Tools and/or on-l...
[ "radiowebmasters@gmail.com" ]
radiowebmasters@gmail.com
1340f79a4c60178d861f3af9f8279d1e80d38d5a
9f16950a070174c4ad6419b6aa48e0b3fd34a09e
/users/marcel/renderOne/imgui/colorGradingLutDesigner.cpp
1c52625f4ed86ddf6af55e7e3ff3320a4454880d
[]
no_license
marcel303/framework
594043fad6a261ce2f8e862f921aee1192712612
9459898c280223b853bf16d6e382a6f7c573e10e
refs/heads/master
2023-05-14T02:30:51.063401
2023-05-07T07:57:12
2023-05-07T10:16:34
112,006,739
53
1
null
2020-01-13T18:48:32
2017-11-25T13:45:56
C++
UTF-8
C++
false
false
14,159
cpp
#include "colorGradingLutDesigner.h" #include "imgui.h" #include "imgui_internal.h" #include "nfd.h" #include "framework.h" #include "gx_texture.h" #include "image.h" #include "Path.h" namespace ImGui { ColorGradingEditor::ColorGradingEditor() { applyIdentity(lookupTable); textureFilename[0] = 0; previewF...
[ "marcel303@gmail.com" ]
marcel303@gmail.com
ef4aa4a194460c1296672a02e414347716f7e3d0
f09828d9f3e7d08948e4d132d7077ce09d4807ab
/hexwindow.cpp
927a8a85cbac0acb41fbdc2872ef9d2030b339f5
[]
no_license
xobs/nandsee
f84957e5237be61c65114203f7ac2158c83cc4f2
f3509921fea693a615e940fd7a1fe85c75c42b2f
refs/heads/master
2021-01-10T01:18:27.668878
2013-06-04T06:19:50
2013-06-04T06:19:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
458
cpp
#include "hexwindow.h" #include "ui_hexwindow.h" HexWindow::HexWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::HexWindow) { ui->setupUi(this); connect(ui->actionClose, SIGNAL(triggered()), this, SLOT(closeWindow())); } HexWindow::~HexWindow() { delete ui; } void HexWindow::setData(const QByte...
[ "smcross@gmail.com" ]
smcross@gmail.com
ad4dfe012c9ec38931c40cee9c2388c37820303b
523767a79d9329509860112f55eb28109613af93
/_micro-api/libraries/Modbus/Modbus.h
b7e501488743c00c688bfc0413d23ead15b4b216
[]
no_license
Matheus-Garbelini/TransformerMonitoringSystem
4408d6f0ff36aabfd814b7bf966de8aecabc08fb
bd7ddf0abbc0f457adb4218ef994919ba4a4f906
refs/heads/master
2020-04-03T00:16:42.496763
2018-11-23T01:34:09
2018-11-23T01:34:09
152,512,116
1
0
null
null
null
null
WINDOWS-1250
C++
false
false
2,702
h
/* Modbus.h - Header for Modbus Base Library Copyright (C) 2014 André Sarmento Barbosa */ #include "Arduino.h" #ifndef MODBUS_H #define MODBUS_H #define MAX_REGS 32 #define MAX_FRAME 128 //#define USE_HOLDING_REGISTERS_ONLY typedef unsigned int u_int; //Function Codes enum { MB_FC_READ_COILS = 0x01, // Rea...
[ "mgabelix@gmail.com" ]
mgabelix@gmail.com
341180cd40032b5e00ddcbdb32119d14964c5405
74377cb6c163a0cf5f76fbccded9d47f49ce83e8
/console/console.hpp
594f8702475086a3c52e24dbd4b916f343e9c5b5
[]
no_license
mauve/util
a083ed95c8466f562c6fa444de3ab0666d7e0fda
94f46bdbbdc29da8cc1b002d9571f9d58b10f318
refs/heads/master
2020-05-14T14:28:31.565374
2015-02-25T12:05:17
2015-02-25T12:05:17
5,748,002
0
0
null
null
null
null
UTF-8
C++
false
false
926
hpp
/* * Copyright (C) 2012, All rights reserved, Mikael Olenfalk <mikael@olenfalk.se> */ #ifndef UTIL_CONSOLE_CONSOLE_HPP_ #define UTIL_CONSOLE_CONSOLE_HPP_ #include <iosfwd> #include <vector> #include <boost/noncopyable.hpp> #include <boost/smart_ptr/shared_ptr.hpp> #include <console/mode.hpp> namespace util { na...
[ "olenfalk@spotify.com" ]
olenfalk@spotify.com
7bd8aaa6949efa10bbafca6b1cf50c4733e48d45
ce348db4e164bab99136df8809f375e5ea61f715
/pyada/test/unittest/Addition_test.cpp
e4a6136b4cc62d203e00a391be925774acdbbede
[ "MIT" ]
permissive
tadeze/pyad
ecc883727d055fcc3d9a23ff2f3011ee97704cdb
ef3b4312989597d8d4a01194c0a03e2beca5bfb5
refs/heads/master
2022-03-30T18:28:26.014797
2020-01-23T20:27:33
2020-01-23T20:27:33
58,245,056
0
0
null
2019-10-25T21:42:42
2016-05-07T02:16:44
C++
UTF-8
C++
false
false
558
cpp
/* * Addition_test.cpp * * Created on: Apr 16, 2016 * Author: tadeze */ #include "gtest/gtest.h" //#include "../Addition.hpp" class AdditionTest : public ::testing::Test { protected: virtual void SetUp() { } virtual void TearDown() { // Code here will be called immediately after each test ...
[ "tadesse.habte@gmail.com" ]
tadesse.habte@gmail.com
1f1a37cac74c3db33e81f63636d5e2309a6563fa
1e51eae49731a9b9da87869328c2612f7b6bcfc4
/OpenCV/opencv-2.4.13/build/modules/calib3d/opencv_calib3d_pch_dephelp.cxx
074907ca1ffa213b1b08e47065de097ddd4f074e
[ "BSD-3-Clause" ]
permissive
Kairat100/Python-Optical-Flow
343b95d9e5f2abb5621ee2d5e0655df3bd15811b
0f946db528905d0a4c9ac1a617573af96cc88db1
refs/heads/master
2021-01-01T05:04:56.843664
2016-06-06T04:23:22
2016-06-06T04:23:22
57,938,997
0
1
null
null
null
null
UTF-8
C++
false
false
174
cxx
#include "/home/shynggys/DenseTrajectories/Python-Optical-Flow/OpenCV/opencv-2.4.13/modules/calib3d/src/precomp.hpp" int testfunction(); int testfunction() { return 0; }
[ "sislam@nu.edu.kz" ]
sislam@nu.edu.kz
85181543a6da483a77981636171a7e7d1095a4d8
e28d2b90c7b0766cdac30bf9145d4a87750e8de7
/include/dg/llvm/ValueRelations/RelationsAnalyzer.h
96552f9683f22319018f9f7b650941c28ffade6e
[ "MIT" ]
permissive
wxzed0/dg
7e0441c3bab6c46de8e34c58bfe64c69d70966e8
0b1ada38d25d34898f5d1e19dbfe6e10006127e6
refs/heads/master
2023-06-19T08:03:09.938269
2021-07-14T09:10:59
2021-07-20T14:54:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
46,787
h
#ifndef DG_LLVM_VALUE_RELATION_RELATIONS_ANALYZER_HPP_ #define DG_LLVM_VALUE_RELATION_RELATIONS_ANALYZER_HPP_ #include <dg/util/SilenceLLVMWarnings.h> SILENCE_LLVM_WARNINGS_PUSH #include <llvm/IR/CFG.h> #include <llvm/IR/Constants.h> #include <llvm/IR/Instructions.h> #include <llvm/IR/IntrinsicInst.h> #include <llvm/I...
[ "mchqwerty@gmail.com" ]
mchqwerty@gmail.com
88a262be5decf5e7fdd1058070ddb26f555f8777
693f6694c179ea26c34f4cfd366bcf875edd5511
/lksh/lksh2016ch/day7/molecule.cpp
7f4ec4008c1f69965389a682cac70a829832586b
[]
no_license
romanasa/olymp_codes
db4a2a6af72c5cc1f2e6340f485e5d96d8f0b218
52dc950496ab28c4003bf8c96cbcdb0350f0646a
refs/heads/master
2020-05-07T18:54:47.966848
2019-05-22T19:41:38
2019-05-22T19:41:38
180,765,711
0
0
null
null
null
null
UTF-8
C++
false
false
122
cpp
#include <bits/stdc++.h> using namespace std; int main() { int n, L, R; scanf("%d %d %d", &n, &L, &R); return 0; }
[ "romanfml31@gmail.com" ]
romanfml31@gmail.com
39482cdcc8ea20de11aa628444642d563e74b250
8dc84558f0058d90dfc4955e905dab1b22d12c08
/third_party/blink/renderer/modules/indexeddb/idb_request_queue_item.cc
89cb7b04ab86d4115b61c4f476ec09b1db47c6c9
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0" ]
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
8,348
cc
// Copyright 2017 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/modules/indexeddb/idb_request_queue_item.h" #include <memory> #include <utility> #include "base/memory/scoped_refpt...
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
4aaaabad7deca47f844f3b700403f4ed55e62cbe
05042a6ec2764594be984be45f01edae5218c549
/tests/cpp14/can_require_concept_not_applicable_static.cpp
64c475cd8607bb86c0c7ae64ee5d5a17a96cf650
[ "BSL-1.0" ]
permissive
jaredhoberock/propria
9a84fdd763e43f7fc8216376938367f905ba8dba
7c46c8d2fcd0b16ad3de26835023e53d5c2c3750
refs/heads/master
2020-05-03T04:48:20.955755
2019-03-22T21:43:57
2019-03-22T21:50:09
178,432,109
0
0
null
2019-03-29T15:35:19
2019-03-29T15:35:18
null
UTF-8
C++
false
false
821
cpp
// // cpp14/can_require_concept_not_applicable_static.cpp // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://...
[ "chris@kohlhoff.com" ]
chris@kohlhoff.com
b466c7a9f59b6858f709e0014f3a396a68a22d66
f131f99c2410c2c84bfa8cd3ae1bc035048ebe48
/axe3d.mod/m3d.mod/max3d/resource.cpp
5b956a009eaaf0f1c1e42f732ba712d980709af7
[]
no_license
nitrologic/mod
b2a81e44db5ef85a573187c27b634eb393c1ca0c
f4f1e3c5e6af0890dc9b81eea17513e9a2f29916
refs/heads/master
2021-05-15T01:39:21.181554
2018-03-16T21:16:56
2018-03-16T21:16:56
38,656,465
2
2
null
null
null
null
UTF-8
C++
false
false
1,955
cpp
/* Max3D Copyright (c) 2008, Mark Sibly All rights reserved. Redistribution and use in source and binary forms, with or without conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary for...
[ "nitrologic@548b755b-aa20-0410-b24a-7f7e2b255a79" ]
nitrologic@548b755b-aa20-0410-b24a-7f7e2b255a79
1fb9b6d61ed1009a653bc27efc1df0add8e52b5c
952e9f52ae2ceea9cfea81767797f8c07e0255d5
/opengl_GIS/tvec3.h
2ec04181bfcdfa1608b42f2ee99e9300e70bc054
[]
no_license
tianyahechy/opengl_gisStudy
cec429fa2578d881733638f0c7d4fce68076b70b
26fc7df730cc75e508ac9b645cb3ea6b521efa7c
refs/heads/master
2021-07-20T20:52:41.447783
2020-04-29T22:30:06
2020-04-29T22:30:06
154,655,310
4
2
null
null
null
null
GB18030
C++
false
false
3,846
h
#pragma once #include "lifeiMathUtil.h" namespace CELL { template <typename T> struct tvec3 { typedef T value_type; T x; T y; T z; size_t length() const { return 3; } T& operator[] (size_t i) { assert(i < this->length()); return (&x)[i]; } T cons...
[ "tianyahechu2004@163.com" ]
tianyahechu2004@163.com
280375bc45f267a43b07876e83f07e70c9631037
1f81ca5af199914280b1e23302984f4248bd4cf9
/Function.h
9f6e71af7d40e3e68a9cd8b0d9386d41baada548
[]
no_license
manni901/DSI_4
f60bd044f2b1fb18104d1a2f651953250c060f03
4b046bbc37304794cf45b349930af9e9a0dd6db5
refs/heads/master
2020-03-09T11:13:50.021191
2018-05-03T17:16:11
2018-05-03T17:16:11
128,756,341
0
0
null
null
null
null
UTF-8
C++
false
false
1,142
h
#ifndef FUNCTION_H #define FUNCTION_H #include "Record.h" #include "ParseTree.h" #define MAX_DEPTH 100 enum ArithOp {PushInt, PushDouble, ToDouble, ToDouble2Down, IntUnaryMinus, IntMinus, IntPlus, IntDivide, IntMultiply, DblUnaryMinus, DblMinus, DblPlus, DblDivide, DblMultiply}; struct Arithmatic { ArithOp myO...
[ "jeeves901@Prashants-MacBook-Pro.local" ]
jeeves901@Prashants-MacBook-Pro.local
57dfc908d7948aecf8185c19f11cbed8295dd96d
8ff5d6f435da374cae475f0e6771fef8ac18321b
/VGP330/14_FinalProject/WinMain.cpp
4155032a9eec578252841f66386086ed13e565a6
[ "MIT" ]
permissive
CyroPCJr/OmegaEngine
18f982ad351ad18f4a7124091a9b3f5276160a92
8399ef8786ad487d9c20d43f5e12e4972a8c413a
refs/heads/main
2023-08-16T19:55:14.881116
2023-08-08T22:31:31
2023-08-08T22:31:31
350,535,694
5
1
MIT
2023-08-08T22:31:32
2021-03-23T00:56:54
C++
UTF-8
C++
false
false
212
cpp
#include "GameState.h" int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { Omega::MainApp().AddState<GameState>("GameState"); Omega::MainApp().Run({"VGP330 - Final Project", 1280,720}); return 0; }
[ "cpcmetal@hotmail.com" ]
cpcmetal@hotmail.com
fbf5b2c1fa47f21a3cae57399a0fcb5692643aa7
11dac444fa1aca03eb30a1895dfaa6d2bcd7987f
/arduino/sketch/sketch.ino
23f2bf9d50e09dc9b0ccbb9cd6ab78f4a790fa79
[ "CC0-1.0" ]
permissive
Rombaldoni/Studio-del-moto-uniformemente-accelerato-con-arduino
fb27ad9dc51a9f6521cbec4d3b04de0c8ede7671
4171efe1e4d8798e96f2c0782b0d9d13acc0c89d
refs/heads/master
2020-12-03T03:50:49.422094
2017-06-30T10:13:38
2017-06-30T10:13:38
95,781,744
0
0
null
null
null
null
UTF-8
C++
false
false
3,761
ino
// Librerie da usare #include <LiquidCrystal.h> #include <_Timer.h> #include "IRremote.h" const int ledCampionamento = 13;//posizione led "campionamento" const int ledReady = 10;// posizione led "ready" int receiver = 9; //posizione del sensore a infrarossi //parte del sensore ad ultrasuioni const int triggerPort = 7;...
[ "djromba@gmail.com" ]
djromba@gmail.com