blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
c05c44be9080fb9e244144de846d2378d35578eb
a7caaf953a0849f6081e44382da74a600a86b3da
/opencv-2.4.9/modules/legacy/src/decomppoly.cpp
0cb10551c15b3fff614fff308f26a21f02c6f2bf
[ "Apache-2.0", "BSD-3-Clause" ]
permissive
watinha/collector
22d22116fc1dbdfeec3bddb05aa42d05efe5b5b4
fc4758f87aad99084ce4235de3e929d80c56a072
refs/heads/master
2021-12-28T11:12:50.548082
2021-08-19T20:05:20
2021-08-19T20:05:20
136,666,875
2
1
Apache-2.0
2021-04-26T16:55:02
2018-06-08T21:17:16
C++
UTF-8
C++
false
false
20,505
cpp
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, instal...
[ "watinha@gmail.com" ]
watinha@gmail.com
3c0936fd3bf84ad5f735cce48b486e50ff29ee23
b5c554985e2915e7aa3c3089c19c24b239abbddd
/stl/queue/queue.cpp
cc8092431afa789867e67b7171efc9faa3473656
[]
no_license
njylll/gitcppp
a03dac99d559c4ca092db4ea59056ac4dba27289
c1dd51a45fbe5f25255bda5e091e874f3a642516
refs/heads/master
2023-06-11T15:54:47.035606
2021-07-03T12:25:20
2021-07-03T12:25:20
374,607,890
0
0
null
null
null
null
UTF-8
C++
false
false
819
cpp
#include <iostream> #include <queue> #include <string> using namespace std; class Person { public: Person(string name,int age):m_Name(name),m_Age(age){} string m_Name; int m_Age; }; void test() { queue<Person>q; Person p1("唐僧",99); Person p2("zhu", 88); Person p3("shu",89); Person...
[ "18962893126@163.com" ]
18962893126@163.com
38fa6ade0afe69d60b28354b728e4d3db711a691
e585a98e4d545f53483473c3b9b600452d5c339b
/Calculator/Calculator/Add_Expr_Node.h
382eef8cf8de73853ea84e61774137dfe9bcd594
[]
no_license
matajack/Cpp
853570f01e16c57c7e8841160a3e77b4d31c8e23
d5e0551c5371652ad74aefefc3d97ddf3c59f102
refs/heads/master
2022-11-10T06:43:54.037001
2020-06-11T03:30:36
2020-06-11T03:30:36
271,378,201
0
0
null
null
null
null
UTF-8
C++
false
false
288
h
#pragma once #include "Binary_Expr_Node.h" #include "Expr_Node_Visitor.h" class Add_Expr_Node : public Binary_Expr_Node { public: Add_Expr_Node(void); virtual ~Add_Expr_Node(void); virtual int eval() const; virtual void accept(Expr_Node_Visitor & v); friend class Eval_Expr_Tree; };
[ "matthewajackson97@gmail.com" ]
matthewajackson97@gmail.com
7e402bbac16864108555a4cded45a7e6b484dc71
0ff8c31449f2d6b3c15458ebf9dc83000b9d0a45
/src/renderer.h
54d5a1c634c2f6037f4c79324067c11cb4f30a1f
[]
no_license
michkjns/Kweek
7ab6f09a7dd8f92549f3966a606111cc3a033b4e
70cf473c4068f86e1defca8440a55e6a17404f13
refs/heads/master
2021-01-10T06:31:43.220029
2016-01-11T12:47:37
2016-01-11T12:47:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,530
h
#ifndef _RENDERER_H #define _RENDERER_H #include "template.h" #include "transform.h" #include <vector> #include "input.h" #define NEARPLANE 1.0f namespace Tmpl8 { class Surface; class SceneGraph; class Scene; class SceneNode; class Vertex { public: Vertex() { pos = float3(0,0,0), uv = float2(0,0), onse...
[ "michkjn@gmail.com" ]
michkjn@gmail.com
c94573d0533e4c61cda7cbc2228b190f1f5d3b5b
d8eb2c9890c40f3efb972236259b47ff7945c355
/5. Miscellaneous/LeetCode/900-999/905. Sort Array By Parity.cpp
3248072d99c93456f50f75d48d08e1aa3675b8fe
[ "MIT" ]
permissive
JustinSDE/Algorithms
c2a6ac84a9732cdc19f0f2f6a4e50d88567dfdaa
332b04db7c8038997d4992fb27630d394deedece
refs/heads/master
2020-05-18T05:06:14.876361
2019-01-25T15:05:28
2019-01-25T15:05:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
315
cpp
class Solution { public: vector<int> sortArrayByParity(vector<int> &A) { int slow = 0, fast = 0; while (fast < A.size()) { if (A[fast] % 2 == 0) { swap(A[fast], A[slow]); slow++; } fast++; } return A; } };
[ "hinderking@126.com" ]
hinderking@126.com
838ce90314d012e581f3ca8487f98ed88eda441e
5f5c557d53c2975ce09e5ce34060b5e42f7b2c90
/include/fc/git_revision.hpp
6232f3c3c5674cdc4ae675540ff9c20779d664eb
[ "MIT" ]
permissive
Achain-Dev/Achain_linux
c27b8c1ea0ae6b9c8db9b8d686849af07d7c255b
8c6daad526c84fa513f119206e45f62eb68b8a86
refs/heads/master
2022-04-10T23:25:12.234124
2020-03-29T12:07:39
2020-03-29T12:07:39
108,964,152
27
25
MIT
2018-03-28T08:33:18
2017-10-31T08:06:09
C++
UTF-8
C++
false
false
167
hpp
#pragma once #include <stdint.h> namespace fc { extern const char* const git_revision_sha; extern const uint32_t git_revision_unix_timestamp; } // end namespace fc
[ "lipu@new4g.cn" ]
lipu@new4g.cn
431516d528a6ddead69c76140b952bb6b692003e
43de8c881430f53802514f0051fbe42047c5fda1
/src/phonebook/Reader.h
34809226d08f433d8ce2d9cebbd7921b716bd230
[ "ISC" ]
permissive
DavidArutiunian/algorithms
15845b89de941e7c8cd5a56b0e08c450fc7cb461
b0c9a52edb6fda3022e1a2c4e68b077fe4c0f14f
refs/heads/master
2021-08-29T17:54:53.064754
2019-06-08T13:54:46
2019-06-08T13:54:46
148,915,695
1
0
ISC
2021-08-11T02:21:20
2018-09-15T15:43:34
C++
UTF-8
C++
false
false
219
h
#ifndef ALGORITHMS_READER_H #define ALGORITHMS_READER_H template <typename T> class Reader { protected: T mContent; public: virtual T get() = 0; virtual void clear() = 0; }; #endif //ALGORITHMS_READER_H
[ "arutunjan666@mail.com" ]
arutunjan666@mail.com
6f9ed2815014bd8d6efed2778c7a15b8e891ef9f
38c10c01007624cd2056884f25e0d6ab85442194
/chrome/browser/sessions/tab_loader.h
11c7dbd8d3a8ef01c35a1bb1d679a759c034a6e7
[ "BSD-3-Clause" ]
permissive
zenoalbisser/chromium
6ecf37b6c030c84f1b26282bc4ef95769c62a9b2
e71f21b9b4b9b839f5093301974a45545dad2691
refs/heads/master
2022-12-25T14:23:18.568575
2016-07-14T21:49:52
2016-07-23T08:02:51
63,980,627
0
2
BSD-3-Clause
2022-12-12T12:43:41
2016-07-22T20:14:04
null
UTF-8
C++
false
false
5,694
h
// Copyright 2015 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 CHROME_BROWSER_SESSIONS_TAB_LOADER_H_ #define CHROME_BROWSER_SESSIONS_TAB_LOADER_H_ #include <list> #include <set> #include "base/memory/memory_...
[ "zeno.albisser@hemispherian.com" ]
zeno.albisser@hemispherian.com
c42906f2e36419b10a3e2ad029184891b73c01cb
b9b5a0da25392ab287803c6599120654185b7925
/문제18) 층간소음.cpp
cfaabdfa7435727951ebb24ac6cd519e0bfaf49b
[]
no_license
jyok0120/algorithm_inflearn
86b41b02806d3e1cf47eb967035dac9c2277591d
d85f58a0865cc093872e9e70b521d99428dfee53
refs/heads/master
2023-03-09T12:40:46.654470
2021-02-14T17:04:38
2021-02-14T17:04:38
336,522,391
1
0
null
null
null
null
UTF-8
C++
false
false
479
cpp
#include <iostream> using namespace std; int main(){ int N, M; cin >> N >>M; int data[N]; for(int i = 0 ; i < N ; i++) cin >> data[i]; int cnt = 0, ans = cnt; for(int i = 0 ; i < N ; i++) { if(data[i] > M) cnt++; else { if( ans < cnt) ans ...
[ "jyok0120@gmail.com" ]
jyok0120@gmail.com
b09dd3be4ea07c922bd44e44aab3a8c2819ac49d
319f8a258660eb7f8ed7f3fdfaca522f8016d52b
/FindPassword.h
f46951bee8bcfb27bace4b01d1dc6f7213dbed41
[]
no_license
17dx/7zip
48255d09f889d81a4afcba9df21830f4adfc962f
674d70b58c337d2b10a5aa388cdd9abafd3c10cb
refs/heads/master
2021-01-01T17:53:29.113997
2017-07-24T13:04:08
2017-07-24T13:04:08
98,188,420
1
0
null
null
null
null
UTF-8
C++
false
false
2,792
h
#ifndef ARHIVE7ZIP_H #define ARHIVE7ZIP_H #include <string> #include <exception> //для exception #include "windows.h" #include "GenPassword.h" using std::string; class ex_error_load_7zdll : public std::exception{}; class ex_error_load_Unzip_from_7zdll : public std::exception{}; class ex_error_load_OpenArhive_from_7...
[ "power_words@mail.ru" ]
power_words@mail.ru
ce3597a4967c05dcb272bda830ae5b48d911bf55
195bcce790744a805c14e4300cfe5c7117a25bd2
/oop_exercise_06/TStackItem.cpp
050dfca287ffc05cdde9a1c44b1267df272ab101
[]
no_license
kwk18/OOP
79516e9c5e21ac42efe725d7293b5f6c4d1f7a87
409d3203b573637b34b7c325ec8363cf14f28f1a
refs/heads/master
2022-07-16T16:43:43.901081
2020-05-19T14:45:43
2020-05-19T14:45:43
257,073,630
0
0
null
null
null
null
UTF-8
C++
false
false
554
cpp
#include "TStackItem.h" #include <iostream> TStackItem::TStackItem(const std::shared_ptr<TBinTreeItem<Figure>> &item) { this->item = item; this->next = nullptr; } std::shared_ptr<TStackItem> TStackItem::SetNext(std::shared_ptr<TStackItem> &next) { std::shared_ptr<TStackItem> old = this->next; this->ne...
[ "noreply@github.com" ]
noreply@github.com
e0a3275a690e298b758d57dd429cfe82fff9ec68
9452341b3252759e1a9133b5e4676993e27f4dd8
/RayleighBenard/NSeqns/nonUniformSigma/init_0/theta.buoyant
02c474417ed8427a77411294079a62ad7bdf9ace
[]
no_license
AtmosFOAM/hilaryRun
8af184499fe2001acb659dcd8b82920c50a76dc0
6eb682dbc9498e529d690bcb4a7b9cad179e8ea4
refs/heads/master
2023-09-04T07:33:52.157194
2023-09-01T07:38:11
2023-09-01T07:38:11
113,987,213
0
0
null
null
null
null
UTF-8
C++
false
false
1,221
buoyant
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: dev | ...
[ "h.weller@reading.ac.uk" ]
h.weller@reading.ac.uk
3f47e7dceebec7bb817da175c7fe6b61bbd60666
5809b53fc9920f0cce03d3352b3aae87a7412e3c
/programacion_3/arboles/arbol binario de busqueda/main.cpp
466ca4c9ac35e260116d77912084c93598f3f8d7
[]
no_license
valbornoz/PRs_ULA
504e2b87c82c60c2ff188a3a11c08cc57c7e544d
f57fa9c213ad5b5de4febd428962736625664ef9
refs/heads/master
2022-11-14T15:00:44.826471
2020-06-22T19:10:43
2020-06-22T19:10:43
274,209,485
0
0
null
null
null
null
UTF-8
C++
false
false
1,757
cpp
#include <iostream> #include "binNode.h" #include "binTree.h" #include "binBusTree.h" using namespace std; void imprime(BinNode<int>* aux,int level,int pos){ cout<<" Clave "<<KEY(aux)<<" Pos "<<pos<<endl; } int main() { int preorden[8]={5,8,4,6,3,9,2,1}; int inorden[8]={6,4,8,3,5,2,9,1}; BinTree<in...
[ "albornoz1995@gmail.com" ]
albornoz1995@gmail.com
d7201defb73b1f6dea14196c1103991c9afe7f5f
d9a3f5a2065c56cdefeeaed9a417d3f73ff7a395
/Homework/HW5/HW5_4/Inventory.h
bf97a6a1f6690d74f3b38177f5c8f70ff608dc05
[]
no_license
iiSmiley/CIS-17A
f7c0bdb7a0a7d1f8c0cbc86d13ed5d129364de19
403ec07ced79f25095c600acb850d7f3fabce5ee
refs/heads/master
2022-04-10T16:47:41.312539
2020-03-09T20:35:42
2020-03-09T20:35:42
246,137,484
0
0
null
null
null
null
UTF-8
C++
false
false
563
h
#ifndef INVENTORY_H #define INVENTORY_H using namespace std; #include <iostream> #include <iomanip> #include <cctype> #include <cstring> class Inventory { private: int itemNumber; int quantity; double cost; double totalCost; public: Inventory(); Inventory(int,int,double); void setItemNumbe...
[ "smileyheart02gmail.com" ]
smileyheart02gmail.com
5f5184b202a94244b79bbecb5047180986004ae6
09035f75bb5ca0ce361023b061fb2c25090b1ca8
/gdal/ogr/ogrsf_frmts/svg/ogr_svg.h
d3722464871cf8268b4f78ea16bdeec4baaab3db
[ "LicenseRef-scancode-info-zip-2005-02", "LicenseRef-scancode-warranty-disclaimer", "MIT", "LicenseRef-scancode-public-domain" ]
permissive
aashish24/gdal-cmake
321f560f9af42dd3c03c614865578bb661b2f925
d00996ea017ce9c574d77dfa417f21ce70e8428e
refs/heads/master
2020-12-24T17:55:05.040674
2011-11-13T21:46:07
2011-11-13T21:46:07
2,739,580
3
1
null
null
null
null
UTF-8
C++
false
false
6,126
h
/****************************************************************************** * $Id$ * * Project: SVG Translator * Purpose: Definition of classes for OGR .svg driver. * Author: Even Rouault, even dot rouault at mines dash paris dot org * *********************************************************************...
[ "rouault@f0d54148-0727-0410-94bb-9a71ac55c965" ]
rouault@f0d54148-0727-0410-94bb-9a71ac55c965
fbf37108556d083fe5aac5bed8320829b1d3951c
ccb6d2726b7522af43004875e2e233bc1088774a
/carma/szaarrayutils/net_monitor.cc
b55b673ae5c0bed952f1e791c90758598b5c8f9e
[ "FSFUL" ]
permissive
mpound/carma
a9ab28ed45b3114972d3f72bcc522c0010e80b42
9e317271eec071c1a53dca8b11af31320f69417b
refs/heads/master
2020-06-01T11:43:47.397953
2019-06-07T15:05:57
2019-06-07T15:05:57
190,763,870
2
0
null
null
null
null
UTF-8
C++
false
false
19,117
cc
#include <stdlib.h> #include <string.h> #include <sys/time.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <sys/ioctl.h> #include <unistd.h> #include "carma/szaarrayutils/monitor.h" #include "carma/szaarrayutils/lprintf.h" #include "carma/szaarrayutils/szaregs...
[ "22331890+mpound@users.noreply.github.com" ]
22331890+mpound@users.noreply.github.com
16a3f368c0d6916e2dfe613a2697545973ab2ff7
8d943bc9ef3eba8b726a2db5dd4d6f6893574084
/touchtoolbar/include/sdk/tPrintf.h
a4eda86da900dcddaa6d1d6f9865836a0e9c38e2
[]
no_license
wuguangchuang/Ubuntu_touchProject
90a6c381910fbddeba95ec00063f28ddf60ea9a7
b28c927326ae36392702baf3f1a4bbb642a156ab
refs/heads/main
2023-02-14T05:24:45.871397
2021-01-07T11:42:38
2021-01-07T11:42:38
327,592,906
0
0
null
null
null
null
UTF-8
C++
false
false
1,719
h
#ifndef TPRINTFG_H #define TPRINTFG_H #include <QDebug> #include <QFile> #include <QIODevice> #include <QTextStream> #include "/home/xjf/Desktop/touchProject/touch/touchsdk/include/touch_global.h" #include "tdebug.h" //#if defined(TOUCH_LIBRARY) //# define TOUCHSHARED_EXPORT Q_DECL_EXPORT //#else //# define TOUCHS...
[ "wuguangchuang.cicoe.cc" ]
wuguangchuang.cicoe.cc
8f869bbfba86a324f8a2b8195c35b03d44fbce47
194bb7acfd9bb9b766df904747bad0a00caccec9
/palindrm.cpp
2160e4c8c1e5f644b88def90c32c6b591a981582
[]
no_license
ThamilAmudha/pinky1
77bbe72e6d055f95cc8dfe0263f814c7c0d17f38
4e56414d11baac49ca62cbc1e1e62261b73f3722
refs/heads/master
2020-06-22T11:11:51.459664
2019-08-14T12:53:18
2019-08-14T12:53:18
197,704,930
0
0
null
null
null
null
UTF-8
C++
false
false
349
cpp
#include <iostream> using namespace std; int main() { int n=0,i,j,c=0; char a[100],b[100]; cin>>a; for(i=0;a[i]!='\0';i++) { n++; } for(j=0;a[j]<n;j++) { b[j]=a[n-j-1]; if(b[j]!=a[j]) { c++; } } if(c==0) { cout<<"yes"; } else { cout<...
[ "noreply@github.com" ]
noreply@github.com
faee0130b21121153166ab93ab853e39675a931f
d0a1672648d460f759e76baa4375ce6e69fa3573
/2012874007김용주/20181127_structure/structure.cpp
95119acbc175594e9be0fdcbf60d9958fc80f677
[]
no_license
hellohiju/cp2012874007
7ea04508d6e20b2b61da12a0010f6276dfa2c93a
2eec05bc53612c00d422bc2e5150656e250cbf2f
refs/heads/master
2020-03-30T19:01:38.651824
2018-12-11T07:41:07
2018-12-11T07:41:07
149,241,827
0
0
null
null
null
null
UHC
C++
false
false
2,225
cpp
// 프로그래밍언어의 기능 // 1. 컴퓨터의 기능(순서제어/연산/메모리접근) // 2. 요약화(절차적:함수/선언적:구조체) // 구조체(structure) // 구성요소 + 요소 간의 관계 #include <stdio.h> // 데이터 타입의 별명 선언 typedef int myIntType; // 자료형 "int" 앞으로 "myIntType"라고도 부르겠다. /* // stucture declaration: 기존의 데이터 타입으로 구성하여 새로운 데이터 타입을 선언 struct complex { double real; // member variable...
[ "helloju48@gmail.com" ]
helloju48@gmail.com
65f1cccbce548f5792b6e97424364d272050ee22
771204e2e52db6c1c80d285b23dea2ba5982d42e
/Sphere Online Judge 250 Most Solved Marathon With No Overlapping Problem/AnakRantauMenderita/Pamungkas/17.CANDY3.cpp
2a5be2a28528e9d1338f85aa4cb44fcd2590dfd2
[]
no_license
pamungkaski/competitive-programming-2017
e1911868aa6b2bc3319c3347fa3fac3a6f25c58b
cf6d5b4d8a30059b61eac52c2a0eb54fe5a9ee24
refs/heads/master
2021-01-23T03:21:49.289121
2017-10-15T09:03:16
2017-10-15T09:05:45
86,073,476
0
0
null
2017-05-31T16:19:00
2017-03-24T13:53:40
Java
UTF-8
C++
false
false
524
cpp
// // Created by Ki Ageng Satria Pamungkas on 5/28/17. // #include <iostream> #include <cstdint> using namespace std; int main(){ uint64_t t,n, x, sum; cin >> t; //ios::sync_with_stdio(false); for (uint64_t i = 0; i <t ; ++i) { cout << endl; cin >> n; sum = 0; for (int j...
[ "pamungkas.kiagengsatria@outlook.com" ]
pamungkas.kiagengsatria@outlook.com
d044b55dc037d2067c65b8d828e74ac08ba63ee5
6898da9a75574215d01e5b44b02a0f5dfd1edbea
/turnRight.cpp
ab688bfb192142bfc604b9a534843d010674a18a
[]
no_license
Scotty0002/ENGR101-2017
cdc84cc0f613456388fbe097f97eda22dc85b8ac
bfdf03c7d73f4f480b7084c846fe287096685948
refs/heads/master
2021-01-19T11:42:00.982816
2017-04-12T00:45:52
2017-04-12T00:45:52
87,990,686
0
0
null
null
null
null
UTF-8
C++
false
false
85
cpp
nt turn_left(int duration){ set_motor(1,-100); set_motor(2,200); sleep1(duration,0);
[ "noreply@github.com" ]
noreply@github.com
5e09dd201282ae70e4e4f534437878085e49a84e
e09ebf41aaa9542f17ca87e1ab94dc6a2041d112
/leetCode/longestCommonPrefixv2.cpp
66b27f0c0de2818b72bf5b9974a306181466f19c
[]
no_license
angelmotta/CompetitiveProgramming
b3a1af3cf8d2aa8f7c6f775c7135156438e79191
2e5e0ccf33d21f8741dd6131012d62d3c445efe0
refs/heads/master
2021-07-03T12:28:50.501286
2020-09-08T20:17:51
2020-09-08T20:17:51
165,057,684
2
0
null
null
null
null
UTF-8
C++
false
false
1,905
cpp
#include <iostream> #include <vector> #include <algorithm> #include <string> using namespace std; class Solution { public: string longestCommonPrefix(vector<string>& strs) { // Check trivial cases if(strs.size() == 0) return ""; if(strs.size() == 1) return strs[0]; // Get lcp betwe...
[ "angelmotta@gmail.com" ]
angelmotta@gmail.com
f2670e3d0567fd72f5e45d54255627ca573f2e38
0ab690fa03045a1752edb344b9ecc71ad55f6cd0
/esercizi_CPP/Esercizi_vari/procedure_funzioni_verifica.cpp
fb0bb01e1c7cbcdf23ffc8f22960765aa3de47fb
[]
no_license
MatteoBartoli03/CPP
72bbbd1b57b7e75f855f950f18be81f0817448f9
55c2c61567c6b59d7c07cd014430248766125f8c
refs/heads/master
2020-12-19T19:13:48.154720
2020-12-09T19:34:17
2020-12-09T19:34:17
235,825,962
0
0
null
null
null
null
UTF-8
C++
false
false
804
cpp
#include <iostream> using namespace std; //esempi di funzioni void ciao() {} int hello() { //ritorna un intero return 0; } // for for (int i = 0; i < 10; i++) {} int main() { //dichiara variabili /*variabili usate con lo "switch" int option; bool loop = true; */ /* switch while(loop) { ...
[ "matteobartoli01@gmail.com" ]
matteobartoli01@gmail.com
aa092bfd90b82cbd659a68b09f504a1828770ce9
e8ec6b67ed89cf14d8cd57e077c37ae86ed0b459
/ExceptionHandling.cpp/RelationalOperators.cpp
f3b8e163128108e26ed2342f39bdb8ea490e237e
[]
no_license
Datta2901/OOPS_Elab
9c031b3ba01a3ebaaae156d36fe42243f8cf02fa
8165d4a424837b978aeeafd3ebc61df18abe01a6
refs/heads/master
2023-07-28T12:19:11.522328
2021-09-13T06:24:40
2021-09-13T06:24:40
405,854,259
0
0
null
null
null
null
UTF-8
C++
false
false
981
cpp
#include <iostream> using namespace std; int main() { int a,b; cin>>a>>b; try { if(a>0 && b>0) { if(a>b) { cout<<a<<"<"<<b<<"=0"<<endl; cout<<a<<"<="<<b<<"=0"<<endl; cout<<a<<"="<<b<<"=0"<<endl; cout<<a<<">"<<b<<"=1"<<endl; cout<<a<<">="<<b<<"=1"<<endl...
[ "manikanta2901@gmail.com" ]
manikanta2901@gmail.com
302210329e56eef56d0887d1b7e8dda369c57fea
10f67f9503e52ed4a8bb757d470f2c3b8fe0cea1
/2021_Team3_Project/2021_Team3_Project/water.h
781011eae554e662c9e02eb74008a6f8b67f837c
[]
no_license
Mesarthim-14/2021_Team3_Project
6e7a73a90c3e790d965fbdaa0f9fddebf5895ee7
f0b62a48edb1b4476c1f0ebaa4b96afb44962c80
refs/heads/master
2023-08-24T09:54:27.694543
2021-10-04T03:07:43
2021-10-04T03:07:48
373,224,774
3
0
null
2021-10-01T08:20:39
2021-06-02T15:54:25
C++
SHIFT_JIS
C++
false
false
2,031
h
#ifndef _WATER_H_ #define _WATER_H_ //============================================================================= // // 水のクラス [water.h] // Author : Konishi Yuuto // //============================================================================= //=============================================================...
[ "k.yuutosoccer@gmail.com" ]
k.yuutosoccer@gmail.com
0b6f6bb889d8c39bc329e33fca8c2992563d37e0
77bbf5ed3536ad7fa3c3c99921fd26b400a625bb
/examples/line_plot/plot3/plot3_10.cpp
60b4d8c1da0c9c03659271841b5ccda45f8ea2be
[ "MIT" ]
permissive
kurogane1031/matplotplusplus
ffc55a475c05383e958e079fad319cdd9c904a0c
44d21156edba8effe1e764a8642b0b70590d597b
refs/heads/master
2022-12-18T21:06:06.875321
2020-08-29T19:08:55
2020-08-29T19:08:55
291,301,340
0
0
MIT
2020-08-29T15:52:51
2020-08-29T15:52:50
null
UTF-8
C++
false
false
424
cpp
#include <cmath> #include <random> #include <matplot/matplot.h> int main() { using namespace matplot; auto t = iota(0,pi/500,pi); auto xt = transform(t,[](auto t){ return sin(t)*cos(10*t); }); auto yt = transform(t,[](auto t){ return sin(t)*sin(10*t); }); auto zt = transform(t,[](auto t){ return c...
[ "alandefreitas@gmail.com" ]
alandefreitas@gmail.com
9a627880ca55a339726c61dbb731c71950523ba0
cc7643ff887a76a5cacd344993f5812281db8b2d
/src/WebCoreDerived/JSSVGRenderingIntent.cpp
fc52454586f7ad88bbdfd9eea9a7cdad3a424172
[ "BSD-3-Clause" ]
permissive
ahixon/webkit.js
e1497345aee2ec81c9895bebf8d705e112c42005
7ed1480d73de11cb25f02e89f11ecf71dfa6e0c2
refs/heads/master
2020-06-18T13:13:54.933869
2016-12-01T10:06:08
2016-12-01T10:06:08
75,136,170
2
0
null
2016-11-30T00:51:10
2016-11-30T00:51:09
null
UTF-8
C++
false
false
11,235
cpp
/* This file is part of the WebKit open source project. This file has been generated by generate-bindings.pl. DO NOT MODIFY! 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...
[ "trevor.linton@gmail.com" ]
trevor.linton@gmail.com
1634b32b79f0578e10dac525ad7475c18b752a5f
8c76ed4be6213e1ffdaf070cd46ba996ff177450
/Assignment/1-Triangle/Triangle/Triangle.cpp
dcc9dc4e5a14eaf74838ffcc576b5b9ab8a939ee
[]
no_license
Tairokiya/CPP-
afac78122a63ea154e071bb7a9e2915d7272d237
8a2df894d8766e2f7cdca4718c94bc072225625f
refs/heads/master
2021-01-21T14:44:40.413782
2016-07-06T08:11:48
2016-07-06T08:11:48
57,232,992
0
0
null
null
null
null
UTF-8
C++
false
false
414
cpp
// // Triangle.cpp // Triangle // // Created by Mike on 16/3/8. // Copyright © 2016年 陈 俊达. All rights reserved. // #include "Triangle.hpp" #include <math.h> Triangle::Triangle(){ a = b = c = 0.0; } Triangle::Triangle(double ta, double tb = 0.0,double tc = 0.0){ a = ta; b = tb; c = tc; } double ...
[ "MikeBookPRO@Mike.local" ]
MikeBookPRO@Mike.local
df7b6b082106d46cf0161682439f3ebcd8552027
297a869998e2a591cdb5273cf6a8eed390f74db1
/ACMICPC/2011.cpp
a5b27f40ad8af563790b9052b6884ff4d67e42c4
[]
no_license
jaehosung/Algorithm
fbdf70bf96340a648639232c34f89467170e6e42
c9d84eb8e9bdcb951de1a7348d2e97ecb67982a8
refs/heads/master
2021-01-10T10:31:38.546980
2017-08-16T06:32:25
2017-08-16T06:32:25
43,827,393
0
0
null
null
null
null
UTF-8
C++
false
false
564
cpp
#include<iostream> #include<string> #include<vector> using namespace std; int main(){ string code; cin >> code; int n = code.size(); vector<int> vec(n+1); vec[0] = 1; vec[1] = 1; for(int i = 2; i <=n; i++){ if(stoi(code.substr(i-2,2))%10==0){ vec[i] = vec[i-2]; ...
[ "jaehossung@gmail.com" ]
jaehossung@gmail.com
993bc6287c769d49cad272c623f365620fc24e91
e103d5bb7fc178e86213abec37884ece87f8109c
/ece244lab4/Resistor.cpp
996af8c24817bf1eb380e3b4dfdaa86d23d18a1d
[]
no_license
Deep321/Circuits-Node-Network-Solver
4952d2b8d464df97149753570ce83f3d3a13a0b5
2a9e95f24d462ba0a8c8d418c1941c891d2f64d0
refs/heads/master
2016-09-06T18:30:18.688534
2014-11-18T14:15:25
2014-11-18T14:15:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,346
cpp
#include "Resistor.h" Resistor::Resistor(){ this->next=NULL; this->resistance=0; this->name=""; } Resistor::Resistor(string name_,double resistance_,int endpoints_[2],Resistor*next){ this->name = name_; this->resistance=resistance_; this->endpointNodeIDs[0]=endpoints_[0]; this->endpointNodeIDs[1]=endpo...
[ "Deeptanshu.Prasad@gmail.com" ]
Deeptanshu.Prasad@gmail.com
e1f7b9db2dfa21d66e4ad028919ac530fce11615
8dbd292c4d8d75982676bafda89c78d4539a6195
/BWPMF/src/rcpp_serialization.h
b950119f3436a78acbf6e15189f1c8b0561cdd39
[]
no_license
bridgewell/BWPMF
0552495198665ebd8ffc885fdbcad3ae55ee4866
5424c1e12aade6455aa6c8a5999e7a2707432c76
refs/heads/master
2021-01-10T12:52:25.968099
2015-11-10T04:00:48
2015-11-10T04:46:54
43,807,122
1
1
null
2015-10-08T02:58:40
2015-10-07T09:48:14
C++
UTF-8
C++
false
false
2,490
h
#ifndef __RCPP_SERIALIZATION_H__ #define __RCPP_SERIALIZATION_H__ #include <iostream> #include <fstream> #include <boost/archive/binary_oarchive.hpp> #include <boost/archive/binary_iarchive.hpp> #include <boost/archive/text_oarchive.hpp> #include <boost/archive/text_iarchive.hpp> #include <boost/iostreams/stream.hpp> ...
[ "wush@bridgewell.com" ]
wush@bridgewell.com
c736fca91e97e8cd88a505c18d4c1a0f4fd7272e
1f88ef532a08e2137a778f44869988ed85341071
/ManualMap/PEBStruct.h
ef26a68ee160da889677bf99cf456f3198201ab8
[]
no_license
fatrolls/ManualMap-Dll-Injection
3d6491aa8e5480f010149fa8289ec9837b5703ab
216bfa1085a30bdae493ed118f5d9b21b29a1c22
refs/heads/master
2023-06-10T22:42:47.035601
2021-07-07T05:11:04
2021-07-07T05:11:04
383,678,585
2
2
null
null
null
null
UTF-8
C++
false
false
2,149
h
#pragma once #include <Windows.h> #define PTR_32 uint32_t #define PTR_64 uint64_t namespace PEBStruct { template<typename T> struct UNICODE_STRING { USHORT Length; USHORT MaximumLength; T Buffer; //PCWSTR type pointer }; template<typename T> struct LIST_ENTRY { T Flink; T Blink; }; template<type...
[ "noreply@github.com" ]
noreply@github.com
1db122f0d5863493f11974bbd99896a1f1dc25f5
6028a4e57a68bd9cf12f968aeb904a0bd49e45ca
/roughly-2011/Physics Land/jni/box2d-trunk-27062009/Collision/b2Collision.h
e6d00e54c0f3038e5bb9fe05897a484d480a5fe1
[]
no_license
w-shackleton/do-not-run-this-code
e8912133f7550059c1d5c9052312721b8a1e6af0
d8c6c0b1b4655694f54a9986ecb83f96a7c461c7
refs/heads/master
2021-05-23T09:48:13.376851
2020-04-05T14:13:51
2020-04-05T14:13:51
253,225,786
0
1
null
2020-10-13T21:18:52
2020-04-05T12:08:08
Java
UTF-8
C++
false
false
8,775
h
/* * Copyright (c) 2006-2009 Erin Catto http://www.gphysics.com * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * Permission is granted to anyone to use this software for any pur...
[ "w.shackleton@gmail.com" ]
w.shackleton@gmail.com
737b587b21eba7b9193bdd6f2ad5eaa6442c61e8
5a2349399fa9d57c6e8cc6e0f7226d683391a362
/src/qt/qtwebkit/Source/WebCore/loader/NavigationScheduler.h
620a725ea7afeac5a121868afc21d5ecd56b2116
[ "BSD-2-Clause", "LGPL-2.1-only", "LGPL-2.0-only", "BSD-3-Clause" ]
permissive
aharthcock/phantomjs
e70f3c379dcada720ec8abde3f7c09a24808154c
7d7f2c862347fbc7215c849e790290b2e07bab7c
refs/heads/master
2023-03-18T04:58:32.428562
2023-03-14T05:52:52
2023-03-14T05:52:52
24,828,890
0
0
BSD-3-Clause
2023-03-14T05:52:53
2014-10-05T23:38:56
C++
UTF-8
C++
false
false
3,641
h
/* * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/) * Copyright (C) 2009 Adam Barth. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are...
[ "ariya.hidayat@gmail.com" ]
ariya.hidayat@gmail.com
eaf2c86db5c3b02ff7405815f63f2b67b7adc766
3bbb9fbec252c12af7d647a8e49d50633bf40863
/L7HW7/DList_test.h
200857c8a4ec1cd8498fa1940c4659e4dab86a4a
[]
no_license
jgreer013/Data_Structures
7e67bc9b22b8c0b9092c2229b6c04c603265678b
2baafa41a3bafbaed7c81eccb4dcef342d6f918f
refs/heads/master
2021-01-01T05:46:33.250768
2016-04-28T22:17:50
2016-04-28T22:17:50
57,333,776
0
0
null
null
null
null
UTF-8
C++
false
false
15,284
h
#ifndef DLIST_TEST_H #define DLIST_TEST_H #include "DList.h" #include <stdexcept> // Needed for space removal. #include <sstream> #include <algorithm> #include <cxxtest/TestSuite.h> #include <ctime> using namespace std; // This requires CxxTest to be installed! // For this CPPVideos example, navigate your terminal t...
[ "greerji@mail.uc.edu" ]
greerji@mail.uc.edu
c99552d353510d60b1fb20017c7c35163d7429f6
c4bb25af13526d3079da2669ce268a9a2f5bedff
/TerraFighterDev/Hud.cpp
0222bf02ba51e0ef151ea9c7507613f5471332b8
[ "Apache-2.0" ]
permissive
cjburchell/terrafighter
3c0c935cebd58d2ede5dbc54fcf83e4938731732
7bbfa22f3616bc0f3a9539afc2af3409e7f524f5
refs/heads/master
2023-04-10T21:30:49.717568
2023-03-28T00:24:12
2023-03-28T00:24:12
243,773,669
0
0
null
null
null
null
UTF-8
C++
false
false
1,408
cpp
// Hud.cpp: implementation of the CHud class. // ////////////////////////////////////////////////////////////////////// #include "Hud.h" #define HUD_HIGHT 64 ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////...
[ "cjburchell@yahoo.com" ]
cjburchell@yahoo.com
827c659f56f034ddea4e3ec7aee63daca77fe8f1
522a944acfc5798d6fb70d7a032fbee39cc47343
/d6k/trunk/src/scdsvc/db_svc.h
cbbd0ddcd5ad28c3be7401632c3a0c3769d03d71
[]
no_license
liuning587/D6k2.0master
50275acf1cb0793a3428e203ac7ff1e04a328a50
254de973a0fbdd3d99b651ec1414494fe2f6b80f
refs/heads/master
2020-12-30T08:21:32.993147
2018-03-30T08:20:50
2018-03-30T08:20:50
null
0
0
null
null
null
null
GB18030
C++
false
false
7,063
h
/*! @file db_svc.h <PRE> ******************************************************************************** 模块名 : 文件名 : db_svc.h 文件实现功能 : 内存数据库 作者 : LiJin 版本 : V1.00 -------------------------------------------------------------------------------- 备注 : 注意:与前置结构不同的是,node由db_svc这一层来管...
[ "xingzhibing_ab@hotmail.com" ]
xingzhibing_ab@hotmail.com
885b767de43ead190ae38021474c01f86db398a1
bbec37e5e33e93fd9f3144527ee98fa7eca9bd42
/hal/src/main/native/athena/Encoder.cpp
bf3a273e896f12b29f1263689d6097b5ee17ed05
[ "BSD-3-Clause" ]
permissive
RishabRao/allwpilib
a8a5c0ee66d6d00df9fe3d1f2352270f13667cae
7daf2daade78c34dfc1bad161e107328c3c935dc
refs/heads/master
2020-08-28T05:53:24.435731
2019-10-27T23:50:26
2019-10-27T23:50:26
203,039,549
0
0
NOASSERTION
2019-08-18T18:05:42
2019-08-18T18:05:42
null
UTF-8
C++
false
false
14,754
cpp
/*----------------------------------------------------------------------------*/ /* Copyright (c) 2016-2019 FIRST. All Rights Reserved. */ /* Open Source Software - may be modified and shared by FRC teams. The code */ /* must be accompanied by the FIRST BSD license file in the root directory of...
[ "johnson.peter@gmail.com" ]
johnson.peter@gmail.com
c2cfcbaea991a75396aca583e20c84ae5804e817
2452e0375b99a3226f01814c3138c8edf7b3dbd1
/OpenGL/source/CSM/CameraShader.h
78375e6f89608b2203369d9ed4e5c9b70783d81b
[]
no_license
hello-choulvlv/hello-world
ac00931ab6b2e7e921e68875b1b8a918476351a7
29cdc82c847a4ecf5d6051a6bb084260cded5cc7
refs/heads/master
2021-12-29T09:40:58.368942
2021-12-15T04:45:47
2021-12-15T04:45:47
209,924,279
2
3
null
null
null
null
WINDOWS-1252
C++
false
false
2,168
h
/* *³¡¾°äÖȾShader *@date:2017-4-8 *@Author:xiaohuaxiong */ #ifndef __CAMERA_SHADER_H__ #define __CAMERA_SHADER_H__ //#include<engine/Object.h> #include<engine/Geometry.h> #include<engine/GLProgram.h> class CameraShader { private: glk::GLProgram *_renderProgram; //location of uniforms in...
[ "xiaoxiong@gmail.com" ]
xiaoxiong@gmail.com
621139852bc5203f62a9037b6665873ef3180d05
12cc723c31f4842f1f7e68e7c84c537bf2f5fce0
/trunk/SGAL/include/math/Vector3.h
6dc0b0fb0a7307c7ea5c92f522aefae65cc0642c
[]
no_license
damody/action-game-design-plaform
98b01b956000a4623b595b5e6ef25687a0feafa7
bb46fcb58f0d9076373e7eca80d2ad08bb26cb79
refs/heads/master
2021-01-01T04:45:17.630002
2015-01-26T12:35:04
2015-01-26T12:35:04
56,483,228
3
0
null
null
null
null
UTF-8
C++
false
false
18,090
h
#pragma once /* ----------------------------------------------------------------------------- This source file is part of OGRE (Object-oriented Graphics Rendering Engine) For the latest info, see http://www.ogre3d.org/ Copyright (c) 2000-2009 Torus Knot Software Ltd Permission is hereby granted, free of charge, to an...
[ "t1238142000@gmail.com" ]
t1238142000@gmail.com
d34654701b7e372958a5dd2ff57f5c092c5ca77d
357f3f04f3e0b87974a63258bcff5c3f2ce5a897
/VCEEnc/encode/auo_audio_parallel.cpp
ed12e1e0dcb3a89a01ba4d16a7e415abe9be2178
[ "MIT", "Zlib" ]
permissive
feijiaa1/VCEEnc
ba97247cd552860279006e0c464073741a003921
7e5ea492883418aaf797135623827a092f1bb5c0
refs/heads/master
2022-04-12T05:16:59.055425
2020-03-07T12:51:39
2020-03-07T12:51:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,081
cpp
// ----------------------------------------------------------------------------------------- // VCEEnc by rigaya // ----------------------------------------------------------------------------------------- // The MIT License // // Copyright (c) 2014-2017 rigaya // // Permission is hereby granted, free of charge, t...
[ "rigaya34589@live.jp" ]
rigaya34589@live.jp
ff996fa4debaa32244211595ba8b133ffe5437d2
db4b11a8d1428679a3f20991657897463602c7ba
/base/timestamp.h
d3630827c41d854790c1a9a6f5fab9b78cd4ee23
[]
no_license
Fishguys/reactor
cf0bd7b49bace091239567632bd224ff725c8b40
b64bb6dd634e34635b8f4955a84565d5980a00cf
refs/heads/master
2020-03-23T09:09:08.021848
2018-07-19T02:36:08
2018-07-19T02:36:08
141,370,453
0
0
null
null
null
null
UTF-8
C++
false
false
2,560
h
#pragma once #include <stdint.h> #include <algorithm> #include <string> using namespace std; /// /// Time stamp in UTC, in microseconds resolution. /// /// This class is immutable. /// It's recommended to pass it by value, since it's passed in register on x64. /// class Timestamp { public: /// /// Constucts an inva...
[ "244643686@qq.com" ]
244643686@qq.com
46bd9440b332c8607831cdbcefe7415d20c7eb26
2388078b7e7792ee29145122c5587cf11d522a29
/src/util/profile_test.cpp
897e6def64e137cad4c2848043cefb741c9e6f1d
[ "BSD-3-Clause" ]
permissive
figo1309/fyreactor
9e852490d3eccf8394569ffae881aa064513cb62
3a6f5bcf5aae9cdab7cdd485d678edc288612b34
refs/heads/master
2022-10-12T17:33:11.552112
2022-09-21T03:21:30
2022-09-21T03:21:30
37,250,642
6
3
null
2022-09-21T03:21:30
2015-06-11T09:04:11
C++
WINDOWS-1252
C++
false
false
614
cpp
/************************************************************************/ /* create time: 2015/6/10 athor: ¸ð·ÉÔ¾ discribe: ÐÔÄܲâÊÔ */ /************************************************************************/ #include <util/timer.h> #include <util/profile_test.h> namespace fyreactor { CProfileTest::CProfileTe...
[ "495809712@qq.com" ]
495809712@qq.com
950b6e26295d55e17b9f9ffc039f3f04d0d84588
447e259d13f876f5c40a63bceb469929d8e0e47e
/cg.ino
3d1b53894f5c3e5bfb39a75e9abfb3a7f6de4089
[]
no_license
pmosf/CGMeter
48cf940c61965e1224bbc544f8e77b60fd659560
b4be29faa272afe246c32912b11cd9f386724c5c
refs/heads/master
2020-03-31T08:08:30.652165
2018-10-08T08:50:29
2018-10-08T08:50:29
152,042,017
0
0
null
null
null
null
UTF-8
C++
false
false
2,881
ino
#include "Arduino.h" #include <Log.h> #include <LinkedList.h> #include <WindowsManager.h> #include <DefaultDecorators.h> #include <TabControl.h> #include <SensorManager.h> #include <MeasurementNode.h> #include <DC_UTFT.h> #include <plane.h> #include <TouchUTFT.h> #include <TabControl.h> #include "weight.h" #include "s...
[ "pmosf@gmail.com" ]
pmosf@gmail.com
40e42d519e5f00fccf1daaefe799aa5e6bbb73fd
798b1f598416bea9b95c094fcee4cc0c0b63a67a
/hpp_cs16/hpp_cs16/hpp/src/features/miscellaneous/miscellaneous.cpp
64bd755c9998031edf38dc7e9c53db2c0e33dce4
[]
no_license
YuhBoyMatty/hpphack
87e0d90869f93efb5342b27cce2d8c28e78f3069
2b18000ec3bce8db49c3ff84c1ea68e2bf0d3e7e
refs/heads/master
2023-05-27T02:42:49.503107
2021-06-10T17:30:05
2021-06-10T17:30:05
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
4,489
cpp
#include "framework.h" std::unique_ptr<CMiscellaneous> g_pMiscellaneous; CMiscellaneous::CMiscellaneous() { // run code one time when you connected to server } CMiscellaneous::~CMiscellaneous() { // run code one time when you disconnected from server } void CMiscellaneous::NameStealer() { if (!cvars::misc.namest...
[ "31269663+mr-nv@users.noreply.github.com" ]
31269663+mr-nv@users.noreply.github.com
540386b3ec135e90ed4ed3f9b8e86d9dc1f3aaaf
ac1c9fbc1f1019efb19d0a8f3a088e8889f1e83c
/out/release/gen/components/paint_preview/common/mojom/paint_preview_recorder.mojom.h
04cbeb23b206f9afee76662046c11ead7d4b8a6e
[ "BSD-3-Clause" ]
permissive
xueqiya/chromium_src
5d20b4d3a2a0251c063a7fb9952195cda6d29e34
d4aa7a8f0e07cfaa448fcad8c12b29242a615103
refs/heads/main
2022-07-30T03:15:14.818330
2021-01-16T16:47:22
2021-01-16T16:47:22
330,115,551
1
0
null
null
null
null
UTF-8
C++
false
false
26,126
h
// components/paint_preview/common/mojom/paint_preview_recorder.mojom.h is auto generated by mojom_bindings_generator.py, do not edit // Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_...
[ "xueqi@zjmedia.net" ]
xueqi@zjmedia.net
8441f46d57d0c9b38bccb7f800110b29d6f48484
398f061617e1f93008ed5f8620ddbb6aea8a82be
/com/benchmark/test_smempool.cpp
ab1f3595d3de204ce2cbc774ac4b50d592b6fe02
[ "BSD-3-Clause", "LicenseRef-scancode-generic-cla" ]
permissive
mfkiwl/xoc
22c0e00f92fc94660f6293fdf6ccc268a8f9e0ac
ff27765f953ce0d51ee71ad3496fd4cdd7fcbcf2
refs/heads/master
2023-03-25T00:41:44.358392
2021-03-21T08:50:05
2021-03-21T08:50:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,097
cpp
/*@ Copyright (c) 2013-2014, Su Zhenyu steven.known@gmail.com 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 lis...
[ "steven.known@gmail.com" ]
steven.known@gmail.com
84cbfbf74e27b9952eb5c152d0e5160bcd406ad5
cc7661edca4d5fb2fc226bd6605a533f50a2fb63
/System/SendCompletedEventHandler.h
cdd62fcf602ef22739e0286e3ff464d7cbf768e2
[ "MIT" ]
permissive
g91/Rust-C-SDK
698e5b573285d5793250099b59f5453c3c4599eb
d1cce1133191263cba5583c43a8d42d8d65c21b0
refs/heads/master
2020-03-27T05:49:01.747456
2017-08-23T09:07:35
2017-08-23T09:07:35
146,053,940
1
0
null
2018-08-25T01:13:44
2018-08-25T01:13:44
null
UTF-8
C++
false
false
172
h
#pragma once namespace System { namespace Net { { namespace Mail { class SendCompletedEventHandler : public MulticastDelegate // 0x68 { public: }; // size = 0x68 }
[ "info@cvm-solutions.co.uk" ]
info@cvm-solutions.co.uk
5103c495cf8a81f368e57102ba8ed7db888999f4
a40f66e4f174ae54438dfed778839b46f52599b5
/JuceLibraryCode/modules/juce_audio_basics/sources/juce_BufferingAudioSource.cpp
18509823f71825cf6f3a30743298bf89b639315f
[]
no_license
PFCM/SwivelAutotune
61e2f63e8fb9244e6a2ca1d840839b16b457d7b6
f52201aef77806febba1ade85688e989fe3da09d
refs/heads/master
2021-01-22T05:24:10.935556
2013-11-28T03:59:29
2013-11-28T03:59:29
14,478,275
1
0
null
2013-11-27T19:48:34
2013-11-18T00:12:56
C++
UTF-8
C++
false
false
9,136
cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2013 - Raw Material Software Ltd. Permission is granted to use this software under the terms of either: a) the GPL v2 (or any later version) b) the Affero GPL...
[ "pfcmathews@gmail.com" ]
pfcmathews@gmail.com
8823830b56f0028d9b7226446057b2a2c7e9b3ea
8010df1fef10ddfd83bf07966cbf7e2e4b0d7ee9
/include/winsdk/winrt/Windows.ApplicationModel.email.dataprovider.h
17e1b804294274e3544159f82defed5faa68add9
[]
no_license
light-tech/MSCpp
a23ab987b7e12329ab2d418b06b6b8055bde5ca2
012631b58c402ceec73c73d2bda443078bc151ef
refs/heads/master
2022-12-26T23:51:21.686396
2020-10-15T13:40:34
2020-10-15T13:40:34
188,921,341
6
0
null
null
null
null
UTF-8
C++
false
false
622,866
h
#pragma warning( disable: 4049 ) /* more than 64k source lines */ /* verify that the <rpcndr.h> version is high enough to compile this file*/ #ifndef __REQUIRED_RPCNDR_H_VERSION__ #define __REQUIRED_RPCNDR_H_VERSION__ 500 #endif /* verify that the <rpcsal.h> version is high enough to compile this file*/ #ifndef __R...
[ "lightech@outlook.com" ]
lightech@outlook.com
08dfb789f76ca86d6e3be6dd1d66375ab9bfb2b9
1e5318674e548c8cb72599be3e3d437ac8699472
/semana4/160/main.cpp
49c0c029c95a74956e0d207a5f84f1d39ec744dd
[]
no_license
edmolten/TallerDeProgramacion2017-2
7f1f66a1d34c929cacd63a747bd9fd9b014e0891
f4f65b88c0abcf9b76e178ff5c758c2a6a728d06
refs/heads/master
2021-09-01T04:38:54.305696
2017-12-24T21:40:46
2017-12-24T21:40:46
103,702,171
0
0
null
null
null
null
UTF-8
C++
false
false
959
cpp
#include <iostream> #include <math.h> using namespace std; int main() { int n; int primes[]= {2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97}; cin >> n ; int mayorPrime; while(n!=0){ mayorPrime = 0; for(int i=0; i< 25; i++ ){ if(primes[i]<=n){ ...
[ "c.gallegu@hotmail.com" ]
c.gallegu@hotmail.com
6eb3424655cd16285687ed6a4015ab64e44f7a54
3ffe135f82b1c4075186c655957807f855a88f86
/div 3 Prob D/div 3 Prob D.cpp
01bf6cb59226e8fac5b0b5be147110fc4085fe16
[]
no_license
saobangmath/Lab-Test-2-Data-Structure
f562929546067a83cdc278afe8a40f67862d3473
1cc0f361bcdbc74ac0f349ae8372c6330b3b9a1c
refs/heads/master
2020-05-15T14:42:44.470501
2019-04-20T03:01:24
2019-04-20T03:01:24
182,346,378
0
0
null
null
null
null
UTF-8
C++
false
false
1,121
cpp
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <CodeBlocks_project_file> <FileVersion major="1" minor="6" /> <Project> <Option title="div 3 Prob D" /> <Option pch_mode="2" /> <Option compiler="gcc" /> <Build> <Target title="Debug"> <Option output="bin/Debug/div 3 Prob D" prefix_auto="1" exten...
[ "42882997+saobangmath@users.noreply.github.com" ]
42882997+saobangmath@users.noreply.github.com
f5088b3d04a4c549d411aa61217a45bf564c8d64
a129fecfd0236cb97dae11d9e130cf2946f2392a
/noritake-example/GU7000_Interface.h
39ca95aa64fcec5622962a3e4445f7d6018092b4
[ "MIT", "LicenseRef-scancode-public-domain" ]
permissive
cmdrDatalink/GU7000-Series-Library
6e27937e46d5506d0117b7173e7adcb342f85a3f
2818d7535615a29b29b9c853fc8d371d9cbe0af3
refs/heads/master
2021-09-18T14:33:59.030097
2018-07-16T00:13:23
2018-07-16T00:13:23
16,667,951
4
1
MIT
2018-07-16T00:13:24
2014-02-09T14:36:05
C++
UTF-8
C++
false
false
450
h
#include "Arduino.h" #include <stddef.h> #include <util/delay.h> #define DIRECTION(X,D) if (D) pinMode(X##_PIN, OUTPUT); else pinMode(X##_PIN, INPUT) #define RAISE(X) digitalWrite(X##_PIN, HIGH) #define LOWER(X) digitalWrite(X##_PIN, LOW) #define CHECK(X) digitalRead(X##_PIN) class GU7000_Interface{ public: vi...
[ "ice.zetsumei@gmail.com" ]
ice.zetsumei@gmail.com
d93e79994ee59e67c5d317d5098cc9dc815a20b6
e641bd95bff4a447e25235c265a58df8e7e57c84
/chromeos/components/quick_answers/utils/quick_answers_utils.h
d4cad0170c289745b0c1acf981178b9b0c1b2495
[ "BSD-3-Clause" ]
permissive
zaourzag/chromium
e50cb6553b4f30e42f452e666885d511f53604da
2370de33e232b282bd45faa084e5a8660cb396ed
refs/heads/master
2023-01-02T08:48:14.707555
2020-11-13T13:47:30
2020-11-13T13:47:30
312,600,463
0
0
BSD-3-Clause
2022-12-23T17:01:30
2020-11-13T14:39:10
null
UTF-8
C++
false
false
1,365
h
// Copyright 2020 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 CHROMEOS_COMPONENTS_QUICK_ANSWERS_UTILS_QUICK_ANSWERS_UTILS_H_ #define CHROMEOS_COMPONENTS_QUICK_ANSWERS_UTILS_QUICK_ANSWERS_UTILS_H_ #include "c...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
46e95a2a81f0c1c0b37c26ce7799a6966bb3f686
73d9d0441125e1fd333d11720fe58bde73405971
/Fandi/two.h
51a2e36a79a5e764a2cc37b032b584cd2c429639
[]
no_license
fadhilelrizanda/pemrog2
4f3aa5080bfe016c7536cc8493f0a25b4eb1a402
c6c3340cf2bb71cd2b6d58644af806d62e11a620
refs/heads/master
2022-12-29T06:51:21.378079
2020-10-12T05:29:47
2020-10-12T05:29:47
293,421,136
0
0
null
null
null
null
UTF-8
C++
false
false
189
h
#include <iostream> using namespace std; class Two { public: int x; char a; Two(int q, char w); int getX(); char getA(); void setX(int q); void setA(char w); };
[ "fadhilelrizanda@gmail.com" ]
fadhilelrizanda@gmail.com
9a8e0643bc67377c59be27cbb8446d2562fee7ea
0f10023be72f4ae93e657e715e42e98c3b6cf6dc
/src/netbase.cpp
15c418d01320095cdfe95b090be6a6407d09fb40
[ "MIT" ]
permissive
kelepirci/bitcoinquality
a653f6ca6224eac40e6e974f6c8875b76c13e6c2
ecd43ea0680571bf7d9d23fe4627e1f52b204c86
refs/heads/master
2021-08-20T05:54:38.919543
2017-11-28T10:19:43
2017-11-28T10:19:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
31,534
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The BitcoinQuality developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "netbase.h" #include "util.h" #include "sync.h" #include "hash.h" ...
[ "info@bitcoinquality.org" ]
info@bitcoinquality.org
ce9047bbc0e7fd31eb62bdc36d073f1830a765a3
4b5a22f96fc846b5b1797c929ed5db03c1041e67
/Source/FScheme/NodeDeleter.h
e24ade0355d7efc51fe3280a8395662e08d64d00
[ "MIT" ]
permissive
Zumisha/FPTL
bb706cd5239b29df8342f9421067364ca2644704
cbe24b5e3d2c8aa792fabb87add383ca60646a3e
refs/heads/master
2021-12-15T12:44:39.179902
2021-12-12T14:49:26
2021-12-12T14:49:26
223,280,586
7
5
MIT
2019-12-03T00:36:03
2019-11-21T22:58:34
C++
UTF-8
C++
false
false
745
h
#pragma once #include <unordered_set> #include "FSchemeVisitor.h" namespace FPTL { namespace Runtime { class NodeDeleter : public FSchemeVisitor { public: void visit(const FFunctionNode * node) override; void visit(const FParallelNode * node) override; void visit(const FSequentialNode * node) overri...
[ "zumisha@yandex.ru" ]
zumisha@yandex.ru
99ec53d3700efd23a0e64f622016e878d2b1b4c5
a684f7687d69f32b1ce16645c717e9f0eb71af43
/Robot/src/Commands/ShutForkOnBinCommand.cpp
c4647a69bfa5cbf19b0077c661a6f85721443422
[]
no_license
Bullseye4984/4984
35c72bee0be5c186913bad53481b33c74749cd53
36a38a46708ceef21442e7df0c8b0cefcfcbbf59
refs/heads/master
2021-01-23T08:04:33.849899
2015-03-01T02:48:02
2015-03-01T02:48:02
29,838,593
1
1
null
null
null
null
UTF-8
C++
false
false
1,474
cpp
// RobotBuilder Version: 1.5 // // This file was generated by RobotBuilder. It contains sections of // code that are automatically generated and assigned by robotbuilder. // These sections will be updated in the future when you export to // C++ from RobotBuilder. Do not put any code or make any change in // the blocks ...
[ "nathan@vaniman.com" ]
nathan@vaniman.com
c50c087331a5a065ce1f8d599c1c77d8d72c62e3
b00c54389a95d81a22e361fa9f8bdf5a2edc93e3
/cts/tests/tests/bionic/main.cpp
b661af4bd3855dc6b68c41258a41ab66f854c65f
[]
no_license
mirek190/x86-android-5.0
9d1756fa7ff2f423887aa22694bd737eb634ef23
eb1029956682072bb7404192a80214189f0dc73b
refs/heads/master
2020-05-27T01:09:51.830208
2015-10-07T22:47:36
2015-10-07T22:47:36
41,942,802
15
20
null
2020-03-09T00:21:03
2015-09-05T00:11:19
null
UTF-8
C++
false
false
817
cpp
/* * Copyright (C) 2014 The Android Open Source Project * * 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 app...
[ "mirek190@gmail.com" ]
mirek190@gmail.com
a1ddbbff1bc62cd7c6cd5df45667d3bff43e0d17
021c77d51bd5176f0d1a69e2c1eec6f48a59c2d1
/Material.h
153df4d6802468f7124ad55e77fae81c81bde10a
[]
no_license
stephenap07/objviewer
50167af145d6f928245496895612561f730fbf72
d182f31c0391778c08d31b6e2b480dbd0b3d33e5
refs/heads/master
2021-07-17T10:37:10.834036
2017-10-25T03:15:47
2017-10-25T03:15:47
107,209,916
0
0
null
null
null
null
UTF-8
C++
false
false
669
h
#pragma once #include <glm/glm.hpp> #include "extern/tiny_obj_loader.h" #include <string> class Material { public: Material() = default; Material(const Material&) = default; Material(Material&&) = default; Material(const tinyobj::material_t& m); glm::vec3 ambient; glm::vec3 diffuse; glm::vec...
[ "stephenap07@gmail.com" ]
stephenap07@gmail.com
17e0d817d3e1371f717624f47a5b00a0c5d4f52f
362d90da4ed3a6b0e558bfff740de9f1adc2a1b4
/BrigitteBarBot/BrigitteBarBot.ino
153cb5a33741c73b806c9a02dd8903f2ae100da0
[ "MIT" ]
permissive
stevebaxter/BrigitteBarBot
3698e43dfa7d2a1c8d61a134923c80fe4ab664f1
8b447505e1ead36f63dd1d6b5ee8e5c2c29674fb
refs/heads/master
2022-06-23T08:46:13.322406
2018-09-03T22:54:08
2018-09-03T22:54:08
143,636,375
0
0
null
null
null
null
UTF-8
C++
false
false
5,267
ino
/** Motor control for Brigitte BarBot */ #include <Wire.h> #include <PPMReader.h> #include "ComMotion.h" // Range for stick values const long stickValueRange = 255; // Initialize a PPMReader on digital pin 2 with 8 expected channels. #define kInterruptPin 2 #define kChannelCount 8 PPMReader ppm(kInterruptPin, kC...
[ "steve@kuamka.com" ]
steve@kuamka.com
95103034a42c01a21f24198fba1d886f388383db
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_6404600001200128_0/C++/greatwall1995/A.cpp
e1a0487bb91cbc4b9e3f2da6518c5bb8d0e2813e
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
878
cpp
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cstdlib> #include <string> #include <vector> #include <cmath> #include <queue> #include <map> #include <set> using namespace std; const int N = 11111; int n; int a[N]; int main() { freopen("A_.in", "r", stdin)...
[ "eewestman@gmail.com" ]
eewestman@gmail.com
80450613def679baa6317093167aa411acdb8ddf
0225a1fb4e8bfd022a992a751c9ae60722f9ca0d
/3party/osrm/osrm-backend/third_party/libosmium/include/osmium/visitor.hpp
0250f11d46e4a9838604f649b8dc97c703df5cd5
[ "Apache-2.0", "BSD-2-Clause", "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
organicmaps/organicmaps
fb2d86ea12abf5aab09cd8b7c55d5d5b98f264a1
76016d6ce0be42bfb6ed967868b9bd7d16b79882
refs/heads/master
2023-08-16T13:58:16.223655
2023-08-15T20:16:15
2023-08-15T20:16:15
324,829,379
6,981
782
Apache-2.0
2023-09-14T21:30:12
2020-12-27T19:02:26
C++
UTF-8
C++
false
false
11,016
hpp
#ifndef OSMIUM_VISITOR_HPP #define OSMIUM_VISITOR_HPP /* This file is part of Osmium (http://osmcode.org/libosmium). Copyright 2013-2015 Jochen Topf <jochen@topf.org> and others (see README). Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or org...
[ "alex@maps.me" ]
alex@maps.me
00a5a5097ebb7056b486a2f1014d0b93afb2b56f
514fdafec229bab2b95d4b40d1ec4ddb7f48b1c2
/frameworks/cocos2d-x/cocos/flash/PandoraLib/IPAddress.cpp
f95bb42dd019c93fe7ff05dfccee8eab0bb0aa3d
[ "MIT" ]
permissive
xslkim/FlashEngine
409c0b105f4c7bb531954bb00a78c95d2b3d349d
30aedbe92447bcd5bd3c8abd7831776f67f8df46
refs/heads/master
2020-04-24T03:45:23.809432
2019-02-23T11:40:22
2019-02-23T11:40:22
171,680,376
1
0
null
null
null
null
UTF-8
C++
false
false
4,315
cpp
#include "IPAddress.h" char *if_names[MAXADDRS]; char *ip_names[MAXADDRS]; char *hw_addrs[MAXADDRS]; unsigned long ip_addrs[MAXADDRS]; #if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) void InitAddresses(){}; void FreeAddresses(){}; void GetIPAddresses(){}; void GetHWAddresses(){}; #else #include <stdio.h> #...
[ "xslkim@163.com" ]
xslkim@163.com
f44df1481f972a37a0fe4f98ca62d338da5c4ca8
fd3f05ba65b8571e96649e9ffa75d54f69041f06
/src/EUTelTakiDetector.cc
79b4df17a5780bab2d7887bce12942fc05e1d320
[]
no_license
terzo/Euetelscope_v00-09-02_fork
2fdefc4a442bda1cf06f5fc4dd0821ba454a07f5
d895b2ade9c4c7803bb4130aaa3072851898fcc1
refs/heads/master
2021-01-16T21:00:52.744370
2014-12-16T18:07:29
2014-12-16T18:07:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,541
cc
// Version: $Id: EUTelTakiDetector.cc 2285 2013-01-18 13:46:44Z hperrey $ // Author Christian Takacs, SUS UNI HD <mailto:ctakacs@rumms.uni-mannheim.de> /* * This source code is part of the Eutelescope package of Marlin. * You are free to use this source files for your own development as * long as it stays in a...
[ "terzo@mpp.mpg.de" ]
terzo@mpp.mpg.de
b0848da521ed6ca6915bc92a3820fc86d014c2a7
36013530e70a881f4b25830637e1cbcbf7048215
/src/target/llvm/codegen_hexagon.cc
ff59dfcceb8d8b3424ba24d2509d7391c5075573
[ "Apache-2.0", "BSD-3-Clause", "Zlib", "MIT", "LicenseRef-scancode-unknown-license-reference", "Unlicense", "BSD-2-Clause" ]
permissive
ymeng-git/tvm
f121f8bad4084eaee06e185b3e80fe1739aad96a
a9f7c32e42a5f09e641dbe83f81cc4a73869af12
refs/heads/master
2022-09-06T18:23:56.153721
2022-08-25T21:21:13
2022-08-25T21:21:13
214,013,729
0
0
Apache-2.0
2019-10-09T20:08:41
2019-10-09T20:08:41
null
UTF-8
C++
false
false
25,566
cc
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
[ "noreply@github.com" ]
noreply@github.com
8ca46b7605ed19b238acb6eb7661a882e782c200
e6b96681b393ae335f2f7aa8db84acc65a3e6c8d
/atcoder.jp/abc005/abc005_2/Main.cpp
69867e2d781327e819a9c6824d565d567f13ea8c
[]
no_license
okuraofvegetable/AtCoder
a2e92f5126d5593d01c2c4d471b1a2c08b5d3a0d
dd535c3c1139ce311503e69938611f1d7311046d
refs/heads/master
2022-02-21T15:19:26.172528
2021-03-27T04:04:55
2021-03-27T04:04:55
249,614,943
0
0
null
null
null
null
UTF-8
C++
false
false
211
cpp
#include <iostream> using namespace std; #define INF 1000000000 int main() { int n; cin >> n; int ans=INF; for(int i=0;i<n;i++) { int k; cin >> k; ans=min(ans,k); } cout << ans << endl; return 0; }
[ "okuraofvegetable@gmail.com" ]
okuraofvegetable@gmail.com
c97dbe89e0bee4bd54d713f4926042188cf5f71b
e26c32a2f14a285693254a24f410a438522d4cd8
/include/variable.hpp
89aa879fa7f5b42ac70bd5bf98c0ae73981aded4
[]
no_license
miksadikov/otus-cpp-basics-hw4
f865be5d1bf322c839da18566133977be21cd6b4
95d505eaaa4452874ee00d5ce2524540fee99bd1
refs/heads/master
2023-08-28T12:06:55.082827
2021-11-09T19:26:34
2021-11-09T19:26:34
425,207,798
0
0
null
null
null
null
UTF-8
C++
false
false
176
hpp
#pragma once #include <string> #include "astnode.hpp" class Variable : public ASTNode { public: explicit Variable(const std::string& var) : ASTNode(var) {} };
[ "miksadikov@gmail.com" ]
miksadikov@gmail.com
750354248f6cddd73f20397f4e388b9229d53d9f
d6c4bf7a2a04a7ce34ca9477ca016072fc6a85c8
/src/model/truckstate.h
551d6699f17559d29096feb410498d4884b43bef
[]
no_license
U2hH9kRga5Fl0b/animated-dubstep-cplusplus
416618109e203efc6d9912b2d4fd078aad33a5d7
d429da6c46d4b30dabb922b7546debbd8b6252b7
refs/heads/master
2021-01-13T01:54:07.006807
2014-12-11T16:05:31
2014-12-11T16:05:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
891
h
/* * truckstate.h * * Created on: Nov 1, 2014 * Author: thallock */ #ifndef TRUCKSTATE_H_ #define TRUCKSTATE_H_ #include "model/dumpstersize.h" #include "common.h" #define TRUCK_STATE_FULL 0x00000100 #define TRUCK_STATE_EMPTY 0x00000200 #define TRUCK_STATE_NONE 0x00000400 #define TRUCK_STATE_MASK 0x0...
[ "dont@email.me" ]
dont@email.me
fac4620714101cce6688aeeb6be8d2abbc3a481f
a599bf7147e472e0d2928773c3e3663bcb70ece6
/lib/Basics/RandomHeap.h
1e281d5e6811c2d57d54da508bdc5a5d30ba48d0
[ "Apache-2.0" ]
permissive
sogko/ArangoDB
abb9803518aef63d0bd13510a04a9736523e3c5e
c4322a5bc696e2be1a3e1e754ed8cbff5f8d7806
refs/heads/master
2021-01-24T17:08:37.353155
2014-07-12T22:32:26
2014-07-12T22:32:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,010
h
//////////////////////////////////////////////////////////////////////////////// /// @brief random heap /// /// @file /// This structure allows only conventional access to a heap (which is /// by means of removing the head element). To use it, you must derive /// from it and implement function "static K key(const T&)",...
[ "f.celler@triagens.de" ]
f.celler@triagens.de
045857afc3b8f31bb25150e9fdb4331c55f15146
4ff93a49636994f488d46a0cef1cc3919806540e
/xdetours/dllmain.cpp
f7752b670d2cf744bad4936c31228194fb1f6dc0
[ "MIT" ]
permissive
929496959/cerberus
cee86f7a98fd1c3af6596b67e26f471938820768
0023dba54a27e6f87acb9dfec9b5fcda0e611bbf
refs/heads/master
2023-07-01T06:14:33.658883
2020-07-10T19:49:00
2020-07-10T19:49:00
null
0
0
null
null
null
null
GB18030
C++
false
false
551
cpp
// dllmain.cpp : 定义 DLL 应用程序的入口点。 #include "stdafx.h" extern BOOL xDetoursInit(HMODULE hModule); extern VOID xDetoursRelease(); BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { switch (ul_reason_for_call) { case DLL_THREAD_ATTACH: case DLL_PROCESS_ATTAC...
[ "53790405+gA4ss@users.noreply.github.com" ]
53790405+gA4ss@users.noreply.github.com
91e53d15c3fa19a751fe54d3a979344e5a3b92b7
5a2349399fa9d57c6e8cc6e0f7226d683391a362
/src/qt/qtbase/src/plugins/platforms/directfb/qdirectfbbackingstore.h
f311ffbf64745138974aad35a148da1fcaeed200
[ "LGPL-2.1-only", "GPL-3.0-only", "LicenseRef-scancode-digia-qt-commercial", "Qt-LGPL-exception-1.1", "LicenseRef-scancode-digia-qt-preview", "LGPL-2.0-or-later", "GFDL-1.3-only", "BSD-3-Clause" ]
permissive
aharthcock/phantomjs
e70f3c379dcada720ec8abde3f7c09a24808154c
7d7f2c862347fbc7215c849e790290b2e07bab7c
refs/heads/master
2023-03-18T04:58:32.428562
2023-03-14T05:52:52
2023-03-14T05:52:52
24,828,890
0
0
BSD-3-Clause
2023-03-14T05:52:53
2014-10-05T23:38:56
C++
UTF-8
C++
false
false
2,738
h
/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the plugins of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holdi...
[ "ariya.hidayat@gmail.com" ]
ariya.hidayat@gmail.com
5d303d791297b6f254bb6a674bd92ab3cb3b7bc5
99f71461b74c982bf381d62f1610af3f7c84137b
/Lista8/CTable.cpp
fd1ba8ae66d90eb37a4cfe89e06e0591a17674b8
[]
no_license
JWojcieszonek/TEP-Lista8
50d91e28d7fa9547e432164839109bd756b820ba
b10117e2a32d014ffb1c3a2e3fa18caf174ee1ec
refs/heads/master
2020-12-29T05:41:12.921059
2020-02-05T14:56:44
2020-02-05T14:56:44
238,475,962
0
0
null
null
null
null
UTF-8
C++
false
false
3,266
cpp
#include "CTable.h" #include <iostream> #include <ctype.h> using namespace std; const string CTable::DEFAULT_NAME="Name"; const int CTable::DEFAULT_TABLE_SIZE = 5; const int CTable::MAX_TABLE_SIZE = 10000; CTable::CTable() { s_name = DEFAULT_NAME; cout << "bezp: " << s_name << endl; i_table_size = DEFAULT_TABLE_SI...
[ "jakub.wojcieszonek@gmail.com" ]
jakub.wojcieszonek@gmail.com
b1f7b3d81f5057a4507c3f1bdb22fe3be212c54e
583b711817dd9823612d70287f6458a3a74d7ddf
/Mathe.h
d3f3f7b8b7f1a5afb4af4724d420ee7d5df8e409
[]
no_license
Tobi2048/build
35dadb168b36cf84e2676cb16eeaac91299f83f6
df6b8ada94f7fb79358343860a138d4115aa908e
refs/heads/master
2022-12-09T09:30:03.796709
2020-06-29T13:59:48
2020-06-29T13:59:48
274,632,795
1
0
null
2020-07-10T13:24:14
2020-06-24T09:47:41
C++
UTF-8
C++
false
false
368
h
#pragma once #include <string> #include<algorithm>//min max #include<vector> //vector #include <numeric> //mittelwert #include <iostream> #include<fstream> #include <pcl/point_types.h> #include <pcl/point_cloud.h> #include <pcl/io/pcd_io.h> int min_max(pcl::PointCloud<pcl::PointXYZ>::Ptr cl_in, std::string anw, std...
[ "64415000+Tobi2048@users.noreply.github.com" ]
64415000+Tobi2048@users.noreply.github.com
7a5b1bc905f9af6acf1b7997e2a6bd98e14234db
349fe789ab1e4e46aae6812cf60ada9423c0b632
/Forms/HLP_SprNaborInfBlock/UHLP_FormaSpiskaSprNaborInfBlockCF.h
7fe71bb075dac0d64298ad80ce926d9149197a58
[]
no_license
presscad/ERP
a6acdaeb97b3a53f776677c3a585ca860d4de980
18ecc6c8664ed7fc3f01397d587cce91fc3ac78b
refs/heads/master
2020-08-22T05:24:15.449666
2019-07-12T12:59:13
2019-07-12T12:59:13
216,326,440
1
0
null
2019-10-20T07:52:26
2019-10-20T07:52:26
null
UTF-8
C++
false
false
1,266
h
#ifndef UHLP_FormaSpiskaSprNaborInfBlockCFH #define UHLP_FormaSpiskaSprNaborInfBlockCFH #include "GlobalInterface.h" //--------------------------------------------------------------- class THLP_FormaSpiskaSprNaborInfBlockCF : public IkanClassFactory ...
[ "sasha@kaserv.ru" ]
sasha@kaserv.ru
2096b594b535f1164f03343963bfdf10770485ca
7b5e2721f72e21248719e5dcf7e3b58264dfe624
/src/wm/x/server.hpp
27ef18d8295e9c9518041b22b6fa737fb744d4ff
[ "MIT" ]
permissive
Link1J/Awning
1503de077842e6f15f1ed1bbc845b731e6495318
4e35e092725d1688ac94f8473fb6bffd99a5cfa0
refs/heads/master
2020-12-23T01:57:41.117300
2020-12-18T20:16:23
2020-12-18T20:16:23
236,996,290
0
0
null
null
null
null
UTF-8
C++
false
false
153
hpp
#pragma once #include <X11/X.h> #include <X11/Xlib.h> namespace Awning::X::Server { extern int x_fd[2], wl_fd[2], wm_fd[2], display; void Setup(); }
[ "jrairwin@sympatico.ca" ]
jrairwin@sympatico.ca
2b5ef67e8dc7a8d5f0e3b048349b5ac4dfacb6fc
8dc84558f0058d90dfc4955e905dab1b22d12c08
/net/third_party/quiche/src/quic/tools/quic_client_epoll_network_helper.cc
117521111f574124fca244fb6daf8cff4246eb32
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
6,950
cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/third_party/quiche/src/quic/tools/quic_client_epoll_network_helper.h" #include <errno.h> #include <netinet/in.h> #include <string.h> #i...
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
a069919c53a4523c1a97415b4b5d1dc6c96c8dc4
5f2da0e1a415b3dab841edeb2a7904fea547a14a
/include/Xenon/Math/RawVec2UniformSource.h
9cc37d8edd97f1d1b5e7b3ef50da1d8dcbf4e154
[ "MIT" ]
permissive
OutOfTheVoid/ProjectRed
da608fa17208a710916565afa782016f15cfad64
801327283f5a302be130c90d593b39957c84cce5
refs/heads/master
2020-05-21T19:52:38.807725
2017-06-24T07:21:11
2017-06-24T07:21:11
63,619,563
1
0
null
null
null
null
UTF-8
C++
false
false
772
h
#ifndef XENON_MATH_RAWVEC2UNIFORMSOURCE_H #define XENON_MATH_RAWVEC2UNIFORMSOURCE_H #include <Xenon/Xenon.h> #include <Xenon/Math/Math.h> #include <Xenon/Math/Vec2.h> #include <Xenon/GPU/GLInclude.h> #include <Xenon/GPU/IFloatVec2UniformSource.h> #include <Red/Util/RefCounted.h> namespace Xenon { namespace Math ...
[ "liam.tab@gmail.com" ]
liam.tab@gmail.com
d1983951f064c3521dd6ba783459ed2cae8d0a69
8df8c17f0592be506a301bd70227d1a8f133c5a7
/Window.h
3984f4736771087678f99baadb5258039beccd84
[ "MIT" ]
permissive
southdy/tetris
0630de4faa09548056ced39baa2691731557d291
38125c81e17cf7bfcd42fe7840cf46f60628c31c
refs/heads/master
2021-06-12T02:09:50.800617
2017-02-10T05:15:44
2017-02-10T06:42:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
863
h
#ifndef CWindow_H_ #define CWindow_H_ class CWindow { public: static CWindow* getInstance() { return &s_wnd; } CWindow(); ~CWindow(); HWND getHWND() const { return m_hWnd; } HINSTANCE getHinstance() const { return m_hInstance; } void setWinSize(long lWidth, long lHeight) { m_lWidth = lWidth; m_lHeight = lHeig...
[ "inheritorofgalaxy@gmail.com" ]
inheritorofgalaxy@gmail.com
c3bea0ac3d90da2a1ce9c36cacd715fa120ea73b
2ee540793f0a390d3f418986aa7e124083760535
/Online Judges/Codeforces/Round 762 (Div 3)/c.cpp
a1c4c66b535595ed8303af18b21c058f8acc3b8c
[]
no_license
dickynovanto1103/CP
6323d27c3aed4ffa638939f26f257530993401b7
f1e5606904f22bb556b1d4dda4e574b409abc17c
refs/heads/master
2023-08-18T10:06:45.241453
2023-08-06T23:58:54
2023-08-06T23:58:54
97,298,343
0
0
null
null
null
null
UTF-8
C++
false
false
1,170
cpp
#include <bits/stdc++.h> using namespace std; #define inf 1000000000 #define unvisited -1 #define visited 1 #define eps 1e-9 #define mp make_pair #define pb push_back #define pi acos(-1.0) #define uint64 unsigned long long #define FastSlowInput ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); #define d...
[ "dickynovanto1103@gmail.com" ]
dickynovanto1103@gmail.com
843e2a18365a83c6d63d3cade08fbeb6ce9149e5
2aa0d6a3a0682b63592a5b007769a65ca7b42949
/Drive/Implementación, Adhoc, Greedy, Estructuras de Datos/inca-mancora.cpp
c1ba4fa0b207111f9a733cfaac585aa7df0c0477
[]
no_license
mramirez7/CompetitiveProgramming
9c3a32456562aa399628a49198f72144c1717af3
5f6e764e3f51b73e5ee35c1c1e653e8c25b3f1da
refs/heads/master
2020-12-22T12:31:34.734878
2020-04-01T20:04:24
2020-04-01T20:04:24
236,780,969
0
0
null
null
null
null
UTF-8
C++
false
false
884
cpp
//ACCEPTED //TAG: DIFFERENCE ARRAY #include <bits/stdc++.h> using namespace std; vector <int> friends; int n; int coord_transform(int i, int j){ return (n*(j-i-1)-((j-i-1)*(j-i))/2 + i); } int main(){ int m, q, f1, f2, k, pos; cin >> n >> m >> q; friends.assign((n*(n-1))/2+1, 0); ...
[ "mramirez7@uc.cl" ]
mramirez7@uc.cl
d720eaed959ff1fb0eea021340ba0271c41ba75c
5be4cb8bee38cc612ba468e5d41dccaa18c9021e
/src/register_test.cxx
53a5db88a3dc08c6d19042f2a7850c56a1f2bc7c
[]
no_license
CarloWood/ai-utils-testsuite
78c542a95917cb23357c2b75a635434a8c84d148
e35e19bc0508ad3b9c7b25e09452e0f34cc1b9bc
refs/heads/master
2023-06-08T08:46:37.919564
2023-05-31T15:41:48
2023-05-31T15:41:48
77,099,412
0
0
null
null
null
null
UTF-8
C++
false
false
805
cxx
#include "sys.h" #include "utils/Register.h" #include "debug.h" struct A { int n; }; struct B { int n; }; static constexpr A a1 = { 1 }; static constexpr A a2 = { 2 }; static constexpr B b1 = { 1 }; static constexpr B b2 = { 2 }; void callback(size_t n, A const& a) { std::cout << a.n << '/' << n << std::endl...
[ "carlo@alinoe.com" ]
carlo@alinoe.com
47db1b1565fab014c1ef6d9c75301fb4c10d3c5a
f0280623b3b6cd80fa3a1102bf911e5cc736cc2b
/QtRptProject/QtRptDesigner/tmp-lin64/ui_RepScrollArea.h
0d9b679fbe841459c8a6c14fecd8713e52ca13e4
[]
no_license
xman199775/jeanscar
1aea4dd5b35bab07462e2af3dfc98ee7813720fa
1170c165ad0d6e50829d3d5db618406326a83c51
refs/heads/master
2021-05-05T06:09:14.336541
2018-06-25T12:49:52
2018-06-25T12:49:52
113,491,136
0
0
null
null
null
null
UTF-8
C++
false
false
6,935
h
/******************************************************************************** ** Form generated from reading UI file 'RepScrollArea.ui' ** ** Created by: Qt User Interface Compiler version 5.5.1 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! *************************************...
[ "xman199775@gmail.com" ]
xman199775@gmail.com
bed5a680e90ce5ded6801cbb2b7d54c2e878167b
025ed72df3774c21cc3c9f4ab998904fab96ede5
/src/directory.hpp
22f3df3b00bfd74d4708813ea5e3235aeb5842c5
[ "Zlib" ]
permissive
edneville/Oblivion2-XRM
25960950de37e899c78cedef64a12de90d2168cc
33e2483d15b7c9e8656dcda6f5ea257851271b49
refs/heads/master
2020-03-26T18:58:36.936758
2018-08-12T22:44:23
2018-08-12T22:44:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,404
hpp
#ifndef DIRECTORY_HPP #define DIRECTORY_HPP #include <dirent.h> #include <string> #include <iostream> #include <vector> #include <memory> #include <mutex> /** * There is no Standard Filesystem and directory methods for C++/11 * At this time, 17 has some new expermental from Boost libs but * Most systems are not u...
[ "mrmisticismo@hotmail.com" ]
mrmisticismo@hotmail.com
6d8955f36af2d4d0b7583a84dd1609abaa89516c
d7b7d2668be26aed4803fc5a7368123822a18540
/src/7demo_main.cpp
5e2f09213578f68d997623d85c8df9d9d4af4ce3
[]
no_license
tthinh188/7demo_main
01b33cbb2cf7796c3c849a9adc35347e52604c96
ece5be5ab11a204bc6b1b33f93eaa5bb14907a13
refs/heads/master
2020-08-08T20:26:20.316501
2018-02-19T04:55:59
2018-02-19T04:55:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,529
cpp
//============================================================================ // Name : 7demo_main.cpp // Author : // Version : // Copyright : Steal this code! // Description : Hello World in C++, Ansi-style //============================================================================ #include <io...
[ "kperkins411@gmail.com" ]
kperkins411@gmail.com
071c4bbdcacbea3780ba068896b400661ad27dcb
603754472ab95c389ad67a9b3eceab216bb7a72d
/wk11/ex_6_5_start/ex_6_5_start.ino
799f37ddef465c933aa6ecaeeac1b570a112d021
[]
no_license
eun-jiii/ar06
06ce91b33a5404b2d58b9eab31596f4852959b6d
be0a380bfb0cec4a7446edb3d997ba1631629fdf
refs/heads/main
2023-05-11T14:50:53.208316
2021-05-26T11:32:55
2021-05-26T11:32:55
344,038,947
0
0
null
null
null
null
UTF-8
C++
false
false
2,294
ino
/* 예제 6.5 조이스틱 입력 */ // I2C 통신 라이브러리 설정 #include <Wire.h> // I2C LCD 라리브러리 설정 #include <LiquidCrystal_I2C.h> // LCD I2C address 설정 PCF8574:0x27, PCF8574A:0x3F LiquidCrystal_I2C lcd(0x27,16,2); // LCD address:0x27, 16X2 LCD // 0번 아날로그핀을 X 축 입력으로 설정 const int xAxisPin = 0; // 1번 아날로그핀을 Y 축 입력으로 설정...
[ "noreply@github.com" ]
noreply@github.com
c98bc0317248d1fbfff3c4d2739864d3ae45914f
92fe47dd34714208c9114bae25b0a17475963342
/Hacks/CSGO/CSGOInternal/csgoInternalMaster/CSGOInternalCplus/rcs.cpp
8a740cd2e7909eee04c023acafa299ad1f7cfa9a
[]
no_license
AbhishekGola/Gaming
bed16a3a4d02dc76f230a75a662d19184db51f6f
a055d7178d9d80a1258b1d0814f2a8cd52dad16b
refs/heads/master
2023-08-15T01:14:30.077234
2019-12-01T17:24:41
2019-12-01T17:24:41
186,141,146
0
0
null
null
null
null
UTF-8
C++
false
false
2,442
cpp
/* ___ ___ ___ ___ /\ \ |\__\ /\ \ /\__\ /::\ \ |:| | /::\ \ /::| | /:/\:\ \ |:| | /:/\:\ \ /:|:| | /:/ \:\ \ |:|__|__ /::\~\:\ \ /:/|:| |__ /:/__/ \:\__\ /::::\__\ /:/\:\ \:\__\ /:/ |:| /\__\ ...
[ "abhishekgola@hotmail.com" ]
abhishekgola@hotmail.com
0392e1ed023ec60224a3a3779cc9d99ae3e10f94
d9bf0d3862cd47bfa78fc31f831f90be19b039cb
/core/zxing/oned/rss/data_character.hpp
2cda3a866b33ad2991e79be4384ac1872ffddc63
[ "Apache-2.0" ]
permissive
kinglezhuang/zxingpp
3c3aea95d41ac00eaec43a2ec56ff2b1d77495c7
a82041843524d8883ba9abb19964fa433454d39a
refs/heads/master
2021-09-16T00:57:46.010103
2018-06-14T01:00:51
2018-06-14T01:00:51
114,210,167
1
1
null
null
null
null
UTF-8
C++
false
false
157
hpp
// // data_character.hpp // zxingpp // // Created by Kingle Zhuang on 6/13/18. // Copyright © 2018 Kingle Zhuang. All rights reserved. // #pragma once
[ "kingle.zhuang@ringcentral.com" ]
kingle.zhuang@ringcentral.com
31561bef05f24499d95d53a79a6e90ab3fd93950
ac657a0ffc117b5c53d11ed218a6e97ac182f1e9
/src/kalman_filter.cpp
14a196850e0bc49276f8561e4e0156fccbef683b
[]
no_license
Goddard/extended-kalman-filter
6bb121826a2d62daf516e6f61a332f1e9da3ad5a
403cc80af137dd0622d64034a23fe3b999ed0cf8
refs/heads/master
2021-01-25T04:34:59.539024
2017-06-06T14:15:55
2017-06-06T14:15:55
93,448,078
0
0
null
null
null
null
UTF-8
C++
false
false
1,593
cpp
#include <math.h> /* atan2 */ #include "kalman_filter.h" using Eigen::MatrixXd; using Eigen::VectorXd; KalmanFilter::KalmanFilter() {} KalmanFilter::~KalmanFilter() {} void KalmanFilter::Init(VectorXd &x_in, MatrixXd &P_in, MatrixXd &F_in, MatrixXd &H_in, MatrixXd &R_in, MatrixXd &Q_in...
[ "ryein@goddardlabs.com" ]
ryein@goddardlabs.com
0229757c65738061dac3f268329cbd67c868ced7
84a9cf5fd65066cd6c32b4fc885925985231ecde
/GDS2/Plugins/src/ObjectTexture/StdAfx.cpp
206fa4c84b8e743332cfed80b585111ad5df9203
[]
no_license
acemon33/ElementalEngine2
f3239a608e8eb3f0ffb53a74a33fa5e2a38e4891
e30d691ed95e3811c68e748c703734688a801891
refs/heads/master
2020-09-22T06:17:42.037960
2013-02-11T21:08:07
2013-02-11T21:08:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
215
cpp
// stdafx.cpp : source file that includes just the standard includes // ObjectTexture.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h"
[ "klhurley@yahoo.com" ]
klhurley@yahoo.com
f76d0678d12037971df025520c0180155a48cbff
c466c487e1d1e743d4e3bfbe7168358c0787d5f3
/src/game/client/GameClient.h
2b326bbbf8a7fdd6c2d0f2301c5940bcb13267f4
[]
no_license
jucham/rouage
686a0905cf198cf735dcec7dc28577756e3e321f
33160fb4c44fb1320a33d893d36397075beeb223
refs/heads/master
2022-11-18T09:16:25.104931
2020-07-10T10:18:53
2020-07-10T10:18:53
278,144,034
0
0
null
null
null
null
UTF-8
C++
false
false
3,679
h
#ifndef GAMECLIENT_H_ #define GAMECLIENT_H_ #include <list> #include <base/Regulator.h> #include <engine/client/Window.h> #include <engine/client/gfx/GFXAsset.h> #include <engine/client/gfx/text/TextRender.h> #include <engine/shared/Common.h> #include <engine/shared/Address.h> #include <game/server/Map.h> #...
[ "julien.champalbert@gmail.com" ]
julien.champalbert@gmail.com
dd15a0f1e3bb3d9071f004339c15e12a7c98ee38
8f813eacb90b9904dc0c8bf81c04331453e483af
/tools/icp.cpp
9bf64ede9c948ec50d007610fcdd5579eaf8c95e
[ "BSD-3-Clause" ]
permissive
daviddoria/PCLMirror
6613a8568a79d9927fb81bacd4f23871b8114f19
0f928f8ad56c103ab786774e96177b8b8ed7e915
refs/heads/master
2021-01-10T19:59:22.833477
2012-06-11T15:33:45
2012-06-11T15:33:45
4,588,059
2
5
null
null
null
null
UTF-8
C++
false
false
4,659
cpp
/* * Software License Agreement (BSD License) * * Point Cloud Library (PCL) - www.pointclouds.org * Copyright (c) 2011, Willow Garage, Inc. * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions ...
[ "jspricke@a9d63959-f2ad-4865-b262-bf0e56cfafb6" ]
jspricke@a9d63959-f2ad-4865-b262-bf0e56cfafb6
3dbdfe297942a1091ad011597495245fb3861535
e6d6d39e979928e107c291442d95382fff661fbc
/privatized_threadpool.hpp
369dc2f3fe84bcc0d4eaca97f8b24d6ad9cbec90
[]
no_license
clin99/demo
0647aeea0af0b5e8c9251a9b16037a322fa6aa04
37b3912354b1e62fb8929589c8bca6af96b121a0
refs/heads/master
2020-03-29T12:42:02.660067
2018-09-25T05:38:11
2018-09-25T05:38:11
149,913,313
0
0
null
null
null
null
UTF-8
C++
false
false
16,686
hpp
// 2018/09/21 - modified by Tsung-Wei and Chun-Xun // - refactored the code // // TODO: // - Problems can occur when external threads insert tasks during spawn. // // 2018/09/12 - created by Tsung-Wei Huang and Chun-Xun Lin // // Implemented PrivatizedThreadpool using the data structre inspired // Eigen ...
[ "noreply@github.com" ]
noreply@github.com
ba3db537812a57de9b1f108eea6e7f7650376463
7b302026e0cf51e916c88cb0c44cc868815e3f6c
/Веселый Зомби Фермер/revive.cpp
9afd182cf383a0aa9b2ce3097b99f38932c6f79f
[]
no_license
iam1mPerec/ZombieFarm
d590ef420b9af8af77ac56de66d4202fb2850ccd
c302d5641ac021d52ac2e9b9be71766c58c478fe
refs/heads/master
2023-01-27T11:52:26.962930
2020-12-12T17:53:36
2020-12-12T17:53:36
312,341,375
0
0
null
null
null
null
UTF-8
C++
false
false
258
cpp
#include <iostream> #include "revive.h" using namespace std; revive::revive(const int Hp, const int Count, const int Price): consumables(consume::revive, Count, Price), hp(Hp) { fillTitle("Revive"); } int revive::getProperty() const { return hp; }
[ "alex.lytvytskyi@codecamp-n.com" ]
alex.lytvytskyi@codecamp-n.com
17790d0360c86ccd867b511a6e4a993c1cf91293
fc594771ff264ce0b52df747ae956a0d14255e15
/电工电路试验台/一阶电路的响应测试.cpp
89b1301ecf55d741e3ac59d04464560623ab210a
[]
no_license
xujunmingbest/test-bed
f73e45fce78b29856318ed15b621e5d364020a51
34a90b75170afbb71f17267c6b356705391e7f8f
refs/heads/master
2021-10-10T10:02:25.587417
2019-01-09T06:46:26
2019-01-09T06:46:26
139,206,227
0
1
null
null
null
null
GB18030
C++
false
false
2,143
cpp
#include "一阶电路的响应测试实验内容.h" #include "data_transf.h" #include "E:/c++/libfilesql/libfilesql/libfilesql.h" #pragma comment(lib,"E:/c++/libfilesql/Release/libfilesql.lib") using namespace 电工电路试验台; void 一阶电路的响应测试实验内容::SendData() { int TrialCode = 6; ST_一阶电路的响应测试 s; memset(&s, 0x00, sizeof(ST_一阶电路的响应测试)); s = Load_Gra...
[ "925271237@qq.com" ]
925271237@qq.com
eab226bddf93b47a0ea1c249f94828cc2633e129
18a3f93e4b94f4f24ff17280c2820497e019b3db
/geant4/G4ProtonAntiProtonReaction.hh
94846933159f551fbe9818e475c72adbaa0eab1b
[]
no_license
jjzhang166/BOSS_ExternalLibs
0e381d8420cea17e549d5cae5b04a216fc8a01d7
9b3b30f7874ed00a582aa9526c23ca89678bf796
refs/heads/master
2023-03-15T22:24:21.249109
2020-11-22T15:11:45
2020-11-22T15:11:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,827
hh
// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration...
[ "r.e.deboer@students.uu.nl" ]
r.e.deboer@students.uu.nl
443827d3a17f09380cf187a26002c51c65cea1ce
178e3ef05c72766ac4dc102806791845686d4d2a
/server/src/common/core/util.h
e92c76acec76174524a45146e49070e3e4aed86c
[]
no_license
kfc0824/xt
d94d22ad7f0e06ae7ad5bae61c80391eb6fa7d18
003e67bba4f185ded6b31cca0cd4ec67f8da014f
refs/heads/master
2020-04-05T13:30:51.798457
2017-08-02T09:37:03
2017-08-02T09:37:03
94,851,491
0
2
null
null
null
null
UTF-8
C++
false
false
1,241
h
#ifndef _COMMON_CORE_UTIL_H_ #define _COMMON_CORE_UTIL_H_ #include "core.h" class CUtil { public: static bool StartupAsDaemon(); static bool SleepMillisecond(uint ms); static bool SleepSecond(uint s) { return SleepMillisecond(s * 1000); } static uint GetIpInt(const string &ip); static uint ToInt(c...
[ "2578198711@qq.com" ]
2578198711@qq.com
5b6a3c5b4d3d8b9d1badb4a052562a2773cb10eb
50d0b2f9c666a5ee81d9c4b45fd75bba2c88881a
/pathos/libs/gpu/d3d12/DescriptorHeap_D3D12.cpp
bc39336a5edf75821761e50cb5fa821f2f58b5d9
[]
no_license
karltechno/pathos
47a61abe7fbdbce405eaf3c43927602b669b2389
71149dbc1e9716773c90187d6bbdca10664b2114
refs/heads/master
2022-05-01T20:50:11.781176
2019-09-22T19:41:34
2019-09-22T19:41:34
177,015,072
2
0
null
null
null
null
UTF-8
C++
false
false
4,878
cpp
#include <kt/Macros.h> #include "DescriptorHeap_D3D12.h" #include "Utils_D3D12.h" namespace gpu { void DescriptorHeap_D3D12::Init(ID3D12Device* _dev, D3D12_DESCRIPTOR_HEAP_TYPE _ty, uint32_t _maxDescriptors, bool _shaderVisible, char const* _debugName) { KT_UNUSED(_debugName); D3D12_DESCRIPTOR_HEAP_DESC desc = {}...
[ "karl@karltechno.com" ]
karl@karltechno.com
440d762221f559a51612ce60273734cb29c7ef1f
19ad01cb5e581cfdfe1767eccd4aee47b00107d1
/src/StoreCredit/main.cpp
bdeb643031459f93c25da700ba905238e303d14b
[]
no_license
phpisciuneri/codejam
10751e7176eafd73e22b2c18aa834fe874724c06
2a4dbd06c3a082de39ae7aec9786f38e97544b1f
refs/heads/master
2021-01-10T21:39:02.225341
2014-10-27T20:37:13
2014-10-27T20:37:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,495
cpp
#include "../codejam.hpp" #include <iostream> #include <string> #include <map> class StoreCredit : public Codejam { public: // TEST DATA typedef struct { int C; std::multimap< int, int > price_index; } data_t; // OUTPUT DATA typedef std::pair< int, int > output_t; public: StoreCredit( int argc...
[ "phpisciuneri@users.noreply.github.com" ]
phpisciuneri@users.noreply.github.com
116610f4556287e657ff84e44f084a83454a892b
012a5e5d819504013a85c2478abd1cc29707ef32
/spoj/MRECAMAN/MRECAMAN-12309622.cpp
9a974963ad8ca217183577ec8d5fcde09cdcd408
[]
no_license
mohitpandey94/SPOJ-Solutions
2c70d032e1c091d18e310b5c50901709c3293c17
2fea99f43b76b3c2a8d3aa509fb5d320581b1f95
refs/heads/master
2021-09-15T22:00:19.792878
2018-06-11T19:28:50
2018-06-11T19:28:50
105,742,283
0
0
null
null
null
null
UTF-8
C++
false
false
485
cpp
#include <iostream> #include <map> using namespace std; long long int a[500001]; map<int,int>occ; void pre() { a[0]=0; occ[a[0]]=1; for (long long int i=1;i<=500000;i++) { if (!occ[a[i-1]-i] && (a[i-1]-i)>0) a[i] = a[i-1]-i; //if (occ[a[i]] && (a[i])<0) else a[i]=a[...
[ "mohitpandey94@gmail.com" ]
mohitpandey94@gmail.com