blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
de831f1434ed79f6988720e30bf472f43cf4a8b5
e18f125f6281c24ad302ef522f4092ca846d75e3
/fallingcoconuts-c++/FallingCoconuts.h
f370c8e1c95e02dd822dc37448759d5a70dc977e
[]
no_license
syed/tc
0ac16cf95ee77bf2cfd873abe88cbe230ce5633c
6bf1ef0ec865e3eb5fcd33c9fef12ade2fc00bf4
refs/heads/master
2020-04-08T06:19:39.349515
2013-12-29T07:17:52
2013-12-29T07:17:52
3,890,080
2
1
null
null
null
null
UTF-8
C++
false
false
459
h
#include <algorithm> #include <iostream> #include <map> #include <numeric> #include <set> #include <sstream> #include <string> #include <vector> using namespace std; #define FOR(i,s,e) for (int i = int(s); i != int(e); i++) #define FORIT(i,c) for (typeof((c).begin()) i = (c).begin(); i != (c).end(); i++) #define ISEQ(...
[ "syed1.mushtaq@gmail.com" ]
syed1.mushtaq@gmail.com
7947e57f7706442152e84c55e340936736a384d3
abb5997a04888e15215391e55ceba81d3f3f5fc0
/HomeDoOld/WingyUI/UI/UIDefine.h
729fc0f8241760ff92b2557e8ba339e91f4f98e1
[]
no_license
winwingy/Study
c8f298792f94e230fed894521c611b15a9c524d0
5c368ad1b58d4567897a331cef247328c110fa5a
refs/heads/master
2020-05-21T04:48:50.965832
2017-01-19T09:25:53
2017-01-19T09:25:53
55,683,173
1
1
null
null
null
null
UTF-8
C++
false
false
616
h
#pragma once #include <string> #include <assert.h> #include "exportUI.h" #include <sstream> #ifdef _UNICODE #define tstring std::wstring #define tstringstream std::wstringstream #define __FUNCTIONT__ __FUNCTIONW__ #else #define tstring std::string #define tstringstream std::stringstream #define __FUNCTIONT__ __FUNCTIO...
[ "winwingy@163.com" ]
winwingy@163.com
776c966265b38598d389e7e0399e7e9c964a79c3
e64be2479c3e002d245877c0c72fd775b97dd2e0
/CustomWin/LoginWin/Panda.h
ac68ad771c04b6dc9642849c23a0d429a1888acd
[]
no_license
Diandian-2250/Qt-CustomControls
0a1bc63bd7ecc130187b3e93bca8cadba57b865f
b01871cb7192630159e6d163f047b83e55cc688a
refs/heads/master
2022-12-12T09:11:18.257296
2020-08-31T05:19:56
2020-08-31T05:19:56
null
0
0
null
null
null
null
GB18030
C++
false
false
269
h
#pragma once namespace Panda { enum USER_STATE //用户状态 { State_Online, //在线 State_Leave, //离开 State_Busy, //忙碌 State_NotDisturb, //请勿打扰 State_InVisable //隐身 }; }
[ "405126907@qq.com" ]
405126907@qq.com
8b79528e77d80bce7aaf6bd698e54a0e78092971
d100cee23e8d0b5d06c748b03d3b84927af15acd
/Scheduler/JobScheduler.cpp
c81ff53a8765d7f321b5f5ef84d451de0276307f
[]
no_license
sb2te3/Scheduler
846e3bc792a25f5bf54ea4b3b5a9a45bc9d27069
d6ea0e938e65795aabc76b4f8ecefecda983455e
refs/heads/master
2022-05-28T08:34:20.196379
2018-07-30T00:17:27
2018-07-30T00:17:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
844
cpp
#include "stdafx.h" #include "JobScheduler.h" #include <sstream> bool JobScheduler::addJob(const std::shared_ptr<Job>& jobPtr) { if (d_jobs.find(jobPtr->uniqueId) == d_jobs.cend()) { // d_jobs already has this unique id std::stringstream ss; ss << "There is already a job with uniqueId = " << jobPtr->uniqueI...
[ "lukaszhao@gmail.com" ]
lukaszhao@gmail.com
1d5fcb15b28476f2e4b5e6f32ab3d02eee43825a
f339d69fc063a9cc877ef14181e0d745c8b99b84
/MFCApplication5/CEnemy_1.h
bab1e4f5a00c74df96919b8bf99a551057041c77
[]
no_license
diego-x/Aircraft_war
dff50a146cd1729e59ab51ad33e8471b7578e1b5
2bc2e0563cbc8f63d3b823d7f7ac34378ea6caaf
refs/heads/main
2023-06-05T05:02:14.938344
2021-06-29T14:08:33
2021-06-29T14:08:33
323,642,679
0
0
null
null
null
null
GB18030
C++
false
false
1,104
h
#pragma once #include "GameObject.h" #include "resource.h" class CEnemy_1 : public CGameObject { public: CEnemy_1(); ~CEnemy_1(); CEnemy_1(int x, int y, int m_nMotion); BOOL Draw(CDC* pDC, BOOL bPause) { if (m_V == 0) m_V = 1; m_ptPos.y += 5 * m_V; /*if (rand() % 17 == 0) m_ptPos.x += 10; if (rand()...
[ "907597924@qq.com" ]
907597924@qq.com
246b44d6b1386fda9d6944239ab7eab3263c898c
728e57a80995d7be98d46295b780d0b433c9e62a
/src/rewriter/gen_collocation_data_main.cc
9369817b877edd7f8ee608e6fa888c790a98640f
[ "Apache-2.0", "MIT", "BSD-3-Clause", "GPL-1.0-or-later" ]
permissive
SNQ-2001/Mozc-for-iOS
7936bfd9ff024faacfd2d96af3ec15a2000378a1
45b0856ed8a22d5fa6b4471548389cbde4abcf10
refs/heads/master
2023-03-17T22:19:15.843107
2014-10-04T05:48:29
2014-10-04T05:48:42
574,371,060
0
0
Apache-2.0
2022-12-05T06:48:07
2022-12-05T06:48:06
null
UTF-8
C++
false
false
3,262
cc
// Copyright 2010-2014, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of condit...
[ "kishikawakatsumi@mac.com" ]
kishikawakatsumi@mac.com
fd2cf073568b2ab80ba2aae632e306f42da22ed6
e6c021389bfc50a057399227ab15d2266669cc39
/src/pmem.cxx
a60e01990452ed29c29681ba2d5f67c9f1a45902
[ "Zlib" ]
permissive
jpoirier/ptypes
d3ca83cfd682519cd3b6e3ffbc83a33657efcc1c
31a665f75392c8f2cd513b783001fa80760d14a2
refs/heads/master
2021-01-24T06:26:35.445579
2011-12-19T04:39:24
2011-12-19T04:39:24
2,939,724
1
0
null
null
null
null
UTF-8
C++
false
false
1,060
cxx
#include <stdlib.h> #include "pport.h" PTYPES_BEGIN const int quant = 64; const int qmask = ~63; const int quant2 = 4096; const int qmask2 = ~4095; // dynamic reallocation policy for strings and lists int ptdecl memquantize(int a) { if (a <= 16) return 16; if (a <= 32) return 32; els...
[ "jdpoirier@gmail.com" ]
jdpoirier@gmail.com
5521dadc3d6efabc4909380887570d8875ee873f
a815edcd3c7dcbb79d7fc20801c0170f3408b1d6
/content/browser/background_fetch/storage/get_initialization_data_task.cc
5a2e88c445bfc1e6e0164956333241f17f38e3e5
[ "BSD-3-Clause" ]
permissive
oguzzkilic/chromium
06be90df9f2e7f218bff6eee94235b6e684e2b40
1de71b638f99c15a3f97ec7b25b0c6dc920fbee0
refs/heads/master
2023-03-04T00:01:27.864257
2018-07-17T10:33:19
2018-07-17T10:33:19
141,275,697
1
0
null
2018-07-17T10:48:53
2018-07-17T10:48:52
null
UTF-8
C++
false
false
17,184
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 "content/browser/background_fetch/storage/get_initialization_data_task.h" #include "base/barrier_closure.h" #include "base/strings/utf_string_co...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
6c66d885d6eb483e567145778d40249e300db422
6d7e17a38f63fb7dbe39f530c3601ae3c4d011f0
/exam1/decerementingpointer.cpp
f2fd782c79903126950989880781ba705966a463
[]
no_license
Abraham-Moraes-Arroyo/cpp
09d6bfcbe60f1d485b196c90220d591ab3507be9
54dc0b3ebbe2abd16e3fbd036ff20751710375f7
refs/heads/main
2023-08-29T11:41:41.349348
2021-10-26T15:18:40
2021-10-26T15:18:40
411,108,815
1
0
null
null
null
null
UTF-8
C++
false
false
893
cpp
// Decrementing a pointer Variable #include <iostream> using namespace std; int main(){ const int N=6; int A[N]= {2,4,8,16,32,64}; int *ptr; /* here we want to make the ptr point to the last element in the array (i.e. address location of last element) and then move the poitner to the fi...
[ "noreply@github.com" ]
Abraham-Moraes-Arroyo.noreply@github.com
4efeadd63723034879ea79c2f73b75c398268dad
dd9576fac4013ec8a8cefb2f9c51d49b3879d154
/input_map_editor.h
ed4df0d7aea99f93b810eb9320fa9f8e9ef9b432
[ "MIT" ]
permissive
Relintai/ui_extensions
59fc87d7b064fa38436a9dc707324d3ae3ec988a
6b55d982066927a47ac3377f47fa1d32a67d22bc
refs/heads/master
2023-01-22T15:44:26.031067
2023-01-09T20:17:03
2023-01-09T20:17:03
182,405,882
2
3
null
null
null
null
UTF-8
C++
false
false
5,216
h
/*************************************************************************/ /* originally project_settings_editor.h */ /*************************************************************************/ /* This file is (originally) the part of: */ /* ...
[ "relintai@gmail.com" ]
relintai@gmail.com
11f70b0ac9f53effc0dade7567be78dd64b042df
f5fc320bd96fb8a4474502a2845af6798245d3dd
/Scanner.h
92840dbbf6534022d9dad9f611181026cdf95ce0
[]
no_license
Taylorbrad/CS236-Project1-Redo
302aa1aea88abf98aaaf768f91ae950127ff3d92
9ceaf381cd5bc5e5794e6823b964cfce5fb8fb2a
refs/heads/master
2020-07-31T04:31:21.909871
2019-09-24T22:37:00
2019-09-24T22:37:00
210,485,775
0
0
null
null
null
null
UTF-8
C++
false
false
330
h
#pragma once //only compile this file once #include <stack> #include <iostream> #include <fstream> #include <cctype> using namespace std; class Scanner { public: Scanner(string inFile); void tokenize(); private: stack <char> tokenTemp; ifstream inFile; string fi...
[ "noreply@github.com" ]
Taylorbrad.noreply@github.com
c431a244618808ebcdebb9f435f9a14f06dd1e8e
d6613574df6a0a3b3d760d59e41932bdb57e3206
/cpp-opencv-app/opencv-app/opencv-app/main.cpp
5addacfe21d17c9e4c09df7da1febb67538acce6
[]
no_license
vehicularkech/Selfie-autonomous-car
93c3f97283c8c28b452d90f5e1987ebec01f6aa4
13076eba48322e69df3e07b659a02e2c7a6fee4b
refs/heads/master
2020-03-16T21:45:04.573484
2018-04-10T19:46:16
2018-04-10T19:46:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,130
cpp
#include <iostream> #include <thread> #include <chrono> #include <mutex> #include <include/usb.hpp> #include <include/sharedmemory.hpp> #include <include/lanedetector.hpp> // Race mode ---> fps boost // Debug mode --> display data //#define RACE_MODE #define DEBUG_MODE #define CAMERA_INDEX 0 #define CAM_RES_X 640 #d...
[ "mgmateusz.grudzien@gmail.com" ]
mgmateusz.grudzien@gmail.com
50b6e6697bef0f85d9d3547466c757526cb7fa3a
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5658571765186560_1/C++/dtalamas24/main.cpp
7e0d3c636ab0824ce71832568ca70af2f13d0709
[]
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
1,560
cpp
#include <cstdio> #include <iostream> using namespace std; int casos, x, cto1, cto2; int main() { freopen("input.in","r",stdin); freopen("output.txt","w",stdout); scanf("%d",&casos); for(int v=1; v<=casos; v++){ scanf("%d%d%d",&x,&cto1,&cto2); printf("Case #%d: ",v); ...
[ "eewestman@gmail.com" ]
eewestman@gmail.com
b0aab7f2aea96374af60a5d3be81ed758677cc92
4835f48071c4f507cfe228fe299826ae21af00ab
/src/threshold_tozero/threshold_tozero_generator.cc
04bc10c689ce6b107d271d01b26f3bbe009e159c
[ "MIT" ]
permissive
kennychou0529/Halide-elements
90755eabd0b956b58759955b2628b17661dd540c
2a06efc97ee17c7d4137105b27989f61c718c36f
refs/heads/master
2020-03-12T14:16:32.877635
2018-04-18T18:11:17
2018-04-18T18:11:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
800
cc
#include <cstdint> #include "Halide.h" #include "Element.h" using namespace Halide; using Halide::Element::schedule; template<typename T> class ThresholdTozero : public Halide::Generator<ThresholdTozero<T>> { ImageParam src{type_of<T>(), 2, "src"}; Param<T> threshold{"threshold", 1}; GeneratorParam<int3...
[ "momoko.kono@fixstars.com" ]
momoko.kono@fixstars.com
3ab287d1a6dd1e286a7f5c76230315f8008cc688
722f50138b74e5e1262e3913d6eea58d824a0cac
/vr-task/Cubemap.cpp
e3684bfc1e0b1980796e4ccc4f2c55bb93d24071
[ "Apache-2.0" ]
permissive
Rexagon/vr-task
fde833d95dbe7942b17a2427f308ad2f5b239811
dc178514c89dd014bf33d2b680350244b87cf340
refs/heads/master
2021-07-11T15:44:32.638254
2017-10-11T14:25:07
2017-10-11T14:25:07
105,547,599
0
0
null
null
null
null
UTF-8
C++
false
false
1,315
cpp
#include "Cubemap.h" #include <SFML/Graphics/Image.hpp> #include "FileManager.h" Cubemap::Cubemap() { glGenTextures(1, &m_id); } Cubemap::~Cubemap() { glDeleteTextures(1, &m_id); } void Cubemap::init(const std::vector<std::string>& textures) { bind(); for (size_t i = 0; i < textures.size() && i < 6; ++i) { ...
[ "reide740@gmail.com" ]
reide740@gmail.com
6f6314955f8533aa315c9d230393a6a0c9674aba
1ff0d46c60c60430467d61fe1a7ccd32719673d1
/RTIMULib2-Teensy/libraries/RTIMULib/utility/RTIMUMPU9250.cpp
4705398571b438bc68bf0a743cd5474b5201a7a6
[ "MIT" ]
permissive
ccccjason/IMU
f0b071f4a7299b0ec3c64f44dbf6a4ce3ba29ec9
81d3ad6cb2f5efb27ab94a3bba7fe8539f1348a0
refs/heads/master
2021-01-10T13:33:38.049492
2016-04-14T13:36:10
2016-04-14T13:36:10
53,907,671
2
1
null
null
null
null
UTF-8
C++
false
false
22,164
cpp
//////////////////////////////////////////////////////////////////////////// // // This file is part of RTIMULib // // Copyright (c) 2014-2015, richards-tech // // Permission is hereby granted, free of charge, to any person obtaining a copy of // this software and associated documentation files (the "Software"), to...
[ "jason@" ]
jason@
2d3e2111596b4aec473322b7e8c5b9078677bbdc
d0307c08e07370ef5a78a479a78f51491333528b
/src/tcp-session.cxx
e140f890d57543812b0d072547126c32f49ab5a5
[]
no_license
hipro-builder1/node-beacon-poc
e9451ccdbcea76309f541d4f2d100040d7737bbd
bc5fee26e489226c6dcd5791e4dedbf90ddd6d6e
refs/heads/develop
2023-03-25T18:17:26.816116
2021-03-19T09:44:12
2021-03-19T09:44:12
348,696,369
0
0
null
2021-03-24T10:19:24
2021-03-17T12:11:44
C++
UTF-8
C++
false
false
1,386
cxx
/* Copyright (C) 2008-2021 HiPro IT Solutions Private Limited, * Chennai. All rights reserved. * * This program and the accompanying materials are made available * under the terms described in the LICENSE file which accompanies * this distribution. If the LICENSE file was not attached to this * distribution or fo...
[ "kashyap.ekbote@gmail.com" ]
kashyap.ekbote@gmail.com
b339186add5f91e9b609a7092a6ff8d0f711c413
b97f0caba9ed2457359bb26717b7f28f8e0861a2
/A2/A2TASK3/A2Task3/A2Task3/Task3a.cpp
5858fef4a7805e6811077217c775d4f97e62f840
[ "MIT" ]
permissive
zxiy951001/Multicore-GPU-Programming
b815eb13cd32f1bc80e4d143f3754b4722af13b0
c28fc1e55dd7e2bda8d158e7aee0381fa1619d17
refs/heads/master
2022-11-12T21:01:47.803019
2020-06-28T11:25:17
2020-06-28T11:25:17
274,145,155
0
0
MIT
2020-06-28T11:25:19
2020-06-22T13:30:25
C++
UTF-8
C++
false
false
2,692
cpp
//Using OpenCL 1.2 #define CL_USE_DEPRECATED_OPENCL_2_0_APIS //enable exceptions #define __CL_ENABLE_EXCEPTIONS //C++ library and STL headers #include <iostream> #include <vector> #include <fstream> #include <cmath> //OpenCL header dependant on OS #ifdef __APPLE__ #include <OpenCL/cl.hpp> #else #incl...
[ "noreply@github.com" ]
zxiy951001.noreply@github.com
ef8ed0b921e6a4fc6b16b95da5c4704f2edb48b9
fe1a44ebcb523485295b7e8be7c26c5456d66e60
/BTTask_ClearBlackboardValue.cpp
3b3b9f010d43ad969613d3d6b3de6b527608baf0
[]
no_license
Delta0077/SimpleShooter
5e3f860ed6cbf90d81ae6e8d620e16c48e7d430e
8f0ed67261f2c32cd6357ffd77b3c5db0e5e1705
refs/heads/main
2023-03-30T16:43:59.312447
2021-04-04T21:28:25
2021-04-04T21:28:25
347,193,049
0
0
null
null
null
null
UTF-8
C++
false
false
575
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "BTTask_ClearBlackboardValue.h" #include "BehaviorTree/BlackboardComponent.h" UBTTask_ClearBlackboardValue::UBTTask_ClearBlackboardValue() { NodeName = TEXT("Clear Blackboard Value"); } EBTNodeResult::Type UBTTask_ClearBla...
[ "adas0262@gmail.com" ]
adas0262@gmail.com
454c7ede9e6715d94aae855eb099622f53f23cf9
07fe910f4a2c7d14e67db40ab88a8c91d9406857
/game/mga/interpreters/ExtensionClasses/Model_Class_Definition.inl
2d966400c1a91ed6d8e5340a45ead7266f7b4248
[]
no_license
SEDS/GAME
e6d7f7a8bb034e421842007614d306b3a6321fde
3e4621298624b9189b5b6b43ff002306fde23f08
refs/heads/master
2021-03-12T23:27:39.115003
2015-09-22T15:05:33
2015-09-22T15:05:33
20,278,561
1
0
null
null
null
null
UTF-8
C++
false
false
956
inl
// -*- C++ -*- // $Id$ // // Model_Class_Definition // GAME_INLINE Model_Class_Definition::Model_Class_Definition (void) { } // // ~Model_Class_Definition // GAME_INLINE Model_Class_Definition::~Model_Class_Definition (void) { } // // insert_single_definition // GAME_INLINE void Model_Class_Definition:: insert_sin...
[ "hillj@cs.iupui.edu" ]
hillj@cs.iupui.edu
19dccfac4b07a03a85711755bd275252a831c182
fd7584101ba89cb62fbcef5ae3bf7086511db7aa
/cpp/Repair Yard/main.cpp
294bd4e8cfa39493b89ef01eac0d5250fc908c46
[]
no_license
dustinmthompson/codeSamples
7d89db510793f1f3a20ccabde6cfe45ab3990f10
c0cfb03ee9f3e1cfabf509609c6dc1cba7adb1f9
refs/heads/master
2023-01-31T13:10:16.956491
2020-12-02T16:38:41
2020-12-02T16:38:41
317,910,723
0
0
null
null
null
null
UTF-8
C++
false
false
14,532
cpp
#include <iostream> #include <fstream> #include <cstdlib> #include <random> #include <ctime> #include <list> #include <queue> #include "vehicles.h" using namespace std; void menu(vehicle*, vehicle*, ofstream&); int main(){ ofstream myFile; myFile.open("SimulationLog.txt"); vehicle* vehicleList = NULL; vehicle*...
[ "dustinmichaelthompson@gmail.com" ]
dustinmichaelthompson@gmail.com
bbf8059535979a9ab6ed42f585bcf893397e97a7
e7c0866de57e6f9956bf3333bfee3c11af7255d0
/cpp/src/rudra/util/Logger.h
37e439b90e87946594165e008ba3b79840552afc
[ "BSD-3-Clause" ]
permissive
Rudra-org/rudra
51625369e44fedfa1b828e68f7cf8df159ffd704
3ef072aac0064ed4776e981d93a90db9c0240623
refs/heads/master
2021-01-12T13:59:08.105151
2016-04-25T13:20:17
2016-04-25T13:20:17
54,786,411
7
0
null
null
null
null
UTF-8
C++
false
false
2,313
h
/* * Logger.h * * Rudra Distributed Learning Platform * * Copyright (c) IBM Corporation 2016 * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must r...
[ "jjmiltho@us.ibm.com" ]
jjmiltho@us.ibm.com
068259782c95a20c297a2ce9aee2bd59ae16ab64
98ea884dfa0ccdef32c6a361b848e20f6ea6cbed
/Luni/src-drivers/DDMCP9808/DDMCP9808.h
e8768812bfa704f89c4aa847cd6be8b1dd5a72df
[]
no_license
dhahaj/Arduino-libraries
c95a4818326c6c59537d9e935f0854b98f13a0d4
9a67d0cd1ce80c60b668f6743c3d4ca66c3937b0
refs/heads/master
2021-01-01T18:46:32.105068
2018-02-16T18:55:13
2018-02-16T18:55:13
98,433,137
1
0
null
null
null
null
UTF-8
C++
false
false
833
h
#ifndef DDMCP9808_h #define DDMCP9808_h #include <Silicon/I2CPort.h> #include <Device/DeviceDriver.h> #include <Device/DeviceTable.h> #include "LUMCP9808.h" class DDMCP9808: public DeviceDriver { public: DDMCP9808(const char *unitName = "TC", int count = 8, int base = 0x18); int open(int opts, int flags, const ...
[ "dhahaj@gmail.com" ]
dhahaj@gmail.com
9bd4b4ac4e5481dbf24a3e0f1fd636d504f740b1
44727c8b922424024d41b38b1b53943a9fd7d8b9
/dev/AppLifecycle/ValueMarshaling.h
ea10651531a491f1971ca98ac2a177dc9c32cefd
[ "CC-BY-4.0", "MIT" ]
permissive
hassoon1986/WindowsAppSDK
ec539e921b70744275180327a6ef8a70ba7e5466
f5dad55e5ef4cea325050ec63e16306db6f43ede
refs/heads/main
2023-08-17T09:18:49.449578
2021-09-23T01:58:38
2021-09-23T01:58:38
409,702,843
1
0
NOASSERTION
2021-09-23T18:28:59
2021-09-23T18:28:58
null
UTF-8
C++
false
false
1,477
h
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. #pragma once namespace winrt::Microsoft::Windows::AppLifecycle::implementation { static PCWSTR c_launchSchemeName{ L"ms-launch" }; static PCWSTR c_encodedLau...
[ "noreply@github.com" ]
hassoon1986.noreply@github.com
7d2059d4e09a2e0df81c53406c24a0e05dcb219c
8860168786d04a3043ea3e06d06a27630b38f2b6
/active-ist/libraries/jaus++/branches/3.11/include/jaus/mobility/drivers/setwrencheffort.h
337255bf3d95f529a8fe7b9447df39fa96f7cff3
[]
no_license
ShowLove/Robotics_Club
6785d8f5717f9f29ef7cb702f47f481767c8875b
9c6b4b723a2732c1565913795c2a43b90902f011
refs/heads/master
2020-05-15T03:08:44.178211
2014-08-08T04:05:42
2014-08-08T04:05:42
14,319,218
4
1
null
null
null
null
UTF-8
C++
false
false
9,092
h
//////////////////////////////////////////////////////////////////////////////////// /// /// \file setwrencheffort.h /// \brief This file contains the implementation of a JAUS message. /// /// <br>Author(s): Daniel Barber /// <br>Created: 22 November 2009 /// <br>Copyright (c) 2009 /// <br>Applied Cogniti...
[ "showlove@knights.ucf.edu" ]
showlove@knights.ucf.edu
b8e6664c12a35931a70ea8f8fd5b54840a9008c4
e95adb59feacfe95904c3a8e90a4159860b6c26a
/build/Android/Preview/outsideTheBox/app/src/main/include/Uno.Bool.h
e75bcb96fd2a954bf7c185928f0334a973f40850
[]
no_license
deliloka/bethebox
837dff20c1ff55db631db1e0f6cb51d935497e91
f9bc71b8593dd54b8aaf86bc0a654d233432c362
refs/heads/master
2021-01-21T08:20:42.970891
2016-02-19T10:00:37
2016-02-19T10:00:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,086
h
// This file was generated based on '/usr/local/share/uno/Packages/UnoCore/0.23.4/Source/Uno/$.uno'. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Object.h> namespace g{ namespace Uno{ // public intrinsic struct Bool :259 // { uStructType* Bool_typeof(); void Bool__Equa...
[ "Havard.Halse@nrk.no" ]
Havard.Halse@nrk.no
7f289151c6d5e418c773915b8e86c4e53bd92367
7940872a8a37016b1213d6dd66e4df4c0a5ab4f4
/ShInstUtil/ShInstUtil.cpp
0b7d2a1ef8c0992ed80532927d86fcdb9d9789d9
[]
no_license
msc-antiplag/keepass-modified-sources
4a301b616cdb638320335fbe179d4e6727c3fbe3
874f3a7f846ed11df23e7a49d09b6598244a8cd1
refs/heads/master
2023-08-22T06:08:19.609044
2021-09-13T11:43:06
2021-09-13T11:43:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,006
cpp
/* KeePass Password Safe - The Open-Source Password Manager Copyright (C) 2003-2021 Dominik Reichl <dominik.reichl@t-online.de> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either versio...
[ "lorenzozarfati@gmail.com" ]
lorenzozarfati@gmail.com
1360dbf77aeed6e401340d55868f7aa6c7cc6f22
c43ba8743ebb48bb6240eafd0bd309d3a1384b02
/filewriter.hpp
47bca7357752d205cadb21f6fd8bbad22b83b6fa
[]
no_license
UNSW-Redback-Racing/NMP_Vehicle_Team_Protobuf
da0bb767936358e709c66f360a80de27f575c637
8914f48344248686238a3669075a5b6e0b1a91cd
refs/heads/main
2023-08-25T18:08:50.329301
2021-09-06T03:00:35
2021-09-06T03:00:35
403,293,279
0
1
null
null
null
null
UTF-8
C++
false
false
518
hpp
#include <sample.hpp> class FileWriter { public: /** * @param sample, the sample data that needs to be serialized * @return dont need to worry about free memory as it is wrapped within a smart pointer * */ void process(const SamplePtr sample); /** * @param filename, the name of the bin...
[ "rahultripathi0401@gmail.com" ]
rahultripathi0401@gmail.com
a0fc9ea4c3b2952b042ab943e41f60787ed39ba3
17c3b8bee0e99c5cc8ea463debae28c51114b17c
/JavaScriptCore/jit/ExecutableAllocator.h
3623d084136df8b023d6bb1c85e2bd34802c563f
[ "MIT" ]
permissive
explorer-ading/cricket-jscore
233340f2951534331262fc02f3bb4b6e2cff7c02
b10eabc016cec3db87f9976684839ddaf4cca0b1
refs/heads/master
2020-05-09T10:19:40.474126
2019-08-08T00:08:28
2019-08-08T00:08:28
181,037,114
1
0
null
null
null
null
UTF-8
C++
false
false
9,290
h
/* * Copyright (C) 2008 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions a...
[ "explorer.ading@yahoo.com" ]
explorer.ading@yahoo.com
260f30895e71e15e15ae4bb327c3a870df69d4f8
9f81d77e028503dcbb6d7d4c0c302391b8fdd50c
/google/cloud/iam/iam_policy_connection_idempotency_policy.h
2b379ec37eea90a6bdf1b97aba9e15cc884906f5
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
googleapis/google-cloud-cpp
b96a6ee50c972371daa8b8067ddd803de95f54ba
178d6581b499242c52f9150817d91e6c95b773a5
refs/heads/main
2023-08-31T09:30:11.624568
2023-08-31T03:29:11
2023-08-31T03:29:11
111,860,063
450
351
Apache-2.0
2023-09-14T21:52:02
2017-11-24T00:19:31
C++
UTF-8
C++
false
false
1,574
h
// Copyright 2022 Google LLC // // 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 law or agreed to in...
[ "noreply@github.com" ]
googleapis.noreply@github.com
fde3e10378b16105306b594bf7a164529e786ff0
513140b14d0b71b43cf0a8fbf33a510c20a5b9b6
/eve/geom/Plane.cpp
9d1ef724636319842bb9890e9e9b53e038b900d3
[ "BSD-3-Clause" ]
permissive
d-phaz/Eve
62cc5deb2ac53403cb04c839a19aaa6fd56abbc1
3949f159a41125e4ba8fe824ba5fad6e53e62929
refs/heads/master
2020-04-29T07:30:02.000490
2015-02-19T19:00:36
2015-02-19T19:00:36
27,451,471
0
0
null
2015-02-25T19:21:22
2014-12-02T20:17:50
C++
UTF-8
C++
false
false
4,199
cpp
// Main class #include "eve/geom/Plane.h" //================================================================================================= GLuint * eve::geom::create_plane_indices(void) { GLuint * indices = (GLuint*)eve::mem::malloc(6 * sizeof(GLuint)); GLuint * ind = indices - 1; *++ind = 0; *++ind = 1; *++...
[ "romain@ftopia.com" ]
romain@ftopia.com
fefc33012edca856590562bb67e3ab193cc5d793
34dd8db9eacf8f789be6ca3a980ec8487c865d2b
/T2H1/ValveGen/CGlobalNonRewinding.h
ae8feaddbfaa7706edf7b4f8362a43bad39499f5
[]
no_license
athena255/T2H1
4f4ea0b62beec810d2d3ee3bbb60a5e6d76f0998
7b0345120bdeb7b95dba20bb06aebeebcb37bccc
refs/heads/master
2020-07-12T13:59:41.617702
2020-04-23T01:16:59
2020-04-23T01:16:59
204,835,730
6
0
null
null
null
null
UTF-8
C++
false
false
296
h
//*********************************************** // File: CGlobalNonRewinding.h //*********************************************** #pragma once #pragma pack(push,1) class CGlobalNonRewinding { public: unsigned char _0x0[0xb38]; uint64_t m_playerObserver; // 0xb38 }; #pragma pack(pop)
[ "afc65@cornell.edu" ]
afc65@cornell.edu
88cff812f4de6da8967e079266db2031ce75f49e
efb73a1955588aa359b0e9474c26d0b521961eb7
/SMFL/ReverbButton.h
f77feba9f42fa396bbd9e26f319abc4b6e83a9f2
[]
no_license
Smilesprower/Super-Bullet-Crush
65048ed0d2b5bec034f4ea31dd2c9dd23a8f4090
19adc40f65e1afd83ed49386ca146a877775b01b
refs/heads/master
2021-01-10T15:47:02.209614
2016-02-23T12:11:47
2016-02-23T12:11:47
48,174,658
0
0
null
null
null
null
UTF-8
C++
false
false
413
h
#pragma once #include "SFML\System\Vector2.hpp" #include "SFML\Graphics\Rect.hpp" #include "Button.h" #include "SFML\Graphics\CircleShape.hpp" class ReverbButton : public Button { public: ReverbButton(sf::IntRect p_position); ~ReverbButton(); void Update(sf::Vector2i p_mousePos); void ClickedFunc(); void Draw(sf...
[ "c00185326@itcarlow.ie" ]
c00185326@itcarlow.ie
bffeae6c065d38d66ffa9b78b0458771a1230007
64b38d9785df6e4a6376aa129b22c2c8e746c942
/Arrays/array2.cpp
b297375276a9912cfaca00c15d38adc164e9ed59
[]
no_license
KnifeParty12/Competitive_Programming_Templates
d38c4fee65a742467c796a9b63d1a36826f8d16a
083b6d3cf8e464cd27177a191353528a8d939fdc
refs/heads/master
2023-02-09T01:07:56.234024
2021-01-01T16:07:37
2021-01-01T16:07:37
306,255,078
0
0
null
null
null
null
UTF-8
C++
false
false
301
cpp
#include<iostream> using namespace std; void deletion(int arr[],int size,int k){ for(int i=k;i<size;i++){ arr[i]=arr[i+1]; } } int main(){ int bucky[6]={0,0,0,0,0,0}; for(int i=0;i<6;i++){ cin>>bucky[i]; } deletion(bucky,6,4); for(int i=0;i<5;i++){ cout<<bucky[i]<<" "; } return 0; }
[ "flashfunk01@gmail.com" ]
flashfunk01@gmail.com
35a445a9f10bedd04cf191718ab01318684b1eaa
57239e0899b2208a28b27ca2804304ae5215e189
/day-19/day-19.cpp
cbd13be8b5bfa31ddfff36e05ec0840d16e01879
[]
no_license
srishanbhattarai/advent-of-code-2020
cdffeaeb3bfe274a09262f4ce191741e7c48bc3b
bfbf26a921a727500e62195a0d9886a34d0eaf7b
refs/heads/master
2023-02-04T13:48:14.602051
2020-12-25T05:54:06
2020-12-25T05:58:30
317,681,722
2
0
null
null
null
null
UTF-8
C++
false
false
5,202
cpp
#include <fstream> #include <regex> #include <sstream> #include <unordered_map> #include <vector> using namespace std; vector<string> split(string str, string delim); string join(vector<string> str, string delim); // first half of the input unordered_map<string, string> rules; // 2nd half of the input vector<string...
[ "srishanbhattarai@gmail.com" ]
srishanbhattarai@gmail.com
4eca9e2749753fc2e79d420b779b64046aa86749
83f4f4e01dc13ecc9f1993db898e8aaa584b2629
/C++基础课程/Day02/10 程序设计案例_设计立方体类/Cube.cpp
c1c370e89c6700ad3ecbcac2bb7f524715f0e964
[ "MIT" ]
permissive
Gooooodman/CPP.Sample
12716dfc1a32946a8b929f02fe33168974f9d83e
c87c697911ba3b857b754da5ade40fd024ab272e
refs/heads/master
2021-01-21T23:09:32.649979
2017-06-23T01:04:04
2017-06-23T01:04:04
null
0
0
null
null
null
null
GB18030
C++
false
false
639
cpp
#include "Cube.h" void Cube::setL(int l) { mL = l; } void Cube::setW(int w) { mW = w; } void Cube::setH(int h) { mH = h; } //告诉编译器,放心吧,我不会修改成员变量的值 //常函数 int Cube::getL() const { return mL; } int Cube::getW() const { return mW; } int Cube::getH() const { return mH; } int Cube::caculateS() ...
[ "807776962@qq.com" ]
807776962@qq.com
55956710b5a24e14298c35b5c1fc8ed86ed2ab65
c2ac4f977ae7600449b627d81318e0808cd5d85d
/projects/cocos2dx/samples/Cpp/WordRush/proj.win32/main.cpp
eff900f7ef40798e955becd7f5b41d73d52a6347
[ "MIT" ]
permissive
vietgameplay/vietgameplay
cd5308bbce15a1938abc81efc9cc17a2746a5039
3830a9990f44b594e67f16f67d78195813fccdd9
refs/heads/master
2021-01-10T02:13:46.575852
2015-02-01T13:02:11
2015-02-01T13:02:11
36,883,499
0
0
null
null
null
null
UTF-8
C++
false
false
592
cpp
#include "main.h" #include "AppDelegate.h" #include "CCEGLView.h" USING_NS_CC; int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) { UNREFERENCED_PARAMETER(hPrevInstance); UNREFERENCE...
[ "nguyenvietvu.it@gmail.com" ]
nguyenvietvu.it@gmail.com
d6d6d1f6aee84dbb90320960874b7165f23e0e30
a5da02227cbbc30effaf43d52bdca26223daf98e
/CCC/Stage1/00-Done/ccc00j4s2.cpp
1ad4d10f2ae78ee43086a4974c1ad1b7c02cb212
[ "MIT" ]
permissive
zzh8829/CompetitiveProgramming
853edabdfc728504abaa27333bd4900a7f97c8c9
36f36b10269b4648ca8be0b08c2c49e96abede25
refs/heads/master
2021-01-01T15:41:08.984386
2018-03-25T17:32:39
2018-03-25T17:32:39
35,587,680
1
0
null
null
null
null
UTF-8
C++
false
false
759
cpp
#include <iostream> #include <cstdio> #include <vector> using namespace std; int main() { vector<float> vi; int n; cin >> n; for(int i=0;i!=n;i++) { float in; cin >> in; vi.push_back(in); } int state; while(cin >> state && state !=77) { if(state == 99) { int num; cin >>...
[ "zzh8829@gmail.com" ]
zzh8829@gmail.com
f1ad7aa969ea4c692c0fe10246d873bf0023918f
bdfca7d4bd6e1baf2c43e593de66fcba80afadeb
/prog-verf/assignment1/sketch-1.7.5/sketch-frontend/test/sk/seq/miniTestb454.cpp
9926a57465f29502eb4a2c0fbd46614c9de5eaaf
[]
no_license
wanghanxiao123/Semester4
efa82fc435542809d6c1fbed46ed5fea1540787e
c37ecda8b471685b0b6350070b939d01122f5e7f
refs/heads/master
2023-03-22T06:47:16.823584
2021-03-15T10:46:53
2021-03-15T10:46:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
352
cpp
#include <cstdio> #include <assert.h> #include <iostream> using namespace std; #include "vops.h" #include "miniTestb454.h" namespace ANONYMOUS{ void main__Wrapper() { _main(); } void main__WrapperNospec() {} void _main() { int x_s1=0; foo(1, 0, x_s1); assert ((x_s1) == (0));; } void foo(int i, int j, int& _ou...
[ "akshatgoyalak23@gmail.com" ]
akshatgoyalak23@gmail.com
9fda3dbd2b03fad7a5cfeaae761ccdb82bcbaab8
9355bdd2fac34005dde62a84d8b030061fc20a67
/processor/reorder_buffer_line.hpp
da70264ee994d2120448b7fb4b1471504a840328
[]
no_license
GabrielCambe/OrCS
493163431e039e389575ff12a8a8058bc1ba5c78
2f845f37bf179af2d1886dd8866cc9794b34c72e
refs/heads/master
2023-03-27T22:26:27.779416
2021-01-21T19:19:05
2021-01-21T19:19:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,158
hpp
/* * Copyright (C) 2010~2014 Marco Antonio Zanata Alves * (mazalves at inf.ufrgs.br) * GPPD - Parallel and Distributed Processing Group * Universidade Federal do Rio Grande do Sul * * This program is free software: you can redistribute it...
[ "rkohler@inf.ufpr.br" ]
rkohler@inf.ufpr.br
b34e7a3f029a0ace62bd45670221f3d444e2c89b
73a9ebc9669cb2edf2be361009dd9f085f9d2e82
/Mathematics/IntrPlane3Sphere3.h
728a0f95dec7f40802cc149d83dd4e00d8319bfc
[]
no_license
zhouxs1023/GTE
49f82c54891b33460f39a35d74b95c76123482c8
6db3ea29eaa612320da603f83ca9b7125cc66546
refs/heads/master
2021-07-18T04:22:30.982107
2020-09-15T15:16:11
2020-09-15T15:16:11
202,730,606
1
0
null
null
null
null
UTF-8
C++
false
false
2,841
h
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2020 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 4.0.2019.08.13 #pragma once #include <Mathematics/FIQuery.h> ...
[ "zhouxs1023@163.com" ]
zhouxs1023@163.com
eae78a28dcc9075f088237c1cd9cf579d070f326
c057dd650b2e6779be354aaef52cc96837f1e7d1
/test/example_4/src/example_xrm_host_opencl.cpp
da2af77902b5a200ac171566f358a1cd10c2d756
[ "Apache-2.0" ]
permissive
santoshkrishna4138/XRM
fa18ffcd62e9a7cb821a39102d555b7cd5799129
66d948f7fdb61f9c231c7d4888f642c474ecfdaa
refs/heads/master
2023-06-05T01:43:04.749368
2021-06-26T00:43:42
2021-06-26T00:43:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,138
cpp
/* * Copyright (C) 2019-2020, Xilinx Inc - All rights reserved * Xilinx Resouce Management * * Licensed under the Apache License, Version 2.0 (the "License"). You may * not use this file except in compliance with the License. A copy of the * License is located at * * http://www.apache.org/licenses/LICENSE-2...
[ "bin.tu@xilinx.com" ]
bin.tu@xilinx.com
783e0339e8b420e3628244fe44b50a8334983347
133d0f38b3da2c51bf52bcdfa11d62978b94d031
/testAutocad/vendor/ifc-sdk/src/ifc2x3/IfcAnnotationSurface.cpp
4cf4f0cb035a1a59b87ba79d935486dd80669765
[]
no_license
Aligon42/ImportIFC
850404f1e1addf848e976b0351d9e217a72f868a
594001fc0942d356eb0d0472c959195151510493
refs/heads/master
2023-08-15T08:00:14.056542
2021-07-05T13:49:28
2021-07-05T13:49:28
361,410,709
0
1
null
null
null
null
UTF-8
C++
false
false
4,764
cpp
// IFC SDK : IFC2X3 C++ Early Classes // Copyright (C) 2009 CSTB // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any late...
[ "antoine.cacheux@procal.fr" ]
antoine.cacheux@procal.fr
74e26a9d6708f6f402b9535749baf1f991e9ffff
ede39dd3b4eff4a4b5bad0a70918295170845cbd
/mojo/shell/android/android_handler_loader.cc
922dbb5f27900846aff2a2c2c4ead872c05196d2
[ "BSD-3-Clause" ]
permissive
fujunwei/chromium-crosswalk
9ae06862337e49061d49b932fc049f460463d5c3
24a582e5655871d72348c18f77ead355cc32126e
refs/heads/master
2022-10-18T22:20:24.494151
2015-04-02T10:55:14
2015-05-22T05:56:53
37,062,999
1
0
null
2015-06-08T11:30:41
2015-06-08T11:30:41
null
UTF-8
C++
false
false
657
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/shell/android/android_handler_loader.h" namespace mojo { namespace shell { AndroidHandlerLoader::AndroidHandlerLoader() { } AndroidHandl...
[ "jam@chromium.org" ]
jam@chromium.org
30d99bb0dc6ace43fb6cf02e737f0d29d4ab3a50
39c2c1eecd75ba7271f361d20cb877de8f749e99
/c++/exercise/ex1/section4/TreeSum.cc
b9eedf66acfd336a833fcbb0fa1ab76a3ffa7e45
[]
no_license
Mhaoyuan/algorithm
7fd29794510ddde7c1ccb694e1be87e76fc1cad6
e7ce84f4402813cd824673b4757fe2c6ed4cc8cf
refs/heads/main
2023-05-06T10:17:36.326289
2021-05-31T12:49:28
2021-05-31T12:49:28
342,789,160
0
0
null
2021-05-31T12:49:29
2021-02-27T06:36:28
C++
UTF-8
C++
false
false
2,212
cc
#include<fstream> #include<iostream> #include<vector> #include<ctime> #include<functional> #include<unistd.h> #include<algorithm> #include"/Users/mahaoyuan/Workpace/algorithm/c++/utils/stopwatch.h" using namespace utils; int TreeSum(const std::vector<int>& nums){ int count = 0; for(int i = 0; i < nums.size(...
[ "410463229@qq.com" ]
410463229@qq.com
d29f6f10d3fcd0b7581ccaabd745b5510b524825
8abd6c3d2a8ae24fbaa33a52e12f116541b1f175
/TestPointCloudUserData/TestPointCloudUserDataApp.h
4bcf1becfc430a1370935091a10d1031afa8baad
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
kamex-kumax/Rhino4Samples_CPP
a5ac780e3a9b3028541b2fe59dcba110deb10335
fbbe856850f0d67e305e070a4b69ce9eadece9d6
refs/heads/master
2020-03-28T19:17:53.064301
2017-03-17T22:10:21
2017-03-17T22:10:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
425
h
///////////////////////////////////////////////////////////////////////////// // TestPointCloudUserDataApp.h #pragma once #ifndef __AFXWIN_H__ #error include 'stdafx.h' before including this file for PCH #endif #include "Resource.h" // main symbols class CTestPointCloudUserDataApp : public CWinApp { public: CTes...
[ "dale@mcneel.com" ]
dale@mcneel.com
035c24d91dd8fbd896416de564f1c5fe8822ff98
8d3327fcfe011b578c2ec4214f7c2c9dcb4b3d96
/singmake/src/main.cpp
dc0092ec92fcfda5f20ef4d274de9e55a9a41f49
[ "BSD-3-Clause" ]
permissive
mdegirolami/sing
d9fbc53f01cd33878725d75c0dabf64f872de3d3
a77e88c51a3f333b7b533dea104a031c0a636070
refs/heads/master
2022-07-28T06:49:28.859601
2022-07-24T10:12:21
2022-07-24T10:12:21
149,013,972
3
1
BSD-3-Clause
2023-02-28T18:29:31
2018-09-16T16:27:30
C++
UTF-8
C++
false
false
221
cpp
#include "singmake.h" int main(int argc, const char *argv[]) { std::vector<std::string> singarg; for (int ii = 0; ii < argc; ++ii) { singarg.push_back(argv[ii]); } return(singmain(singarg)); }
[ "mdegirolami@gmail.com" ]
mdegirolami@gmail.com
d987bf138e1df09cd7ae202df59b88a59de9b68b
b8a7e3e56a2bbedc7887f53f33ee1181df197fc3
/src/Kamera.cpp
89ed56a208de6bb5c4ca146ca2088a8be2ffa3ff
[]
no_license
RetepRelleum/kamera
7811fb23a2a75f41d45c1aa1f6cfeabac7b8d385
a80b783ad5fc38c7268431f08a95e4b7eb277345
refs/heads/main
2023-04-21T02:52:17.991841
2021-05-02T08:04:05
2021-05-02T08:04:05
356,797,007
2
0
null
null
null
null
UTF-8
C++
false
false
5,952
cpp
#include <Kamera.h> #include <Arduino.h> #define DEBUG 1 //#define DEBUG 0 Kamera::Kamera(String ssid, String password) { this->ssid = ssid; this->password = password; } void Kamera::loop() { String deb; String deb2; switch (status) { case init: if (statusInit()) status = ssdpS; break; ...
[ "retep.relleum@bluewin.ch" ]
retep.relleum@bluewin.ch
7c79d3306acef996706ec1fa56f554d2fadd3bb6
4bea57e631734f8cb1c230f521fd523a63c1ff23
/projects/openfoam/rarefied-flows/impingment/sims/test/nozzle1/2.98/U
53f61ee7534f280cd52d44b03090a573800cc11f
[]
no_license
andytorrestb/cfal
76217f77dd43474f6b0a7eb430887e8775b78d7f
730fb66a3070ccb3e0c52c03417e3b09140f3605
refs/heads/master
2023-07-04T01:22:01.990628
2021-08-01T15:36:17
2021-08-01T15:36:17
294,183,829
1
0
null
null
null
null
UTF-8
C++
false
false
45,218
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | ...
[ "andytorrestb@gmail.com" ]
andytorrestb@gmail.com
95110e87eee9a04deeec5f1799120b338c1aee4b
23012559f8099fbb6a4c86d3d86ab5c5212de48e
/kasten/controllers/view/libbytearrayfilter/abstractbytearrayfilterparameterset.hpp
77e7f4a67a32adcdfea24282f84530cb468f783f
[]
no_license
KDE/okteta
a916cdb9e16cdc6c48a756205604df600a3b271c
cb7d9884a52d0c08c1496d4a3578f5dfe0c2a404
refs/heads/master
2023-09-01T09:33:47.395026
2023-08-29T04:33:32
2023-08-29T04:33:32
42,718,476
92
9
null
2020-12-29T18:58:56
2015-09-18T11:44:12
C++
UTF-8
C++
false
false
906
hpp
/* This file is part of the Okteta Kasten module, made within the KDE community. SPDX-FileCopyrightText: 2008 Friedrich W. H. Kossebau <kossebau@kde.org> SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ #ifndef KASTEN_ABSTRACTBYTEARRAYFILTERPARAMETERSET_HPP #defi...
[ "kossebau@kde.org" ]
kossebau@kde.org
53ec0a7c938f2190ff0da8fe314c5acb703bfbac
11c6b6121422fc24ef27774534fd29f7e21338d4
/AOC2020/day12.cpp
3ab81642d282db59dcc72230d7dad3ab2e2a7a31
[]
no_license
jaapdejong15/AOC2020
d2c562ed763b6512acdb4ea6cb807e0c696d07e6
e6c48c3eb603c9c1003285b3d70cad8ae1dbd626
refs/heads/master
2023-02-04T19:32:37.380301
2020-12-26T10:40:46
2020-12-26T10:40:46
317,533,565
0
0
null
null
null
null
UTF-8
C++
false
false
1,973
cpp
#include "day12.h" int xs[] = { 0, 1, 0, -1 }; int ys[] = { 1, 0, -1, 0 }; int day12_1(Timer& timer) { std::vector<std::string> input = getStringInput("input12.txt"); timer.start(); size_t currentDirection = 1; int posx = 0; int posy = 0; int amount; char instruction; for (std::string s : input) { instruct...
[ "J.deJong-18@student.tudelft.nl" ]
J.deJong-18@student.tudelft.nl
271073816ec701de8bc729c7e34624b6abb52f8c
306ba959838a2bc8f4d7776809d308bde778bc67
/main.cpp
bba125d90d77424dda5d98f624a696948e95b214
[]
no_license
DimitrisGan/RecommendationCryptoSystem
b5b867ed9f0d1faf97b6a5bcfd69f03cf7d5c406
2a45b6293eb9bd0df165cc7da39695590fa8f819
refs/heads/master
2021-10-09T10:05:36.339624
2021-10-08T07:54:36
2021-10-08T07:54:36
163,315,267
1
0
null
null
null
null
UTF-8
C++
false
false
12,342
cpp
#include <iostream> #include <unordered_map> #include <fstream> #include "AssistantFunctions.h" #include "Tweet.h" #include "myCryptoVector.h" #include "ClusterAPI.h" #include "SearchingAlgorithms.h" #include "RecommendBestCoins.h" #include "ClusteringProxSearching.h" #include "Cross_Validation.h" #include <cmath> i...
[ "jimgangas@gmail.com" ]
jimgangas@gmail.com
716f0fd1bf8f43da1207075423e66b0a4456626e
4ea5e315ed2c9ba27f6729df4d70c3a40b61fa6b
/Source/src/Object.h
a647832cc3b8e8fa12ea8e77b1513be397c6d267
[]
no_license
bryan-yu/VirtualSimulations
ec4d313f1013f2dc5d14c46595a9f05516d67011
0dbf6409ed87c8e9c186799bec25442dd57aee1c
refs/heads/master
2021-05-28T15:33:08.665323
2015-03-31T17:54:12
2015-03-31T17:54:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,793
h
#ifndef AABS_OBJECT_H #define AABS_OBJECT_H #include <string> #include "Ogre.h" #include "OgreSubMesh.h" #include "RigidBody.h" namespace AABSEngine { namespace Core { /** * @class GameObject * * @brief Game object class * * @author AABS * @version X * @date October 2013 * */ class Ga...
[ "bryan-500088@hotmail.com" ]
bryan-500088@hotmail.com
057e8c4a9bd346ee203caeb43501f912ff65de12
a33aac97878b2cb15677be26e308cbc46e2862d2
/program_data/PKU_raw/45/2881.c
54aea0d92d87f23609708bbec5a2f127eae1bd6f
[]
no_license
GabeOchieng/ggnn.tensorflow
f5d7d0bca52258336fc12c9de6ae38223f28f786
7c62c0e8427bea6c8bec2cebf157b6f1ea70a213
refs/heads/master
2022-05-30T11:17:42.278048
2020-05-02T11:33:31
2020-05-02T11:33:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
527
c
int main() { char c1[51],c2[51]; char *pc1,*pc2; int f=0,i,j,F=0; scanf("%s",c1); scanf("%s",c2); pc1=c1; pc2=c2; for(i=0;c2[i]!='\0';i++) { if(c1[0]=c2[i]) { f=i; for(j=0;c1[j]==c2[i+j];j++) { if(j==(strlen(...
[ "bdqnghi@gmail.com" ]
bdqnghi@gmail.com
985e72346741ad6b7f545193e258ca0b46f321a9
d605446fc8b6f03188157eeb9bacc72696d00567
/src/wloop/Component.h
013d180be707ad8e1aab454917d1d8862417ae6b
[]
no_license
dhillondeep/wlib_old
95cb390b658fb55794bd6c69cbfca1fe53ff632e
c996d6412edbe1f88c0d8dc6fb8acc4dca4eb577
refs/heads/master
2021-09-19T03:52:50.156539
2018-07-23T02:35:18
2018-07-23T02:35:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
107
h
#ifndef WLIB_COMPONENT_H #define WLIB_COMPONENT_H class Component{ }; #endif //WLIB_COMPONENT_H
[ "deep.dhill6@gmail.com" ]
deep.dhill6@gmail.com
67f39ee756d86619a19adb4a3a39625f288db724
1414c4394b3f3fbd8f2ee027e699277a2f704374
/shared/src/messageutil.cpp
5a1fa5334b6315651cf42bfbb5035877e4ba6477
[ "Apache-2.0" ]
permissive
tempbottle/sopmq
f6810258d872d00c557007e9f388652dee3b348e
c940bcba5f9f69190e73f1628909ec344acdb374
refs/heads/master
2021-01-15T18:22:15.875738
2014-11-29T05:28:26
2014-11-29T05:28:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,163
cpp
/* * SOPMQ - Scalable optionally persistent message queue * Copyright 2014 InWorldz, LLC * * 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-...
[ "david.daeschler@gmail.com" ]
david.daeschler@gmail.com
0a12b95edfc69d440970ddc9b25741168df5d4ad
5de6fe0500057d2b69412ea11dde8fd17462183f
/SwarmDeployment/Obstacle.cpp
8aea491347b18787b6a70a4a7ded24f4394eac09
[]
no_license
FlyTheThings/AutonomousSurveillanceBachelorThesis
3525e180039e11f80e0466929bec2ae07c4e8ae6
a937db536429d16d73bbfdb882bd4e893fbfd66f
refs/heads/master
2021-01-11T16:34:25.419672
2016-06-15T21:37:07
2016-06-15T21:37:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
674
cpp
#include "Obstacle.h" namespace App { Obstacle::Obstacle(int x, int y, int width, int height) { rectangle = make_shared<Rectangle>(x, y, width, height); } Obstacle::Obstacle(const Obstacle& other): rectangle(make_shared<Rectangle>(*other.rectangle.get())) { } shared_ptr<Obstacle> Obstacle::fromJson(mValue...
[ "memnarch@seznam.cz" ]
memnarch@seznam.cz
7e3c5826a35014336652a7c093100446776d1bd1
c94d91845142a8009ef0d1afd9e33c6a3881a8f6
/session12a/Bote.h
79b4bc66cc6e61ff6ff6687f69c7ace2bcfde052
[]
no_license
utec-cs1102-2019-2/ec1-jesus-osorio
47035330c1a811161f6bc4e374e35a129b07536a
50528941327248a1505a2eebd9351250d1b23903
refs/heads/master
2020-07-24T11:40:01.160645
2019-11-13T20:54:52
2019-11-13T20:54:52
207,911,150
0
0
null
null
null
null
UTF-8
C++
false
false
192
h
#ifndef SESSION12A_BOTE_H #define SESSION12A_BOTE_H #include "Vehiculo.h" class Bote:Vehiculo { public: void avanzar(); void retroceder(); Bote(); }; #endif //SESSION12A_BOTE_H
[ "54951251+jesus-osorio@users.noreply.github.com" ]
54951251+jesus-osorio@users.noreply.github.com
e2f827e1f594459369827e5f66895a350a842b90
6b8424c1535d194180586fcf341ffdd144524c9c
/TipoHora.h
cf90460c83c968be5aa78d811b7ccc1c9c62157e
[]
no_license
ale2511/restofing
417624719fb7af26f1d26c6278946bbfade0a2a6
69309db643525caa3f8964edcd444b8a0c30470c
refs/heads/master
2020-06-09T04:38:05.210296
2019-06-24T13:08:11
2019-06-24T13:08:11
193,371,442
0
0
null
null
null
null
UTF-8
C++
false
false
412
h
#ifndef TIPOHORA_H #define TIPOHORA_H #include <string> #include <cstdlib> #include <iostream> #include <map> #include <set> using namespace std; enum TipoEstado {Pedido, Encamino, Entregado, Cancelado}; class TipoHora{ private: int segundos; int minuto; int hora; public: TipoHora(int = 0, i...
[ "noreply@github.com" ]
ale2511.noreply@github.com
d4d447079b08e4881eb47a631ed8e2f921178803
4cc71d496705c3f0b52bd3c868d951a299fbceee
/Projeto_PA_Unidade3/dialognew.h
7287c28f402aecd1fcf6ae8a51b72a15f2e36bc6
[]
no_license
PablioMartins/Projeto_Unidade3
4d6df6663cab1cd24b690f3e47ebbeb9c7037e86
6afaaef4d94f7b8fa44ecb3cf6bdf48fcd962f09
refs/heads/main
2023-02-03T14:01:13.389709
2020-12-18T10:08:20
2020-12-18T10:08:20
322,450,369
0
0
null
null
null
null
UTF-8
C++
false
false
1,287
h
#ifndef DIALOGNEW_H #define DIALOGNEW_H #include <QDialog> namespace Ui { class DialogNew; } /** * @brief The DialogNew class é responsável pela caixa de dialogo para criação de uma nova * escultura, com novos parametros de tamanho. */ class DialogNew : public QDialog { Q_OBJECT public: /** * @brief ...
[ "pablo.martins.anjos@hotmail.com" ]
pablo.martins.anjos@hotmail.com
bc62da5b9f8f5821e5385e3487e5d39cd50e355d
dea2f80dc73231dd22906990a4fc7a49b512f1fb
/assignments/lab/lab3-debugging1/ex3/complex.h
16e13413b868971a94aca0703a0feda28e3c555d
[ "BSD-3-Clause" ]
permissive
aguerrero/ucr-cs100
c8bab7d41af1c11db0d6ad1a63c1851f9e5dadad
1d326351e26fc9e03d61a0eca923a39aa0cea81a
refs/heads/master
2020-04-07T22:25:17.715608
2014-09-03T07:35:30
2014-09-03T07:35:30
22,438,037
1
0
null
null
null
null
UTF-8
C++
false
false
902
h
#ifndef CLASS_COMPLEX #define CLASS_COMPLEX #include <iostream> using namespace std; class Complex { // friend functions friend ostream& operator<< (ostream&, const Complex&); private: double real_; double imag_; public: Complex (double = 0.0, double = 0.0); void setReal(double); void ...
[ "mike@izbicki.me" ]
mike@izbicki.me
947345a15db42ef986f8d30644b1907e1a1a693c
d3cf4cb0b9e870bf6cd1c1ed6910d7af3a2ca590
/UnitTests/Session.cpp
f38ef4b2cdb430a7f1892f1f318b6d383dcea4ac
[]
no_license
Lapo9/PerformanceLog
c6561bce6f2110be881b3b5a8b1309aa779bf034
0f6da052894637776089428a32d77401e3d0c869
refs/heads/master
2021-02-25T23:53:17.320509
2020-04-16T18:08:59
2020-04-16T18:08:59
245,478,345
1
0
null
null
null
null
UTF-8
C++
false
false
2,281
cpp
#include<fstream> #include <cstdio> #include "pch.h" #include "CppUnitTest.h" #define private public #include "..\src\Session.h" #include "..\src\Session.cpp" #define METHOD_CLASS(methodClass) TEST_METHOD_ATTRIBUTE(L"MethodClass", methodClass) #define TEST_METHOD_SIGNATURE(methodClass, methodName) BEGIN_TEST_METHO...
[ "lapofalcone@gmail.com" ]
lapofalcone@gmail.com
a51b1895701faec1131aa9f2881ebc9e0455dc1d
eaeb65bf02bfe9d4671570a3f6d7f773289fa4a9
/OpenCL/arg.hpp
e7bd20290d75d8854a91922f60d0a16bd4f7cc95
[]
no_license
brandon-kohn/opencl
386dc257501c87e1af53f135acdd013624c6a556
ec1dbffa98cba2ef1960b29d4e3b0f25d095154b
refs/heads/master
2020-05-19T13:11:25.284718
2014-05-15T00:27:29
2014-05-15T00:27:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,518
hpp
// // Copyright Brandon Kohn 2012 // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // #if !defined(OPENCL_ARG_HPP_INCLUDE) #define OPENCL_ARG_HPP_INCLUDE #include "./memory.hpp" #include <boos...
[ "blkohn@hotmail.com" ]
blkohn@hotmail.com
f0db691a1f1f5b6fa02f981ccc38ac4108df131b
1f45cb982e070114cc8d4ff57e544ecee5fd850e
/sprite.h
a4255a590f9972e35e341e2c56d7413c988667e1
[]
no_license
Silver-Hawk/air3d
6d2fd53ed8bb7464295b5f37d64e6685b84c1cb3
04b6b0774f871a9c7aca2ad9329c7f572003174f
refs/heads/master
2016-09-05T10:41:41.788504
2015-01-05T19:03:04
2015-01-05T19:03:04
26,532,613
0
0
null
null
null
null
UTF-8
C++
false
false
3,775
h
#ifndef __SPRITE_CLASS_H__ #define __SPRITE_CLASS_H__ #include "texturehelper.h" #include "bufferHelper.h" class sprite { public: bufferhelper bufHelp; int texture; float scale; float xscale, yscale; int animation; int animationIndex; sprite(){ } sprite(int texindex){ GLfloat quad[] = { ...
[ "jbl@sundhedsdoktor.dk" ]
jbl@sundhedsdoktor.dk
069e1f919d8854d8880fd76e9bd7dfeccce6b392
3a79dbfa4745da59ee29ecc880970dad4c4e412d
/shufflenetv2_final_solution/acceleartor_hls_final_solution/optimize_onlybram_left/syn/systemc/subconv_1x1_4_p_5.cpp
f8da9bf8f256005d8e5b215ff8cd38addf15a627
[]
no_license
loujc/shufflenetv2_hls
90d70607e973a52fb846142fcf63ab3dcbc135d1
db1e0901cefa4bb1b5a2d3a9c717cbd633210aa4
refs/heads/master
2021-10-28T04:36:11.344041
2019-04-22T02:10:58
2019-04-22T02:10:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
184,864
cpp
#include "subconv_1x1_4_p.h" #include "AESL_pkg.h" using namespace std; namespace ap_rtl { void subconv_1x1_4_p::thread_p_Val2_110_19_fu_12409_p2() { p_Val2_110_19_fu_12409_p2 = (!tmp_334_19_fu_12398_p1.read().is_01() || !p_Val2_109_19_fu_12388_p4.read().is_01())? sc_lv<8>(): (sc_biguint<8>(tmp_334_19_fu...
[ "jzfengziyan@gmail.com" ]
jzfengziyan@gmail.com
5ae9859185afcb4eba5f4a7da968e9c6785e301f
bb2381d2c243729a063dd137b38c13905427790f
/Source/Components/editingcamera.cpp
7391a7c783e9705d214e3cdf30b100a57bc0c4f0
[ "MIT" ]
permissive
JTippetts/U3DTerrainEditor
1840db2228d41f33ac2fbe8c7e6c1d6be0015ceb
90625d5ad9fb1720f10b8d054aa67d55465c7dff
refs/heads/master
2022-11-23T20:23:36.439180
2022-11-22T19:58:48
2022-11-22T19:58:48
29,431,415
120
41
null
2017-05-02T17:32:36
2015-01-18T16:03:52
HTML
UTF-8
C++
false
false
6,959
cpp
#include "editingcamera.h" #include <Urho3D/Graphics/Renderer.h> #include <Urho3D/Graphics/Graphics.h> #include <Urho3D/UI/UI.h> #include <Urho3D/Input/Input.h> #include <Urho3D/Graphics/Drawable.h> #include <Urho3D/Graphics/OctreeQuery.h> #include <Urho3D/Graphics/Octree.h> #include <Urho3D/IO/Log.h> #include "../ter...
[ "vertexnormal@gmail.com" ]
vertexnormal@gmail.com
c508cab01d95fcdcfc9801a7572d6f4f1e5f89b4
764a20f37b4dacfa02c096f5a6a0fed4b125ec5d
/cplusplus_com/02_variables.cpp
5e13edc97192864cc5ccd612b4965afd54588e9d
[]
no_license
mehblahwhatever/CppTutorials
b9d85386e45239d635a1da1ce6d144a0bc40ee0a
87195ff551ef0c3ef43213c52379db36f6501ca4
refs/heads/master
2021-08-21T20:59:15.379083
2017-11-29T02:28:58
2017-11-29T02:28:58
112,407,222
0
0
null
null
null
null
UTF-8
C++
false
false
236
cpp
// variables #include <iostream> using namespace std; int main(){ // declaring variables int a, b; int result; // process a = 5; b = 2; a = a + 1; result = a - b; // print result cout << result; // terminate return 0; }
[ "mehblahwhatever@gmail.com" ]
mehblahwhatever@gmail.com
6cf405ad181e845fe95f340a50901d7431c87cfc
7b9e626cfc3aa45ff44f79b0fb31b782a17d6c98
/src/boundary/zouHeBoundary3D.cpp
a5fc62a486be38ccdf6d9e5c4c7a4616a4922446
[]
no_license
lex16000/LBv1.2
e95b1b42925aaa892e6099be83496a0a56271dff
cee82cc6fe75d2f9b25a9f62ce8d50d3480c47ac
refs/heads/master
2021-04-06T01:41:48.099885
2018-04-04T12:01:09
2018-04-04T12:01:09
125,254,173
0
0
null
null
null
null
UTF-8
C++
false
false
1,926
cpp
/* This file is part of the OpenLB library * * Copyright (C) 2007 Orestis Malaspinas, Jonas Latt * E-mail contact: info@openlb.net * The most recent release of OpenLB can be downloaded at * <http://www.openlb.net/> * * This program is free software; you can redistribute it and/or * modify it under the te...
[ "schulz_a_alexander@hotmail.com" ]
schulz_a_alexander@hotmail.com
9d603178a22dd652dc5379c6cddebb1ec8fa9706
ce429bc93488e42629f877dbc5fbd5e206e6df3e
/实验54 综合测试实验/NES/mapper/122.cpp
6254df85b0237a9e52284d3d733da484f0e6d972
[]
no_license
898311543/worship_stm32
eaaf0c8355f57ffd8f8dc844a37d03935da1a516
2f29108a776949bde3dd2b94e9c44636aaf148df
refs/heads/master
2021-04-27T00:16:48.914283
2018-03-04T11:59:52
2018-03-04T11:59:52
123,784,161
4
0
null
null
null
null
UTF-8
C++
false
false
751
cpp
#ifdef _NES_MAPPER_CPP_ ///////////////////////////////////////////////////////////////////// // Mapper 122 void NES_mapper122::Reset() { // set CPU bank pointers set_CPU_banks(0,1,2,3); } void NES_mapper122::MemoryWriteSaveRAM(uint32 addr, uint8 data) { if(addr = 0x6000) { uint8 chr_bank0 =...
[ "898311543@qq.com" ]
898311543@qq.com
6fee9c28075e849795328e733d442b9923b531a6
bd2499c41e442b45ddd273a9d45880abe9b67047
/src/mainwindow.h
2ac2ea6c6a95fe8cc672cab46e3a917c0dc45bd3
[]
no_license
endmon/PCO_Labo4_QTrain
7b11c159fcc832f38f4d3a5cd98d8a93dc07fbcf
6e7de237041c075af8e4df02099e5995a4fa083d
refs/heads/master
2020-03-15T11:11:21.406329
2018-05-04T09:13:51
2018-05-04T09:13:51
132,115,407
0
0
null
null
null
null
UTF-8
C++
false
false
4,803
h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <connect.h> #include <QMainWindow> #include <QFileDialog> #include <QDir> #include <QDebug> #include <simview.h> #include <QSignalMapper> #include <voieaiguillage.h> #include <voieaiguillageenroule.h> #include <voieaiguillagetriple.h> #include <voiebuttoir.h> #include...
[ "miguel.lopesgouveia@heig-vd.ch" ]
miguel.lopesgouveia@heig-vd.ch
a57c72e7688ac0fe839592c867deda95e29eaf3e
00c64e0967d197d8c6fc3427954e2d0b2ff13ca0
/sycl/test/warnings/interop_task_deprecation.cpp
4f99d91d1bf56a4b6965b139222e13a9d6dc4e94
[ "NCSA", "LLVM-exception", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
triSYCL/sycl
893048e80158cf3359c1ad8912da9ccf493faf69
5a95a7136a11b75f01ef839d9229780032bbeecf
refs/heads/sycl/unified/master
2023-08-23T22:06:46.238209
2023-05-24T22:54:31
2023-05-24T22:54:31
178,923,006
103
17
NOASSERTION
2023-09-12T20:03:26
2019-04-01T18:29:01
null
UTF-8
C++
false
false
680
cpp
// RUN: %clangxx %fsycl-host-only -fsyntax-only -Xclang -verify -Xclang -verify-ignore-unexpected=note %s #include <sycl/sycl.hpp> using namespace sycl; int main() { queue Q; buffer<int, 1> B(range<1>{1}); Q.submit([&](handler &H) { auto Acc = B.get_access<access::mode::read>(H); // expected-warning@+1...
[ "noreply@github.com" ]
triSYCL.noreply@github.com
8345bb2d62d4fabddbae85472d305956aa6a7ddc
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5631572862566400_0/C++/Umnik/C.cpp
af210973459fca6ea88509f49a8738e7fdc27dc4
[]
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
1,375
cpp
#include <iostream> #include <cstdio> #include <cstdlib> #include <vector> using namespace std; const int N = 1010; int p[N]; int cycle[N]; int maxLen[N]; int n; bool used[N]; int getCycle(int v) { for (int i = 0; i < n; i++) used[i] = false; int u = v; int len = 0; while(!used[u]) { len...
[ "alexandra1.back@gmail.com" ]
alexandra1.back@gmail.com
27579e1918a2c95481b288373b7237b357acce12
fa055f2b33ccd491c70a6ac866b5084caded7c0c
/src/qt/sendcoinsdialog.cpp
c3ea06389776b9dd3e5e2570e8a85adf39f69e70
[ "MIT" ]
permissive
iGotSpots/SPOTS
e98b45e6b319bbaf39305778de7bbd30ef94c2c1
35ee4afdb88fbca9baec0519d7ed1658bd88b5a2
refs/heads/master
2021-01-19T00:57:37.119786
2016-05-30T19:45:43
2016-05-30T19:45:43
60,034,810
0
0
null
null
null
null
UTF-8
C++
false
false
17,763
cpp
#include "sendcoinsdialog.h" #include "ui_sendcoinsdialog.h" #include "init.h" #include "walletmodel.h" #include "addresstablemodel.h" #include "bitcoinunits.h" #include "addressbookpage.h" #include "optionsmodel.h" #include "sendcoinsentry.h" #include "guiutil.h" #include "askpassphrasedialog.h" #include "coincontrol....
[ "digicube@freestaking.com" ]
digicube@freestaking.com
4635c149618020f92f7dbb3a4a48f4d8e5dae6e4
6408b0d4aa624dccb85a1a9f9cab721b9f0e053b
/Data Structures I with C Plus Plus/Assignment 5/List.h
d6e3b037ecc0f23a7e40cbcd3200401145d64301
[]
no_license
KyleTennant/Education
43e7b7183562b7dddb96cbe9a1eef3e0bafb0b1e
21d8c949ce1945305ede55fd5c7c54531f08e33f
refs/heads/master
2020-05-01T08:20:42.497983
2019-04-05T01:01:33
2019-04-05T01:01:33
177,376,054
0
0
null
null
null
null
UTF-8
C++
false
false
3,343
h
//************************************************************ // // File: List.h // // Student: Kyle Tennant // // Assignment: Assignment #5 Part 2 // // Course Name: Data Structures I // // Course Number: COSC 3050 // // Due: March 1, 2018 // // This program uses a sorted linked list and a // stack ...
[ "noreply@github.com" ]
KyleTennant.noreply@github.com
b2cb68614789675ba089cb0f2b48e53fbcb37504
04e5b6df2ee3bcfb7005d8ec91aab8e380333ac4
/clang_codecompletion/clang/AST/DeclVisitor.h
8690cdda4bb700254f3cf3fe0777495269e7b3d6
[ "MIT" ]
permissive
ColdGrub1384/Pyto
64e2a593957fd640907f0e4698d430ea7754a73e
7557485a733dd7e17ba0366b92794931bdb39975
refs/heads/main
2023-08-01T03:48:35.694832
2022-07-20T14:38:45
2022-07-20T14:38:45
148,944,721
884
157
MIT
2023-02-26T21:34:04
2018-09-15T22:29:07
C
UTF-8
C++
false
false
2,569
h
//===- DeclVisitor.h - Visitor for Decl subclasses --------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
[ "emma@labbe.me" ]
emma@labbe.me
4ef7c4ba0037ed06d458d8dc3a095e2aa9ffc7bf
9b1a0e9ac2c5ffc35f368ca5108cd8953eb2716d
/5/Section4-Physics/4.02-DynamicGrassSimulation-Ramraj/cs_kf3d.h
dbad5e7f14e46b8434139988a06aa1b835bdbb48
[]
no_license
TomasRejhons/gpg-source-backup
c6993579e96bf5a6d8cba85212f94ec20134df11
bbc8266c6cd7df8a7e2f5ad638cdcd7f6298052e
refs/heads/main
2023-06-05T05:14:00.374344
2021-06-16T15:08:41
2021-06-16T15:08:41
377,536,509
2
2
null
null
null
null
IBM855
C++
false
false
2,607
h
#ifndef __CS_KF3D_H__ #define __CS_KF3D_H__ //---------------------------------------------------------------------------- // //cs_kf3d.h // //Copyright Е Rishi Ramraj, 2004 //Animation wrapper //---------------------------------------------------------------------------- //ииииииииииииииииииииииииииииииииии...
[ "t.rejhons@gmail.com" ]
t.rejhons@gmail.com
54f981f9679c0c38c1474a5ccad15882be553070
62af28bba4cb110b2dcb3886697da96489b63f22
/MetalSlugShooting/Server/Server/main.cpp
ac81f1793d6d93974ae46a2bbbf4ee497019e8bb
[]
no_license
XDNoob/MetalSlugShooting
e3b896e178ed0f04260a433c0f1345f390a89409
1ad2ebe9d54853868c8940618e78bda1de4d84a4
refs/heads/master
2022-01-08T05:40:07.658860
2018-12-06T07:47:30
2018-12-06T07:47:30
null
0
0
null
null
null
null
UHC
C++
false
false
10,024
cpp
#include "Server.h" #include "Protocol.h" #include "CTimer.h" #define SERVERPORT 9000 #define BUFSIZE 5000 //===================================================================== //int g_iGameState[PLAYERMAX] = {}; int g_iGameState = GAME_READY; CTimer* g_Timer[PLAYERMAX] = {}; // Timer class float g_fTime[P...
[ "ekgp6360@naver.com" ]
ekgp6360@naver.com
e82b48d3d086dc2d920c62bc511c05f74108853d
4116ec76cb0f9cadd47a4a4c4a980d52024a4e82
/selectionSort_0.cpp
1076c2459c501ad1705882d22829603963a52a6e
[]
no_license
leesangkoo/selectionSort_0
90c36a519c0b30ad14f6a7c960deb34226d8c515
1c19de587c9eb2fcc9d51889edd8f81a180ef3e4
refs/heads/master
2023-05-14T18:05:09.748201
2021-05-31T12:08:29
2021-05-31T12:08:29
372,493,309
0
0
null
null
null
null
UTF-8
C++
false
false
758
cpp
 #include <iostream> using namespace std; int main() { int i, j, min, index, temp; int array[10] = { 1,10,5,8,7,6,4,3,2,9 }; for (i = 0; i < 10; i++) { cout << "before array[" << i << "] = " << array[i] << endl; } for (i = 0; i < 10; i++) { min = 1000; for (j = ...
[ "mindmoversklee@gmail.com" ]
mindmoversklee@gmail.com
7988f51ce96635fa911511c3c9dd58d8a08b837f
154ad9b7b26b5c52536bbd83cdaf0a359e6125c3
/ash/common/system/audio/volume_view.cc
01e96d417ae27303491bb74950daf61915565c95
[ "BSD-3-Clause" ]
permissive
bopopescu/jstrace
6cc239d57e3a954295b67fa6b8875aabeb64f3e2
2069a7b0a2e507a07cd9aacec4d9290a3178b815
refs/heads/master
2021-06-14T09:08:34.738245
2017-05-03T23:17:06
2017-05-03T23:17:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,512
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 "ash/common/system/audio/volume_view.h" #include "ash/common/ash_constants.h" #include "ash/common/metrics/user_metrics_action.h" #include "ash/...
[ "zzbthechaos@gmail.com" ]
zzbthechaos@gmail.com
a00327170c831f9a20483c036186a9c19d22c62b
544a465731b44638ad61a4afa4f341aecf66f3cd
/vendor/cxsc-2.2.3/CToolbox/Modules/ddf_ari.cpp
b51d23d5cd6613b095709b9b2b315e95c3421a82
[]
no_license
skempken/interverdikom
e13cbe592aa6dc5b67d8b2fbb4182bcb2b8bc15b
dde091ee71dc1d88bbedb5162771623f3ab8a6f4
refs/heads/master
2020-05-29T15:29:18.076702
2014-01-03T10:10:03
2014-01-03T10:10:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
21,526
cpp
/* ** CXSC is a C++ library for eXtended Scientific Computing (V 2.2.3) ** ** Copyright (C) 1990-2000 Institut fuer Angewandte Mathematik, ** Universitaet Karlsruhe, Germany ** (C) 2000-2008 Wiss. Rechnen/Softwaretechnologie ** Universitaet Wuppertal, Germa...
[ "sebastian@ivk-virtualbox.(none)" ]
sebastian@ivk-virtualbox.(none)
3eed1f64d598892eaae376466643a5a864b98964
37421acb6ab434bf46afc30fe20397892b55fd93
/code/l3lib/include/google/protobuf/util/time_util.h
e3d8fa83a2adbcda5ee42c3c2df302ec3e704a26
[]
no_license
achishex/thunder
cd7f78b23eaf87a83b258eb2c930d97eccbe7e81
e07135f6c496f268c8b0b043148b9a30bcc60a64
refs/heads/master
2021-05-06T10:27:23.416594
2017-09-01T16:35:36
2017-09-01T16:35:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,620
h
// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // ...
[ "“chenjiayi@tuandai.com”" ]
“chenjiayi@tuandai.com”
9cdb359569709931d61dc12cbe136708bf728bb9
649b4be440d7f75376d3ceb4010091aa1bcac3f9
/C++/2019 Bank Account Example/AccountFactory.h
00a08ded03002af0db05452413d7025d0bdd912c
[]
no_license
BradleyGBrandt/Code-Samples
06586661b54a0e8d08a49c4a9092647b8bf5c252
6bb375bc09b6a6d12af4212e85de5ca0f5b8416f
refs/heads/master
2023-07-31T23:57:53.012547
2021-09-17T17:52:48
2021-09-17T17:52:48
311,863,854
1
0
null
null
null
null
UTF-8
C++
false
false
400
h
#pragma once #include "Account.h" #include<map> enum class accountType { savings, checking, premiumChecking }; static class AccountFactory { public: static void accountSuccessDisplay ( const bool& success ); static void createAccounts ( const int& howMany, const accountType& type, std::map<int, Account*>& AccountPt...
[ "gbrandt@mail.bradley.edu" ]
gbrandt@mail.bradley.edu
7e61c18f84b5dec2967e9b6cb16aa55a0ad4e524
012cb90d1fe9db585e90a98907b5634a4dd10ca4
/src/plugins/_.interfaces/ireader.h
15d1d90a3a80415ea6ba4fac19b1d4124bafc642
[]
no_license
andy-fillebrown/audiocarver
6d9fed1a05400efc6b2b2464a10dce8f5d490bba
3a5d79c82d350193f28df86c2cb0fe9b114d79bd
refs/heads/master
2020-05-22T10:21:28.696699
2015-04-26T11:08:43
2015-04-26T11:08:43
186,297,278
0
0
null
null
null
null
UTF-8
C++
false
false
1,244
h
/************************************************************************** ** ** This file is part of AudioCarver ** ** Copyright (c) 2013 Andrew Fillebrown. ** ** Contact: Andy Fillebrown (andy.fillebrown@gmail.com) ** ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as...
[ "andy.fillebrown@gmail.com" ]
andy.fillebrown@gmail.com
c45914c273c0464573c3baa590745cd8dc54e7c8
caed0558cef8ef4c52b9e96e5fe909f30dd84511
/src/ImageWriter.h
f2633d08186280036b19f54bac7194a3261ea25e
[ "MIT" ]
permissive
msmolens/smoke-simulation
b5b19ae0fab6f078365f4c592fc07f32eaf69432
81f45f18368e349ea45111ef1a4d52dd565fabe8
refs/heads/master
2021-01-25T03:20:14.249929
2015-02-28T20:27:45
2015-02-28T20:27:45
31,472,889
1
2
null
null
null
null
UTF-8
C++
false
false
295
h
#ifndef _IMAGE_WRITER_H #define _IMAGE_WRITER_H #include <iostream> #include <GL/gl.h> #include <magick/api.h> using namespace std; class ImageWriter { public: ImageWriter(int w=512, int h=512); void output(int frameNum); void set_dimensions(int w, int h); private: int w, h; }; #endif
[ "msmolens@gmail.com" ]
msmolens@gmail.com
2efa9e61ee67c625121a0168b350363363506f77
c1e54641a1e839f457783466cb5b66cab617d1b7
/platformio/src/setup.cpp
26d44b24bfd117c9ba633dcd6db76e0c47209899
[]
no_license
iftachAvital/EasyCool
2d00206aeed0de998c76b3ca6506c9240cc4e365
6a2cf7a3c450eddbf4902fe86b400c82dd2417c0
refs/heads/master
2021-05-11T14:03:50.115424
2018-01-16T14:28:28
2018-01-16T14:28:28
117,693,064
0
0
null
null
null
null
UTF-8
C++
false
false
9,671
cpp
#include "setup.h" unsigned long setup_timeout; bool setup_exit_flag; void reset_setup_timeout() { setup_timeout = millis() + SETUP_MANAGER_TIMEOUT; } void handle_setup_button_in_manager() { if (digitalRead(SETUP_BUTOON_PIN) == LOW) { DEBUGV_EASYCOOL("[setup] button pressed\n"); unsigned lon...
[ "iftach.avital@gmail.com" ]
iftach.avital@gmail.com
c009edbc9a5b8357eb9acd00c0d0ef5a350c4bcf
cb80a8562d90eb969272a7ff2cf52c1fa7aeb084
/inletTest7/0.224/Co
bd6e60e2bde93267505fde57da0742c58f05e744
[]
no_license
mahoep/inletCFD
eb516145fad17408f018f51e32aa0604871eaa95
0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2
refs/heads/main
2023-08-30T22:07:41.314690
2021-10-14T19:23:51
2021-10-14T19:23:51
314,657,843
0
0
null
null
null
null
UTF-8
C++
false
false
105,376
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2006 | ...
[ "mhoeper3234@gmail.com" ]
mhoeper3234@gmail.com
162160f51b3a9013ba959cc78761411c9b2794df
e44143f9c414193afc563971f73bd00e86b6ac69
/ABC058/C.cpp
37e62afb350463ce1ef7466153980da73fb16446
[]
no_license
Kotaro666-dev/atcoder
88b1452e43ee7ed0fa67d6e531d72012bbd995fb
91b23815e2b1d48edd9390b2b7c666ac2f23946e
refs/heads/master
2021-10-10T09:32:19.545393
2021-10-09T03:38:29
2021-10-09T03:38:29
240,242,377
0
0
null
null
null
null
UTF-8
C++
false
false
2,165
cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* C.cpp :+: :+: :+: ...
[ "kotaro0726@gmail.com" ]
kotaro0726@gmail.com
1da7b86d307af93fc6ae34d17de4fa05c3abd7a2
856dc6ae29ee6e01c2b4376120a23a1b70bd0a2d
/cs124/week6/project2.cpp
aca2090931da77cfc58406ff76f30bd169c5cda3
[]
no_license
Jordan-Jarvis/school-stuff
24872adb217c81e08ffccec582568f9736076039
7436d3094e48c8e98abc5e7c80c6e47e6aecd789
refs/heads/master
2023-03-01T12:07:30.757857
2021-02-12T21:54:36
2021-02-12T21:54:36
117,884,422
0
0
null
null
null
null
UTF-8
C++
false
false
6,729
cpp
/*********************************************************************** * Program: * Project 07, Calendar * Sister Hansen, CS124 * Author: * Jordan Jarvis * Summary: * This program displays a calendar table for the given month number * and year. * * Estimated: 0.0 hrs * Actual:...
[ "noreply@github.com" ]
Jordan-Jarvis.noreply@github.com
7e600c1d08b17889d747004660ab3d47015adae4
f572dff0c0f45105c386074840e038097e0da0c1
/Algo_E7.cpp
6b1c4d7e6023d3a6a7688e0d446bbe88215f83ce
[]
no_license
SehoonKwon/MultiCamp
1540d1ab0d8426f375f238209a8f145a7bbdcd2e
a0b77efa16c3c7c01cddd213e237e3e5f9f65d92
refs/heads/master
2022-12-11T22:22:49.844609
2020-09-08T11:47:19
2020-09-08T11:47:19
293,792,867
0
0
null
null
null
null
UTF-8
C++
false
false
1,904
cpp
//#include <iostream> //#include <algorithm> //#include <cstring> //#include <vector> //using namespace std; // //#define MAX 987654321 // //char Array[5][9]; //int dx[] = { 0,0,-1,1 }; //int dy[] = { 1,-1,0,0 }; //int MIN_P = MAX, MIN = MAX; // //struct point //{ // int x; // int y; //}; // //vector...
[ "noreply@github.com" ]
SehoonKwon.noreply@github.com
d7a5b0c3a1551944cb39601ea916120b841db00a
de5e094c678b91959915ae6e33e77df11c443c40
/SDA Homework/Study Samples/Data Structures/MergeSortedQueues.cpp
09f8cdcd3e76e3bdd4635c3033d77358ee1161b7
[]
no_license
Fluctuationqt/DSAHomework
497afde3f15ee0093492ab5d9fdc6170e3e2a1ad
3dd538f514ae6bbae5e98a5a7f291b1708ba7ffc
refs/heads/master
2020-08-08T01:47:43.282887
2019-10-08T15:05:22
2019-10-08T15:05:22
213,664,791
0
0
null
null
null
null
UTF-8
C++
false
false
3,630
cpp
// DynamicStack.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> #include "Stack.hpp" #include "Queue.hpp" #include <sstream> #include "windows.h" // Q1: 2 3 5 10 // Q2: 1 4 6 // res: 1 2 3 4 5 6 10 // ########## Text color setters ############# HAND...
[ "noreply@github.com" ]
Fluctuationqt.noreply@github.com
7d23b4bdea54edf6073326ad4b7fcc17aeca5e0c
5a1a2d4f583ff8403ac5ab6c5e2821d4fa01eaf4
/Important Code/spoj/segTreesumquery.cpp
9e7f3425541a4520f76fb2f5e190eb5f56c8244b
[]
no_license
thenullterminator/CCArchive
0bb29a87c46a13be514cef0fae0b98900f28e7ac
5b439bad603d9e025e66126262dfe96e177936c8
refs/heads/master
2020-08-30T00:43:12.296641
2020-01-05T11:43:37
2020-01-05T11:43:37
218,218,067
0
0
null
null
null
null
UTF-8
C++
false
false
1,377
cpp
#include <bits/stdc++.h> #define k 100010 using namespace std; int n; struct node{ long long mxprefix;// max prefix sum. long long mxsuffix;// max suffix sum. long long sum; // total sum. long long ans; } tree[k]; node combine(node a,node b){ node c; c.ans=max(max(a.ans,b.ans),a.mx...
[ "dazz2803@gmail.com" ]
dazz2803@gmail.com
3176616e11e8ce0667aaa45a1dd34a2c698a5fe7
d60fa37053a864b3d2e46c2d1b3d72b899743da9
/Geometry/CommonDetUnit/src/GeomDetType.cc
2f549d6184a35e321d06da100c7011103649cfaa
[]
no_license
ikrav/cmssw
ba4528655cc67ac8c549d24ec4a004f6d86c8a92
d94717c9bfaecffb9ae0b401b6f8351e3dc3432d
refs/heads/CMSSW_7_2_X
2020-04-05T23:37:55.903032
2014-08-15T07:56:46
2014-08-15T07:56:46
22,983,843
2
1
null
2016-12-06T20:56:42
2014-08-15T08:43:31
null
UTF-8
C++
false
false
1,229
cc
#include "Geometry/CommonDetUnit/interface/GeomDetType.h" using namespace GeomDetEnumerators; GeomDetType::GeomDetType( const std::string& n, SubDetector subdet) : theName(n), theSubDet(subdet) {} GeomDetType::~GeomDetType() {} bool GeomDetType::isBarrel() const { return (theSubDet == PixelBarrel || theSubDe...
[ "giulio.eulisse@gmail.com" ]
giulio.eulisse@gmail.com
3cc6f7157bbc177993fec5fdeac6e60b705bde2e
c31f3bc0ca5c204642c531c488eec86f27765fd1
/generateRepresentativeProtein/Main.cpp
55242a7fd50a972e4e99fe7a0105bd8367c93e8f
[]
no_license
Gaoyitu/CONVERT
0675f812206ba497b14f1605a0c3fdd19b873cfb
f938c4daa8645aa8181fee842f37664517ad04c1
refs/heads/master
2020-09-25T12:40:50.042084
2019-12-07T04:44:28
2019-12-07T04:44:28
226,006,950
0
0
null
null
null
null
UTF-8
C++
false
false
3,637
cpp
#define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<fstream> #include<iomanip> #include<set> #include<map> #include<unordered_set> #include"Preprocessing.h" #include"Needleman_Wunsch.h" #include<Windows.h> using namespace std; //The input file is a FASTA form file of protein sequences, and the output...
[ "noreply@github.com" ]
Gaoyitu.noreply@github.com
3b9dfd40f6962eea067b521e09a73a023d92d92e
85e7114ea63a080c1b9b0579e66c7a2d126cffec
/SDK/SoT_BilgeRats_classes.hpp
929674e91a6f3f6661389f669f2e14d85070aaf2
[]
no_license
EO-Zanzo/SeaOfThieves-Hack
97094307d943c2b8e2af071ba777a000cf1369c2
d8e2a77b1553154e1d911a3e0c4e68ff1c02ee51
refs/heads/master
2020-04-02T14:18:24.844616
2018-10-24T15:02:43
2018-10-24T15:02:43
154,519,316
0
2
null
null
null
null
UTF-8
C++
false
false
639
hpp
#pragma once // Sea of Thieves (1.2.6) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "SoT_BilgeRats_structs.hpp" namespace SDK { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // Bl...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
c5a38c93de19d7c97a31e8bce05ddde1f50a16b0
5962694e44eaa5e7b21b49802a40c17a8c1d21ce
/bruteforce_excel/excel_loader.cc
40ff936a46181c16159506536e4ea0238210be9a
[ "MIT" ]
permissive
brock7/bruteforce_excel
fa3e96759a5f691ec37ca792240cd2488e4e4f18
a0749f66cef37674836d1b7a2eaeb4f28b463267
refs/heads/master
2021-01-18T06:16:43.228962
2015-04-03T15:28:31
2015-04-03T15:28:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,383
cc
// Copyright (c) 2015 jeonghun // // 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, publish, dist...
[ "jeonghun@outlook.com" ]
jeonghun@outlook.com
08242c719aa536445695ae9a74d4efa0b10380ac
cfeac52f970e8901871bd02d9acb7de66b9fb6b4
/generated/src/aws-cpp-sdk-greengrass/source/model/ListDeviceDefinitionsRequest.cpp
7143b6775ba96713cc2449323094ffcbfbd1c049
[ "Apache-2.0", "MIT", "JSON" ]
permissive
aws/aws-sdk-cpp
aff116ddf9ca2b41e45c47dba1c2b7754935c585
9a7606a6c98e13c759032c2e920c7c64a6a35264
refs/heads/main
2023-08-25T11:16:55.982089
2023-08-24T18:14:53
2023-08-24T18:14:53
35,440,404
1,681
1,133
Apache-2.0
2023-09-12T15:59:33
2015-05-11T17:57:32
null
UTF-8
C++
false
false
1,092
cpp
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/greengrass/model/ListDeviceDefinitionsRequest.h> #include <aws/core/utils/json/JsonSerializer.h> #include <aws/core/http/URI.h> #include <aws/core/utils/memory/stl/AWSStringStream.h> #i...
[ "sdavtaker@users.noreply.github.com" ]
sdavtaker@users.noreply.github.com
ccbed4d5a33bbe652efae34d9f471907fa812de2
cb8c337a790b62905ad3b30f7891a4dff0ae7b6d
/st-ericsson/multimedia/video/components/jpegdec/proxy/inc/JPEGDec_NmfMpc_ProcessingComponent.h
50f6c6190a17d881c900347b6ddcc16446ed2924
[]
no_license
CustomROMs/android_vendor
67a2a096bfaa805d47e7d72b0c7a0d7e4830fa31
295e660547846f90ac7ebe42a952e613dbe1b2c3
refs/heads/master
2020-04-27T15:01:52.612258
2019-03-11T13:26:23
2019-03-12T11:23:02
174,429,381
1
0
null
null
null
null
UTF-8
C++
false
false
6,011
h
/* * Copyright (C) ST-Ericsson SA 2010. All rights reserved. * This code is ST-Ericsson proprietary and confidential. * Any use of the code for whatever purpose is subject to * specific written permission of ST-Ericsson SA. */ #ifndef __JPEGDEC_PROCESSINGCOMP_H #define __JPEGDEC_PROCESSINGCOMP_H #include <stdio....
[ "xiangxin19960319@gmail.com" ]
xiangxin19960319@gmail.com
a8d849f01d627083c78157f32d3cd5f6392fbc0c
67ed24f7e68014e3dbe8970ca759301f670dc885
/win10.19042/SysWOW64/hnetmon.dll.cpp
ed85457f096b2b3d5fd7383548ed2bee6660fdb1
[]
no_license
nil-ref/dll-exports
d010bd77a00048e52875d2a739ea6a0576c82839
42ccc11589b2eb91b1aa82261455df8ee88fa40c
refs/heads/main
2023-04-20T21:28:05.295797
2021-05-07T14:06:23
2021-05-07T14:06:23
401,055,938
1
0
null
2021-08-29T14:00:50
2021-08-29T14:00:49
null
UTF-8
C++
false
false
99
cpp
#pragma comment(linker, "/export:InitHelperDll=\"C:\\Windows\\SysWOW64\\hnetmon.InitHelperDll\"")
[ "magnus@stubman.eu" ]
magnus@stubman.eu
46085b020bae069061a41e1444b111eccb6770a0
5f5bb4fe58ca6c9758e5ecd4f1acd7f3af7a41a4
/cses/tree-algorithms/path-queries.cpp
646f769e3c8333654a6180ec2b98a00233b6afd7
[ "MIT" ]
permissive
tysm/cpsols
61a93de55dbeb2d92d92c80681d6615521d3d0ba
262212646203e516d1706edf962290de93762611
refs/heads/master
2023-03-10T01:04:39.409948
2021-02-23T21:49:55
2021-02-23T21:49:55
202,269,911
4
0
null
null
null
null
UTF-8
C++
false
false
1,083
cpp
#include <cpplib/stdinc.hpp> #include <cpplib/data-structure/tree/segment-tree.hpp> int dfs(vvi &adj, vi &values, vi &t, vi &tr, vi &ntoi, int p, int u, int idx, int acc){ t[idx] = acc + values[u]; ntoi[u] = idx; int r = idx; for(int v:adj[u]){ if(v == p) continue; r = dfs(a...
[ "ysm.thalles@gmail.com" ]
ysm.thalles@gmail.com
d50af983676d44ae15069bb4ec1276a199964817
1ac0c3219e44db71950e79acac8ecf370f8e2a7b
/src/components/password_manager/core/browser/password_manager_constants.cc
5729162dea99e3d10dcd7c0a0bb6476deea71046
[ "BSD-3-Clause" ]
permissive
yeahhhhhhhh/chromium_quic
5383c74ca3665c4639899a2aa5741ca2efa39ffb
217d9cdd739b3cc9a440ecea38813c0ce85ef251
refs/heads/master
2022-12-08T04:12:54.583056
2019-08-19T15:03:52
2019-08-19T15:03:52
203,185,892
1
3
null
2022-11-19T05:44:25
2019-08-19T14:09:51
null
UTF-8
C++
false
false
810
cc
// 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. #include "components/password_manager/core/browser/password_manager_constants.h" namespace password_manager { const base::FilePath::CharType kAffiliatio...
[ "root@vultr.guest" ]
root@vultr.guest