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
bab79ca9935598c0d5582f4c76d7f8c63fa390e7
0084166695a3bea4f4285eadd57d03607314c149
/TouchGFX/target/generated/TouchGFXGeneratedHAL.cpp
ae76144669a0671e69c7eb5f250a13bce5357755
[]
no_license
Zhangzhicheng001/Magnetic_shielding_system
142556f79ada0e9f1b4addcbeaf69441a0f515b6
7714e14758de2a30c920ab9ad74ec9dc1e094820
refs/heads/main
2023-07-08T11:18:05.720893
2021-08-09T10:25:02
2021-08-09T10:25:02
391,795,760
0
0
null
null
null
null
UTF-8
C++
false
false
4,986
cpp
/** ****************************************************************************** * File Name : TouchGFXGeneratedHAL.cpp ****************************************************************************** * @attention * * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics. * All rights reserved...
[ "601596643@qq.com" ]
601596643@qq.com
160beafcd0375ee1abc289f6df9dc822b8749eb5
4b0a3fffa69840fac4fa77ba40f3aed8ae51442c
/FinalProject/workingfolder/Erin's Updates/bouncingcube/BouncingCube.h
a06731fe152c89b5848227598c4d455e34849b77
[]
no_license
hoffm386/graphics-final-project
732633bf55482051730e0087c025ab1d6e5253e7
584a16eda13572d6a92bad690da6b4a903eef084
refs/heads/master
2021-01-10T20:14:04.415740
2014-04-30T02:50:22
2014-04-30T02:50:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
725
h
// BouncingCube.h : main header file for the BouncingCube application // #pragma once #ifndef __AFXWIN_H__ #error "include 'stdafx.h' before including this file for PCH" #endif #include "resource.h" // main symbols // CBouncingCubeApp: // See BouncingCube.cpp for the implementation of this class // class ...
[ "crawf326@msu.edu" ]
crawf326@msu.edu
6a5800c8150e8c9144d23429c10f35136b06e222
578ceec075394968a5ac0ef3ed5961697d8cd826
/daemon/DekdCommand.h
7a1648ba3f971ea0a278f233a006d43f4fa34003
[]
no_license
olicmoon/dekd
3938a6f76cdb8b0a9ef915b273f94ac8fa9276d9
c5a88ec8330a67ce952351970bf5657813977eae
refs/heads/master
2021-01-19T06:24:54.282288
2015-08-31T21:17:06
2015-09-01T00:40:38
40,740,525
0
0
null
null
null
null
UTF-8
C++
false
false
365
h
/* * DekdCommand.h * * Created on: Aug 17, 2015 * Author: olic */ #ifndef DEKDCOMMAND_H_ #define DEKDCOMMAND_H_ #include <FrameworkCommand.h> class DekdCommand : public FrameworkCommand { public: DekdCommand(const char *cmd); virtual ~DekdCommand() {} int runCommand(SocketClient *c, int argc, ch...
[ "olic.moon@samsung.com" ]
olic.moon@samsung.com
9c3fa67cf4ece508073c0b6822db284debea7229
70fe255d0a301952a023be5e1c1fefd062d1e804
/LintCode/37.cpp
f1154a8fa46ae6f897c35bd74ec803f12ec70812
[ "MIT" ]
permissive
LauZyHou/Algorithm-To-Practice
524d4318032467a975cf548d0c824098d63cca59
66c047fe68409c73a077eae561cf82b081cf8e45
refs/heads/master
2021-06-18T01:48:43.378355
2021-01-27T14:44:14
2021-01-27T14:44:14
147,997,740
8
1
null
null
null
null
UTF-8
C++
false
false
255
cpp
class Solution { public: /** * @param number: A 3-digit number. * @return: Reversed number. */ int reverseInteger(int number) { int a = number%10; int b = number/10%10; int c = number/100; return a*100+b*10+c; } };
[ "java233@foxmail.com" ]
java233@foxmail.com
55d577d1a75a9ab17fa7b5d2dfee420f67de653e
c4d0cc1b8f7a0c4eefb405e105ac9727e1a98aad
/FlashCards/src/StringWordSplitter.cpp
fdab3206d76415785a84cd483dcc64795aae68ce
[]
no_license
KNITcpp/FlashCards
513ed1f7fb2829692538636e0e6b65847bad8da9
7ac1c359d6a6f0aa5639bb64a39696b2f5eb63e2
refs/heads/master
2020-03-07T14:15:49.733326
2018-05-28T09:43:41
2018-05-28T09:43:41
127,522,390
0
0
null
null
null
null
UTF-8
C++
false
false
505
cpp
#include "StringWordSplitter.h" #include <string> #include <vector> StringWordSplitter::StringWordSplitter(std::wstring strToBeSplitted) { std::wstring singleWord; for(int i=0; i<strToBeSplitted.length(); ++i) { if(strToBeSplitted[i] == L' ') { if(singleWord.size()!=0) { words.push_back(singleWord);...
[ "kubagros@gmail.com" ]
kubagros@gmail.com
71b57f5243d516e395976e4bdf4e9b22391da34d
46de5c99419f112b4507fd386f398769626ad328
/thinkbig2.cpp
16cfc1eba8eed89495a53e3254d4d0856bad3cb9
[]
no_license
sanu11/Codes
20a7903d95d600078db8b0bf0e12a3731615c3c1
dd58a5577b51ade54f95c96003fc2c99609c15eb
refs/heads/master
2021-01-21T04:50:36.855876
2019-07-09T05:12:56
2019-07-09T05:12:56
48,174,017
2
0
null
null
null
null
UTF-8
C++
false
false
768
cpp
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n; int arr[n]; int x,y; map<int,int>a; map<int,int>::iterator p; for(int i=0;i<n;i++) { cin>>arr[i]; cin>>x; for(int j=0;j<x;j++) { cin>>y; p=a.find(y); if(p==a.end...
[ "sanikashah1110@gmail.com" ]
sanikashah1110@gmail.com
757766d5b9534a8341b7e39db49c029319f6bd2b
c78f931e0a7298b20f722b6351bb8b2566ec462b
/Centyry from year.cpp
7083f588cb751c5ce7335f3457914027b569a925
[]
no_license
tdutybqs/Practice
e37d125609c9b0d50ebc430e926a155814458675
8cdbac7080be9e6529d379fe98e919d91add215f
refs/heads/main
2023-07-20T14:28:28.652383
2021-08-31T09:08:49
2021-08-31T09:08:49
381,703,801
1
0
null
null
null
null
UTF-8
C++
false
false
442
cpp
/* Introduction The first century spans from the year 1 up to and including the year 100, The second - from the year 101 up to and including the year 200, etc. Task : Given a year, return the century it is in. Input , Output Examples : 1705 --> 18 1900 --> 19 1601 --> 17 2000 --> 20 Hope you enjoy it .. Awaiting for ...
[ "rabota142@inbox.ru" ]
rabota142@inbox.ru
39cc31371670480b292396298ed339ab29cd2e67
3dc0034f54360349734e5b133f169e39cdff3ce5
/BUGLIFE-12867964-src.cpp
412ba3f82f97ff515730e433b6f57995f2dd67c2
[]
no_license
anshul1927/SPOJ-Solutions
6c8022d11b3097b8ef3af2c17983375e01b8eb56
07c1d4dcc5b29c4b3a0c61cc8bc7d7e10307822a
refs/heads/master
2021-03-30T21:20:19.514777
2015-08-19T15:49:04
2015-08-19T15:49:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,558
cpp
#include <iostream> #include<queue> #include<cstring> #include<cstdio> #define comp(c) (c==1)?2:1 #define gc getchar_unlocked using namespace std; bool sus; int idx[2000]; bool done[2000]; int bugs[2000]; int inter[2000][2000]; int n,in; void scanint(int &x) { register int c = gc(); x = 0; for(;(c<48 || c>5...
[ "jayati.009@gmail.com" ]
jayati.009@gmail.com
f46de1bd281fa3736931ddc5c85eb5849f2b7ee0
723b67f6a8b202dc5bb009427f60ffd9f185dba8
/devel/include/ros_arduino_msgs/ServoWriteResponse.h
ef1a29d38d970bae98cdea4932c90d41f162ce62
[]
no_license
Dhawgupta/catkin_ws
15edced50d3d69bf78851315658646cd671eb911
edab645f1a94c83925836b36d38ecf2ad8f42abc
refs/heads/master
2021-01-19T10:56:09.954495
2017-04-11T09:52:20
2017-04-11T09:52:20
87,917,514
0
0
null
null
null
null
UTF-8
C++
false
false
5,028
h
// Generated by gencpp from file ros_arduino_msgs/ServoWriteResponse.msg // DO NOT EDIT! #ifndef ROS_ARDUINO_MSGS_MESSAGE_SERVOWRITERESPONSE_H #define ROS_ARDUINO_MSGS_MESSAGE_SERVOWRITERESPONSE_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros...
[ "dhawal.cs15@iitp.ac.in" ]
dhawal.cs15@iitp.ac.in
6f9e2a1251e0d80527ebef9b1764f62a60cc7984
c26e9d3f92d95f7ce9d0fd5ef2c18dd95ec209a5
/hackerrank/graph/murderer.cpp
1fb9dd65652537e7209bab94ed2d7f66c6acb818
[]
no_license
crystal95/Competetive-Programming-at-different-platforms
c9ad1684f6258539309d07960ed6abfa7d1a16d0
92d283171b0ae0307e9ded473c6eea16f62cb60e
refs/heads/master
2021-01-09T21:44:28.175506
2016-03-27T21:26:26
2016-03-27T21:26:26
54,848,617
0
0
null
null
null
null
UTF-8
C++
false
false
1,083
cpp
using namespace std; #include <stdio.h> #include <stdlib.h> #include <string.h> #include <vector> #include <iostream> #include <queue> #include <algorithm> #include <unordered_set> typedef long long int ll; typedef pair<int,int> ii; void bfs(vector<vector<int> > &adj,int s,vector<int> &dis,int n) { int i ; unorde...
[ "dsodhi95@gmail.com" ]
dsodhi95@gmail.com
4bf7445e62392551dbda48960e850b648fa4164c
0863a85756b0385a36605f6da18550d74df417ea
/insertDeletBinarySearchTree/main.cpp
06dc38bff06ee3a609f252482761aa820f13f3d0
[]
no_license
tianjingyu1/cProject
f759fb538538d689b14e38995c00afd5b70d1283
b5c01517b8f9f654f175161de1c0967cbe43f557
refs/heads/master
2021-02-27T15:39:22.998819
2020-05-29T00:13:41
2020-05-29T00:13:41
245,616,533
0
0
null
null
null
null
GB18030
C++
false
false
1,967
cpp
#include <iostream> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ BinTree Insert( BinTree BST, ElementType X ) { if( !BST ){ /* 若原树为空,生成并返回一个结点的二叉搜索树 */ BST = (BinTree)malloc(sizeof(struct TNode)); BST->Data = X; BST->Left = BST->Right ...
[ "820410740@qq.com" ]
820410740@qq.com
24db047e3e13fafc5ddd4547fc9e46520a696d7f
b301ab714ad4d4625d4a79005a1bda6456a283ec
/UVa/334.cpp
f025069dbdd616fd733ba2408d048555a145a5a6
[]
no_license
askeySnip/OJ_records
220fd83d406709328e8450df0f6da98ae57eb2d9
4b77e3bb5cf19b98572fa6583dff390e03ff1a7c
refs/heads/master
2022-06-26T02:14:34.957580
2022-06-11T13:56:33
2022-06-11T13:56:33
117,955,514
1
0
null
null
null
null
UTF-8
C++
false
false
2,302
cpp
/* ID: leezhen TASK: practice LANG: C++11 */ #include <iostream> #include <fstream> #include <string> #include <vector> #include <algorithm> #include <cstdio> #include <cstring> #include <set> #include <map> #include <stack> #include <queue> #include <cmath> #include <bitset> using namespace std; typedef vector<int> v...
[ "296181278@qq.com" ]
296181278@qq.com
6ac48384b37ee2583609e4478de1a2f61b0ef09a
a7ec77cc491d24998e00a68a203c54b9e121ef79
/SDK/include/SoT_Interaction_enums.hpp
b48b3df2a125a4b79427c6855e7e76f7316ab0bd
[]
no_license
EO-Zanzo/zSoT-DLL
a213547ca63a884a009991b9a5c49f7c08ecffcb
3b241befbb47062cda3cebc3ac0cf12e740ddfd7
refs/heads/master
2020-12-26T21:21:14.909021
2020-02-01T17:39:43
2020-02-01T17:39:43
237,647,839
4
1
null
2020-02-01T17:05:08
2020-02-01T17:05:08
null
UTF-8
C++
false
false
866
hpp
#pragma once // Sea of Thieves (2.0) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- //Enums //--------------------------------------------------------------------------- // Enum Interaction.EInteractionBlockReason enu...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
aaa8f706eca185ad9f7dd72dda3930415ee4cc22
e4f29494a0ecb0a19b231a17e51127a7ddbfe387
/TcpDebug.ino
4c4d7c9df0d7cf9d84c51667ee552e72d3a97973
[]
no_license
EvertDekker/Nixieclock3V1
de9fb41a14decd21a2a86ba4914bc6c5b1839414
67a97d38f1895dbb285c541efe6988dcb04496fc
refs/heads/master
2020-05-29T15:43:43.041005
2019-05-29T13:26:52
2019-05-29T13:26:52
189,228,943
0
0
null
null
null
null
UTF-8
C++
false
false
436
ino
void init_telnet_debug(){ #ifdef TELNET if (MDNS.begin(hostn)) { Serial.println("* MDNS responder started. Hostname -> "); Serial.println(hostn); } MDNS.addService("telnet", "tcp", 23); // Initialize the telnet server of RemoteDebug Debug.begin(hostn); // Initiaze the telnet server D...
[ "Github@evertdekker.com" ]
Github@evertdekker.com
510031590fb18ee868c9ac88fb8da30c2ec3e09a
b056684eb040d7f14f3d1bd5a5ae26d33bd18481
/src/file_trans/include/file_trans.grpc.pb.h
87036594527e453e37245aeeeaa4e6ddcda5ffe1
[]
no_license
amyxu1/webpack-mdns
5f1fbba65452d7475e5cc7a2548805ddf1c74859
516a44825d200ca495afe18f59411ae2cecec28e
refs/heads/master
2023-06-02T21:17:44.070368
2021-06-15T16:52:22
2021-06-15T16:52:22
294,596,101
1
1
null
2020-11-06T07:05:55
2020-09-11T04:43:30
Makefile
UTF-8
C++
false
true
14,845
h
// Generated by the gRPC C++ plugin. // If you make any local change, they will be lost. // source: file_trans.proto #ifndef GRPC_file_5ftrans_2eproto__INCLUDED #define GRPC_file_5ftrans_2eproto__INCLUDED #include "file_trans.pb.h" #include <functional> #include <grpc/impl/codegen/port_platform.h> #include <grpcpp/im...
[ "amyxu@cs.washington.edu" ]
amyxu@cs.washington.edu
ca132ef2e0abab744552b5d3569fea6189f708df
9407b552787d3e872d8cdcfae5f86cd056042dfa
/dfs2.cpp
802f9dd49b7db9f78140d4c167793fdfe7ce8a5a
[]
no_license
themechanicalcoder/Data-Structure-And-Algorithms
7077c30cecdd42c8291c07b39089252d6cd672e3
3dc49f9926de10b2645e0b1c022ddbce932e208c
refs/heads/master
2021-06-19T21:12:35.973712
2020-12-18T10:58:03
2020-12-18T10:58:03
134,423,943
0
1
null
2020-03-22T11:18:56
2018-05-22T14:02:38
C++
UTF-8
C++
false
false
574
cpp
#include<bits/stdc++.h> using namespace std; vector<list<int> >g; vector<int>v; vector<int>d; void dfs(int u){ if(!v[u]){ v[u]=1; cout<<u<<" "; for(auto it=g[u].begin();it!=g[u].end();it++){ if(!v[*it]){ d[*it]=d[u]+1; dfs(*it); } } }} int main(){ int n,m,a,b; cin>>n>>m; d.assig...
[ "gouravroy261999@gmail.com" ]
gouravroy261999@gmail.com
a35449fec2af60cbb23f7da0b8bae35a4ce64aef
1dc05c3cb3a57aea5f64052f329eaf458f73c832
/topic/LeetCode/0807maxIncreaseKeepingSkyline.cpp
603cf6950b266ec0a72ef42137f69d3f137e23ee
[]
no_license
ITShadow/practiceCode
0b1fcbb6b150a1ee91283e8ac7a8d928b4751eda
4b407ad98e3abc0be5eadc97ff32165f9f367104
refs/heads/master
2023-04-08T05:53:21.734166
2021-04-26T03:45:46
2021-04-26T03:45:46
295,429,631
0
0
null
null
null
null
UTF-8
C++
false
false
2,203
cpp
/* 在二维数组grid中,grid[i][j]代表位于某处的建筑物的高度。 我们被允许增加任何数量(不同建筑物的数量可能不同)的建筑物的高度。 高度 0 也被认为是建筑物。 最后,从新数组的所有四个方向(即顶部,底部,左侧和右侧)观看的“天际线”必须与原始数组的天际线相同。 城市的天际线是从远处观看时,由所有建筑物形成的矩形的外部轮廓。 请看下面的例子。 建筑物高度可以增加的最大总和是多少? 例子: 输入: grid = [[3,0,8,4],[2,4,5,7],[9,2,6,3],[0,3,1,0]] 输出: 35 解释: The grid is: [ [3, 0, 8, 4], [2, 4, 5, 7], [...
[ "13710255965@163.com" ]
13710255965@163.com
22b4b85995b27b9bf5a3b2c844bcb56c4ab65e55
090243cf699213f32f870baf2902eb4211f825d6
/cf/621/D.cpp
27cba968aae8be25270c8a561e72debc59131184
[]
no_license
zhu-he/ACM-Source
0d4d0ac0668b569846b12297e7ed4abbb1c16571
02e3322e50336063d0d2dad37b2761ecb3d4e380
refs/heads/master
2021-06-07T18:27:19.702607
2016-07-10T09:20:48
2016-07-10T09:20:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
625
cpp
#include <cstdio> #include <cmath> const char s[12][10] = {"x^y^z", "x^z^y", "(x^y)^z", "(x^z)^y", "y^x^z", "y^z^x", "(y^x)^z", "(y^z)^x", "z^x^y", "z^y^x", "(z^x)^y", "(z^y)^x"}; double d[12]; int main() { double x, y, z; scanf("%lf %lf %lf", &x, &y, &z); d[0] = pow(y, z) * log(x); d[1] = pow(z, y) * log(x); d[...
[ "841815229@qq.com" ]
841815229@qq.com
4b1a2ff69ea1c73dca9f8d22448ade38d373b8e1
84df2566bbce86ad087ec0465eaed091737b8e69
/66. Trojki liczb/66.3/main.cpp
925fdf6fbfb5a04c38f48df0aa157c12d0745e0b
[]
no_license
matura-inf/cpp
5d6ea1bd12395042551f9e55fc3a88375a0aa911
f1a9cb6930b536acb5fb1632773abd411daa0c3d
refs/heads/main
2023-03-01T04:03:05.107390
2021-02-10T21:40:32
2021-02-10T21:40:32
309,538,910
3
0
null
null
null
null
UTF-8
C++
false
false
1,325
cpp
#include <iostream> #include <fstream> #include <cmath> using namespace std; int main() { ifstream in("../trojki.txt"); ofstream out("../wyniki_trojki.txt", ofstream::app); long long pierwsza, druga, trzecia, nr_linii = 0; long long pierwsza_p = 1, druga_p = 2, trzecia_p = 3; long long pierwsza_n = 1, druga_...
[ "piotrmiernik255@gmail.com" ]
piotrmiernik255@gmail.com
fb140c6343d8cb845bec30e15d68b2741357c692
5668d876245e982c842409466b39e6660e5fc740
/servo_brazo_potenciometros_guardaposicion.ino
3ef4e592616b58aabc9c2a86ef50a4ec55730403
[]
no_license
RiquiMora/Brazo-Robotico-4DOF
5dea34ff7115e9e5e126d5e292b84d92cfcb2d4b
a472bd7ea25e75f91f6079aa184c3a1e47ec18b2
refs/heads/master
2020-03-19T02:04:27.984336
2018-05-31T15:05:30
2018-05-31T15:05:30
135,596,748
0
0
null
null
null
null
UTF-8
C++
false
false
7,326
ino
#include <Servo.h> Servo hombro, brazo, base, garra; int potpi = 0; int pot = 1; int potp = 2; int po = 3; int val; // variable to read the value from the analog pin int val1; int val2; int val3; const int max_root = 180; char valores; String codigo = ""; boolean mode = true; void setup() { Serial.begin(...
[ "noreply@github.com" ]
RiquiMora.noreply@github.com
a8d17ef93bf42f1113f7e8f7b8af41d62d7166d6
2b1a79a1fd6ebe6ebeb3b58d6b8144bf8ccd8c0d
/Games/Rong/Export/cpp/windows/obj/src/StringTools.cpp
7cd4329bc5960408e432ca980ec5fefd8315e61a
[]
no_license
spoozbe/Portfolio
18ba48bad5981e21901d2ef2b5595584b2451c19
4818a58eb50cbec949854456af6bbd49d6f37716
refs/heads/master
2021-01-02T08:45:38.660402
2014-11-02T04:49:25
2014-11-02T04:49:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,029
cpp
#include <hxcpp.h> #ifndef INCLUDED_StringTools #include <StringTools.h> #endif Void StringTools_obj::__construct() { return null(); } StringTools_obj::~StringTools_obj() { } Dynamic StringTools_obj::__CreateEmpty() { return new StringTools_obj; } hx::ObjectPtr< StringTools_obj > StringTools_obj::__new() { hx::O...
[ "venablesk@gmail.com" ]
venablesk@gmail.com
2b17e47589ce2b7bb6579f599aad8e4a664896b5
b8487f927d9fb3fa5529ad3686535714c687dd50
/include/hermes/VM/JIT/DenseUInt64.h
7cb45f61cba99d132ac4e42fc17f6b4a3b55cbc0
[ "MIT" ]
permissive
hoangtuanhedspi/hermes
4a1399f05924f0592c36a9d4b3fd1f804f383c14
02dbf3c796da4d09ec096ae1d5808dcb1b6062bf
refs/heads/master
2020-07-12T21:21:53.781167
2019-08-27T22:58:17
2019-08-27T22:59:55
204,908,743
1
0
MIT
2019-08-28T17:44:49
2019-08-28T10:44:49
null
UTF-8
C++
false
false
2,568
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_VM_JIT_DENSEUINT64_H #define HERMES_VM_JIT_DENSEUINT64_H #include "hermes/VM/HermesValue.h" #include "llvm/ADT/Dens...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
ec71eee9144a294508e930330ca1e438fb3fc919
32b88f828b33279cfe33420c2ed969131a7df987
/Code/Core/Mem/MemTracker.cpp
777a97039b84548fb8dbfdacb216b93ff26a076f
[ "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-unknown-license-reference" ]
permissive
punitchandra/fastbuild
53b51f001350104629e71434bb5e521a1bb63cae
8a445d77343bc4881b33a5ebcf31a2ec8777ae2d
refs/heads/master
2021-01-15T13:23:26.995800
2017-08-21T15:05:32
2017-08-21T15:05:32
38,138,811
0
0
null
2015-06-26T23:30:24
2015-06-26T23:30:23
null
UTF-8
C++
false
false
7,281
cpp
// MemTracker.cpp //------------------------------------------------------------------------------ // Includes //------------------------------------------------------------------------------ #include "Core/PrecompiledHeader.h" #include "MemTracker.h" //---------------------------------------------------------------...
[ "franta.fulin@gmail.com" ]
franta.fulin@gmail.com
583d34be535e307cea59286df8c350b922d68244
4dabe3dca7a679a5ba7c79cd4e0384657657dec2
/views/console/proposedCombinationView.cpp
71f0f78cfcc080d0bf61444707db3121b212baf5
[]
no_license
carlosv5/MasterMind
47285e4a3b191294bc07650873fb13e46459e42d
b45c61a264c936191e8db23f27234b91943e7638
refs/heads/master
2020-04-20T12:26:51.642639
2019-05-11T19:05:23
2019-05-11T19:05:23
150,888,071
0
0
null
null
null
null
UTF-8
C++
false
false
2,741
cpp
#include <assert.h> #include <iostream> #include "proposedCombinationView.hpp" #include "../../controllers/colocateController.hpp" #include "../../models/proposedCombination.hpp" using namespace std; ProposedCombinationView::ProposedCombinationView(){}; ProposedCombination ProposedCombinationView::readProposedCombin...
[ "c.vegag5@gmail.com" ]
c.vegag5@gmail.com
28ccee844626dc8f532b974e14b830d2f77d8276
fce00ed7da745340691c8c6cf47905ba4fe5a08e
/UchClient/FrmMain.cpp
632d7a2b262d04091ced8c1a66af203405b47a34
[ "Unlicense" ]
permissive
EAirPeter/Uch
bc9bae801721a9241afbfe8add293cf5dcf7a322
193ee52fb98d2d224cd22483b2523caf02805cfe
refs/heads/master
2021-07-24T15:06:17.555444
2017-11-05T14:25:50
2017-11-05T14:25:50
109,581,211
0
0
null
null
null
null
UTF-8
C++
false
false
6,153
cpp
#include "Common.hpp" #include "FrmFileRecv.hpp" #include "FrmFileSend.hpp" #include "FrmMain.hpp" #include "Ucl.hpp" #include <nana/gui/filebox.hpp> using namespace nana; FrmMain::FrmMain() : form(nullptr, {768, 480}, appear::decorate< appear::taskbar, appear::minimize, appear::maximize, appear::sizabl...
[ "VioletCrestfall@hotmail.com" ]
VioletCrestfall@hotmail.com
0097d92533baaeb7b0f9a69817088336a809c56e
e9c9efaa1f19a28a5154c19312b2871cc4449f92
/src/fsw/FCCode/ADCSBoxController.hpp
d57a42f104cc371266e2b4a71bca2c39e6067346
[ "MIT" ]
permissive
Vsj986/FlightSoftware
52bc663d00786e6866a4cbaf2c04282cacf4ad97
c8ae3504a1685d05556a0c9253b147f9d24c03b6
refs/heads/master
2022-04-24T23:48:34.531495
2020-04-28T08:07:32
2020-04-28T08:07:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,690
hpp
#ifndef ADCS_BOX_CONTROLLER_HPP_ #define ADCS_BOX_CONTROLLER_HPP_ #include "Drivers/ADCS.hpp" #include "TimedControlTask.hpp" /** * @brief Takes input command statefields and commands the ADCS Box. * * Note this CT doesn't do any computing, just actuation * This CT is inteded to only do hardware calls ...
[ "noreply@github.com" ]
Vsj986.noreply@github.com
b54f8af3b8d91ec3312f1936cc121941612c52f9
33c05858242f026297d97a902656ee8f066683a8
/satellite_sniffer_BoTFSM/src/Canvas.cpp
ad8ababfa55c65250d872cc2f5187e0f6e6b207d
[]
no_license
CodecoolBP20171/cpp-satellite-sniffer-botfsm
d8bcb902da2c4f3e2d7b827da0558343022687c3
b29818ae7dc1d2f7f3967c278a3d01c447786df8
refs/heads/master
2021-06-01T16:43:46.978984
2018-09-30T13:10:56
2018-09-30T13:10:56
113,032,533
4
2
null
2018-09-30T13:10:57
2017-12-04T11:09:09
C
UTF-8
C++
false
false
883
cpp
#include "stdafx.h" #include "Canvas.h" #include "Resources.h" #include <SDL.h> Canvas::Canvas(const int width, const int height) { this->height = height; this->width = width; texture = SDL_CreateTexture(Resources::getInstance()->getRenderer(), SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_TARGET, width, hei...
[ "afga93+cc@gmail.com" ]
afga93+cc@gmail.com
85ea4dd8d55151bc08e835ee9c71d1a426ef6ce3
13c402c37ff65709039cb190f9079667429fd31d
/dll/StatisticsClass.cpp
2b0c76776a165c45531775a642a1473fe7a1e2c5
[]
no_license
DarkGL/TrackerUI
7146689298e1b44386b4575d06c96c4c5b461463
3de5fb05c662ba1bb06673d815062de2448ff22b
refs/heads/master
2023-03-17T04:39:45.409222
2023-03-15T06:48:49
2023-03-15T06:48:49
41,966,780
1
1
null
null
null
null
UTF-8
C++
false
false
2,308
cpp
#include "StatisticsClass.h" const char * StatisticsClass::urlNewClient = "http://csiks.pl/pliki/stats/newClient.php"; const char * StatisticsClass::urlPingClient = "http://csiks.pl/pliki/stats/pingClient.php"; char StatisticsClass::token[] = ""; bool StatisticsClass::clientConnected = false; void StatisticsClass::n...
[ "gitzzz14@gmail.com" ]
gitzzz14@gmail.com
31c05ddd07b9d79686913c8c08a00eaf1395abbb
6fdd703d48a01bb73bf658c8d3aac0d98f965967
/src_cpp/elfgames/go/train/data_loader.h
472fb3d536934f874a4ab6fd4147fce6d3ed1d0d
[ "BSD-3-Clause" ]
permissive
roughsoft/ELF
27f762aad66f4946411f2fdae71a45fabd028730
751eb1cf85aac15e3c3c792a47afa1ac64ea810c
refs/heads/master
2020-03-25T19:54:55.579846
2018-08-08T21:34:11
2018-08-08T21:34:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,596
h
/** * Copyright (c) 2018-present, Facebook, Inc. * All rights reserved. * * 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 "../common/record.h" #include "elf/distributed/shared_reader.h" #include "elf/distr...
[ "noreplyspamblackhole@gmail.com" ]
noreplyspamblackhole@gmail.com
18296b24c1a4c774d930261e017e37a0cf8d04fa
d0601b28a3060105e82c2a839d435c4329fe82a9
/OpenGL_Material/build-OpenGL_Material-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/debug/moc_mainwindow.cpp
51b68186ab06892d4bfefdfe122cf57267d5fcdf
[]
no_license
guoerba/opengl
9458b1b3827e24884bcd0a1b91d122ab6a252f8e
103da63ada1703a3f450cfde19f41b04e922187e
refs/heads/master
2020-07-10T15:40:49.828059
2019-08-25T13:52:58
2019-08-25T13:52:58
204,300,456
0
0
null
null
null
null
UTF-8
C++
false
false
2,706
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'mainwindow.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.8.0) ** ** WARNING! All changes made in this file will be lost! **********************************************************...
[ "guoerbamicro@outlook.com" ]
guoerbamicro@outlook.com
759a015ca9170f3456ab0ac5f3a1626efca68ad7
483428f23277dc3fd2fad6588de334fc9b8355d2
/hpp/iOSDevice32/Release/uTPLb_MemoryStreamPool.hpp
bee8378fa9718a035cca20b9ad1bd10f11e6c5d4
[]
no_license
gzwplato/LockBox3-1
7084932d329beaaa8169b94729c4b05c420ebe44
89e300b47f8c1393aefbec01ffb89ddf96306c55
refs/heads/master
2021-05-10T18:41:18.748523
2015-07-04T09:48:06
2015-07-04T09:48:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,375
hpp
// CodeGear C++Builder // Copyright (c) 1995, 2015 by Embarcadero Technologies, Inc. // All rights reserved // (DO NOT EDIT: machine generated header) 'uTPLb_MemoryStreamPool.pas' rev: 29.00 (iOS) #ifndef Utplb_memorystreampoolHPP #define Utplb_memorystreampoolHPP #pragma delphiheader begin #pragma option...
[ "roman.kassebaum@kdv-dt.de" ]
roman.kassebaum@kdv-dt.de
579829351084c1173b9154fd34d518856cd45da2
829869a01da6da0f17dcc173bb5ddd640fd8ba2c
/src/server/test/pegasus_write_service_impl_test.cpp
f3ee0a89b6f99cdf004fb08a169bca7d8300c1f6
[ "Apache-2.0" ]
permissive
SunnyShow/incubator-pegasus
fff92fa95354c7e44de6c82eb6bb4e6181b8f86d
c02e055e803dab479a31d3cac31739b75542f804
refs/heads/master
2022-12-21T00:30:26.747514
2020-09-28T16:03:42
2020-09-28T16:03:42
299,217,109
0
0
Apache-2.0
2020-09-28T06:57:47
2020-09-28T06:57:47
null
UTF-8
C++
false
false
8,058
cpp
// Copyright (c) 2017, Xiaomi, Inc. All rights reserved. // This source code is licensed under the Apache License Version 2.0, which // can be found in the LICENSE file in the root directory of this source tree. #include "pegasus_server_test_base.h" #include "server/pegasus_server_write.h" #include "server/pegasus_wr...
[ "noreply@github.com" ]
SunnyShow.noreply@github.com
6dab7827ababfb8c432c08e1e9a9dc6eff7e91be
866948421e7f22480da2bdf699c54220734e3a4b
/C/permutation.cpp
1de35f518bc8136f4d30d264ac7ce768cd0b7ed8
[]
no_license
QinShelly/workspace
f0f5aba1280a1a112cf7df316b7857454338fb2d
4734ec9e561c64bcbdb11e321163048c1c140f58
refs/heads/master
2020-07-06T21:49:25.249134
2020-02-08T07:34:34
2020-02-08T07:34:34
67,876,658
1
1
null
null
null
null
UTF-8
C++
false
false
530
cpp
#include <iostream> int a[10],book[10],n; void dfs(int step){ int i; if (step == n + 1) { for (i=1; i<=n; i++) { printf(" %d",a[i]); } printf("\n"); } for (i = 1; i <= n; i++) { if (book[i] == 0 ) { a[step] = i; book[i] = 1; ...
[ "Shelly.Qin@outlook.com" ]
Shelly.Qin@outlook.com
f2fd573fb8ac9dde4919620147f9c6d1cc0536a0
d47ad8721876e05cc92a48ea772981dd2541d27c
/FPMLib/lib/bfc/autores.h
78620a35bff0d40b0b1f790be9dc42de2b418042
[]
no_license
cjld/ANNO-video
5ac5f604d43e00a3ee8b2a40050413ffd8334c3e
e8ad4f1d617f8b2393db5241a40f98c156127e52
refs/heads/master
2021-01-25T06:45:24.164963
2017-06-12T15:54:19
2017-06-12T15:54:19
93,606,386
2
0
null
null
null
null
UTF-8
C++
false
false
5,150
h
#ifndef _FF_BFC_AUTORES_H #define _FF_BFC_AUTORES_H #include <utility> #include <iterator> #include"ffdef.h" _FF_BEG //To help implement reference-counter in @AutoRes. template<typename ValT> class ReferenceCounter { typedef std::pair<int,ValT> _CounterT; private: _CounterT *_pdata; void _inc() const { ++_p...
[ "randonlang@gmail.com" ]
randonlang@gmail.com
fc66a1678930bf9093bd076f90dd380635b60366
ceeddddcf3e99e909c4af5ff2b9fad4a8ecaeb2a
/branches/releases/1.3.NET/source/Irrlicht/CGUIColorSelectDialog.h
fed63371d4d75b6f6d20e164aab8c2e8f2527655
[ "Zlib", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-other-permissive" ]
permissive
jivibounty/irrlicht
d9d6993bd0aee00dce2397a887b7f547ade74fbb
c5c80cde40b6d14fe5661440638d36a16b41d7ab
refs/heads/master
2021-01-18T02:56:08.844268
2015-07-21T08:02:25
2015-07-21T08:02:25
39,405,895
0
0
null
2015-07-20T20:07:06
2015-07-20T20:07:06
null
UTF-8
C++
false
false
1,684
h
// Copyright (C) 2002-2007 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright notice in irrlicht.h #ifndef __C_GUI_COLOR_SELECT_DIALOG_H_INCLUDED__ #define __C_GUI_COLOR_SELECT_DIALOG_H_INCLUDED__ #include "IGUIColorSelectDialog.h" #includ...
[ "hybrid@dfc29bdd-3216-0410-991c-e03cc46cb475" ]
hybrid@dfc29bdd-3216-0410-991c-e03cc46cb475
06cfb9ca96a61137a348fc2045f8693d23f03832
d160bb839227b14bb25e6b1b70c8dffb8d270274
/MCMS/Main/Processes/Resource/ResourceLib/ConfResources.cpp
6a1729f5225cd051689ecd1184f8de8e5b900429
[]
no_license
somesh-ballia/mcms
62a58baffee123a2af427b21fa7979beb1e39dd3
41aaa87d5f3b38bc186749861140fef464ddadd4
refs/heads/master
2020-12-02T22:04:46.442309
2017-07-03T06:02:21
2017-07-03T06:02:21
96,075,113
1
0
null
null
null
null
UTF-8
C++
false
false
38,433
cpp
#include "ConfResources.h" #include "StatusesGeneral.h" #include "ProcessBase.h" #include "TraceStream.h" #include "ResourceManager.h" #include "WrappersResource.h" #include "HelperFuncs.h" #include "VideoApiDefinitionsStrings.h" #include <algorithm> #include <functional> //////////////////////////////////////////////...
[ "somesh.ballia@gmail.com" ]
somesh.ballia@gmail.com
95f7befcf665c6bd7d6cf9cdcc561666e56f2e88
cf88c1e3d9587f2bdc8cf40397bca3f0b5f11e7c
/Arrays/Array_Rearrangement/MaxLengthBitonicSubsequence.cpp
fb2e5de210006b85afeb4f3b2d78fe1f36e1b413
[]
no_license
shaival141/Practice_Old
f6193b4ae2365548d70c047180de429f9a9fdc1d
f02d55faf1c0a861093bf0e094747c64bdd81b34
refs/heads/master
2022-01-05T12:54:54.863035
2018-05-18T18:05:06
2018-05-18T18:05:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,321
cpp
/* Dynamic Programming implementation of longest bitonic subsequence problem */ #include<stdio.h> #include<stdlib.h> /* lbs() returns the length of the Longest Bitonic Subsequence in arr[] of size n. The function mainly creates two temporary arrays lis[] and lds[] and returns the maximum lis[i] + lds[i] - 1. ...
[ "ambiciomonk@gmail.com" ]
ambiciomonk@gmail.com
d59c5f726c85c0426fe1f464a529f7fc97a16b65
a6f1cd042e91b17f72bcc7872a47cc022f2cf21e
/DFS/140. Word Break II.cpp
f0c3e25853d36e6953d7c4095b60ae93953c6b90
[]
no_license
sammiiT/leetcode
bc1b8fa107c15bbdd803e6f5e4f86a179904a988
8e882f4a6fb05ba645bd1ff8355d3b8f14654fb0
refs/heads/master
2023-09-06T04:43:54.582944
2023-09-04T15:19:00
2023-09-04T15:19:00
219,103,778
0
0
null
null
null
null
UTF-8
C++
false
false
2,104
cpp
//===類似題=== 139. Word Break 472. Concatenated Words //=== 思路==== (*) DFS算法 - 陣列中的每一個節點都可以當作root節點, 每一個節點都是上一層的child節點 - 此題的陣列是vector<string> wordDict - 因為陣列元素可以reused,所以每進入下一層, loop迴圈都從i=0開始 0. segment 是要連續,不能中間斷掉, 左半部和右半部連接 1.宣告 string& out, 紀錄每一個滿足條件的string 2.宣告 vector<string>& res, 紀錄滿足最後條件的string 3.每一次substring都...
[ "noreply@github.com" ]
sammiiT.noreply@github.com
c35c2d62a156829d22448cc6b0d87e80e60d5a76
c27a1b7e258b9fa30653a9aa6dd36dcd1df15810
/arduino_code_outer.ino
a27b32227a2881ae73337661e4ccde0c8c8668c9
[]
no_license
Emmanuel-Edidiong/Automatic-Wireless-Weather-Station-with-Arduino
1b0b97d20a742c1dfb98d8b97966ee2560e86c00
8268b1b4dbe8bbb79386ecaf867eea141e34610b
refs/heads/master
2020-09-13T13:51:21.347427
2019-11-19T23:08:11
2019-11-19T23:08:11
222,806,119
2
0
null
null
null
null
UTF-8
C++
false
false
1,116
ino
/* Outdoor unit - Transmitter */ #include <SPI.h> #include <nRF24L01.h> #include <RF24.h> #include <dht.h> #include <LowPower.h> #define dataPin 8 // DHT22 data pina dht DHT; // Creates a DHT object RF24 radio(10, 9); // CE, CSN const byte address[6] = "00001"; char thChar[32] = ""; String thString = ""; void s...
[ "noreply@github.com" ]
Emmanuel-Edidiong.noreply@github.com
1cd2b7ce9a506eb8b775389be6d61a36481bfe5c
3c1dbc0532ec129a34dfc5eb6b663d7eaf31a1f8
/limak_house.cpp
ac80f9d7ee246671c9cd11ac2355035eae409fcd
[]
no_license
fredybotas/Spoj
c79702b163627f3f83461fb2ccb923c544ae7a16
5a99e0d15b8fcbbb093dc1c694cdd56c2f83f0c4
refs/heads/master
2021-01-19T20:34:56.636668
2017-02-27T00:03:39
2017-02-27T00:03:39
81,080,973
0
0
null
null
null
null
UTF-8
C++
false
false
1,865
cpp
#include <stdio.h> #include <string.h> int main(){ //najdi spodok char buffer[20]; int curr, i, low = 0, high = 1000; while(low < high){ curr = (low + high) / 2; printf("? %d %d\n", curr, 0); fflush(stdout); scanf("%s", buffer); if(!strcmp(buffer, "YES")) low = curr + 1; else ...
[ "fredybotas@gmail.com" ]
fredybotas@gmail.com
38f7c8a3cad67c635c35e49aa86561033dd5059e
b2b9e4d616a6d1909f845e15b6eaa878faa9605a
/Genemardon/20150726浙大月赛/H.cpp
a21dd35a335cc1f9d08f48963c32541c661122f1
[]
no_license
JinbaoWeb/ACM
db2a852816d2f4e395086b2b7f2fdebbb4b56837
021b0c8d9c96c1bc6e10374ea98d0706d7b509e1
refs/heads/master
2021-01-18T22:32:50.894840
2016-06-14T07:07:51
2016-06-14T07:07:51
55,882,694
0
0
null
null
null
null
UTF-8
C++
false
false
737
cpp
#include <stdio.h> #include <string.h> #include <algorithm> #include <vector> using namespace std; vector<int>tab[50010]; int n,m,q; int ans[50010]; int main(int argc, char const *argv[]) { while (scanf("%d%d%d",&n,&m,&q) != EOF) { memset(ans,0,sizeof(ans)); for (int i=1;i<=n;i++) tab[i].clear(); for (int i=0;i...
[ "jinbaosite@yeah.net" ]
jinbaosite@yeah.net
288230e9c8d07e65f331be84dae3541bd8429c30
c26b2d68eab6ce8a7bcabaa61a0edcf067362aea
/vz03/src/herbivora.h
bb867b5ce4aa6e64988ea2e29cc49c33f213e8af
[]
no_license
reiva5/oop
b810f4c75f209eef631c2cf2cd26dfad284cd236
465c6075f2d2f16221c482bae9dbb4117c4a6398
refs/heads/master
2020-12-10T04:28:46.077254
2017-03-15T06:36:02
2017-03-15T06:36:02
83,626,249
0
0
null
null
null
null
UTF-8
C++
false
false
419
h
#ifndef HERBIVORA_H #define HREBIVORA_H #include "pemakan.h" /** @class Herbivora * Kelas Herbivora menyimpan informasi makanan berupa tumbuhan */ class Herbivora: public Pemakan { public: /** @brief Setter tumbuhan * @param n Jumlah tumbuhan yang diinginkan */ void SetAmount(int n); /** @brief Getter...
[ "apratamamia@gmail.com" ]
apratamamia@gmail.com
4369c661485646300e4388170f7303ad261fce8b
70dc2b3a7418bb0b5b8092b037bb3eeeea1ed4a0
/gui-kde/unitselector.h
638588de4f3f8c94b3295bf57eabc8f9ffb756fe
[]
no_license
jusirkka/freeciv-kde
829bc62643876b1491bbf8e3b3f8274383aedf3a
417c80d46b53f0a7fe75f3ffd5200041f1a58d57
refs/heads/master
2020-04-20T01:55:45.980679
2019-04-28T03:28:24
2019-04-28T03:28:24
168,558,596
0
0
null
null
null
null
UTF-8
C++
false
false
999
h
#ifndef UNITSELECTOR_H #define UNITSELECTOR_H #include <QWidget> #include <QTimer> struct tile; struct unit; namespace KV { class UnitSelector: public QWidget { Q_OBJECT public: explicit UnitSelector(tile* t, QWidget *parent = nullptr); protected: void paintEvent(QPaintEvent *event) override; void mouse...
[ "jukka.sirkka@iki.fi" ]
jukka.sirkka@iki.fi
9db88d488c6ffd2b10d44ee4753ddf7f6822594e
81bb77804b2481a92c0d48ad2f76e5b79d29e9ec
/src/base58.h
458f045ad5289379066b5ccc631231dae4dcac16
[ "MIT" ]
permissive
AndrewJEON/qtum
a5216a67c25e818b11266366f37d0b7bcf5a573f
5373115c4550a9dbd99f360dd50cc4f67722dc91
refs/heads/master
2021-06-11T16:50:00.126511
2017-03-14T17:12:40
2017-03-14T17:12:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,741
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // 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. /** * Why base-58 instead of standard base-64 encoding? * - Don't want 0OIl cha...
[ "development@solarius.fi" ]
development@solarius.fi
3046cc516b94d3d61b5944e8e72cb324eb8e83b2
2f10f807d3307b83293a521da600c02623cdda82
/deps/boost/win/debug/include/boost/hana/fwd/concept/sequence.hpp
422e52578079c9edc98e149f855e4d4868c1d9cf
[]
no_license
xpierrohk/dpt-rp1-cpp
2ca4e377628363c3e9d41f88c8cbccc0fc2f1a1e
643d053983fce3e6b099e2d3c9ab8387d0ea5a75
refs/heads/master
2021-05-23T08:19:48.823198
2019-07-26T17:35:28
2019-07-26T17:35:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
129
hpp
version https://git-lfs.github.com/spec/v1 oid sha256:2995f98908d109d3d0c6f3843c95855164d1b5d8229cdc1d99bcf3b7094d3655 size 7412
[ "YLiLarry@gmail.com" ]
YLiLarry@gmail.com
e5da24000808179faf59b1240f2745fd73190189
129136fed2665b6554223cb95407b1bbb7c421e2
/Programming/1-2_sem/Qsort_opt/Qsort_opt.cpp
61fe73c950928a8237e6ccb996816d7ad125f5f5
[]
no_license
PotapovaSofia/DIHT-MIPT
e28f62c3ef91137d86ee8585ad4daefb1930a890
aef75ac5154d22ce0e424b3874bf15bae779fbf0
refs/heads/master
2016-09-05T16:44:46.501488
2016-02-20T21:46:23
2016-02-20T21:46:23
32,089,336
2
1
null
null
null
null
UTF-8
C++
false
false
2,077
cpp
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> void generation(int* Arr, int n) { int i; srand(time(NULL)); for ( i=0;i<n;++i) { Arr[i] = rand()%100 - 50; printf("%d ", Arr[i]); } printf("\n"); } int cmp_(void* a, void* b){ return (*(int*)a - *(int*)b); } v...
[ "sofiapotapova95@mail.ru" ]
sofiapotapova95@mail.ru
37a17f5aada19a69bd57c79199f40ec689d1616f
4ddb183621a8587f45c12216d0227d36dfb430ff
/MBDGeneralFW/MBDTechInfo.m/src/MBDNoteModifyDlg.cpp
a936ad957930efba2ddfc947cf25662e1c5142a8
[]
no_license
0000duck/good-idea
7cdd05c55483faefb96ef9b2efaa7b7eb2f22512
876b9c8bb67fa4a7dc62d89683d4fd9d28a94cae
refs/heads/master
2021-05-29T02:46:02.336920
2013-07-22T17:53:06
2013-07-22T17:53:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,085
cpp
// COPYRIGHT Dassault Systemes 2010 //=================================================================== // // MBDNoteModifyDlg.cpp // The dialog : MBDNoteModifyDlg // //=================================================================== // // Usage notes: // //===============================================...
[ "zhangwy0916@e6631ee2-bc36-6fc4-7263-08c298121e4e" ]
zhangwy0916@e6631ee2-bc36-6fc4-7263-08c298121e4e
4a9133ddb6d9eb9f7a3eb47d157200415e748cd3
4b6db2bfec027acdd71e1d030829983bade67980
/src/Draw/Text.h
ff67611214c68cec2ac1055830858cf152892386
[]
no_license
AkiraSekine/CreaDXTKLib
78b0980777814d6d2a4336cfdb779d1ab0007f7b
9259ecd31a003c620dddc770e383173f5d3bcda7
refs/heads/develop
2020-03-30T23:07:33.919981
2019-02-15T06:02:02
2019-02-15T06:02:02
151,691,370
0
0
null
2019-02-15T06:02:03
2018-10-05T08:23:28
HTML
SHIFT_JIS
C++
false
false
2,502
h
#pragma once #include "../Default/pch.h" #include "../Utility/Singleton.h" #include "../Math/Vector2.h" #include <string> #include <map> namespace CreaDXTKLib { namespace Draw { /// <summary> /// テキスト描画クラス /// </summary> class Text final : public Utility::Singleton<Text> { SINGLETON(Text)...
[ "ekusika834@gmail.com" ]
ekusika834@gmail.com
da31735876bffe91848fabb58d01bca37453a174
fcb11ed067ca203932f930facb608e4a07824112
/series5.cpp
cb814ccf6b5cbbefc393b33f4d1027f8ca52fbf2
[]
no_license
debjyotigorai/Cpp
8891a7cdb813ae52a67667a04c80658f1374281f
19f35c3e64b480471cac0658713cb32d9213aa04
refs/heads/master
2021-06-28T01:31:01.889120
2019-02-06T16:08:53
2019-02-06T16:08:53
100,121,539
0
0
null
null
null
null
UTF-8
C++
false
false
455
cpp
//1 - x^2 + x^3 - x^4 + ... #include <iostream> #include <math.h> using namespace std; int main() { long long int i, x, sum=1, n; cout << "Enter the value of x : "; cin >> x; cout << "Enter the range : "; cin >> n; cout << "1"; for (i=2; i<=n; i++) { int z=pow(-1,i+1); if (z<0) cout << " - "; else c...
[ "debjyotigorai@outlook.com" ]
debjyotigorai@outlook.com
a4b0f42c09efa2ae00be3b45fa8c4aee80eac3e7
575731c1155e321e7b22d8373ad5876b292b0b2f
/examples/native/ios/Pods/boost-for-react-native/boost/metaparse/v1/impl/push_back_c.hpp
c6868c0dc16cb49fd78c00b976ceed9edb14fad6
[ "BSL-1.0", "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Nozbe/zacs
802a84ffd47413a1687a573edda519156ca317c7
c3d455426bc7dfb83e09fdf20781c2632a205c04
refs/heads/master
2023-06-12T20:53:31.482746
2023-06-07T07:06:49
2023-06-07T07:06:49
201,777,469
432
10
MIT
2023-01-24T13:29:34
2019-08-11T14:47:50
JavaScript
UTF-8
C++
false
false
1,027
hpp
#ifndef BOOST_METAPARSE_V1_PUSH_BACK_C_HPP #define BOOST_METAPARSE_V1_PUSH_BACK_C_HPP // Copyright Abel Sinkovics (abel@sinkovics.hu) 2013. // 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) #...
[ "radexpl@gmail.com" ]
radexpl@gmail.com
72a8c8e1d5a24677d25f802676368885cde7f460
c712c82341b30aad4678f6fbc758d6d20bd84c37
/CAC_Source_1.7884/RecusalBookDialog.h
43ecb8655aa472f0ac07fe40bdad7923e117ad1a
[]
no_license
governmentbg/EPEP_2019_d2
ab547c729021e1d625181e264bdf287703dcb46c
5e68240f15805c485505438b27de12bab56df91e
refs/heads/master
2022-12-26T10:00:41.766991
2020-09-28T13:55:30
2020-09-28T13:55:30
292,803,726
0
0
null
null
null
null
UTF-8
C++
false
false
358
h
class TRecusalBookDialog : public TFloatDialog { public: TRecusalBookDialog(TWindow* parent, TRecusalBookGroup *group, int resId = IDD_RECUSAL_BOOK); protected: TCharListFace *types; TCharAutoListFace *compositions; TDateFace *minDate; TDateFace *maxDate; TLongFace *autogen; TCheckFace *filtered; TCheckFace *...
[ "git@vakata.com" ]
git@vakata.com
508d55d75ab154fe547faf8438d150f7652f0e14
52a3c93c38bef127eaee4420f36a89d929a321c5
/SDK/SoT_BP_FishingFish_Wrecker_05_Colour_05_Moon_classes.hpp
8be34a73802fcedf704075651af56099a98ab051
[]
no_license
RDTCREW/SoT-SDK_2_0_7_reserv
8e921275508d09e5f81b10f9a43e47597223cb35
db6a5fc4cdb9348ddfda88121ebe809047aa404a
refs/heads/master
2020-07-24T17:18:40.537329
2019-09-11T18:53:58
2019-09-11T18:53:58
207,991,316
0
0
null
null
null
null
UTF-8
C++
false
false
883
hpp
#pragma once // Sea of Thieves (2.0) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "SoT_BP_FishingFish_Wrecker_05_Colour_05_Moon_structs.hpp" namespace SDK { //--------------------------------------------------------------------------- //Classes //-----------------------------------------------------...
[ "igromanru@yahoo.de" ]
igromanru@yahoo.de
9b83294b2fb573490cadd874fd3157c93a47fcac
c689037be8a029aa95bf5fe1c4aef2912f194f31
/LaboratoryDevices/SelectDevicesWidget.h
1278c022880d40441eb5570eadcee42586655303
[]
no_license
oscilo/LabDev
b6933d65562af9d210f809e00a0cfcc09c37833b
8ae22a5658f85f2854b30b47e6aebc75d1cb02e4
refs/heads/master
2020-05-31T03:27:28.118419
2017-03-15T22:44:28
2017-03-15T22:44:28
30,373,361
0
0
null
null
null
null
UTF-8
C++
false
false
2,663
h
#ifndef SELECTDEVICESWIDGET_H #define SELECTDEVICESWIDGET_H #include "globals.h" #include "structures.h" class CheckDeviceLayout : public QHBoxLayout { Q_OBJECT public: CheckDeviceLayout(const DeviceInfo &di, QWidget *parent = 0) : QHBoxLayout(parent), curDI(di) { check = new QCheckBox(di.name, parent); spi...
[ "deep@aaanet.ru" ]
deep@aaanet.ru
e96e3af0be76106444fb057262c722e6095061a3
d4baaa6748dda226b88a1afb2fba2b6c6f54a3cc
/QuestionAnswer_1/source/user.h
a61b280ceaa5b68c731d18c6ba2624a705a5fe11
[]
no_license
zhangjiuchao/ProgramDesign
8343363e9ebd4ad8bc2beb051c36f450cda653fe
175c286b2ed2eca3c386f7aaf7ec13404989a95f
refs/heads/master
2020-06-30T18:34:16.947478
2016-08-26T15:20:53
2016-08-26T15:20:53
66,571,078
0
0
null
null
null
null
UTF-8
C++
false
false
1,026
h
#ifndef USER_H #define USER_H //#include <iostream> #include <QString> #include <QList> #include "questinfor.h" #include <QTextStream> class user { public: user(QString str1="",QString str2="",QString str3=""); bool AddFocus(QString focusID); void AddQuest(QString title,QString content); void AddA...
[ "1665327050@qq.com" ]
1665327050@qq.com
b807966f3409def6e402e0f4154383a68f8e5e97
b21b07fc237a764474eb9995783c1b714356bf5f
/src/Xyz/SimplexNoise.cpp
d605c33842509507b55cb3da1b68390f4969d9a0
[ "BSD-2-Clause" ]
permissive
jebreimo/Xyz
a26b7d93fbb112ebf6c13369c16313db82b68550
2f3a6773345c28ad2925e24e89cab296561b42c5
refs/heads/master
2023-08-31T03:10:18.086392
2023-08-20T14:46:15
2023-08-20T14:46:15
48,961,224
0
0
null
null
null
null
UTF-8
C++
false
false
5,995
cpp
//**************************************************************************** // Copyright © 2022 Jan Erik Breimo. All rights reserved. // Created by Jan Erik Breimo on 2022-05-07. // // This file is distributed under the BSD License. // License text is included with the source distribution. //************************...
[ "jebreimo@gmail.com" ]
jebreimo@gmail.com
3c562a4243e222e2a5d2afd6f33ac1002b5d77d5
e49020bee62e9a7006b7a603588aff026ac19402
/clang/lib/Basic/IdentifierTable.cpp
621bcc265020d77a202936efaba490ba1a2832a7
[ "NCSA" ]
permissive
angopher/llvm
10d540f4d38fd184506d9096fb02a288af8a1aa1
163def217817c90fb982a6daf384744d8472b92b
refs/heads/master
2020-06-10T09:59:52.274700
2018-05-10T23:14:40
2018-05-10T23:14:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
23,406
cpp
//===- IdentifierTable.cpp - Hash table for identifier lookup -------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
[ "milovidov@yandex-team.ru" ]
milovidov@yandex-team.ru
088e07cf5b8e57147205361a7bb8da08825fbeeb
8dc84558f0058d90dfc4955e905dab1b22d12c08
/third_party/blink/renderer/core/html/link_element_loading_test.cc
c82c7593f5fe8ef11d8e34e702f07dfa1a2f5fb7
[ "LGPL-2.0-only", "BSD-2-Clause", "LGPL-2.1-only", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
1,395
cc
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "testing/gtest/include/gtest/gtest.h" #include "third_party/blink/renderer/core/dom/document.h" #include "third_party/blink/renderer/core/html/ht...
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
181a9dfd827524c75789617744e569536f5485aa
8c8ea797b0821400c3176add36dd59f866b8ac3d
/AOJ/aoj0025.cpp
c2403359a69322f0b035d629e82f658fe2bce624
[]
no_license
fushime2/competitive
d3d6d8e095842a97d4cad9ca1246ee120d21789f
b2a0f5957d8ae758330f5450306b629006651ad5
refs/heads/master
2021-01-21T16:00:57.337828
2017-05-20T06:45:46
2017-05-20T06:45:46
78,257,409
0
0
null
null
null
null
UTF-8
C++
false
false
594
cpp
#include <iostream> #include <map> #include <vector> using namespace std; #define N 4 int main(void) { ios::sync_with_stdio(false); int a[N], b[N]; int hit, blow; while(cin >> a[0] >> a[1] >> a[2] >> a[3], !cin.eof()) { for(int i=0; i<N; i++) cin >> b[i]; hit = blow = 0; for(...
[ "okmt52@gmail.com" ]
okmt52@gmail.com
29ada50980d562e467d8267b9d3af643f6559c76
3ff49c066ddaf7e97ed2631760d438c6a1a452c5
/src/ast/ASTAbstractVisitor.h
479f96b3bd7bc0b42631a05748bb30fce6d49deb
[]
no_license
rudo-rov/CppSOM
26321838d058ec188ab72bfd70dca5c12184df1d
0fff035f9a5989014fb6ed214b41e7bdf088b904
refs/heads/main
2023-05-05T14:15:42.562364
2021-05-24T12:24:19
2021-05-24T12:24:19
342,613,612
0
0
null
null
null
null
UTF-8
C++
false
false
2,222
h
#pragma once #include <any> namespace som { // Forward declaration of AST nodes to resolve circular reference struct Class; struct Method; struct Block; struct NestedBlock; struct UnaryPattern; struct BinaryPattern; struct KeywordPattern; struct Keyword; struct KeywordWithArgs; struct Unar...
[ "r.rovnak@gmail.com" ]
r.rovnak@gmail.com
76e76978aa547bdd62a466f226aa7723fe14facb
9484781e2faf0889182bc9fc9071d2a81e15e341
/Ground.cpp
3eaa89f1d1492713517daa9c1a3a76cd8cc0b333
[]
no_license
Tubbz-alt/trip-to-mars
0e34a7a608d8868a16f1748e327ada85b6310300
2122bb58f63abad0a2e6d0e814f7d0f2c323c98f
refs/heads/master
2021-05-28T23:14:41.708327
2015-03-27T19:11:12
2015-03-27T19:11:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,582
cpp
#include "Ground.h" /*---------------------------------------------------------------------------*/ Ground::Ground(int Xground, int Zground, float MaxHigh, float SoftCoef) { int i,j; xground = Xground; zground = Zground; maxhigh = MaxHigh; softcoef = SoftCoef; map = new float* [xground]; for(...
[ "anthony.prieur@4cb61479-95d8-4551-e4b5-d013f55dcc39" ]
anthony.prieur@4cb61479-95d8-4551-e4b5-d013f55dcc39
d0037625ad2d3affbd5873f079c58a7a0a50304d
2db92f5aed1f3a18de6bfad1818ae662137692b2
/Default.h
c4b0f2e11e1a84c2feeb019b64a2b3af6fc57ca5
[]
no_license
Gelya-Cyber/Restoraunt
ec0bea4e6cf43543f78e266df8dae2700da192b9
3d0fb719568f84467b0966cd24b3e1e6af08e085
refs/heads/master
2022-11-13T00:05:21.289599
2020-06-18T12:21:22
2020-06-18T12:21:22
273,228,806
0
0
null
null
null
null
UTF-8
C++
false
false
1,936
h
/********************************************************************* Rhapsody : 9.0 Login : raxma Component : DefaultComponent Configuration : DefaultConfig Model Element : Default //! Generated Date : Thu, 18, Jun 2020 File Path : DefaultComponent\DefaultConfig\Default.h *************************...
[ "noreply@github.com" ]
Gelya-Cyber.noreply@github.com
a98e9f476dd86e348da9401f20f3a06c021ea80e
8e4a2a7152e4b25641d72e930de8842732bcf53a
/OpenSeesCpp/eigen3/linearFunctionai.cpp
48b55e4dcfecc4b8ffb1ebbb720b2ff0b2316df4
[]
no_license
Mengsen-W/OpenSeesFiles
9b9e8865a2b802047e419c5155aff5c20ac05937
cda268d37cd17280dc18ada8c7f1b30af0b2bd6b
refs/heads/master
2021-12-23T23:21:28.369076
2021-12-22T13:14:53
2021-12-22T13:14:53
239,237,550
3
0
null
null
null
null
UTF-8
C++
false
false
2,450
cpp
/* * @Author: Mengsen.Wang * @Date: 2020-07-17 09:49:15 * @Last Modified by: Mengsen.Wang * @Last Modified time: 2020-07-17 10:47:16 */ #include <ctime> #include <eigen3/Eigen/Core> #include <eigen3/Eigen/Dense> #include <iostream> #define MATRIX_SIZE 1000 int main() { Eigen::MatrixXd A; Eigen::MatrixXd B; ...
[ "mengsen_wang@163.com" ]
mengsen_wang@163.com
df4686b64f23df1bd180ab71749f892557da3e90
c50c4796cc416e78ef2c8883899d12f1d4e0a9e8
/RPG/QuotesSettings.h
fcf5f16592a9e42f06884c6e6b893fd4d83f061d
[ "MIT" ]
permissive
kriskirov/RPG-Remote
052b5c9eb24a1f61415def3cb3d72e0d30489a49
f446f5461ad38267ed3a34dc80e8bd807ae29ef9
refs/heads/master
2021-01-20T01:19:10.416123
2017-05-09T11:37:42
2017-05-09T11:37:42
89,253,403
0
0
null
null
null
null
UTF-8
C++
false
false
465
h
#ifndef QUOTES_SETTINGS_H #define QUOTES_SETTINGS_H #include <string> struct QuotesSettings{ QuotesSettings() = default; QuotesSettings( std::string attack, std::string getAttacked, std::string getAttackedWhileDead, std::string dead ); ~QuotesSettings() = default; QuotesSettings& operator=(const Quo...
[ "kriskirov92@gmail.com" ]
kriskirov92@gmail.com
7ffec586c8dd2e09f767a0afadaac569716c3b06
8ac181aa59bbc34aa457ed90273b56763269859d
/Codeforces/668-DIV2/B.cpp
9e90460de64ad73d97dd3b9bc8d34ae89d8b3dbc
[]
no_license
mohitmp9107/Competitive-Programming-
d8a85d37ad6eccb1c70e065f592f46961bdb21cf
d42ef49bfcd80ebfc87a75b544cf9d7d5afcc968
refs/heads/master
2021-07-11T11:09:14.808893
2020-10-03T08:15:36
2020-10-03T08:15:36
206,331,473
0
4
null
2020-10-03T08:15:38
2019-09-04T13:54:46
C++
UTF-8
C++
false
false
1,304
cpp
#include<bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; template < typename T > using oset = tree < T, null_type, less < T >, rb_tree_tag, tree_order_statistics_node_update >; // find_by_order(k) (k+1)th largest element // or...
[ "mohitsaininith@gmail.com" ]
mohitsaininith@gmail.com
e063d1a76d7610f8d626233ecb551423c89f987c
3dbe2d0454979091d3f1f23c3bda6f8371efe8be
/arm_compute/runtime/CL/ICLGEMMKernelSelection.h
69b941109d33bf329ad9fe1ab326458b98ddd52e
[ "MIT", "LicenseRef-scancode-dco-1.1" ]
permissive
alexjung/ComputeLibrary
399339e097a34cf28f64ac23b3ccb371e121a4c9
a9d47c17791ebce45427ea6331bd6e35f7d721f4
refs/heads/master
2022-11-25T22:34:48.281986
2020-07-30T14:38:20
2020-07-30T14:38:20
283,794,492
0
0
MIT
2020-07-30T14:16:27
2020-07-30T14:16:26
null
UTF-8
C++
false
false
2,579
h
/* * Copyright (c) 2020 ARM Limited. * * SPDX-License-Identifier: 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 ...
[ "bsgcomp@arm.com" ]
bsgcomp@arm.com
d5b10fd840e59b756c211cab4d2eb6bb258e3e76
ef15a4a77b6e1fbb3220a5047885ba7568a80b74
/src/core/Core/SignalToStop.hpp
b66f5a6ec1be9ca38fff701986ce19cd9dde6921
[]
no_license
el-bart/ACARM-ng
22ad5a40dc90a2239206f18dacbd4329ff8377de
de277af4b1c54e52ad96cbe4e1f574bae01b507d
refs/heads/master
2020-12-27T09:24:14.591095
2014-01-28T19:24:34
2014-01-28T19:24:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
843
hpp
/* * SignalToStop.hpp * */ #ifndef INCLUDE_CORE_SIGNALTOSTOP_HPP_FILE #define INCLUDE_CORE_SIGNALTOSTOP_HPP_FILE /* public header */ #include "System/SignalRegistrator.hpp" #include "Logger/Node.hpp" #include "Core/WorkThreads.hpp" namespace Core { /** \brief handles given signal's registration and unregistration...
[ "bartosz.szurgot@pwr.wroc.pl" ]
bartosz.szurgot@pwr.wroc.pl
60e5fb32350ab045ec71c799a0a5c28e815d2ca9
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE122_Heap_Based_Buffer_Overflow/s04/CWE122_Heap_Based_Buffer_Overflow__cpp_CWE806_wchar_t_loop_82_goodG2B.cpp
c33c8d71ef39b59ac89102c07f1b01680ea08a75
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
1,351
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE122_Heap_Based_Buffer_Overflow__cpp_CWE806_wchar_t_loop_82_goodG2B.cpp Label Definition File: CWE122_Heap_Based_Buffer_Overflow__cpp_CWE806.label.xml Template File: sources-sink-82_goodG2B.tmpl.cpp */ /* * @description * CWE: 122 Heap Based Buffer Overflow * B...
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
7256649c1b45655ea0cc7a7affc81c5f3fe54265
adbc979313cbc1f0d42c79ac4206d42a8adb3234
/Source Code/李沿橙 2017-10-23/source/李沿橙/bus/bus.cpp
0e0ba6ecc02f0bc9722cb827d7c4ccb465cb67b0
[]
no_license
UnnamedOrange/Contests
a7982c21e575d1342d28c57681a3c98f8afda6c0
d593d56921d2cde0c473b3abedb419bef4cf3ba4
refs/heads/master
2018-10-22T02:26:51.952067
2018-07-21T09:32:29
2018-07-21T09:32:29
112,301,400
1
0
null
null
null
null
UTF-8
C++
false
false
3,218
cpp
#pragma G++ optimize("O3") #include <cstdio> #include <cstdlib> #include <cmath> #include <cstring> #include <iostream> #include <algorithm> #include <vector> #include <string> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> using std::cin; using std::cout; using std::...
[ "lycheng1215@sina.com" ]
lycheng1215@sina.com
69721892a768fac6808ee60dfd9672acacbdc19b
b33a9177edaaf6bf185ef20bf87d36eada719d4f
/qtdeclarative/src/qml/jsruntime/qv4profiling_p.h
6c54fc9bbdf19a1654d96b536ae8d0244adb9e27
[ "Qt-LGPL-exception-1.1", "LGPL-2.1-only", "LGPL-2.0-or-later", "LGPL-3.0-only", "GPL-3.0-only", "LGPL-2.1-or-later", "GPL-1.0-or-later", "LicenseRef-scancode-unknown-license-reference", "GPL-2.0-only", "GFDL-1.3-only", "LicenseRef-scancode-digia-qt-preview", "LicenseRef-scancode-warranty-discl...
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
6,825
h
/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the QtQml module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensees holding valid commerc...
[ "p_pavlov@wargaming.net" ]
p_pavlov@wargaming.net
abb4494d31f83c59e62840a3cbee255fc3dd0ca4
3011f9e4204f2988c983b8815187f56a6bf58ebd
/src/ys_library/ysglcpp/src/nownd/ysglbuffermanager_nownd.h
af34a97c2e372bd4ad528a98ad9a18d6f039d852
[]
no_license
hvantil/AR-BoardGames
9e80a0f2bb24f8bc06902785d104178a214d0d63
71b9620df66d80c583191b8c8e8b925a6df5ddc3
refs/heads/master
2020-03-17T01:36:47.674272
2018-05-13T18:11:16
2018-05-13T18:11:16
133,160,216
0
0
null
null
null
null
UTF-8
C++
false
false
1,763
h
/* //////////////////////////////////////////////////////////// File Name: ysglbuffermanager_nownd.h Copyright (c) 2017 Soji Yamakawa. All rights reserved. http://www.ysflight.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following condit...
[ "harrison.vantil@outlook.com" ]
harrison.vantil@outlook.com
16797e4979a0f00c0f5408ba087dd3da9615e2ee
446641d5115aaa8371a767e7e0e0597797568e33
/Quarter 3/Week 5/closingthefarm.cpp
a811cf8531272c1710d89f581bee2d89071e997d
[ "MIT" ]
permissive
nwatx/CS3-Independent-Study
b4faa3442507121eef32e233bfacd8a549b85acc
16b91d4e0503d10d825ae800c46ea9233cd5e066
refs/heads/master
2023-04-16T02:14:43.959564
2021-04-23T19:43:21
2021-04-23T19:43:21
290,934,485
2
0
null
null
null
null
UTF-8
C++
false
false
8,207
cpp
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> // Common file #include <ext/pb_ds/tree_policy.hpp> // Including tree_order_statistics_node_update using namespace __gnu_pbds; using namespace std; #pragma GCC optimize("O3") #pragma GCC optimization ("unroll-loops") #pragma region using ll = lo...
[ "43394822+nwatx@users.noreply.github.com" ]
43394822+nwatx@users.noreply.github.com
4a76cac30b1bc4bf6696ab84973927450e320812
99ecca1944396fb67de3e64663d464d17c558e8f
/super_template.cpp
2055f142955090c02af6cc83a611f4302d75b2ba
[]
no_license
fedepousa/codejam-practicas
c1cb88eb3d6c7ec39d33b92038f02616984c2f86
dff985d02a83d2d196ec70453d0b57d4a2f68acc
refs/heads/master
2020-12-25T19:03:56.651996
2011-05-10T13:38:48
2011-05-10T13:38:48
32,286,689
0
0
null
null
null
null
UTF-8
C++
false
false
8,579
cpp
#include <vector> #include <list> #include <map> #include <set> #include <deque> #include <queue> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cst...
[ "nicovaras22@132d8716-348d-89a7-68be-e1c8d3029e1a" ]
nicovaras22@132d8716-348d-89a7-68be-e1c8d3029e1a
2816114820980efb09a736075066c1ae8208251b
7052b9b0e0aea3524dd990bb97eacf3f492e1941
/CC3000/examples/wlan_mag/wlan_mag.ino
8e918bddd32ce336dcb8a9f51e0344cdf2d1d7e5
[ "BSD-2-Clause" ]
permissive
pscholl/Adafruit_CC3000_Library
64a1d03152ed465d61244286077686f8eed5693c
1a571ff1a9ca7c482a497e6c94201c38ba09dc4d
refs/heads/master
2021-01-24T20:02:10.598462
2015-06-23T11:35:58
2015-06-23T11:35:58
19,730,591
0
0
null
null
null
null
UTF-8
C++
false
false
3,638
ino
/* ATTENTION: need to include Wire and I2CDev libs for * jNode sensors (LSM9DS0, MPL115A2, VCNL4010, SHT21X) * * With this sample we've used 99% of available memory! */ #include <Wire.h> #include <I2Cdev.h> #include <LSM9DS0.h> #include <Adafruit_CC3000.h> #include <SPI.h> #include "utility/debug.h" #include "uti...
[ "pscholl@ese.uni-freiburg.de" ]
pscholl@ese.uni-freiburg.de
4c77e1da3e9e85add1f524b0e0252ea9224f9fd9
d1e81fa4e8a54b5d5e0e4f85adb79971a8d3b4dd
/TFTTest/TftTest1/UTFT.cpp
5854898716af44b286f7a598c26aa16e0cbbacfa
[]
no_license
SimonBlasen/Arduino
8fd753d7c5075765a52b7d2b54e78a69c77886d9
623ecd8869231549871795730fa2c96452493d17
refs/heads/master
2023-07-06T23:21:55.518542
2023-07-02T13:08:47
2023-07-02T13:08:47
99,805,226
0
0
null
null
null
null
UTF-8
C++
false
false
28,687
cpp
/* UTFT.cpp - Arduino/chipKit library support for Color TFT LCD Boards Copyright (C)2010-2014 Henning Karlsen. All right reserved This library is the continuation of my ITDB02_Graph, ITDB02_Graph16 and RGB_GLCD libraries for Arduino and chipKit. As the number of supported display modules and controllers s...
[ "simon.yzf@t-online.de" ]
simon.yzf@t-online.de
1b1db33275ca9020ab39e1df49702ad2e1dfa7d8
e1c8e3767bac2d7d2bb83e56aa46bfad6286f734
/games/anarchy/fireDepartment.h
6856c29f0c39dee9a08ac9c174999225c4c62dfb
[ "MIT" ]
permissive
joeykuhn/Joueur.cpp
df2709357aae71be84100bf8c39f859ffe965a86
9b3f9d9a37f79aad958f179cb89c4f08706387b8
refs/heads/master
2021-01-24T09:19:20.206407
2016-09-27T23:04:41
2016-09-27T23:04:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,872
h
// Generated by Creer at 01:31AM on December 23, 2015 UTC, git hash: '1b69e788060071d644dd7b8745dca107577844e1' // Can put out fires completely. #ifndef JOUEUR_ANARCHY_FIREDEPARTMENT_H #define JOUEUR_ANARCHY_FIREDEPARTMENT_H #include "anarchy.h" #include "building.h" // <<-- Creer-Merge: includes -->> - Code you add...
[ "jacob.t.fischer@gmail.com" ]
jacob.t.fischer@gmail.com
0811a45932f781306c79c102a317affdaf89c095
fae45a23a885b72cd27c0ad1b918ad754b5de9fd
/benchmarks/shenango/parsec/pkgs/tools/cmake/src/Source/cmSeparateArgumentsCommand.cxx
ea6f065af9c9f954ceb35d70187934ff3500acf4
[ "Apache-2.0", "LicenseRef-scancode-free-unknown", "LicenseRef-scancode-other-permissive", "MIT" ]
permissive
bitslab/CompilerInterrupts
6678700651c7c83fd06451c94188716e37e258f0
053a105eaf176b85b4c0d5e796ac1d6ee02ad41b
refs/heads/main
2023-06-24T18:09:43.148845
2021-07-26T17:32:28
2021-07-26T17:32:28
342,868,949
3
3
MIT
2021-07-19T15:38:30
2021-02-27T13:57:16
C
UTF-8
C++
false
false
1,314
cxx
/*========================================================================= Program: CMake - Cross-Platform Makefile Generator Module: $RCSfile: cmSeparateArgumentsCommand.cxx,v $ Language: C++ Date: $Date: 2012/03/29 17:21:08 $ Version: $Revision: 1.1.1.1 $ Copyright (c) 2002 Kitware, Inc., ...
[ "nilanjana.basu87@gmail.com" ]
nilanjana.basu87@gmail.com
0ebecc26962b4a030a103e91a8befd0cfbb7a7ea
95273e09057dea3ee4d8b2c7405c62c511d76e6c
/src/ESPectroBase_GpioEx.cpp
cf2412036d67e8a1d928b4cc1a1afd5715308196
[]
no_license
alwint3r/EspX
a3af26c86f7bdace1adfe8f3ab5b50a8344bcc05
eed8cb93a18a11a6b72be85326e2fef900427dd7
refs/heads/master
2020-05-29T08:40:33.140368
2017-01-07T19:04:28
2017-01-07T19:04:28
69,655,952
0
0
null
2016-09-30T10:02:22
2016-09-30T10:02:22
null
UTF-8
C++
false
false
979
cpp
// // Created by Andri Yadi on 8/1/16. // #include "ESPectroBase_GpioEx.h" ESPectroBase_GpioEx::ESPectroBase_GpioEx(uint8_t address): SX1508(address), i2cDeviceAddress_(address) { } ESPectroBase_GpioEx::~ESPectroBase_GpioEx() { } byte ESPectroBase_GpioEx::begin(byte address, byte resetPin) { byte addr = (addr...
[ "an.dri@me.com" ]
an.dri@me.com
7a8ee6e89234f511f0c9621e346ef8e385c5868b
9d4ad6d7f3122f8d32a4a713f06b81ecb7a47c6e
/headers/boost/1.31.0/boost/python/slice_nil.hpp
b77d06cb2248fb3ab7dd61b1ea1fd671d6904430
[]
no_license
metashell/headers
226d6d55eb659134a2ae2aa022b56b893bff1b30
ceb6da74d7ca582791f33906992a5908fcaca617
refs/heads/master
2021-01-20T23:26:51.811362
2018-08-25T07:06:19
2018-08-25T07:06:19
13,360,747
0
1
null
null
null
null
UTF-8
C++
false
false
913
hpp
// Copyright David Abrahams 2002. Permission to copy, use, // modify, sell and distribute this software is granted provided this // copyright notice appears in all copies. This software is provided // "as is" without express or implied warranty, and with no claim as // to its suitability for any purpose. #ifndef SLICE_...
[ "abelsoft@freemail.hu" ]
abelsoft@freemail.hu
753d6db593d2dbb3cbc3552a2e76c038af4365c9
f5f750efbde0ccd95856820c975ec88ee6ace0f8
/aws-cpp-sdk-apigateway/include/aws/apigateway/model/PutMethodRequest.h
b09c86623a5a17eb3cc9a9ae9099ed949c7e68f2
[ "JSON", "MIT", "Apache-2.0" ]
permissive
csimmons0/aws-sdk-cpp
578a4ae6e7899944f8850dc37accba5568b919eb
1d0e1ddb51022a02700a9d1d3658abf628bb41c8
refs/heads/develop
2020-06-17T14:58:41.406919
2017-04-12T03:45:33
2017-04-12T03:45:33
74,995,798
0
0
null
2017-03-02T05:35:49
2016-11-28T17:12:34
C++
UTF-8
C++
false
false
25,054
h
/* * 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
822c0cbe1df8c14a644ce9901565c54c578f3ffc
4a887b7390deb04cf908571876e33a3c6bc63826
/3_2DEngineWithGUI/Base.h
ca97adadb48fe9a86cf60458c1e07489b0e947f7
[ "MIT" ]
permissive
dnjfdkanwjr/2DEngine
504d2a97638346fdf283c0889f40f16574d0ca4a
8908073192b6a80a84d155f07061003800e8d0ce
refs/heads/master
2021-02-09T19:34:56.041713
2020-03-19T05:41:25
2020-03-19T05:41:25
244,318,509
0
0
null
null
null
null
UTF-8
C++
false
false
384
h
#pragma once #include <string> namespace rp { class Base { protected: std::string name{}; bool state{}; public: Base(std::string&& name); virtual ~Base(); void SetName(std::string&& name)noexcept; void SetName(std::string& name)noexcept; void SetState(bool state)noexcept; const std::string& Get...
[ "kweyom6@gmail.com" ]
kweyom6@gmail.com
ec6638730f6368f85bfaef8cb895edcd78f1e02b
9228d266b854a8767b2c3dd9f51a6cc07a9daf5e
/Source/Lutefisk3D/2D/Drawable2D.cpp
9758ce2b0dd619b2bf62df7bcda9da0ff5f72761
[ "Apache-2.0", "BSD-2-Clause", "Zlib", "MIT", "LicenseRef-scancode-khronos", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Lutefisk3D/lutefisk3d
9dfed84ab853134846ab9acf3c2fae419ec102f3
d2132b82003427511df0167f613905191b006eb5
refs/heads/master
2021-10-19T03:58:00.025782
2019-02-17T18:14:49
2019-02-17T18:14:49
37,516,913
3
1
NOASSERTION
2018-10-20T12:51:56
2015-06-16T08:10:08
C++
UTF-8
C++
false
false
3,563
cpp
// // Copyright (c) 2008-2016 the Urho3D project. // // 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, copy, modify, m...
[ "nemerle5@gmail.com" ]
nemerle5@gmail.com
2afdee78415e6b3b8019099f55955075a2ac3d2b
9a3558d9cc1070d75b6972abaf12339f3c43b672
/libraries/helper/helper.hpp
8dfa3d61682d662d17355285d1b50d766492c757
[]
no_license
kurokis/Ublox
32888bb69d5eeebc8eab9d6e47997c5d825d1e35
a434a513ba68d25e7badce022e73b77ca3e2f2a3
refs/heads/master
2021-01-21T12:30:40.132612
2017-09-03T11:23:12
2017-09-03T11:23:12
102,074,190
0
0
null
null
null
null
UTF-8
C++
false
false
845
hpp
// // helper.hpp // GPS_READER // // Created by blue-i on 01/09/2017. // Copyright © 2017 blue-i. All rights reserved. // #ifndef helper_hpp #define helper_hpp #include <stdio.h> #include "string.h" #include <iostream> #include <stdio.h> #include <unistd.h> //Used for UART #include <fcntl.h> //Used for UART #...
[ "kurokis@users.noreply.github.com" ]
kurokis@users.noreply.github.com
ffb32c7bfa66792ff42c6982c642d1dd258c2f1d
4a4109182be077240476da145c1ea0366a190b7c
/Plugins/QFireBase/qfirebase.cpp
f49d959a1e797a0219f5ae4bff27ccb231e15e97
[]
no_license
devkitcc/SDMedic
5f7c0a59856108b4d55bc3f051eca3d241073e4b
14509964f5730923268e138ccdb2e99bc944d7b2
refs/heads/master
2021-05-08T01:36:28.333248
2017-10-22T17:14:38
2017-10-22T17:14:38
107,885,884
0
0
null
null
null
null
UTF-8
C++
false
false
58
cpp
#include "qfirebase.h" QFireBase::QFireBase() { }
[ "phonex@devkit.cc" ]
phonex@devkit.cc
8a5aab971b95db02883d20232314fe4fad3c19c2
f12e53b806ba418a58f814ebc87c4446a422b2f5
/solutions/uri/1789/1789.cpp
c14cdae8df69b14fd26b05dda0d6eeafcb2cf0b5
[ "MIT" ]
permissive
biadelmont/playground
f775cd86109e30ed464d4d6eff13f9ded40627cb
93c6248ec6cd25d75f0efbda1d50e0705bbd1e5a
refs/heads/master
2021-05-06T15:49:43.253788
2017-11-07T13:00:31
2017-11-07T13:00:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
402
cpp
#include <cstdio> int main() { int l, v, fastest; while (scanf("%d", &l) != EOF) { fastest = 0; while (l--) { scanf("%d", &v); if (v > fastest) fastest = v; } if (fastest < 10) { puts("1"); } else if (fastest < 20) { pu...
[ "deniscostadsc@gmail.com" ]
deniscostadsc@gmail.com
278610710edb06f4e8cfd21ed070aaad83328446
2eac4cb30dd9fbbf73e35c294f8549107dbeee0e
/src/Adjacency.h
1f071998066f9571840d8a5dad9345aec43f4c24
[]
no_license
patrickmacarthur/OurAdventure
9f720f8523eea467f8d101e44613a4d0f5a92183
2db5450af6601f924f8de614fb3b83ed42e98b29
refs/heads/master
2021-01-23T07:08:54.335142
2014-10-28T18:03:36
2014-10-28T18:03:36
2,129,865
0
0
null
null
null
null
UTF-8
C++
false
false
1,575
h
#ifndef ADJACENCY_H #define ADJACENCY_H /* Adjacency.h * * Author: Patrick MacArthur * * This file is part of the CS 516 Final Project */ #include <istream> #include <ostream> #include <map> #include "Direction.h" #include "Item.h" class Feature; class Map; /* * This class represents an adjacency between roo...
[ "generalpenguin89@gmail.com" ]
generalpenguin89@gmail.com
bedd6b0597395d00f57558d719997af8cb55958f
6c7cd2aecd2f055a34396cd555c3539d6bf521f1
/sm_kinematics/src/Transformation.cpp
1876fb255d4f7261f685e742d17a5c1e1a9e9a0b
[]
no_license
tsandy/Schweizer-Messer
4dc3b100bd51eee78cdf9827db0143072dd7e5d3
77ba4c6c5668526f8dc8696375d44f5a85db0208
refs/heads/master
2021-01-21T00:01:20.531790
2013-03-22T10:35:17
2013-03-22T10:35:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,250
cpp
#include <sm/kinematics/Transformation.hpp> #include <sm/kinematics/quaternion_algebra.hpp> #include <sm/kinematics/rotations.hpp> #include <sm/random.hpp> #include <sm/kinematics/UncertainHomogeneousPoint.hpp> #include <sm/kinematics/UncertainTransformation.hpp> #include <sm/kinematics/transformations.hpp> namespace...
[ "paul.furgale@gmail.com" ]
paul.furgale@gmail.com
4954df9038975808ebc26d8174fd0b0356d08d0f
1196266a7aa8230db1b86dcdd7efff85a43ff812
/VST3_SDK/public.sdk/source/vst/vstcomponent.cpp
b69241908afb1eea9822d9ea88beec28081ef010
[ "Unlicense" ]
permissive
fedden/RenderMan
c97547b9b5b3bddf1de6d9111e5eae6434e438ee
e81510d8b564a100899f4fed8c3049c8812cba8d
refs/heads/master
2021-12-11T18:41:02.477036
2021-07-20T18:25:36
2021-07-20T18:25:36
82,790,125
344
45
Unlicense
2021-08-06T23:08:22
2017-02-22T10:09:32
C++
UTF-8
C++
false
false
7,112
cpp
//----------------------------------------------------------------------------- // Project : VST SDK // // Category : Helpers // Filename : public.sdk/source/vst/vstcomponent.cpp // Created by : Steinberg, 04/2005 // Description : Basic VST Plug-in Implementation // //----------------------------------------...
[ "github.com@schrieb.de" ]
github.com@schrieb.de
b54eacb64f1d68645984c5b1e71e92db1c534771
332515cb827e57f3359cfe0562c5b91d711752df
/Application_UWP_WinRT/Generated Files/winrt/impl/Windows.UI.Xaml.Printing.2.h
5e5ea5bc06e58dbf3fb9e73050c826b0a0063b8c
[ "MIT" ]
permissive
GCourtney27/DX12-Simple-Xbox-Win32-Application
7c1f09abbfb768a1d5c2ab0d7ee9621f66ad85d5
4f0bc4a52aa67c90376f05146f2ebea92db1ec57
refs/heads/master
2023-02-19T06:54:18.923600
2021-01-24T08:18:19
2021-01-24T08:18:19
312,744,674
1
0
null
null
null
null
UTF-8
C++
false
false
4,542
h
// WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.201113.7 #ifndef WINRT_Windows_UI_Xaml_Printing_2_H #define WINRT_Windows_UI_Xaml_Printing_2_H #include "winrt/impl/Windows.UI.Xaml.1.h" #include "winrt/impl/Windows.UI.Xaml.Printing.1.h" WINRT_EXPORT namespace winrt::Windows::UI::Xaml::Printi...
[ "garrett1168@outlook.com" ]
garrett1168@outlook.com
1a9621510a5890e6f3891087573b7d14d8e3f50b
794decce384b8e0ba625e421cc35681b16eba577
/tensorflow/core/data/service/snapshot/utils.h
3ea632e5e304dbb17318c166b6eb6c58c530abb7
[ "LicenseRef-scancode-generic-cla", "Apache-2.0", "BSD-2-Clause" ]
permissive
911gt3/tensorflow
a6728e86100a2d5328280cfefcfa8e7c8de24c4c
423ea74f41d5f605933a9d9834fe2420989fe406
refs/heads/master
2023-04-09T14:27:29.072195
2023-04-03T06:20:23
2023-04-03T06:22:54
258,948,634
0
0
Apache-2.0
2020-04-26T05:36:59
2020-04-26T05:36:58
null
UTF-8
C++
false
false
1,592
h
/* Copyright 2022 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or a...
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
90e7de7b20078ef820c8452dca297570de5bbe97
959e014804f834564af221244cfb858a76f0907e
/src/NN/CellList/CellNNIteratorRuntime.hpp
b8c6d5c600658a200aad127391c7ee369464f09e
[]
no_license
rurban/openfpm_data_1.1.0
4626ab6fba2098c2d24f3634f3e2cf75c29eb18f
e8bb5c4ba150d13596b11daa40098612b7638c81
refs/heads/master
2023-06-24T16:29:45.223597
2019-06-05T15:23:18
2019-06-05T15:23:18
144,209,213
0
0
null
null
null
null
UTF-8
C++
false
false
5,532
hpp
/* * CellNNIteratorRuntime.hpp * * Created on: Nov 18, 2016 * Author: i-bird */ #ifndef OPENFPM_DATA_SRC_NN_CELLLIST_CELLNNITERATORRUNTIME_HPP_ #define OPENFPM_DATA_SRC_NN_CELLLIST_CELLNNITERATORRUNTIME_HPP_ #include "util/mathutil.hpp" #define FULL openfpm::math::pow(3,dim) #define SYM openfpm::math::po...
[ "incardon@mpi-cbg.de" ]
incardon@mpi-cbg.de
ff2bc2760f6a38329c29c8103fd9ac79b6d2a8e9
b13299265bb464aa42a73ba16ab02de672328337
/include/lemviewer.h
851e5b135bcf37936c872b4d93f4dc8cbc7234bd
[]
no_license
jamie124/DCPU-Developer
65f98b33bb9420f1597bd0d2ff166924df9848db
83e5e952872a054a44badc188d9a91390eaccc4c
refs/heads/master
2021-01-01T15:36:11.234309
2013-01-19T11:40:45
2013-01-19T11:40:45
4,083,735
2
0
null
null
null
null
UTF-8
C++
false
false
3,417
h
#ifndef _LEMVIEWER_H #define _LEMVIEWER_H #include <QGLWidget> #include "constants.h" #include "emulator.h" #include <QMutex> const int CHAR_WIDTH = 4; const int CHAR_HEIGHT = 8; const int COLUMNS = 32; const int ROWS = 12; const int WIDTH = COLUMNS * CHAR_WIDTH; const int HEIGHT = ROWS * CHAR_HEIGHT; // Size o...
[ "jtwhitwell124@gmail.com" ]
jtwhitwell124@gmail.com
9384681a8ebcae72126edc49a2f1a1bd6af8758e
e132d5b086464fe0651223df74f06ff16dfbdcff
/example/doc/http_examples.hpp
4cd879ae33d50860d75cdddada4cbb427748f006
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
shibing/beast
fa1de3a19ecd1bf55120b92e4ebdf9cf99894f24
c495f946c92c1175d30e1e8e60d412c3a30025b4
refs/heads/develop
2021-01-02T22:56:23.222703
2017-08-03T15:53:12
2017-08-03T15:53:12
99,427,713
1
0
null
2017-08-05T14:29:21
2017-08-05T14:29:21
null
UTF-8
C++
false
false
35,802
hpp
// // Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com) // // 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) // // Official repository: https://github.com/boostorg/beast // #include <boost/beas...
[ "vinnie.falco@gmail.com" ]
vinnie.falco@gmail.com
b8858cf97fd7aab067a4c9453ac9560d552b4104
a15ca13cce9b7abd1ae3ddaa255eb452b4b6f557
/examples/compressor/ex_compressor.cpp
c96a6a88579c9ff4a38c4e661534993681117c1f
[ "MIT" ]
permissive
jrepp/DaisySP
1b0dd4981ed02b5a04f560ff80635e62ea1c45ee
cc68b240424538c498b5c01b73ae44038458da2b
refs/heads/master
2021-02-26T20:39:35.093106
2020-03-06T21:32:20
2020-03-06T21:32:20
245,552,003
1
0
null
2020-03-07T02:06:45
2020-03-07T02:06:44
null
UTF-8
C++
false
false
2,155
cpp
#include "daisysp.h" #include "daisy_seed.h" // Shortening long macro for sample rate #ifndef SAMPLE_RATE #define SAMPLE_RATE DSY_AUDIO_SAMPLE_RATE #endif // Interleaved audio definitions #define LEFT (i) #define RIGHT (i+1) using namespace daisysp; static daisy_handle seed; static Compressor comp; // Helper Modul...
[ "stephen.p.hensley@gmail.com" ]
stephen.p.hensley@gmail.com
04f3bf59a6968978a904c83f0712ca5e0ffa488f
be8718f6882f2b4b124b245d10d1d05c2e09a901
/Engine/Source/Shared/Import/Mdl/MdlNode.cpp
124f9d419de8f8cb5e8219e2d627270585d87776
[]
no_license
kolhammer/Psybrus
fd907a8e25b488327846d46853ca219c55cca81b
21c794568eed41aaacb633cd87dedd5ce2793115
refs/heads/master
2016-09-05T08:58:04.427316
2012-03-19T11:33:32
2012-03-19T11:33:32
3,031,999
1
1
null
null
null
null
UTF-8
C++
false
false
6,811
cpp
/************************************************************************** * * File: MdlNode.cpp * Author: Neil Richardson * Ver/Date: * Description: * Model node. * * * * **************************************************************************/ #include "MdlNode.h" #include "MdlMesh.h" #include "MdlMorph....
[ "richyneil@gmail.com" ]
richyneil@gmail.com
922f4765eedff3059156dd94eda2a1b6056103b8
da33d7b0d05c8e3d3989dcbae0020594169350a8
/public/klein/detail/inner_product.hpp
d80170c7fe73bb921b9656ebf6fd45513b92d49d
[ "MIT" ]
permissive
shrijitsingh99/klein
a2a03bffd07dda1ef53ba793ac4c5f69bc7096d7
9aa59b9e95e8ab607cdc415782cac6ae1b1a86fa
refs/heads/master
2021-02-09T11:06:19.602097
2020-03-02T03:07:01
2020-03-02T03:07:01
244,275,143
2
0
MIT
2020-03-02T03:51:54
2020-03-02T03:51:53
null
UTF-8
C++
false
false
50
hpp
#pragma once #include "x86/x86_inner_product.hpp"
[ "jeremycong@gmail.com" ]
jeremycong@gmail.com
4c76f75b20942941b0554679ea78f9c18c709f74
c27df8ce4903389256023f71fc8004c6caf41d21
/examples/common/15_tim_usonic/main.cpp
6de553fd9ed6fd2a348a75f8890e2366befaf687
[]
no_license
atu-guda/stm32oxc
be8f584e6978fa40482bbd5df4a23bd6b41329eb
591b43246b8928329642b06bad8b9de6802e62ed
refs/heads/master
2023-09-03T08:42:36.058233
2023-09-02T19:15:15
2023-09-02T19:15:15
34,165,176
5
0
null
null
null
null
UTF-8
C++
false
false
3,877
cpp
#include <oxc_auto.h> #include <oxc_tim.h> using namespace std; using namespace SMLRL; USE_DIE4LED_ERROR_HANDLER; BOARD_DEFINE_LEDS; BOARD_CONSOLE_DEFINES; const char* common_help_string = "App to test US-014 ultrasonic sensor with timer" NL; TIM_HandleTypeDef tim_h; void init_usonic(); // --- local commands; int...
[ "atu@nmetau.edu.ua" ]
atu@nmetau.edu.ua
fde7c6cfbc63c7a0c1dd0d967b977e264112cbc1
618729b2291385cd51e395db1dbca933439312b4
/os.cpp
45d040c176383938996e8c33040817a91f08459f
[]
no_license
grih9/fluffyOS
bfe2bfc7de37366c57d34fa50d1421c344b6a682
f3ed3efd5863d857d76065b04216aa3298a09e0c
refs/heads/master
2023-04-11T07:23:10.383620
2021-04-18T15:49:27
2021-04-18T15:49:27
359,168,571
0
0
null
null
null
null
UTF-8
C++
false
false
1,815
cpp
#include <stdio.h> #include "sys.h" #include "rtos_api.h" // Инициализация стеков void InitializeStacks(int numStack) { char cushionSpace[100000]; cushionSpace[99999] = 1; // отключаем оптимизацию массивов for (int i = 0; i <= MAX_TASK; ++i) { if (!setjmp(InitStacks[i])) { continue; ...
[ "tolstikov.gn@edu.spbstu.ru" ]
tolstikov.gn@edu.spbstu.ru
8788db759d2467f2e5ce1f3747107a50c10284ea
c102d77e7e363d043e017360d329c93b9285a6be
/Sources/Samples/AI/UnitPathManager.h
4c85b601bbdd834052649cd9ee5cd19276a8484b
[ "MIT" ]
permissive
jdelezenne/Sonata
b7b1faee54ea9dbd273eab53a7dedbf106373110
fb1b1b64a78874a0ab2809995be4b6f14f9e4d56
refs/heads/master
2020-07-15T22:32:47.094973
2019-09-01T11:07:03
2019-09-01T11:07:03
205,662,360
4
0
null
null
null
null
UTF-8
C++
false
false
3,466
h
/*============================================================================= UnitPathManager.h Project: Sonata Engine Copyright �by7 Julien Delezenne =============================================================================*/ #ifndef _SE_UNITPATHMANAGER_H_ #define _SE_UNITPATHMANAGER_H_ #include "Common.h" #in...
[ "julien.delezenne@gmail.com" ]
julien.delezenne@gmail.com
943e8c302a43a8030047d7f7c3e2006477bcda7a
f51b3b7f6a5110a704d5bd4e7920fc675a75f2bd
/src/lang/builtins/transforms/tile.cpp
e27d08d28f82a9ee5393867bf9f56f8e96f46bd0
[ "MIT" ]
permissive
v-dobrev/occa
6857905566e39334d47ff2efa6a8e5be9a085cde
58e47f5ccf0d87f5b91e6851b2d74a9456c46b2c
refs/heads/master
2020-03-26T07:50:51.784589
2018-08-26T19:10:56
2018-08-26T19:46:22
144,674,039
0
0
MIT
2018-08-14T05:45:39
2018-08-14T05:45:38
null
UTF-8
C++
false
false
12,149
cpp
/* The MIT License (MIT) * * Copyright (c) 2014-2018 David Medina and Tim Warburton * * 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 t...
[ "dmed256@gmail.com" ]
dmed256@gmail.com
a43f9f1dfb76961c6f5f3af11fd259bfd4d34983
fc987ace8516d4d5dfcb5444ed7cb905008c6147
/third_party/WebKit/Source/wtf/HashTraits.h
68a18dd753fc4f94dcb94c71587b54a8c6724d89
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "BSD-3-Clause" ]
permissive
nfschina/nfs-browser
3c366cedbdbe995739717d9f61e451bcf7b565ce
b6670ba13beb8ab57003f3ba2c755dc368de3967
refs/heads/master
2022-10-28T01:18:08.229807
2020-09-07T11:45:28
2020-09-07T11:45:28
145,939,440
2
4
BSD-3-Clause
2022-10-13T14:59:54
2018-08-24T03:47:46
null
UTF-8
C++
false
false
15,939
h
/* * Copyright (C) 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All rights * reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at...
[ "hukun@cpu-os.ac.cn" ]
hukun@cpu-os.ac.cn