blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
ef860663a0e5a3f6a904927c60dc7cd9396a82d8
da13476293be1a3f3fe011b64d0c22fe22053930
/搓排.cpp
800dd402f2254360dfe662e5887c90e4a121a7df
[]
no_license
dongZheX/Coding
4138bccbc3683329f7571b2cac56180f8d8399b3
6be5f801876b28b5abd574d98995b893e39e3279
refs/heads/master
2020-07-11T18:40:45.172457
2019-08-27T04:02:58
2019-08-27T04:02:58
204,617,001
1
0
null
null
null
null
GB18030
C++
false
false
433
cpp
#include<stdio.h> long long Fn[22]; int main() { Fn[1] = 0; Fn[2] = 1; for (int i = 3;i < 22;i++) { Fn[i] = (i - 1)*Fn[i - 1] + (i - 1)*Fn[i - 2]; /* 第一步:将第n封信放入k,有n-1种方法 第二步: ①将k放入n,则剩下的n-2有F(n-2)中方法 ②k不放入n,(k相当于n不能放入n处),则有D(n-1)种 */ } int n; while (scanf("%d", &n) != EOF) { printf("%lld\n",F...
[ "ncxxdz@126.com" ]
ncxxdz@126.com
069aa977b8f4276560d77f61abfc92d6326d66c0
18aee5d93a63eab684fe69e3aa0abd1372dd5d08
/paddle/fluid/operators/activation_op.cu.h
08a8d9a08960936bcd2d660cc368d4fda0a61184
[ "Apache-2.0" ]
permissive
Shixiaowei02/Paddle
8d049f4f29e281de2fb1ffcd143997c88078eadb
3d4d995f26c48f7792b325806ec3d110fc59f6fc
refs/heads/develop
2023-06-26T06:25:48.074273
2023-06-14T06:40:21
2023-06-14T06:40:21
174,320,213
2
1
Apache-2.0
2022-12-28T05:14:30
2019-03-07T10:09:34
C++
UTF-8
C++
false
false
5,079
h
/* Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or ag...
[ "noreply@github.com" ]
Shixiaowei02.noreply@github.com
6f501ffefe3f9b1027528bbd56f675541c8f2741
37ff83f8dd5204e8181e07fbf27909621794ef90
/src/lidar_localization/include/lidar_localization/publisher/cloud_publisher.hpp
3ddd2a820083e8452e6a2f0e7d507725b12269d0
[]
no_license
leiyubiao/boonray
419480607a006af6a5d2ff6265de64f0cf539150
a6357a6f4071d94f28b34203629bfe21cf84a75f
refs/heads/main
2023-02-22T14:14:07.508438
2021-01-16T14:34:50
2021-01-16T14:34:50
330,179,491
0
0
null
null
null
null
UTF-8
C++
false
false
1,318
hpp
/* * @Description: 在ros中发布点云 * @Author: Ren Qian * @Date: 2020-02-05 02:27:30 */ #ifndef LIDAR_LOCALIZATION_PUBLISHER_CLOUD_PUBLISHER_HPP_ #define LIDAR_LOCALIZATION_PUBLISHER_CLOUD_PUBLISHER_HPP_ #include <sensor_msgs/PointCloud2.h> #include <pcl/point_types.h> #include <pcl/point_cloud.h> #include <pcl_conversi...
[ "1104881327@qq.com" ]
1104881327@qq.com
ed08e5e5fde011935fb2b562b2a6b19c000909bb
8ca37e18b25d0b9cbf1ebe003f460ca3098e64ee
/homework5_4/MinQueue.h
b91cf85b16e532c7a9d8559980dd6b63bf73f2e5
[]
no_license
FredyJMartinez/Coding-Problems-
b87d7ce83eb13f0338779fbf133326559cb9101f
3948f356e2246d824b29ffa00ce94a05fd8ce61a
refs/heads/master
2020-03-25T15:57:17.091381
2018-08-07T17:50:00
2018-08-07T17:50:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,076
h
// // Created by Fredy on 3/18/2018. // #ifndef HOMEWORK5_4_MINQUEUE_H #define HOMEWORK5_4_MINQUEUE_H #include "circQueue+copy.h" #include <stack> #include <utility> #include <vector> class MinQueue : public circQueue { private: std::stack<std::pair<int, int>> the_stack; std::pair<int, int> value_min_pair; cir...
[ "36689742+FredyJMartinez@users.noreply.github.com" ]
36689742+FredyJMartinez@users.noreply.github.com
1f0d0d588ba15d24288e553f1bc0d5d93237bd1a
b7e97047616d9343be5b9bbe03fc0d79ba5a6143
/src/protocols/toolbox/task_operations/SeqprofConsensusOperation.fwd.hh
f7b91a80a19f27c84241462daa986b84f95d1c7a
[]
no_license
achitturi/ROSETTA-main-source
2772623a78e33e7883a453f051d53ea6cc53ffa5
fe11c7e7cb68644f404f4c0629b64da4bb73b8f9
refs/heads/master
2021-05-09T15:04:34.006421
2018-01-26T17:10:33
2018-01-26T17:10:33
119,081,547
1
3
null
null
null
null
UTF-8
C++
false
false
1,309
hh
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*- // vi: set ts=2 noet: // // (c) Copyright Rosetta Commons Member Institutions. // (c) This file is part of the Rosetta software suite and is made available under license. // (c) The Rosetta software is developed by the co...
[ "achitturi17059@gmail.com" ]
achitturi17059@gmail.com
52dc965a9846ca2d7f7b81a5f3c085cfa2764149
08d9d0299f365a44d92cc66553fab267d56596c8
/src/triangle.h
30e4f87bf4c4089b27a51ecf03499cd1f6f72fb3
[]
no_license
pranav-asthana/3d-graphics-scene
89967c587b2007aa806962804aae7a6b2f84ae4b
c0a5f08cb448de4f8fa6fadf7c79b4a93e759c7a
refs/heads/master
2021-08-22T03:40:26.525635
2017-11-29T05:24:39
2017-11-29T05:24:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
324
h
/** @file */ #ifndef TRIANGLE_H #define TRIANGLE_H #include <glm/glm.hpp> class Triangle { public: glm::vec3 A; glm::vec3 B; glm::vec3 C; /// Create a tringle with given vertices Triangle(glm::vec3 v1, glm::vec3 v2, glm::vec3 v3) { A = v1; B = v2; C = v3; } }; #en...
[ "pranav.i.asthana@happiestminds.com" ]
pranav.i.asthana@happiestminds.com
78272d9bb1db86ff0ee32c327c926192344c93ed
4eafc3b25f8b7d5749409318122a680068665613
/helloLeet/0104.cpp
36b4325520e07f9872810a7cdf555b1e49f21b98
[]
no_license
ctyVegetableDog/leetcode
6f663ab230fb9dbaec4453828e2bd0b274b83a18
2b956412ddfa6b58f5c245da46f96665a8ec276d
refs/heads/master
2023-07-15T06:48:30.869786
2023-07-10T08:13:51
2023-07-10T08:13:51
216,207,344
0
0
null
null
null
null
UTF-8
C++
false
false
1,138
cpp
//get depth of a tree /* if !root->left && !root->right return 1; if root->left && !root->right return func(root->left)+1 if !root0>left && root->right return func(root->right)+1 if left && right return max(func(left),func(right)+1) */ /** * Definition for a binary tree node. * struct TreeNode { * int val; ...
[ "821789905@qq.com" ]
821789905@qq.com
f092705132c2e7732f46572341f710f7d0dd7159
5696f7e9bb6cb18e791be3f71e8a72f9a26a0a22
/src/StockIndicator/StockIndicator/src/CalcDateBollTask.cpp
e7a7dc3da786a051e736d2aa705f665f6647e005
[ "MIT" ]
permissive
xylsxyls/xueyelingshuang
0fdde992e430bdee38abb7aaf868b320e48dba64
a646d281c4b2ec3c2b27de29a67860fccce22436
refs/heads/master
2023-08-04T01:02:35.112586
2023-07-17T09:30:27
2023-07-17T09:30:27
61,338,042
4
2
null
null
null
null
UTF-8
C++
false
false
1,167
cpp
#include "CalcDateBollTask.h" #include "StockIndicatorHelper.h" #include "StockMarket/StockMarketAPI.h" CalcDateBollTask::CalcDateBollTask() : m_indicatorData(nullptr) { } void CalcDateBollTask::DoTask() { if (!m_market.setDate(m_date)) { return; } std::map<std::string, std::vector<std::vector<...
[ "yangnan@sensetime.com" ]
yangnan@sensetime.com
3b473a5dcc4f09c5c789928dcd1c0be555a117e6
415ef5c9ba794c92a7b604621d901e6e41819469
/c,c++/secondMost.cpp
a21f3dbb9d778408774e1da1c182cbbf4ab7c935
[]
no_license
Sruthi-Ganesh/GitHub
2d18db7f78b928da7a15b4283328d8fd6e0eaa59
7aa2407e70c4cd9a1bf3cdc51af4519fcff607bc
refs/heads/master
2021-01-01T17:58:33.274325
2017-07-24T15:24:26
2017-07-24T15:24:26
98,207,308
0
0
null
null
null
null
UTF-8
C++
false
false
1,136
cpp
// unordered_map::begin/end example #include <iostream> #include <unordered_map> #include<vector> #include<iomanip> using namespace std; string unordered(vector<string> words) { int max=0; int second_max=0; unordered_map <string,int>values; for(int j=0;j<words.size();j++) { valu...
[ "sruthibadal@gmail.com" ]
sruthibadal@gmail.com
38b7fa0ff17e307dee3d371b60d8706ad4ebb8da
8c8f0e9b33aac8b62ad1009549c291834b4a1aec
/Code/Arduino/programmable_smarticle/programmable_smarticle.ino
96bb19842501a8987cf672bfabd8e6b9862a890b
[]
no_license
MurpheyLab/SmarticlesNU
070f89cd1a376fefa757097924abe5d409986789
837d3fde85ca193411d4d9ed722f367e281f2286
refs/heads/master
2022-12-30T13:35:58.464215
2020-10-21T13:36:18
2020-10-21T13:36:18
202,380,351
1
1
null
null
null
null
UTF-8
C++
false
false
424
ino
#include <Smarticle.h> Smarticle smart(1); void setup() { randomSeed(analogRead(A7)); NeoSerial1.attachInterrupt(handleRxChar); smart.init_t4(); smart.toggle_led(1); delay(3000); smart.toggle_led(0); } void loop() { smart.read_sensors(); smart.transmit_data(); smart.manage_msg(); } ISR(TIMER4_CO...
[ "alexandersamland2020@u.northwestern.edu" ]
alexandersamland2020@u.northwestern.edu
dca74e59efaf372ef45ae5aebfadf46f0d802c6c
3bc7467217697dcce015d4a3fec7d8348409dec1
/Lab 2/lab2_histogram.cpp
c157d59b060eb9188061c9c4312ad7505e990523
[]
no_license
juliocmontes/bcc_course
abe2f2282f0b111f2f939761c2b1baec69776b95
770df1ec477f8fedb6d3bd592b9178ecacaa8e83
refs/heads/master
2020-07-08T12:40:00.718012
2019-10-25T15:11:58
2019-10-25T15:11:58
203,673,742
0
0
null
null
null
null
UTF-8
C++
false
false
6,039
cpp
/* Title: Lab 2 - Histograms Author: Julio Montes Date: 10.22.19 Description: two different counters, from 0-1 and 0-10 counting them multiple times and displaying histograms for them */ #include <iostream> #include <cmath> #include <math.h> // for random #include <stdlib.h> // for time to seed random each time #incl...
[ "juliocmontes.a@gmail.com" ]
juliocmontes.a@gmail.com
01489111424c211e3db3e5828cee1187c8e8e6f1
1c1ec116ce31c5eef0df06d2aca182781ae17824
/source/HIS/include/ComponentElement/ChipE1Logic.h
60f7abe27115d0b764d922895fbddd41078e880f
[]
no_license
Gloriacnb/ISAP300
0410462cbf76f82f6f21b911e899d6b64407fa10
9f36607ac21524ab16609ee2d0c39bb222cd7be3
refs/heads/master
2021-01-18T23:41:05.998369
2017-12-25T01:16:37
2017-12-25T01:16:37
100,565,892
0
0
null
2017-08-17T05:43:16
2017-08-17T05:43:16
null
UTF-8
C++
false
false
886
h
/* * ChipE1Logic.h * * Created on: 2013-12-17 * Author: Administrator */ #ifndef CHIPE1LOGIC_H_ #define CHIPE1LOGIC_H_ #include "FPGAChip.h" class RegisterAccess; class CBaseSlot; class ChipE1Logic : public FPGAChip { static const uint16 VER = 0x000f; static const uint16 REG_...
[ "momo_nono@163.com" ]
momo_nono@163.com
93fded7167c61110cfd159d56ae3e1bbdd6e76d6
16fc09c8ac89b10916eac5a7e2ac3487a4d0f03a
/lec07/examples/Algo.h
db2d00c2155678d6d32cd7366631b01f9be99113
[]
no_license
Lorenzo128/CMP
c23b0f71cf63795e29a6945a2a1104bf79031a0a
d7638580c6cdae351f8d74ffbed7e4c95833a8f5
refs/heads/master
2020-04-03T10:43:17.550278
2018-10-29T09:08:21
2018-10-29T09:08:21
155,200,416
1
0
null
null
null
null
UTF-8
C++
false
false
233
h
#ifndef Algo_h #define Algo_h class Algo { public: Algo() { params_ = 0; } Algo(const Algo& algo) { params_ = algo.params_; } double compute(const double& arg) const; private: int params_; }; #endif
[ "rahatlou@gmail.com" ]
rahatlou@gmail.com
20c8352836eeae0b5930e5a84c92681832437451
affb4f713b00303bf72552ec39684f5420884e94
/Classes/Modal/GameSprite.cpp
f1815779c2666c597cc84a81a5283f5e748f4931
[]
no_license
dinhquochung/battleduty
7024f8132048be45ba2803e1911e6ce7e16de0f2
6189cff13d4672c0b0444a927ab8c3a6068d7b8b
refs/heads/master
2021-01-23T12:06:45.137365
2014-02-27T06:40:10
2014-02-27T06:40:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
729
cpp
// // GameSprite.cpp // BattleDuty // // Created by dinh-q on 2014/02/12. // // #include "GameSprite.h" GameSprite::GameSprite(void){ _vector = ccp(0,0); } GameSprite::~GameSprite(void){ } GameSprite* GameSprite::gameSpriteWithFile(const char *pszFileName) { GameSprite* sprite = new GameSprite(); ...
[ "dinh-q@klab.com" ]
dinh-q@klab.com
66ebeffce3e63e6265262c05e1cfaf96d8822250
3bd1518535099526a3241deaec88864ac3a8a528
/source/Lib/TLibDecoder/TDecSlice.cpp
66f2ef26fa363cb649e6be7873f94076f6a0a2d4
[]
no_license
zinsayon/HEVC-HOP
a18668b11b50d65fb62460dcdca59fb6eacd1642
49d03a6f6a1d6c8e4e9a90e30a5aaa6453d5a163
refs/heads/master
2022-12-09T11:06:23.430018
2020-09-02T17:13:31
2020-09-02T17:13:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,969
cpp
/* The copyright in this software is being made available under the BSD * License, included below. This software may be subject to other third party * and contributor rights, including patent rights, and no such rights are * granted under this license. * * Copyright (c) 2010-2014, ITU/ISO/IEC * All rights...
[ "ricardojorgesmonteiro@gmail.com" ]
ricardojorgesmonteiro@gmail.com
81603f685dc79eebed5238d7d6c20407570d50d7
349fe46c47f9164347f66bdfedac37fc314c20e5
/test/mytest/ModInt.test.cpp
fae7b18a0996e573bbc96b7d33885c4626d06bd9
[]
no_license
spihill/library
f9a4a56242f505a8cd2236ca9e01e587cddbe2a9
b7e81c94202a082eff30988793c8f5be9d969fdc
refs/heads/master
2020-06-24T15:21:40.591287
2020-03-18T14:00:44
2020-03-18T14:00:44
198,998,636
0
3
null
null
null
null
UTF-8
C++
false
false
6,338
cpp
#define PROBLEM "https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/1/ITP1_1_A" #include <bits/stdc++.h> using namespace std; #include "../../math/ModInt.cpp" #define RANGE_CHECK(a) assert(0 <= (a).x && (a).x < (modint::get_mod())) struct random_class { struct xorshift { using result_type = unsigned int; r...
[ "spihill.in@gmail.com" ]
spihill.in@gmail.com
7cd5be6aebe3848f9b1d6fde5e7eb56fc1a6e256
c928ee4909bff4d412bd04d085d7ce5455d2af26
/src/netbase.h
ac6765681e6eb6aaa4f6d450bfaedaa2b42d9fe9
[]
no_license
turnkeyglobal/BitcoinJ
71004527a9448be79f7e48cc5067410f2398762c
c969ae131b5ffeccb00d3850267d50a1b3e8fd5b
refs/heads/master
2020-03-06T14:30:11.138789
2018-03-27T06:17:04
2018-03-27T06:17:04
126,937,125
0
0
null
null
null
null
UTF-8
C++
false
false
8,720
h
// Copyright (c) 2009-2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NETBASE_H #define BITCOIN_NETBASE_H #if defined(HAVE_CONFIG_H) #include "config/minmontcoin-config.h" #endif...
[ "sarathb922@gmail.com" ]
sarathb922@gmail.com
dfa393d840f92f04bf3655a6df930303666a04bd
e50828cb0c2e7099c5334bf326f7947e618aa722
/history.h
e9995dcf89e067ce27970526622c0ed473fba74d
[]
no_license
xuchuanxin/Qt-ImageViewer
0441f7bca0c8ae20ce169461d828a87f0a2277b0
2d0dfe718d8b1c30348672a9ed04dd9b870ec945
refs/heads/master
2023-06-26T02:13:35.884832
2018-03-11T15:10:23
2018-03-11T15:10:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
758
h
#ifndef HISTORY_H #define HISTORY_H #include <stack> #include "imageprocessor.h" enum {ROTATE = 0, SCALE = 1, CROP = 2, SELECT_ZOOM = 3}; struct command { int type; qreal factor; qreal factor2; QImage img; QRect *rectangle; QPoint scrollPoints; }; class History { public: History(ImageProce...
[ "re13amr@gmail.com" ]
re13amr@gmail.com
25b284247191c0ea4c2ff52431477b939233aa30
9c7461a77fdefa04f3794d4a9d6f85ed9ff96c91
/day17/day17/源.cpp
b971e4825b6afa6aebd9067fb7962e088fccfe81
[]
no_license
bengbengxiong/class
b333cb9c57d7013c996ad19009a4c396090f404e
f2b77aac918051b7e5d77805469ca8bf0a0b944e
refs/heads/master
2020-03-31T08:03:24.549684
2019-07-07T04:25:11
2019-07-07T04:25:11
152,043,559
0
0
null
null
null
null
UTF-8
C++
false
false
433
cpp
#include <iostream> using namespace std; int main() { /*int a[] = { 1, 2, 3, 4, 5 }; int *p[] = { a, a + 1, a + 2, a + 3 }; int **q = p; cout << *(p[0] + 1) + **(q + 2) << endl; cout << *(p[0] + 1) << endl; cout << **(q + 2) << endl;*/ /*char *p = "abc"; char *q = "abc123"; while (*p == *q) { printf("%c...
[ "1620585746@qq.com" ]
1620585746@qq.com
b8c69009726ea7b57b4095a5f1a400a33a2f0e40
18cf0f85c48c33c76177743a2de5c0384ec4e9fb
/Source/ArenaBattle/Private/ABPlayerController.cpp
a3946124df37431aeb10a6645b1c6be5c186d338
[]
no_license
AnnoyedSloth/ArenaBattle
fc35b0ee19d10b9e0eeb64a7fb011b6d3cfb74b8
b8b85f125fdbb77ba46270913fe5d07568da84a1
refs/heads/master
2020-06-17T03:13:57.310177
2019-07-16T09:54:30
2019-07-16T09:54:30
195,777,333
1
0
null
null
null
null
UTF-8
C++
false
false
1,115
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "ABPlayerController.h" #include "ABHUDWidget.h" #include "ABPlayerState.h" #include "ABCharacter.h" AABPlayerController::AABPlayerController() { static ConstructorHelpers::FClassFinder<UABHUDWidget> UI_HUD(TEXT("/Game/UI/UI_HUD...
[ "sksk31052@hanmail.net" ]
sksk31052@hanmail.net
e78220df55b6c7dafa3a3144ee06001990388a9d
a66d5c56036b6fe6a5fff65bf914e5ad145ba66a
/mymarlin/src/ttbar.cc
1b1005dd0356d5ed129fc202f4a1ee3c248d887f
[]
no_license
msohailamjad/ttbar
2f08687b7e3a348fba7266e2ba647bb85092b826
7f353c61cb470620d715509d0a520e26701096cc
refs/heads/master
2021-09-24T11:56:27.139024
2018-10-09T14:31:58
2018-10-09T14:31:58
125,369,414
0
0
null
null
null
null
UTF-8
C++
false
false
72,631
cc
#include "ttbar.h" #include <iostream> #include <iomanip> #include <math.h> #include <sstream> #include <TStyle.h> #include <LCIOSTLTypes.h> #include <EVENT/LCCollection.h> #include <EVENT/ReconstructedParticle.h> #include <UTIL/PIDHandler.h> #include <EVENT/MCParticle.h> #include <EVENT/ParticleID.h> #include <TH1.h> ...
[ "sohailamjad@Sohails-MacBook-Pro.local" ]
sohailamjad@Sohails-MacBook-Pro.local
64f6fddf18b293ad61fb279209117624fc87f6b3
198806ccd0b5a7d476c701be5943e9a7afacb7d0
/xdaq/include/rubuilder/ru/InputHandler.h
d03b04dfa0fcd33738372d7c4b9f1e0331406cda
[]
no_license
marcomuzio/EMULib_CLCT_Timing
df5999b5f1187725d7f5b6196ba566045ba60f55
04e930d46cadaa0c73b94a0c22e4478f55fac844
refs/heads/master
2021-01-16T13:47:26.141865
2014-08-14T12:04:33
2014-08-14T12:04:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,736
h
#ifndef _rubuilder_ru_InputHandler_h_ #define _rubuilder_ru_InputHandler_h_ #include <boost/thread/mutex.hpp> #include <stdint.h> #include <vector> #include "i2o/shared/i2omsg.h" #include "rubuilder/ru/SuperFragmentGenerator.h" #include "rubuilder/utils/OneToOneQueue.h" #include "toolbox/mem/Pool.h" #include "toolbo...
[ "hogenshpogen@gmail.com" ]
hogenshpogen@gmail.com
4538ec95d9ef4217ff01b4880a2e9ad90b5d74dd
e14a0d02d37f54d7f263975e4103fa50cbfcd975
/src/IMU/clogger.cpp
701e3795e86d640ef323c15fadaa23f9bb757ac8
[]
no_license
Tapuwa-Dhliwayo/Final-Year-Project
93998c861e19c989a94fbf75ad41591d9ec25703
017fe1a175b1e7288c13456f09ee5b25283cfa62
refs/heads/master
2020-08-08T04:03:05.842005
2019-10-16T10:36:00
2019-10-16T10:36:00
208,030,786
0
0
null
null
null
null
UTF-8
C++
false
false
2,405
cpp
//Logging function utilising huffman algorithm for compression //Sorted #include "clogger.h" void Logger::clogger(std::string filename, rawData_t* data, sensorValue_t* processed){ std::ofstream logfile; logfile.open(filename+".txt"); logfile << "Raw Data \n"; logfile << "x: "<< data->x <<"\n"; logfile << "...
[ "tapsdhliwayo@gmail.com" ]
tapsdhliwayo@gmail.com
62611b5f0ce3766869f2b7d0df610e32c6f7b77a
3c869ef8e5513308cc0c3b41b6e76ca364fc82bb
/SaberCore02/SaberCore02/scUiScaleAnimation.cpp
7cfa3881f2edec92f8fd663fdec97f76b25a1d6e
[]
no_license
kidsang/SaberCore2
d99b97f47f209e7ed4eeb014f094a04d66bdf589
107ecb94f22596046263872731716dcf5e4ff6c2
refs/heads/master
2021-01-01T17:37:06.411813
2012-08-12T11:20:30
2012-08-12T11:20:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,735
cpp
#include "scUiScaleAnimation.h" #include "MyGUI/MyGUI_Widget.h" #include "OgreVector4.h" #include "scGenericKeyFrame.h" scUiScaleAnimation::scUiScaleAnimation(bool isLoop) : scUiAnimation(isLoop), mOriginWidth(0), mOriginHeight(0), mOriginX(0), mOriginY(0) { } scUiScaleAnimation::~scUiScaleAnimation(void) { } vo...
[ "963262214@qq.com" ]
963262214@qq.com
cbba7fa891c8a6f5f38c78b4cb285ab07e187a4c
313df6503307a8a45a51d7475339e4415c4fcc84
/T9TempProj/T9.cpp
49614a2f3698a338eae87479c3e828f604ac7bb3
[]
no_license
Pechenkya/T9
d9a02d35a0d73bf93bf78a78c2cb966f10a35b60
43a3ccc2d7efe58de55e0c8f878844cbf8a68ed9
refs/heads/master
2020-09-11T18:46:43.307810
2019-11-22T16:02:58
2019-11-22T16:02:58
219,860,337
0
0
null
null
null
null
UTF-8
C++
false
false
2,224
cpp
#include "T9.h" #include <iostream> #include <fstream> std::ostream& operator<<(std::ostream& os, const Word& word) { os << word.word << " " << word.popularity; return os; } std::vector<int> T9::get_key(std::string value) { unsigned int size = value.length(); std::vector <int> int_key(size); int counter{}; fo...
[ "lol.lol.lalka.lalka@gmail.com" ]
lol.lol.lalka.lalka@gmail.com
b04ec8c001e13759a98d55bad03550c73dc9c699
9a3f8c3d4afe784a34ada757b8c6cd939cac701d
/leetCarFleet.cpp
bf697cd980fcf02046b2e73d28ffb911d2e9b444
[]
no_license
madhav-bits/Coding_Practice
62035a6828f47221b14b1d2a906feae35d3d81a8
f08d6403878ecafa83b3433dd7a917835b4f1e9e
refs/heads/master
2023-08-17T04:58:05.113256
2023-08-17T02:00:53
2023-08-17T02:00:53
106,217,648
1
1
null
null
null
null
UTF-8
C++
false
false
3,823
cpp
/* * //************************************************************853. Car Fleet.***************************************************** https://leetcode.com/problems/car-fleet/ *******************************************************************TEST CASES:************************************************************ ...
[ "kasamsaimadhavk@gmail.com" ]
kasamsaimadhavk@gmail.com
797bb01dc381e045f741e6f310ef1a20c18e057d
f501d690498272785564db8e4bf2420eeff23a0b
/thirdparty/rocksdb/util/slice.cc
8d95a8ae19d3a0c346ee624e03cd5486402e9575
[ "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "Zlib", "MIT-0", "LicenseRef-scancode-openssl", "ISC", "LicenseRef-scancode-ssleay-windows", "OpenSSL", "JSON", "BSL-1.0", "curl", "LicenseRef-scancode-public-domain", "MIT", "BSD-2-Clause", "BSD-1-Clause", "LicenseRef-...
permissive
phrocker/nifi-minifi-cpp
04bad621c1f82c0ab3ef3fffb5085d64939ef290
97a05c1bdb6bfd40f5f33da01cf0893060350ef4
refs/heads/master
2020-12-30T23:23:01.041185
2019-08-27T07:50:15
2019-08-28T17:25:00
80,614,745
3
1
Apache-2.0
2019-06-14T11:46:17
2017-02-01T11:41:22
C++
UTF-8
C++
false
false
5,673
cc
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved. // This source code is licensed under both the GPLv2 (found in the // COPYING file in the root directory) and Apache 2.0 License // (found in the LICENSE.Apache file in the root directory). // // Copyright (c) 2012 The LevelDB Authors. All rights r...
[ "jeremydyer@apache.org" ]
jeremydyer@apache.org
493ea3d9362b1d23ac5c416965e0811f30e52104
3a50c0712e0a31b88d0a5e80a0c01dbefc6a6e75
/thrift/conformance/cpp2/ThriftTypeInfo.h
ea7b006b6818d5b287bae1b22164e545a8f80f1c
[ "Apache-2.0" ]
permissive
facebook/fbthrift
3b7b94a533666c965ce69cfd6054041218b1ea6f
53cf6f138a7648efe5aef9a263aabed3d282df91
refs/heads/main
2023-08-24T12:51:32.367985
2023-08-24T08:28:35
2023-08-24T08:28:35
11,131,631
2,347
666
Apache-2.0
2023-09-01T01:44:39
2013-07-02T18:15:51
C++
UTF-8
C++
false
false
2,791
h
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appl...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
7144a7dc6213e4ac08e8ca1c12230f4ffe0eb3d9
b5c2fb15351ed443c058cb83b80ed6767eb13ab2
/src/qt/walletmodel.cpp
58e6c0720143dbb898bc37fe67958516f856cde1
[ "MIT" ]
permissive
ctgiant/XNA
e183ab6d138f484e91e01741577473dad6d1399e
b6e1afb14ef83617cb2be62bfae9fc470b980b4f
refs/heads/master
2020-12-02T16:39:57.130683
2015-05-06T23:25:24
2015-05-06T23:25:24
35,175,963
0
0
null
2015-05-06T18:30:21
2015-05-06T18:30:21
null
UTF-8
C++
false
false
17,535
cpp
#include "walletmodel.h" #include "guiconstants.h" #include "optionsmodel.h" #include "addresstablemodel.h" #include "transactiontablemodel.h" #include "ui_interface.h" #include "wallet.h" #include "walletdb.h" // for BackupWallet #include "base58.h" #include <QSet> #include <QTimer> #include <QUrl> #include <QtNetwo...
[ "niitassin@gmail.com" ]
niitassin@gmail.com
ac6103224f6be08bffb2f0de01422f42a7357e1d
ed7bc3d01833379be715151f55f4d1339eb3783d
/src/image_tutorial/src/image_subscriber.cpp
b18cb75a35c51e03136dd294266328cad751e5aa
[]
no_license
Venergon/FRC2017
1be5318d3466249f53ac362f0633b52e9cfe1ef6
6c68da4fb2b6d38fecccaf26eb1f34acd884bd71
refs/heads/master
2021-03-27T16:57:30.073811
2017-06-30T05:38:02
2017-06-30T05:38:02
78,507,694
1
0
null
null
null
null
UTF-8
C++
false
false
3,418
cpp
#include <ros/ros.h> #include <image_transport/image_transport.h> #include <opencv2/highgui/highgui.hpp> #include <cv_bridge/cv_bridge.h> #define RED 2 #define GREEN 1 #define BLUE 0 #define FOCAL 910 #define ACTUAL 210 using namespace cv; Mat onlyGreen(Mat original); Mat contours(Mat current, Mat original); Mat ero...
[ "sophie.ogilvy@gmail.com" ]
sophie.ogilvy@gmail.com
48592606431fe81b6eed078bca7190b545ea227e
39b042143589ea54451889b464d8d6927f1cdd51
/libs/google/v8/src/arm/lithium-codegen-arm.cc
627bc607e720bf78e43415e91e68c5737bc647e1
[ "BSD-3-Clause", "bzip2-1.0.6", "LicenseRef-scancode-other-permissive" ]
permissive
lvyitian/superEcmaAndJavaScriptCompiler
5297837870b0ae499c2ef48b8a22336e160eac78
c1cb2a6489bacf0417d0aa961c3437817e863c05
refs/heads/master
2022-01-17T23:05:50.041404
2019-05-08T08:22:19
2019-05-08T08:22:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
205,887
cc
// Copyright 2012 the V8 project authors. 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 ...
[ "george.bungarzescu@gmail.com" ]
george.bungarzescu@gmail.com
05996d0b86c8e06d201a029a2ec9d8157f84d30e
019b1b4fc4a0c8bf0f65f5bec2431599e5de5300
/media/base/video_decoder.h
5a474b56e21ebdc8177edc6cb351e98c7790f108
[ "BSD-3-Clause" ]
permissive
wyrover/downloader
bd61b858d82ad437df36fbbaaf58d293f2f77445
a2239a4de6b8b545d6d88f6beccaad2b0c831e07
refs/heads/master
2020-12-30T14:45:13.193034
2017-04-23T07:39:04
2017-04-23T07:39:04
91,083,169
1
2
null
2017-05-12T11:06:42
2017-05-12T11:06:42
null
UTF-8
C++
false
false
5,402
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 MEDIA_BASE_VIDEO_DECODER_H_ #define MEDIA_BASE_VIDEO_DECODER_H_ #include <string> #include "base/callback.h" #include "base/macros.h" #inclu...
[ "wangpp_os@sari.ac.cn" ]
wangpp_os@sari.ac.cn
239c9c1c1ed64e8b1ebcac64053be306df4e4c5a
e567f7cdc6cf2ddd7e8a21c3b76a70be3907c292
/uva-350.cpp
a3a0bc693dcc6fd9cd0e53fac595d8c60f1e1ab6
[]
no_license
Ripon440/uva-solutions
3a1a154e45019086fed727744b28fb09ef2ce230
f37f10b7266fc216aa2bac90c01d8fed04a4116d
refs/heads/master
2022-05-24T19:58:28.133855
2020-05-02T07:03:29
2020-05-02T07:03:29
260,631,248
0
0
null
null
null
null
UTF-8
C++
false
false
1,063
cpp
#include<iostream> using namespace std; int main() { int Z, I, M, L; int caseNumber = 0; //insert input while(cin >> Z >> I >> M >> L) { caseNumber++;//increment case number if( Z == 0 && I == 0 && M == 0 && L == 0) break; int maps[M] = {0};//assign all element ...
[ "torikulislam697@gmail.com" ]
torikulislam697@gmail.com
5df1be82fbc2f3db85fe0c42b311e4223ce3e294
120cf10a541b4462cacbfb81b1263b3675f99e97
/src/qtjson_exception.cpp
cf43fde1e8ef1470c2f299b268adb00c011876a6
[ "MIT" ]
permissive
xishuai416/qt-json-1
65b7173b4d4f351dd6f56a1e6116c08016ea6ba7
aab888bc3d0878d7c13411e4445616e69ca81842
refs/heads/master
2023-03-16T00:42:13.275190
2020-05-20T15:36:32
2020-05-20T15:36:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,504
cpp
#include "qtjson_exception.h" using namespace QtJson; const char *Exception::what() const noexcept { return _what.constData(); } void Exception::raise() const { throw *this; } ExceptionBase *Exception::clone() const { return new Exception{*this}; } Exception::Exception(QByteArray what) : _wha...
[ "Skycoder42@users.noreply.github.com" ]
Skycoder42@users.noreply.github.com
fd440dc3600e00a348c8a5e43317aadc95dd5a11
9b922c0d2f69cb23b9abc4b5852e697d82ffdcbb
/VirtualReality/Lab1/main.cpp
a269e52cfb93e05933c7556d811a3f82e73fb060
[]
no_license
dannoane/Faculty
12399d7c67926c23ccd4997600cb6553f5425d8f
9716168967e7d05b6e68d15ba769282b4cf03c4c
refs/heads/master
2021-09-27T13:03:31.813345
2018-11-08T18:24:23
2018-11-08T18:24:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,554
cpp
#include <cmath> #include <iostream> #include <string> #include "Vector.hpp" #include "Line.hpp" #include "Geometry.hpp" #include "Sphere.hpp" #include "Image.hpp" #include "Color.hpp" #include "Intersection.hpp" #include "Material.hpp" #include "stdio.h" #include "Scene.hpp" using namespace std; us...
[ "Noane.Dan@outlook.com" ]
Noane.Dan@outlook.com
384a0c2b6cbe8b9206855a0dc064863343d4c64a
cb76dcee2f0530d461bb4231d8ad308039b79fd8
/cpp/test_atomic/order_acquire_release.cpp
706a3c3ac156368059ee6efbe60e538bf8ea27e5
[]
no_license
lvHiei/LearnAndTest
b9c3e5ef23bba46f4f7024d13a8b53931176bb3f
c1bd16bd94cdc2ebfc9a79b545e6ce1952acbd3b
refs/heads/master
2021-06-24T02:21:03.261729
2020-10-27T12:47:49
2020-10-27T12:47:49
130,451,933
0
0
null
null
null
null
UTF-8
C++
false
false
1,665
cpp
#include "inc.h" std::atomic<std::string*> ptr; int data; void producer() { std::string* p = new std::string("Hello"); data = 42; ptr.store(p, std::memory_order_release); } void consumer() { std::string* p2; while (!(p2 = ptr.load(std::memory_order_acquire))) ; assert(*p2 == "Hell...
[ "majun@mail.51vv.com" ]
majun@mail.51vv.com
39a03edbc9b85db59346de4d1d95a3f45f49d732
3a870ff0b88e62685bfb4c6e70b591da7602d7a3
/SFML/Dialogue.cpp
3b86b46ecaecdb91223b5c20548f4a4bdf2c222f
[]
no_license
denyaalpha/kursach
95bdd77e70faac2fb450cfea8c96cf1485a76d88
2a3b750d9b119e0909c3160f2e8b61fd2e81a0bb
refs/heads/master
2022-11-02T07:34:42.154135
2020-06-23T11:08:43
2020-06-23T11:08:43
274,374,666
0
0
null
null
null
null
UTF-8
C++
false
false
2,464
cpp
#include "Dialogue.h" Dialogue::Dialogue(sf::Vector2f scale) { this->scale = scale; mainBox.setFillColor(sf::Color(100, 100, 100)); mainBox.setSize(sf::Vector2f(700*scale.x, 100*scale.y)); TEXT.setFont("DisposableDroidBB"); TEXT.setColor(sf::Color::White); TEXT.setPosition(sf::Vector2f(scale.x * (207 + 10), sc...
[ "mvch15.1.denya.lobanov1@gmail.com" ]
mvch15.1.denya.lobanov1@gmail.com
03ad89fcc55a98351d0512bc66ccd628fedad5bb
d9fe6d8dce013b01cd49406429b00e6bd94302f9
/HashMap.h
98845d17f82a396e58877e3435b625b72e6feebc
[]
no_license
jianbinghuang/sortStudy
15596167ba0147a7cb02fe439a460405df14c9f8
6a87d1eb8a53e8fe3dd42805193543c9016ff100
refs/heads/master
2020-03-20T16:21:52.540356
2019-06-06T13:03:04
2019-06-06T13:03:04
137,537,269
0
0
null
null
null
null
UTF-8
C++
false
false
2,592
h
#ifndef HASHMAP_H #define HASHMAP_H #include "System.h" #define HASHSIZE 379 template<typename KT, typename VT> struct HashNode { HashNode() : next(nullptr) {} HashNode<KT, VT>(const KT& inKey, const VT& inVal) : key(inKey), val(inVal), next(nullptr) {} KT key; KT val; HashNode<KT, VT>* next; }; inline int32...
[ "jianbing.huang@siemens.com" ]
jianbing.huang@siemens.com
e60a643bd07ac6d4c76f00b186cc5a04ab54b84f
630e5fa4fec4cee4b6936eec74a726550406c11f
/src/qt/pengolincoin/walletpassworddialog.h
96599c8e5fd4e9956e1ae7a36c45da3f4ed38546
[ "MIT" ]
permissive
crypTuron/PengolinCoin-Core
4d815d25de927d42dc890379d15738ee728c525e
3d6c66dd930110075ff44ee6f5a4364c533becd7
refs/heads/master
2022-11-24T21:17:56.271853
2020-07-23T13:49:52
2020-07-23T13:49:52
282,408,670
0
0
MIT
2020-07-25T09:04:22
2020-07-25T09:04:21
null
UTF-8
C++
false
false
664
h
// Copyright (c) 2019 The PENGOLINCOIN developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef WALLETPASSWORDDIALOG_H #define WALLETPASSWORDDIALOG_H #include <QDialog> #include <QCheckBox> namespace Ui { class Walle...
[ "alonewolf2ksk@gmail.com" ]
alonewolf2ksk@gmail.com
de02fede784096a8206cfc14153825811ee8e8ee
722b60f449ca80a653bde8d59bbc7fe1c930c289
/face_detector/ImageIterator.cpp
e0ca74bd993f07ed452338226c1e5000f6d0c02e
[]
no_license
yukaiwang/face_detector
a9a09aee6180519783ae1ccf6cd70b3e3343882d
e786fce6c6f3c34af0d6e81efff518067a41dfdd
refs/heads/master
2021-01-10T01:10:36.248507
2015-12-04T11:57:39
2015-12-04T11:57:39
47,401,139
0
0
null
null
null
null
UTF-8
C++
false
false
5,268
cpp
// // ImageIterator.cpp // face_detector // // Created by Yukai Wang on 01/12/15. // Copyright © 2015 Yukai Wang. All rights reserved. // #include "ImageIterator.hpp" void write_csv_file(int A[], int length, string file_name) { std::ofstream output(file_name); for(int i = 0; i < length; i++) { ...
[ "yukai.wang1991@gmail.com" ]
yukai.wang1991@gmail.com
76bbcd116363b5e98b39fab3e89989830ac16456
c22c1aed75252533bb5de8ce9ff3c0f5ac9814bc
/samples/greengrass/basic_discovery/main.cpp
2cde0f2515cdc7739b6a2753e87606df19df2fa6
[ "Apache-2.0" ]
permissive
QPC-database/aws-iot-device-sdk-cpp-v2
d141caef6916646967dff1bb48e661bccc6f45f3
163fdf3bff9cc2a51f5d0aeca3d9356f665583a3
refs/heads/main
2023-06-15T00:33:28.643390
2021-06-22T21:02:05
2021-06-22T21:02:05
384,712,786
1
0
Apache-2.0
2021-07-10T14:07:43
2021-07-10T14:07:43
null
UTF-8
C++
false
false
13,859
cpp
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/crt/Api.h> #include <aws/crt/io/HostResolver.h> #include <aws/discovery/DiscoveryClient.h> #include <aws/iot/MqttClient.h> #include <algorithm> #include <condition_variable> #include <i...
[ "noreply@github.com" ]
QPC-database.noreply@github.com
9e5b5d34c359ff932deb80286da67530d1c31fc9
2a4a845584aa202b6e4567397cb464200aaeea16
/src/browser/content_browser_client.h
97842c5283badb065cb8b2f61e513d3f016f088b
[ "MIT" ]
permissive
CharlesHoskinson/exo_browser
32453b220c96fbce88dede61492820fd7b801eea
414286dde5a8a71f9b8b2482e635ecb0f04a117f
refs/heads/master
2020-12-11T06:01:21.212884
2013-12-31T11:06:01
2013-12-31T11:06:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,350
h
// Copyright (c) 2013 Stanislas Polu. // Copyright (c) 2012 The Chromium Authors. // See the LICENSE file. #ifndef EXO_BROWSER_BROWSER_CONTENT_BROWSER_CLIENT_H_ #define EXO_BROWSER_BROWSER_CONTENT_BROWSER_CLIENT_H_ #include <string> #include <map> #include "base/compiler_specific.h" #include "base/memory/scoped_ptr....
[ "polu.stanislas@gmail.com" ]
polu.stanislas@gmail.com
32228738aeaa35c47274ab10e556b820ce660f50
cf0fc67feeaf7f1289b4bd3d3026cf9ce271aa87
/djiros-3.3/djiros-3.3/src/bluefox2/camera.cpp
fdb1afd137cf0a05e6293ba3a1f7ee42899c4c05
[]
no_license
hch661100/Manifold
8b4e7f3f5ad006f491a50007b4a4795fca3b6dc9
7017be6c34779b5f4050a22ece7b707890888952
refs/heads/master
2020-03-19T10:34:38.968350
2018-09-24T18:03:59
2018-09-24T18:03:59
136,383,709
0
0
null
null
null
null
UTF-8
C++
false
false
22,768
cpp
#include "camera.h" #include <boost/format.hpp> #include <algorithm> namespace bluefox2 { Camera::Camera(ros::NodeHandle _param_nh) : pnode(_param_nh), m_fast_mode(false), m_hwsync_grab_count(0), m_max_req_number(-1), m_verbose_output(false), m_sync_offset_for_debug(0.0) { int ex...
[ "chonghuang@umail.ucsb.edu" ]
chonghuang@umail.ucsb.edu
87b9ec7acd66aa33f0dea390266587eb6e0140d0
065514567124ae77a1c18ac3a05cdbd5a479bde1
/MeshTools/FEFileExport.cpp
712cd33721774d5f1a2fd87200bf5a6bcd122aa2
[ "MIT" ]
permissive
davidlni/FEBioStudio
d6b1f61304c104e33e6b1b1e8d522c19c95aa154
324d76b069a60e99328500b9b25eb79cf5a019e8
refs/heads/master
2023-08-17T09:04:30.943726
2021-09-28T21:19:29
2021-09-28T21:19:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,085
cpp
/*This file is part of the FEBio Studio source code and is licensed under the MIT license listed below. See Copyright-FEBio-Studio.txt for details. Copyright (c) 2020 University of Utah, The Trustees of Columbia University in the City of New York, and others. Permission is hereby granted, free of charge, to any per...
[ "michaelrossherron@gmail.com" ]
michaelrossherron@gmail.com
49365e6a6fcd9b134e8ab48c90d0e391d2cd4296
aebf2b4a7c6182828780d8c3bfc7667256576dc5
/Library System/Book.cpp
fe1e4c99bdd9bcfaa8a5cc1a1430a40c8cc5cd5d
[]
no_license
yoonioncho/OOPG-with-C
39b764209d4105f70f801d247a3c7862383c6415
4388b883abb9e3850c4b68d2ac9b5fda4347151a
refs/heads/main
2023-02-25T23:04:28.021244
2021-02-03T12:50:25
2021-02-03T12:50:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
466
cpp
//Book.cpp //Member and friend function definitions of class Book #include "Book.h" Book::Book(Author ba, Publisher bp, Date bd, string bt) : BookAuthor(ba),BookPublisher(bp),PublishDate(bd) { BookTitle = bt; } Book::~Book() { } void Book::print() const { cout << "\tBook Title : " << BookTitle ...
[ "noreply@github.com" ]
yoonioncho.noreply@github.com
223a5efb836418531e7b0180d0bb2b983877c6f2
b33a9177edaaf6bf185ef20bf87d36eada719d4f
/qtbase/src/gui/doc/snippets/textdocument-tables/xmlwriter.cpp
fd860c73eef2a29aa7f3205943d6077865a8efa8
[ "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-commercial-license", "LGPL-2.0-or-later", "LGPL-2.1-only", "GFDL-1.3-only", "LicenseRef-scancode-qt-commercial-1.1", "LGPL-3.0-only", "LicenseRef-scancode-qt-company-exception-lgpl-2.1", ...
permissive
wgnet/wds_qt
ab8c093b8c6eead9adf4057d843e00f04915d987
8db722fd367d2d0744decf99ac7bafaba8b8a3d3
refs/heads/master
2021-04-02T11:07:10.181067
2020-06-02T10:29:03
2020-06-02T10:34:19
248,267,925
1
0
Apache-2.0
2020-04-30T12:16:53
2020-03-18T15:20:38
null
UTF-8
C++
false
false
5,577
cpp
/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the documentation of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as f...
[ "p_pavlov@wargaming.net" ]
p_pavlov@wargaming.net
d535307fcc5686fef9830bbdd41ef87aca5e42b1
707996ee245f8ca271baa6959823211b248b362e
/src/bitcoinrpc.cpp
c3c442a96187df9639e0266332be5adad9238d21
[]
no_license
OnionCoin/OnionCoin
6eeac1d77a81c4223bf6d431121336fc994224fd
fcb4001a99e59940931031112957d6deb3629d9c
refs/heads/master
2020-04-06T06:44:23.619557
2014-02-08T14:37:55
2014-02-08T14:37:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
116,254
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Copyright (c) 2011-2012 The Litecoin Developers // Copyright (c) 2013 Adam M. (Wouldn't want your name to be lower case, would you?) // Copyright (c) 2014 FoxCoin Foxes. // Copyright (c) 2014 OnionCoin. // Distributed under the ...
[ "onioncoin2014@gmail.com" ]
onioncoin2014@gmail.com
d93417644e900dd26f249c23c695611e4f0d9645
65d3fd04cbe3780600b7113645f6cd8072c2baab
/M.cpp
3363bfa0b5b29e1bb813edef834a21d637958938
[]
no_license
devtot0/task3
6d10ca6f96be55c7850667cf6b2ba147962bef7d
e3776b33c0ad01ebe90379c2d6f76ff944ee2085
refs/heads/master
2020-04-07T08:03:57.183889
2018-11-19T10:13:15
2018-11-19T10:13:15
158,199,463
0
0
null
null
null
null
UTF-8
C++
false
false
2,671
cpp
#include "M.h" CImg<int> dilation(CImg<int>& image, vector<vector<maskItem>> mask) { CImg<int> result = image; for (int x = 1; x < image.width() - 1; x++) { for (int y = 1; y < image.height() - 1; y++) { bool isMax = false; for (int i = 0; i < mask.size(); i++) { for (int j = 0; j < mas...
[ "noreply@github.com" ]
devtot0.noreply@github.com
c67ad96fb03c1c1ef11a47fd563889e0dc577a8b
b405fd9cd3c53a3ed279e75aca3fec89ba745df5
/299.Bulls and Cows/299.Bulls and Cows/main.cpp
719bdbcc440c50ddbfb7108eeecb2f0440af9755
[]
no_license
Abysman/MyLeetCode
4842db63f4914022a3773be1e9d9ce068cb6d3bd
a4eb8af658996e7ba4501342f4aa4bbd113e6cfb
refs/heads/master
2021-04-06T20:48:17.260497
2020-01-23T23:09:35
2020-01-23T23:09:35
125,452,898
0
0
null
null
null
null
UTF-8
C++
false
false
1,896
cpp
// // main.cpp // 299.Bulls and Cows // // Created by Abysman on 2018/9/27. // Copyright © 2018年 Abysman. All rights reserved. // #include <iostream> #include <unordered_map> using namespace std; //class Solution { //public: // // only contains digits // string getHint(string secret, string guess) { // ...
[ "756884429@qq.com" ]
756884429@qq.com
8dc0779714c5aaddaab412b4e897977da72c0254
ca45c2183600d80290f874eef48cba3a7b4ebf18
/yolo_detector.cpp
7c3c1839df223360fdd8b87cc8ccf10d407772ad
[]
no_license
koodg123/systolic-array
22d587719f460b560ef75afaf64825937b937da5
ba980bb62e82a7984c38b252a933118dbbea7d13
refs/heads/master
2021-08-11T00:07:14.253720
2017-11-13T03:08:33
2017-11-13T03:08:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,738
cpp
//======================================================================== // yolo_detector header file //======================================================================== // @brief: Application for detecting objects #include "yolo_detector.h" /* // transfer value // argv[0] - datacfg : cf...
[ "dpjiuzhu@126.com" ]
dpjiuzhu@126.com
10e8703c9b2a51b4bc9e06db76a89600936c2277
c1e25a487002d11b2bbe433c351658a92261b973
/Assignment/GGraphic.h
35994a23b594be267452046f78ddf7259ce07862
[]
no_license
shifungyeo/CGP-Assignment
c6a0758d00e5ba8d67b2caffbb8b51636d36e98c
498c9c473ec6af2f1964b840e7909b9029ca5018
refs/heads/master
2023-03-25T03:09:15.130453
2021-03-22T01:33:19
2021-03-22T01:33:19
350,170,472
0
0
null
null
null
null
UTF-8
C++
false
false
346
h
#pragma once #include <d3d9.h> #include <d3dx9.h> #include "GWindow.h" class GGraphic { private: GGraphic(); ~GGraphic(); static GGraphic* instance; public: static GGraphic* getInstance(); static void releaseInstance(); void begin(); void end(); IDirect3D9* direct3D9; D3DPRESENT_PARAMETERS d3dPP; IDirect...
[ "shifungyeo@gmail.com" ]
shifungyeo@gmail.com
c5ef74a4fb432c744de81f1644bc699204617404
0adf6466ad731be8f551c5472c2e5ea132c5115e
/shared/GLHUD.h
f7801e60f35e22b6e1b0e3bbbd10642493b9f3ef
[]
no_license
kkaushalp/aphid
bef46e068e21e72a3a2515a7da0ae9085f6712ad
93e4e4102fae93428608205d000ff90a9edc69f1
refs/heads/master
2020-04-08T00:00:23.798704
2015-08-17T07:25:43
2015-08-17T07:25:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
522
h
#pragma once #ifdef __APPLE__ #include <OpenGL/gl.h> #include <OpenGL/glu.h> #include <OpenGL/glext.h> #include <GLUT/glut.h> #endif #ifdef WIN32 #include <windows.h> #include <GL/gl.h> #include <GL/glu.h> #include <GL/glext.h> #endif #include <string> class BaseCamera; class GLHUD { public: GLHUD(); virtual ~...
[ "zhangmdev@gmail.com" ]
zhangmdev@gmail.com
88d0e49b3654423fe9c1a961e7be5118ebf9346b
d281caf8d3f36b0432203624af5e950039591734
/flashlight/app/benchmark/ModelBenchmarker.h
21855de3d4764ecf54b35aab34bfba5f4c2d39a8
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
mtmd/flashlight
ae4b7ab2c4986cf8a647fb0cda657cf389ac1812
36595da7e1ed752471f3e7b1f0196c514f244945
refs/heads/master
2021-08-15T12:46:01.743974
2021-08-03T21:26:54
2021-08-03T21:28:10
209,403,798
0
0
NOASSERTION
2019-09-18T21:04:33
2019-09-18T21:04:33
null
UTF-8
C++
false
false
1,425
h
/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <vector> #include "flashlight/fl/flashlight.h" namespace fl { namespace app { namespace benchmark { ...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
cb97a4e24cfe61fd0fe090ab657c25e3ad463980
43fe4d201f86a83f87589b8f519cd066a94fe7a5
/srcs/commonlib/comm/data/JointQuaternionData.h
90a429b89761f437ffabf7007b8d2e07c6670dd7
[]
no_license
Aharobot/SIGServer
b7ddcfe5627efe5b975a2f30a310b2bf5547b21b
7b7657afe21573e4f08baa24ff8e2fac6a60b7e0
refs/heads/master
2021-01-22T00:13:10.628330
2014-10-31T20:22:31
2014-10-31T20:22:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,171
h
#ifndef JointQuaternionData_h #define JointQuaternionData_h #include <string> class JointQuaternionData { private: typedef std::string S; private: S m_agentName; S m_jointName; double m_qw; double m_qx; double m_qy; double m_qz; bool m_offset; public: JointQuaternionData(const char *agentName_, const cha...
[ "inamura@nii.ac.jp" ]
inamura@nii.ac.jp
87849225be999a1907f624223cd6440c7fa14ff2
19fd75fe50eb82ddb770f641d2dbd475d361f8cc
/t9_2/t9_2/t9_2Doc.cpp
9b8fc70905f9c8bb680fbaeaae9467d9f45e61ca
[]
no_license
xmm123-456/Experiment
48dc037e01a28540e0a97be163975aa1d6fb0f32
90382b7b415637616464bd54e3b214abbb080fec
refs/heads/master
2021-02-15T09:34:14.793651
2020-06-01T12:23:20
2020-06-01T12:23:20
247,668,370
0
1
null
null
null
null
GB18030
C++
false
false
2,507
cpp
// t9_2Doc.cpp : Ct9_2Doc 类的实现 // #include "stdafx.h" // SHARED_HANDLERS 可以在实现预览、缩略图和搜索筛选器句柄的 // ATL 项目中进行定义,并允许与该项目共享文档代码。 #ifndef SHARED_HANDLERS #include "t9_2.h" #endif #include "t9_2Doc.h" #include <propkey.h> #ifdef _DEBUG #define new DEBUG_NEW #endif // Ct9_2Doc IMPLEMENT_DYNCREATE(Ct9_2Doc, CDocument) B...
[ "2524398565@qq.com" ]
2524398565@qq.com
70fd7d65945441dbe7299edc93b1ff0f21cd18bc
0d094e5f52560449751177f54c0a24aa59c72498
/packaged_task.cpp
237d5b424db5b9ece0e48316b037199cdfe7026d
[]
no_license
xlnwel/Cpp-concurrency
d593af22080315b8b1bad9d60d2cd7f8915acfe1
da6f0875d2da86ec3a7a4fb65fce80e1e3ddeed2
refs/heads/main
2023-03-22T23:22:36.770412
2021-03-20T08:06:36
2021-03-20T08:06:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,591
cpp
#include <atomic> #include <functional> #include <future> #include <iostream> #include "queue.hpp" #include "join_thread.hpp" using namespace std; using namespace utility; /* A reimplementation of List 4.9 */ using Func = double(); atomic<bool> go; LockBasedQueue<std::packaged_task<Func>, std::list<std::packaged_t...
[ "122134545@qq.com" ]
122134545@qq.com
73220b97cefd52d644c1f3adc1783e16934e1da4
eaf0c24a620807e1304c4d663a493637a85f6d84
/client/src/EventLoop.cpp
2d1718b2a095755397a726eb2d09055d1be03551
[]
no_license
xiaopeifeng/dbproxy
71f488e61c0a50ffdd74d0e1671cde0eb76cbb78
0c972e2db766e6bfd15ad9e98e8867566f41a43c
refs/heads/master
2021-01-10T01:19:24.529260
2016-03-10T14:04:46
2016-03-10T14:04:46
52,366,310
0
0
null
null
null
null
UTF-8
C++
false
false
436
cpp
#include "EventLoop.h" #include "DBProxyClient.h" EventLoop::EventLoop() {} EventLoop::~EventLoop() {} void EventLoop::loop() { while(true) { Task<DBProxyClient>* t = m_tasks.pop(); if( t->m_obj ){ (t->m_obj->*(t->m_fun))(t->m_arg); // task_call_back_t cb = t->m_fun; }else{ // t->m...
[ "xiaopeifenng@gmail.com" ]
xiaopeifenng@gmail.com
dcd6a7c6a829d84c19e5032f0973001c25ed9f46
322e889e9d1fe58b62428ed320ce54c4d519bbd2
/RMQSQ.cpp
52f1496e82fea80fb0f97997cc160799bb63e009
[]
no_license
shikharmay7/spoj
86d996babf27bf63a058bd4bbbc36ba002eac754
da39dc571387fb9bfccd41e43e6e3ffc93684074
refs/heads/master
2021-07-24T05:33:13.789362
2020-08-04T09:16:59
2020-08-04T09:16:59
205,915,082
0
0
null
null
null
null
UTF-8
C++
false
false
1,160
cpp
SPOJ submission 26231331 (CPP14) plaintext list. Status: AC, problem RMQSQ, contest SPOJ. By shikhar_may7 (shikhar), 2020-07-03 13:54:00. #include<bits/stdc++.h> using namespace std; typedef long long int lli; lli arr[100001], st[400004]; void buildTree(lli si, lli ss, lli se) { ...
[ "noreply@github.com" ]
shikharmay7.noreply@github.com
52542226fedc67f53583e0c54a67641d6183d34b
88dd6468b61673b45b777fc3bcb6763f6f0d7457
/C++/Dynamic/3.cpp
74e20c42009e399aed9a43e2612bda283207fd16
[]
no_license
theja0473/C-Programs
c76db967ca02edc6bb0382ebd212d8bf4627dba6
ed09d9d3ac8b3ac5f9b35d4c26cf411a3d8e0185
refs/heads/master
2021-01-01T04:12:51.031288
2016-05-23T11:25:45
2016-05-23T11:25:45
59,474,377
0
1
null
null
null
null
UTF-8
C++
false
false
414
cpp
#include<iostream> using namespace std; int main() { int *ptr; int number, i; cout<<"Enter the number of elements : "; cin>>number; ptr = new int[number]; for(i = 0; i < number; i++) { cout<<"Enter the value : "; cin>> *(ptr + i); } cout<<"Elements given : "; for(i = 0; i ...
[ "theja0473@mail.com" ]
theja0473@mail.com
a543990e8cfc83f83e13758a96b1b060af3b5cc8
12c135847b8b67ae33017600861e25ad5751efc0
/constant/turbulenceProperties
df876d926ff02db105d048e88fb14d516d7109a6
[]
no_license
kamakiri1225/Karman_vortex_sheet
57623ecdb2ed1d255a6e95663fc60ffbe285ba49
bda2dfd09f39e6ee0241d8b95043615ef9a08193
refs/heads/main
2023-01-02T00:58:06.813039
2020-10-28T04:43:40
2020-10-28T04:43:40
307,907,577
0
0
null
null
null
null
UTF-8
C++
false
false
987
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 4.x | ...
[ "noreply@github.com" ]
kamakiri1225.noreply@github.com
079f15cf7d22015ccf28051fc41b3e464c67c2a6
f75b4132456b9f33a47a4ddc86b3faa2f2b8dff7
/Aseets/Programs/before/GameFlag.cpp
dfd6059722607e0f8cf90e2a336795a7f6f926fd
[]
no_license
edonasi/make0903
4a71b58b9f755192575dedb53846b78518ebe234
901b7a7d06e914f4c61459def3369a7d4f3a4233
refs/heads/master
2023-08-02T22:07:57.064369
2021-10-01T03:25:34
2021-10-01T03:25:34
402,603,486
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
2,368
cpp
//*--------------------------------------------------------------------------------* // ゲーム続行のフラグを管理する //*--------------------------------------------------------------------------------* //*--------------------------------------------------------------------------------* // ヘッダファイル読み込み //*---------------...
[ "hj-g20030@sist.ac.jp" ]
hj-g20030@sist.ac.jp
813861b2f91c2ec52e92f1c7148a6580122f393f
4fb6ac5060727f05abd056cf9f3ee830a0734aee
/atcoder/gc24b.cpp
1c9a6cb58de3d4c5e31c133f67ef3a6de21f621c
[]
no_license
booneng/competitive_programming
6141c1ab60e49ffd1ae1cf4ede018622b122ed6b
b6a39e1574c4b8b513945d6fa6e9075a4f458370
refs/heads/master
2021-04-15T12:50:59.351207
2019-07-23T08:01:06
2019-07-23T08:01:06
126,816,788
0
0
null
null
null
null
UTF-8
C++
false
false
483
cpp
#include <iostream> #include <algorithm> using namespace std; int main() { int n; cin >> n; int q[n + 1]; for (int i = 1; i <= n; i++) { int p; cin >> p; q[p] = i; } int max_length = 1; int cur_length = 1; for (int i = 1; i < n; i++) { if (q[i] < q[i + 1]) { cur_length++; } ...
[ "ohbooneng@gmail.com" ]
ohbooneng@gmail.com
cf71e28ff69cfcd76b913e7e4d921a69bcbe2e9c
23efe1d0a2d3469ebf0fc43bbb5359aeb25c1a51
/modules/gdscript/gd_function.h
1f790eaadcf95cd241a3739e55291856ae0290ab
[ "MIT", "CC-BY-4.0", "CC-BY-3.0" ]
permissive
est31/godot
868c5b09f86edb18e338feb45ac410e776cd4ab8
c4c6797fc1d700f59ea8d4927d42c1838bcfb3b9
refs/heads/master
2021-01-14T12:02:46.420109
2016-06-16T12:24:15
2016-06-16T12:24:15
34,761,514
1
1
null
2015-04-28T23:34:27
2015-04-28T23:34:26
null
UTF-8
C++
false
false
4,497
h
#ifndef GD_FUNCTION_H #define GD_FUNCTION_H #include "self_list.h" #include "os/thread.h" #include "pair.h" #include "variant.h" #include "string_db.h" #include "reference.h" class GDInstance; class GDScript; class GDFunction { public: enum Opcode { OPCODE_OPERATOR, OPCODE_EXTENDS_TEST, OPCODE_SET, OPCODE...
[ "reduzio@gmail.com" ]
reduzio@gmail.com
85ff6e04e93d8e11b3fa48615f969e624b4cb0bf
13727538d2bf70ad83864ee44e5594fa0facd4f5
/task122.cpp
6d9f360a1df8904bf208f072b9e162b805c94387
[]
no_license
shaimerdenova/shaimerdenova
f941299d672e464e7c0de610eac499a44ebc8a64
6039a392ca26d49e6c27409a527fcfc7975e3585
refs/heads/master
2020-09-12T13:59:47.441112
2019-11-22T21:48:21
2019-11-22T21:48:21
222,446,962
0
0
null
null
null
null
UTF-8
C++
false
false
279
cpp
#include <iostream> using namespace std; int main() { int number, count=0; cin >> number; while (number) { if ((number % 10 >3)&&(number%10<8)) { count ++; } number= number/ 10; } cout << count; return 0; }
[ "noreply@github.com" ]
shaimerdenova.noreply@github.com
4ee139897b2bc1b73c79570666d664e3e6e56cae
2c77b4f88e9c3353db2593c0abe9498ae3264d22
/routing/time_tests/wall_time/11x11/main.cpp
588511461b23212af26b3d4fab0152f704dff9a0
[]
no_license
formal-verification-research/IVy-Models
968c79a7315043b70f15addce28ff03ac05a54cd
487cd40efa206fdfe7f17ca61938011714f57c8f
refs/heads/master
2022-05-20T17:07:29.533257
2022-05-04T00:49:03
2022-05-04T00:49:03
218,392,388
1
0
null
null
null
null
UTF-8
C++
false
false
4,976
cpp
#define MAX_X 10 #define MAX_Y 10 #include <iostream> #include <bits/stdc++.h> #include <string> #include <sstream> #include <time.h> #include "Utils.hpp" Count one_fault; Count two_fault; #include "Route.hpp" using namespace std; void make_files(); // void make_makefile(); int main() { struct timespec beg...
[ "56940292+landonjefftaylor@users.noreply.github.com" ]
56940292+landonjefftaylor@users.noreply.github.com
4f0a28ee1287ba9e0ff101af2e00d045b38db9b3
29868bf4aa31c1ca8b8c86e5b5b07cc3509caf64
/Hoja de calculo/Hoja de calculo/Funcioneshoja.hpp
cbb720e2d9bab68b7f07d1886b1ea087f9c792f5
[]
no_license
Laura-Mora/PC-2016-03
a137746a8c1939235a5176a0ecc2d8234ee87348
0cf0826bdb8a3be89c9da0e70a6726388c6ba0c6
refs/heads/master
2023-07-20T15:16:07.676365
2019-12-30T01:52:28
2019-12-30T01:52:28
222,524,088
0
0
null
null
null
null
UTF-8
C++
false
false
434
hpp
// // Funciones hoja.hpp // Hoja de calculo // // Created by Laura Juliana Mora on 21/08/16. // Copyright © 2016 Laura Juliana Mora. All rights reserved. // #ifndef Funciones_hoja_hpp #define Funciones_hoja_hpp #include <stdio.h> #include <iostream> void crear(char ***hojaInicial, int nfilas, int ncolumnas); void...
[ "noreply@github.com" ]
Laura-Mora.noreply@github.com
dd09fab0320f33d59d561519f8b98ddbec558577
83bacfbdb7ad17cbc2fc897b3460de1a6726a3b1
/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.cpp
6b6b1433b32d43aa99bd7b577b53da567d30c65f
[ "BSD-3-Clause", "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "Apache-2.0" ]
permissive
cool2528/miniblink49
d909e39012f2c5d8ab658dc2a8b314ad0050d8ea
7f646289d8074f098cf1244adc87b95e34ab87a8
refs/heads/master
2020-06-05T03:18:43.211372
2019-06-01T08:57:37
2019-06-01T08:59:56
192,294,645
2
0
Apache-2.0
2019-06-17T07:16:28
2019-06-17T07:16:27
null
UTF-8
C++
false
false
7,798
cpp
/* * Copyright (C) 2009 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of condition...
[ "22249030@qq.com" ]
22249030@qq.com
fbd0098746441c94508bcaca543dc9f2333759b0
608cf243607bfa7a2f4c91298463f2f199ae0ec1
/ios/versioned-react-native/ABI40_0_0/ReactNative/ReactCommon/fabric/components/textinput/iostextinput/ABI40_0_0TextInputState.cpp
ac286d1cbb48b409f1d4ab26f75c19baed0f00fc
[ "MIT", "BSD-3-Clause", "Apache-2.0" ]
permissive
kodeco835/symmetrical-happiness
ca79bd6c7cdd3f7258dec06ac306aae89692f62a
4f91cb07abef56118c35f893d9f5cc637b9310ef
refs/heads/master
2023-04-30T04:02:09.478971
2021-03-23T03:19:05
2021-03-23T03:19:05
350,565,410
0
1
MIT
2023-04-12T19:49:48
2021-03-23T03:18:02
Objective-C
UTF-8
C++
false
false
346
cpp
/* * 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. */ #include "ABI40_0_0TextInputState.h" namespace ABI40_0_0facebook { namespace ABI40_0_0React {} // namespace ABI40_0_0React } // na...
[ "81201147+kodeco835@users.noreply.github.com" ]
81201147+kodeco835@users.noreply.github.com
ee01d31d31fc28f98c1be8d6a5ddefb9ec4b4b22
8d8e64230c6abcad18aa3fb6ae10d1f03e6d0c99
/NetworkDriveServer/NetworkDriveServer.cpp
81db15ecf817a0eee9dd08aad8fe14538af67fab
[]
no_license
shi-yan/QtDokanyExamples
1462c13ceee52292d89175faf41b69245fab57b7
93e94c2120712f82898e9585694272b9daa6fa33
refs/heads/master
2021-01-10T03:51:12.621096
2016-01-12T22:48:35
2016-01-12T22:48:35
47,361,247
4
0
null
null
null
null
UTF-8
C++
false
false
24,300
cpp
#include "NetworkDriveServer.h" #include <QDataStream> #include "FileSystemThread.h" NetworkDriveServer::RequestBarrier::RequestBarrier(qint32 messageId) :m_messageId(messageId) { } NetworkDriveServer::RequestBarrier::~RequestBarrier() { } void NetworkDriveServer::RequestBarrier::acquire() { ...
[ "billconan@gmail.com" ]
billconan@gmail.com
8a681b25fda8b2401d2db6a82a6f5170e27f84e6
35f575c997f226e4662ae214735e29186e93d1bf
/dependencies/Ogre/src/Components/MeshLodGenerator/src/OgreLodCollapser.cpp
a65051dc14d6f20d9683b73c6e2ff80b8c5a4b1c
[ "MIT", "Apache-2.0" ]
permissive
PTSD-3D/PTSD-Engine
b227aa52b9f948a7794c0075295e70d4a71c4353
2f523b8a7fd768c8e3cfd634e53d8c34b3b359ef
refs/heads/main
2023-05-04T03:25:26.093194
2021-05-27T21:10:25
2021-05-27T21:10:25
345,047,719
3
0
Apache-2.0
2021-05-27T21:10:26
2021-03-06T08:50:35
C++
UTF-8
C++
false
false
13,886
cpp
/* * ----------------------------------------------------------------------------- * This source file is part of OGRE * (Object-oriented Graphics Rendering Engine) * For the latest info, see http://www.ogre3d.org/ * * Copyright (c) 2000-2014 Torus Knot Software Ltd * * Permission is hereby granted, free of char...
[ "adralv01@ucm.es" ]
adralv01@ucm.es
aabe3650feaf4dbcdbfdbcc4c0ae9ad3e3321ede
6f874ccb136d411c8ec7f4faf806a108ffc76837
/code/Windows-classic-samples/Samples/Win7Samples/winui/shell/appshellintegration/PlaylistPropertyHandler/Dll.h
aa904acc374557e55a5b3a5026f4cfd2b811ac97
[ "MIT" ]
permissive
JetAr/ZDoc
c0f97a8ad8fd1f6a40e687b886f6c25bb89b6435
e81a3adc354ec33345e9a3303f381dcb1b02c19d
refs/heads/master
2022-07-26T23:06:12.021611
2021-07-11T13:45:57
2021-07-11T13:45:57
33,112,803
8
8
null
null
null
null
UTF-8
C++
false
false
607
h
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. // // Copyright (c) Microsoft Corporation. All rights reserved #include <windows.h> #incl...
[ "126.org@gmail.com" ]
126.org@gmail.com
d79dd4aa58331d61cba37d6ec5bbe9964343b766
a1abe87ee9e276ba60d26a63378c4ea3e35d7517
/Source/SpriteRender/INTERFACE/CONFIG/SpriteRenderConfig.cpp
be7475b601c98f7f191b7030d034881a64a6bbbd
[]
no_license
AlexeyOgurtsov/SpriteRender
c3b1f855c4f869d3b60091a048beecf270577908
f3eb9945dbc1f059fd0b0398ffc5557f7c086f13
refs/heads/master
2020-03-30T23:29:59.105528
2019-02-14T08:05:01
2019-02-14T08:05:01
151,702,572
0
0
null
null
null
null
UTF-8
C++
false
false
510
cpp
#include "SpriteRenderConfig.h" namespace Dv { namespace Spr { namespace Ren { SConfig::SConfig(const SMinimalConfig& InMinimalConfig) : Log{InMinimalConfig.pLog} , Device{ InMinimalConfig.pDev, InMinimalConfig.pDevCon } , RenderTarget{ InMinimalConfig.RTWidth, InMinimalConfig.RTHeight, InMinimalConfig.pRTView, InMi...
[ "alexey_eng@mail.ru" ]
alexey_eng@mail.ru
f5ab521c71bee25715579963ebe3f242360fd8d4
2844845145012af7b7cf55bed4be87c613245baa
/dlls/ent_locus.cpp
1c58ba3df1cdbf1e2180f5bc8890ceb6ec16f601
[]
no_license
HLSources/Tyrian-GroundAssault
2ed627558e5902c63ce04d4b9e2e7237565f74f1
9411deab882dd4ae444c0e24debe5bbbff9cfc50
refs/heads/master
2023-01-31T03:30:12.157694
2020-12-03T12:32:34
2020-12-03T12:32:34
318,186,713
1
0
null
null
null
null
ISO-8859-10
C++
false
false
26,192
cpp
//========================================= // NEW file for Spirit of Half-Life 0.7 // Created 14/01/02 //========================================= // Spirit of Half-Life's particle system uses "locus triggers" to tell // entities where to perform their actions. // XDM: unblelievable that such dirty code got here #i...
[ "30539708+Maxxiii@users.noreply.github.com" ]
30539708+Maxxiii@users.noreply.github.com
7dfd546a341ff0eb4d1261526d934f3cc176b0c5
50f2a23b6164e4161d06547d897b979608f9b6d1
/SDK/FG_BP_StarfishSingle_01_functions.cpp
effd27096ba16dcec8efdfbe74a4e9d5831c2b27
[]
no_license
satisfactorymodding/SatisfactorySDK
35433a3bd19f34c7dfd0a4cf141a310be4b9d382
e9a2332e0f76b92c99d4072638c1560b8137e821
refs/heads/master
2020-05-24T11:21:41.715919
2019-10-10T07:48:30
2019-10-10T07:48:30
187,234,176
8
3
null
null
null
null
UTF-8
C++
false
false
11,397
cpp
// Satisfactory SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "FG_BP_StarfishSingle_01_parameters.hpp" namespace SDK { //--------------------------------------------------------------------------- //Functions //--------------------------------------------------------------------------- // Function BP...
[ "kronosdev45@gmail.com" ]
kronosdev45@gmail.com
d7885883846d8a44a9aa76139fd4f02d5a319023
afab7b8f4ee33d3ca12a55554d35bfa44f0cf81f
/Scara Final/ScaraArduinoCode/ScaraArduinoCode.ino
ee61bd245a06bb2b7088b3fe2313f918b9f092e4
[]
no_license
modyvj/SeniorDesign
f7466034b86e15ed2b0864b58e04b5cb3f215e88
4ca251f0ad64485e5873a3315eefed8bf67daad6
refs/heads/master
2020-03-07T12:14:16.348712
2018-04-03T19:06:46
2018-04-03T19:06:46
127,473,576
0
0
null
null
null
null
UTF-8
C++
false
false
2,457
ino
// Serial test script #include <Servo.h> #define EAA 1 #define EAB 2 int cntEA = 0; bool curEA = LOW; bool lasEA = LOW; Servo myservoj1; // create servo object to control a servo Servo myservoj2; // create servo object to control a servo int pos = 90; // variable to store the servo position int setPoin...
[ "vishalmody12@gmail.com" ]
vishalmody12@gmail.com
8bd8a885ea950cea350a18f21bee18fa89b91e15
517391f634571536f689cf9402888a9743653b67
/parser.cpp
093f2fdaf66d91d8ca1ffceb98d9a9581e650510
[]
no_license
luk0104/jovita
becdb8f302eb68cd0a81adc4bd6dbe9b3cbb8152
ec21d9d914870e4e980178f293bda3db682ef485
refs/heads/master
2021-01-25T05:16:36.977764
2011-10-11T21:36:11
2011-10-11T21:36:11
2,557,129
1
0
null
null
null
null
UTF-8
C++
false
false
2,576
cpp
#include <cctype> #include <cstring> #include "parser.h" namespace Parser { Parser::Parser (std::string str) { this->str = str; itr = this->str.begin (); } Machine::OPCode * Parser::nextOPCode (void) { char ch; std::cout << "OPCode: " << str << std::endl; while (isData ()) { switch (nextToke...
[ "luk0104@gmail.com" ]
luk0104@gmail.com
0ddc3fede78ea2f52a66e266522febeb059fef96
f6cb1b34668f4e864836c595efce40083baa8f91
/common/recipes-core/log-util-v2/files/tests/test_selstream.cpp
3778bf77f10d92298dc521fa2363ad2d90bb419b
[]
no_license
isabella232/openbmc
d419d61092f457d2c25a057831fc8d56cd482e8a
7a0ece893ac2d985af85701d8a003fa62a34cae0
refs/heads/helium
2023-04-06T06:29:29.854842
2021-04-16T01:04:35
2021-04-16T01:54:48
358,585,013
0
0
null
2021-04-16T12:02:45
2021-04-16T12:01:40
null
UTF-8
C++
false
false
8,857
cpp
#include <gmock/gmock.h> #include <gtest/gtest.h> #include <sstream> #include "selstream.hpp" using namespace std; using namespace testing; class MockSELFormat : public SELFormat { public: MockSELFormat(uint8_t fru_id) : SELFormat(fru_id) {} MOCK_METHOD1(get_fru_name, string(uint8_t)); MOCK_METHOD0(get_curren...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
0b761d4a555d8774001003fd2f5251c84e504f95
5f94bc08a480660a860c6437614332f702b18dda
/BitMatrix.h
094435fb6e014407c26a55ab809652e654873db1
[]
no_license
matvore/andradion-2
8c566ee1d1b9a2f84aa4a9ec2a958cb6f10a8808
4b14c75a25173f0b08cdea8212bcb32742cea52c
refs/heads/master
2021-01-22T09:27:54.116641
2011-10-10T07:57:33
2011-10-10T07:57:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
886
h
/* Copyright 2011 Matt DeVore 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 writing, software dis...
[ "matvore@gmail.com" ]
matvore@gmail.com
76f9eb4afee988d524299a15c21336e383974316
fead4a1cec5bbf6d7503ba6c59cb137ee59d57ad
/kld_loss_layer.cpp
81cbe75fc73365c4337acc624b1169fff14a4834
[]
no_license
TianzhongSong/caffe_kld_loss
dd00bfad3e9aafed5c94bfea6eaa12a35dd24510
50a360cfcc6b4c97e9a383c428a96447012f37d3
refs/heads/master
2020-06-19T16:22:04.792360
2019-07-14T01:36:55
2019-07-14T01:36:55
196,781,701
4
1
null
null
null
null
UTF-8
C++
false
false
3,587
cpp
#include <algorithm> #include <cfloat> #include <vector> #include "caffe/layers/kld_loss_layer.hpp" #include "caffe/util/math_functions.hpp" namespace caffe { template <typename Dtype> void KLDLossLayer<Dtype>::LayerSetUp( const vector<Blob<Dtype>*>& bottom, const vector<Blob<Dtype>*>& top) { LossLayer<Dtype>:...
[ "ssstz@outlook.com" ]
ssstz@outlook.com
95377be0fbbf351b9c55ae7f9223233195914088
7ee32ddb0cdfdf1993aa4967e1045790690d7089
/Codeforces/Round238ProblemC.cpp
47b7337b03e0305dc2c136c355ed7f899a2b14bb
[]
no_license
ajimenezh/Programing-Contests
b9b91c31814875fd5544d63d7365b3fc20abd354
ad47d1f38b780de46997f16fbaa3338c9aca0e1a
refs/heads/master
2020-12-24T14:56:14.154367
2017-10-16T21:05:01
2017-10-16T21:05:01
11,746,917
1
2
null
null
null
null
UTF-8
C++
false
false
2,323
cpp
#include <iostream> #include <sstream> #include <vector> #include <string> #include <algorithm> #include <utility> #include <set> #include <map> #include <deque> #include <queue> #include <cmath> #include <cstdlib> #include <ctime> #include <cstdio> #include <stdio.h> using namespace std; #define fo(i,n) for(int i=0;...
[ "alejandrojh90@gmail.com" ]
alejandrojh90@gmail.com
a65de41535e7fdfb1d4a8f5e61e142b876cbdaf8
328abdff9a801faf23b46129fcf114b4c378042f
/INO/myprobes.ino
108456d01f3402fafb9de4302c4dcce638b84f34
[]
no_license
SlyWink/MyProbes
cdd10ec1193c26f105482d5b2436ada8e85c073c
cf1ab5d6eb81ee1a1e701e893765b065a4510232
refs/heads/master
2022-12-11T15:11:47.329351
2020-08-29T20:55:41
2020-08-29T20:55:41
289,576,561
0
0
null
null
null
null
UTF-8
C++
false
false
1,729
ino
//#define INIT //#define LINKY //#define GAZPAR #define METEO #define WANTDEBUG #include <EEPROM.h> #include <ArduinoOTA.h> #include <painlessMesh.h> /* const uint32_t CHIP1_ID = 0x00000000 ; const uint32_t CHIP2_ID = 0x00e67e71 ; const uint32_t CHIP3_ID = 0x00000000 ; const uint32_t CHIP4_ID = 0x00e3c664 ; const uin...
[ "24624623+SlyWink@users.noreply.github.com" ]
24624623+SlyWink@users.noreply.github.com
f7d79787e47a0ad4b08d7c3b5bf1e63977492510
4abb17761b75ebe4c227d62ac9ec0c8a5894f6e9
/Plugins/NativeCamera/Source/NativeVideo.h
ab8e27ca883771864fac5b273ff00c948ae8b754
[ "LicenseRef-scancode-nvidia-2002", "BSD-3-Clause", "LicenseRef-scancode-openssl", "LicenseRef-scancode-unicode", "NTP", "CC0-1.0", "curl", "Zlib", "NAIST-2003", "LGPL-2.1-or-later", "Artistic-2.0", "LicenseRef-scancode-unknown-license-reference", "MIT", "LicenseRef-scancode-public-domain-d...
permissive
BabylonJS/BabylonNative
1aea5e6e2129d5c6e7e22b6c584d6a760d7bfa65
b612a907325979a26467360039e267c03fb63893
refs/heads/master
2023-08-29T07:06:17.620500
2023-08-14T20:34:04
2023-08-14T20:34:04
189,081,889
723
150
MIT
2023-09-13T20:13:24
2019-05-28T18:27:37
C++
UTF-8
C++
false
false
1,853
h
#pragma once #include <napi/napi.h> #include "CameraDevice.h" #include "MediaStream.h" #include <Babylon/JsRuntime.h> #include <Babylon/Graphics/DeviceContext.h> #include <vector> #include <algorithm> #include <unordered_map> namespace Babylon::Plugins { // NativeVideo provides a polyfill for the HTMLVideoElement ...
[ "noreply@github.com" ]
BabylonJS.noreply@github.com
67349053bf09778b30aa840db3bbd2888b4195c2
31406f420f019a191a74b9288a6e37dcd89e8e82
/external/llvh/lib/Support/Unix/Path.inc
dd55605226c5052328bfed93c69526db50d0854f
[ "MIT", "NCSA", "LLVM-exception", "Apache-2.0" ]
permissive
facebook/hermes
b1bf3cb60b5946450c7c9a421ac8dad7a675e0f5
440578b31ecce46fcc5ba2ad745ffd5712d63a35
refs/heads/main
2023-09-06T04:16:02.263184
2023-09-05T20:12:54
2023-09-05T20:12:54
154,201,259
8,449
593
MIT
2023-09-14T21:25:56
2018-10-22T19:13:00
C++
UTF-8
C++
false
false
30,731
inc
//===- llvm/Support/Unix/Path.inc - Unix Path Implementation ----*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
c41cd21df8985b3b0de875c7a239f45ce75157e9
063b8adb6e966f0c22cb9ccb2f531aee3f3f9d30
/Exercicios de Linguagem C/14. OperadorCast.cpp
4cc311823107fbade5682575781b52a9a1bc560c
[ "MIT" ]
permissive
Patricia-Bianca-Lana-Largura/Linguagem-C
97edd20d12ae3c9860e88a2aa19b23838c421558
f78fec1c3560a2324e1f1cd3b1b92c40632a3495
refs/heads/master
2023-05-28T00:07:36.099010
2021-06-12T17:57:43
2021-06-12T17:57:43
252,269,686
0
0
null
null
null
null
ISO-8859-1
C++
false
false
287
cpp
#include <stdio.h> #include <stdlib.h> #include<locale.h> int main (int argc, char *argv[]){ setlocale(LC_ALL,"Portuguese"); //O operador cast converte os resultados de um tipo de dados para outro. float div; div =(float) 9/2; printf("Divisão: %.2f",div); return 0; }
[ "patricia.largura@outlook.com" ]
patricia.largura@outlook.com
bb1efea43289635b1533e6cb87d967f0ae988578
1f53cd338954fab08dfe242b010b2cdaec61b047
/4 listat/ushtrimi 2.cpp
f5b79c7cee5cf975028378f7338cfc0fc41bd893
[]
no_license
XhesikaLeka/ushtrime_ne_C_2
248b07d9c48f1447b41df342394240ed0b4a7182
7d8404a40c4a63471bcaf9b6d29886d6474f6b69
refs/heads/master
2020-09-17T07:22:39.370824
2019-11-25T20:27:00
2019-11-25T20:27:00
224,034,362
0
0
null
null
null
null
UTF-8
C++
false
false
1,315
cpp
#include <stdio.h> #include <conio.h> #include <stdlib.h> typedef struct nyje { int vlere; struct nyje *pas; } nyje; nyje *krijo_nyje(int vlere) { nyje *n; n=(nyje*)malloc(sizeof(nyje)); n->vlere=vlere; n->pas=NULL; return n; } nyje *krijo_liste(int n) { if(n==0) return NULL; nyje *ko...
[ "noreply@github.com" ]
XhesikaLeka.noreply@github.com
463776a140d2be772faaf2bdfae6377e6c6ae31f
9a94e85ef2820d626cd76123b9aa49190c991003
/HSPF_MRO_ANDR/build/iOS/Preview/include/Fuse.Elements.SimpleAlignment.h
0ecb9f203749785fb41395605e90f16edb9a76cb
[]
no_license
jaypk-104/FUSE
448db1717a29052f7b551390322a6167dfea34cd
0464afa07998eea8de081526a9337bd9af42dcf3
refs/heads/master
2023-03-13T14:32:43.855977
2021-03-18T01:57:10
2021-03-18T01:57:10
348,617,284
0
0
null
null
null
null
UTF-8
C++
false
false
348
h
// This file was generated based on /usr/local/share/uno/Packages/Fuse.Elements/1.12.0/Enums.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Int.h> namespace g{ namespace Fuse{ namespace Elements{ // internal enum SimpleAlignment uEnumType* SimpleAlignment_typeof(); ...
[ "sommelier0052@gmail.com" ]
sommelier0052@gmail.com
7c37a8e80e9ea70461033068e377f32eccea52a3
e4f93064a729d05ec4ae014038f59347ad191273
/DiscreteRods/thread_discrete_ref.cpp
42df5433de6fc37346b18bd3302e43de26e1e256
[]
no_license
joschu/surgical
221c349f8ba4e2c9c636931232821ce320004bac
5b26795b0cc2cb8ba02e3a4a27d2c0568134d83e
refs/heads/master
2021-01-17T22:52:12.573487
2011-07-19T00:56:31
2011-07-19T00:56:31
1,912,239
2
1
null
null
null
null
UTF-8
C++
false
false
57,324
cpp
#include "thread_discrete.h" Thread::Thread() { _thread_pieces.resize(0); } Thread::Thread(vector<Vector3d>& vertices, vector<double>& twist_angles, Matrix3d& start_rot) { _thread_pieces.resize(vertices.size()); _thread_pieces_backup.resize(vertices.size()); _angle_twist_backup.resize(vertices.size()); for ...
[ "sameep.tandon@gmail.com" ]
sameep.tandon@gmail.com
59eb582999cf3755ecc32984a185fff5bf16b97f
ddfe55314123068bc46c9cf8e12dec2c9ab61c53
/Space/Arabian.h
35218699a535ade156897ff0ee15016c70cfe321
[]
no_license
sysfce2/Metal-Slug-2.8489545
19786ee1611a7be2b2b967baef1f090f18a0756b
4eb7398da7c9cee9e890e7cbe7cc94403bab5ccc
refs/heads/master
2023-03-15T18:34:07.861334
2020-10-11T09:41:40
2020-10-11T09:41:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
510
h
#pragma once class ArabianState; class Arabian : public Object { public: Sprite* m_Arabian; Animation* m_Body; Sprite* m_Sight; Arabian(Vec2 Pos); ~Arabian(); bool m_isGround; float m_vY; float m_Speed; float m_ThrowCoolDown; int m_Dire; bool m_Death; ArabianState* m_State; void ChangeImage(std::wstr...
[ "38340705+8489545@users.noreply.github.com" ]
38340705+8489545@users.noreply.github.com
5e3c5088ab2e8f6ca421c05aff03c6e15216dde3
dc25b23f8132469fd95cee14189672cebc06aa56
/vendor/mediatek/proprietary/hardware/audio/common/include/SpeechMessengerInterface.h
fe01571ed305c991ecca915c67d8bb40722c26f2
[]
no_license
nofearnohappy/alps_mm
b407d3ab2ea9fa0a36d09333a2af480b42cfe65c
9907611f8c2298fe4a45767df91276ec3118dd27
refs/heads/master
2020-04-23T08:46:58.421689
2019-03-28T21:19:33
2019-03-28T21:19:33
171,048,255
1
5
null
2020-03-08T03:49:37
2019-02-16T20:25:00
Java
UTF-8
C++
false
false
12,902
h
#ifndef ANDROID_SPEECH_MESSAGE_INTERFACE_H #define ANDROID_SPEECH_MESSAGE_INTERFACE_H #include <pthread.h> #include "AudioType.h" #include "SpeechType.h" #include "AudioUtility.h" #include "SpeechBGSPlayer.h" #include "SpeechPcm2way.h" namespace android { #define CCCI_BUF_HEADER_SIZE 16 //EEMCS MTU 3584-128 = 3456...
[ "fetpoh@mail.ru" ]
fetpoh@mail.ru
25c4420440512347527713535c009f1f2b89a182
7b5d700e2a2fed3e2b4ad1132b6bf9cd3877730c
/include/Windows/Controllers/CommandsControllers/FNOFDCommandsTabController.h
88ff6555f4c0c51b02eedb9f14b45ec556bae054
[]
no_license
Megaxela/FRTester
642272511f884cda3a2dcdbe7eccf54b05f2602c
f2cbd4260dc59b9c2b0b1ee1f8207ce663299f8a
refs/heads/master
2021-01-22T19:30:46.127870
2017-05-03T13:55:23
2017-05-03T13:55:23
85,202,766
2
0
null
null
null
null
UTF-8
C++
false
false
1,640
h
// // Created by megaxela on 13.12.16. // #ifndef FRTESTER_FNOFDCOMMANDSTABCONTROLLER_H #define FRTESTER_FNOFDCOMMANDSTABCONTROLLER_H #include <Windows/Controllers/AbstractTabController.h> class CommandsTabController; /** * @brief Класс, контроллирующий вкладку ОФД в виджете из вкладки * ФН в разделе с командами...
[ "xelamegaxela@gmail.com" ]
xelamegaxela@gmail.com
d44fd2f95d8c02363a9be0c68d677835baaae1c0
24004e1c3b8005af26d5890091d3c207427a799e
/Win32/NXOPEN/NXOpen/Issue_IssueList.hxx
2b0fc9a6a78daf9eafd65cade2febcb4ad6024af
[]
no_license
15831944/PHStart
068ca6f86b736a9cc857d7db391b2f20d2f52ba9
f79280bca2ec7e5f344067ead05f98b7d592ae39
refs/heads/master
2022-02-20T04:07:46.994182
2019-09-29T06:15:37
2019-09-29T06:15:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,190
hxx
#ifndef NXOpen_ISSUE_ISSUELIST_HXX_INCLUDED #define NXOpen_ISSUE_ISSUELIST_HXX_INCLUDED //-------------------------------------------------------------------------- // Header for C++ interface to JA API //-------------------------------------------------------------------------- // // Source File: // Issue_IssueL...
[ "1075087594@qq.com" ]
1075087594@qq.com
86b197088bbb05066eef80fe9c8422dadf9036b5
28df52f53ddbcee592dc3c149992bebff8593c6b
/c2c/Builder/BuildFileReader.cpp
a7a6a4c677eb739463157e8b4160cb95ce60abf7
[]
no_license
charsyam/c2compiler
3562840daf3f937f36ecdadd079383c53eb5745d
f20158431b40fb1b15944ae14968a561dbdee98b
refs/heads/master
2021-04-15T16:48:44.879290
2018-03-24T08:47:49
2018-03-24T09:20:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,453
cpp
/* Copyright 2013-2018 Bas van den Berg * * 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 agr...
[ "b.van.den.berg.nl@gmail.com" ]
b.van.den.berg.nl@gmail.com
9650e33f463cd85a857c38f86e76ad10d3f78a08
42b011552d5f283dbe9f70ac9bafb1ddf1af91d5
/OpenGL-Test/camera.hpp
b8b8769ed41452e4fc99d47776b287383cdc2cdd
[]
no_license
JDhilon/OpenGL-Test
2b9fe84274d1590cbe27ade459673792bcdda25a
8dbcca49cd40a4f2d4f28957a5eb4d83b5bb504c
refs/heads/master
2020-09-21T07:26:12.894008
2020-01-10T18:19:40
2020-01-10T18:19:40
224,724,143
1
0
null
null
null
null
UTF-8
C++
false
false
1,028
hpp
#pragma once #include <GL/glew.h> #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <GLFW/glfw3.h> #include "entity.hpp" class Entity; class Camera : public Entity { public: Camera(); Camera(glm::vec3 startPosition, glm::vec3 startUp, GLfloat startYaw, GLfloat startPitch, ...
[ "jashanjotdhilon@gmail.com" ]
jashanjotdhilon@gmail.com
78578d703dec11823c4ce1d7c0b29412e5bfa3c0
5743077502c2ab293905c7533fe9774576773ebe
/src/services/rpc/handlers/Peers.cpp
161d881a015034c69c6d6c51ead9f84f3390f54d
[ "MIT" ]
permissive
hawx1993/truechain-testnet-core
3056b07dc1d39dc9277d1d2960c7c23db39bbf9c
a75edfe83562b3764fb3140144bc41943ebb995a
refs/heads/master
2021-01-24T19:08:55.033847
2018-02-28T06:31:48
2018-02-28T06:31:48
123,239,490
1
0
MIT
2018-02-28T06:21:53
2018-02-28T06:21:53
null
UTF-8
C++
false
false
1,664
cpp
//------------------------------------------------------------------------------ /* This file is part of skywelld: https://github.com/skywell/skywelld Copyright (c) 2012-2014 Skywell Labs Inc. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is here...
[ "archit@protonmail.ch" ]
archit@protonmail.ch
29d994d2f1ff2e0080e331beb1ab313e7a339f92
0d2b1e0e82c5f191551438fc3318e4b9689b50c5
/Source/OpenGLDrawer/Renderer/PanoramaVideoRenderer.cpp
6e156399234274fa80d593b650dffddf41641152
[]
no_license
rickysung/PhysicsSim
47d5666ba296cd2af6521c729423099df4cf6ef3
29d2d6390afd05a6040cfac3b2f478191448d065
refs/heads/master
2021-01-20T13:26:13.425227
2017-04-01T09:17:53
2017-04-01T09:17:53
82,689,357
0
0
null
null
null
null
UTF-8
C++
false
false
9,550
cpp
/* ============================================================================== PanoramaVideoRenderer.cpp Created: 21 Aug 2016 3:07:40pm Author: Ricky ============================================================================== */ #include "PanoramaVideoRenderer.h" const char* Panor...
[ "ricky@gooddaylab.com" ]
ricky@gooddaylab.com
521a298f957b778df9999a8a1caa689fda3df79f
cc65bff1cce1b6ba38e83585bb9fcb9b0dadfa13
/include/tools/Uuid.h
ca204768fb13689f8333af3f9e673306e3659bb8
[]
no_license
wusidn/Engine
fcd7aa486c93dd3ab1583b9d7cd0b7c5f1faa77b
88b82c3d7e47986d9e1f4eb8c8eef36222f8b1ea
refs/heads/master
2021-01-10T01:18:21.817135
2016-11-18T02:14:04
2016-11-18T02:14:04
49,418,290
0
0
null
null
null
null
UTF-8
C++
false
false
708
h
#pragma once #ifndef __UUID_H__ #define __UUID_H__ #include "Object.h" #include <iostream> #include <string> using namespace std; namespace engine { using namespace core; namespace tools { class Uuid : public Object { public: CREATEFUNC(Uuid); static Uuid &...
[ "wusidn@163.com" ]
wusidn@163.com
bf62a708c6541a05568b5e2cc876443cbdacdaad
abba89332f40e792335121fe92d65ece4c8632b6
/lpsolve.h
a9ed1bbacad6b09564eee4fd53b2539de2e56348
[]
no_license
rubenjgarcia/nodesolve
82ba2c5c73b477627eccb48903c3f1310d7c0a47
03482b50129db1e057ef8d20b1a8a761b60ab179
refs/heads/master
2021-01-10T04:29:20.059423
2016-02-19T20:17:18
2016-02-19T20:17:18
52,112,486
1
1
null
null
null
null
UTF-8
C++
false
false
4,099
h
#include <node.h> #include "nan.h" #include "lp_lib.h" using namespace v8; NAN_METHOD(version); NAN_METHOD(makeLP); NAN_METHOD(readLP); Nan::Persistent<Function> constructor; class LPSolve : public node::ObjectWrap { public: static void Init(Handle<Object> exports); private: LPSolve(); ~LPSolve(); static ...
[ "rubenjgarciab@gmail.com" ]
rubenjgarciab@gmail.com
260c2488dcd434aadbc9838150c4b73e0b81488b
3cf90d8b9f9a62549162f82586f677041f4afa88
/src/h/Solver_Sparse.h
f73b266c47b09c282a2210e2cd36e6a0b9ae8433
[]
no_license
Automobile-Crash-Lab/stappp
ee19a92d55f8ee04ef0d5039b0844edb58abcb24
ef0bcd27d43437769639d0a2daae4a2dfa454372
refs/heads/master
2021-09-09T08:22:24.594024
2018-03-14T11:10:20
2018-03-14T11:10:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,197
h
// // Solver_Sparse.h // stap++ // // Created by six on 2017/12/21. // #ifndef Solver_Sparse_h #define Solver_Sparse_h //#include "SparseMatrix.h" class Solver_Sparse{ public: int n; int*ia,*ja; double *a; double *x; bool fabed; //pardiso needed int nnz; int mtype; /* Re...
[ "feiyuxiaothu@gmail.com" ]
feiyuxiaothu@gmail.com
b67f14eac09bbf10b5d7bb58bcfae107a6cd3de8
8b6e2adf0b7fe9a43ca6f8d38d1b13f6e2d16a65
/src/cookie.cc
b7de167e9e2630a14be775ba5c7e8826a5d9dcca
[ "MIT" ]
permissive
aesophor/wmderland
c71532a42e048cace97ef315b074b3b97e936d09
14d72b9c6a3f61dc6fd9c7c0d6dc3e13e9f45ad1
refs/heads/master
2023-06-27T06:42:13.207556
2023-03-19T05:26:02
2023-03-19T05:26:02
158,102,771
235
23
MIT
2021-07-18T11:59:36
2018-11-18T16:20:26
C++
UTF-8
C++
false
false
2,613
cc
// Copyright (c) 2018-2019 Marco Wang <m.aesophor@gmail.com> #include "cookie.h" extern "C" { #include <sys/stat.h> #include <sys/types.h> } #include <sstream> #include <vector> #include "client.h" #include "util.h" #include "log.h" using std::endl; using std::ifstream; using std::ofstream; using std::pair; using s...
[ "m.aesophor@gmail.com" ]
m.aesophor@gmail.com
7853622501a760ff1e2af7479cc7ac45acc88c06
1c3b6408476488ddc24623ed03d04e901cb1fb84
/Data Structures/Sparse Table/Sparse Table.cpp
aac5616b27568106dffbe22830dcf8c72f344506
[]
no_license
Sukarnapaul1893/Code-for-Popular-Topics-of-Contest-Programming
cb5c0c82b40b3fd6fe771de28dc040d9241d751f
0522a7203b5a3b49ba852f47e9cf832830964a82
refs/heads/master
2023-07-11T00:27:13.459969
2023-07-01T08:23:07
2023-07-01T08:23:07
162,993,504
0
1
null
2023-07-01T08:23:08
2018-12-24T13:30:15
C++
UTF-8
C++
false
false
1,005
cpp
#include<bits/stdc++.h> using namespace std; const int MAXN = 105000; const int MAXLOG = 20; int n; int logs[MAXN]; void computeLogs(){ logs[1] = 0; for(int i=2;i<=n;i++){ logs[i] = logs[i/2]+1; } } int a[MAXN]; int table[MAXLOG][MAXN]; void buildSparseTable(){ computeLogs(); for(int...
[ "noreply@github.com" ]
Sukarnapaul1893.noreply@github.com