blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
ca8c255d6567f2e6b5e4d17b7e2a011fe37853c2
314ed11d32a46f597ee7aaabf08e555e2c841c1e
/stack_stl.cpp
fdc1ab23ac878169e765896681a279ac711d4645
[]
no_license
lamia185/Stack-Queue
0f645db490d734446549afc79498697d5592353c
75f6ff9e388141c69dbcd5e557d302989e1dd436
refs/heads/master
2021-01-24T02:11:23.217136
2018-02-25T13:30:22
2018-02-25T13:30:22
122,838,719
0
0
null
null
null
null
UTF-8
C++
false
false
283
cpp
#include<bits/stdc++.h> #include<cstring> #include<stack> using namespace std; int main(){ stack<string>str; string s; str.push("Lamia"); str.push("Robi"); str.push("Nasif"); cout<<str.top()<<endl; while(!str.empty()){ s=str.top(); cout<<s<<endl; str.pop(); } }
[ "32547168+fjlamia@users.noreply.github.com" ]
32547168+fjlamia@users.noreply.github.com
6c3229f081e9ddadd23dd13387f5c38d68c9f590
f3b4f013e55a0f64298dfca70e0bd13735341b32
/problems/548-split-array-with-equal-sum/hash.cpp
9faab892151735af4994dca6700cc6995bc3ee0c
[]
no_license
DFLovingWM/leetcode-solving
0eb53f54a5ef5a365d6cae5ffd9e4d6a3ec4b5fb
deeb2d5ac504eaeb33cc429e2a0fcdc830e2213d
refs/heads/master
2021-06-06T12:09:02.054056
2021-05-16T15:50:40
2021-05-16T15:50:40
163,033,138
8
3
null
null
null
null
UTF-8
C++
false
false
1,169
cpp
/** * 固定中间,两边使用hash * * 时间:`O(N^2)` */ class Solution { public: bool splitArray(vector<int>& A) { const int n = A.size(); vector<int> P(n + 1, 0); // 前缀和 for (int i = 0; i < n; ++i) { P[i + 1] = P[i] + A[i]; } // 遍历中间点(B[1]=i、C[0]=i+1) for (int i = ...
[ "dafeikai@gmail.com" ]
dafeikai@gmail.com
3d44bcec9857dcd6df47333c94185b2349a6d383
d8f0d15bff3b8bf1d73a9616709048a605d7dc46
/Foundation/extensions/NetworkLib/NetworkCommunication/civetweb/source/civetweb.cpp
e739c6a0cfb9fe56ebecfaf757447408d9160fd5
[ "BSD-3-Clause" ]
permissive
i-score-old/JamomaCore
bcdf458d2b7dc870d55e9d9ac310e62ef775a018
73632decfa2da9227638961f888f972053b4df3d
refs/heads/master
2021-01-17T16:48:39.097122
2014-12-08T12:36:38
2014-12-08T12:36:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
211,908
cpp
/* Copyright (c) 2004-2013 Sergey Lyubka * * 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, merge, pub...
[ "laurent@blueyeti.fr" ]
laurent@blueyeti.fr
223056f3ac2d30d11bde23b99bb5ca5932608ffc
2ef85b1c3c41b8dbe6ed1f2d8eb63053e22d9177
/LpSensor/MicroMeasure.h
96066e4019bb228c29557ebe5bd989f3e6088a4f
[ "BSD-2-Clause" ]
permissive
pgsamila/openMat
25f1263aaa2b099b93bf044f821582615d9fed1b
34c430053ad5a9b8e2e60719ed319b21a23fb885
refs/heads/master
2020-06-29T11:07:21.220714
2016-03-17T07:55:45
2016-03-17T07:55:45
74,432,539
1
1
null
null
null
null
UTF-8
C++
false
false
2,040
h
/*********************************************************************** ** Copyright (C) 2013 LP-Research ** All rights reserved. ** Contact: LP-Research (info@lp-research.com) ** ** This file is part of the Open Motion Analysis Toolkit (OpenMAT). ** ** Redistribution and use in source and binary forms, with ** or wi...
[ "info@lp-research.com" ]
info@lp-research.com
13ac3deec779859b468ecd131d317e54d508eccd
f3f8e60e4c527d2757646bbdc85eca2f8bad5ce6
/fifth/第五题.cpp
f78cbd6f8edf169f8e5beceff06e7844fb683fd7
[]
no_license
cristiano-xw/c-homework
ff7a76bab907d3b8d62a777f9333620610c6efc0
21d15779e20b41d923bbfa547206798411ec208b
refs/heads/main
2023-04-03T01:50:07.678108
2021-04-09T13:33:09
2021-04-09T13:33:09
311,077,437
1
0
null
null
null
null
UTF-8
C++
false
false
725
cpp
#include<stdio.h> #include<string.h> int main(void) { int m,n; scanf("%d%d",&m,&n); int i=0; int a[1000]; int b[1000]; for(i=0;i<m;i++) { scanf("%d",&a[i]); } /*for(i=0;i<m;i++) { printf("%d",a[i]); }*/ for(i=0;i<n;i++) { scanf("%d",&b[i]); } int c[1000]={0}; int ...
[ "1531887383@qq.com" ]
1531887383@qq.com
7c769274144459000d790739917eae2cbfa6ed20
e987249b9be580b38d8e0a4b966da53d02d0d472
/Ethereal/Private/Characters/Enemy/Boss/Eternal.cpp
c4368202f67535f41ffbccd168e4619463a29840
[ "Apache-2.0" ]
permissive
mbrukman/EtherealLegends
a1d4981c7e64c91d87c4a3f244c12e7328ee5adc
b1a6432604c0fb714c08bade682bd41c42614513
refs/heads/master
2020-12-31T07:11:16.363140
2017-01-29T03:31:11
2017-01-29T03:31:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,953
cpp
// © 2014 - 2016 Soverance Studios // http://www.soverance.com // 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...
[ "scott.mccutchen@soverance.com" ]
scott.mccutchen@soverance.com
94550721f75d51877eb60cad1f50ac0994ae5098
6a408c6754e8cad8376ff030570129963a0f7b2c
/contr/contr6/contr6/main.cpp
8f81dcd386b353ef1f00878682735b51bfebcd1d
[]
no_license
dimmkan/MSHP
e4ed8cb6528747f10900c6fe5bcf650238d3f9f6
956629ee2b83df28caacc2554bf7a00e1aad848c
refs/heads/master
2020-09-07T00:56:01.756864
2020-05-30T08:54:08
2020-05-30T08:54:08
220,607,366
1
0
null
2020-01-31T15:52:26
2019-11-09T07:29:26
C++
UTF-8
C++
false
false
623
cpp
#include <iostream> using namespace std; int main() { //1.05 = 12*105коп = 1260 //9*105 = 945 //1*1025 = 1025 //12*1025 = 12300 //кор = 11400 int n, ost, n1 = 0, n2 = 0, n3 = 0; int price1 = 11400, price2 = 1025, price3 = 105; cin >> n; n1 = n/144; //12 связок по 12 н...
[ "dimmkan@mail.ru" ]
dimmkan@mail.ru
4f3b40aba2a7a46a003e8f6e6d0d3603c32d04c6
cc7661edca4d5fb2fc226bd6605a533f50a2fb63
/System/MemberRelationshipService.h
09be4c2af135b64587929c2e60a768fc299ce121
[ "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
342
h
#pragma once #include "..\System\Collections\Hashtable.h" namespace System { namespace ComponentModel { { namespace Design { { { namespace Serialization { class MemberRelationshipService : public Object // 0x0 { public: System::Collections::Hashtable* _relations; // 0x10 (size: 0x8, flags: 0x1, type: 0x12)...
[ "info@cvm-solutions.co.uk" ]
info@cvm-solutions.co.uk
720b6d6cf0101ea94f04ad83d534715385b3bcae
8e00275060337dffd6ca64cf41ffc7102a601b1d
/Lesson3/L3_Project/src/TrafficObject.cpp
f280587740eccc7b36d302e50670e06c9164beeb
[]
no_license
08dipshikha/Concurrency_UdacityCourse
ae68d38def593b6c55b707423970df0b3f81696a
45ea2f3fe0a6ed392a114d83b57fb8dc88dd3105
refs/heads/master
2022-11-06T07:14:06.117704
2020-06-28T08:39:52
2020-06-28T08:39:52
272,488,878
0
0
null
null
null
null
UTF-8
C++
false
false
843
cpp
#include <iostream> #include <chrono> #include <algorithm> #include "TrafficObject.h" #include <mutex> // init static variable int TrafficObject::_idCnt = 0; std::mutex TrafficObject::`; // L3.2 : Add a static mutex to the base class TrafficObject (called _mtxCout) and properly instantiate it in the source file. This ...
[ "dipshikha.das@addverb.in" ]
dipshikha.das@addverb.in
ccc8de02227886b131d88c133d9daba93343fb68
e4ffd15e9cf875638883615256bc333404b3f248
/electricaloutlets/electric.cpp
1e67ffc581734ad019b65a90127e295860d4a856
[]
no_license
Thomas-McKanna/Kattis
a49938663b4cc168eb7c51cd85f9d3d6a116c22c
0477ee7d39f694e98ca033dd32151cde11e7a9b1
refs/heads/master
2021-06-18T13:37:48.920524
2021-01-19T23:37:28
2021-01-19T23:37:28
149,032,585
1
0
null
null
null
null
UTF-8
C++
false
false
349
cpp
#include <stdio.h> using namespace std; int main() { int N; scanf("%d", &N); int k; while (N--) { scanf("%d", &k); int total = 0, current; for (int i = 0; i < k; i++) { scanf("%d", &current); total += current - 1; } printf("%d\n", total ...
[ "thomasmckanna@gmail.com" ]
thomasmckanna@gmail.com
76ba8fba491e6306db63fad8c681322254e2360b
d324b3d4ce953574c5945cda64e179f33c36c71b
/php/php-sky/grpc/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc
0475918e6fc0420ecc4441c34b7f25b94eac3df0
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Denticle/docker-base
decc36cc8eb01be1157d0c0417958c2c80ac0d2f
232115202594f4ea334d512dffb03f34451eb147
refs/heads/main
2023-04-21T10:08:29.582031
2021-05-13T07:27:52
2021-05-13T07:27:52
320,431,033
1
1
null
null
null
null
UTF-8
C++
false
false
8,961
cc
// Copyright 2018 The Abseil Authors. // // 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable la...
[ "root@localhost.localdomain" ]
root@localhost.localdomain
e2c7495b60788fde1b8d9a019225e1e7400201d4
616f19c9ecab3330a70d7378f5f73bbbc84ee071
/cpp/timer1/timer1View.h
2aa54489440bab04df0bffe8f38e6d3d03c6331a
[]
no_license
rjking58/development
07dd809da012f736d82fde79c051cc2df328e6b7
9566648c6ecfc8b8cb6d166912dd674346da246b
refs/heads/master
2021-10-11T12:25:31.025767
2021-10-01T16:41:06
2021-10-01T16:41:06
14,648,819
0
3
null
null
null
null
UTF-8
C++
false
false
1,499
h
// timer1View.h : interface of the CTimer1View class // ///////////////////////////////////////////////////////////////////////////// class CTimer1View : public CView { protected: // create from serialization only CTimer1View(); DECLARE_DYNCREATE(CTimer1View) // Attributes public: CTimer1Doc* GetDocument(); // Op...
[ "richardjking2000@yahoo.com" ]
richardjking2000@yahoo.com
a201bdeb067c022345307b885d4e767b5a9f243f
36c31b485a5906ab514c964491b8f001a70a67f5
/OIs/USACO/2020-21/February/Platinum/countinggraphs.cpp
526f10748fbb41f8181e51fe8bc5077533e92be2
[]
no_license
SMiles02/CompetitiveProgramming
77926918d5512824900384639955b31b0d0a5841
035040538c7e2102a88a2e3587e1ca984a2d9568
refs/heads/master
2023-08-18T22:14:09.997704
2023-08-13T20:30:42
2023-08-13T20:30:42
277,504,801
25
5
null
2022-11-01T01:34:30
2020-07-06T09:54:44
C++
UTF-8
C++
false
false
1,026
cpp
#include <bits/stdc++.h> #define ll long long #define sz(x) (int)(x).size() using namespace std; const int N = 2e5+1, mod = 1e9+7; int ht[N],mx; vector<int> edges[N]; ll binpow(ll a, ll b) { ll res = 1; while (b > 0) { if (b & 1) res = (res * a)%mod; a = (a * a)%mod; b ...
[ "mahajan.suneet2002@gmail.com" ]
mahajan.suneet2002@gmail.com
f21d66c52a24f3574e6d62761dd1613fd2fa845d
5eed192e7b978e640f8a7b0ed7d955a34ccff447
/StRoot/RTS/EventTracker/gl3HistoManager.cxx
54e2b5793fadc910f1c8c5c97ad6496921e3b2c7
[]
no_license
iraklic/STAR-ClusterFinder
f7d0f2c1ab31ae7bd335f12c64efd38793730b2b
e9d63ffeb669abd8e602213d3a27ab973ff93d64
refs/heads/master
2021-01-13T12:38:26.128065
2017-06-09T02:37:08
2017-06-09T02:37:08
72,538,994
1
2
null
null
null
null
UTF-8
C++
false
false
6,100
cxx
#include "gl3HistoManager.h" #include <rtsLog.h> #include <errno.h> #include <netinet/in.h> #include <unistd.h> #include <netdb.h> #include <sys/types.h> #include <sys/socket.h> #include <fcntl.h> #include <string.h> #include <iostream> using namespace std; // ######################################################...
[ "iraklic@rcas6005.rcf.bnl.gov" ]
iraklic@rcas6005.rcf.bnl.gov
2f29064bc5c4dcd2cafed710c2f5123dfff0bb19
f76ff0145cd9bf69106c5381c33cc363ae59f227
/ComplexOPT/complexview.cpp
7f8f2e0262207492606a465b8e2e1a0402f317e3
[]
no_license
ray33ee/optima
8a08825378abb3747919c3736049171b9ededaec
5b25360fe9e596f394aa9ae47bf3373d9bcf6ef0
refs/heads/master
2021-03-22T05:13:16.012988
2018-02-19T22:57:28
2018-02-19T22:57:28
120,128,751
0
0
null
null
null
null
UTF-8
C++
false
false
59
cpp
#include "complexview.h" ComplexView::ComplexView() { }
[ "30669752+ray33ee@users.noreply.github.com" ]
30669752+ray33ee@users.noreply.github.com
8e924d7cc5eaf0ac9617dfc9e462d2b9b79b6f34
57d7bafaaf131553c9b2b6f85c3c1be5432059aa
/helloMessage.h
4487e9574f11eb57599d5e9428481788f470a7e4
[]
no_license
joneshf/scriptgen
6022abfeb32c733f02a532cf4c9bb5149ae96547
235bfa62ff01d03a14b8a52d3cf519c8144e2b9c
refs/heads/master
2021-01-15T09:42:54.760566
2015-11-20T14:25:22
2015-11-20T14:25:22
46,566,371
0
0
null
2015-11-20T14:25:27
2015-11-20T14:25:26
null
UTF-8
C++
false
false
580
h
/******************************************************************************* Name : helloMessage.h Author : Sean Alling Version : V0.1 Copyright : 2015 Creation Date : 11/19/2015 *******************************************************************************/ #ifndef HELLO...
[ "sean.alling@gmail.com" ]
sean.alling@gmail.com
f8e58986a5d668360434c6d01d89663ee3fc0a9d
f83ef53177180ebfeb5a3e230aa29794f52ce1fc
/cairo/cairo-1.14.8/test/dash-zero-length.c
5ab944bb705fd3d848e1d9f458167967d4af2ea4
[ "LicenseRef-scancode-public-domain", "MIT", "MPL-1.1", "LGPL-2.1-only", "GPL-1.0-or-later", "LicenseRef-scancode-other-permissive", "MPL-1.0", "LGPL-2.1-or-later", "Apache-2.0" ]
permissive
msrLi/portingSources
fe7528b3fd08eed4a1b41383c88ee5c09c2294ef
57d561730ab27804a3172b33807f2bffbc9e52ae
refs/heads/master
2021-07-08T01:22:29.604203
2019-07-10T13:07:06
2019-07-10T13:07:06
196,183,165
2
1
Apache-2.0
2020-10-13T14:30:53
2019-07-10T10:16:46
null
UTF-8
C++
false
false
4,068
c
/* * Copyright © 2006 Jeff Muizelaar * * Permission to use, copy, modify, distribute, and sell this software * and its documentation for any purpose is hereby granted without * fee, provided that the above copyright notice appear in all copies * and that both that copyright notice and this permission notice * ap...
[ "lihuibin705@163.com" ]
lihuibin705@163.com
290b7d5a01f42c04de644056814d5a4fbcaf1a8a
5675d6b4af33a8700e4be3070f447566b04c00d1
/daneel/base/code/libraries/BallDetector/BallDetector.h
d6e4b8bb097c135953eb4d6aaeabecdaba9e349d
[]
no_license
ENACRobotique/FAT_2018
f1d92e91f6a4e53fda1f04cace91064adf871b31
4084151e7655aa49fbbac103262cf2b1756a0f68
refs/heads/master
2018-12-08T23:42:40.468938
2018-09-11T17:49:43
2018-09-11T17:49:43
110,172,446
1
2
null
null
null
null
UTF-8
C++
false
false
627
h
/* * BallDetector.h * * Created on: 4 mai 2018 * Author: guilhem */ #ifndef LIBRARIES_BALLDETECTOR_BALLDETECTOR_H_ #define LIBRARIES_BALLDETECTOR_BALLDETECTOR_H_ #include <stdint.h> class BallDetector { public: BallDetector(uint8_t readPin); void detect(); void reset(); void setThresholds(int noBallTh...
[ "engelofdeath@live.fr" ]
engelofdeath@live.fr
28c9e4538b6e6220b008cfc2e8440f616a0f9d74
2b8c84956a5f798dda7048b58f2fd71dfaee0f30
/pseint-code/psterm/Application.h
0441689205ce9ac9480c92f1a15b9478236781eb
[ "MIT", "GPL-1.0-or-later", "GPL-2.0-only" ]
permissive
leandroniebles/code-compilation-component
1b087de451c60dea087421f12a3573e216ae620c
0c9b87fdae5cc21c3abb5dfcb8d52f92d582ae33
refs/heads/master
2023-01-22T19:18:04.631246
2019-09-30T23:24:57
2019-09-30T23:24:57
211,906,095
0
0
MIT
2023-01-12T07:38:18
2019-09-30T16:36:58
C++
UTF-8
C++
false
false
152
h
#ifndef MX_APPLICATION_H #define MX_APPLICATION_H #include <wx/app.h> class mxApplication : public wxApp { public: virtual bool OnInit(); }; #endif
[ "leandroniebles@gmail.com" ]
leandroniebles@gmail.com
7187177d22bb3d71cd938a61bb7c3d53e522b289
e4516bc1ef2407c524af95f5b6754b3a3c37b3cc
/answers/codeforces/112A Petya and Strings.cpp
f374fff70c5838346fe3127f0a52cefcd4221e5d
[ "MIT" ]
permissive
FeiZhan/Algo-Collection
7102732d61f324ffe5509ee48c5015b2a96cd58d
9ecfe00151aa18e24846e318c8ed7bea9af48a57
refs/heads/master
2023-06-10T17:36:53.473372
2023-06-02T01:33:59
2023-06-02T01:33:59
3,762,869
4
0
null
null
null
null
UTF-8
C++
false
false
377
cpp
// #include <iostream> using namespace std; #include <algorithm> #include <string> int main (int argc, char *argv[]) { string input[2]; while (cin >> input[0] >> input[1]) { for (int i = 0; i < 2; ++ i) { std::transform(input[i].begin(), input[i].end(), input[i].begin(), ::tolower); } cout <<...
[ "dog217@126.com" ]
dog217@126.com
b7693fca3381351927569f731f8ca31f6d3f7f53
5e83cb149423df034985fd032c9b3039ced6459e
/YUVviewerPlus/YUVmanager.h
ccbce175acb0fa742a6154d05aeac75ba7822990
[ "MIT" ]
permissive
mafan88/YUVViewerPlus
fa1817b70a3cd1502a06a1ddd247ec8d91a37f44
84a5a6d854d2d6252df54b92afb9555b02d9bbea
refs/heads/master
2022-03-30T07:08:40.745924
2015-06-05T14:41:03
2015-06-05T14:41:03
null
0
0
null
null
null
null
GB18030
C++
false
false
19,145
h
#pragma once #ifndef YUVMANAGER #define YUVMANAGER #include "ShowDlg.h" #include "PanDialog.h" #include "emmintrin.h" extern void yv12_to_rgb32(unsigned char * rgb32, int stride, unsigned char * yuv, int width, int height); extern void yv12_diff_to_rgb32(unsigned char * rgb32, int stride, unsigned char * yuv1, unsigned...
[ "yingmingfan@gmail.com" ]
yingmingfan@gmail.com
f906eb21956049a4fb566b517650d0c28c2df46d
b762ab5bd63a18b749fff95cf1b8929c068fc6d4
/2.CodeForces/13.A. Elephant.cpp
d557bcc59ba7b9735198906005ac3430a3e0cab8
[]
no_license
mrmh-code/My_problem_solution_different_OJ
8f30e363d37d4177ed6052252544edc5e32bf559
dc0bb3213101eb84c00601993adfbf6d3b258758
refs/heads/main
2023-06-29T14:09:04.010969
2021-07-25T04:31:06
2021-07-25T04:31:06
383,503,875
1
0
null
null
null
null
UTF-8
C++
false
false
185
cpp
#include <iostream> using namespace std; int main() { int n; cin>>n; if (n%5==0) { cout<<(n/5)<<endl; } else{ cout<<(n/5)+1<<endl; } }
[ "59336344+M-Mehedi-Hasan@users.noreply.github.com" ]
59336344+M-Mehedi-Hasan@users.noreply.github.com
ed13ed84c7cb3974d7a31081c130f20526c86ec8
e048e4be6556fe3d5e32385df9839639f4485d0d
/src/svg/SkSVGCircle.h
343a367ed76ca62704828887c6231f789f8031d1
[ "Apache-2.0" ]
permissive
voku/android_external_skia
54512b0de5f9bf32f8d312e1da308fe6de566f16
759a5d9e079f604fb69d97db8b501b9c851e83d5
refs/heads/gingerbread
2021-01-16T20:47:00.656841
2011-07-06T10:11:16
2012-02-25T12:57:04
2,706,545
0
1
NOASSERTION
2020-12-16T16:46:42
2011-11-04T01:48:27
C++
UTF-8
C++
false
false
951
h
/* libs/graphics/svg/SkSVGCircle.h ** ** Copyright 2006, 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/LICENS...
[ "initial-contribution@android.com" ]
initial-contribution@android.com
dbd2c06976c39f38b840c54f6ae85f8dadb7cb07
1dee25e8a8e9de6ccc2c78e60141a68ba028e7c5
/src/wallet_ismine.h
3ef806a6871c58271e854f7118113f10d8dc2f68
[ "MIT" ]
permissive
j00v/STUDS
327f83f57575d75da8f2a0edf4aab427216a7624
04edce15153c47f81b00d00dad44493043161205
refs/heads/master
2023-05-10T19:57:21.871184
2021-06-01T10:15:54
2021-06-01T10:15:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,189
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2017-2018 The PIVX developers // Copyright (c) 2021-2021 The Studscoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-l...
[ "studs@studentscoin.net" ]
studs@studentscoin.net
56ae8194465fce3d1c7e942feaa4d4dca15228f6
3bbf26b9a5243a26d183f9b93a09666117525f14
/paser_pe.h
729a1dca78489b7c66a1e3c3772fddf7da2309f3
[]
no_license
linfachen/compiler
781225c32b1040003ceb96006abe61588c638911
e81cf0bb7e528a59e81a7dbe60472bf5c887afd9
refs/heads/master
2020-12-14T03:36:28.124803
2020-01-17T21:26:55
2020-01-17T21:26:55
234,623,818
0
0
null
null
null
null
UTF-8
C++
false
false
378
h
#pragma once #include <iostream> #include <string> #include <windows.h> #include <time.h> char * get_file_buffer(const char *filename, int *file_size); class PE { public: int file_size; char * file_buffer; std::string file_name; IMAGE_DOS_HEADER image_dos_header; IMAGE_NT_HEADERS image_nt_headers; PE(const char...
[ "spinors@163.com" ]
spinors@163.com
d219d8e34f841f7dd3637e1a178b4b692dfc91ce
b8eda939888115f69f14d208a4eb34eec368cf0d
/src/session.cpp
5b1d4cba1b13f84632bcea9d417b85015b1cdfed
[]
no_license
jlsilva1994/curlinho
67da2acff13daa54dad647e18475beb872c31680
1726bfebd6cdb0b73cc7a304afbfe6ecd342ecab
refs/heads/master
2020-07-20T03:20:56.866751
2020-02-24T15:51:22
2020-02-24T15:51:22
206,562,692
1
0
null
2020-02-17T17:49:53
2019-09-05T12:49:59
C++
UTF-8
C++
false
false
8,326
cpp
#include "curlinho/session.h" #include "curl/curl.h" #include "curlinho/util.h" #include <algorithm> #include <functional> #include <iostream> #include <string> namespace curlinho { Session::Session() { curl_ = std::unique_ptr<CurlHolder, std::function<void(CurlHolder *)>>(newHolder(), &freeHolder); auto curl = ...
[ "jlsilva1994@gmail.com" ]
jlsilva1994@gmail.com
63658272aa2f96a8ed19137952f83c22c27ce15a
fc38a55144a0ad33bd94301e2d06abd65bd2da3c
/thirdparty/cgal/CGAL-4.13/include/CGAL/Minkowski_sum_2/Decomposition_strategy_adapter.h
dc0968edb6f1ff80f2d00f6e5422f64b2b09262a
[ "LGPL-3.0-only", "GPL-3.0-only", "GPL-1.0-or-later", "LGPL-2.1-or-later", "LicenseRef-scancode-free-unknown", "LGPL-2.0-or-later", "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-unknown-license-reference", "MIT-0", "MIT", "LGPL-3.0-or-later", "LicenseRef-scancode-warranty-disc...
permissive
bobpepin/dust3d
20fc2fa4380865bc6376724f0843100accd4b08d
6dcc6b1675cb49ef3fac4a58845f9c9025aa4c9f
refs/heads/master
2022-11-30T06:00:10.020207
2020-08-09T09:54:29
2020-08-09T09:54:29
286,051,200
0
0
MIT
2020-08-08T13:45:15
2020-08-08T13:45:14
null
UTF-8
C++
false
false
5,542
h
// Copyright (c) 2006 Tel-Aviv University (Israel). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // You can redistribute it and/or modify it under the terms of the GNU // General Public License as published by the Free Software Foundation, // either version 3 of the License, or (at your opti...
[ "huxingyi@msn.com" ]
huxingyi@msn.com
8677645672cee755fd498b37b3b116101c447934
696e35ccdf167c3f6b1a7f5458406d3bb81987c9
/third_party/blink/renderer/modules/bluetooth/bluetooth_advertising_event.cc
e9c75dc38eee625f632b6367f2ea5450fde9b8a3
[ "BSD-3-Clause", "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "MIT", "Apache-2.0" ]
permissive
mgh3326/iridium-browser
064e91a5e37f4e8501ea971483bd1c76297261c3
e7de6a434d2659f02e94917be364a904a442d2d0
refs/heads/master
2023-03-30T16:18:27.391772
2019-04-24T02:14:32
2019-04-24T02:14:32
183,128,065
0
0
BSD-3-Clause
2019-11-30T06:06:02
2019-04-24T02:04:51
null
UTF-8
C++
false
false
3,465
cc
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/modules/bluetooth/bluetooth_advertising_event.h" #include "third_party/blink/renderer/bindings/modules/v8/string_or_u...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
73ea6d2d0e2e69c3f3170182d56665f7cd53988c
56ace8049811f81bb3422c9ef8dffabd9b880ebd
/libs/custom/support/read_from_file.hpp
c9e88462548b8122f423f2546dae1075fa1c555a
[]
no_license
ramntry/homeworks
eebb83b1d96a043e0024f9f9a9a5c488b9f48baf
09a211b0008d95aa877b0c1d83120190ea1cb0fc
refs/heads/master
2016-09-10T02:14:49.395055
2013-05-26T20:19:13
2013-05-26T20:19:13
2,675,593
1
0
null
null
null
null
UTF-8
C++
false
false
1,296
hpp
#include <string> #include <fstream> #include <iterator> #include <iostream> namespace { template <typename T> struct read_from_file_impl { static inline void skip_ws_if_needed(std::ifstream &) { } typedef std::istream_iterator<T> iterator; static inline std::ifstream &source(std::ifstream &infil...
[ "ramntry@gmail.com" ]
ramntry@gmail.com
4b74f545d60f27b63adb80a3ee4d4662d505b30d
9922d41134f425535c8d4f06d5ca7149d16779b1
/Mntone.Rtmp/Mntone.Rtmp.Shared/NetStatusUpdatedEventArgs.cpp
a57328502951b5d5d72aeffe6223c74a4f8d8110
[ "BSD-2-Clause-Views", "BSD-2-Clause" ]
permissive
mntone/RtmpClient
35ec2c3b983cd3e8f606c59c894e9edd5c553374
802447ac189c4387d084f3f90b304efbe8ac1a3b
refs/heads/master
2020-04-06T03:40:54.349603
2015-09-22T01:24:04
2015-09-22T01:24:04
13,091,480
22
4
null
null
null
null
UTF-8
C++
false
false
221
cpp
#include "pch.h" #include "NetStatusUpdatedEventArgs.h" using namespace Mntone::Rtmp; NetStatusUpdatedEventArgs::NetStatusUpdatedEventArgs( NetStatusCodeType netStatusCode ) : NetStatusCode_( netStatusCode ) { }
[ "sd8@live.jp" ]
sd8@live.jp
ef0ebb8cf8eda18a68e35b4939a43c791668e795
1dc337ea2c024d62a23c9499834298b176193f49
/autocode/DRLPRUEBAS.+f1.off+design.exp_trans.h
32f9cff5155332432006ebdc999f6fadb336725a
[]
no_license
DanielUPM/DRLPRUEBAS_final
de15d2bf7e3c6fb81b9120642dab005301802ed8
cc1c68a56d6614c9d324bbd4a67097c8c7ff55f5
refs/heads/master
2020-03-22T11:32:33.258544
2018-07-24T15:21:49
2018-07-24T15:21:49
139,978,074
1
0
null
null
null
null
UTF-8
C++
false
false
922
h
//================================================================== // Code generated automatically // Description: Experiment class header //================================================================== #ifndef DRLPRUEBAS__F1_offDesign_exp_trans_H #define DRLPRUEBAS__F1_offDesign_exp_trans_H #include "DRLPRUEBA...
[ "daniel.riera@altran.es" ]
daniel.riera@altran.es
e036583cadfa486c25f33b14e7f4f66dfb0188dc
c46cf28b8fcb06af9d428fc1747a49dd32ce2d65
/past cpis/aeda1819-cpi1/BankOfficer.h
d9c893941a42cd615051657337ba77ad39b6de08
[]
no_license
maildejoliveira/feup-aeda
301a790e9df8f1c74348ed29a55f8c03dc630caa
bfa041246f6ef9e3065912facf6a52fd440cff4a
refs/heads/master
2023-05-30T06:17:40.115472
2021-06-19T15:35:29
2021-06-19T15:35:29
321,666,675
0
0
null
null
null
null
UTF-8
C++
false
false
640
h
/* * BankOfficer.h */ #ifndef SRC_BANKOFFICER_H_ #define SRC_BANKOFFICER_H_ #include "Account.h" #include <string> #include <vector> static unsigned int idActual=0; class BankOfficer { unsigned int id; string name; vector<Account *> myAccounts; public: BankOfficer(); void setName(string nm); void addAccount...
[ "up201906954@fe.up.pt" ]
up201906954@fe.up.pt
f8b241dc8e5d0219897d1d13bbb145e3ad60496b
49159202e7aab7ce88d9f9fcdfaa59fd159be739
/src/homework 3/14_黄凯佳_DBproject/src/BTree.cpp
69447eb20010763d393c1b3d19dfe8bc60ea2d52
[]
no_license
cajet/SYSU_DB
b9a736a7cad53d0ab04628f1b7ab644289cfdea1
ec2cda6efc6e8f47959835e2425519d9a9089da9
refs/heads/master
2020-05-22T18:55:41.546541
2017-03-12T10:28:53
2017-03-12T10:28:53
84,716,421
2
1
null
null
null
null
UTF-8
C++
false
false
8,099
cpp
#include "BTree.h" #include<time.h> #include "stdio.h" #include "stdlib.h" #include <map> template<typename T> void Read(std::ifstream & file, T & var) { file.read((char*)&var, sizeof(T)); return; } std::string int_string(int & i) { char t[256]; sprintf(t, "%d", i); return (std::string)t; } //...
[ "824160883@qq.com" ]
824160883@qq.com
f821707b57f2908c23a57b67a0c3e023d421351c
e38284c7578f084dd726e5522b3eab29b305385b
/Deform2D.cpp
45e3a7106c676d7f928df9c90fd850f6fef34445
[ "MIT" ]
permissive
changjiayi6322/deform2d
99d73136b493833fa4d6788120f6bfb71035bc4d
1a350dd20f153e72de1ea9cffb873eb67bf3d668
refs/heads/master
2020-06-02T19:38:45.240018
2018-07-04T20:26:35
2018-07-04T20:26:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,966
cpp
// Deform2D.cpp : Defines the entry point for the console application. // #include "stdafx.h" // only used for OpenFileDialog below #include "glut.h" #include "RigidMeshDeformer2D.h" rmsmesh::TriangleMesh m_mesh; float m_bounds[6]; Wml::Vector2f m_vTranslate; float m_fScale; rmsmesh::TriangleMesh m...
[ "git@liyiwei.org" ]
git@liyiwei.org
f4f6ab8074b50952c576582fe95ad494d8cb8830
8a5b5c26c8d195d983f528455702902ae9de843c
/cpp04/ex02/main.cpp
781fac6e76e85c677364bd2e336ffd94652f1559
[]
no_license
memoregoing/subject
f35e46d8277a60ad1ba59bf16570fe5ca101a2b6
1d55e045b1fe36d757038c32a43ed1fe0db16240
refs/heads/master
2023-01-24T16:12:52.717773
2020-11-30T04:36:53
2020-11-30T04:36:53
315,865,372
0
0
null
null
null
null
UTF-8
C++
false
false
2,431
cpp
// // Created by namhyung kim on 2020/11/25. // #include <iostream> #include "Squad.hpp" #include "TacticalMarine.hpp" #include "AssaultTerminator.hpp" #define UNITS 50 int main(void) { ISpaceMarine* bob = new TacticalMarine; ISpaceMarine* jim = new AssaultTerminator; ISquad* vlc = new Squad; vlc->push(bob); v...
[ "memoregoing@gmail.com" ]
memoregoing@gmail.com
bb9e7cee43cb45c8dd4b92fa79af48a2b585bdfd
3c338004386362902f34be5fde4b49e205996721
/oclStandardModel/OCLpp/Memory.h
29cc81e3171024f7fd8fbfff08408860303ba63e
[]
no_license
ARLM-Attic/opencl
846eff45bdc4ea2931b147f346b68fd068289a06
fe200aea0fdc981bd9fd337b1f298a14daf4b563
refs/heads/master
2020-12-30T16:14:49.575381
2012-10-01T21:29:18
2012-10-01T21:29:18
90,967,107
0
0
null
null
null
null
UTF-8
C++
false
false
141
h
#ifndef __OCLPP_MEMORY_H #define __OCLPP_MEMORY_H namespace ocl { class Memory { private: cl_mem mem; public: }; } #endif
[ "SND\\chatain_cp@a83551a4-30f6-4d81-a974-c6ced450ddbf" ]
SND\chatain_cp@a83551a4-30f6-4d81-a974-c6ced450ddbf
32d11bdd93d6e0c61fdb224f0d652c864b78fc8a
85cc761e44fbdfa3bcb8ac86f2d4acc6dda3238e
/ImageSnap/DoubleBufferSys.cpp
ab2c2d49c9e179dbf25af0ac61a1a48a7c3266fc
[]
no_license
Doushaoye/ImageSnap_MFC
1e67c851735c4cf4c43f3a17ee6b8ce8808f4ba5
5e408e303708389f2a18634871ebe735ae5ef9e2
refs/heads/master
2020-09-20T22:36:00.334432
2019-12-05T08:39:16
2019-12-05T08:39:16
224,607,579
0
0
null
null
null
null
UTF-8
C++
false
false
950
cpp
#include "stdafx.h" #include "DoubleBufferSys.h" #include <wingdi.h> #pragma comment(lib,"Msimg32.lib") DoubleBufferSys::DoubleBufferSys() { MemDC.CreateCompatibleDC(NULL); } DoubleBufferSys::~DoubleBufferSys() { MemBitmap.DeleteObject(); MemDC.DeleteDC(); } void DoubleBufferSys::Present() { pDC->BitBlt(0, 0, widt...
[ "zhangbo@zzjinhui.com" ]
zhangbo@zzjinhui.com
f3f07413e62421f2ea61d391aea142a65664c8d2
96e32886a2d46033f6f66a0faed7860e161f2a78
/src/core/include/ivy/buffer/fixed_buffer.hxx
d68afe2270322599f40810c5068e97ba7101d1b9
[ "MIT", "BSL-1.0", "BSD-2-Clause" ]
permissive
sikol/ivy
a89a173c413b55224b54008bfbde76b8648feee3
6365b8783353cf0c79c633bbc7110be95a55225c
refs/heads/main
2023-06-02T10:38:21.842777
2021-06-23T15:23:31
2021-06-23T15:23:31
366,716,146
0
0
null
null
null
null
UTF-8
C++
false
false
6,133
hxx
/* * Copyright (c) 2019, 2020, 2021 SiKol Ltd. * Distributed under the Boost Software License, Version 1.0. */ #ifndef IVY_BUFFER_FIXED_BUFFER_HXX_INCLUDED #define IVY_BUFFER_FIXED_BUFFER_HXX_INCLUDED #include <algorithm> #include <array> #include <cassert> #include <cstddef> #include <ranges> #include <span> #inc...
[ "felicity@sikol.co.uk" ]
felicity@sikol.co.uk
d6b9624ed60ac91ef1f2dc1c5f2d4aec6f2c2a15
9989ec29859d067f0ec4c7b82e6255e227bd4b54
/atcoder.jp/abc_121/abc121_b.cpp
fc5679d3522b0bf28af8ed15b4a2d4ac5af3212e
[]
no_license
hikko624/prog_contest
8fa8b0e36e4272b6ad56d6506577c13f9a11c9de
34350e2d298deb52c99680d72345ca44ab6f8849
refs/heads/master
2022-09-10T20:43:28.046873
2022-08-26T13:59:29
2022-08-26T13:59:29
217,740,540
0
0
null
null
null
null
UTF-8
C++
false
false
1,629
cpp
// abc121_b #include<iostream> #include<vector> #include<string> #include<algorithm> #include<map> #include<set> #include<unordered_map> #include<utility> #include<cmath> #include<random> #include<cstring> #include<queue> #include<stack> #include<bitset> #include<cstdio> #include<sstream> #include<iomanip> #include<ass...
[ "hikko624@gmail.com" ]
hikko624@gmail.com
cb2be32d89140313a528e80491c5a0cdd466180f
bb4fde5e9947b92a4a5a47d0645d88d2a615f4bd
/ProjectToolkit/include/impl/PriorityQueue_impl.h
a93b2f966e4f35e639b86ff0c2a1820b280d9829
[]
no_license
Forrest-Z/UNIGE-TASI-path-planners
c201addc332733c3a484703f5755072ddda200b5
98c171017e10455726b663717d5845353aa82448
refs/heads/master
2023-02-21T00:05:07.579144
2021-01-24T13:40:47
2021-01-24T13:40:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,260
h
#include <PriorityQueue.h> #include <algorithm> #include <functional> #include <set> #include <utility> #include "Graph.h" template<typename K, typename T> void PriorityQueue<K,T>::insert(const Value &n, const Key &k) { assert(handles.find(n) == handles.end()); handles[n] = queue.emplace(ElemType{n, k}); } t...
[ "ronca.pat@gmail.com" ]
ronca.pat@gmail.com
dd0b20ee208706a0f78e635e4989f37a860407c9
3502a242ea5acc5555b8f6f1a5f7190a772b2467
/tests/update_simple.h
2e47c9d727d4040e2c82c72b65ea5102978849fe
[ "MIT" ]
permissive
svenslaggare/database
eed7e98814e2e0ba5d4facb96b13768911c7e6d1
b57ad25e98ef7831362b39cefab712ad56855d33
refs/heads/master
2020-04-09T02:35:36.995348
2018-12-01T13:21:41
2018-12-01T13:21:41
159,946,753
2
0
null
null
null
null
UTF-8
C++
false
false
4,164
h
#pragma once #pragma once #include <iostream> #include <cxxtest/TestSuite.h> #include "test_helpers.h" class UpdateSimpleTestSuite : public CxxTest::TestSuite { public: void testSimple() { std::vector<std::vector<QueryValue>> tableData; auto databaseEngine = setupTest(tableData); std::vector<std::unique_ptr<Qu...
[ "anton_jansson@live.se" ]
anton_jansson@live.se
0f96a4f3a26e06851750741ecc80acbc8708a512
22b2d4d18d8cabb13f004c927fc8ac9845955381
/IncQol/hacklib/Memory_WIN32.cpp
e4ab93a33718e472fcee06e6b6fb3c96410f7256
[ "MIT" ]
permissive
pmartschei/Gw2Addon
db110b68f56fd27e7aecda6abd89ff1ae134feaa
a5b1c8f1fd7d47f0b4f9706a658dbc56f6de96ca
refs/heads/master
2022-03-19T03:12:07.685469
2019-12-28T11:12:50
2019-12-28T11:12:50
111,937,889
0
0
null
null
null
null
UTF-8
C++
false
false
5,155
cpp
#include "Memory.h" #include <stdexcept> #include <Windows.h> static DWORD ToWindowsProt(hl::Protection protection) { DWORD windowsProt = 0; if (protection & hl::PROTECTION_GUARD) { protection &= ~hl::PROTECTION_GUARD; windowsProt |= PAGE_GUARD; } switch (protection) { ca...
[ "philipp.martschei@gmx.net" ]
philipp.martschei@gmx.net
0096dccf69827f308900c0fd7003d427757f46b8
2bce17904e161a4bdaa2d65cefd25802bf81c85b
/codeforces/238/A/A.cc
f8bfb59a645d3935073d76817614efab6c999a4f
[]
no_license
lichenk/AlgorithmContest
9c3e26ccbe66d56f27e574f5469e9cfa4c6a74a9
74f64554cb05dc173b5d44b8b67394a0b6bb3163
refs/heads/master
2020-03-24T12:52:13.437733
2018-08-26T01:41:13
2018-08-26T01:41:13
142,727,319
0
0
null
null
null
null
UTF-8
C++
false
false
2,105
cc
#include "bits/stdc++.h" #include <assert.h> using namespace std; typedef long long ll; typedef long double ld; #define PB push_back #define MP make_pair const int MOD=1000000009; #define endl "\n" #define fst first #define snd second const int UNDEF = -1; const ll INF=1e18; template<typename T> inline bool chkmax(T &a...
[ "Li Chen Koh" ]
Li Chen Koh
a153a43232f816d0279818080e01bb30d0377bd3
410f248d8d5d756e11c5f563b0ced0017a927933
/DSP/Assignment4/BTCK.cpp
c38fc5e4e881f2d634a4f1c9eea088e947e99064
[]
no_license
bishop1307/Assignment
99b286b55d87312c8796b821baf42b8a17dbae3f
cf576a99bbb8f333c90a47a257a41f7c1f389065
refs/heads/master
2023-07-15T19:53:51.567569
2021-08-27T17:39:25
2021-08-27T17:39:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,696
cpp
/* Algorithm/Approach Write a recursive function backtrack, which perform backtracking. Backtrack functionality is explained as comments below Solution accepted on SPOJ SPOJ submission 26847315 */ #include <iostream> using namespace std; typedef unsigned long long ll; bool backTrack(ll *input, int *output, ll k ,...
[ "saraswatanurag14@gmail.com" ]
saraswatanurag14@gmail.com
eb5eaac7286481896dc12b240a8d3d0ce6d4f724
0a27164b8baf9c57c6b8dc8c8ef6e61a34d6f3a3
/프로그래머스 문제풀이/서머코딩윈터코딩(~2018)/스티커 모으기(2).cpp
5652be07c0fc08789eabcbcfeb37523a21ad3735
[]
no_license
GyosunShin/ProblemSolving
56840196d3a49b57e50e49ff2fa2ddb4488d38db
4ddedf4b26d9124e10f4f4490834078d9701f750
refs/heads/master
2021-01-04T10:00:12.712086
2020-06-29T12:29:45
2020-06-29T12:29:45
240,494,077
1
0
null
null
null
null
UHC
C++
false
false
790
cpp
// INPUT : 길이(N)는 1 이상 100,000 이하 // 1 <= sticker[i] <= 100 #include <iostream> #include <vector> #include <algorithm> using namespace std; // dp1 : 첫번째 스티커를 뜯었을 경우 // dp2 : 첫번째 스티커를 안 뜯었을 경우 int dp1[100000], dp2[100000]; int solution(vector<int> sticker) { int N = sticker.size(); dp1[0] = sticker[0]; dp1[1] =...
[ "gyosunshin@gmail.com" ]
gyosunshin@gmail.com
dc119b37c5b04bcf8d054e7499a0e66c8e9dc8c1
204cd4dd10b99835441f330de62402ff03a34558
/kernel/thor/generic/descriptor.hpp
4c491c365358fc659dd4f59848eee8dbb6464757
[]
no_license
battyone/managarm
db29d3ee3e2e7ffd1b5512e669fb154226a79853
46ab1b809d155c9cf4a7228e8d51769491b551c4
refs/heads/master
2022-03-24T15:24:57.236871
2019-11-24T15:26:12
2019-11-24T15:26:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,114
hpp
#ifndef THOR_GENERIC_DESCRIPTOR_HPP #define THOR_GENERIC_DESCRIPTOR_HPP #include <frigg/smart_ptr.hpp> #include <frigg/variant.hpp> #include <smarter.hpp> #include "mm-rc.hpp" namespace thor { struct AddressSpace; struct IoSpace; struct Memory; struct Thread; struct Universe; struct IpcQueue; struct MemorySlice; str...
[ "alexander.vandergrinten@gmail.com" ]
alexander.vandergrinten@gmail.com
2c3be0b6c9299dc88a91b05c3954b5ca8cc1d4d9
ddfad3a2ab9891edd0f5c17eab25672aa27d9131
/src/DetectorConstruction.cc
57b93d245ce2589678275e5e1e64658b05b1f4aa
[]
no_license
akim01/GAGGSim
06d3e3d0608e015f5424eeaa0ac65f2cfd9a56b3
e6ed6a176194745b58cdd7d07b8f198f1d3c66b0
refs/heads/master
2021-01-01T18:10:01.810638
2017-07-21T07:14:07
2017-07-21T07:14:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,178
cc
#include "DetectorConstruction.hh" using namespace std; DetectorConstruction::DetectorConstruction(){ } DetectorConstruction::~DetectorConstruction(){ } void DetectorConstruction::DefineMaterials(){ G4NistManager* NistManager = G4NistManager::Instance(); // elements and materials G4double density; //air ...
[ "wimmer@phys.s.u-tokyo.ac.jp" ]
wimmer@phys.s.u-tokyo.ac.jp
a109f8bbdce1bb54c31eb0d745d7a97686aff3a4
b7f7e4c182692315be0a083176a8c9630753eabe
/pathology-viewer-flask/app/libs/mld_loader/src/MLDReader.cpp
79079ff7a7530b63c0114dc37e1808f8129ac163
[]
no_license
zokicpokic/testClient
a77c4ce68a8510580342709f36fc627b01c06736
14491270b568fd6fc136bd7d9ef9877978266726
refs/heads/master
2023-02-11T05:44:13.895742
2021-01-15T19:41:06
2021-01-15T19:41:06
285,215,121
0
0
null
2020-12-29T19:44:13
2020-08-05T07:33:56
C++
UTF-8
C++
false
false
26,580
cpp
#include "../include/MLDReader.h" #include <string> #include <iostream> #include "../include/MLDFile.h" #include "../include/PolyLine.h" #include "../include/Polygon.h" namespace mld { MLDReader::MLDReader() { } //MLDReader::MLDReader(string path) //{ // m_path = path; //} STATUS MLDReader::ReadMld(const cha...
[ "zoran.maravic@adacta-fintech.com" ]
zoran.maravic@adacta-fintech.com
bd402d67259117a94de900ad954b7b9165a0a6fe
51a9cca04e2ebc66a4661bcf001c1d4a664a42ae
/main.cpp
828244a71e3c49c3b6662b8d38cbf895550e6e99
[]
no_license
laurineaujeau/QT2
e9d06665ca36f68c52134595dac4ace6a03e3cf9
131064837ead0cf4c87d6050b92e8d71c76b66e2
refs/heads/master
2021-04-02T00:52:25.932435
2020-03-18T12:31:13
2020-03-18T12:31:13
248,225,820
0
0
null
null
null
null
UTF-8
C++
false
false
162
cpp
#include <iostream> #include <QApplication> #include <QPushButton> #include <QWidget> int main() { std::cout << "Hello, World!" << std::endl; return 0; }
[ "laurine.aujeau@isen-ouest.yncrea.fr" ]
laurine.aujeau@isen-ouest.yncrea.fr
7d2d097605685bd952146e3b13de34abc70fa023
73b61bbefc7dc0dd6c8cc9c7478f9ea7056220ca
/Falcor/Samples/Effects/HDRToneMapping/HDRToneMapping.cpp
f9589d760f63a18ac0a97bd50a7249cdfcedcb86
[]
permissive
Arjun-Arora/GettingStartedWithRTXRayTracing
c5b17d4bcb019cbe72077c6a6580f917dce45c6e
cb90342da86fbdf22def3c73b4d1fd5cba1674af
refs/heads/master
2022-10-08T23:39:43.799099
2020-06-12T19:06:46
2020-06-12T19:06:46
264,807,017
0
0
BSD-3-Clause
2020-06-12T01:21:34
2020-05-18T02:42:34
C++
UTF-8
C++
false
false
8,632
cpp
/*************************************************************************** # Copyright (c) 2015, NVIDIA CORPORATION. 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 sourc...
[ "hankzhangcb@gmail.com" ]
hankzhangcb@gmail.com
4f5cbaebbd917b6b15528640cb20ac95727d2998
6579dc2b14bbaa962e6e498d7173bebab8bba159
/cs106/gserv/moc_gwin.cpp
68669ab3c601ee5cb7f098d9625c859a7044bff5
[]
no_license
roles/toy_program
48d8a16e8eacad70529fddef07c58530fdab6ac4
de57347234ceb9c82283fb21d48c66c50be937d3
refs/heads/master
2020-11-26T14:08:55.307645
2014-05-21T12:26:05
2014-05-21T12:26:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,707
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'gwin.h' ** ** Created: Thu Apr 10 09:20:40 2014 ** by: The Qt Meta Object Compiler version 63 (Qt 4.8.1) ** ** WARNING! All changes made in this file will be lost! ******************************...
[ "rolex568@gmail.com" ]
rolex568@gmail.com
0dd85d03728698e0e754ef1c8ed8df0aef191b0d
21e0743677b95c3a26341c40ec9a68b9585bebaa
/src/BkgSampleSelector.cpp
811ef0308e2a8bfa1803e9fb5f9fd7f485cc1c3b
[]
no_license
qbuat/GravitonHunter
031a597f19f61e84113da94192bd628731a0cfde
c46ac7fd9e9c10dbd15581c87941a8926e08a6ec
refs/heads/master
2021-01-15T13:33:43.905954
2016-03-01T20:19:10
2016-03-01T20:19:10
52,906,765
0
0
null
null
null
null
UTF-8
C++
false
false
18,771
cpp
#include "BkgSampleSelector.h" #include "ToolsUtilities.h" #include "ToolsCommons.h" #include <TError.h> #include <TF1.h> //////////////////////////////////////////////////////////////////////////// BkgSampleSelector::BkgSampleSelector(TTree* tree) : GravitonSelector(tree) /////////////////////////////////////////////...
[ "qbuat@ccage021.in2p3.fr" ]
qbuat@ccage021.in2p3.fr
816b7376f01d787c08fd6ffec907d7c863a266d4
f9e36eb526d70ddce410e5bba86dd449011cca3c
/Михайлов Илья Алексеевич/Лабораторныя работа №2/Стек.cpp
2ade15ec7a4b5f2d1b4d4099c3f897180903dc2c
[]
no_license
apanaev/istu-aisd-2020-B04-191z
758c5506d86f38698486b4440e19a863b4f5d3b9
a753ea4ee9f453b3e6f62478acd9ea5647440ebd
refs/heads/master
2022-12-24T20:28:57.823615
2020-07-03T10:57:43
2020-07-03T10:57:43
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
1,378
cpp
#include<iostream> #include<ctime> #include <stdlib.h> #include<time.h> using namespace std; class STACK { public: STACK(); STACK(const STACK& st) { stack = new int[st.N]; N = st.N; for (int i = 0; i < N; i++) { stack[i] = st.stack[i]; } } ~STACK(); void dobavlenie(int zx); int Vershina(); int Nsize(); ...
[ "64276280+M-cod@users.noreply.github.com" ]
64276280+M-cod@users.noreply.github.com
e1143d7af4e1b5314902f7629b0bab039873256c
76f2e130c638f571a3268dfc6e6010a99abe4941
/Microprocesor/main/testbench.cpp
86c873c31f439dad3abc61369308257a045264c3
[]
no_license
skaptox/SystemC
001f8e138c3b5b4baf20e1d7a6d00df80e9cbab7
50d2d9123808148efab5f45544b59e67dad027ae
refs/heads/master
2021-05-16T04:09:06.685771
2017-12-15T22:41:27
2017-12-15T22:41:27
105,823,455
2
0
null
null
null
null
UTF-8
C++
false
false
310
cpp
#include"testbench.h" void testbench::test() { for(int i = 0; i<12; i++) { cout<<endl<<"Instrucción: "<<i<<endl; pc_out.write(i); enable_out.write(1); wait(); //print(); } sc_stop(); } void testbench::print() { cout<<sc_time_stamp()<<" | "<<pc_out.read()<<"\t| "<< enable_out.read()<<endl; }
[ "oalbornoz08@gmail.com" ]
oalbornoz08@gmail.com
ff2b3e569d6a60bf0cf7316c37dd100172c7642a
65c60ff91a9c5c3b64790c4df7c7c4fe80521af7
/ddcc_hon/a.cpp
8775c05c10798b7cb47b7ea289e91b9b001fe8ca
[]
no_license
yukarinoki/programing_contests
9770e1209078402bd083644a8834d8b77cbaea4b
c211bc777fb4c1e8d1c1dd65b44e50f1debf8f88
refs/heads/master
2020-04-18T22:05:05.988706
2020-02-22T20:24:12
2020-02-22T20:24:12
167,783,852
0
0
null
null
null
null
UTF-8
C++
false
false
1,477
cpp
#include <iostream> #include <sstream> #include <string> #include <vector> #include <stack> #include <queue> #include <set> #include <map> #include <algorithm> #include <cstdio> #include <cstdlib> #include <cstring> #include <cctype> #include <cmath> #include <cassert> using namespace std; #define all(c) (c).begin(), ...
[ "blkheartp@gmail.com" ]
blkheartp@gmail.com
326752395def6c125deb2552459f395cfab06e86
c107177bc933bae1209a56bc9222020727b0e4c5
/JOI_Prelim/cheese.cpp
68e4e0d9da851f77a64ccf296cf7d10ae91da3f6
[]
no_license
shota3506/AOJ
4f64b4b7a24ee23350d2a3e502289b7099061c67
a3af54a8dd9442be2ff4a2b592f18b0a1f813cba
refs/heads/master
2020-06-05T17:43:31.980761
2020-05-04T00:38:56
2020-05-04T00:38:56
192,500,898
0
0
null
null
null
null
UTF-8
C++
false
false
1,557
cpp
//Cheese #include <iostream> #include <queue> using namespace std; static const int MAX = 1000; static const int dx[4] = {1, 0, -1, 0}; static const int dy[4] = {0, 1, 0, -1}; int H, W, N, gx, gy; int A[MAX][MAX]; bool visited[MAX][MAX]; struct State { int x, y, d; State() {} State(int x, int y, int d): ...
[ "s.shota.710.3506@gmail.com" ]
s.shota.710.3506@gmail.com
ca43cfb4428c3069a7b47b7a71f8294127e7edcf
7f02def9616235293c597165b65e3cf7ffd4efda
/reproductor/dialog.cpp
e236a71f37c3e4ca6958fa30b983c79aa0fb216e
[]
no_license
alu4216/curso-qt-osl-reproductor
21f3b4869bc7fc17997415df384b42ea87e71007
f5c94e4ec121a7671fabd32c1ed27581ed2b8064
refs/heads/master
2021-01-18T00:36:53.283363
2014-03-07T17:05:44
2014-03-07T17:05:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
265
cpp
#include "dialog.h" #include "ui_dialog.h" Dialog::Dialog(QWidget *parent) : QDialog(parent), ui(new Ui::Dialog) { ui->setupUi(this); ui->label->setText("Programa de reproducción de video.\n Curso de QT "); } Dialog::~Dialog() { delete ui; }
[ "josue_92_29@hotmail.com" ]
josue_92_29@hotmail.com
86cd80992e996286ce862d72532b39b4a6b076a8
e1bef78b63a020f212e650b02a7bc93aaf22c673
/OpenGL/Library.h
7cc8bd323ff35bc944e62f501e18ada6af9be150
[]
no_license
temelkirci/OpenGL-Game-Engine-Demo
10b5f45bd4cf84740f8de7e2c1f6ea77f645e436
2fc21e27b952db0f1ea5301378b0b72c6848f3da
refs/heads/master
2021-09-13T13:32:13.312502
2018-04-30T16:33:26
2018-04-30T16:33:26
106,525,824
1
0
null
null
null
null
UTF-8
C++
false
false
295
h
#pragma once #include <GL/glew.h> #include <GL/glut.h> #include <SDL/SDL.h> #include <glm/glm.hpp> #include <iostream> class Library { public: Library(); ~Library(); bool InitLibrary(); SDL_Window* mainWindow; SDL_GLContext mainContext; SDL_Renderer* mRenderer; private: };
[ "kircitemel@gmail.com" ]
kircitemel@gmail.com
6101fe5380382c380adb4fcbfe5830d8726f3d10
7d631f6f1bcb6c5cd9cb8cc34e4ea6c2a6dcd562
/ant/memory/wrappers.hpp
bee84d1f2561983da68c479fca5c7bef3125358f
[ "BSD-3-Clause" ]
permissive
asankagp/visual-tracking-matlab
0e31c0c0b12cb3ffec196773f24ee76598e9544b
e82c9ea14747d099cfc870aa3cf2be1dbb8d4cda
refs/heads/master
2020-03-20T21:22:20.757380
2017-10-20T16:14:57
2017-10-20T16:14:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,574
hpp
/******************************************************************************* * Piotr's Computer Vision Matlab Toolbox Version 3.00 * Copyright 2014 Piotr Dollar. [pdollar-at-gmail.com] * Licensed under the Simplified BSD License [see external/bsd.txt] **********************************************************...
[ "luka.cehovin@gmail.com" ]
luka.cehovin@gmail.com
94298c7a30d46267e502e8bfd2b49697f3fe7eac
dc13fe32f6880cd146a57b836189cf3ee116752f
/src/model/Parameter.hpp
06fa489a374949edc3c79c6f243f1e55e7afc631
[]
no_license
vitorhirata/project-agrobio
e3152ac22ad090f8bfc1e540b5688b4219f0e89f
d204e1d80976c4886dc961d440a7f8e3b5eb1c15
refs/heads/master
2022-10-10T06:08:21.576256
2022-09-27T14:28:52
2022-09-27T14:33:14
111,210,725
0
0
null
2021-10-01T06:01:59
2017-11-18T14:09:03
C++
UTF-8
C++
false
false
7,607
hpp
#ifndef PARAMETER_H #define PARAMETER_H /* Class responsible for dealing with the model's parameters. Including parameter initialization, variating parameters and writting parameters to file. */ class Parameter{ public: int latticeSize; int numberInitialVariety; // Initial number of varieties in the community i...
[ "vitors.hirata@gmail.com" ]
vitors.hirata@gmail.com
6e293b8881ea99e88d2e95743c8629a9a3a06d51
8d95ac52130bbc403c69907a31e61509a29b5fbd
/Src/400_Server/SyncConnection.h
bbc2e96632c5b284b72af63ede4bd394e818fc04
[]
permissive
profrog-jeon/cppcore
da99ce70f25bb9180ea5f996511bf484cdb2a30e
40a771ddd52f9c46163595595aa6e2ccbe581024
refs/heads/master
2023-09-01T09:42:59.313456
2023-08-23T04:05:27
2023-08-23T04:05:27
139,594,593
52
19
MIT
2020-08-15T06:59:52
2018-07-03T14:22:41
C++
UTF-8
C++
false
false
547
h
#pragma once #include "SyncTCPSocket.h" namespace core { class CSyncConnection { friend class CSyncServer; protected: CSyncTCPSocket* m_pSocket; std::string m_strClientIP; public: CSyncConnection(CSyncTCPSocket* pSocket); virtual ~CSyncConnection(); virtual ECODE SetAcceptedSocket(SOCKET hNe...
[ "profrog.jeon@gmail.com" ]
profrog.jeon@gmail.com
9c04818f12e4d35acc1d40ed8d2dc00b929de194
9e34e84c20760a9a37512c675074974ac7e56275
/more-source/2011-2012/coci/contest4/kino.cpp
84e7391c84c6df5871514e33a508d9e3ae177950
[]
no_license
Slava/competitiveProgramming
2b7f26bf24143b459c6e2625ef1ea343a926bb76
b68391720b9f9efc4162a66ca07d9448cffc1453
refs/heads/master
2021-01-21T12:40:40.053352
2020-01-06T19:21:45
2020-01-06T19:21:45
9,552,080
8
6
null
null
null
null
UTF-8
C++
false
false
690
cpp
#include <cstdio> #include <cstdlib> #include <map> #include <set> #include <cmath> #include <vector> #include <string> #include <cstring> #include <iostream> #include <algorithm> using namespace std; int main() { string s; vector<int> a; int love = 0, n; cin >> n >> s; a.push_back(1); for (int i = 0; i < (in...
[ "slava@meteor.com" ]
slava@meteor.com
6c6299e3a4533895644f19b74c6f1fff02486e32
73a96e50cc523e235b68aedcf2118f26351e44b8
/src/modules/Scene.cpp
ad02693e67b1616fc0b103515a4d89a5ab87ebad
[]
no_license
AdilSerker/terragen
587fcbf6cc86e841860410feb9cec4b0d426eb77
894e096450c6da6d63757aab4f44243d3cfa9f96
refs/heads/master
2020-04-18T20:24:19.113497
2019-01-30T21:25:26
2019-01-30T21:25:26
167,737,186
2
0
null
null
null
null
UTF-8
C++
false
false
2,771
cpp
#include "Scene.h" #include <iostream> Scene::Scene() { this->shader = new Shader(); shader->load("./shaders/terrain.vs", "./shaders/terrain.fs"); this->heightmap = new Heightmap(); } Scene::~Scene() { delete shader; delete heightmap; } void Scene::draw(LightDirectional *light, CameraOrbit *camera) { glm::mat...
[ "adilserkerov@gmail.com" ]
adilserkerov@gmail.com
505109aba17b2940af97066035150994abc2c3db
82bc4de7cc56729d9a35128edabdbbc577cad58a
/Lab3/Lab3_RadioCode/Lab3_RadioCode.ino
f558ad7c73a5a529538e45835307778a5fba2590
[]
no_license
ECE3400Team19/ECE3400Team19.github.io
0753ff2419791412bf9b0cfcae7a13bd9d2aef03
1b9a3bbd271934403f4836938e930ab27413d9a4
refs/heads/master
2020-03-27T16:39:58.161005
2018-12-10T16:59:03
2018-12-10T16:59:03
146,798,260
0
2
null
null
null
null
UTF-8
C++
false
false
16,645
ino
/* Copyright (C) 2011 J. Coliz <maniacbug@ymail.com> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. */ /** * Example for Getting Started with nRF24L01+ radios. * * This is an exa...
[ "rjm448@cornell.edu" ]
rjm448@cornell.edu
000781b0094ba566b3c4bc689c2ea5dbfa40dfbf
b163e83fa01efeec6f19996528cd382cb7f62098
/lib/Target/JVM/MCTargetDesc/JVMMCTargetDesc.h
8698e0eafdcf0074a379ce5373fb119c10315005
[ "NCSA" ]
permissive
jbhateja/llvm_jvm
dde0be2c81c7a1f274d00576d5a71dbde9b80910
f6df667676cb057ea42f766f1f99c2d4c66a9071
refs/heads/master
2020-04-16T05:56:29.664086
2019-03-10T16:02:39
2019-03-10T16:02:46
165,327,435
4
0
null
null
null
null
UTF-8
C++
false
false
2,116
h
//==- JVMMCTargetDesc.h - JVM Target Descriptions -*- C++ -*-=// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------=...
[ "jatin.bhateja@gmail.com" ]
jatin.bhateja@gmail.com
9a441bf12ec8e06028d62dbbe809e09adac87b94
0914ef830712bcddd43732f4f6d4c83d42f62430
/SprGBuf.cpp
6bb24ed27830e4f2414f98e00febe4b56beed8bd
[]
no_license
interdpth/RD1Engine
e6f6cf8191429bb33d6e2e60434ed1b87ceccbdf
fb9ba7d7357fed4bfc490c5a97b9bd6163640932
refs/heads/master
2023-03-28T18:00:30.651415
2021-03-29T03:07:44
2021-03-29T03:07:44
150,758,140
2
0
null
null
null
null
UTF-8
C++
false
false
1,371
cpp
#include "SprGBuf.h" SpriteObject::SpriteObject() { this->PreviewPal=0;// [512]; this->PreRAM = 0;// [0x8000];//Funny name XD this->PartNo=0; sprTileBuffer = NULL; memset(&Borders, 0, sizeof(Borders)); this->Create(NULL, NULL); // PreviewSprite->_fullCache = NULL; } SpriteObject::SpriteObject(unsigned char* ...
[ "interdpth@gmail.com" ]
interdpth@gmail.com
7f962537ed148648f7ee148f9fdcc15a5e447b5c
23e393f8c385a4e0f8f3d4b9e2d80f98657f4e1f
/Win32 Programming/DCExplorer/RopCodes.h
c6ab95f6c66580b25214cac1f739d7d321056f0a
[]
no_license
IgorYunusov/Mega-collection-cpp-1
c7c09e3c76395bcbf95a304db6462a315db921ba
42d07f16a379a8093b6ddc15675bf777eb10d480
refs/heads/master
2020-03-24T10:20:15.783034
2018-06-12T13:19:05
2018-06-12T13:19:05
142,653,486
3
1
null
2018-07-28T06:36:35
2018-07-28T06:36:35
null
UTF-8
C++
false
false
734
h
// RopCodes.h : header file // ///////////////////////////////////////////////////////////////////////////// // CRopCodes window class CRopCodes : public CIDCombo { // Construction public: CRopCodes(); void Load(int sel); // Attributes public: // Operations public: // Overrides // ClassWizar...
[ "wyrover@gmail.com" ]
wyrover@gmail.com
59f2b3e5c2773bae9e1285daa9a6c2cdda3bf204
b8290604e4741e83e64fd35a3e6b866546c5fa38
/src/helium/App.h
3f69602cd645444db59a7473eacb82e3f2ebf290
[]
no_license
wanglailing/wang
8ac72996970af7bbddaf21c13476651a7d5092de
4716523ce013f9844e97b124062d9128b84ec0b8
refs/heads/master
2020-04-06T07:10:32.803642
2016-01-06T01:30:17
2016-01-06T01:30:17
27,461,555
0
1
null
null
null
null
UTF-8
C++
false
false
3,522
h
/* * ---------------------------------------------------------------------------------- * 系统名称: 列控设备动态监测系统 * 文件名: App.h * * 版本号: 1.0 * 创建日期: 2014年06月12日 13时02分49秒 * * 作者: lixianghui (rocklee), lxkjlxh@yahoo.com.cn * Copyright (c), 2006 - 2014, 河南蓝信科技有限公司 版权所有. * * * 修改历史: ...
[ "wanglailing@126.com" ]
wanglailing@126.com
52edc090d785928d8f8b47a58723770c49ca2dc6
23e1d5e13396c6e2ddda6db3f1b1c549a328bfad
/svio_slam/vikit/nlls_solver.h
f8c491c83a92ce55a84fcfa969d5b82bbbac30b5
[]
no_license
supersonic2022/svio_slam
9898cbc440be373e7b236223773806fb5fcf17d7
d594af8fa68c03ae224cf1ff42411d5d02fd0fd3
refs/heads/master
2021-01-23T09:13:53.406676
2017-09-27T17:07:50
2017-09-27T17:07:50
102,569,412
1
2
null
null
null
null
UTF-8
C++
false
false
5,176
h
/* * Abstract Nonlinear Least-Squares Solver Class * * nlls_solver.h * * Created on: Nov 5, 2012 * Author: cforster */ #ifndef LM_SOLVER_H_ #define LM_SOLVER_H_ #include <stdint.h> #include <stdio.h> #include <iostream> #include <math.h> #include <Eigen/Core> #include <Eigen/StdVector> #include "math_uti...
[ "lihaidd@hotmail.com" ]
lihaidd@hotmail.com
5d6915bbb1f9782b13bd57862b7173546810714a
91b9b9bb7af5d4833d349c311a6faea87d794f23
/Basics/classes/1.22.cpp
d9e0f0bf2c2d076fd3d9645cbd55225bd801a917
[]
no_license
lgrigoryeva1/accelerated-cpp
66b05b8f9ac86cf3f43ba426fc0ad3cfb370b429
af8765939d91d5449b2b1cb7c39e12524d623f8c
refs/heads/master
2023-03-01T14:30:09.795737
2021-02-03T13:44:40
2021-02-03T13:44:40
328,570,171
0
0
null
null
null
null
UTF-8
C++
false
false
303
cpp
#include <iostream> #include "Sales_item.h" using std::cout; using std::cin; using std::string; using std::endl; int main() { Sales_item item0, item1; if (cin >> item0){ while(cin >> item1){ item0 += item1; cout << item0 << endl; } } return 0; }
[ "mila.grigoryeva@nextfour.com" ]
mila.grigoryeva@nextfour.com
a5f9457cfac7be2b4349f18a04152bf8eef6bb35
21e389fec25dedfd50a160730c7bc8cd1f25eb09
/class/aplicacion/barra/barra.h
1265937ff6f57a802a2b24892fa08179c96dc571
[]
no_license
TheMarlboroMan/cheap-shooter
6071a3775c438708af7d10bffdc87e348071f765
a3e05f6a03ffb97526ab76502f464c95afaa128c
refs/heads/master
2021-08-18T16:03:58.982613
2021-05-11T08:44:39
2021-05-11T08:44:39
119,830,022
1
0
null
null
null
null
UTF-8
C++
false
false
1,755
h
#ifndef BARRA_H #define BARRA_H #include "../../motor_sdl/video/representacion/representacion_grafica/representacion_pixeles/representacion_pixeles.h" #include <algorithm> class Barra { private: DLibV::Representacion_pixeles_estatica * rep; //El lienzo de dibujo, vamos a darle unas dimensiones máximas. unsigned ...
[ "marlborometal@gmail.com" ]
marlborometal@gmail.com
eb3c76b26fad52b179db96a77e646f1765445c7e
1cb008c91294086de8c2f4cd72e15a26270b89a9
/23/23.6/MTSample/MTSampleView.cpp
83174561269f904209b6f9461fb88800c5ecf57d
[]
no_license
pengge/C_program
95a5d5ec3e690e508e91353d58aedeb1100e96cd
06697bf515404981cb68878215f3bb853666d4b8
refs/heads/master
2020-05-18T18:30:01.934429
2018-12-05T04:14:49
2018-12-05T04:14:49
null
0
0
null
null
null
null
GB18030
C++
false
false
4,724
cpp
// MTSampleView.cpp : implementation of the CMTSampleView class // #include "stdafx.h" #include "MTSample.h" #include "MTSampleDoc.h" #include "MTSampleView.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ////////////////////////////////////////////////////////////...
[ "alihuhu1998@163.com" ]
alihuhu1998@163.com
57ea19847d54b4bc1b84fb778fe92826a363baef
94cb10457b3a3ade5b2cca4212d4b29f83af1dd6
/Source/PortfolioApp/assimp/VertexTriangleAdjacency.h
e12315912a5db5972c765b275e090ae4ec0613a9
[]
no_license
dy-dev/Portfolio
b371f1e3e5cbce62c9d3cce3874a22e1d8fa7b5f
2f8af425a23a653c1b282f710d6c770100eb7c64
refs/heads/master
2021-04-30T23:08:25.091605
2016-06-07T09:34:38
2016-06-07T09:34:38
49,322,457
0
0
null
null
null
null
UTF-8
C++
false
false
4,449
h
/* Open Asset Import Library (assimp) ---------------------------------------------------------------------- Copyright (c) 2006-2012, assimp team All rights reserved. Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following condition...
[ "dominique.yolin@free.fr" ]
dominique.yolin@free.fr
da7bf11750a3f499da90961bee2ff4a5746979cd
e80c5a2c5db97e5e6191cac5b68d23b73636c2ac
/spring2016/NLP/Assignments/Assignment_2/tools/openfst-1.5.1/src/extensions/compact/compact8_unweighted-fst.cc
9fa925157d82c1aee5ab0dcf565052f196809f34
[ "Apache-2.0" ]
permissive
batu/codex
e2bdfbe8d0a6e86d21c6caedea80ac6375e000dc
35171929dec936810b8994cc476f205b8af5adb6
refs/heads/master
2021-01-17T07:00:16.055807
2016-12-09T22:52:22
2016-12-09T22:52:22
51,299,933
0
0
null
null
null
null
UTF-8
C++
false
false
550
cc
// See www.openfst.org for extensive documentation on this weighted // finite-state transducer library. #include <fst/fst.h> #include <fst/compact-fst.h> using fst::FstRegisterer; using fst::CompactFst; using fst::LogArc; using fst::StdArc; using fst::UnweightedCompactor; static FstRegisterer<CompactFst<StdArc, Unwe...
[ "ba921@nyu.edu" ]
ba921@nyu.edu
9d931231bd491000d6c710af77be29f8f433e8ee
fbb5416981d9662ad7ffa3e975ab26e6c08fe547
/solutions/56. Merge Intervals.cpp
406e3c68a7066a9245f73a40567e53e559712340
[]
no_license
Shellhead007/LeetCode-Practise
d1f8596da94f89c70a2d3f68181b6f80a671b776
7b981e55f837600f34483f414a6276a993af841d
refs/heads/main
2023-04-23T09:16:33.122486
2021-04-28T17:34:14
2021-04-28T17:34:14
328,130,793
1
0
null
null
null
null
UTF-8
C++
false
false
1,086
cpp
class Solution { public:    vector<vector<int>> merge(vector<vector<int>>& intervals) {        vector<vector<int>> ans;        sort(intervals.begin(),intervals.end());        int n = intervals.size();        int first_front = intervals[0][0];        int first_last = intervals[0][1];        for(int i=1;i<n;i++) {...
[ "sharmaabhimanyu07@gmail.com" ]
sharmaabhimanyu07@gmail.com
bd062c4fe305126fcf488389c98c480c7061d04b
dd2bcd6e829347eef6ab8020bd8e31a18c335acc
/ThisIsASoftRenderer/Editor/XTP/Source/Calendar/XTPCalendarCustomProperties.h
f394657a1c7ee1bd6874c4f6ee33edf3f43d04ec
[]
no_license
lai3d/ThisIsASoftRenderer
4dab4cac0e0ee82ac4f7f796aeafae40a4cb478a
a8d65af36f11a079e754c739a37803484df05311
refs/heads/master
2021-01-22T17:14:03.064181
2014-03-24T16:02:16
2014-03-24T16:02:16
56,359,042
1
0
null
2016-04-16T01:19:22
2016-04-16T01:19:20
null
UTF-8
C++
false
false
10,104
h
// XTPCalendarCustomProperties.h: interface for the CXTPCalendarCustomProperties class. // // This file is a part of the XTREME CALENDAR MFC class library. // (c)1998-2011 Codejock Software, All Rights Reserved. // // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE // RE-DISTRIBUTED BY ANY MEANS ...
[ "54639976@qq.com" ]
54639976@qq.com
bc8b74e0e875247ff06f45342f749c11829c0394
571118508512f2d1f4d37d4a55ab03e6abcb98e8
/recursive-circularly-rotated-array.cpp
97949deecbd759317bab065e55d7e1338b7a41aa
[]
no_license
deadcoder0904/c-plusplus-timepass
5884be9832658684021a5b91a41aae5dd26cd11a
8ec75a244d1498b5f9fc52d9778b36da4845f45b
refs/heads/master
2020-09-11T05:08:55.677123
2017-05-13T14:17:12
2017-05-13T14:17:12
66,195,890
0
0
null
null
null
null
UTF-8
C++
false
false
2,106
cpp
#include <iostream> #include <vector> #include <map> #include <set> #include <string> #include <algorithm> #include <iomanip> #include <stack> #include <queue> #include <cstdio> #include <cmath> #include <cstring> #include <cstdlib> #include <cctype> #include <numeric> #include <complex> using namespace std; #define ...
[ "akshaykadam0904@gmail.com" ]
akshaykadam0904@gmail.com
dac3f9575007298531f87a6b2e28918e988c9d31
c9c896a03a52063f798b79ed2b0d0e5580a5e7e5
/Classes/ResizeMessage.cpp
72155ce87ef44bdd9cd08b2993600c6aa492a9e1
[]
no_license
kaiqinetwork/WidgetUI
7f8c1c2304dcd52cb4905a2bb3e96e37288c34da
b085634dfb18be87460376d88716d4858cf8df03
refs/heads/master
2021-01-01T17:22:02.619603
2015-06-26T03:35:44
2015-06-26T03:35:44
37,969,149
2
2
null
null
null
null
UTF-8
C++
false
false
947
cpp
#include "StdAfx.h" #include "ResizeMessage.h" namespace wui{ class ResizeMessageData : public MessageData { public: Rect rect; }; ResizeMessage::ResizeMessage(void) { SetType("resize"); SetData("resize", boost::shared_ptr<ResizeMessageData>(new ResizeMessageData)); } ResizeMessage::ResizeMessage(Message& messag...
[ "cg@qipai007.com" ]
cg@qipai007.com
39d72d773597c036d3b008f23d69835be76580ba
49a37e01edbf9b531beb13327ecc8421e2fee633
/TechnicalProblems/MaximumSubarray.h
e2bae47e7258439e8a56495f7e6a2326a6cef7da
[]
no_license
phzhou76/technical-problems
0de627164678d703304d6835be2b1e45d623fbc1
6a9f4dec9190a514281fa67ff3458dea8375e6fe
refs/heads/master
2020-03-27T06:04:05.694335
2018-10-28T07:05:48
2018-10-28T07:05:48
146,075,513
0
0
null
null
null
null
UTF-8
C++
false
false
1,371
h
#pragma once #ifndef _MAXIMUM_SUBARRAY_H_ #define _MAXIMUM_SUBARRAY_H_ #include "pch.h" /** * Given an integer array nums, find the contiguous subarray (containing at * least one number) which has the largest sum and return its sum. * * Source: https://leetcode.com/problems/maximum-subarray/ */ class MaximumSub...
[ "pzhou53@gmail.com" ]
pzhou53@gmail.com
f90d1ed016689b83754f43ae61ec4197e746d58b
b179ee1c603139301b86fa44ccbbd315a148c47b
/world/magic/include/SpellShape.hpp
a117ad5001375cae6c07dd1485e422ec8258b470
[ "MIT", "Zlib" ]
permissive
prolog/shadow-of-the-wyrm
06de691e94c2cb979756cee13d424a994257b544
cd419efe4394803ff3d0553acf890f33ae1e4278
refs/heads/master
2023-08-31T06:08:23.046409
2023-07-08T14:45:27
2023-07-08T14:45:27
203,472,742
71
9
MIT
2023-07-08T14:45:29
2019-08-21T00:01:37
C++
UTF-8
C++
false
false
841
hpp
#pragma once #include "common.hpp" #include "Directions.hpp" #include "SpellTypes.hpp" // A class used to get properties about a spell's shape - the raw type, // whether casting the spell requires prompting for direction, etc. class SpellShape { public: SpellShape(); SpellShape(const SpellShapeType st, const...
[ "jcd748@mail.usask.ca" ]
jcd748@mail.usask.ca
7b723b90d883d4c291ab79e0786e26c3e7cda1cd
88ae8695987ada722184307301e221e1ba3cc2fa
/v8/src/inspector/string-16.h
1678ffb2e1e948cc8afbcef168137517fb5bb5bb
[ "BSD-3-Clause", "SunPro", "Apache-2.0" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C++
false
false
5,092
h
// Copyright 2016 the V8 project 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 V8_INSPECTOR_STRING_16_H_ #define V8_INSPECTOR_STRING_16_H_ #include <stdint.h> #include <cctype> #include <climits> #include <cstring> #inclu...
[ "jengelh@inai.de" ]
jengelh@inai.de
ae646ff4b648a705a85c0d54d5f66258fecbdeba
b3da8a7e4d960d69de97d74fc18b19f49a11baa2
/10602.cpp
ef883662a185d97761e1e5aed505624353f649bc
[]
no_license
akrabulislam/UVA
16eeb3f2ec735ac756e2e114025d158eaf0787f0
5c899bd6f71c40968dc4f0a699434ac5f8488c64
refs/heads/master
2022-04-09T23:53:00.056400
2020-03-09T06:08:08
2020-03-09T06:08:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,638
cpp
#include "bits/stdc++.h" using namespace std; int check(string a,string b){ int cnt=0,i=0; while(a[i]==b[i]){ i++; cnt++; } return cnt; } int main(){ int t; scanf("%d",&t); while(t--){ int n; scanf("%d",&n); vector<string>vec; ...
[ "[akrabulislam1@gmail.com]" ]
[akrabulislam1@gmail.com]
459ee0ef5bad11e98170be9dc0e0e389f2b90f99
5d408b9813ebd7b5ccc6a37f8a9b8348683962a0
/Codes/Data_Structures_and_Algorthms/Chapter_06_Tree/05_Huffman_Tree.cpp
f79bca28af361626ba8623c9f605ce3137a22f65
[ "MIT" ]
permissive
XueBaoPeng/workBlog
63e8c1502b873fca6f53a29d8278f4edb6cc86f4
1fb620bf6b70307e23551a09bd3c5bc967d888a6
refs/heads/master
2023-02-14T17:22:50.955398
2019-12-30T13:00:00
2019-12-30T13:00:00
227,740,055
0
0
MIT
2023-01-24T00:57:38
2019-12-13T02:37:42
C++
UTF-8
C++
false
false
2,116
cpp
#include <iostream> #include <vector> #include <algorithm> using namespace std; class Node { public: int weight; Node *left; Node *right; Node(int weight) { this->weight = weight; this->left = NULL; this->right = NULL; } friend ostream &operator<<(ostream &os, const Node &n...
[ "xuebaopeng@jd.com" ]
xuebaopeng@jd.com
4246e1771c5153cd8b836934295b183355671040
d75292aeddc4dd161a8ce404f12c32069c8cdeca
/ROOT/bin/EventWeights.cc
abd7940bd3dfb03af43d28e95bc484cadff553b3
[]
no_license
isobelojalvo/UWAnalysis
bfd173fdf0f9b49788614992cc6372c1dc8d2b34
2968611938d3b54e3ba2fa7713fab7b56ad92557
refs/heads/master
2020-04-15T17:31:36.880516
2016-01-25T14:24:54
2016-01-25T14:24:54
13,874,373
1
1
null
2016-09-30T10:08:15
2013-10-25T23:23:13
Python
UTF-8
C++
false
false
1,887
cc
#include "PhysicsTools/FWLite/interface/CommandLineParser.h" #include "TFile.h" #include "TTree.h" #include "TH1F.h" int main (int argc, char* argv[]) { optutl::CommandLineParser parser ("Sets Event Weights in the ntuple"); parser.addOption("treeName",optutl::CommandLineParser::kString,"Tree Name","eventTree"...
[ "ojalvo@wisc.edu" ]
ojalvo@wisc.edu
a2f81655b1894ecc58ee0d35a6734dcfd8085109
5bdb772d6516b975aeb04302a1ea59c8facab678
/cpp/pangram/pangram.h
22b4b3ac9156194c93019f88d8e0b2c08c460b66
[]
no_license
stungeye/Exercism-Praxis
c7ecc12dbb8bf5258a51cc6aeae96a9611e34e16
2172d8e5584d8178f5a3017839d988c4726992b5
refs/heads/master
2023-03-04T03:00:43.983623
2022-04-07T14:51:10
2022-04-07T14:51:10
45,301,766
0
0
null
2023-03-03T18:42:27
2015-10-31T12:59:10
C++
UTF-8
C++
false
false
176
h
#if !defined(PANGRAM_H) #define PANGRAM_H #include <string_view> namespace pangram { bool is_pangram(std::string_view sentence); } // namespace pangram #endif // PANGRAM_H
[ "stungeye@gmail.com" ]
stungeye@gmail.com
8af74cefb8cc4a1a46e6db6aa1fa02cd3b70806e
551040f7f8a16448c93a0b8fbbfa01de5f430ac3
/CS559Proj3/CS559Proj3/CS559Proj3/ShaderWithShadows.cpp
026b1b15fab762959581653dd323be6583dac6ee
[]
no_license
katamaritaco/Misc-Projects
b525e16fad3049b1818b8792e75a699e162a7aaa
f6f243ee98e126e7217e42900039527e1ee2be6d
refs/heads/master
2021-01-01T15:30:44.209650
2016-02-23T19:56:49
2016-02-23T19:56:49
24,834,882
1
0
null
null
null
null
UTF-8
C++
false
false
2,743
cpp
#include "ShaderWithShadows.h" ShaderWithShadows::ShaderWithShadows(void) { subInval(); } ShaderWithShadows::~ShaderWithShadows(void) { } void ShaderWithShadows::subInval(void) { //Invalidate any special data here shad_mat_handle = BAD_GL_VALUE; shad_buf_handle = BAD_GL_VALUE; shad_pass_handle = BAD_GL_VALUE; ...
[ "nheindl@wisc.edu" ]
nheindl@wisc.edu
b30f1926c0cd73938d6a70adbad608dd42eac8ff
3ea34c23f90326359c3c64281680a7ee237ff0f2
/Data/561/E
1b1daa61ca07bcf35d37c3308805ffbe070fa970
[]
no_license
lcnbr/EM
c6b90c02ba08422809e94882917c87ae81b501a2
aec19cb6e07e6659786e92db0ccbe4f3d0b6c317
refs/heads/master
2023-04-28T20:25:40.955518
2020-02-16T23:14:07
2020-02-16T23:14:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
80,899
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | foam-extend: Open Source CFD | | \\ / O peration | Version: 4.0 | ...
[ "huberlulu@gmail.com" ]
huberlulu@gmail.com
3fbc39aa903ca1a241256740c7176772f03ed860
ad5efb65c4f1e76818edfe634d1139e2776f2496
/TurbulentArena/BSequenceNode.hpp
b4f0ec34b5727493ff1768131612927924cd0a8b
[ "MIT" ]
permissive
hornta/Turbulent-Arena
8f5eefa705634f15e4e14616979761bd002aeadf
9030f291693e670f7751e23538e649cc24dc929f
refs/heads/master
2021-05-28T16:48:38.848731
2015-03-29T21:46:06
2015-03-29T21:46:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
260
hpp
//BSequenceNode.hpp #pragma once #include "BCompositeNode.hpp" namespace bjoernligan { namespace ai { class BSequenceNode : public BCompositeNode { public: BSequenceNode(); virtual ~BSequenceNode(); virtual EBNodeStatus Process(); }; } }
[ "sked86@hotmail.com" ]
sked86@hotmail.com
a9b46f3306be845e63bf57cced20b1ecc3e0dbd9
17bf36ad8a4a53abeb1d18d0fed8935a8ad97a0a
/mojo/services/view_manager/public/cpp/tests/view_unittest.cc
09d1bde6077a364766dfc31c37b3ef5c67a29f81
[ "BSD-3-Clause" ]
permissive
TribeMedia/sky_engine
bfb52d96e37ed4771ca0ad049e36daea5f67daf9
4a3894ed246327931b198a7d64652bd0b615b036
refs/heads/master
2021-01-16T19:15:21.362385
2015-08-20T16:30:59
2015-08-20T16:30:59
41,107,776
1
0
null
2015-08-20T16:50:18
2015-08-20T16:50:17
null
UTF-8
C++
false
false
25,616
cc
// Copyright 2014 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 "mojo/services/view_manager/public/cpp/view.h" #include "base/logging.h" #include "base/strings/stringprintf.h" #include "mojo/services/view_man...
[ "jackson@google.com" ]
jackson@google.com
a284d2ec0b3b606b95f549b2c3c7389b245b06e4
3058de21ed33db262d3cf611fc1281457b601528
/test/t_algo_hash.cpp
59ae0826148375eb541e6225d9e3c5af4259681d
[]
no_license
Armterla/GAIA
6a24f1f421d5cdb84c7c9f3938bc70240bf92f02
7e2e78b0f33f3e209a7a1019bb2d810ca491ebbc
refs/heads/master
2021-01-19T11:39:56.389573
2017-09-27T12:08:52
2017-09-27T12:08:52
82,270,136
2
5
null
2017-09-27T12:08:53
2017-02-17T07:33:26
C
UTF-8
C++
false
false
127
cpp
#include "preheader.h" #include "t_common.h" namespace TEST { extern GAIA::GVOID t_algo_hash(GAIA::LOG::Log& logobj) { } }
[ "70601797@qq.com" ]
70601797@qq.com
d8924e9b078de88f88bd94e14b0afd8f57915532
c96ae11059bef7c62a3e7509708c9807e5b7384a
/TriggerEditor/UI/ParamDlg.cpp
bb290afa6f96f587fc69ba42c6498407834e1374
[]
no_license
liuchunlin/BehaviourEditor
40a195fa3455402a585152431219a4411119357a
9ce3217f2bfc5490680e8df414286b95b27382ce
refs/heads/master
2020-12-25T14:13:16.775271
2016-08-25T15:45:49
2016-08-25T15:45:49
65,906,631
0
0
null
null
null
null
GB18030
C++
false
false
39,849
cpp
#include "ParamDlg.h" #include "TgrIDs.h" #include "NodeVerify.h" #include "TEEManager.h" #include "SpaceManager.h" #include "TgrApp.h" #include "SParameter.h" #include "EnumType.h" #include "ParameterEditor.h" #include "VarDlg.h" #include "TgrFrame.h" #include "OptionEditDlg.h" #include "SAdjust.h" #inclu...
[ "408354802@qq.com" ]
408354802@qq.com
5a94bc1cc11b6c512c5157955b28b41b3eba7f83
696e35ccdf167c3f6b1a7f5458406d3bb81987c9
/chrome/browser/ui/startup/credential_provider_signin_dialog_win.cc
0dbaa62c85f0f2bc78af9b85758f55fd792e594d
[ "BSD-3-Clause" ]
permissive
mgh3326/iridium-browser
064e91a5e37f4e8501ea971483bd1c76297261c3
e7de6a434d2659f02e94917be364a904a442d2d0
refs/heads/master
2023-03-30T16:18:27.391772
2019-04-24T02:14:32
2019-04-24T02:14:32
183,128,065
0
0
BSD-3-Clause
2019-11-30T06:06:02
2019-04-24T02:04:51
null
UTF-8
C++
false
false
16,073
cc
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/startup/credential_provider_signin_dialog_win.h" #include "chrome/browser/ui/startup/credential_provider_signin_info_fetcher_w...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
4bf316b65744b49a7c6831117159a1ba8b177216
998dc3c3834d86fc5293b5c83e155f0cf524fc76
/DAA_tasks/Week04/twoNumbersMakeOne.cpp
a5d154e3ba5f7c8805dd022473098871f4423207
[]
no_license
nickormushev/Design-and-Analysis-tasks
3a48044ffc44e212c0c1fcef42fe07df4c32690e
fe55087c094055244f2b5c126284921a2f0181c2
refs/heads/master
2022-07-10T00:38:05.274661
2020-05-14T20:23:32
2020-05-14T20:23:32
260,774,814
0
0
null
null
null
null
UTF-8
C++
false
false
1,129
cpp
#include <cstdio> #include <iostream> #include <algorithm> #include <cmath> int nArr[1000000], mArr[10]; bool binarySearch(int n, int key, int low) { int mid; int high = n - 1; while(low <= high) { mid = (low + high)/2; if(nArr[mid] < key) { low = mid + 1; } else if(n...
[ "nkormushev@gmail.com" ]
nkormushev@gmail.com
2043aa29e0e5ccec8a183349620b6933a64326e0
2006593d2a879c55d3461ab8e31389b39bbea831
/QuestsEditor/Misc/Interfaces/PackagedNodeInterface.h
5e0c4160ca993905764e8b1b8f9078d828c36652
[]
no_license
LeonovOstap/QuestSystem
a408d034186bb6951ad9ed10eb0d3af45a2907c8
47b7eb547ff0ae4ce1623f5ec9553a4f7f1e225b
refs/heads/master
2023-01-07T02:18:25.641464
2020-11-13T12:15:37
2020-11-13T12:15:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
400
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include <functional> #include "Interface.h" #include "PackagedNodeInterface.generated.h" /** * */ UINTERFACE() class QUESTSEDITOR_API UPackagedNodeInterface : public UInterface { GENERATED_BODY...
[ "mrcodecat@outlook.com" ]
mrcodecat@outlook.com
4e0f6a9859c4c5c1b27bec3f90ccb5c180b21d4e
75d0efc428763b845db7b0cf8cdb7a8ec8d77ac4
/puzzle/include/mainwindow.h
94498c1de598ff13b256acf17a830803ed927455
[]
no_license
sigifredo/QtEjemplos
562c134ea8c4b5fd3271fd93adfe46678727e3ca
eebed2b43d1836f7edb29bbd70d0cd093beff4ef
refs/heads/master
2020-04-06T13:28:11.160103
2020-01-31T00:24:22
2020-01-31T00:24:22
8,728,234
0
0
null
null
null
null
UTF-8
C++
false
false
3,016
h
/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage ** Licensees holding valid commercial Qt...
[ "sigifredo89@gmail.com" ]
sigifredo89@gmail.com
e2a94b9c7dd9507aee39e080565582df58d2387b
06bed8ad5fd60e5bba6297e9870a264bfa91a71d
/LayoutEditor/slipturnouttextedit.cpp
f938a564a475548fcb198fc6ac0ded9c30e501c4
[]
no_license
allenck/DecoderPro_app
43aeb9561fe3fe9753684f7d6d76146097d78e88
226c7f245aeb6951528d970f773776d50ae2c1dc
refs/heads/master
2023-05-12T07:36:18.153909
2023-05-10T21:17:40
2023-05-10T21:17:40
61,044,197
4
3
null
null
null
null
UTF-8
C++
false
false
7,543
cpp
#include "slipturnouttextedit.h" #include "slipturnouticon.h" #include <QLabel> #include <QPushButton> #include "jtextfield.h" #include <QGridLayout> #include "gridbagconstraints.h" //SlipTurnoutTextEdit::SlipTurnoutTextEdit(QWidget *parent) : // JmriJFrame(parent) //{ //} /** * Displays and allows user to modify ...
[ "allenck@windstream.net" ]
allenck@windstream.net
aea1cbb88e9e3d4fa9235da1c94cceb263b5e28d
cbbf14de86651fb68fde0e322e83239ebda91f57
/sum_positive.cpp
fa96a5a4d61c608c98cd60b14390287bc32ecd69
[]
no_license
vpc20/cpp-basics
cf40a146b3ca438d19aee19cc8ea0468129644dc
453d80b6c007d94fd9d9c1e729542048a6f2bdbc
refs/heads/master
2021-03-23T11:13:31.754819
2020-03-15T10:38:24
2020-03-15T10:38:24
247,445,630
0
0
null
null
null
null
UTF-8
C++
false
false
281
cpp
#include <iostream> #include <vector> using namespace std; int positive_sum(const std::vector<int> arr) { int sum = 0; for (auto e : arr) { if (e > 0) sum = sum + e; } return sum; } int main() { std::cout << positive_sum(std::vector<int>{1, 2, 3, 4, 5}) << "\n"; }
[ "cuevasvp@gmail.com" ]
cuevasvp@gmail.com
7b04a41606f75d95c7272b9ba63c2242dfc56afb
2078e3b6353878762d2f88925ee52ad42eef1591
/webrevs/8188102/raw_files/new/src/hotspot/share/code/nmethod.hpp
73fe7e236ec7face91388cb69216b36202dc6222
[]
no_license
dougxc/dougxc.github.io
8519f877d4b9627f50621b2cfab531068a1cb516
d49b6dc476b0a048a70e67300810737fdba07256
refs/heads/master
2020-08-30T20:53:12.552268
2020-07-01T13:38:13
2020-07-01T13:38:13
218,481,292
0
0
null
null
null
null
UTF-8
C++
false
false
28,915
hpp
/* * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
[ "doug.simon@oracle.com" ]
doug.simon@oracle.com
aa2cd436a4a0accda7a65eecc4fd5f52a9523f27
097f47c14f8ce0152db2df8915bf4c82b5633976
/FYP_matrix/google-api/google/ads/googleads/v0/errors/not_empty_error.pb.cc
255a139c75bcc7c8f6b47e34548478f862719738
[]
no_license
BenjaminChia/Ben_FYP_RPi_Matrix
a1bbffa854be723e59f60358a1dbe7a44e0a1898
5a7952774e3f10ddc5ca56dccba82dba25471fd7
refs/heads/master
2020-03-29T07:10:53.329139
2018-09-21T00:54:08
2018-09-21T00:54:08
149,655,972
0
0
null
null
null
null
UTF-8
C++
false
true
14,125
cc
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/ads/googleads/v0/errors/not_empty_error.proto #include "google/ads/googleads/v0/errors/not_empty_error.pb.h" #include <algorithm> #include <google/protobuf/stubs/common.h> #include <google/protobuf/stubs/port.h> #include <google/protobuf/i...
[ "ben9694@gmail.com" ]
ben9694@gmail.com
552bd88b57f6fa2bef25b4fc2f81f151464fcd15
8dc84558f0058d90dfc4955e905dab1b22d12c08
/ui/base/x/selection_requestor.cc
ccd65a4d86bb4c58d74a8fc8a2701ae978cc8147
[ "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
10,070
cc
// Copyright (c) 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. #include "ui/base/x/selection_requestor.h" #include <algorithm> #include "base/run_loop.h" #include "ui/base/x/selection_owner.h" #include "ui/base/...
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee