blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
901044311b4db3998111fe9c4abc06378c8f53c6
b566c824f7afef50605bc51c254f49f521bde44d
/iyan3d/trunk/assimp-master/code/OptimizeGraph.h
7b3a1d0de15aac89622b4664868da7781e2118a7
[ "LGPL-2.0-or-later", "BSD-3-Clause", "MIT" ]
permissive
lanping100/Iyan3d
c8292a0a7e4a34b5cb921c00f8bbe4ee30ba78aa
c21bb191cec06039a3f6e9b2f19381cbd7537757
refs/heads/master
2020-06-17T13:53:58.907502
2019-07-02T07:43:39
2019-07-02T07:43:39
195,943,149
1
0
MIT
2019-07-09T06:06:31
2019-07-09T06:06:31
null
UTF-8
C++
false
false
4,650
h
/* Open Asset Import Library (assimp) ---------------------------------------------------------------------- Copyright (c) 2006-2016, assimp team All rights reserved. Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions ...
[ "harishankar@19668fbc-42bf-4728-acef-d3afb4f12ffe" ]
harishankar@19668fbc-42bf-4728-acef-d3afb4f12ffe
43531d1deaf65f0f34c4e7ca7ae8f7babeb5a0cc
98584e4c0b5ca18185ef6bc36e68fb65d750a20a
/groups/bsl/bsls/bsls_systemtime.t.cpp
5fc1de5b279037d26d83ed5506f4b24d6c56ce49
[ "Apache-2.0" ]
permissive
gongfuPanada/bde
9a14fb24a29ae1cbf9c4610d24ccb2e62ef8e797
c647bfc3c489ede879221bec9f0d56e0fafe1635
refs/heads/master
2020-12-07T17:21:44.418758
2014-12-20T22:46:35
2014-12-20T22:46:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
20,181
cpp
// bsls_systemtime.t.cpp -*-C++-*- #include <bsls_systemtime.h> #include <bsls_bsltestutil.h> #include <bsls_platform.h> #if defined(BSLS_PLATFORM_OS_WINDOWS) #include <windows.h> #else #include <unistd.h> #endif #include <stdint.h> #include <stdio.h> #include <stdlib.h>...
[ "abeels@bloomberg.net" ]
abeels@bloomberg.net
e332718fe9b624c44caa2589710a86a148eb1f2c
e622336571eb454a9d20f3c3db1855b695876cb8
/io_test/orangefs_client.cc
7f3ee79135dea2c919ce08b7498b18fdaa5db430
[]
no_license
jwma2012/indexfs
79c14bd8cb51b189a036d062249e87d031e4ca0c
7d3a60a97b3ac7a616d73095b6f9c62f84e2a598
refs/heads/master
2021-08-31T13:27:04.912830
2017-12-21T13:16:43
2017-12-21T13:16:43
115,006,315
0
0
null
2017-12-21T13:00:24
2017-12-21T13:00:24
null
UTF-8
C++
false
false
6,742
cc
// Copyright (c) 2014 The IndexFS Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. See the AUTHORS file for names of contributors. #ifdef PVFS extern "C" { #include <orange.h> } #endif #include <string> #include <sstream> #include "i...
[ "zhengq@cs.cmu.edu" ]
zhengq@cs.cmu.edu
1a7b7a79e75716ac69765314aaad8f2a9618ffd1
cc0b29ddd2b5967433a2d8321d95d3e43e58c622
/leetcode/LRUCache/LRUCache.h
b3fc4632ed4e51d57bb7aabe27143f9b542f1075
[ "MIT" ]
permissive
yiminyangguang520/myAlgorithmStudy
81cbba6710d4d52d71240dd01e90e7bf8e3fcce3
1917d48debeab33436c705bf9bc2fe9cf49f95cf
refs/heads/master
2020-12-31T03:43:08.716815
2015-10-17T04:41:27
2015-10-17T04:41:27
null
0
0
null
null
null
null
GB18030
C++
false
false
1,478
h
#ifndef ZL_LRUCACHE_H #define ZL_LRUCACHE_H #include <list> #include <map> #include <algorithm> class LRUCache { public: LRUCache(int capacity) : capacity_(capacity) { } int get(int key) { MAP::iterator iter = keyIndex_.find(key); if (iter != keyIndex_.end()) { valueList_.splice(valueList_.begin(), val...
[ "lizhenghn@gmail.com" ]
lizhenghn@gmail.com
bd29c2987823c3105dcb756fc9d3f1dc8bdcb123
66e457f024afcd0f9e9002f1021b09bc44368973
/codeup_c++/1098.cpp
59ca364475e1c4a27dcad4a51cc722e3b6e6f8e1
[]
no_license
EunSeong-Seo/coding_test
75aa6e08daa819f97cec3280abe11ec619d6661d
3afe9af737260cf3d53acb56fa8d14ce0ca81904
refs/heads/master
2023-05-13T23:38:52.099302
2021-05-29T14:08:38
2021-05-29T14:08:38
341,887,536
0
0
null
null
null
null
UTF-8
C++
false
false
482
cpp
#include <stdio.h> int main() { int w,h; int n; scanf("%d %d",&w,&h); int a[w+1][h+1]={}; scanf("%d", &n); int l[n],d[n],x[n],y[n]; for (int i=1;i<=n;i++) { scanf("%d %d %d %d",&l[i],&d[i],&x[i],&y[i]); if(d[i]==0){ for(int j=0;j<l[i];j++){ a[x[i]][y[i]+j]=1; } } else if(d[i]==1){ f...
[ "seoun4612@gmail.com" ]
seoun4612@gmail.com
801256c876b4b3e1d97a9185b7ea2dd531cfb2ac
38d50a38198640000d4e6cf8050de925ec244a1a
/zadanie/wallet_example.cc
8c3549b74326a7cb5712160731dde2f39a6287dc
[]
no_license
a-zapala/wallet
68a77cb1b12107c9efee007da4a6e09b7648b7af
5054c558bfccb295b7e1a01f371767e6bf2d5a64
refs/heads/master
2020-04-06T16:27:29.501665
2019-05-14T12:41:17
2019-05-14T12:41:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,121
cc
#include "../src/wallet.h" #include <cassert> #include <iostream> static const uint UNITS_IN_B = 100000000; using std::move; int main() { assert(Empty() == 0); assert(Empty() < Wallet(1)); assert(Empty().getUnits() == 0); assert(Empty().opSize() == 1); assert(Empty()[0].getUnits() == 0); Wa...
[ "zapala333@gmail.com" ]
zapala333@gmail.com
ee1dfacbdd241d371bb8e005d64d4d979c603721
b1a2bacb8f275e2ccaa5c53b311ee24e6bb520aa
/p48_rotate_image.cpp
f9bda5ee632e40414322d2fc89ed70b7bf7befdf
[]
no_license
angtylook/happycpp
0eb8a8bf0f190369dafd0190e144da7b633bc7ef
c24d6b7991a62f95354bf750bdc9cb55c4657f2b
refs/heads/master
2021-11-17T20:49:46.100409
2021-08-15T09:00:41
2021-08-15T09:00:41
139,601,988
0
0
null
null
null
null
UTF-8
C++
false
false
1,132
cpp
#include <algorithm> #include <iostream> #include <string> #include <tuple> #include <utility> #include <vector> #include "base/util.h" class Solution { public: void rotate(std::vector<std::vector<int>>& matrix) { for (size_t r = 0; r < matrix.size()/2; r++) { size_t len = matrix.size() - r-1; ...
[ "lookto2008@gmail.com" ]
lookto2008@gmail.com
cf169cf1d1ff267348ea30e6a840e5d2b43015bf
a2f9811fda4e4da5b02cacc948b1270bd4fce436
/visual_odometry_2/src/frame.cpp
df0140fa3bdc77e5378244a1ea30956fdd60a055
[ "MIT" ]
permissive
LSXiang/Practice-on-SLAM
7268f083fc6159a2bcecd5e464c09caa770e19bf
1173bbab4e50a29a61d3affb23ceca32bcc0bf97
refs/heads/master
2020-03-15T00:38:16.591147
2019-04-01T15:05:42
2019-04-01T15:05:42
131,873,868
6
0
null
null
null
null
UTF-8
C++
false
false
1,972
cpp
/** * @file frame.cpp * @version v1.1.0 * @date Dec,12 2017 * @author jacob.lin * * @note ver1.1.0(Dec,22 2017) : add map point storage mechanism to create local-map perfect visual odometry */ #include "frame.h" namespace visual_odometry { Frame::Frame() : _id(-1), _time_stamp(-1), _camera(nullptr)...
[ "lsx499285437@163.com" ]
lsx499285437@163.com
aeeb0c7f8b3ef64c063b599f5e0c3af4f785e98b
807c766a846c09547a57df9cd4b2f01b530b6345
/src/compression/Config.hpp
9658e4d33d965a29155ce357aff0994a23920f8c
[ "BSL-1.0" ]
permissive
PubFork/KTL
8b11edf83bc3346f1eb26100274ccf9a1579cab2
8314bf574f48e78ed90c10cdb34c5dd5e95a0211
refs/heads/master
2021-05-30T22:03:05.578003
2015-09-06T13:29:59
2015-09-06T13:29:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
606
hpp
/*============================================================================= Copyright (c) 2010-2015 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/KTL 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) =====...
[ "bolero.murakami@gmail.com" ]
bolero.murakami@gmail.com
d9ad0a90b4c19a9c807b29b22d3cffc7c273a819
fc48cd25cd7a6a1061a15826c4d5502bee88fe2a
/MyDungreed/MyDungreed/ShopWindow.h
cd1199961d9c49c87ea2a0924a0f44b39425da3e
[]
no_license
Daruria/CopyProject
9e3b5ba0f607930b6f58104e9eb52c4f04e2f98f
672bc7c90aff617d2aa5f087e77f30129565d9a0
refs/heads/master
2022-11-20T12:19:03.801310
2020-07-26T17:02:55
2020-07-26T17:02:55
282,668,688
0
0
null
null
null
null
UTF-8
C++
false
false
595
h
#pragma once #include "UIWindow.h" class CInvenSlot; class CShopSlot; class CShopWindow : public CUIWindow { public: CShopWindow(); virtual ~CShopWindow(); public: virtual void Initialize(); virtual void Initialize(const string& strKey, const wchar_t* pPath); virtual int Update(); virtual void LateUpdate(); v...
[ "56038721+Daruria@users.noreply.github.com" ]
56038721+Daruria@users.noreply.github.com
032a313d90e7c7b29f5e6012416392cc5bf50904
5815ea16d4624ce357d0f0af8ce5f3fda0196177
/graph/Strongly_Connected_Components.cpp
f767f65b9dd9515d894adc54f897af94cde4708b
[]
no_license
rajharsh81070/Algorithms
eda89218b4a0fb600ee22446f912cfd89ec957f5
6721be83f9d31ad2d7d13e4474c206ab1c8efbe1
refs/heads/master
2020-04-21T03:12:14.196186
2020-01-29T12:39:49
2020-01-29T12:39:49
169,277,438
0
0
null
null
null
null
UTF-8
C++
false
false
544
cpp
#include <bits/stdc++.h> using namespace std; void dfs(vector<int> visited, int src, map<int, int>adjList){ visited[src] = 1; for(int node: adjList[src]){ if(!visited[node]) dfs(&visited, node, adjList); } } bool check_SCC(int src){ vector <int> visited(V, 0); dfs(&visited, node, adjList); if(V!=accumulate...
[ "rajharsh81070@gmail.com" ]
rajharsh81070@gmail.com
2973125ef470bf48389bc4c67cb33d53e85f6646
eeb32df6fb54b058e586b60586d0c74616bcbbe7
/src/Shape.cpp
4370e91dd9893d55fe3bd93909e679a77ef56359
[]
no_license
aaronsanchez01/BlendShapes
c45a57167cbd2065101b67aea19c803d9ee9725a
2c8ff3b6e9c2b75b69d446f6394e69a3c8a81844
refs/heads/master
2023-08-24T16:43:35.531794
2021-10-21T14:49:52
2021-10-21T14:49:52
419,781,757
0
0
null
null
null
null
UTF-8
C++
false
false
9,952
cpp
#include <iostream> #include <fstream> #define GLM_FORCE_RADIANS #include <glm/glm.hpp> #include <glm/gtc/type_ptr.hpp> #define TINYOBJLOADER_IMPLEMENTATION #include "tiny_obj_loader.h" #include "Shape.h" #include "GLSL.h" #include "Program.h" using namespace std; using namespace glm; Shape::Shape() : prog(NULL),...
[ "11447+aaronsanchez01@users.noreply.github.tamu.edu" ]
11447+aaronsanchez01@users.noreply.github.tamu.edu
28845503046f6e2296507c2ff7c2e8046f5f40be
e3529c4ca7a5e7ac75bca8cc158d31ca415031f1
/src/draw-fstar.cpp
771e1c5c946c35d33aa608112870a973269c506f
[]
no_license
duckmayr/gpirt
74ab0c07c5328d07b1c29758c955481960d596cb
2a9751982a2c5aa7b7296459574849e414f70f8f
refs/heads/main
2023-06-21T21:23:38.815662
2021-08-14T13:50:37
2021-08-14T13:50:37
187,258,515
7
1
null
2021-07-18T13:31:51
2019-05-17T17:45:27
R
UTF-8
C++
false
false
1,080
cpp
#include "gpirt.h" inline arma::mat double_solve(const arma::mat& L, const arma::mat& X) { using arma::trimatl; using arma::trimatu; using arma::solve; return solve(trimatu(L.t()), solve(trimatl(L), X)); } arma::mat draw_fstar(const arma::mat& f, const arma::vec& theta, const arma...
[ "j.duckmayr@gmail.com" ]
j.duckmayr@gmail.com
55de29758d923f18d0a4e4368ed4c1f3bacdc43a
336015c3f3b6cbd8e53493bc296c1af85afcde85
/evk/poller.h
6cc752641fdb66909ce8a697526ddd3cfb79a2e1
[]
no_license
PumpkinGG/evk
88b043c96043695ec577dcf22aebb3ad1dd0c0ab
828b14fbb2539d8233fee641c1de6fb029c82f20
refs/heads/master
2020-04-28T02:20:45.942915
2019-03-19T01:26:46
2019-03-19T01:26:46
174,894,908
1
0
null
null
null
null
UTF-8
C++
false
false
1,120
h
#pragma once #include <vector> #include <map> #include "evk/inner_pre.h" #include "evk/timestamp.h" #include "evk/event_loop.h" struct pollfd; namespace evk { class Channel; // IO Multiplexing with poll(2). // This class doesn't own the Channel objects. class Poller: public noncopyable { public: typedef std::v...
[ "guokh888@163.com" ]
guokh888@163.com
eacf349c68ad8eefca899348eb996ee9b7afcabe
7127beefb2ea0abf98a32f81decb9e290a406ec8
/source/agent/plugins/samples/common/face_detection.h
47872fb100d167b806b85f3bf339313cbcc6304b
[ "Apache-2.0" ]
permissive
winlinvip/owt-server
90f6652508f174b5a6ad5c501647acf1b53866b7
2257e304bba9bfa2bc17c27cd150c6b99004153c
refs/heads/master
2021-01-08T03:40:45.283183
2020-02-13T06:06:03
2020-02-13T06:06:03
241,901,788
1
0
Apache-2.0
2020-02-20T14:14:52
2020-02-20T14:14:51
null
UTF-8
C++
false
false
729
h
// Copyright (C) <2019> Intel Corporation // // SPDX-License-Identifier: Apache-2.0 #ifndef FACE_DETECTION_H #define FACE_DETECTION_H #include <inference_engine.hpp> using namespace InferenceEngine; class FaceDetection { public: struct DetectedObject { cv::Rect rect; float confidence; }; pu...
[ "xiande.duan@intel.com" ]
xiande.duan@intel.com
bbb480a007808e91c0a691d6343675d314ad85bd
c580faee969b4e9c710885179d064fcf1ea17518
/baekjoon/1967.cpp
056ac6b0f5779583f563d7720d5259b95409ae4a
[]
no_license
atdavidpark/problem-solving
b4c2ecca91dc5bc46bced150d7287761eac708f2
0c66e16ce467b4a41aa1fa575b202386a20a9a49
refs/heads/master
2023-07-17T08:29:43.332135
2021-09-03T03:47:26
2021-09-03T03:47:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,193
cpp
#include <iostream> #include <cstdio> #include <vector> using namespace std; const int MAX_N = 10000; int n; vector<pair<int, int> > adj[MAX_N + 1]; int parent[MAX_N + 1]; int diameter[MAX_N + 1]; int path[MAX_N + 1]; void construct(int i) { int path1 = 0, path2 = 0; for(int v = 0; v < adj[i].size(); ++v) ...
[ "kyg_516@naver.com" ]
kyg_516@naver.com
dafb405c9574307271d52bfebc85ed45ab9943a4
9559bdd7ec4f0ee5937f80c514c3400dd0fd3ed7
/OpenGL-Sandbox/Src/ExampleApp.cpp
13d6f2b23e6a9a77cedfd796bcf8960fde0f5308
[ "Apache-2.0" ]
permissive
lalishansh/OpenGL-TestSite
224fba88acc6980b0db54e1892668260850209f9
6887725e0c268f9949050547578509e06be83eae
refs/heads/main
2023-08-11T14:41:48.340190
2021-10-14T12:22:50
2021-10-14T12:22:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
361
cpp
#include "GLCore.h" #include "ExampleLayer.h" using namespace GLCore; class Example : public Application { public: Example() : Application("OpenGL Examples") { PushLayer<ExampleLayer> (); PushLayer<ExampleLayer> ("Example Layer 2"); //ActivateLayer (0); } }; int main() { std::unique_ptr<Example> app = st...
[ "lalishansh@gmail.com" ]
lalishansh@gmail.com
6b6d04a38c6a47eafa3249035f03c6f28d0b0988
5ddd0ec20099a9c3ffe865c835dcceb5b7fd0332
/of_v0.8.0_vs_release-gesture-recognizer/apps/myApps/GRT_Predict/GRT/ClassificationModules/BAG/BAG.cpp
6437b3f378bff6bbf4bb8078a290ce33557f250e
[ "MIT" ]
permissive
MarkusKonk/Geographic-Interaction
af81f9f4c7c201dd55843d4dd0d369f2f407d480
b74f6f04656611df8dc4ebdea43f263cea67b366
refs/heads/master
2020-12-30T10:36:34.414880
2014-02-03T12:37:45
2014-02-03T12:37:45
13,868,029
2
1
null
null
null
null
UTF-8
C++
false
false
15,365
cpp
/* GRT MIT License Copyright (c) <2012> <Nicholas Gillian, Media Lab, MIT> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, co...
[ "matthias.m.hinz@googlemail.com" ]
matthias.m.hinz@googlemail.com
d54287f81e8c4008b97343d1f5cb815d352a7659
20d21364b3b621b0d7094b16b349ebd0b48bdec0
/libpldmresponder/bios_string_attribute.cpp
1b6ba758733e8e4ceee6f7a732cb54a742a03df4
[ "Apache-2.0" ]
permissive
ibmzach/pldm
e9afc617407c42901db29daba8a2a2d575dbf27e
1a636b2ce8b97e6ea9378632e96532fcbdcbed87
refs/heads/master
2021-05-19T09:29:01.312096
2020-06-18T15:01:31
2020-06-18T15:01:31
251,630,106
0
1
Apache-2.0
2020-03-31T14:35:29
2020-03-31T14:35:29
null
UTF-8
C++
false
false
4,301
cpp
#include "bios_string_attribute.hpp" #include "utils.hpp" #include <iostream> #include <tuple> #include <variant> namespace pldm { namespace responder { namespace bios { BIOSStringAttribute::BIOSStringAttribute(const Json& entry, DBusHandler* const dbusHandler) : BIOSAtt...
[ "dkodihal@in.ibm.com" ]
dkodihal@in.ibm.com
d6af900a3a476681d68fa98cd7055b4b421754db
4109d86c9f0232be2e264b679091305111574a75
/SFML/SFML1/Classes/Board.cpp
d6c54fa77a65b065b1e8d25616e183a64e4c36c8
[]
no_license
CosDevelopment/backups
936a04921de963405564658d5ce51325518b2b9f
edbf83a9b5168c0bd23b1212178a091b9e9ae61b
refs/heads/master
2020-05-03T06:57:32.196394
2019-03-29T23:24:47
2019-03-29T23:24:47
178,485,641
0
0
null
null
null
null
UTF-8
C++
false
false
1,569
cpp
#include "./Headers/Board.h" #include <iostream> #include "./Headers/Items.h" Board::Board() : sf::Sprite() { treasure.setSize(sf::Vector2f(20.f, 20.f)); treasure.exist = true; treasure.setFillColor(sf::Color::Cyan); treasure.setPosition(sf::Vector2f(180.f, 290.f)); // Constructure applies default/b...
[ "prestomsmith@prestonsmith-inspiron-5767.attlocal.net" ]
prestomsmith@prestonsmith-inspiron-5767.attlocal.net
979a0cb5bd2ca4c1028eaf98821c9ca47c669d92
5320551c3eade4544528d9684e739190e028ab8f
/src/enzo/Grid.h
a8ebaf32599aeb0d6aea501f4038f32b705c179d
[ "NCSA", "BSD-3-Clause", "BSD-2-Clause" ]
permissive
YongseokJo/enzo_gas_clump
099ca3066e8dc0a6eb936d9019f60f712d0bf726
2ea9b041431d87c590663962c046b80fd830d62b
refs/heads/master
2022-12-30T06:17:36.687468
2020-10-19T04:19:39
2020-10-19T04:19:39
298,421,640
0
0
null
null
null
null
UTF-8
C++
false
false
119,557
h
/*********************************************************************** / / GRID CLASS / / written by: Greg Bryan / date: November, 1994 / modified: Many times by AK, DC, RH, JB, DR... / / PURPOSE: / ************************************************************************/ #ifndef GRID_DEFINED__ #define G...
[ "kerex@snu.ac.kr" ]
kerex@snu.ac.kr
0551f02b697e4a61a7c7ef903a54122d981c67cd
817307d2069d7a03ebf55436f06ff4e862d89eb5
/src/libPhylix/libPhylix/libPhylix_ObjectParams.cpp
7f395e0c85f1091f3b316601b087ee0e9478f1fd
[]
no_license
thejinchao/PhylixWorld
4efd8740a469a4059530992eaf94cd15f997e35a
bea5ee531430a714b7577661f2de88112e1c2e89
refs/heads/master
2020-04-05T01:29:36.923041
2015-04-17T02:53:48
2015-04-17T02:53:48
26,108,192
1
0
null
null
null
null
UTF-8
C++
false
false
89
cpp
#include "libPhylix_stdafx.h" #include "libPhylix_ObjectParams.h" namespace Phylix { }
[ "thejinchao@gmail.com" ]
thejinchao@gmail.com
3f1dc01ece80867d0332d7820b81126800b8a3bc
d9cf144e1aeeac5848e32175457dfba7d17d1dd9
/qmzvtools/src/processing/qvtFunctionsInstalled.h
96b3c5bf31714247f2927084cf23f86c00e2c67f
[]
no_license
mzonta/f-qmzvtools
1d56262a5008968d909a2fbf40928584324c9e1a
c2edb63b0a1d1651056a339edaf13631b73ee1f8
refs/heads/master
2021-01-22T22:34:16.819960
2017-03-22T16:33:08
2017-03-22T16:33:08
85,552,612
0
0
null
null
null
null
UTF-8
C++
false
false
1,449
h
#ifndef QVTFUNCTIONSINSTALLED_H #define QVTFUNCTIONSINSTALLED_H // Qt #include <QDebug> // OpenCV #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> // C++ #include <iostream> // General #include "../general/qvtTimer.h" // Processing #include "qvtMessagesBuff...
[ "mzonta@ieee.org" ]
mzonta@ieee.org
c810f138efd7835ab285ff9021b7a089ec77cd6f
6cecdbbe6eb721a0e43c07ed2b31bdcc9e553c55
/Sail2D/Runs/first_flatplate_75_4/case/1000/U
f6dc4037dc31997a129bbaf4d440b3ac95549704
[]
no_license
kiranhegde/Gmsh
799d8cbefb7dd3f3d35ded15b40292fd3ede6468
fefa906dabfddd9b87cc1f0256df81b4735420e1
refs/heads/master
2021-01-19T23:21:57.414954
2015-01-21T02:02:37
2015-01-21T02:02:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
202,866
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.0 | ...
[ "rlee32@gatech.edu" ]
rlee32@gatech.edu
85425dc63b5321697920d385670ff68d1da9a0a1
5af36aa7fb5aa30865e2846086d20877bf83f237
/sf/Box.h
6295d4e9520f63b239f41b53485226a3e85531d0
[ "MIT" ]
permissive
bqqbarbhg/tex-resampler
d3dfe2b5b641a4a6f924082fb0245f58d2109cba
01fca7f5ff5cd2701a3f514ffb8c3f2326566e50
refs/heads/master
2022-12-22T00:59:41.702209
2020-09-13T19:42:33
2020-09-13T19:42:33
295,178,299
0
0
null
null
null
null
UTF-8
C++
false
false
2,737
h
#pragma once #include "Base.h" namespace sf { void *boxAlloc(size_t size); void boxFree(void *ptr, size_t size); struct BoxHeader { uint32_t refCount; uint32_t size; DestructRangeFn dtor; }; void *impBoxAllocate(size_t size, DestructRangeFn dtor); void impBoxIncRef(void *ptr); void impBoxDecRef(void *ptr); tem...
[ "samuli.1995@hotmail.com" ]
samuli.1995@hotmail.com
7b8c288ed76f9a6b711466a41dc947d725c98a97
fd3f05ba65b8571e96649e9ffa75d54f69041f06
/include/.svn/text-base/EUTelFilterHitFilter.h.svn-base
3c3f10f5aed140365964d11d44a8ac7de05d9d38
[]
no_license
terzo/Euetelscope_v00-09-02_fork
2fdefc4a442bda1cf06f5fc4dd0821ba454a07f5
d895b2ade9c4c7803bb4130aaa3072851898fcc1
refs/heads/master
2021-01-16T21:00:52.744370
2014-12-16T18:07:29
2014-12-16T18:07:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,036
/** * \class Implementation of a hit filter * \brief Performs selection of hits passing some requirements * * With EUTelHitFilter one can select hits that satisfy conditions like * - hit belongs to certain plain * - hit is in fiducial sensor area */ #ifndef EUTELHITFILTER_H #define EUTELHITFILTER_H // C++ #i...
[ "terzo@mpp.mpg.de" ]
terzo@mpp.mpg.de
9ec74907842a823467e4f89fa863b2a5321d2fd5
1a107406d2296a85805f6b85f4772903c0126796
/src/task_config.cxx
bccde26ae816ca1811e3b856b0fa05d33ee9dadf
[]
no_license
MirrShad/NuttxSpace-seerDIOBoard
75b18246ac862d94b7a212dae098783aab2ffcd1
21261ad7c4891ea7fb2b5c3bc7a9ccd9f59b6e26
refs/heads/master
2020-04-15T04:28:40.279124
2019-01-28T10:34:19
2019-01-28T10:34:19
164,384,873
1
0
null
null
null
null
UTF-8
C++
false
false
11,542
cxx
#include <nuttx/config.h> #include <sys/socket.h> #include <netinet/in.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <errno.h> #include <arpa/inet.h> #include "task_config.h" #include "udp.h" #include "Communication.h" #include "Gyro.h" #include "version.h" namespace{ ...
[ "757467644@qq.com" ]
757467644@qq.com
89c043ae0f99618916286e46bbc8c009c8176fbe
a09fe9bf8d8553ed572636de59cab4ce3ccd7f87
/GPS_SoftwareSerial_Parsing/GPS_SoftwareSerial_Parsing.ino
6093437af3ef43d88d62b0cc6748b935ddf847b1
[]
no_license
cyber2024/arduino
7f74875e3d434da10ba375968842edbe5ff3c330
c16a86819fa4d96c856a69a3796a3ef3ce84ac93
refs/heads/master
2021-06-02T08:58:48.110031
2019-10-30T11:59:26
2019-10-30T11:59:26
95,492,953
0
0
null
null
null
null
UTF-8
C++
false
false
4,137
ino
// Test code for Adafruit GPS modules using MTK3329/MTK3339 driver // // This code shows how to listen to the GPS module in an interrupt // which allows the program to have more 'freedom' - just parse // when a new NMEA sentence is available! Then access data when // desired. // // Tested and works great with the Adafr...
[ "russell.elfenbein@gmail.com" ]
russell.elfenbein@gmail.com
99faec7bd4ed4962b44fc75431a13a17a2472808
794aa11356f60837429d371dcbce9de4680b713c
/Source/Net/LibNet/SMTP.cpp
435da95eac0363835c3b6e489b1f1f56712b2a36
[ "MIT" ]
permissive
dzik143/tegenaria
bbe7d83f85229671d8e80001321f4aff23518583
a6c138633ab14232a2229d7498875d9d869d25a9
refs/heads/main
2023-01-02T09:57:50.399630
2020-10-26T04:30:39
2020-10-26T04:30:39
305,517,473
3
0
null
null
null
null
UTF-8
C++
false
false
10,528
cpp
/******************************************************************************/ /* */ /* Copyright (c) 2010, 2014 Sylwester Wysocki <sw143@wp.pl> */ /* ...
[ "sw143@wp.pl" ]
sw143@wp.pl
a4149646ebb4cf094dfe2e1392f93c4627efe7ac
d4c8c0cd22a3e281624bd1f4d3eff9cbe8c06be8
/src/traffic/continuous/BitTransposeCTP.cc
343bb8b4f35ed02e5782908c4a3057addd212283
[ "Apache-2.0" ]
permissive
dgibson66/supersim
7aae6fe8b234385d85e0615f471b2815410727c1
ccc98792a49642ce19362d1ba973946960cf32f4
refs/heads/master
2020-06-13T08:23:55.151356
2017-05-03T00:49:24
2017-05-03T00:49:24
75,434,366
0
0
null
2016-12-02T22:01:04
2016-12-02T22:01:02
null
UTF-8
C++
false
false
1,512
cc
/* * Copyright 2016 Hewlett Packard Enterprise Development LP * * 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 a...
[ "n.mcdonald83@gmail.com" ]
n.mcdonald83@gmail.com
0fa05a5ecf30c982f3ba377faef0786978966fbe
a909c4892d9604bfdbee0d5e64308acff2b80789
/Automixer/hilbert.cpp
b52ecf4ef7f22860e71c6ae8caaf773ef5ea1d60
[]
no_license
Wujian-sinemedia/AutomixerVST
0a1a3268921e65a80f313b974a6e86c6b61efc9b
b0b37599d99c8131efe7fca75c9ad15ecb7f881d
refs/heads/master
2022-01-02T18:37:27.768074
2018-03-05T10:21:13
2018-03-05T10:21:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,820
cpp
/*//use FFT => Phase Shift => IFFT method to do the hilbert transform #include<iostream> #include <complex> #include "./fftw3/fftw3.h" using namespace std; int main() { int N=4; // length of FFT fftw_complex *in,*out, *in2; // array for I/O double z; cout << "Size of fftw_complex: " << sizeof(fftw_complex) << endl; ...
[ "shadowfaxster@gmail.com" ]
shadowfaxster@gmail.com
8bbd4401fc957276a6386bae316d578f82058759
ab70a87a253334b9f0fece96c29a292de3c309ba
/Linked_List_Cycle.cpp
0af5d809510e43e08897a67bfd54d44ec30d7f11
[]
no_license
likunjk/LeetCode
9f66bf3990d1daf0a22f7f7491584de949f7dc34
bd4928a5d94060a53f6dd2df9799c960d3037222
refs/heads/master
2020-12-24T14:56:58.225139
2014-10-19T07:53:53
2014-10-19T07:53:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,124
cpp
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: // 如果允许使用额外的空间,那么可以使用unordered_map来记录已经访问过的节点 // 既然不允许的话,那么就只能使用快慢指针来解决问题 bool hasCycle(ListNode *head) { if(he...
[ "likunjk@gmail.com" ]
likunjk@gmail.com
4950fb3d7e888d4ccb3a957ae4c1808b3ff3807c
37efa9abea03ff506e903b5676dcfda5e707277a
/include/sp2/scene/node.h
0bc4663f0bfd832df652e5faba88f8fc2d9de088
[]
no_license
Ghostkeeper/SeriousProton2
2fda2e56625ad7d7edd57469339bdf530ab89033
8f3ad3ffa02c43a41176bec67c22f09efad0b955
refs/heads/master
2020-04-03T04:46:11.307385
2018-11-19T19:15:56
2018-11-19T19:15:56
155,023,443
0
0
null
2018-10-28T01:02:43
2018-10-28T01:02:43
null
UTF-8
C++
false
false
4,609
h
#ifndef SP2_SCENE_NODE_H #define SP2_SCENE_NODE_H #include <sp2/math/matrix4x4.h> #include <sp2/math/quaternion.h> #include <sp2/script/bindingObject.h> #include <sp2/pointerList.h> #include <sp2/graphics/scene/renderdata.h> #include <sp2/graphics/animation.h> #include <sp2/multiplayer/replication.h> class b2Body; cl...
[ "daid303@gmail.com" ]
daid303@gmail.com
1b8ec1460a48db409be63a334d57aca6657c0354
89f25307e6d2b04a793ee2c5148b4de9cc6265e3
/opencv_contrib-master/modules/hdf/test/test_precomp.hpp
fd337f200cd5e6c130c6766573ab4426819d246e
[ "BSD-3-Clause" ]
permissive
KVGrygoriev/opencv_tracking_for_javascript
a7ba936f0f51c794bc7fe34f0a1fb296825f7a94
a68fd180774feca8fe1c326f7b8578e8fd93568e
refs/heads/master
2023-03-04T16:19:12.764942
2021-02-11T15:38:17
2021-02-11T15:49:02
338,061,579
3
0
null
null
null
null
UTF-8
C++
false
false
596
hpp
// This file is part of OpenCV project. // It is subject to the license terms in the LICENSE file found in the top-level directory // of this distribution and at http://opencv.org/license.html. #ifdef __GNUC__ # pragma GCC diagnostic ignored "-Wmissing-declarations" # if defined __clang__ || defined __APPLE__ # p...
[ "kostiantyn@sensority.net" ]
kostiantyn@sensority.net
1dead1a7a887b09cfbb39d4031cf3d9f4df40b3b
27bb5ed9eb1011c581cdb76d96979a7a9acd63ba
/aws-cpp-sdk-ec2/source/model/DescribeVolumeStatusRequest.cpp
dcef704f31eb3c7fd6c9722da5099450f664f370
[ "Apache-2.0", "JSON", "MIT" ]
permissive
exoscale/aws-sdk-cpp
5394055f0876a0dafe3c49bf8e804d3ddf3ccc54
0876431920136cf638e1748d504d604c909bb596
refs/heads/master
2023-08-25T11:55:20.271984
2017-05-05T17:32:25
2017-05-05T17:32:25
90,744,509
0
0
null
2017-05-09T12:43:30
2017-05-09T12:43:30
null
UTF-8
C++
false
false
2,102
cpp
/* * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fil...
[ "henso@amazon.com" ]
henso@amazon.com
b991188b9dabba9c79f28209159e8f7e5b0085a0
11ef4bbb8086ba3b9678a2037d0c28baaf8c010e
/Source Code/server/binaries/chromium/gen/services/preferences/public/mojom/tracked_preference_validation_delegate.mojom-shared.h
6de027199bb92e0fe887ae4dfe9c59ad04c66934
[]
no_license
lineCode/wasmview.github.io
8f845ec6ba8a1ec85272d734efc80d2416a6e15b
eac4c69ea1cf0e9af9da5a500219236470541f9b
refs/heads/master
2020-09-22T21:05:53.766548
2019-08-24T05:34:04
2019-08-24T05:34:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,540
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 SERVICES_PREFERENCES_PUBLIC_MOJOM_TRACKED_PREFERENCE_VALIDATION_DELEGATE_MOJOM_SHARED_H_ #define SERVICES_PREFERENCES_PUBLIC_MOJOM_TRACKED_PREFERE...
[ "wasmview@gmail.com" ]
wasmview@gmail.com
da7e916d86176953881af575b89958f84f246ad6
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/base/wmi/tests/logger/structurewrappers.h
39839ca7ab64c94579ba54972dade1170f8d4ce3
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,789
h
// StructureWrappers.h: interface for the CStructureWrappers class. // ////////////////////////////////////////////////////////////////////// //*************************************************************************** // // judyp May 1999 // //************************************************************...
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
79bef15f7466c7efb0785ed752016aaaf08f9321
217344a59ed800b31bbd447dd5857cad3faca2d4
/AtCoder/Indeed2016/Test1C/C.cc
fb499f080e1056db9455da0d3e015ccb03474dcd
[]
no_license
yl3i/Retired
99fb62a0835589e6523df19525f93283a7e9c89f
472a96ccc2ef3c5bd0c2df7ddbe37604030723c4
refs/heads/master
2021-05-22T01:58:55.381070
2018-05-21T09:30:39
2018-05-21T09:30:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,345
cc
/************************************************************************* > File Name: C.cc > Author: Riho.Yoshioka > Mail: riho.yoshioka@yandex.com > Created Time: Sat 09 Jul 2016 07:28:31 PM CST *************************************************************************/ #include <bits/stdc++.h> typedef long lon...
[ "yuzhou627@gmail.com" ]
yuzhou627@gmail.com
77a00923c4cea581cddf51174d82437e27f39eda
0ba1f65704a4b678f9705c5632daf32a9c67990d
/LG/LGP4717.cpp
16405fdf28ac45cd8cd3f461edd7515b6eb81ab1
[]
no_license
Challestend/challestends-code-set
7f9e3a239ca32bc6424ac2a68ad46fb60b55ee43
bd7d6935216d56f3667a6f939298eb84fe44fa6a
refs/heads/master
2020-03-26T15:59:18.440653
2020-01-06T09:22:30
2020-01-06T09:22:30
145,075,894
0
0
null
2018-08-17T05:44:32
2018-08-17T05:30:09
null
UTF-8
C++
false
false
2,083
cpp
#include<cstdio> #define re register #define maxn 17 #define mod 998244353 namespace cltstream{ #define size 1048576 char cltin[size+1],*ih=cltin,*it=cltin; inline char gc(){ #ifdef ONLINE_JUDGE if(ih==it){ it=(ih=cltin)+fread(cltin,1,size,stdin); if(ih==it) return EOF; } return *ih++; #el...
[ "624985391@qq.com" ]
624985391@qq.com
c0ece3dfd2c7e0acb4685e8f314f8925e4903a41
0d439783f02cdf61d0b7f8d7dee3c3a918b7fc43
/cvimage.h
9546e70110d0e9fb8b25b01ef83a6d60c0f886ff
[]
no_license
godlzr/HST_alpha
0bb92a19c552321de8a17c0808d790a1338a5e00
45f6ff2b72d53ce4c89e3967615c55988b4eed69
refs/heads/master
2020-04-12T15:24:28.007681
2015-07-17T14:59:36
2015-07-17T14:59:36
39,230,157
0
0
null
null
null
null
UTF-8
C++
false
false
1,387
h
/* CVImage class * * Author: Zhongrui Li * Supervisor: Wonsook Lee * zli109@uottawa.ca, wslee@uottawa.ca * EECS, Faculty of Engineering, University of Ottawa, Canada * * Date: March 20th, 2015 * * Description: * This class is used to process the cv::mat under opencv space. */ #ifndef CVIMAGE_H #define CVIMAG...
[ "GODLZR@Zhongrui-Lis-MacBook-Pro.local" ]
GODLZR@Zhongrui-Lis-MacBook-Pro.local
8f92dc56c85f5ad3e3bf2f463d32c1d4f40b6e91
54f352a242a8ad6ff5516703e91da61e08d9a9e6
/Source Codes/AtCoder/abc035/A/4069712.cpp
d1bd95e3e85af91d132eb82d063cfa6c3312de6f
[]
no_license
Kawser-nerd/CLCDSA
5cbd8a4c3f65173e4e8e0d7ed845574c4770c3eb
aee32551795763b54acb26856ab239370cac4e75
refs/heads/master
2022-02-09T11:08:56.588303
2022-01-26T18:53:40
2022-01-26T18:53:40
211,783,197
23
9
null
null
null
null
UTF-8
C++
false
false
285
cpp
#include <iostream> #include <string> #include <vector> #include <map> #include <set> #include <algorithm> #include <cmath> using namespace std; int main(void) { int W, H; cin >> W >> H; cout << (W / 4 * 3 == H ? "4:3" : "16:9") << endl; return 0; }
[ "kwnafi@yahoo.com" ]
kwnafi@yahoo.com
4b91472a5ea30a8822d5ad84b8b8469363ccee8c
b9c4c14e57e860d52583a21b9bdf42e98b3eb2b4
/flowersofthings.ino
bb652c90db1b4696dd06d85ad90a697cb8c9069d
[]
no_license
magnusbauer/flowersofthings
fc66e6af95490d66f3ceaa5a481d9306d134f73b
ad30df2c1e0d72b4f291f46bbb67002b1b8d937e
refs/heads/master
2021-11-29T14:15:31.347115
2018-08-30T21:49:27
2018-08-30T21:49:27
146,087,048
5
0
null
null
null
null
UTF-8
C++
false
false
21,554
ino
/*__________________________________________________________Libraries__________________________________________________________*/ #include <ESP8266WiFi.h> #include <ESP8266WiFiMulti.h> #include <WiFiUdp.h> #include <ArduinoOTA.h> #include <ESP8266WebServer.h> #include <ESP8266mDNS.h> #include <FS.h> #include <pins_ard...
[ "magnus.bauer@physik.uni-muenchen.de" ]
magnus.bauer@physik.uni-muenchen.de
dba154ec8fe1a32c09c6ed87cc92cf7ac5ef6501
23b0864cd3cad8d6e7e33f39f1747aebd6ec23f1
/src/Alignment.h
17ace4b55717ad3952052ea6991c5c0334ec4cf7
[]
no_license
wang-h/HieraParser
868452132f1d68ba8710616b5697ee47a130d04b
581a8f623eedf7e12091afbb4195b4242e3bffb9
refs/heads/master
2020-03-23T12:57:09.754725
2018-07-26T10:12:41
2018-07-26T10:12:41
141,592,451
1
1
null
null
null
null
UTF-8
C++
false
false
639
h
#ifndef ALIGNMENT_H #define ALIGNMENT_H #include <vector> #include <set> #include <string> #include "utils/StringUtils.h" #include "utils/AssertDef.h" namespace HieraParser { typedef std::vector<std::set<int>> AlignmentTemplate; class Alignment : public AlignmentTemplate { // alignment object does not allow t...
[ "alveinwang@gmail.com" ]
alveinwang@gmail.com
fb54ef512f4747fec1059836b24c2331fa4f3548
d4e10809254528e731c783d69e936924eb5d2d21
/sig/include/sig/gs_grid.h
f6662995f2bb56d7e823d7e3e86659885c60efe1
[ "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
oolmos98/Object-Fly-Through
ada35c9e0bdc7f5946be67c8f8739396165d8a38
fea3ef48a3ceb595ae8de55d04597a79677a2009
refs/heads/master
2020-09-22T07:01:17.851079
2020-01-19T03:15:18
2020-01-19T03:15:18
225,096,702
1
0
null
null
null
null
UTF-8
C++
false
false
6,613
h
/*======================================================================= Copyright (c) 2018-2019 Marcelo Kallmann. This software is distributed under the Apache License, Version 2.0. All copies must contain the full copyright notice licence.txt located at the base folder of the distribution. ===========...
[ "44076681+jsantiago27@users.noreply.github.com" ]
44076681+jsantiago27@users.noreply.github.com
3931fb0537510d2c3856173914fe56a5da6a15a0
f7c80f2997f7b19da4c5d4588cb59d97d2b51c36
/renderdoc/driver/vulkan/vk_sparse_initstate.cpp
7f5091721407419b78baa0dc4375545c6c24c13f
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ylyking/renderdoc
cee1a763aee13476fc29596ec3fe781bd4752b8f
8cc414a8f66ca886baa8ba38f5ee0dd36d4f1a46
refs/heads/v1.x
2021-01-20T17:35:39.089306
2020-10-16T15:08:47
2020-10-16T15:13:30
305,359,596
0
0
MIT
2020-10-19T11:53:56
2020-10-19T11:21:16
null
UTF-8
C++
false
false
29,216
cpp
/****************************************************************************** * The MIT License (MIT) * * Copyright (c) 2019-2020 Baldur Karlsson * * 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...
[ "baldurk@baldurk.org" ]
baldurk@baldurk.org
2ff66c1603112cefa508fa96dd20e569df66e151
0e112bbaf863e531a3c21926bb56b52419f46007
/topcoder/SRM_758/LongJump2.cpp
509556637ef5233408aba6333c0e252523d0e5b8
[]
no_license
vexsnare/cpp-prog
375d6245a1e775cb043d9daa5093ff1f5734f633
f1b3ed042efac73e5c52a7e4d70e00f5cbc43e5c
refs/heads/master
2020-04-08T07:36:18.474191
2019-08-29T18:00:23
2019-08-29T18:00:23
159,144,720
3
0
null
null
null
null
UTF-8
C++
false
false
3,277
cpp
#include <vector> #include <list> #include <map> #include <set> #include <queue> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cst...
[ "vinay.saini@flipkart.com" ]
vinay.saini@flipkart.com
832c18a73299be077ac7a85635991d408ed523e6
dfe1f796a54143e5eb8661f3328ad29dbfa072d6
/psx/_dump_/17/_dump_c_src_/diabpsx/source/monster.cpp
1bf1b07e6728c6a6dc822874c7eb5091f202e38e
[ "Unlicense" ]
permissive
diasurgical/scalpel
0f73ad9be0750ce08eb747edc27aeff7931800cd
8c631dff3236a70e6952b1f564d0dca8d2f4730f
refs/heads/master
2021-06-10T18:07:03.533074
2020-04-16T04:08:35
2020-04-16T04:08:35
138,939,330
15
7
Unlicense
2019-08-27T08:45:36
2018-06-27T22:30:04
C
UTF-8
C++
false
false
28,257
cpp
// C:\diabpsx\SOURCE\MONSTER.CPP #include "types.h" // address: 0x8013215C // line start: 447 // line end: 466 void MonstPartJump__Fi(int m) { // register: 17 register int ScrX; // register: 19 register int ScrXOff; // register: 20 register int ScrYOff; // address: 0xFFFFFFD8 auto int WorldX; // address: 0...
[ "rnd0x00@gmail.com" ]
rnd0x00@gmail.com
bad917c4714443ef738d9b283a8a2e5029e4dd4f
140d78334109e02590f04769ec154180b2eaf78d
/aws-cpp-sdk-cloudhsm/source/model/ModifyHsmResult.cpp
daafa826018293201b0659a05f49f29b569131c4
[ "Apache-2.0", "MIT", "JSON" ]
permissive
coderTong/aws-sdk-cpp
da140feb7e5495366a8d2a6a02cf8b28ba820ff6
5cd0c0a03b667c5a0bd17394924abe73d4b3754a
refs/heads/master
2021-07-08T07:04:40.181622
2017-08-22T21:50:00
2017-08-22T21:50:00
101,145,374
0
1
Apache-2.0
2021-05-04T21:06:36
2017-08-23T06:24:37
C++
UTF-8
C++
false
false
1,353
cpp
/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fil...
[ "henso@amazon.com" ]
henso@amazon.com
71e408e3651babd414d7f523342aa1bcc45479a2
ead0b1c60e787f319242de5a56d246991d6e5464
/code/source/BaseModel.cpp
ff561f218d5127fd87d811dfc066969c03b324e4
[]
no_license
jplafonta/XPlatCSdk
fbc9edcf7dadf88c5e20f26b6deaafa3bb512909
302c021dcfd7518959551b33c65499a45d7829de
refs/heads/main
2023-07-30T04:54:27.901376
2021-08-31T14:26:52
2021-08-31T14:26:52
347,189,117
0
0
null
2021-04-15T01:09:33
2021-03-12T20:26:17
C++
UTF-8
C++
false
false
613
cpp
#include "stdafx.h" #include "BaseModel.h" namespace PlayFab { JsonObject::JsonObject(const JsonObject& src) : m_string{ src.m_string } { JsonUtils::FromJson(src.m_value, m_value); } const char* JsonObject::StringValue() const { return m_string.empty() ? nullptr : m_string.data(); } voi...
[ "jlafonta0550@gmail.com" ]
jlafonta0550@gmail.com
ce4f94cb48240f7a1fbd4f4ff271924c440fa1f1
6a2686efe30bd1b25c8c5dcea7aafa9535570783
/src/utilmoneystr.cpp
a340acab21950e5ddcdeedf78ce81d696df12581
[ "MIT" ]
permissive
bumbacoin/cream
493b9203c7d5cf73f67f2357dbecc25a1ae3088c
f3e72b58a3b5ae108e2e9c1675f95aacb2599711
refs/heads/master
2020-04-17T17:29:34.657525
2019-01-22T05:28:22
2019-01-22T05:28:22
166,779,886
0
0
MIT
2019-01-21T08:52:49
2019-01-21T08:52:46
null
UTF-8
C++
false
false
2,077
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2018 The Bitcoin Core developers // Copyright (c) 2018 The Cream developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <utilmoneystr.h> #include <p...
[ "creamcoin@gmail.com" ]
creamcoin@gmail.com
ddf0441ad23ba7211ef7c7ac951d084b091debfd
e5710ea6a8170f57a745548609d1258c00603344
/SpriteObject.cpp
090ec206034dbc689ea215d1efe77710e3bca5b7
[]
no_license
Mckinlaydnl/MazeEscape3
04a9d3329549b4b88b2f538519090f9137527023
1749024125cd6c0c61e6f659aef658037c0daef0
refs/heads/master
2020-04-03T11:54:41.598560
2018-10-29T15:26:23
2018-10-29T15:26:23
155,235,222
0
0
null
null
null
null
UTF-8
C++
false
false
252
cpp
// Project Includes #include "SpriteObject.h" SpriteObject::SpriteObject() : GameObject() // Always initialise your parent class in your constructor , m_sprite() { } void SpriteObject::Draw(sf::RenderTarget& _target) { _target.draw(m_sprite); }
[ "43002081+Mckinlaydnl@users.noreply.github.com" ]
43002081+Mckinlaydnl@users.noreply.github.com
5e2f2be5a168bb5c0d5210f92398db469307218d
666f25de2586ae5252653b39802acbfb35aa0dbb
/practical_exercises/10_day_practice/day6/virtual_func/virtual_feature.cpp
2400a1e7abc3a7d209fd1984dee647865bbff300
[]
no_license
wangning7149/CPlusPlusThings
16b9e0fac4d05989f1875ba256daccda746e3af5
334d4134e4b3e9d99f838494923db76afc74bc35
refs/heads/master
2023-04-23T19:32:55.309042
2023-04-01T05:58:16
2023-04-01T05:58:16
279,726,373
0
1
null
2023-04-01T05:58:17
2020-07-15T00:54:48
null
UTF-8
C++
false
false
704
cpp
/* 虚函数特性.cpp */ #include <iostream> #include <string> using namespace std; class A { public: void f(int i) { cout << "A::f()" << endl; }; }; class B : public A { public: virtual void f(int i) { cout << "B::f()" << endl; } }; class C : public B { public: void f(int i) { cout << "C::f()" << endl; } }; //一旦将某个成员函数声明...
[ "455954986@qq.com" ]
455954986@qq.com
c00e7e2d0e521b18c84a4fd4e006da5be2a05511
6820ef53dc0ca8663b71f5edb8ea23a8c823862b
/include/geo_configure.hh
68187dd275da92ffdbc23403d9fc93ac1f08f52e
[]
no_license
Adiolph/OptiX-test2
0a402b86a12df86f69917279ef46e0838311fc49
d04cb7bc5443060b76def477f7574acda8771782
refs/heads/main
2023-01-09T19:47:54.161062
2020-11-03T12:52:16
2020-11-03T12:52:16
307,619,651
0
0
null
null
null
null
UTF-8
C++
false
false
1,377
hh
#pragma once #include <array> #include <vector> #include <optix_world.h> #include <iostream> const unsigned int DOM_NUM_X = 4u; const unsigned int DOM_NUM_Y = 4u; const unsigned int DOM_NUM_Z = 4u; const float DOM_SEP_X = 50.f; const float DOM_SEP_Y = 50.f; const float DOM_SEP_Z = 50.f; const float DOM_RAD = 15.f; co...
[ "fan_hu@pku.edu.cn" ]
fan_hu@pku.edu.cn
3125f90bc3a5f16d4089d91cf328c9f648c1bf90
1b56e3669f612b01275fb188281817ac57d85eaf
/xlive/XLive/Networking/XLiveQoS.cpp
f7d79e02b1bc602e71f895a4839e67e5679e2ee3
[]
no_license
num0005/cartographer
29c87315fd911921901369cde28ad446fdb01472
f6edcbd49bb0a2d311a93e37c4d8b6bb1b713d42
refs/heads/development
2021-12-02T04:49:50.763656
2018-10-21T00:50:13
2018-10-21T00:50:13
102,141,108
1
0
null
2017-09-01T18:19:45
2017-09-01T18:19:45
null
UTF-8
C++
false
false
18,419
cpp
#include <WinSock2.h> #include <windows.h> #include "XLive\Networking\XLiveQoS.h" #include "H2MOD\Modules\Config\Config.h" #include "xliveless.h" #include "xlivedefs.h" #include <WS2tcpip.h> #include "Globals.h" #include <thread> #include <chrono> #include <functional> #include <numeric> using namespace std::chrono_li...
[ "crich@thedefaced.org" ]
crich@thedefaced.org
7bf2919c87f0e488b47fa3c726616e1e2fa19a16
3e886e8707eb5e08c47b3b40dc0ad75ef470645c
/grpc_async_greeter/greeter_async_client2.cc
521da3d889be5e37beed863dfde131a5968723b3
[]
no_license
kanglieyong/CppTechnique
c5f7ad4e79074e0fd1252f41e13491638b9d8e4a
f683fa8aa7609eb5caccfca93b60e84878c09888
refs/heads/master
2021-01-18T03:58:42.033320
2018-01-29T15:36:32
2018-01-29T15:36:32
33,157,717
0
0
null
null
null
null
UTF-8
C++
false
false
1,946
cc
#include <iostream> #include <string> #include <memory> #include <grpc++/grpc++.h> #include <grpc/support/log.h> #include <thread> #include "helloworld.grpc.pb.h" using grpc::Channel; using grpc::ClientAsyncResponseReader; using grpc::ClientContext; using grpc::CompletionQueue; using grpc::Status; using helloworld:...
[ "kanglieyong@gmail.com" ]
kanglieyong@gmail.com
7769e94852ef13c986495d9c37f4a1f04b66350d
b7c27f67dbb0678b18546ccbb53281f005aa109d
/include/OK/MapAnalyzer.hpp
c1c21fde16f6668ba9889555ace3a51d2ec84726
[]
no_license
JonShard/BeatSaberMapGenerator
4b7bd478ba4e6683905995111f9eeabb75a7051b
22d602e415dcaecfc25287a8cf9101a66e8bc292
refs/heads/master
2021-03-18T05:02:35.857584
2020-10-14T19:32:02
2020-10-14T19:32:02
247,047,962
3
0
null
2020-10-14T19:32:03
2020-03-13T10:43:20
C++
UTF-8
C++
false
false
415
hpp
#pragma once #include "Map.hpp" #include "Notation.hpp" #include "TransitionMatrix.hpp" namespace OK { // MapAnalyzer parses a map and populates a TransitionMatrix with every note to note transition the map made. class MapAnalyzer { public: static TransitionMatrix<bool> RegisterTransitionsInMap(Map map); // Reco...
[ "jonemskaara@gmail.com" ]
jonemskaara@gmail.com
985bedb8c4f98e2c27963aadb6a63a025a151adc
72843da20942b6075f83d31d737957f86191b01e
/Unclassified/Done/1463.cpp
12fa39a555301349482230bf0633bd157572fd58
[]
no_license
dtcxzyw/OI-Source
cb641f2c7e203a32073f4cae98e690f1cad3dc22
aa041e2af7e1546e8c7ac5a960a27a3489cfcff8
refs/heads/master
2021-12-17T17:52:05.043490
2021-12-17T12:52:52
2021-12-17T12:52:52
140,553,277
43
9
null
null
null
null
UTF-8
C++
false
false
639
cpp
#include <cstdio> #include <cstring> const int p[12]={2,3,5,7,11,13,17,19,23,29,31,37}; int n,cnt[5001]; void DFS(int c,int x,int fac,int mp){ if(cnt[fac]>x)cnt[fac]=x; if(c==12)return; for(int i=1;i<=mp;++i){ if(1LL*x*p[c]<n)x*=p[c]; else break; DFS(c+1,x,fac*(i+1),i); ...
[ "2601110573@qq.com" ]
2601110573@qq.com
381f2119d40138daf1999cca28c54d81bb9b8dc5
5fa67edfc3093083a89fb598f0f90f9d70b3c945
/Codes/final_5_jun_recv/final_5_jun_recv.ino
dd3dcf13604b30e5d7e87724a5f484f3c1648879
[ "BSD-3-Clause" ]
permissive
RutvijP/MBOT-SwarmAgent
d51bfad64a83062130cbe83d8cab21d3ed0ea368
ec5de1b4ba3cd1a7c6fa1dea49d3ba5b882103c8
refs/heads/main
2023-03-31T13:58:26.026104
2021-04-12T12:19:17
2021-04-12T12:19:17
357,181,252
0
0
null
null
null
null
UTF-8
C++
false
false
3,340
ino
#include <IRremote.h> #define ir 8 #define bittm 562 long int ack =0b00000000000000000000000000001000; int RECV_PIN = 4; // dig pin 4 for rx1 // dig pin 5 for rx4 IRrecv irrecv(RECV_PIN); decode_results results; void irsetup(...
[ "pathakrutvij541@gmail.com" ]
pathakrutvij541@gmail.com
cd908589f98b57b6aff89a2d44426f97496dedc8
2473468345d6ad1a891cc583876dda9d7314b936
/CH-HCNetSDKV5.3.6.30_build20180816_Win64/Demo示例/1- MFC综合示例/DlgWallVirLED.h
b8b75d041aecfd6e7eb8e87724f21c97979eb040
[]
no_license
nbdwddbf/hikvision
23d11d5304151794645216b33c5c77d5f8798638
8db96df23c7236fd5cf8b471b976cb628adcc071
refs/heads/master
2020-04-12T18:10:13.564654
2018-12-21T05:52:09
2018-12-21T05:52:09
162,671,443
7
5
null
null
null
null
WINDOWS-1252
C++
false
false
1,820
h
#if !defined(AFX_DLGWALLVIRLED_H__FF22C61E_B60C_4794_B43A_AA792019F494__INCLUDED_) #define AFX_DLGWALLVIRLED_H__FF22C61E_B60C_4794_B43A_AA792019F494__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // DlgWallVirLED.h : header file // ///////////////////////////////////////////////////////////////...
[ "bfding@cloume.com" ]
bfding@cloume.com
534bdc0f69a2fdb1c6907d44586209112ebbe284
c831d5b1de47a062e1e25f3eb3087404b7680588
/webkit/Tools/MiniBrowser/win/MiniBrowser.cpp
b5aee85f61f8523ae22fd63e71feb827ed0e5b46
[]
no_license
naver/sling
705b09c6bba6a5322e6478c8dc58bfdb0bfb560e
5671cd445a2caae0b4dd0332299e4cfede05062c
refs/heads/master
2023-08-24T15:50:41.690027
2016-12-20T17:19:13
2016-12-20T17:27:47
75,152,972
126
6
null
2022-10-31T00:25:34
2016-11-30T04:59:07
C++
UTF-8
C++
false
false
16,690
cpp
/* * Copyright (C) 2006, 2008, 2013-2015 Apple Inc. All rights reserved. * Copyright (C) 2009, 2011 Brent Fulgham. All rights reserved. * Copyright (C) 2009, 2010, 2011 Appcelerator, Inc. All rights reserved. * Copyright (C) 2013 Alex Christensen. All rights reserved. * * Redistribution and use in source and bi...
[ "daewoong.jang@navercorp.com" ]
daewoong.jang@navercorp.com
963ae986f552882b65cdc7cbb32564c4adcfc40f
38932ef8f77756b633e9410bd78a4d75fa4fbed2
/controller.cpp
08fe4075bdfa59daae4df28788f19aede57144f4
[ "MIT" ]
permissive
ERUIHNIYHBKBNF/qt-mini_maze
0c95304c240bf25fa9bf34fd001ff2e9c44b4a3f
0a1971ac3e49a6993e9858456dc0d8f7a196c14d
refs/heads/master
2023-06-22T05:36:09.523423
2021-07-15T02:25:59
2021-07-15T02:25:59
388,089,452
0
0
null
null
null
null
UTF-8
C++
false
false
1,336
cpp
#include "controller.h" Controller::Controller(MazeMap *map) { playerX = 1, playerY = 0; //qDebug() << "qwq"; status = 0; this -> map = map; this -> maze = map -> getMap(); this -> maze[map -> getHeight() - 2][map -> getWidth() - 1] = 3; } bool Controller::isOver() { return status; } bool...
[ "69080784+ERUIHNIYHBKBNF@users.noreply.github.com" ]
69080784+ERUIHNIYHBKBNF@users.noreply.github.com
b530de17e03409fe33d9db7cf670663ff6087265
4e46e885575946a3f573b527711e2346b42f12fd
/asterix_and_the_chariot_race/asterix_and_the_chariot_race.cpp
a5c4860a3aa5493645d364aafbba2d1481803a4e
[]
no_license
simoneriedi/ETH-AlgoLab2020
be62b15c723496be7223ba21fcfff1d860e85e96
bc19f4b94f8d4c1e8809fe4db5741d676620db1e
refs/heads/main
2023-07-24T02:00:55.887331
2021-09-10T10:45:57
2021-09-10T10:45:57
405,042,873
2
1
null
null
null
null
UTF-8
C++
false
false
1,710
cpp
#include<iostream> #include<vector> #include<limits.h> using namespace std; vector<vector<int>> edges; vector<int> cost; vector<vector<int>> memo; // Case 0: Current node is safe // Case 1: Current node is not safe but father is safe, because another node was forced to save it // Case 2: Father is not safe and the c...
[ "riedisi@student.ethz.ch" ]
riedisi@student.ethz.ch
c863b7dc8b75f7ad6e9073648a2d3c41fe1ce47a
0afa23db7c7f1287364885bbb4f80000b3da96c0
/Main/packages/CefSharp.Common.69.0.0/src/CefSharp.Core/AbstractCefSettings.h
51c0502dc41ff52f71f6dc11ca19bdb146550759
[ "MIT" ]
permissive
ReckoningHero/.NET--Private-Browser
6a31715e0076d63c6f08bad8ec194a3b61fe86be
569ebe4c60b3a64d2c550fbcf6556e7ae70510d0
refs/heads/master
2022-03-08T02:07:18.064125
2020-01-11T17:53:14
2020-01-11T17:53:14
145,083,785
3
0
MIT
2022-02-26T01:22:03
2018-08-17T06:55:13
HTML
UTF-8
C++
false
false
20,455
h
// Copyright © 2010 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. #pragma once #include "Stdafx.h" using namespace System::Collections::Generic; namespace CefSharp { /// <summary> /// Initialization settings...
[ "twinb0rn@github.com" ]
twinb0rn@github.com
03b92edbe80a08d5d51a24406282dfaf1b639f43
b0ad60a80e8e37be50ce0108c6528c3ae68eb50c
/boost_thread/src/ofApp.cpp
371f297ecb09283b03d25ab85df6e51a25d35df2
[]
no_license
toolbits/of_plus_boost_2014seminar
4b576ec74107a2a0871d9e7434a2bafe091aa45b
3c94dee9f52c63b26ca4ddecac7dbc45f653abdb
refs/heads/master
2021-01-18T14:38:15.070029
2014-10-22T11:22:31
2014-10-22T11:22:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,396
cpp
#include "ofApp.h" //-------------------------------------------------------------- void ofApp::setup(void) { // 新しいスレッドを作成して実行 try { _thread = boost::thread(boost::bind(&ofApp::thread, this)); } catch (std::exception& e) { std::cout << "an exception occurred : " << e.what() << std::end...
[ "zap00365@nifty.com" ]
zap00365@nifty.com
4fcbf3727ba1f6598251213e379f077789e31695
aab60f423c04515fae6bf95228fd91746de7e840
/src/myaction.cpp
7b269819c99891754195a8df9e3269dbbde1d750
[]
no_license
Lynsher/CS585
aa3aa0898f4a139184e4b87ce2cb877dce7cb6d9
de1cd683c465309f0ef59c80f63cb5bc61746c9d
refs/heads/master
2020-04-06T06:55:00.055327
2015-09-07T18:25:50
2015-09-07T18:25:50
42,049,774
0
0
null
null
null
null
UTF-8
C++
false
false
38
cpp
// myaction.cpp #include "myaction.h"
[ "a.lynsher@outlook.com" ]
a.lynsher@outlook.com
25f820705659ac82744392f64ebad7e9d4333a1a
33d359ef8935fe1e89c2b2f54cd8b8fc4127c706
/Code/PanelShortcuts.h
e6f0e0aa487a7c4d332a496db1a844e535d50cdb
[ "MIT" ]
permissive
YessicaSD/CITM_3_GameEngine
8f8eaf551be96dd60f4ac1dc4cc1d3f2329e6ed3
57a85b89a72723ce555a4eec3830e6bf00499de9
refs/heads/master
2020-07-28T00:38:58.135227
2020-06-21T13:41:46
2020-06-21T13:41:46
209,255,586
1
0
MIT
2020-03-21T23:43:32
2019-09-18T08:17:55
C++
UTF-8
C++
false
false
674
h
#ifndef __PANEL_SHORTCUTS_H__ #define __PANEL_SHORTCUTS_H__ #include "Panel.h" #include "Globals.h" #define KEYS_BUFFER_SIZE 128u class PanelShortcuts : public Panel { public: PanelShortcuts(std::string name, bool active = false, std::vector<SDL_Scancode> shortcuts = {}); void Draw() override; void ModifyShortcu...
[ "jaume.montagut.i.guix@gmail.com" ]
jaume.montagut.i.guix@gmail.com
847e3b34f3c7efa795261e8b775869bc559445c6
7ed641452ef59f901984af16832e3be69972e37f
/include/hermes/Support/JenkinsHash.h
293379298672e50447b0c94b0e1bc79d650e033c
[ "MIT" ]
permissive
mrousavy/hermes
6e8e80b7f8fff30caf408c6b3b0a03251fd34d35
6e5868763b08eb80f4164a926abb92fa5c71117f
refs/heads/master
2023-08-07T20:35:27.370384
2021-09-02T20:09:21
2021-09-02T20:10:36
355,471,392
2
0
MIT
2021-04-07T08:54:03
2021-04-07T08:36:20
null
UTF-8
C++
false
false
1,167
h
/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #ifndef HERMES_SUPPORT_JENKINSHASH_H #define HERMES_SUPPORT_JENKINSHASH_H #include <cstdint> namespace hermes { using JenkinsHas...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
4da03d578187726fa8d3b8620a79d859dab6081a
81f4dbea538e610e2d061a690ad797555119ec65
/src/.svn/pristine/4d/4da03d578187726fa8d3b8620a79d859dab6081a.svn-base
58d1609576e381ea9b37756fe0bd90768bebd7c5
[]
no_license
TakashiSasaki/MozcForLowVision
87f4671e2d1f2d7c554d0081201a9069fe40b62f
b4b3a7431a7d5e0e004a604962970699321c1151
refs/heads/master
2020-05-30T13:09:42.429636
2013-12-18T08:14:15
2013-12-18T08:14:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,126
// Copyright 2010-2013, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of condit...
[ "watanabe-3@ONO-PC.ICTDESIGN" ]
watanabe-3@ONO-PC.ICTDESIGN
508a20a92ae9f6e383b8d8ed0b3e40bedbbbea8d
de4f73c51b1fb5af0bddf3cd35b1a7aafafe12e1
/Cobertura.cpp
3567433bfc6d131fa9f719ff32a4a0d5a5204aa3
[]
no_license
hgdfvo/2021-1-exercicio-revisao-refatoracao
35c606dd27083f7ddcb993a5eb7b94d6ac49d7dc
2a0b4a36a06d619b3935f02f0d70e8f51905ad96
refs/heads/main
2023-07-07T11:22:33.462541
2021-08-17T18:51:38
2021-08-17T18:51:38
397,030,368
0
0
null
2021-08-17T00:38:06
2021-08-17T00:38:05
null
UTF-8
C++
false
false
840
cpp
#include "Cobertura.hpp" double Cobertura::valor(){ double v = AREA * VALOR_m2; return v; } double Cobertura::comissao(){ double c = AREA * VALOR_m2; return c * COMISSAO_COBERTURA_TAXA; } void Cobertura::print() { std::cout << "[Cobertura]" << endl; Imovel::print(); std::cout << "Area: " << AREA << endl <<...
[ "89052017+hgdfvo@users.noreply.github.com" ]
89052017+hgdfvo@users.noreply.github.com
5e914ace56359d316f5cc89242f179c65b413764
b37651a0663a283d36b1efc000efe1116f644986
/Strassen_version_1_counting_time.cpp
4603c9f55cf2699278a5258679461d52e09fa4a0
[]
no_license
13439797368/Cpp-program-1
85e1b035ff45aa28f8ca4787069d3fe39f5593d4
fc0f99dd864661a2e90aa2a792af7a1828a75dac
refs/heads/main
2023-01-15T02:47:43.204460
2020-11-16T07:26:55
2020-11-16T07:26:55
311,191,669
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
11,969
cpp
#include<iostream> #include<algorithm> #include<chrono> using namespace std; struct Matrix { float* matrix; int column; int row; }; Matrix* Build_Ones(Matrix* A) { //128 450ms //256 3071ms //512 ÄÚ´æ²»¹» A->column = 512; A->row = 512; A->matrix = new float[A->column * A->row]; for (int i = 0; i < A->col...
[ "11912306@mail.sustech.edu.cn" ]
11912306@mail.sustech.edu.cn
6ca20496db17648ef1153179040a616c63e67b58
5456502f97627278cbd6e16d002d50f1de3da7bb
/media/audio/win/core_audio_util_win_unittest.cc
57e09c7ce71824ec824b68583ee35863b640d9e3
[ "BSD-3-Clause" ]
permissive
TrellixVulnTeam/Chromium_7C66
72d108a413909eb3bd36c73a6c2f98de1573b6e5
c8649ab2a0f5a747369ed50351209a42f59672ee
refs/heads/master
2023-03-16T12:51:40.231959
2017-12-20T10:38:26
2017-12-20T10:38:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
19,819
cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/audio/win/core_audio_util_win.h" #include <stddef.h> #include <stdint.h> #include "base/macros.h" #include "base/strings/u...
[ "lixiaodonglove7@aliyun.com" ]
lixiaodonglove7@aliyun.com
6c2ab477eed3b6c8ac6390a462a3eaf748f695c4
444a7de897a71b6d65102371a7034d4cd58bc565
/BwInf_Kassiopeia_B/Kassiopeia.cpp
046f20bcbb0cd3c5392b8edb800aedcbab9191d1
[]
no_license
tobinatore/BwInf_Kassiopeias_Weg
698d798dbb327b1238124f38638d7cb2ba4984b1
c92ac0f6bf388a117150a23db2f2ee1ebe59f1ca
refs/heads/master
2021-01-11T14:52:05.686872
2017-01-27T19:03:43
2017-01-27T19:03:43
80,237,211
0
0
null
null
null
null
ISO-8859-1
C++
false
false
2,482
cpp
#include <iostream> //Ein-/Ausgabe #include <cstdlib> //system("...") #include <vector> #include <string> std::string Weg; struct vek //struct für alle wichtigen Operationen im Vektor { int x, y; }; using feld_typ = std::vector<std::string>; //Alias für std::vector<std::string> /*ADDITION VON VEK'S*/ vek operator...
[ "germanicalp@gmail.com" ]
germanicalp@gmail.com
8771687abef3ddb72f32b42dd1c84e431cb0b0af
329524483e292fde2587e9b8d3070247ec1e5848
/Ch7/rssi/rssiBeacon/rssiBeacon.ino
f94874b1931bdf6144634a8c95d80418a0ce980e
[]
no_license
equijano/ME544-Group-6
5741915ab33d0432ecdbe1bbed7d2b88cd89e161
b1f131a6c639862267fe2d441e85b808c1890b21
refs/heads/master
2016-09-10T15:04:37.113876
2015-12-12T21:26:50
2015-12-12T21:27:09
42,325,043
0
3
null
2015-10-09T19:07:51
2015-09-11T18:19:39
HTML
UTF-8
C++
false
false
6,828
ino
#include <Printers.h> #include <XBee.h> /** * Copyright (c) 2009 Andrew Rapp. All rights reserved. * * This file is part of XBee-Arduino. * * XBee-Arduino 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,...
[ "xmh@bu.edu" ]
xmh@bu.edu
37d85671650291a928bb185b181905bc498cc5dc
dd80a584130ef1a0333429ba76c1cee0eb40df73
/external/chromium_org/sync/util/cryptographer_unittest.cc
c045064674cc0b2db67c714f4f6501f1e61ce7ef
[ "BSD-3-Clause", "MIT" ]
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
6,609
cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "sync/util/cryptographer.h" #include <string> #include "base/memory/scoped_ptr.h" #include "base/strings/string_util.h" #include "sync/prot...
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
fc3c5ec3ed14cb798db7b3655a863203303995f2
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/CMake/CMake-gumtree/Kitware_CMake_repos_basic_block_block_3410.cpp
a230b01d0814cfac264df68387713ef3ec10336a
[]
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
414
cpp
{ minLen = 32; maxLen = 0; for (i = 0; i < alphaSize; i++) { if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; if (s->len[t][i] < minLen) minLen = s->len[t][i]; } AssertH ( !(maxLen > 17 /*20*/ ), 3004 ); AssertH ( !(minLen < 1), 3005 ); BZ2_hbAssignCodes ( &...
[ "993273596@qq.com" ]
993273596@qq.com
14c8def445f82281f8ad452d392be5a411e998ff
5d83739af703fb400857cecc69aadaf02e07f8d1
/Archive2/d2/d460c21a517b7d/main.cpp
4662d7f1b1001cc29c42ad4a5aafece1d229bfb9
[]
no_license
WhiZTiM/coliru
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
2c72c048846c082f943e6c7f9fa8d94aee76979f
refs/heads/master
2021-01-01T05:10:33.812560
2015-08-24T19:09:22
2015-08-24T19:09:22
56,789,706
3
0
null
null
null
null
UTF-8
C++
false
false
617
cpp
// regex/regex1.cpp #include <regex> #include <iostream> using namespace std; void out (bool b) { cout << ( b ? "found" : "not found") << endl; } int main() { // find XML/HTML-tagged value (using defaultsyntax): regex reg1("<.*>.*</.*>"); bool found = regex_match ("<tag>value</tag>", // dat...
[ "francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df" ]
francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df
4c7a4e29e404869979e718956dfbc8013d4479dc
805639de9784c49ce728b37928f43c12e13a993d
/MFCApplication6/MFCApplication6Dlg.h
1440ce09f7cfbb5b1a3e45ebc15182850f751d7c
[]
no_license
arter97/mfc_calc
09fd0c0736dde296a34ca47fbdae3eac9eecd664
10a3f298b40a148ad65312bbe7555f960a9e0641
refs/heads/master
2020-03-21T09:12:47.114160
2018-06-24T12:19:13
2018-06-24T12:19:16
138,388,207
0
0
null
null
null
null
UHC
C++
false
false
2,134
h
// MFCApplication6Dlg.h : 헤더 파일 // #pragma once // CMFCApplication6Dlg 대화 상자 class CMFCApplication6Dlg : public CDialogEx { // 생성입니다. public: CMFCApplication6Dlg(CWnd* pParent = NULL); // 표준 생성자입니다. // 대화 상자 데이터입니다. #ifdef AFX_DESIGN_TIME enum { IDD = IDD_MFCAPPLICATION6_DIALOG }; #endif pro...
[ "qkrwngud825@gmail.com" ]
qkrwngud825@gmail.com
a60be28c446de2d976a55d19715b8e5116133ca8
706c324a4c7ba0a6682c1cfd99c9be488cb83562
/libraries/blockchain/include/bts/blockchain/market_engine_v5.hpp
c3e6a7cb5f4a205b14c838c21ac965a10d170639
[ "Unlicense", "LicenseRef-scancode-public-domain" ]
permissive
hubertFE/bitshares
98d73767e452cbb30142defb266d83a4f40e9453
8c908f81510e7103b41323bcf5a5731047c59994
refs/heads/master
2021-05-29T00:14:39.687599
2015-01-22T22:07:45
2015-01-22T22:07:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,380
hpp
#include <bts/blockchain/chain_database_impl.hpp> namespace bts { namespace blockchain { namespace detail { class market_engine_v5 { public: market_engine_v5( pending_chain_state_ptr ps, chain_database_impl& cdi ); bool execute( asset_id_type quote_id, asset_id_type base_id, const fc::time_point_sec tim...
[ "vikram@bitshares.org" ]
vikram@bitshares.org
2d23c948b839d422a2f2a973ff3853a75dcb68f6
8e5837534b410735db1240446e01270414deaea3
/Cards/Cards/Card.h
9dc7bcaf009b8421474c12fa90677e7a187ac1be
[]
no_license
Ahmed-Mohamed7/Jungle_Game-
203350f6223bd365c15de0186202fe514e47f45d
5f58a5e36b0b8bc825a5af8c68b80d6280012de6
refs/heads/master
2023-02-11T17:18:01.565237
2021-01-16T22:54:51
2021-01-16T22:54:51
308,757,658
0
0
null
null
null
null
UTF-8
C++
false
false
1,675
h
#pragma once #include "GameObject.h" #include "Player.h" // Base Class of All Types of Cards (CardOne, CardTwo, CardThree, ...etc.) // Note: We will make each type of Card in a separate class because: // it may have additional data members and functions like: Apply(), ...etc. which have different implementation depen...
[ "you@example.com" ]
you@example.com
92a462be0c49e02ec0e8e8a369b499d5c73da895
3de35f177d0300ec8a70a4232d2326f533c3a978
/Snake/Snake.cpp
05b3bb3321dfa3b676a3da3d655d1445d0740e9c
[]
no_license
Sed1234/SnakeGame
23082162a949cf5b9c4c44fbc4cecac6b4aa1037
9246ecf61fb259f078dbfc7bd399d0ee5d79da3f
refs/heads/master
2020-03-19T06:40:34.878257
2018-06-20T14:00:44
2018-06-20T14:00:44
136,044,883
0
0
null
null
null
null
UTF-8
C++
false
false
774
cpp
#include "Snake.h" Snake::Snake() { sign = '*'; body.push_back(Pixel(5, 5)); direction = Default; } void Snake::move() { int x = 0, y = 0; switch (direction) { case Up: y = -1; break; case Down: y = 1; break; case Left: x = -1; break; case Right: x = 1; break; case Default: return; defaul...
[ "КимС@224_5" ]
КимС@224_5
932e8f56cf895cde48966a5f8a41e2fdabed57d5
7a4deab27b8247075f666bde3483247745daffc0
/Tests/CxxTest/PalmCxxTests/src/cxxtest/TestRunner.h
0852b424e898df3cef6a66d4e7fc24b612f0a26a
[ "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
liuzhiping/libpalmsocket
7f0c2114cb9285bd5898e00890248b41df8a5fec
7ce5f4567cf1c2a75a45be9d800b1699e16a694c
refs/heads/master
2021-01-18T09:15:13.891386
2012-08-31T01:09:09
2012-08-31T01:16:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,958
h
/* @@@LICENSE * * Copyright (c) 2009-2011 Hewlett-Packard Development Company, 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 * * Unl...
[ "sapna.todwal@palm.com" ]
sapna.todwal@palm.com
380a30180c5bd17286f3cdcd8b1342e85d4f1b59
5b14dac27d397c2ac27d844803125057933588ac
/구현/순열의순서_1722.cpp
c25425db32494b48d2d98c2ecd82c655055f7d06
[]
no_license
201311113/BaekjoonCode
f00aafa98c057f0eeed409e512852165b1865846
7ed7eb4cc09bd91d79e71ac270b1bd555c965e22
refs/heads/master
2020-06-23T11:21:41.299124
2020-05-06T10:24:05
2020-05-06T10:24:05
198,607,459
0
0
null
null
null
null
UTF-8
C++
false
false
1,122
cpp
#define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<cstring> #include<string> #include<cstdio> #include<stack> #include<algorithm> #include<cmath> #include<vector> #include<queue> #include<ctime> #include<set> #include<sstream> using namespace std; typedef long long ll; bool chk[22]; int arr2[22]; int main() { ...
[ "antjdlekd123@naver.com" ]
antjdlekd123@naver.com
a7b49061158ac2c7d26d8a4ea600150d9e6ad32b
40da2190aca6e5ab3f27bb650a798d94000497ba
/klinSource/Core/Object.h
1bd43b3302180b2664af94d4ef0e8edbcc60174a
[]
no_license
LiuYiZhou95/CoolRender
e47a7deb501e82a6b7ca9a103acea0ba309c6dc5
8069e6f5d06eae7042d0f5544164bae1c1aec649
refs/heads/master
2020-08-07T16:55:38.770353
2019-10-08T02:34:50
2019-10-08T02:34:50
213,531,163
0
1
null
null
null
null
UTF-8
C++
false
false
2,653
h
// // #pragma once #include <cassert> #include "Common.h" #include <vector> #include <memory> class Context; // class TypeInfo { public: //typeName 是常量指针, 指向常量,能改变指向,不能改变指向的对象,只能通过原来的声明来改变 TypeInfo(const char* typeName , const TypeInfo* baseTypeInfo); ~TypeInfo(); // 检查当前类型是否是指定类型 bool isTypeOf(...
[ "liuyizhou_action@163.com" ]
liuyizhou_action@163.com
f7bb0f426545814d27e9a43ef858bcc1b67df9b1
791eedd78b9fe753f998020efb9ff9d0270cd8d3
/CPP/STROUSTRUP/Stroustrup11/Stroustrup11/2. strings_and_getline.cpp
2804082be85e41e150ce8eb5f306ced7deb6da8d
[]
no_license
pavel-prykhodko96/source
6214c212356ffa420bbc489adce104268f5efa12
77219b672bb14df93abd7b8203f486d0620533d8
refs/heads/master
2023-03-07T21:43:17.422232
2023-02-23T12:06:52
2023-02-23T12:06:52
248,736,899
0
0
null
2023-02-23T12:06:54
2020-03-20T11:16:45
C
UTF-8
C++
false
false
475
cpp
#include "pch.h" #include "../../../std_lib_facilities.h" //out the strings with certain word //with number of string int main() { string iname; cin >> iname; fstream ifs(iname, ios_base::in); int counter(0); string word; cin >> word; string data, cur_word; while (getline(ifs, data)) { stringstream buff...
[ "47929311+pavel-prykhodko96@users.noreply.github.com" ]
47929311+pavel-prykhodko96@users.noreply.github.com
0d9086d88266ac569d0ca758d9ea346810167adf
b28305dab0be0e03765c62b97bcd7f49a4f8073d
/gpu/ipc/command_buffer_task_executor.h
0e593ae78e81862ba9c6992c4723f96646f56058
[ "BSD-3-Clause" ]
permissive
svarvel/browser-android-tabs
9e5e27e0a6e302a12fe784ca06123e5ce090ced5
bd198b4c7a1aca2f3e91f33005d881f42a8d0c3f
refs/heads/base-72.0.3626.105
2020-04-24T12:16:31.442851
2019-08-02T19:15:36
2019-08-02T19:15:36
171,950,555
1
2
NOASSERTION
2019-08-02T19:15:37
2019-02-21T21:47:44
null
UTF-8
C++
false
false
6,330
h
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GPU_IPC_COMMAND_BUFFER_TASK_EXECUTOR_H_ #define GPU_IPC_COMMAND_BUFFER_TASK_EXECUTOR_H_ #include <memory> #include "base/callback.h" #include "b...
[ "artem@brave.com" ]
artem@brave.com
08068fa5dd55dba24c18ca3fe3c4791df2a935d1
d017b807b3753800feef6b8077d084b460027e46
/cpp/Segmentation/HoleFillTool.h
f3a803b6011fd26c8cd01b35a27e537abdfe1c65
[]
no_license
awturner/awturner-phd
de64cc0c23e1195df59ea9ac6ebfa8e24ee55f88
d8280b5602476565d97586854566c93fefe1d431
refs/heads/master
2016-09-06T04:47:14.802338
2011-06-02T22:33:27
2011-06-02T22:33:27
32,140,837
0
0
null
null
null
null
UTF-8
C++
false
false
3,169
h
/* * ################################################################################ * ### MIT License * ################################################################################ * * Copyright (c) 2006-2011 Andy Turner * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this ...
[ "andy.w.turner@gmail.com@8ccf9804-531a-5bdb-f4a8-09d094668cd7" ]
andy.w.turner@gmail.com@8ccf9804-531a-5bdb-f4a8-09d094668cd7
f3b775e75cda3c0a23f863bc9040f6418874aa6b
6c77cf237697f252d48b287ae60ccf61b3220044
/aws-cpp-sdk-rds/source/model/SourceType.cpp
51d10d4075d7aa0a04fa9842efae1dc2efd520f8
[ "MIT", "Apache-2.0", "JSON" ]
permissive
Gohan/aws-sdk-cpp
9a9672de05a96b89d82180a217ccb280537b9e8e
51aa785289d9a76ac27f026d169ddf71ec2d0686
refs/heads/master
2020-03-26T18:48:43.043121
2018-11-09T08:44:41
2018-11-09T08:44:41
145,232,234
1
0
Apache-2.0
2018-08-30T13:42:27
2018-08-18T15:42:39
C++
UTF-8
C++
false
false
3,625
cpp
/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fil...
[ "henso@amazon.com" ]
henso@amazon.com
eb04e8d08d11b58c66cfa13563db711ee16b2cd0
2d46a63b9949ddf6efc6755c3a07ca1427ec1275
/firmware/old stuff/MyApplication1/generated/gui_generated/src/screen1_screen/Screen1ViewBase.cpp
9c75b9fcdd95b084abf0ef476c90c04aa03bd942
[]
no_license
xinghuaman/Klanghabitat_Quantum
6f02ce60afb7a0a4d0a6a53d42c8e034611c407e
b5aa9261b4ad98d911953cb40bfdadb0b7932d0d
refs/heads/master
2023-04-15T01:05:42.732026
2021-04-21T14:35:20
2021-04-21T14:35:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,872
cpp
/*********************************************************************************/ /********** THIS FILE IS GENERATED BY TOUCHGFX DESIGNER, DO NOT MODIFY ***********/ /*********************************************************************************/ #include <gui_generated/screen1_screen/Screen1ViewBase.hpp> #inc...
[ "sagerchr@googlemail.com" ]
sagerchr@googlemail.com
5048d6b6de1132c7a1f7fddbab49c1290780a139
108c2b4b662962786d1f727831251790d8d38162
/src/libcartobase/object/lexicon.h
c676bcb7d6a6704bd901ffd7c7a9593779ee58dd
[ "LicenseRef-scancode-cecill-b-en" ]
permissive
brainvisa/soma-io
105adbaccc5f06d6773ee894f30baec35c48a403
d22e9d27f6e0696e234a6e33f7fbd9fa4620adc1
refs/heads/master
2023-08-04T18:46:57.728163
2023-07-28T16:53:08
2023-07-28T16:53:08
155,413,952
3
4
NOASSERTION
2023-07-28T16:53:09
2018-10-30T15:55:17
C++
UTF-8
C++
false
false
2,724
h
/* This software and supporting documentation are distributed by * Institut Federatif de Recherche 49 * CEA/NeuroSpin, Batiment 145, * 91191 Gif-sur-Yvette cedex * France * * This software is governed by the CeCILL-B license under * French law and abiding by the rules of distribution of free soft...
[ "yann@cointepas.net" ]
yann@cointepas.net
47a529958a659aa79955b23b52e455cbaee6a443
8db51c683ffd64483126dd18b5ec3ecb8845b25d
/RunningADcMotorAtDifferentSpeeds.ino
073f5fd6a94716f06f796ddd31d7fdb7297cc7da
[]
no_license
gittcoder/ARDUINO-BASICS
a34baa0732988e19940decbfa522b379809ec6d9
bd4718c37f7f818bbdd8c5ad9bf946075df3fd58
refs/heads/master
2023-03-12T18:53:10.673127
2021-02-23T14:42:49
2021-02-23T14:42:49
334,716,374
1
0
null
null
null
null
UTF-8
C++
false
false
373
ino
int motorPin=9; void setup() { pinMode(motorPin, OUTPUT); } void loop() { //Accelerate motor from 0 to 255 for( int i =0;i<=255;i++) { analogWrite(motorPin,i); delay(10); } //Hold at top speed delay(500); //decrease from 255 to 0 for( int i =255;i>=0;i--) { analogWrite(motorPin,i)...
[ "adityaavinash.n2020@vitstudent.ac.in" ]
adityaavinash.n2020@vitstudent.ac.in
b5feaf93689c9c2fce1ac6c05aa5e6fb6cebb007
bd498cbbb28e33370298a84b693f93a3058d3138
/Fujitsu/benchmarks/resnet/implementations/implementation_open/mxnet/3rdparty/mkldnn/src/common/inner_product_pd.hpp
c9df5c0264945eeb64a8dd90a378bfede848de43
[ "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "Zlib", "BSD-2-Clause-Views", "NCSA", "OFL-1.0", "Unlicense", "BSL-1.0", "BSD-2-Clause", "MIT", "Intel" ]
permissive
piyushghai/training_results_v0.7
afb303446e75e3e9789b0f6c40ce330b6b83a70c
e017c9359f66e2d814c6990d1ffa56654a73f5b0
refs/heads/master
2022-12-19T16:50:17.372320
2020-09-24T01:02:00
2020-09-24T18:01:01
298,127,245
0
1
Apache-2.0
2020-09-24T00:27:21
2020-09-24T00:27:21
null
UTF-8
C++
false
false
10,221
hpp
/******************************************************************************* * Copyright 2016-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.apa...
[ "vbittorf@google.com" ]
vbittorf@google.com
798c084529eeca25281d549d2808e2eeb53d4cef
c465ecbb983c4e01f07c0a609e7b2df9590e22e2
/header/meshLoader.h
505b74110d139d1fa1fdd33fba1a1e7a1987fca9
[]
no_license
manishbista/Image-Segmentation
dc615d71489a05a47f83c709436e72eb7d701d72
37bae3dcf81135bd6398143d848a02ff690824d8
refs/heads/master
2021-07-03T22:45:13.449179
2017-09-26T05:37:14
2017-09-26T05:37:14
104,840,627
1
0
null
null
null
null
UTF-8
C++
false
false
444
h
#ifndef MESHLOADER_H #define MESHLOADER_H #include <SDL2/SDL.h> #include <SDL2/SDL_image.h> #include "mesh.h" class meshLoader { private: mesh* g_Mesh; std::vector<vertexData>g_VertexData; std::vector<unsigned int>g_Index; std::vector<textureData>g_TexData; public: meshLoader(); ~meshLoader(); void draw(uns...
[ "manishbista28@yahoo.com" ]
manishbista28@yahoo.com
12d8661fca3a278c4ed4ef6d6b2b178eb5eae320
f92396fa3b01a0ae2450abba856a8e3c586972ff
/benchmarks/matrix/matrix_dynamic_memory/llvm/llvm/Transforms/IPO/SCCP.h
7082006f14a6f99529d59ded9387fca67775ba0b
[ "MIT", "GPL-3.0-only" ]
permissive
derrickgreenspan/LLAMA
e3ad9d8f9b595e844b766d79877434447a590367
c00e0f1fbaa70c9b241bfcf33729e626002dc146
refs/heads/master
2023-04-06T10:31:06.708020
2023-04-04T00:09:11
2023-04-04T00:09:11
200,301,975
4
1
MIT
2019-10-03T16:57:52
2019-08-02T21:52:01
C++
UTF-8
C++
false
false
1,171
h
//===- SCCP.h - Sparse Conditional Constant Propagation ---------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
[ "derrick.greenspan@knights.ucf.edu" ]
derrick.greenspan@knights.ucf.edu
414c45a2d247a2fb3b155e7e5e2093d58ad56a8c
9c4803ea374e459d63a256248edbe41c7820dbfe
/src/ode/ode.h
f2b293a2cdb7cd568510baae6e235ea1b8c2d9bc
[]
no_license
tomgrad/magfaz
fd4497cf3f2fcf2e538511b75dd73584b76ff7da
27fe62d2beb330593711cec4d30609491dc8c16d
refs/heads/master
2021-04-28T22:00:31.911023
2017-01-09T22:05:10
2017-01-09T22:05:10
77,758,347
0
0
null
null
null
null
UTF-8
C++
false
false
298
h
#ifndef ODE_H #define ODE_H // no members initialization in c++03 :( class ODE { public: ODE(); virtual ~ODE(){}; void RK4(double *); double t; void set_dt(double); double getStep() { return dt; } protected: double dt; virtual double *dx(double *); private: }; #endif // ODE_H
[ "tomgrad@if.pw.edu.pl" ]
tomgrad@if.pw.edu.pl
47979bae2189a39820769e6ea76c570ddf54f461
032ceb96c84d2b2a88c15b5e1b8e90fc492776c7
/Engine/VSlider.hpp
e4f3f933a6526ea82f7d6c3ff3ee32fd7c3b532d
[]
no_license
antiqe/RType
ae8859cfe589cfcfbd5ba8c0fc82480bfcd759d5
6165ad1dd11c179c82946d8be07c862db82483b4
refs/heads/master
2016-09-06T09:31:13.177842
2013-12-04T09:59:40
2013-12-04T09:59:40
14,722,487
1
2
null
null
null
null
UTF-8
C++
false
false
639
hpp
#ifndef _V_SLIDER_H_ # define _V_SLIDER_H_ #include <string> #include "ASlider.hpp" namespace Engine { class VSlider : public ASlider { public: VSlider(std::string const &name, std::string const &normalFile, std::string const &clickedFile, std::string const &hoverFile, std::string const &barFile, int min = ...
[ "alexis.leprovost@epitech.eu" ]
alexis.leprovost@epitech.eu
f30eb5460d23372af7274dabdbb59325f62c1025
78f146be549cde6303d983c8bf1e8eb97c8c16d1
/simulator/common/simulator/src/Event.cpp
5665ceef4878cefd04374a075205c5a2b91e1ee8
[]
no_license
rafutek/simulogic
a19b8b2809f1f7fe6b774c2aee27a3026226d493
2eceb728a66a49019f28ddd69d0ab90ccdef620a
refs/heads/master
2023-03-15T14:45:22.727902
2020-12-02T11:08:04
2020-12-02T11:08:04
262,929,860
0
0
null
null
null
null
UTF-8
C++
false
false
865
cpp
// // Created by Luc on 22/05/2019. // #include "Event.h" using namespace std; Event::Event(Wire *wire,State state, int time) : m_state(state), m_wire(wire), m_time(time) { } Event::Event(int time) : m_time(time){ } State Event::getState() const { return m_state; } string Event::getState...
[ "rafutek@protonmail.com" ]
rafutek@protonmail.com
79514e2093724e867589ee659134efef7f284121
9de4f540b2b861c5bf50737658985ede6c73dfac
/src/gazebo_odometry_plugin.cpp
c32a541191e6ff586efb4e97c98bf2e81267b9d3
[]
no_license
JJRnumrous/sitl_gazebo
04a07d1174ed4bf4dbf02f17ad928a2f7089f941
75aba47f12d45d16c8288ce9764230e25cf9b2b3
refs/heads/master
2020-08-17T20:02:19.717038
2019-11-29T06:39:20
2019-11-29T06:39:20
215,705,807
0
0
null
null
null
null
UTF-8
C++
false
false
4,307
cpp
#include "gazebo_odometry_plugin.h" namespace gazebo { GazeboOdometryPlugin::~GazeboOdometryPlugin() { update_connection_->~Connection(); } void GazeboOdometryPlugin::Load(physics::ModelPtr _model, sdf::ElementPtr _sdf) { // Store the pointer to the model and world...
[ "18231349@sun.ac.za" ]
18231349@sun.ac.za
22325739ac6af14ba6795209346593c68b19a410
260d4490deac756ba0d61fe4405fda1ed62c2c4a
/bank-view/controllersafety.cpp
284b4eba1c764fe36f680a321b60c22ebc9d0d83
[]
no_license
smandyscom/front-base-widget
68837f93fa19eea74ddbf974f71cdbff20ad152d
e2127833a0b2bfb03053af66306fe619513e6a63
refs/heads/master
2021-07-12T18:27:38.309837
2018-11-29T08:11:47
2018-11-29T08:11:47
109,595,217
0
0
null
null
null
null
UTF-8
C++
false
false
993
cpp
#include "controllersafety.h" ControllerSafety::ControllerSafety(QObject *parent) : QObject(parent) { //! Very first shot __channel = ModbusChannel::Instance(); connect(__channel,&ModbusChannel::readReply,this,&ControllerSafety::onReply); __channel->beginAccess<MODBUS_U_WORD>(ModbusDriverAddress(MONITO...
[ "smandyscom@gmail.com" ]
smandyscom@gmail.com
dbeed0417314c5d518ce52227dc1b0caa21c78a2
7dda9160847f4e5199f4a6e1a2aba9d51306a2c1
/[437]Path Sum III.cpp
adc12f27e3be89685b92d4a93f3f1a3bc077c48d
[]
no_license
stoneheart93/Leetcode
4e65b94642f449d1bea9674c50b77dbf34407719
4b8862f1384a35c9f12afaccffb68eba9f926d8f
refs/heads/master
2023-05-28T06:06:16.611711
2021-06-17T16:40:25
2021-06-17T16:40:25
372,876,946
0
0
null
null
null
null
UTF-8
C++
false
false
2,001
cpp
//Given the root of a binary tree and an integer targetSum, return the number of // paths where the sum of the values along the path equals targetSum. // // The path does not need to start or end at the root or a leaf, but it must go //downwards (i.e., traveling only from parent nodes to child nodes). // // // Exam...
[ "sohinee93@gmail.com" ]
sohinee93@gmail.com
793f15314274b8934f21ac3ca61a9892ef0ca0fe
2cf3ebedd9f0c5a23fe14dd61e15fad9ba3b916f
/programming2lab7/programming2lab7/car.h
98637bfebe4807bba4f7b8760299949891e1bf0d
[]
no_license
Slidejiveman/Programming1
395deaae6de0ff7d6ad4733a7d962af3247c7385
273d21641b0f498bf24996438b52ad64aece0c54
refs/heads/master
2021-08-19T07:04:44.097280
2017-11-25T03:07:40
2017-11-25T03:07:40
111,948,546
0
0
null
null
null
null
UTF-8
C++
false
false
765
h
#ifndef CAR_H #define CAR_H class Car { private: int mileage; //total mileage on the odometer double fuelLevel; //amount of fuel in the 12 gallon tank. 0-12 permitted double totalGasUsed; //keeps track of miles driven while program is running. double totalMPG; //holds the miles per gallon for the total trip public...
[ "rdnotlaw91@outlook.com" ]
rdnotlaw91@outlook.com