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
6cf265d5092a9189feeffea29e120af1788a4164
1bfd698b2c1f5760734dc42632fe54c65a286086
/IfcPlusPlus/src/ifcpp/IFC4/include/IfcBoundaryFaceCondition.h
04639c018fbbc8a8a289d1085079f0e5e3942f9c
[]
no_license
wartburgritter0/old_IfcPlusPlus
c0bd0b784396c100d0d96fc7af6146a0325a9e1b
d0f9d81462b295990d3eb83c9c406d520840330e
refs/heads/master
2021-05-27T21:54:14.456425
2014-06-03T21:23:14
2014-06-03T21:23:14
19,681,159
1
0
null
null
null
null
UTF-8
C++
false
false
2,475
h
/* -*-c++-*- IfcPlusPlus - www.ifcplusplus.com - Copyright (C) 2011 Fabian Gerold * * This library is open source and may be redistributed and/or modified under * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or * (at your option) any later version. The full license is in LICENSE file * in...
[ "fabian.gerold@gmail.com@06f6d6f3-f2e0-f239-6e86-ba6a5d17d3a5" ]
fabian.gerold@gmail.com@06f6d6f3-f2e0-f239-6e86-ba6a5d17d3a5
425bdd058afa5cf5962727edb62a6847f5e68199
9ca652032da6dd477218213db5f7306ac056b1c9
/last_modification_look_this/build-medicine-Desktop_Qt_5_0_2_GCC_32bit-Release/moc_colordiagram.cpp
393a95f8c0664bb0ecd2b80126916b38bf0b66b8
[]
no_license
sis34/msiu
119fcaa7ca10ae547215e9a1878d4deb382d03a0
ad9b420c4b04e63f087b0cad0540d6b9fcde8b1d
refs/heads/master
2021-01-13T01:14:28.195415
2015-04-01T11:28:13
2015-04-01T11:28:13
25,873,249
0
0
null
null
null
null
UTF-8
C++
false
false
3,385
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'colordiagram.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.2) ** ** WARNING! All changes made in this file will be lost! ********************************************************...
[ "sis34@gorynich13.msiu.ru" ]
sis34@gorynich13.msiu.ru
814ba0d03843daac6822ae46fe0d315fd5601809
20d024bd04ace59987ba05f864d6d9dece72fbab
/LeetCode/15. 3Sum.cpp
4af19a02f5b6189a30f8115413ae10f66a2c057d
[]
no_license
Yeluorag/ACM-ICPC-Code-Library
8837688c23bf487d4374a76cf0656cb7adc751b0
77751c79549ea8ab6f790d55fac3738d5b615488
refs/heads/master
2021-01-20T20:18:43.366920
2016-08-12T08:08:38
2016-08-12T08:08:38
64,487,659
0
0
null
null
null
null
UTF-8
C++
false
false
1,254
cpp
#include <iostream> #include <cstdio> #include <vector> #include <map> using namespace std; class Solution { public: vector<vector<int> > threeSum(vector<int>& nums) { vector<vector<int> > ret; map<string, int> unique; int sz = nums.size(); sort(nums.begin(), nums.end()); for(int i = 0; i < sz; i ++) { ...
[ "yeluorag@gmail.com" ]
yeluorag@gmail.com
b5ea253774d0aee6daaa2a71391e54beb5b77719
d5996e2609d03889a8296f8388cd65e645d52759
/ray-tracing/ray-tracing.cpp
233702d6c6998114db7565348c73dc5a0743a7d9
[]
no_license
Penguin77jp/ray-tracing
16c2ac5f09049a657e12968ddd485923e311f2d2
77e6aeb6da814c4777652c4803fc61855874f476
refs/heads/master
2020-04-13T09:23:59.941109
2018-12-26T22:41:04
2018-12-26T22:41:04
163,110,555
0
0
null
2018-12-26T22:41:05
2018-12-25T20:46:03
C++
UTF-8
C++
false
false
487
cpp
#include "output.h" #include "render.h" // #include "cpplinq/CppLinq/cpplinq.hpp" int main() { const int w = 800; const int h = 480; Ray cameraRay = Ray(V(), V(0, 0, 1)); std::vector<Sphere> spheres = { Sphere(V(0, 0, 150), 100, ColorPix(0, 0, 255), ColorPix(0, 0, 0)), Sphere(V(0, 200, 150), 100, ColorPix(0, 0, 2...
[ "Koutei7penguin.jp@gmail.com" ]
Koutei7penguin.jp@gmail.com
2501f3ad68965f57021ff6c11b676f8ee531979b
398cd73c4278fa099f935513762a1717cae94c13
/grid.cpp
ff0a841d26c5c213c766b8c29027d61944d35632
[]
no_license
cahekm/umf1
da3eb1da93fb88d7d347fc3d925334d9ce69e751
f5d458fb47c332f3a88395c02ea33dc3e09b6514
refs/heads/master
2020-05-15T04:34:41.752251
2011-05-04T16:42:19
2011-05-04T16:42:19
1,701,785
0
0
null
null
null
null
UTF-8
C++
false
false
4,406
cpp
#include "grid.h" Grid::Grid(const unsigned int &h1, const unsigned int &w1, const unsigned int &h2, const unsigned int &w2, const double &sh1, const double &sh2, const double &sw1, const double &sw2, const double &kh1, const double &kh2, const double &kw1, const double &kw...
[ "cahek-m@mail.ru" ]
cahek-m@mail.ru
8ae6a83e5efb09bae42189b10864637c9702a339
4bd16eeaf3112ec176617d6f841d74b3c7ada879
/win2/win2/win2.cpp
483fab7fc7aa50ad5c8f21a078e217a44a1aeeee
[]
no_license
sowjanya1998/sowjanya
e751a54565c959b9b0852601d790cf007b3acca0
01e9ee139fb230982cc3d04d295f89114d416fb5
refs/heads/master
2020-04-21T16:46:55.960247
2019-03-18T15:15:55
2019-03-18T15:15:55
169,713,613
0
0
null
null
null
null
UTF-8
C++
false
false
824
cpp
// win2.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include "pch.h" #include <iostream> int main() { std::cout << "Hello World!\n"; } // Run program: Ctrl + F5 or Debug > Start Without Debugging menu // Debug program: F5 or Debug > Start Debugging menu // Tips for...
[ "sowjanyadarna@gmail.com" ]
sowjanyadarna@gmail.com
ef4dd02234910c404fdb526e936fba1359f246f7
dd80a584130ef1a0333429ba76c1cee0eb40df73
/external/chromium_org/content/common/input/synthetic_gesture_packet.h
e87205c82821d2f80cd0ab34d98604fdd4b1d349
[ "MIT", "BSD-3-Clause" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C++
false
false
1,189
h
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_COMMON_INPUT_SYNTHETIC_GESTURE_PACKET_H_ #define CONTENT_COMMON_INPUT_SYNTHETIC_GESTURE_PACKET_H_ #include "base/memory/scoped_ptr.h" #in...
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
05f648e852061a55b0f73420ec00b36d75eaf1f8
cf1f43771249bf7faf32dd8d3bedce73ea33b756
/source/ui/nvenc_h264_handler.hpp
43164513beec59333c02b9dd3ca72855eac6f973
[ "MIT" ]
permissive
kryztoval/obs-ffmpeg-encoder
f8772d29ce8d51eb3f1a77699ce402794f7cc0c9
18024aaf12b919d0b3380faf1c555182858b05c1
refs/heads/master
2020-09-06T20:22:10.631092
2019-10-31T05:36:14
2019-10-31T07:13:42
220,524,736
0
0
MIT
2019-11-08T18:23:42
2019-11-08T18:23:41
null
UTF-8
C++
false
false
2,585
hpp
// FFMPEG Video Encoder Integration for OBS Studio // Copyright (c) 2019 Michael Fabian Dirks <info@xaymar.com> // // 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, incl...
[ "info@xaymar.com" ]
info@xaymar.com
4294b0243b12b035c40ed5d4f545bb780497efe8
98f1ceadfc3772588eff0e7deced5592bfd22dcc
/Objects/bin/preproc/ctags_target_for_gcc_minus_e.cpp
60a1e944e946b650e50a0b0dc7bdc801d4911f8e
[]
no_license
ccatanaoan/TempHumidityBasement
923cc1bdbceec8d9832a77e774f0d7790946f761
836369e4424ad2e5736f4fbf193789c4a940a290
refs/heads/master
2021-06-03T11:01:17.191080
2021-05-11T12:08:51
2021-05-11T12:08:51
141,856,964
0
0
null
null
null
null
UTF-8
C++
false
false
294
cpp
# 1 "C:\\Users\\Cloyd\\Desktop\\HOMEAU~1\\BASEME~1\\Objects\\src\\src.ino" # 2 "C:\\Users\\Cloyd\\Desktop\\HOMEAU~1\\BASEME~1\\Objects\\src\\src.ino" 2 void setup() { b4r_main::initializeProcessGlobals(); b4r_main::_appstart(); } void loop() { while (true) { B4R::scheduler.loop(); } }
[ "antimone2001@hotmail.com" ]
antimone2001@hotmail.com
400adb6327b6bed7f665995d3fe05d8c91809317
81985fc94abfd774c22c5b6f71834d38ba027285
/pinfo/pinfo-ProgramInfo.h
cc6a6aeea8a221422e0b1a82193c0d10e96a525f
[]
no_license
cornell-brg/xloops-bmarks
3f2a961d6c995a556679734d60756754cfa18379
2f91a5aad168882672a8f150fc59158575ae5923
refs/heads/master
2021-05-24T00:56:13.769621
2020-07-11T19:27:46
2020-07-11T19:27:46
59,903,830
3
1
null
null
null
null
UTF-8
C++
false
false
5,174
h
//======================================================================== // pinfo-ProgramInfo.h : Program argument and module information repo //======================================================================== // See 'pinfo-uguide.txt' for more information about using the program // info subproject. #ifndef ...
[ "shreesha@csl.cornell.edu" ]
shreesha@csl.cornell.edu
7defbbb3173b63a24ac031dcff06dd64b499b3b7
754d8208d78f8b41f897f5291eaeb578ad5199b5
/run/tutorials/simpleTests/cylinderInChannelPotentialScalarTransport/constant/transportProperties
17e85cbc56535c553f6e50cae123b7296a148728
[]
no_license
rubynuaa/OversetMesh
39e6540e6b93088c839bbc0f608066d609de393b
9e7fcab5d0593dce11721cb4823cd780c30d4302
refs/heads/master
2020-05-16T08:10:15.440127
2018-01-11T07:34:34
2018-01-11T07:38:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
944
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | foam-extend: Open Source CFD | | \\ / O peration | Version: 1.4 | ...
[ "h.jasak@wikki.co.uk" ]
h.jasak@wikki.co.uk
fec2b70f4ebc21a012d0f308e2b6b2a6b81051c4
fec796dac2b5ec277cb39f64acb22c04e6405042
/CredentialProvider/Utilities.h
5f8d7a167be5822f5ef4933a572e5562fe31b80c
[ "Apache-2.0" ]
permissive
ijat/privacyidea-credential-provider
9ccfdabf416d8da5a94a79ec1685b1d1a343cfa0
2d01798e1b1d326dae4a6173d5a716b1381c298d
refs/heads/master
2023-06-23T07:00:01.646645
2021-07-21T14:55:35
2021-07-21T14:55:35
288,379,555
0
0
Apache-2.0
2021-01-11T16:32:42
2020-08-18T06:57:15
null
UTF-8
C++
false
false
3,127
h
#pragma once #include "Configuration.h" #include "Logger.h" #include <scenario.h> #include <memory> #include <Windows.h> #include <wincred.h> #define CLEAR_FIELDS_CRYPT 0 #define CLEAR_FIELDS_EDIT_AND_CRYPT 1 #define CLEAR_FIELDS_ALL 2 #define CLEAR_FIELDS_ALL_DESTROY 3 #define MAX_SIZE_DOMAIN 64 #define MAX_SIZE_USE...
[ "nils.behlen@netknights.it" ]
nils.behlen@netknights.it
13b4bd46d24955a7c37f8505e921be63264296f7
447a02034735843e0eb1ffc4b049ef102f02c5a3
/src/chronotext/sound/AudioLoop.cpp
4f64c8152c2afc6ddf6069896e552b17958dfe77
[]
no_license
arielm/old-chronotext-toolkit
0898f5e32848621664fa2c2a3d6a25e8b5ea30d1
91e2adb7b589e2356f80cd1ebc5bdecb9892447f
refs/heads/master
2021-01-21T07:31:24.045793
2013-09-25T23:15:38
2013-09-25T23:15:38
4,507,765
0
1
null
null
null
null
UTF-8
C++
false
false
3,633
cpp
#include "chronotext/sound/AudioLoop.h" #if TARGET_OS_IPHONE #define AUDIO_UNIT_COMPONENT_SUB_TYPE kAudioUnitSubType_RemoteIO #else #define AUDIO_UNIT_COMPONENT_SUB_TYPE kAudioUnitSubType_DefaultOutput #endif bool AudioLoop::init() { if (!initialized) { AudioComponentDescription defaultOutputDescripti...
[ "ariel@chronotext.org" ]
ariel@chronotext.org
d52df164e0113e67e3dd2d166e9645f78abbc929
90c73f1d1fc7ddb4af830682b4a690373ff5b220
/app/src/main/cpp/native-lib.cpp
d1c7c68f1cd75a0e38585bee50b39f62b122ff72
[]
no_license
AvinashKanjiya/MyApplication2
4f9c0699573b2f5d7a68bf527c0cbc60037fa68d
fcc31b4d20532e55e808f38816eb0ac0cf459d78
refs/heads/master
2020-05-04T21:02:47.186230
2019-04-04T09:12:20
2019-04-04T09:12:20
179,459,759
0
0
null
null
null
null
UTF-8
C++
false
false
277
cpp
#include <jni.h> #include <string> extern "C" JNIEXPORT jstring JNICALL Java_c_theclassyhome_myapplication_MainActivity_stringFromJNI( JNIEnv *env, jobject /* this */) { std::string hello = "Hello from C++"; return env->NewStringUTF(hello.c_str()); }
[ "avikanjiya@gmail.com" ]
avikanjiya@gmail.com
ca1f5830bab95d2baf4c7c9658ec9bb3884f2102
d702c9e603c184a1d97640bb0cc5722dd16f0996
/atcoder/edu_dp/longest_path.cpp
f9ae93fa00f129e8e83dc4d90b96cc5a624dee05
[ "MIT" ]
permissive
udayan14/Competitive_Coding
648220d442ed5d9d325268d71d8f14175f96db18
79e23fdeb909b4161a193d88697a4fe5f4fbbdce
refs/heads/master
2023-05-08T17:44:35.001970
2021-05-20T04:43:43
2021-05-20T04:43:43
282,085,512
0
0
null
null
null
null
UTF-8
C++
false
false
1,550
cpp
#include <iostream> #include <cassert> #include <cstring> #include <vector> #include <algorithm> using namespace std; vector<vector<int>> adj; vector<vector<int>> inc; vector<short> visited; vector<int> stk; vector<int> dp; void toposort(int v){ visited[v] = 1; for(auto child : adj[v]){ if(!visited[c...
[ "14udayanjoshi@gmail.com" ]
14udayanjoshi@gmail.com
9ff99de9e3ffc9742fa0bf2ba8e0cc99899d2370
9e64d0c70210ba83084871721fd81e5056500868
/base/simjson.h
1cda87a6b63e0eba3fc01c51f09fe72bf4163b13
[ "MIT" ]
permissive
jettyu/simcode
60cf0af897f91eada170bc88f5cd08fef4818b9f
5785ae5e8f7609abdce3cfbc0a0e13e71099fade
refs/heads/master
2021-01-20T17:37:34.020763
2016-04-25T02:51:47
2016-04-25T02:51:47
43,938,793
1
1
null
2015-10-09T07:07:58
2015-10-09T07:07:58
null
UTF-8
C++
false
false
1,930
h
#ifndef SIMJSON_H #define SIMJSON_H #include <string> namespace simcode { enum SimJsonNodeType { SIMJSON_NODE = 1, SIMJSON_ARRAY, SIMJSON_EMPTY }; class SimJson; inline SimJson NewSimJson(const std::string& str, const int _errcode=0); class SimJson { public: static SimJson New(co...
[ "root@localhost.localdomain" ]
root@localhost.localdomain
3d272b478c5acb1c8d2b1ab29d3a030451393e53
3da0b0276bc8c3d7d1bcdbabfb0e763a38d3a24c
/zju.finished/1856.cpp
ea7d6d29aa4d888d6c4b1e4cc25d684d98855813
[]
no_license
usherfu/zoj
4af6de9798bcb0ffa9dbb7f773b903f630e06617
8bb41d209b54292d6f596c5be55babd781610a52
refs/heads/master
2021-05-28T11:21:55.965737
2009-12-15T07:58:33
2009-12-15T07:58:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,279
cpp
#include<iostream> using namespace std; enum { SIZ = 50000, }; struct Node { unsigned s, n; // s is the product, n*(n-1) = s; }; int num; Node tree[SIZ]; unsigned p,q; void init(){ unsigned n,t; num = 0; for(n=2, t=n*(n-1); n<=SIZ; ++n, t=n*(n-1)){ tree[num].s=t; tree[num].n=n; ...
[ "zhouweikuan@gmail.com" ]
zhouweikuan@gmail.com
647c1e7716aba3b2fc71bf0cf731f22d445cf4d3
f96186e83b0a345412a3105007874f382a56eb2f
/Project/Renderer.h
76a72515a49d45a2bedf60f35ba482632d74fb97
[]
no_license
Nihiss-dev/IgraphProject
3ab7868e3316c54e43b4100f2f8ef88516631e68
6cad5b2b795f4c1b0bfe7df6e7d66c54e63a7226
refs/heads/master
2021-08-11T21:25:48.687085
2017-04-24T02:32:55
2017-04-24T02:32:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,145
h
#ifndef RENDERER_H_ #define RENDERER_H_ #include <vector> #include "ofMain.h" #include "Primitive.h" class Renderer { public: explicit Renderer(); virtual ~Renderer(); void Setup(); void Update(); void Draw(); void DrawBlur(); void DrawGeometry(); void DrawNoise(); void AddObject(Object *); void AddLight(...
[ "alexis.feldmar.1@ulaval.ca" ]
alexis.feldmar.1@ulaval.ca
33e4d50966db452bfd19f81520ab4230acd5919e
12b1306e93a471793e8d08af67cb2ed93818c24e
/Source/Settings/FirmwareDlg.h
ef1a97184c85c0f744b6a42c6f2ab67525d7f86b
[ "BSD-3-Clause" ]
permissive
cgibbard/TerpstraSysEx.2014
5e6675c6ffe26d3489792228526e398c51c81f65
fadfae8f21f1e69ea6e639526c95bf8e226c4c64
refs/heads/master
2023-07-24T22:25:46.783023
2021-09-07T23:59:22
2021-09-07T23:59:22
404,155,536
0
0
null
null
null
null
UTF-8
C++
false
false
2,249
h
/* ============================================================================== FirmwareDlg.h Created: 5 Feb 2021 7:33:07pm Author: Vincenzo ============================================================================== */ #pragma once #include "../FileBrowserComponent.h" #include "../FirmwareTran...
[ "sicurella12@gmail.com" ]
sicurella12@gmail.com
74ba59947770c99d3225267fce90476701e7a409
e813fa969d780a51cf4cbebb32ec2b9dc229f78d
/IControls/DataSource/PageDataSource.h
e16b70ef2c524827f28c5d03d996ac0bb2e7bbf3
[]
no_license
aocsa/mlearning_firstversion_ipad
8e63bbfde908178ccdee70dede3af3ae107b93cd
6c7b283e49f06e0794d7c29af73e59c16459d98f
refs/heads/master
2020-12-31T05:10:25.817683
2016-04-24T20:10:11
2016-04-24T20:10:11
56,719,109
0
0
null
null
null
null
UTF-8
C++
false
false
1,576
h
#include "pch.h" namespace IControls { namespace DataSource { public ref class PageDataSource sealed : public BindableBase { public: PageDataSource(); #pragma region Properties public: property Platform::String^ Name { void set(Platform::String^ value){ this->_name = value;...
[ "aocsa.cs@gmail.com" ]
aocsa.cs@gmail.com
c3ad1a637d339ce54793ab15efbff3bdc0ff7198
c24ee28d620c4c5c0082f1710a284954d52f4b62
/CBM_Cart_On_Cart/src/outputmodules/outputcp.cpp
6e1d91e37581db8a3c91fdbcae0f1798d25760e5
[]
no_license
wenkeli/Cerebellum_simulation
7604da8525e9254fc95205c08285428ad797fec3
f0b22505113d62ebb24078ae24de2d6566666242
refs/heads/master
2020-12-24T02:55:36.955955
2020-01-31T03:34:34
2020-01-31T03:34:34
237,354,640
0
0
null
null
null
null
UTF-8
C++
false
false
1,718
cpp
/* * outputcp.cpp * * Created on: May 27, 2011 * Author: mhauskn */ #include "../../includes/outputmodules/outputcp.h" CPOutput::CPOutput(unsigned int numNC, float ts, float tsus) : BaseOutput(numNC, ts, tsus) { gForceInc=0.1; gForceIncDecay=exp(-(timeStepSize/5)); gForceDecay=exp(-(timeStepSize/gForce...
[ "17211989+wenkeli@users.noreply.github.com" ]
17211989+wenkeli@users.noreply.github.com
362f894f3a49e6176325a4f8184edc032cbba894
f6871790b6c438cfd2b0b4f45e247992ed2a1a0a
/third_party/libigl/include/igl/kkt_inverse.cpp
a3c3c8b574f73586da85636e20e15519abd42401
[ "Apache-2.0", "MPL-2.0" ]
permissive
rahulpowar/monster-mash
c202e5f117f101129cbc487f52e446bd74f50783
535167fb3178479e9fa6e2e04bf9b5232cfffac6
refs/heads/main
2023-03-11T19:13:29.367921
2021-02-28T16:54:40
2021-02-28T16:54:40
343,154,572
7
1
Apache-2.0
2021-02-28T16:33:39
2021-02-28T16:33:39
null
UTF-8
C++
false
false
3,026
cpp
// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2013 Alec Jacobson <alecjacobson@gmail.com> // // This Source Code Form is subject to the terms of the Mozilla Public License // v. 2.0. If a copy of the MPL was not distributed with this file, You can // obtain one at htt...
[ "dvoromar@google.com" ]
dvoromar@google.com
6cd3d1369949242ab4da31d529a94fca425b17b7
a23d9df9a83349b61139ca3aefda687a2bbd8f97
/test/core/utility_macros/likely_unlikely.cpp
c9762186f45238ccb68b40b7da537ce70c6d06b7
[]
no_license
respu/vrm_core
46d657a95672e07870b4c6e3c8728227e34370a0
d768d2e61938a986f807d4c595fe3297d17df99a
refs/heads/master
2021-01-14T19:30:00.758367
2015-10-23T16:46:54
2015-10-23T16:46:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
328
cpp
#include "../../utils/test_utils.hpp" #include <vrm/core/utility_macros.hpp> int main() { using namespace vrm::core; volatile int x = 10; volatile bool y = true; if(VRM_CORE_LIKELY(x)) { TEST_ASSERT(true); } if(VRM_CORE_UNLIKELY(y)) { TEST_ASSERT(true); } ret...
[ "vittorio.romeo@outlook.com" ]
vittorio.romeo@outlook.com
74d255a76301889efcc03a6d0b8aec3f8761e322
10d97d25226c473acaecfaeef153f000481b7259
/test_pid/calibrage/calibrage.ino
0460d6c480fb3e0630399f59d32b689684708b35
[]
no_license
taoufiq26/DroneProject
e37dbf264e8981fb26342e8d89e88af3193a87dd
1a7946804653e2aeb50a50aad49fc7da99fcf0a9
refs/heads/master
2021-01-20T04:30:09.895938
2015-01-08T00:44:23
2015-01-08T00:44:23
28,640,933
0
0
null
null
null
null
UTF-8
C++
false
false
632
ino
#include <Servo.h> #define MAX_SIGNAL 2000 #define MIN_SIGNAL 700 #define MOTOR_PIN 5 Servo motor; void setup() { Serial.begin(9600); Serial.println("Program begin..."); Serial.println("This program will calibrate the ESC."); motor.attach(MOTOR_PIN); Serial.println("Now writing maximum output."); Seria...
[ "taoufiq2006@gmail.com" ]
taoufiq2006@gmail.com
cc21d294ebb975f00cff237b9867c096772b59e0
e75ba9f6abb7ea98a026af5d0525873d6e526a9a
/C++/ITVDN/Starter/Cyclic/Source.cpp
ef64bf87de34267b4e8b862138e1c01e4d6fbffd
[]
no_license
NarekID/Independent_study
64249d9955b9e15663420f17954e8824159c07e1
63d9aba28f1106a1dfd850f465adb3f8ba13c915
refs/heads/master
2020-09-15T06:52:58.600832
2020-01-01T20:27:29
2020-01-01T20:27:29
223,345,745
0
0
null
null
null
null
UTF-8
C++
false
false
4,314
cpp
#include <iostream> using namespace std; int main() { setlocale(LC_ALL, "rus"); cout << "Дополнительное задание\n" << endl; cout << "\tВариант 1\n" << endl; { int width, height, i, j; cout << "Введите длине: "; cin >> width; cout << "Введите ширину: "; cin >> height; for (i = 0; i < height; i++) ...
[ "narek2011n@gmail.com" ]
narek2011n@gmail.com
6de74204631178519726f4c691fa736988353fa8
e4cf94694330f3f7fdbb6ecf932c19a8637e1878
/moc_Book_chapter.cpp
a15c42b52cbad0a5f5a4e64711f3bda5dcc2d8e0
[]
no_license
Reader6/ReadClient
20a77f4ea6bf648aaab7a25c1bd51d28bd1eee9a
78a0175956675cf3f5c8b5e2ef97d5be5544dfca
refs/heads/master
2021-01-16T04:01:31.107972
2020-07-02T16:47:06
2020-07-02T16:47:06
242,971,016
0
1
null
null
null
null
UTF-8
C++
false
false
6,929
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'Book_chapter.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.14.0) ** ** WARNING! All changes made in this file will be lost! *******************************************************...
[ "1305665118@qq.com" ]
1305665118@qq.com
9e58380530e69b2270df9664aaeb6dbc53e39244
92e78fbc204a39931a2b1928606f12110ddd0829
/inc/InputMgr.h
e06901f7ad56cbf31805299ab95ac57d3f43cd62
[]
no_license
zachcooper/Blast-Commander_v3
fd4225207973f0d9d090198cf4ea9e810b0a4f1d
31828ff2ea43e80a7f3ba839896f1257ba14aedb
refs/heads/master
2020-03-15T23:57:41.682014
2018-05-14T03:33:56
2018-05-14T03:33:56
132,404,491
0
1
null
2018-05-12T00:32:10
2018-05-07T03:53:00
Makefile
UTF-8
C++
false
false
1,197
h
/* * InputMgr.h * * Created on: Mar 4, 2018 * Author: sushil */ #ifndef INPUTMGR_H_ #define INPUTMGR_H_ #include <OISEvents.h> #include <OISInputManager.h> #include <OISKeyboard.h> #include <OISMouse.h> # include <SdkTrays.h> # include <SdkCameraMan.h> #include <Mgr.h> class Engine; class InputMgr: ...
[ "you@example.com" ]
you@example.com
847a0ee4dfcd571460424c7560e65577b1d711c5
a1d319f22634908f4fb31ac7c2a21f66225cc991
/Shared/cpp/range-v3/include/range/v3/algorithm/aux_/sort_n_with_buffer.hpp
7b23103df6cd45aa8820133f175a2b2e7daf40f4
[]
no_license
sdl-research/sdl-externals
2ee2ae43a5d641cc0e2c0a7c642f48d15f32fbeb
56459e0124eadf38ff551494b81544cb678a71d7
refs/heads/master
2021-01-17T15:06:59.783100
2016-07-10T06:40:45
2016-07-10T06:40:45
28,290,682
4
0
null
null
null
null
UTF-8
C++
false
false
2,731
hpp
/// \file // Range v3 library // // Copyright Eric Niebler 2014 // // Use, modification and distribution is subject to 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) // // Project home: https://github.com/ericniebler/range-v...
[ "graehl@gmail.com" ]
graehl@gmail.com
2e9489df3228f200942d713a73acce61dbb957c1
6c6d11d8ba7377ee90a57ce2b3e0405071d85c3d
/main.cpp
bfe4e6d55d4ee799df7e860cae9b1da33dae1cb5
[]
no_license
Palmik/MazeMan
42c97a4fadefb77f1f218cdf21b975fd14e32928
79e3929fd46621aee0289d075680d2a1a0aebab2
refs/heads/master
2016-09-10T10:07:51.123520
2011-01-08T22:23:22
2011-01-08T22:23:22
1,504,126
1
1
null
null
null
null
UTF-8
C++
false
false
1,928
cpp
//////////////////////////////////////////////////////////////////////////// // // // Copyright 2010 Petr Pilar // // // // This fil...
[ "Palmik@PalmikPC.(none)" ]
Palmik@PalmikPC.(none)
ddfe5f4a1f9b559d25d3f12ffc5d7c90b5ce10de
5a4f810d0c1c5be6148c4e47d0149b6f08897145
/main.cpp
0043613287407a6365f9b3b2932d116dea6831c6
[]
no_license
carogatica/Final-AyED
6d682c4795be9eb991d6c6bd772871872ae39b9b
75bfac89e7cf2e85439b55401fa0e1c1d37f4c88
refs/heads/master
2021-04-26T07:36:34.705937
2016-09-21T20:35:11
2016-09-21T20:35:11
68,853,455
0
0
null
null
null
null
UTF-8
C++
false
false
8,158
cpp
#include <iostream> #include <math.h> #include <iomanip> #include <time.h> #include <stdio.h> #include <stdlib.h> #include <fstream> #include <sstream> #include <string> using namespace std; #define N 100 #define ESQ 81 #define SEM 176 #include "Esquinas-Cola.cpp" #include...
[ "carogatica.59@gmail.com" ]
carogatica.59@gmail.com
6dd9cbca09b22bd23646dcdfdb786fc4a4790463
fed9f14edb87cd975ac946e01e063df492a9929a
/src/abc/054/B.cpp
c6779b672cacd21c0c207c2cb4cef913d755f35d
[]
no_license
n-inja/kyoupro
ba91dd582488b2a8c7222242801cf3115ed7fd10
44c5a888984764b98e105780ca57d522a47d832d
refs/heads/master
2021-01-01T06:52:59.655419
2020-10-17T13:28:35
2020-10-17T13:28:35
97,537,227
0
0
null
null
null
null
UTF-8
C++
false
false
753
cpp
#include <bits/stdc++.h> using namespace std; using ll = long long; using vi = vector<int>; using vll = vector<ll>; using vvi = vector<vector<int>>; using vvl = vector<vector<ll>>; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n, m; cin >> n >> m; vector<string> ori(n), sma(m); for (int...
[ "mccreepertakumi@gmail.com" ]
mccreepertakumi@gmail.com
5c9000c7481335d16da26c1d86969480e8225209
65b765d6394b7c81ce26e6a2f73bb0c4b161e22b
/src/privatesend-client.cpp
ddc3962bc4cab5a0b46b9ed59ad4a1d6f8f6e0f6
[ "MIT" ]
permissive
VNETCore/vnetcore
3fffd0fb1a92bcafc16029b300c4eb13e9d8c31c
6024e40c77bf087737297988022e1d39417d7dfb
refs/heads/master
2020-03-21T05:37:57.191282
2018-06-22T12:39:21
2018-06-22T12:39:21
138,170,099
2
1
null
null
null
null
UTF-8
C++
false
false
60,173
cpp
// Copyright (c) 2014-2017 The Dash Core developers // Copyright (c) 2018 The VNet Core developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "privatesend-client.h" #include "coincontrol.h" #include "consensus/...
[ "lion_912@mail.ru" ]
lion_912@mail.ru
883f6947e492ead9aaec5be32a9054871ae7310c
36191af4439bcc5a200b3188ff83552dd47a49c3
/dp/221_Maximal Square.cpp
8d1e01a36e70cf8c321388f0bee337dcdbfab0e0
[]
no_license
zjuAJW/leetcode
ff57fc1478ee5763fe28c7e5d53ef751979c7220
b4af87f67241c263ad0ab52ae2813f34c83a3144
refs/heads/master
2021-05-08T06:37:57.342386
2018-02-02T06:24:09
2018-02-02T06:24:09
106,639,610
0
0
null
null
null
null
UTF-8
C++
false
false
1,114
cpp
/* Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. For example, given the following matrix: 1 0 1 0 0 1 0 1 1 1 1 1 1 1 1 1 0 0 1 0 Return 4. 找一个矩阵中的最大正方形 递推式我是想出来了,确实是对的,但是我不知道为什么是这样,凭感觉的。。。 另外,如果不告诉我这道题是dp,我能想到用dp做? */ class Solution { public: ...
[ "wja_1993@163.com" ]
wja_1993@163.com
9d27d4c35bf76705ef68a2a4505eb9fa7faf8b81
7e8ac8cdda5705f3db41c218bb1ef323ababdd6d
/code/include/renderable.h
fa5bd6834c0d56e0689bff592f7e891e4f803175
[]
no_license
doctorwk007/OpenGL-and-GDAL-Tutorials
6e6d2a1b4427af275ba1f122c9de64689e6baba2
96a314a4a87504edd4558f8f304fb3fd327892fb
refs/heads/master
2020-12-25T23:47:07.917897
2015-07-22T04:51:03
2015-07-22T04:51:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
987
h
#include <renderer.h> //#define GLM_FORCE_RADIANS #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/type_ptr.hpp> #include <glm/gtx/rotate_vector.hpp> #ifndef _RENDERABLE_H_ #define _RENDERABLE_H_ // A pure virtual interface class to make rendering things easierish. class renderable { pu...
[ "chasec2331@gmail.com" ]
chasec2331@gmail.com
bc2395151bc90d976b2c435f0a8f848cf15fbe68
4b3f40290e0c90847e791a106b420afa92af9768
/include/cn24/util/StatAggregator.h
9cb5e86ad9b821e18f54e03086a7304346e4b6c0
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
cvjena/cn24-active
e6004271f0b4948f407d64afadbcaca23cb7cebc
5f40b63aebd14c0658136b402e3df010e405de05
refs/heads/master
2020-04-22T04:58:38.389624
2019-02-11T14:31:15
2019-02-11T14:31:15
170,142,558
3
1
null
null
null
null
UTF-8
C++
false
false
2,737
h
/* * This file is part of the CN24 semantic segmentation software, * copyright (C) 2015 Clemens-Alexander Brust (ikosa dot de at gmail dot com). * * For licensing information, see the LICENSE file included with this project. */ /** * @file StatAggregator.h * @brief Collects data from various sources and aggreg...
[ "clemens-alexander.brust@uni-jena.de" ]
clemens-alexander.brust@uni-jena.de
3fa2ee9c7093daadf05d276d6abb47fa2a2fef5e
2610e543db33721ece59741ec94c26e50158434b
/kernel/mem.h
6d727e71d1a33de5a788fbf0e416a13abb31967d
[ "LicenseRef-scancode-other-copyleft", "MIT", "ISC", "BSD-2-Clause" ]
permissive
zekungao/yosys
769d3ac5ef235140b5079b42930b7aa03692c96b
aa971366d681e54cc7cd76ddda5066b4908f51f2
refs/heads/master
2023-06-21T04:31:04.888387
2021-07-15T08:21:15
2021-07-15T08:21:15
366,325,247
1
0
ISC
2021-07-20T02:46:00
2021-05-11T09:22:22
C++
UTF-8
C++
false
false
2,184
h
/* * yosys -- Yosys Open SYnthesis Suite * * Copyright (C) 2020 Marcelina Kościelnicka <mwk@0x04.net> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in...
[ "mwk@0x04.net" ]
mwk@0x04.net
875082a94ccc0795a2ba87a45cce6d3fd4ddba34
1a434daaeb001c5d8c54264805c953a5f4c33196
/simulator.cc
76947b1a28d90d109f886890ff11182261a63d7e
[]
no_license
tweekes1/Simple-OS-Simulator
7a31b9adfb759ba6efe515c0280fe769625c76a8
970db747e95cb7ad090d68d548d0acc74ddb3c81
refs/heads/master
2020-09-04T00:09:19.378248
2019-11-04T23:11:39
2019-11-04T23:11:39
219,613,128
0
0
null
null
null
null
UTF-8
C++
false
false
3,039
cc
/** * Main execution code for simulator. First initial prompt assumes * perfect input (ONLY NUMBERS). * * This driver program takes the commands from the standard input and if * the first piece of the input matches a particular criteria that needs a * number i.e m <num> we take the second value place it into ...
[ "tmweekes1@gmail.com" ]
tmweekes1@gmail.com
1ce285d25dec4c55c0d4cc4eebb6e74a8c40fc47
d40efadec5724c236f1ec681ac811466fcf848d8
/branches/fs2_open_3_6_12/code/fs2netd/tcp_client.h
5f5a2404cf8026a7913b05860d6d164df83da65c
[]
no_license
svn2github/fs2open
0fcbe9345fb54d2abbe45e61ef44a41fa7e02e15
c6d35120e8372c2c74270c85a9e7d88709086278
refs/heads/master
2020-05-17T17:37:03.969697
2015-01-08T15:24:21
2015-01-08T15:24:21
14,258,345
0
0
null
null
null
null
UTF-8
C++
false
false
4,617
h
// Client.h // Client Functions for FS2Open PXO // Derek Meek // 2-14-2003 // ############## ATTENTION ########## // Licensed under the Academic Free License version 2.0 // View License at http://www.opensource.org/licenses/afl-2.0.php // ################################### #if !defined(__pxo_client_h_) #define __...
[ "Goober5000@387891d4-d844-0410-90c0-e4c51a9137d3" ]
Goober5000@387891d4-d844-0410-90c0-e4c51a9137d3
cd4c3945e5a2454d1ea456b6664df73044707d01
d9cf68794e4a6466ca0e9719e5684c8c969a76b0
/code/audio/FaustExports/BasicKarplusStrong.cpp
476978080bf4ac34b8afdbfbaa0602566fa9a987
[]
no_license
thecoreyford/Undergrad-Internship
d7e3e625f078d45c8f0fd38cf9115fe08de810fc
964af3d7fcb4e2d9f43ac03816177c719df5805d
refs/heads/master
2020-03-25T08:27:21.177361
2018-08-05T14:07:54
2018-08-05T14:07:54
143,613,254
1
0
null
null
null
null
UTF-8
C++
false
false
10,211
cpp
/* ------------------------------------------------------------ name: "BasicKarplusStrong" Code generated with Faust 2.5.34 (https://faust.grame.fr) Compilation options: cpp, -scal -ftz 0 ------------------------------------------------------------ */ #ifndef __BasicKarplusStrong_H__ #define __BasicKarplusStrong_H__...
[ "corey2.ford@live.uwe.ac.uk" ]
corey2.ford@live.uwe.ac.uk
446f030b624b2674943afa78762de9c06a1fe118
d85c52b1b28cf2aedaf925bdcf8876ead2d39d26
/qt/include/QtGui/5.9.0/QtGui/qpa/qplatformwindow.h
8af8791bb4a15be1f1023e1be3ae6c13dced52fc
[ "MIT" ]
permissive
nicholasammann/elba
65c053c7d79bd67d09eb5df2356183605c9b9a18
8d7a8ae7c8b55b87ee7dcd02aaea1b175e6dd8ce
refs/heads/stable
2021-04-27T03:53:35.753179
2019-08-08T01:56:53
2019-08-08T01:56:53
122,722,831
1
0
MIT
2019-08-08T01:56:54
2018-02-24T09:02:43
C++
UTF-8
C++
false
false
5,824
h
/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commerci...
[ "ammannnicholas@gmail.com" ]
ammannnicholas@gmail.com
1c8f37c3ac70d527d695f88dd7ec5f1251cadf23
2a2c69f870c28ace2faef775438415815bbc8d40
/softwareTimers.cpp
3696a329998a4aa6e8ab6a37264e5e2870d1793e
[]
no_license
tr0lldermort/Capsense-Dimmer
8ad8941563b942a63649eb2f4a9e4726e9c65160
762018f0495484cc08857d8c97061b6df9c67363
refs/heads/master
2020-04-29T13:01:57.321155
2019-03-24T18:27:37
2019-03-24T18:27:37
176,158,086
1
0
null
null
null
null
UTF-8
C++
false
false
831
cpp
/* * Define & control software timers * Author: dTb * Date: 13/03/19 */ #include "softwareTimers.h" softwareTimer::softwareTimer() { Serial.print("Constructor Time... "); Serial.println(millis()); return; } void softwareTimer::startTimer(uint8_t* timerId, unsigned int durationMillis) { static...
[ "dtbeckett@gmail.com" ]
dtbeckett@gmail.com
508fc4ac22408bd1a6eb868ab2ece9591ceff6c9
1856cc1e25af1920fef1989ee72857266581e84c
/Map.h
a14be10f9acf98e1e5afa16727272e21e888737c
[]
no_license
klawir/Snake
90a502cce6b478bc83209e1649905adef7c6a396
9476c9ccfdf5073fb6b91bfb0daa5ec39c05f2fd
refs/heads/master
2020-03-18T15:21:18.200143
2020-02-11T17:08:21
2020-02-11T17:08:21
134,902,414
0
0
null
null
null
null
UTF-8
C++
false
false
176
h
#pragma once #include "libraries.h" class Map { enum { HEIGHT = 15, WIDTH = 30 }; public: string map[HEIGHT][WIDTH]; Map(); int GetWidth()const; int GetHeight()const; };
[ "klawir1@o2.pl" ]
klawir1@o2.pl
d2dca6d6cdc1fb5cf8f6474ceb04e1eb2cc302cc
08ff3a43c02d8c05727e71aa5032f8a1efee7397
/main.cpp
cd855ca81716a56a054b78f7d7d948ce3ba538d1
[ "MIT" ]
permissive
ucarlos/Programming-Principles-Chapter11
b41cc5b4780c17c2d61c7115db1aa3bb7f314bdf
f64065a15277eace12307fc4043b85eacba6a577
refs/heads/master
2023-03-08T10:53:56.585560
2021-02-23T19:31:37
2021-02-23T19:31:37
291,396,086
0
0
null
null
null
null
UTF-8
C++
false
false
1,511
cpp
#include "../std_lib_facilities.h" // Test some stuff here: void unset_stuff(void){ cin.unsetf(ios::hex); cin.unsetf(ios::dec); cin.unsetf(ios::oct); } void precision(){ double value = 123456.0; cout << value << "\n" << fixed << value << "\n" << scientific << value << "\n"; } void show_diffe...
[ "ulycarlos@gmail.com" ]
ulycarlos@gmail.com
12e2b1a19c5361b4e2da5765f44a7c3c7aefe1bb
ab06066e4d6a8523c21db8bfa12ca4451acdda8d
/sketch-1.6.7/sketch-backend/src/SketchSolver/InputParser/NodesToSolver.h
d12d1995e194735174094519e73b884f75719df0
[]
no_license
Mestway/Queries
94fc8f950345a5ece8312434fa0b97e3321bebba
8e575c8d727123521a3dd70d8ec7b087dd67c4a1
refs/heads/master
2020-12-13T21:52:42.970285
2016-05-10T04:46:50
2016-05-10T04:46:50
44,147,059
0
0
null
null
null
null
UTF-8
C++
false
false
5,606
h
#ifndef __NODESTOSOLVER_H #define __NODESTOSOLVER_H #include "BooleanDAG.h" #include "BooleanToCNF.h" #include "Tvalue.h" #ifndef INTEGERBOUND # define INTEGERBOUND 8192*6 #endif // #define Dout( msg ) msg // Visitor for conversion of DAG to SAT. class NodesToSolver : public NodeVisitor { cons...
[ "clwang@raloi.dyn.cs.washington.edu" ]
clwang@raloi.dyn.cs.washington.edu
d1f7816e13dfe5f8c25c03c7c73511fec6b536c6
138a353006eb1376668037fcdfbafc05450aa413
/source/ogre/OgreNewt/boost/mpl/aux_/inserter_algorithm.hpp
526e3427d4aa7b7db8e761c03cf998ede85293c2
[]
no_license
sonicma7/choreopower
107ed0a5f2eb5fa9e47378702469b77554e44746
1480a8f9512531665695b46dcfdde3f689888053
refs/heads/master
2020-05-16T20:53:11.590126
2009-11-18T03:10:12
2009-11-18T03:10:12
32,246,184
0
0
null
null
null
null
UTF-8
C++
false
false
5,078
hpp
#ifndef BOOST_MPL_AUX_INSERTER_ALGORITHM_HPP_INCLUDED #define BOOST_MPL_AUX_INSERTER_ALGORITHM_HPP_INCLUDED // Copyright Aleksey Gurtovoy 2003-2004 // Copyright David Abrahams 2003-2004 // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // ...
[ "Sonicma7@0822fb10-d3c0-11de-a505-35228575a32e" ]
Sonicma7@0822fb10-d3c0-11de-a505-35228575a32e
2f85819e4c82368301b8466f36ff4e9513e44da0
a06a9ae73af6690fabb1f7ec99298018dd549bb7
/_Library/_Include/boost/units/physical_dimensions/area.hpp
01d9f8dfab849c0594e3925b9501ac9e578b695a
[]
no_license
longstl/mus12
f76de65cca55e675392eac162dcc961531980f9f
9e1be111f505ac23695f7675fb9cefbd6fa876e9
refs/heads/master
2021-05-18T08:20:40.821655
2020-03-29T17:38:13
2020-03-29T17:38:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,090
hpp
//////////////////////////////////////////////////////////////////////////////// // area.hpp // Boost.Units - A C++ library for zero-overhead dimensional analysis and // unit/quantity manipulation and conversion // // Copyright (C) 2003-2008 Matthias Christian Schabel // Copyright (C) 2008 Steven Watanabe // // Distri...
[ "adm.fael.hs@gmail.com" ]
adm.fael.hs@gmail.com
c46fc304c35867c7ca9e89c792fc8c901dae7df1
34c374b3117751b08adc9acf128be47a6f9ee679
/src/QueryServer.cpp
ada0402ba1caf4b2fab75f6da3d5f280f96a8078
[]
no_license
ymelon7/TextCorrection
88667484d495e7000e1bbb46ba60038f7c2c6046
65b025792fd88965411e72c730287397adf2c77e
refs/heads/master
2021-01-01T06:33:04.216631
2014-11-19T03:31:49
2014-11-19T03:31:49
25,899,949
3
1
null
null
null
null
UTF-8
C++
false
false
1,243
cpp
#include "QueryServer.h" #include <muduo/base/Logging.h> using namespace muduo; using namespace muduo::net; using namespace std::placeholders; QueryServer::QueryServer(const std::string &enDict, const std::string &chDict, const std::string &redisHost, ...
[ "ymelon7@gmail.com" ]
ymelon7@gmail.com
ab37e1de9cd7c44930ab9fa17b81e1b9d6741798
bbbd999dae0467430cc479ec3c58760ed430cae9
/node_modules/msnodesqlv8/src/OpenOperation.cpp
3a9862d233ed38115b22e54160029372a3f6c15e
[ "Apache-2.0" ]
permissive
Cathy517/reptiles_InsertSql
329b35d8cb9db507ab1e34730dee2d424f2923c9
3d949f35c3150fabcac32edd4f5ff343cbf895e2
refs/heads/master
2020-03-17T13:42:08.487391
2018-05-16T09:29:34
2018-05-16T09:29:34
133,641,540
0
0
null
null
null
null
UTF-8
C++
false
false
782
cpp
#include "stdafx.h" #include <OdbcConnection.h> #include <OpenOperation.h> namespace mssql { OpenOperation::OpenOperation(const shared_ptr<OdbcConnection> &connection, const wstring& connection_string, const int timeout, const Handle<Object> callback, const Handle<Object> backpointer) ...
[ "v-wacho@microsoft.com" ]
v-wacho@microsoft.com
309aa482137d9222075a7ef6810a140c973feda3
189f52bf5454e724d5acc97a2fa000ea54d0e102
/ras/fluidisedBed/1.81/T.air
88dcc0b474e7ba055a5a6a2dbab01681b29eba7d
[]
no_license
pyotr777/openfoam_samples
5399721dd2ef57545ffce68215d09c49ebfe749d
79c70ac5795decff086dd16637d2d063fde6ed0d
refs/heads/master
2021-01-12T16:52:18.126648
2016-11-05T08:30:29
2016-11-05T08:30:29
71,456,654
0
0
null
null
null
null
UTF-8
C++
false
false
45,412
air
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1606+ | ...
[ "peterbryz@yahoo.com" ]
peterbryz@yahoo.com
eebf816bc51bc5c3804346dcd6a12bfab49bf970
66f5b22473d1e3608ec923d2fa15506b412d9ede
/PhaethonAsm/AssemblerListNode.h
5df19e99d0eab2e34d4ff15d317349f801df0417
[]
no_license
BenConAu/VerilogDesign
26ddffe9ae3cffccf0d7ae8d85f8ec2d9222db86
9425a215b71541049e0510bc6e70d42c0d312eef
refs/heads/master
2021-05-02T13:14:17.855822
2017-12-11T20:16:07
2017-12-11T20:16:07
48,672,699
1
0
null
2017-12-03T08:10:11
2015-12-28T03:52:33
C
UTF-8
C++
false
false
1,028
h
#pragma once #include "AssemblerNode.h" #include <vector> template<typename DefType, typename ChildDefType> class AssemblerListNode : public AssemblerNode { public: static DefType* Construct(ChildDefType* pFirstItem) { DefType* pNewList = AssemblerNode::Construct<DefType>(); if (pFirstItem != ...
[ "bencon@gmail.com" ]
bencon@gmail.com
a6f9baf4f223b788b8804cf6e17931ede3f6412c
ecd7d2120a0e99c17defdb11ffabc8b237df576c
/zjb397.cpp
f8d8bc81c4363bae9e3c95565ed23ec7c1a9b706
[]
no_license
emanlaicepsa/codes
246735d9b04945ba3511f2bb2f20581abb405ddc
da2fdee786433708251cc8c4fc472e21354a6bc4
refs/heads/master
2021-05-20T08:51:38.902467
2020-04-01T14:58:51
2020-04-01T14:58:51
252,206,207
0
0
null
null
null
null
UTF-8
C++
false
false
1,908
cpp
#include <bits/stdc++.h> #define IOS ios::sync_with_stdio(false);cin.tie(0); #define rep(k,n) for(int k=0;k<(n);k++) #define rep1(k,n) for(int k=1;k<=(n);k++) #define fi first #define se second #define reset(n,k) memset((n),k,sizeof(n)) #define all(n) (n).begin(),(n).end() #define pb emplace_back using namespace std; ...
[ "kevin118033@gmail.com" ]
kevin118033@gmail.com
1466c262e1eb76165fd5e10e00c07ca4c34a1480
9791a7a24160c3acacb1d0bb1b5b4453361b2151
/WinDDK/7600.16385.1/src/print/XPSDrvSmpl/src/filters/color/wcsapiconv.h
2ee1fd1314be9e26ff7ac8fcf994880839edeb46
[]
no_license
kcrazy/winekit
fedc7bfa3fa702423f93447a8a19e2a4d358241e
7948f5f42a60225d9f94930be539f0a1d6202dbc
refs/heads/master
2021-01-10T08:18:48.598427
2017-02-17T05:34:15
2017-02-17T05:34:15
50,400,541
2
0
null
null
null
null
UTF-8
C++
false
false
9,061
h
/*++ Copyright (c) 2005 Microsoft Corporation All rights reserved. THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. File Name: wcsa...
[ "thekcrazy@gmail.com" ]
thekcrazy@gmail.com
b3032cbd06fed22c09d6ddf727a0a5dd28db54d2
b290ec58c6c1be6dbb24f398f838abb94560430a
/TutorialsVSB/Viewer/demo8.h
4ae11abe4dfd692085cb3a5d8340d59a83206891
[]
no_license
PavelDrabek/VSB_PG2
bc8c76bf3d274d7abe5a5386396a739caa57dfe1
31a7971f484c275cbe2af9cd712e5bbd01d40613
refs/heads/master
2021-01-13T06:55:51.257344
2017-04-30T20:48:56
2017-04-30T20:48:56
81,315,216
0
0
null
null
null
null
UTF-8
C++
false
false
503
h
#ifndef __DEMO8_H_ #define __DEMO8_H_ #include <sceneInitializer.h> class Demo8 : public SceneInitializer { private: void initShaders(); void initModels(); void initTextures(); void initMaterials(); void initVAOs(); void initInfoEntities(); void initSceneEntities(); GLuint createTexture(const char *resourceF...
[ "dra0042@PCFEIB213LE.msad.vsb.cz" ]
dra0042@PCFEIB213LE.msad.vsb.cz
803e4f45f9b96fcf88f6ee03ba9db51c9b82e3a4
28061e4783188a665bfa471f218a48d277f88c39
/Source/csav/csav.cpp
6543f51984d9b072fdb67426d7096b15444047c1
[ "MIT" ]
permissive
SnakeSkinPlayer/CyberpunkSaveEditor
79e74ea7e05cf3edf24031699d5c1a1dae0a362f
34ef7e80fe6ecc3c881c2c72770b05e69e2b13ac
refs/heads/main
2023-02-16T23:21:37.487454
2021-01-07T15:16:28
2021-01-07T15:16:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,555
cpp
#include "csav.hpp" #include <inttypes.h> #include "serializers.hpp" bool csav::load_stree(std::filesystem::path path) { uint32_t chunkdescs_start = 0; uint32_t nodedescs_start = 0; uint32_t magic = 0; uint32_t i = 0; std::vector<compressed_chunk_desc> chunk_descs; std::vector<char>& nodedata ...
[ "thispawn@gmail.com" ]
thispawn@gmail.com
7a14a28f9e76c4e9b82a1bdbbcdbfaa4c7d645e0
da30b1e74459f6365653759b3ec1eab39ea5d8a1
/Kattis/Thesaurus.cpp
1c0287798d8c49d7692f5133f1f3f54d6dc38f3f
[]
no_license
Xue-Chenyang/Competitive-Programming
9fe8776be9442a26a37c44e923f4d81750667bae
3c94666dbac51d3f5d1b7b32cb8b283ee950f7bf
refs/heads/master
2023-02-11T04:15:14.379426
2021-01-08T20:07:52
2021-01-08T20:07:52
319,704,322
0
0
null
null
null
null
UTF-8
C++
false
false
1,340
cpp
#include <bits/stdc++.h> #define MAXN 10005 using namespace std; typedef vector<vector<int>> vv; unordered_map<string, int> rmp; int sz = 0; int d[MAXN], sm[MAXN]; bool vis[MAXN]; vector<string> wd; vv adj; void bfs(int src) { queue<int> q; vector<int> comp; vis[src] = true; int mlen = (int)(wd[src].le...
[ "xue.chenyang@u.nus.edu" ]
xue.chenyang@u.nus.edu
3c237c1f84dd83981262a4ab3bc62d4cdfa7af52
cbbef8580d0571c84ab4ce5a559e0fb9d660f485
/data/submissions/601426.cpp
37df40a220363791fbfd95600a95e37c6cd257e3
[]
no_license
yuantailing/tsinsen
efb4c0297e096b8fa64a3390d6bde3cbaaddb217
a92759dc965ed58a33536e8c6faaa19b0931afbc
refs/heads/main
2023-07-08T11:44:32.294152
2021-08-09T19:34:07
2021-08-09T19:34:07
394,414,206
1
0
null
null
null
null
UTF-8
C++
false
false
332
cpp
int findKth(int *s, int n, int K) { int p=n/2; int l=0; int r=n-1; int t; int sp=s[p]; do { while (s[l]<sp||(s[l]==sp&&l<p)) l++; while (s[r]>sp||(s[r]==sp&&r>p)) r--; t=s[r]; s[r]=s[l]; s[l]=t; }while (l<r); if (p==K-1) return s[p]; else if (p<K-1) return findKth(s+p,n-p,K-p); else return findKth(...
[ "yuantailing@gmail.com" ]
yuantailing@gmail.com
a3e9a08fecc675b89b67831004814ac75abd1d7d
4f2174ffe63cbd3b4e8daca465e6c62c6a8fd9b8
/Problem-105/Problem-105.cpp
1a782ff352b4a432e05e4756313cee541244a741
[]
no_license
DHRUV-EDDI/DailyCodingProblem
5e680bcd4c00698e91d55955ecf087302214e3dc
82410cb245f4d4d5a50bc02a939f1286ca6ceb6e
refs/heads/master
2022-12-10T12:33:52.706714
2020-08-23T07:33:38
2020-08-23T07:33:38
260,503,585
0
0
null
null
null
null
UTF-8
C++
false
false
387
cpp
#include<bits/stdc++.h> using namespace std; using ll = long long; int main() { string s; getline(cin,s); ll i,strt = 0; for(i=0;i<s.length();i++) { if(s[i] == ' '){ reverse(s.begin()+strt,s.begin()+i); strt = i+1; } } reverse(s.begin()+strt,s.begin()...
[ "37928896+DHRUV-EDDI@users.noreply.github.com" ]
37928896+DHRUV-EDDI@users.noreply.github.com
351a38fc86a6422b1f6f078eb87c5f9b29589f3f
772405dd6b80ce5dd8a5bd80f0c8e2289d5c75b9
/TipPop/stdafx.cpp
7b6f281b42739d0cace5276515817baa02cd9a44
[]
no_license
osoft/tippop
92c1b9fcd0e5d0388a0625174c4a009bd44f3bf3
e04dd2910af15e0cb51a4834a98bc0a836191e72
refs/heads/master
2021-01-10T06:02:43.793701
2008-12-12T15:32:20
2008-12-12T15:32:20
45,257,933
0
0
null
null
null
null
GB18030
C++
false
false
264
cpp
// stdafx.cpp : 只包括标准包含文件的源文件 // TipPop.pch 将作为预编译头 // stdafx.obj 将包含预编译类型信息 #include "stdafx.h" // TODO: 在 STDAFX.H 中 // 引用任何所需的附加头文件,而不是在此文件中引用
[ "xiuyuanshang@b34755a6-b97f-11dd-a503-ed2d4bea8bb5" ]
xiuyuanshang@b34755a6-b97f-11dd-a503-ed2d4bea8bb5
43d7dff58c616755704b1dc0bd0da7a1a13455fe
4ef2b8547ef502a0fa8875ccaff5327fcb57632c
/src/perif.cpp
215d672ef47aa5b7b6022331c846ac79b346e859
[]
no_license
StarrLucky/TDA7439_CSR8645_NodeMCU_Preamplifier_Board
558977085fb681b80860ccec45aaee72f96d9cb5
b22df43ecb646c754e95c4bcd0e2a3202bec57f2
refs/heads/master
2022-12-25T12:15:57.258390
2020-09-29T15:03:41
2020-09-29T15:03:41
165,244,717
3
0
null
null
null
null
UTF-8
C++
false
false
1,549
cpp
#include <Arduino.h> #include <perif.h> PERIF::PERIF(){ EnableLed(1); } void PERIF::BlinkLed(int lednumber, int times, int delaybetween, int delayafter, int stateafter) // need interrupts for this ofc :/ { for (int i = 1; i<times; i++) { switch (lednumber) { case 1: if (digitalRead(LED_PI...
[ "fxndstrs@gmail.com" ]
fxndstrs@gmail.com
cb2e693e4731b1c5f9faa6c14ce8ee7161394950
02d37c19a3dfafdecc87f699c6488ec21f1aab66
/src/fmtcavs/Primaries.cpp
9ebc615da58ec5367e7d8033850e8cc511d61a71
[ "WTFPL" ]
permissive
shssoichiro/fmtconv
c47f873653be255f22c494410fe3bc31d2cdac70
9a08254ee1065faa874e8c7426edfd460d82db2f
refs/heads/master
2023-07-13T04:28:47.922363
2021-08-24T07:46:36
2021-08-24T07:46:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,595
cpp
/***************************************************************************** Primaries.cpp Author: Laurent de Soras, 2021 --- Legal stuff --- This program is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the t...
[ "fuck@fuck.fuck" ]
fuck@fuck.fuck
8dc4f9c1c70436e39c0fab6f9479b0726ff8a602
0d0575fe8d138cdec19252604e8b2882d5174cc2
/JFEngine/src/JF/Core/Log.cpp
c5f3a99293291402eef806cd3e1cbab28c17a329
[]
no_license
WangYiTao0/JF
1f132628251f3aad3f65ab13b5a353d7fa3e82f8
58680f4a29481f17e2ee2890a90fc95f8fb32b6b
refs/heads/master
2022-12-27T15:04:57.897410
2020-07-19T13:07:43
2020-07-19T13:07:50
272,173,790
0
0
null
null
null
null
UTF-8
C++
false
false
1,017
cpp
#include "jfpch.h" #include "JF/Core/Log.h" #include <spdlog/sinks/stdout_color_sinks.h> #include <spdlog/sinks/basic_file_sink.h> namespace JF { Ref<spdlog::logger> Log::s_CoreLogger; Ref<spdlog::logger> Log::s_ClientLogger; void Log::Init() { std::vector<spdlog::sink_ptr> logSinks; logSinks.emplace_back(C...
[ "as5818956@gmail.com" ]
as5818956@gmail.com
e4997f61e5cd62089fffe7213df25044b48a63af
9be143a314f58bad3ca607e8c322415e6d05a30f
/doc/PedestrianOpenCV/code/PedestrianOpenCV.cpp
b1078caf05f1d45d9c8d9ab948abeab160843441
[]
no_license
zibb03/Face-Emotion-Recognition
baec3b7d57636642641e52afd73f1ef5436a51d6
fd5b04fc34fc8cfa9415ae7ab5fa85316c3be6d4
refs/heads/main
2023-06-18T15:49:40.905788
2021-07-19T15:05:00
2021-07-19T15:05:00
355,542,615
0
0
null
null
null
null
UTF-8
C++
false
false
7,796
cpp
/////////////////////////////////////////////////////////////////////////// // OpenCV pedestrian detection examples. // Written by darkpgmr (http://darkpgmr.tistory.com), 2013 #include "stdafx.h" #include <iostream> #include <windows.h> #include "use_opencv.h" using namespace std; void detect_hog_inria(VideoCapture...
[ "64014435+zibb03@users.noreply.github.com" ]
64014435+zibb03@users.noreply.github.com
1ae7665633e0be6d09f1bbec37deeb7fc929e38d
f7a4e2b350b0ed7901682a13e42995773e41fb92
/ceng334/hw2/monitor.h
481e0087352293cc3f88adbdd7d1eb8b2e5ef3ed
[]
no_license
yalpul/ceng
b670547d07fa4869b6711c88d4907267ec5fc687
86269f8eda8c9f45b70ffb4b4684df7637045575
refs/heads/master
2021-07-09T07:25:53.855170
2020-07-25T19:47:26
2020-07-25T19:47:26
157,917,310
2
0
null
null
null
null
UTF-8
C++
false
false
2,437
h
#ifndef __MONITOR_H #define __MONITOR_H #include<pthread.h> //! A base class to help deriving monitor like classes class Monitor { pthread_mutex_t mut; // this will protect the monitor public: Monitor() { pthread_mutex_init(&mut, NULL); } class Condition { Monitor *owner; pt...
[ "yalpul@gmail.com" ]
yalpul@gmail.com
22a2c35a7365c5053d4e61db1637c6d7f85a7e01
bf0b1aaf30159bfb1a1795b0969c7f9ae66cbab4
/CXX/inline/A.h
50dbef8ba56fe7c7b995bc4ece9e4492b4f33e92
[]
no_license
raytroop/CodeSnippt
a078c21c8a460c9271c4daa809483675d8c56b97
f7a6a1d0bc07584322058c88a97a4e9c2eb2a87a
refs/heads/master
2018-09-19T13:49:36.517733
2018-09-03T13:15:33
2018-09-03T13:15:33
119,517,815
0
0
null
null
null
null
UTF-8
C++
false
false
99
h
// A.h class A { private: int a; int b; public: A(int aa, int bb):a(aa), b(bb){} int max(); };
[ "raytroop@gmail.com" ]
raytroop@gmail.com
9d550428aded44b66c688d244ce2230b15f6c5b9
1a70a4271632ba87d3d0bb5ca007ceaf25b694e5
/TestProjOpenGl/Display.cpp
da6e8997638229b379d2576c1573bc086f630e5b
[]
no_license
HagglundJonatan/TestProjOpenGL
17f6201a68c1bb6f2f123e23723babc94335790e
ddf9cc6565ae51e4fc43d63bc2fb39006d56c5f9
refs/heads/master
2020-03-21T23:41:09.617659
2018-06-29T22:23:31
2018-06-29T22:23:31
139,201,442
0
0
null
null
null
null
UTF-8
C++
false
false
1,183
cpp
#include "stdafx.h" #include "Display.h" #include "GL/glew.h" #include <iostream> Display::Display(int width, int height, const std::string& title) { SDL_Init(SDL_INIT_EVERYTHING); SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); SDL_GL...
[ "hagglund.jonatan@gmail.com" ]
hagglund.jonatan@gmail.com
9e56e407aabc9aef96ec5d440db5bbe91b9e91db
45a26f28a29ab6dd9d3bcf315117d814f50808b1
/src/AppleOnboardAudio/AppleOnboardAudio-200.2.26/AppleOnboardAudio/K2Platform.h
b24ed5640cb80b849e9a9cc505e4e1a7167dd582
[]
no_license
zeborrego/opensource.apple.com
0eb9161029ce8440dbdc4b5157b3927a6e381f8d
88cbaab4a42e97cbbfe6b660f2f0945536821be6
refs/heads/master
2021-07-06T17:16:28.241638
2017-10-02T11:58:56
2017-10-02T11:58:56
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
18,750
h
/* * K2Platform.h * * * Created by Aram Lindahl on Mon Mar 10 2003. * Copyright (c) 2003 AppleComputer. All rights reserved. * */ #include "PlatformInterface.h" #include "AudioHardwareCommon.h" #include "AppleOnboardAudioUserClient.h" #include <IOKit/i2c/PPCI2CInterface.h> #include <IOKit/IOInterruptEventSo...
[ "mattl@cnuk.org" ]
mattl@cnuk.org
8bdf5eb81f6f4c3fab82a007c7622d1aeecac1b0
9357bed2ab063ec0d62774a22112bec3dd655ffd
/source/StoreState.cpp
7db8192d2008152aa29876fbb7539c00e92299a5
[ "MIT" ]
permissive
taparkins/Galaxulon
25cfb8a277f61dc128f87959b386565a7c09707d
6613e92861799eb16db42cb9cdc8f88179841c19
refs/heads/master
2023-03-20T20:17:38.883400
2012-04-26T08:19:12
2012-04-26T08:19:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,657
cpp
// StoreState.cpp // // Authors: Daniel Setser, David Setser // Date created: April 13, 2012 // // ------- // Contains implementation for the StoreState class // #include "tonc_core.h" #include "tonc_input.h" #include "TextManager.h" #include "GameStateManager.h" #include "globals.h" #include "TitleSc...
[ "spencer.phippen@gmail.com" ]
spencer.phippen@gmail.com
b1d8ed993acc7810996443662149f8d1fc682381
4678d1bc1c5bd51d3467928913a92e5c434121c5
/binary/generic/cpp/bst.hpp
559b20ae03372fbe2a07b80dd9208c34b4b6c3e4
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
bmoscon/trees
a6fb37e0ba743ade9a3a97fa3d4c655ee5bc6304
c322792cd31e83417169af6537921ad85e0f3ab6
refs/heads/master
2020-04-06T06:40:21.577921
2013-08-03T20:01:31
2013-08-03T20:01:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,082
hpp
/* * bst.hpp * * Generic Binary Search Tree * * * * Copyright (C) 2013 Bryant Moscon - bmoscon@gmail.com * * 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, i...
[ "bmoscon@gmail.com" ]
bmoscon@gmail.com
f2cf1fef50a69cad2926588263260dbc90d123aa
5af3fdca9b7ee52f2efef90ccff93399d3980fa8
/3DTank/Tank.cpp
1f74823fa1b2e53c4e1e5b58ec6d2be89b787b78
[]
no_license
wwwwwwbin/3DGame_Tank
0c58bb74229ad02079cb3fd0db75bea1cbcd2aa8
8eb8119ef602e1e47348baf772f5ac6325703369
refs/heads/master
2020-05-23T16:42:28.170103
2013-09-13T08:44:05
2013-09-13T08:44:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,244
cpp
#include "StdAfx.h" #include "Tank.h" #include "EngineDefine.h" #include "GraphicsEngine.h" #include "3DModelFactory.h" #include "MessageMgr.h" #include "SceneMgr.h" CTank::CTank(float fX,float fY,float fZ) { m_fMoveSpeed = 3.f; m_pTopModel = new C3DModel(); m_pBottomModel = new C3DModel(); C3DModelFactory::GetIn...
[ "bin@cppapp.com" ]
bin@cppapp.com
4975128f7425aab7b9d269267eab4e69cf3a2537
a0370090e044e2817842b90a9559be41282072c5
/DevExpress VCL/ExpressBars 7/Demos/CBuilder/InPlaceEditorsDemo/InPlaceEditorsDemoImage.cpp
0566d8b822cdda9f9a4f6ea71cad943ea288c042
[]
no_license
bravesoftdz/MyVCL-7
600a1c1be2ea71b198859b39b6da53c6b65601b3
197c1e284f9ac0791c15376bcf12c243400e7bcd
refs/heads/master
2022-01-11T17:18:00.430191
2018-12-20T08:23:02
2018-12-20T08:23:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
862
cpp
//--------------------------------------------------------------------------- #include <vcl.h> #pragma hdrstop #include "InPlaceEditorsDemoImage.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma link "cxContainer" #pragma link "cxControls" #pragma lin...
[ "karaim@mail.ru" ]
karaim@mail.ru
caf3d5ab0d81e8c7754222dab75006c427627717
92efaedf9416a4196549ee06b4baaff6b3878d6c
/algorithm/stack/队列的最大值.hpp
7b93e9f28879b00d1e1907396fcf9bc844d0e4e7
[]
no_license
Heihuang/view
c21a2184dd4914d008b3a1454499c70e4435defe
ec84fa143c0c577cc8854e48822a122f19d47147
refs/heads/master
2023-01-06T22:48:44.113773
2020-11-11T13:48:50
2020-11-11T13:48:50
275,503,860
0
0
null
null
null
null
UTF-8
C++
false
false
1,110
hpp
/* 题目:请定义一个队列并实现函数 max_value 得到队列里的最大值,要求函数max_value、push_back 和 pop_front 的均摊时间复杂度都是O(1)。 若队列为空,pop_front 和 max_value 需要返回 -1 解法:从队列尾部插入元素时,我们可以提前取出队列中所有比这个元素小的元素,使得队列中只保留对结果有影响的数字。这样的方法等价于要求维持队列单 调递减,即要保证每个元素的前面都没有比它小的元素。 */ class MaxQueue { queue<int> q; deque<int> d; public: MaxQueue() { } ...
[ "zhoubing@zuoyebang.com" ]
zhoubing@zuoyebang.com
b0bceb825f6cc6bb535714338b4f787f388d949e
e62a2a06c2ca139347a15ddeed93a19bf3da747e
/src/main.cpp
8840fb4ceedfebbea92bab215edc1dccd69f844a
[]
no_license
SebastianLindmark/the-frame
ce06984be5bad0dc285ee8626d7a768c198164aa
4bebae6062dcd1f336ef8e3c8f125aed486ca8fb
refs/heads/master
2020-04-19T03:41:23.965782
2019-01-28T10:27:26
2019-01-28T10:27:26
167,941,417
0
0
null
null
null
null
UTF-8
C++
false
false
10,274
cpp
/* ESP8266/32 Audio Spectrum Analyser on an SSD1306/SH1106 Display * The MIT License (MIT) Copyright (c) 2017 by David Bird. * The formulation and display of an AUdio Spectrum using an ESp8266 or ESP32 and SSD1306 or SH1106 OLED Display using a Fast Fourier Transform * Permission is hereby granted, free of charge, ...
[ "sebli821@student.liu.se" ]
sebli821@student.liu.se
f3d1a70bdc59a5d19a8ca0ee70ed9702af2cab6b
52b760f122b90ce43fdfce1ed39e2edf4324619e
/src/drawing/Point3D.h
b283f45c3dd24326def618dcb26b4ef6ac242494
[]
no_license
danyalejandro/ogre3d-cloth-simulation
76afbc01dad81126fc8b4ae07ba12f733940b31c
fa390211bcd4a35ec5fda7335f779b10537b62d9
refs/heads/master
2021-08-19T04:33:58.625674
2017-11-24T19:52:12
2017-11-24T19:52:12
111,949,124
3
1
null
null
null
null
UTF-8
C++
false
false
249
h
#ifndef OGRECAM_POINT3D_H #define OGRECAM_POINT3D_H #include <Ogre.h> using namespace Ogre; class Point3D { public: Vector3 p; ManualObject* manual; SceneNode* node; Point3D(SceneManager* scnMgr, Vector3 p); }; #endif //OGRECAM_POINT3D_H
[ "dcabrera@uvic.ca" ]
dcabrera@uvic.ca
8aa93e84ec6d215d147454d921e453d8d07fe0c6
96ae90c1b6cb02f22362a38cbac9f469ff5bbc19
/std_thread.cpp
9b8a09ccc86a41491880f63b8e4c1a989e24b1d9
[]
no_license
zdevt/cpp_code
67bd106b2cec02376e75937fcd335fed30284a85
979cd226e3f45ebfe39cb018df90da8ca7262e60
refs/heads/master
2021-06-04T00:14:14.731552
2020-12-26T06:58:54
2020-12-26T06:58:54
131,384,756
0
0
null
null
null
null
UTF-8
C++
false
false
993
cpp
/* * ===================================================================================== * * Filename: Thread2.cpp * * Description: * * Version: 1.0 * Created: 2016年09月22日 22时25分28秒 * Last Modified: 2017-12-28 14:46:26 * Revision: none * Compiler: gcc * * ...
[ "zhangtao.hawk@qq.com" ]
zhangtao.hawk@qq.com
786dfe0d64f3ca4c7cb8e4733cff2d031e75410e
ce3ee09f7b7aec107d8406e6ff6a22994751ca99
/assignments/P03-Queues/11988/11988.cpp
d69069af3360226452bfbe66378d2bb0a199e296
[]
no_license
paigechampagne/4883-Programming_Techniques-Champagne
160d9798eaa7685e6f47de873409acb78f0d7c42
4ba1bf8fbf6dd9d7e555b7ff999e07ef68a2cd0f
refs/heads/master
2023-01-28T04:41:14.503199
2020-12-08T09:12:58
2020-12-08T09:12:58
290,540,371
0
0
null
null
null
null
UTF-8
C++
false
false
2,051
cpp
/////////////////////////////////////////////////////////////////////////////// // // Author: Paige Champagne // Email: paigechamp@gmail.com // Label: 11988 - broken keyboard // Course: CMPS 4883 // Semester: Fall 2020 // // Description: // solves 11988 (see attac...
[ "paigechamp@gmail.com" ]
paigechamp@gmail.com
e12553d614cd1725b1258f650538e577750bd8ed
1d91a77cf3f0f1c1c9e886a4a1f1f51026e11613
/examples/Simple_one_by_one_led/Simple_one_by_one_led.ino
a1e43d70093e520f449ce58f1ad86ede941ef8fa
[ "MIT" ]
permissive
otuk/DMD795x2
1d560e3c168c89dcbbb7f01af83dd48ef27dd49c
37c50000660653acac8be96ca6b203447b743114
refs/heads/master
2021-08-28T11:38:13.641603
2021-08-25T10:50:10
2021-08-25T10:50:10
45,749,678
1
0
null
null
null
null
UTF-8
C++
false
false
988
ino
#include <DMD795x2.h> void update_the_game(){ static int i, j; unsigned short one_led = DMD_getpins(i,j); DMD_reset_display_data(); DMD_add_display_data(&one_led, 1); j++; if (j==8){ i++; j=0; if(i==8) i=0; } } void setup() { // put your setup code here, to run once: /* ...
[ "tolga.temel@gmail.com" ]
tolga.temel@gmail.com
b16e8fe331b653a9d9dfb5363113c95b245c55ec
90b0a4dac42a961523abb106100805b133e1476d
/Lecture/14 Big-O/Sample Code/For Loop/main.cpp
80e44f92595adf475e037013b3c745a9fc4b3b2a
[]
no_license
sebCarabali/Problem-Solving-and-Programming-II
09e3ee11b471814d8017e96e6334a8ffa60b9b52
482f67412576c52eae274c57d9028db1e5e92c0f
refs/heads/master
2021-01-21T20:24:08.676273
2013-07-30T15:08:05
2013-07-30T15:08:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
815
cpp
#include <iostream> #include <string> using namespace std; // O(1) void OutputData( const string& data ) { cout << data << endl; } // O(n) int ForLoop( int begin, int end ) { int sum = 0; for ( int i = begin; i < end; i++ ) { sum += i; cout << sum << endl; } return sum; } // O(n) int ForLoops( int begin, i...
[ "racheljmorris@gmail.com" ]
racheljmorris@gmail.com
e145937428b50d484c4c44ac868c9a0dded1c053
40e1cee550b1c615dac3adf8807ffd39789d601b
/22/main.cpp
948d0c5a997a4e194c2f4d28d3ac554b8b576fbd
[]
no_license
mkhrystunov/euler
c8e744140cb6245860c447cd7729cf8ad490a039
52c71ae72ef5889e5f38f1d479cc1cc9db35c589
refs/heads/master
2016-09-05T13:41:27.670971
2014-05-23T10:02:29
2014-05-23T10:02:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,115
cpp
#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <errno.h> #include <sys/types.h> #include <unistd.h> #include <string> #define BUF_SIZE 8192 using namespace std; int main(int argc, char* argv[]) { int input_fd; // input file descriptor ssize_t ret_in; // number of bytes returned by read() ...
[ "m.khrystunov@partner.samsung.com" ]
m.khrystunov@partner.samsung.com
891e751ec5b2c7c91ab3e702010315ab3c3d455b
3da0b0276bc8c3d7d1bcdbabfb0e763a38d3a24c
/zju.finished/2970.cpp
3d2b36a17ea4ab8ce417331803068037bb3f6c98
[]
no_license
usherfu/zoj
4af6de9798bcb0ffa9dbb7f773b903f630e06617
8bb41d209b54292d6f596c5be55babd781610a52
refs/heads/master
2021-05-28T11:21:55.965737
2009-12-15T07:58:33
2009-12-15T07:58:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
809
cpp
#include<iostream> #include<cstring> using namespace std; char buf[20]; int Minest(){ int n; int a, b; scanf("%d ", &n); for (int i=0; i<n; i++){ scanf("%d ", &b); if ( i==0){ a = b; } else { a = min(a, b); } } return a; } int Maxest(){ ...
[ "zhouweikuan@gmail.com" ]
zhouweikuan@gmail.com
207ad154f485fb61f4ac2512a6b5babd1dd49afe
d61d05748a59a1a73bbf3c39dd2c1a52d649d6e3
/chromium/media/learning/common/learning_task.cc
07cc4079005e9514e2625a90325b791a26331720
[ "BSD-3-Clause" ]
permissive
Csineneo/Vivaldi
4eaad20fc0ff306ca60b400cd5fad930a9082087
d92465f71fb8e4345e27bd889532339204b26f1e
refs/heads/master
2022-11-23T17:11:50.714160
2019-05-25T11:45:11
2019-05-25T11:45:11
144,489,531
5
4
BSD-3-Clause
2022-11-04T05:55:33
2018-08-12T18:04:37
null
UTF-8
C++
false
false
769
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 "media/learning/common/learning_task.h" namespace media { namespace learning { LearningTask::LearningTask() = default; LearningTask::LearningT...
[ "csineneo@gmail.com" ]
csineneo@gmail.com
d6e665647b8ea7facf86b9c437e437d1c4513022
c7161d63b6893d052268cea9a05de5d910c0f322
/mapmodel/way.cpp
45b5b3079cbe50c5c8df46fe433ad48431bffb69
[]
no_license
ryfx/opencitymap
2d124b6f1b81468ee7556c5428bb27f7283c0bbc
28294c01d9082f3d261a241d0bdff763c67607b7
refs/heads/master
2021-01-18T19:28:40.849463
2008-06-20T22:38:55
2008-06-20T22:38:55
41,011,200
0
0
null
null
null
null
UTF-8
C++
false
false
802
cpp
#include "way.h" // Constructors/Destructors // Way::Way() { //qDebug() <<"Created new Way"; } Way::~Way() { } Way::Way( QList<Node*> nodes) { //qDebug() <<"Created new Way with "<< nodes.size()<< " Nodes"; m_nodes = nodes; } // Private attribute accessor methods // const QString Way::getTagValue( QString ...
[ "mickey.leroy@7c92a9e6-f44e-0410-9ddb-d5c751b320e7" ]
mickey.leroy@7c92a9e6-f44e-0410-9ddb-d5c751b320e7
57355d612ac33969851f3b12407e5712601df7d2
256a439099395ef4739248a53943ed3f3c9a8c5b
/lib/TSThread.h
b4e49d4bbc0abbc380ee9018f63a1755d63b6559
[ "MIT" ]
permissive
timkerchmar/tsintegration
3ee3629e0e65e2c8920c73b31cd8a0f7454ca868
cbe207942facff17e5cdcef7533d703bcefc9897
refs/heads/master
2020-03-13T15:54:56.610339
2018-05-06T15:48:22
2018-05-06T15:48:22
131,186,844
7
0
null
null
null
null
UTF-8
C++
false
false
717
h
#ifndef TSTHREAD_H #define TSTHREAD_H #include <string> #include <sys/types.h> #ifdef WIN32 #include <Windows.h> #else #include <pthread.h> #endif class TSMutex { public: TSMutex(); #ifdef WIN32 CRITICAL_SECTION handle; #else pthread_mutex_t handle; #endif void lock(); void unlock(); }; class T...
[ "ptymn1447@hotmail.com" ]
ptymn1447@hotmail.com
68c72d2450b88a1d951f6e4f0abdaf2edce49a3d
5ce02d5440c35192aa81498b5bcbce1cd97549b2
/LIBRARY777/borrowbookwin.h
36ceb69ed4e584ebe6f0f3c0c606abbfee9d2710
[]
no_license
tyj1997/Library201706
96b79c4fdb0bf1065eb6282dfffde7252be3c654
12d8888ff742b7d6fd60373d0e53bab120aab6dd
refs/heads/master
2021-07-02T02:36:57.771052
2017-09-22T03:00:31
2017-09-22T03:00:31
104,423,860
0
0
null
null
null
null
UTF-8
C++
false
false
365
h
#ifndef BORROWBOOK_H #define BORROWBOOK_H #include <QDialog> #include "data.h" namespace Ui { class BorrowBookWin; } class BorrowBookWin : public QDialog { Q_OBJECT public: explicit BorrowBookWin(QWidget *parent = 0); ~BorrowBookWin(); private slots: void on_pushButton_clicked(); private: Ui::B...
[ "305099672@qq.com" ]
305099672@qq.com
a008e400a348dacc58d4b1fe1447f95cb2a1c1e0
33fd5786ddde55a705d74ce2ce909017e2535065
/build/iOS/Release/src/iphod.Versical.cpp
d958e99e6a88410fe5b92c1a9f2a8a52882f33a2
[]
no_license
frpaulas/iphodfuse
04cee30add8b50ea134eb5a83e355dce886a5d5a
e8886638c4466b3b0c6299da24156d4ee81c9112
refs/heads/master
2021-01-23T00:48:31.195577
2017-06-01T12:33:13
2017-06-01T12:33:13
92,842,106
3
3
null
2017-05-30T17:43:28
2017-05-30T14:33:26
C++
UTF-8
C++
false
false
15,452
cpp
// This file was generated based on '.uno/ux11/iphod.Versical.g.uno'. // WARNING: Changes might be lost if you edit this file directly. #include <_root.iphod_accessor_-39b8af92.h> #include <_root.iphod_accessor_-678428fe.h> #include <_root.iphod_FuseContr-3d8d18a9.h> #include <_root.iphod_iphodVers-3b51c231.h> #includ...
[ "frpaulas@gmail.com" ]
frpaulas@gmail.com
1e18901b55bb6d0f06c3474cb3fce627ab828a1d
3e79056f6c3ab04fd84806737c324a16562870c2
/baekjoon/15589.cpp
8866f2d98490f14f5e2c3930e725ba09ff3e55a5
[]
no_license
seunghyukcho/algorithm-problems-solved
ce52f11a12b532c51547fd215e53e1f60915f52a
04e78a4b41a8b13c1d00e231dd79114fb8360c9a
refs/heads/master
2023-07-14T11:37:33.763943
2021-08-20T15:09:50
2021-08-20T15:09:50
125,701,552
6
0
null
null
null
null
UTF-8
C++
false
false
1,540
cpp
#include<iostream> #include<algorithm> using namespace std; int top, ans, N, mn = 1e9; struct LG { int start, end, cover, idx; } cow[100002]; LG st[100002]; bool comp(LG l1, LG l2) { return l1.end < l2.end; } int main(){ ios::sync_with_stdio(false); cin >> N; for(int i = 0; i < N; i++) { ...
[ "choseunghyek@gmail.com" ]
choseunghyek@gmail.com
a9bdf2977ab468c2a867cc6c09b5d82b383cace9
67dfb56a4d1ba36462d52bdfdc5492a8ac586b94
/api-cpp/src/TimeUnit.cpp
29731b57394bda27d1826bc93eb9df13fda0a8f7
[ "LicenseRef-scancode-warranty-disclaimer", "Apache-2.0" ]
permissive
fisherab/r-gma
7c0f5657fcec88c7713d7e66e5610982b5d2d7d3
7ba2ad42c3332b39ab07eb9a9bb25ef1b4afe3ad
refs/heads/master
2016-09-03T00:34:34.017547
2011-08-27T02:15:26
2011-08-27T02:15:26
32,185,595
0
0
null
null
null
null
UTF-8
C++
false
false
1,160
cpp
/* * Copyright (c) 2004 on behalf of the EU EGEE Project: * The European Organization for Nuclear Research (CERN), * Istituto Nazionale di Fisica Nucleare (INFN), Italy * Datamat Spa, Italy * Centre National de la Recherche Scientifique (CNRS), France * CS Systeme d'Information (CSSI), France * Royal Inst...
[ "dr.s.m.fisher@gmail.com@9fd00241-c8d1-a2cc-6176-14b799de2eb9" ]
dr.s.m.fisher@gmail.com@9fd00241-c8d1-a2cc-6176-14b799de2eb9
5010353261cee3887e3256e1a4643293bac1fdbf
4d418c7e7d3b64a71f1dad31f568197921d75526
/Src/qtwebengine/src/core/renderer/web_channel_ipc_transport.cpp
e508e85f1053164babea422b1ec75a20df9aafa5
[]
no_license
dalamber/qt-5.7.0-patch
5e9538f0c24aed4717e8a4a7644922198c553caf
9099b1e9f973d0f62b31175cb91c9938599cedb1
refs/heads/master
2021-01-20T19:39:48.758569
2016-08-03T10:19:25
2016-08-03T10:19:25
64,714,310
0
0
null
null
null
null
UTF-8
C++
false
false
9,998
cpp
/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtWebEngine module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid co...
[ "saa@tomsksoft.com" ]
saa@tomsksoft.com
a41ff8d4b8f253da1fc6ce6c385e6f7c496ffea3
d27843dea590175180bd89a5bdc1fcdf01b1a588
/Arduino Libraries/RFID/examples/pruebaLibreriaRFID/pruebaLibreriaRFID.ino
f277eb6243211f5bb6f89e42c9e2194837872465
[]
no_license
osoyoo/Osoyoo-development-kits
f746534d61c95da4038d969d73ed723d1317fe33
421dc2aa738a58cc72925fd2f93e70b3db95d3ee
refs/heads/master
2021-12-03T20:55:36.622057
2021-11-30T01:37:58
2021-11-30T01:37:58
94,987,331
20
21
null
2021-07-24T21:31:57
2017-06-21T09:30:47
C
UTF-8
C++
false
false
839
ino
//整理者:极客工坊bg1lsy (lsy@sogou.com) //整理时间:2013.05.25 #include <SPI.h> #include <RFID.h> RFID rfid(10,5); //D10--读卡器MOSI引脚、D5--读卡器RST引脚 void setup() { Serial.begin(9600); SPI.begin(); rfid.init(); } void loop() { //找卡 if (rfid.isCard()) { Serial.println("Find the card!"); //读取卡序列号 if (rfid.readCa...
[ "yujian_ca@hotmail.com" ]
yujian_ca@hotmail.com
71700c9f4e8b522a91fb2099bb163126d5dd54fc
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/net/config/netcfg/engine/ienum.cpp
664d7e15241c9e2e8eea6dd54d0622009c392b8a
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,401
cpp
//+--------------------------------------------------------------------------- // // Microsoft Windows // Copyright (C) Microsoft Corporation, 1999. // // File: I E N U M . C P P // // Contents: Implements the IEnumNetCfgBindingInterface, // IEnumNetCfgBindingPath, and IEnumNetCfgComponent COM ...
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
ccf1f9187200145dd4942809dc376d671923a2e6
d4240a19b3a97e8c4a39a7925e8046ead6642d19
/2016/Enceladus/Temp/StagingArea/Data/il2cppOutput/TextMeshPro_TMPro_TMP_Dropdown_DropdownItem1251916390.h
aef7285854bb034ab6d2d3cd0a0d9dea8103d86a
[]
no_license
mgoadric/csci370
05561a24a8a6c3ace4d9ab673b20c03fc40686e9
9ffd5d0e373c8a415cd23799fc29a6f6d83c08af
refs/heads/master
2023-03-17T18:51:45.095212
2023-03-13T19:45:59
2023-03-13T19:45:59
81,270,581
2
3
null
null
null
null
UTF-8
C++
false
false
2,995
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // TMPro.TMP_Text struct TMP_Text_t1920000777; // UnityEngine.UI.Image struct Image_t2042527209; // UnityEngine.RectTransform struct RectTransform_t3349966182; // UnityEngine.UI.Toggl...
[ "goadrich@hendrix.edu" ]
goadrich@hendrix.edu
9d427b2baba152b06c1a82929f94303edff3ae64
dc928692a22d51d41e92dbf8514e34561ea609ea
/src/ThreadPoolManager.cpp
38c7a358c88d03b90c58565cdd72f89aab900cef
[]
no_license
tarunk/ThreadPool
41b9bc29bc8c808ba9002048412dd06b73983789
abd8cea2eaffb4232d3e07b1cee7bc3de22e0f31
refs/heads/master
2020-08-29T19:06:09.581943
2019-12-08T07:48:16
2019-12-08T07:48:16
218,141,157
0
0
null
null
null
null
UTF-8
C++
false
false
1,696
cpp
#include <iostream> #include "ThreadPool.h" using namespace std; void testFunIntArg(int id, int n) { std::cout << "hello from " << n << ", function\n"; } void testFunStringArg(int id, const std::string & s) { std::cout << __FUNCTION__ << ": " << s << '\n'; } typedef struct TestObject { Tes...
[ "bing.tome@yahoo.co.in" ]
bing.tome@yahoo.co.in
241c347a1da91d55e6ac3447943ce35b7df9f39c
63786bfaf8280645147f720a9145da391b9cd3bb
/Sample Codes/Visual C++ 6.0/GetATR/GetATRDlg.cpp
c1e71e9917fc23657effe039f467e3b9f2ce886a
[]
no_license
liucoldstar/ACR122-SDK
2f54a106142ff9c0295a6ebe78f4b3bf69cc1484
e50bafa64accbf86469330c89d7b90e2fc4772f5
refs/heads/master
2021-12-14T22:11:30.326705
2017-06-15T07:11:37
2017-06-15T07:11:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,641
cpp
// Copyright(C): Advanced Card Systems Ltd // // // Description: This sample program outlines on how // to get the ATR of a card // // Author: Wazer Emmanuel R. Benal // // Date: November 11, 2009 // // //=====================================================================...
[ "chanuka.weer@gmail.com" ]
chanuka.weer@gmail.com
96748e5e2caf657068cc4af802153636bab948c4
d2249116413e870d8bf6cd133ae135bc52021208
/Advanced MFC Programming/Chap6/6.8-1/Db/DBDlg.cpp
cda20460d40f071fa9b9017a582c10b6e912ece4
[]
no_license
Unknow-man/mfc-4
ecbdd79cc1836767ab4b4ca72734bc4fe9f5a0b5
b58abf9eb4c6d90ef01b9f1203b174471293dfba
refs/heads/master
2023-02-17T18:22:09.276673
2021-01-20T07:46:14
2021-01-20T07:46:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,113
cpp
#include "stdafx.h" #include "DB.h" #include "DBDlg.h" #include <afxpriv.h> #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif class CAboutDlg : public CDialog { public: CAboutDlg(); //{{AFX_DATA(CAboutDlg) enum { IDD = IDD_ABOUTBOX }; //}}AFX_DATA /...
[ "chenchao0632@163.com" ]
chenchao0632@163.com
ab8249b6453500cd841487cfe799e767a568adc7
7910ee578a82b51fa72b1b9b98c7fb0262cee795
/TRekt_3D/source/SplashScreen.h
a89696a3ad048c4becd33127bbf3c3f0b4d7bfe0
[]
no_license
ihaveamac/TRekt_3D
7c6400715c8e04090b1e947a5237d3f4c4dd7bf3
5eedbd815616ffb14d9d7fbd8591fade7409b50a
refs/heads/master
2021-01-20T10:51:23.916921
2017-08-27T10:49:04
2017-08-27T10:49:04
101,653,887
2
0
null
2017-08-28T14:51:32
2017-08-28T14:51:32
null
ISO-8859-2
C++
false
false
1,449
h
/* This file is part of T-Rekt 3D! Copyright (C) 2017 Manuel Rodríguez Matesanz > 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 version 3 of the License, or > (at your option...
[ "manurocker95@gmail.com" ]
manurocker95@gmail.com
c060c56091847260ce8a0d2c105b0f4d5ba22af2
fed3ea2d8f4289feb97f9b1abc6233f29257ec02
/C-example/DoubleList/MyList.cpp
988640428b17752684b21327c08b2702b64e6143
[]
no_license
Aves-LH/A-rookie
88b3f0de39ff466b88dc65d21cfaba40aca73c4f
86613fa3d238f2224fa19fcc877dc72cb982d5e4
refs/heads/master
2023-02-19T02:20:30.516144
2023-02-10T02:52:12
2023-02-10T02:52:12
225,284,693
0
0
null
null
null
null
UTF-8
C++
false
false
2,798
cpp
#include "pch.h" #include "MyList.h" NODE* CreateNode() { NODE *pNew = new NODE; if (NULL != pNew) { cout << "Input : "; cin >> pNew->m_nNum; pNew->pPrev = NULL; pNew->pNext = NULL; } return pNew; } NODE* Create() { return CreateNode(); } int Add(NODE *pHead) { if (NULL == p...
[ "1063767838@qq.com" ]
1063767838@qq.com
8daf5c9722279983c7cb46806a71456206a81e36
dee9e7a5b9b0ecf3b9a8ddf7f30f972045217a45
/gdem_client/pointmark.h
ac81112c25ea7b42c9ca6961891817c43168ba43
[]
no_license
shengzhe8688/QGlobe
3e2d5c86ad6a2bff89f3773385fa8fd84d4ddf57
8e13b894fc1d89a18869c979740fefe47a161eeb
refs/heads/master
2022-11-12T12:19:06.046336
2020-07-05T14:04:59
2020-07-05T14:04:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
407
h
#ifndef POINTMARK_H #define POINTMARK_H #include "gdemclientbase.h" // 2009.11.27 Modified by ChaKI class RenderFrame; class PointMark { public: PointMark(RenderFrame *render); ~PointMark(); void SetPosition(CursorState *event); void PaintEvent(QPainter *painter); protected: RenderFrame *m...
[ "wugis3@yahoo.com" ]
wugis3@yahoo.com
515c129970b97e6e52d97a547b355e7d5c4b2ce3
081f0d0253c2f9ba1a9c8c5910d132cf10cf62c9
/PaSpyRouter2016MFC/MemoMAC.cpp
22f5debb20af82b38e65095fd03299b97b1d4892
[]
no_license
asm32cn/PaSpyRouter2016
9b2f1ef9b400f97596a45fc761c6fd848fbe6542
8bb25da52f96adab671e1612e6f04f59f9548149
refs/heads/master
2020-03-16T03:50:10.474539
2018-05-07T18:02:01
2018-05-07T18:02:01
132,497,209
0
0
null
null
null
null
UTF-8
C++
false
false
697
cpp
// MemoMAC.cpp: implementation of the CMemoMAC class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "PaSpyRouter2016MFC.h" #include "MemoMAC.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif //////////////////////...
[ "asm32@qq.com" ]
asm32@qq.com
5cd08916fe4303b107836e642e3dedf5aa4c84d5
63a7c91b15122745c36aa1c8955e25beee2a7cd0
/shibarides/auth/ShibaRidesAuthInterfaces.h
7d3ea2330b345833e03cd684506a9522593c1e8f
[]
no_license
titosilva/shibarides
7a20f074be9544559304fc7981343d9b009c86c9
2d0163ba1fc51b0879b1561697f903fceb9eea78
refs/heads/master
2020-07-22T21:03:58.563066
2019-11-14T21:01:58
2019-11-14T21:01:58
207,326,198
1
0
null
2019-09-26T23:22:34
2019-09-09T14:15:53
C++
UTF-8
C++
false
false
988
h
#ifndef SHIBA_AUTH_INTERFACES_H__ #define SHIBA_AUTH_INTERFACES_H__ #include <stdexcept> #include "../domains/ShibaRidesDomains.hpp" using namespace std; using namespace shibarides; // Interfaces do subsistema de autenticaçao // Interfaces // Interface da camada de aplicação class IAuthView; // Interface da camada d...
[ "jt.mat@hotmail.com" ]
jt.mat@hotmail.com
42ea8490b71d9b99b6b969b4d2a88f89035d7123
474ca3fbc2b3513d92ed9531a9a99a2248ec7f63
/ThirdParty/boost_1_63_0/libs/hana/test/map/cnstr.copy.cpp
e59f27437907fc32c2c79ef67faa6e5f458f19f2
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
LazyPlanet/MX-Architecture
17b7b2e6c730409b22b7f38633e7b1f16359d250
732a867a5db3ba0c716752bffaeb675ebdc13a60
refs/heads/master
2020-12-30T15:41:18.664826
2018-03-02T00:59:12
2018-03-02T00:59:12
91,156,170
4
0
null
2018-02-04T03:29:46
2017-05-13T07:05:52
C++
UTF-8
C++
false
false
2,172
cpp
// Copyright Louis Dionne 2013-2016 // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) #include <boost/hana/assert.hpp> #include <boost/hana/equal.hpp> #include <boost/hana/integral_constant.hpp> #include <boost/hana/ma...
[ "1211618464@qq.com" ]
1211618464@qq.com
73533d950679d0b4233a5a7ef972e9a607c4c312
32b0e91dfe2249503856f45b0e05d94a7cafbe0b
/GRT/DataStructures/RegressionSample.h
638674a03c78a1153fbb5a684572f5a9ec07a548
[]
no_license
eboix/Myo-Gesture
7729f93a636fb959e646cf4edaef7607a2e813dd
3f54efa3aeb893823dfdd876284e1abbc048257c
refs/heads/master
2021-01-10T12:30:21.718019
2018-06-10T19:09:06
2018-06-10T19:09:06
46,208,290
2
1
null
null
null
null
UTF-8
C++
false
false
2,647
h
/** @file @author Nicholas Gillian <ngillian@media.mit.edu> @version 1.0 @brief This class stores the input vector and target vector for a single labelled regression instance. */ /** GRT MIT License Copyright (c) <2012> <Nicholas Gillian, Media Lab, MIT> Permission is hereby granted, free of charge, to an...
[ "eboix@users.noreply.github.com" ]
eboix@users.noreply.github.com