blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
0eef0901fb7b930d1e4272693d0470cc02b39450
41575c498b7197e97b12a8ce2a880047df363cc3
/src/local/vid/opengl/Texture.hpp
57e13a9b35850061f5d253fd7dc0cd3406330d55
[]
no_license
gongfuPanada/page
f00a6f9015b4aad79398f0df041613ab28be405b
fa2ccdef4b33480c2ac5f872d717323f45618a34
refs/heads/master
2021-01-15T22:09:34.836791
2013-03-23T18:54:13
2013-03-23T18:54:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,479
hpp
/** * @section license * * Copyright (c) 2006-2013 David Osborn * * Permission is granted to use and redistribute this software in source and * binary form, with or without modification, subject to the following * conditions: * * 1. Redistributions in source form must retain the above copyright notice, * t...
[ "davidcosborn@gmail.com" ]
davidcosborn@gmail.com
8355c4790ef695e43df6b30a32274a958dfe72f1
f9901dc39ae0fcde444482cfd87b64a178d7cfeb
/LeetCode/cpp/17.cpp
ea8f14cee51d418a77344b20ae8e9c1ed8952167
[ "MIT" ]
permissive
NoraXie/LeetCode_Archiver
945509abd319d9c8d25abb3ba84f2f1fb536439a
de23e16ead29336b5ee7aa1898a392a5d6463d27
refs/heads/master
2020-08-10T21:42:19.556330
2019-08-26T03:50:42
2019-08-26T03:50:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,012
cpp
class Solution { public: vector<string> letterCombinations(string digits) { int n = digits.size(); if(n == 0) return vector<string>(); char a = 'a'; for (int i = 0; i < 8; ++i) { tran.push_back(vector<char>()); for (int j = 0; j < 3; ++j) tran[...
[ "zintrulcre@gmail.com" ]
zintrulcre@gmail.com
d8a3fb0e27f0f23822fe4ffc90a2d424414715c6
8da5ec935ef89038592a76029fe50dba30448f22
/CS_111_Circles/Source.cpp
6b1e0f3a3318867872dd37250238ac841fdee995
[]
no_license
ashritbista/Circles-C-
bcda47fb6437d4bdc515838b171b9f75829affd5
d8c2e46bf93473cd5f54a1ff7d347f15a467fd7a
refs/heads/master
2021-01-25T09:14:17.733378
2017-06-08T23:21:53
2017-06-08T23:21:53
93,798,170
0
0
null
null
null
null
UTF-8
C++
false
false
6,526
cpp
#include <iostream> #include <sstream> #include <fstream> #include <cmath> #include "Circle.h" using namespace std; //constant value const double PI = 3.1415; //distance calculator d = sqrt((x1 - x2)^2 + (y1 - y2)^2) double calcDistance(double x1, double y1, double x2, double y2) { double distance = 0.0; distanc...
[ "ashrit93@gmail.com" ]
ashrit93@gmail.com
4c83059072702c79570cc385888c78a503d2ccd9
16807a316c7130d625ed8c377d928a856f30eaa5
/Library/Il2cppBuildCache/iOS/il2cppOutput/Unity.XR.ARSubsystems.cpp
44b42ec8d933437a3a979de5a9a7c56479c867ea
[]
no_license
atppatil18/TibcoGameJam2021
a6267aafed18e5544cbdc23b571f04a92925391b
029f668a7198958b0eafe5405a2f638a694566f1
refs/heads/main
2023-05-15T06:43:00.116495
2021-06-10T14:17:29
2021-06-10T14:17:29
373,867,454
0
0
null
null
null
null
UTF-8
C++
false
false
2,905,312
cpp
#include "pch-cpp.hpp" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <limits> #include <stdint.h> struct VirtualActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvoke...
[ "atulpatil-mac@atupatil.local" ]
atulpatil-mac@atupatil.local
aed8f4845431c4bbc7840440e71e288687fdf320
9edcd2177792e67efdbceeeb5e8d4407fae23777
/Unique Paths.cpp
2dd26c20003eb14fc5c39a282bdd9a0635e0e3df
[]
no_license
rajeshceg3/leetcode_cpp
bd3fd1231959b07d363428d65e795acfe9a72578
35d6237d0db72c24c4f0c514b599cd297fbd2f8a
refs/heads/master
2022-04-04T11:35:33.825357
2020-02-10T10:21:25
2020-02-10T10:21:25
238,442,975
0
0
null
null
null
null
UTF-8
C++
false
false
491
cpp
// https://leetcode.com/problems/unique-paths/ class Solution { public: int uniquePaths(int m, int n) { // Entire dp table filled with 1 vector<vector<int>> dp( m, vector<int>(n,1)); // Fill all columns & rows in dp table based on // first row and column data for( int i = 1; i < m ; ...
[ "noreply@github.com" ]
noreply@github.com
b8c8090795b085bef2ecd22c5b966e28901003aa
bcf296f002ff205561f410b36ff4b5ab41a48f0a
/NalParse.h
247d66be5423403548af5794c07c8b1e63366ff7
[]
no_license
yangkun19921001/VideoBSAnslyzer
f34e315b803974f213f39e2c4372587c2ad747b8
1d08c758d50a8afd2162a9358397ca89995055d7
refs/heads/master
2023-05-14T18:28:47.016193
2021-06-07T17:27:52
2021-06-07T17:27:52
374,852,103
1
0
null
null
null
null
UTF-8
C++
false
false
2,897
h
#ifndef PALPARSE_H #define PALPARSE_H #include "h264_stream.h" #include "h265_stream.h" #include <vector> using std::vector; typedef struct { int type; // 0 -- h.264; 1 -- h.265 unsigned int num; // 序号 unsigned int len; // 含起始码的总的长度 un...
[ "yang1001yk@gmail.com" ]
yang1001yk@gmail.com
f4c2ca3426adbd88974e72bf4703fa5ae7e0faf1
f3c8d78b4f8af9a5a0d047fbae32a5c2fca0edab
/Qt/lib2/QScintilla/Qsci/qscilexerpostscript.h
8d88f3f0f62eebc497c01185182f615f09ed8f2b
[]
no_license
RinatB2017/mega_GIT
7ddaa3ff258afee1a89503e42b6719fb57a3cc32
f322e460a1a5029385843646ead7d6874479861e
refs/heads/master
2023-09-02T03:44:33.869767
2023-08-21T08:20:14
2023-08-21T08:20:14
97,226,298
5
2
null
2022-12-09T10:31:43
2017-07-14T11:17:39
C++
UTF-8
C++
false
false
5,879
h
// This defines the interface to the QsciLexerPostScript class. // // Copyright (c) 2018 Riverbank Computing Limited <info@riverbankcomputing.com> // // This file is part of QScintilla. // // This file may be used under the terms of the GNU General Public License // version 3.0 as published by the Free Software Found...
[ "tux4096@gmail.com" ]
tux4096@gmail.com
feadb91e1c08241d56c084b057d8021b2f85f7c3
d6debbef4488a839d4ae24593e14c5a5e492a0d9
/lib/AcceleratedLED328/src/Strip.cpp
6cd929f0e46f78acd3c2f8d86744348a98783f10
[ "MIT" ]
permissive
ianfixes/AcceleratedLED
0b1cca36a9c59fedbd89c9c8a51db3caf0899e50
452a2af90cbcf56e72ccb671f85c552a80afe014
refs/heads/master
2020-03-28T06:04:20.696221
2018-09-13T20:47:05
2018-09-13T20:47:05
147,812,494
0
0
MIT
2018-09-13T20:47:06
2018-09-07T11:07:21
C++
UTF-8
C++
false
false
599
cpp
#include "Strip.h" Strip::Strip(){ } void Strip::init(uint8_t dataPin, uint8_t clkPin){ strip = Adafruit_WS2801(STRIP_LENGTH, dataPin, clkPin); strip.begin(); strip.show(); } Pixel* Strip::pixel(uint8_t index){ return &pixels[index]; } void Strip::setColor(ColorHSV color){ for(uint8_t i=0; i<STRIP_LE...
[ "benguest@gmail.com" ]
benguest@gmail.com
3403d9809fdd8b5e8ab51ea77721bf83c7f23a93
f31c0986ebc80731362a136f99bb6be461690440
/src/UILayer/ToolTipCtrlX.h
57c9b42462d1c9a3958f0b6ac6f3b97cea0add0b
[]
no_license
witeyou/easyMule
9c3e0af72c49f754704f029a6c3c609f7300811a
ac91abd9cdf35dd5bb697e175e8d07a89c496944
refs/heads/master
2023-03-30T16:19:27.200126
2021-03-26T12:22:52
2021-03-26T12:22:52
351,774,027
1
1
null
null
null
null
UTF-8
C++
false
false
1,625
h
/* * $Id: ToolTipCtrlX.h 4483 2008-01-02 09:19:06Z soarchin $ * * this file is part of eMule * Copyright (C)2002-2006 Merkur ( strEmail.Format("%s@%s", "devteam", "emule-project.net") / http://www.emule-project.net ) * * This program is free software; you can redistribute it and/or * modify it under the terms...
[ "1171838741@qq.com" ]
1171838741@qq.com
5de0f1505d7f162a9680fb17ec23297d1f310ff3
7fe3e44cf771a7a811890a7d2ac78ed6708ddedf
/Engine/source/platformWin32/winSemaphore.cpp
b62e7f3247b1da2595260e32dd5045bc11322e8b
[]
no_license
konradkiss/meshloop
988ee721fb6463fbfece183c70f678c047215dd5
25b98ce223d21e232593a6c4dc2d6d863aace02c
refs/heads/master
2021-03-19T13:36:21.104735
2015-05-21T13:00:55
2015-05-21T13:00:55
36,012,137
0
0
null
null
null
null
UTF-8
C++
false
false
1,472
cpp
//----------------------------------------------------------------------------- // Torque 3D // Copyright (C) GarageGames.com, Inc. //----------------------------------------------------------------------------- #include "platformWin32/platformWin32.h" #include "platform/threads/semaphore.h" class PlatformSem...
[ "konrad@konradkiss.com" ]
konrad@konradkiss.com
126232d53b4a7bf36870b2f89c91576055e9c6f8
76a0fa3b5dc3814d35d49951ef551548d7a6d0f7
/irreciever/irreciever/irreciever.ino
93d15ceb98895fb27275f9bb8f7f4182bde98e61
[]
no_license
jnahelou/arduino-uno
3516a6e0fc1e1758fb3cfc6859a3f2d6b15b70bb
aed1b800474bb5181e4ebc0672f485b9de02f723
refs/heads/master
2021-01-01T15:57:55.678400
2017-07-19T17:52:40
2017-07-19T17:52:40
97,745,533
0
0
null
null
null
null
UTF-8
C++
false
false
3,118
ino
/* YourDuino.com Example Software Sketch IR Remote Kit Test Uses YourDuino.com IR Infrared Remote Control Kit 2 http://arduino-direct.com/sunshop/index.php?l=product_detail&p=153 based on code by Ken Shirriff - http://arcfn.com Get Library at: https://github.com/shirriff/Arduino-IRremote Unzip folder into Librari...
[ "nahelou.jerome@gmail.com" ]
nahelou.jerome@gmail.com
aaa22f281725b837a60a712b54a300bafccda239
7dedb11bd6620b14004d2fead3d0d47daf2b98bf
/CodeForces/cf-464b.cpp
c808ce0019784da74a65377ee6f3d1307017912c
[]
no_license
nickzuck/Competitive-Programming
2899d6601e2cfeac919276e437a77697ac9be922
5abb02a527dd4cc379bb48061f60501fc22da476
refs/heads/master
2021-01-15T09:19:34.607887
2016-06-01T20:38:45
2016-06-01T20:38:45
65,146,214
1
0
null
2016-08-07T17:44:47
2016-08-07T17:44:44
null
UTF-8
C++
false
false
3,928
cpp
#include <iostream> #include <cstdio> #include <string> #include <sstream> #include <vector> #include <list> #include <set> #include <map> #include <queue> #include <stack> #include <bitset> #include <numeric> #include <iterator> #include <algorithm> #include <cmath> #include <chrono> #include <cassert> using namespa...
[ "timonknigge@live.nl" ]
timonknigge@live.nl
92b16f52529eb5ea23a2bd5cfd65024acc729771
efb23c832a12602e48609ee1804e3e28dfb00a91
/ui/CertsEditControl.h
139b7678cb966a9b64799b5a3b412d0209443efb
[ "Apache-2.0", "BSD-2-Clause", "LicenseRef-scancode-protobuf", "MIT" ]
permissive
shibafu528/florarpc
deb75521905257f9be8a8dbf304839eab3a54cc5
923e3782c080f3039379382c2c70b4edef88a4de
refs/heads/master
2021-11-24T09:20:21.768517
2021-11-23T15:01:14
2021-11-23T23:03:29
245,796,455
6
2
NOASSERTION
2021-10-10T15:24:31
2020-03-08T10:46:17
C++
UTF-8
C++
false
false
815
h
#ifndef FLORARPC_CERTSEDITCONTROL_H #define FLORARPC_CERTSEDITCONTROL_H #include <QByteArray> #include <QWidget> #include "ui/ui_CertsEditControl.h" class CertsEditControl : public QWidget { Q_OBJECT public: enum class AcceptType { Unknown, Certificate, RSAPrivateKey, }; exp...
[ "shibafu528@gmail.com" ]
shibafu528@gmail.com
7876849b85a211069854aeed6582d53696ac1669
d134ae730638c9f26155017cf83b27399f69e4a5
/src/core/registerCdsKernels.cpp
b4a72acf48dd7f2ad99bca2f215160ca17b69f3a
[ "BSD-3-Clause" ]
permissive
Nek5000/nekRS
24e485ba046030fd06755acae44d63ecc1188333
4f87e0e2ec0492e2a3edf27791252d6886814d00
refs/heads/master
2023-08-26T21:41:41.026390
2023-05-30T07:36:13
2023-05-30T07:36:13
200,469,913
220
72
NOASSERTION
2023-09-08T17:18:24
2019-08-04T08:45:08
C++
UTF-8
C++
false
false
7,070
cpp
#include <nrs.hpp> #include <compileKernels.hpp> #include "re2Reader.hpp" #include "benchmarkAdvsub.hpp" void registerCdsKernels(occa::properties kernelInfoBC) { const bool serial = platform->serial; const std::string extension = serial ? ".c" : ".okl"; occa::properties kernelInfo = platform->kernelInfo; kerne...
[ "stgeke@gmail.com" ]
stgeke@gmail.com
465c065223f6835c969488b90c17db1e79cc42ac
a0686f727c69d62d2760c5b4798ecc1104543754
/uva_673.cpp
7fe4163cff3e4ce560a90dc71ccedcf99ba26e5e
[]
no_license
epnwayne/UVa_solutions
edca6fcd0a3e563d6fa2d005472b9fd7aae6a2a7
ad1d69d4b71b603b31e315593b1f658f98ae7048
refs/heads/master
2020-05-01T03:27:31.744661
2019-03-23T04:54:48
2019-03-23T04:54:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,977
cpp
#include<bits/stdc++.h> using namespace std; /* status: AC Question URL:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=614 */ int main() { int n; cin >> n; string str; cin.ignore(); ofstream file("ans.txt"); while(n > 0) { ...
[ "ht920055@gmail.com" ]
ht920055@gmail.com
799d4ebb742ec389711556194134295716b970f5
0da89bb043ebb15f4da644d14812b858042b431c
/branches/linux-port/SaveManager.cpp
6baaef8f513f54dbc33d5355fb75a87dfebc6fa0
[]
no_license
CyberSys/Earth-and-Beyond-server
1c66c474aafb89efaac2a010de53da1a2a0ab7e2
3b46ad7c8baecca61adf8a0bedd2b23cb1936b9d
refs/heads/master
2021-08-27T15:16:37.988861
2014-05-11T21:03:53
2014-05-11T21:03:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
26,606
cpp
// SaveManager.cpp // This class runs a thread which handles all the players' changes // It keeps a connection to the SQL DB open // Eventually this could become a separate process and run on another server PC. #include "Net7.h" #include "SaveManager.h" #include "PacketMethods.h" enum experience_type { XP_COMBAT, XP_...
[ "kyp@mailinator.com" ]
kyp@mailinator.com
48382679c3186fbf1be4ec8565e12827a678d325
c4617bb18dee000848aee5593e8668c3d1516b97
/Experiment_Controller_V6/Pixelfly/cameracontrol.h
5a561213f34948a6f3ed34b16831ea0213e5865e
[]
no_license
liangqibox/Lithium6_ATI
469f688dbea6a128b53e159cc4b9e9562f0a9640
b81cea8895ed15db941019a8c00101499317b731
refs/heads/master
2020-12-26T10:32:39.611130
2020-01-31T18:26:17
2020-01-31T18:26:17
237,481,429
1
0
null
null
null
null
UTF-8
C++
false
false
1,498
h
#ifndef CAMERACONTROL_H #define CAMERACONTROL_H #include <QWidget> #include <QThread> #include <QFileDialog> #include <QImage> #include <QTimer> #include <QDateTime> #include "camera_screen.h" #include "pixelfly_cam.h" #include "include/image_save.h" #include "include/png++/png.hpp" const int Camera_Frame_Rate = 5; ...
[ "60519181+liangqibox@users.noreply.github.com" ]
60519181+liangqibox@users.noreply.github.com
6992829f1860823b17cb1fc52f7bffe47b8600a9
f4db4250cb7cd32b8700db4de1ee23d3452c1596
/Practica/Volumenes Finitos/OpenFoam/Ejercicio3_Temperatura/0.31/phi
c54b31566cd71c98130d593bf265df97db8a6ee0
[]
no_license
santichialvo/MecanicaComputacional
cc7e7af64542d7a6149a865ab0b16124db90a0d7
c7f63f6f39da1e7dcddfa4b0e83bb9179bdcff21
refs/heads/master
2021-01-10T04:00:05.616777
2015-12-08T02:45:23
2015-12-08T02:45:23
47,593,143
1
1
null
null
null
null
UTF-8
C++
false
false
40,043
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.4.0 | ...
[ "santi_0926@hotmail.com" ]
santi_0926@hotmail.com
a675357b6ebca833e5701d72c203ef38099db938
3db06ecfbe22202d93cf5427745e1be46b78b72d
/221220_hw/221220_hw/Source.cpp
4602dfafca49c89edc30467b3db14856c3b2e109
[]
no_license
RikoBgrff/cpp-oop
f830e2e1cc59cc4301abfc8613cd9d4ab5d135db
c7a26e374c8e62f59d6db8c0ebd0549640df3ac5
refs/heads/main
2023-02-10T18:02:14.189101
2021-01-07T13:54:28
2021-01-07T13:54:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,552
cpp
#include <iostream> #include <time.h> #include <string> #include <string.h> #include <fstream> namespace SmartPointers { template <typename T> class UniquePointer { T* ptr; public: UniquePointer() :ptr(NULL) {} UniquePointer(T* ptr) { this->ptr = ptr; } UniquePointer(const UniquePointer& other) = d...
[ "40658140+eabasquliyev@users.noreply.github.com" ]
40658140+eabasquliyev@users.noreply.github.com
aee937af607220e9622a92063a005518e67dd03b
56a840f7d780bdfed09a95da404a309f2f395a62
/cpp/Data Structures/UVa-11192/GroupReverse.cpp
5255684ac1b5be5e9d14614e8e1f880c0a47fc43
[]
no_license
edujtm/Comp-Programming
fa510e2229d43034da662d9f5d4a7e9ee36c7f42
540ddbbf93e574e9082b0f15d9e9b9fbc1210ef3
refs/heads/master
2021-01-01T20:14:39.007230
2019-09-15T01:45:35
2019-09-15T01:45:35
98,798,505
0
0
null
null
null
null
UTF-8
C++
false
false
494
cpp
#include <cstdio> #include <iostream> #include <string> #define MAXC 110 using namespace std; int main() { int n; string theString; while (cin >> n && n != 0) { cin >> theString; int g = theString.length()/n; for (int i = 0; i<theString.length(); i += g) { int j = i; int k = i + g - 1; while (j ...
[ "eduzemacedo@hotmail.com" ]
eduzemacedo@hotmail.com
2bc45481df9d85281c2fa5fb05ff128eb58c32a2
9b8ed2eb05e40016395a069013402610361ee499
/Test/ServerManager.h
42ed4d2495b76c6aa824493a978deec30cbc0c99
[]
no_license
singmelody/Test
6b74674cc0219189caaf365df120a4420b77cd6f
9f2d3d72627586bd07a66b2599a7106d7d6b1f1c
refs/heads/master
2020-04-07T02:50:03.334288
2017-12-31T22:26:46
2017-12-31T22:34:09
45,405,601
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
3,160
h
#pragma once #include "Singleton.h" #include "ServerGrpInfo.h" #include "NodeSrvGrp.h" #include "GateSrvGrp.h" class PeerModuleBase; class ServerInfo; enum SrvMask { eSM_World = 1 << 1, eSM_Login = 1 << 2, eSM_LocalNode = 1 << 3, eSM_RemoteNode = 1 << 4, eSM_Gate = 1 << 5, }; enum SrvSegment { // SrvID /...
[ "446538645@qq.com" ]
446538645@qq.com
e677d2ab96ab973890a9afbbfdba155eb4e2b667
f0dbabac157fc79094062513cfcc28be253d9b70
/modules/identity/src/Errors/Errc.cpp
3805bfafbcea5b3ba001d98529bba2367e3a86ec
[ "Apache-2.0" ]
permissive
TankerHQ/sdk-native
4c3a81d83a9e144c432ca74c3e327225e6814e91
c062edc4b6ad26ce90e0aebcc2359adde4ca65db
refs/heads/master
2023-08-19T02:59:40.445973
2023-08-09T12:04:46
2023-08-09T12:04:46
160,206,027
20
4
null
null
null
null
UTF-8
C++
false
false
241
cpp
#include <Tanker/Identity/Errors/Errc.hpp> #include <Tanker/Identity/Errors/ErrcCategory.hpp> namespace Tanker { namespace Identity { std::error_code make_error_code(Errc c) noexcept { return {static_cast<int>(c), ErrcCategory()}; } } }
[ "theo.delrieu@tanker.io" ]
theo.delrieu@tanker.io
6f6ff5ee02411a3d5b68cceac4034133d46bcd09
306232bfafeb2b88e353c4ffa7fd9946654b15d8
/Trayc/SceneGraph.h
ffe06446d2863b63683f565c078829a8ac7166df
[ "Zlib" ]
permissive
Aloalo/Trayc
35b9f1161e64d84e1ac35df0f03b46422af2b9a5
048e36934b1b4dc87449feaf6f89b0161b2d08af
refs/heads/master
2020-04-12T02:22:36.696046
2019-06-01T11:38:09
2019-06-01T11:38:09
26,697,097
0
1
null
null
null
null
UTF-8
C++
false
false
895
h
/* * Copyright (c) 2014 Jure Ratkovic */ #ifndef TRAYC_SCENEGRAPH_H #define TRAYC_SCENEGRAPH_H #include <optix_world.h> #include <vector> #include <Trayc/Handlers/AccelHandler.h> namespace trayc { class SceneGraph { public: void Init(); void Add(optix::GeometryInstance inst); voi...
[ "ratkovic.jure@gmail.com" ]
ratkovic.jure@gmail.com
b49ad6d772cc7f3ba3b07aba03d6afb395e35991
b1ba3526cffd0867e75919e0c55d649154e62b36
/fuzzy/operators.h
2dee339a8f332b908e88f4fffbe11867fe550442
[]
no_license
WildCerebrus/LogiqueFlou
1e3fe18aaaa39af5eabb2cc126c96ebd481fd570
95a73dca00ec71935ebdb9186a780de31af87d41
refs/heads/master
2021-01-13T16:07:04.155906
2016-04-30T14:23:29
2016-04-30T14:23:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,260
h
#ifndef OPERATORS_H_INCLUDED #define OPERATORS_H_INCLUDED #include "../core/BinaryExpression.h" #include "../core/UnaryExpression.h" #include "../core/ValueModel.h" #include "../core/Evalutation.h" #include <vector> using namespace core; namespace fuzzy{ template <class T> class And : public core::BinaryExpressi...
[ "remy.simon@uha.fr" ]
remy.simon@uha.fr
48ae478914d53fe6777ebb4f8921308cf4758487
9eb2245869dcc3abd3a28c6064396542869dab60
/benchspec/CPU/523.xalancbmk_r/build/build_base_mytest-64.0000/XalanElemTextLiteralAllocator.cpp
21004a5bcffb6aab88d8480795a754ff0f4e503e
[]
no_license
lapnd/CPU2017
882b18d50bd88e0a87500484a9d6678143e58582
42dac4b76117b1ba4a08e41b54ad9cfd3db50317
refs/heads/master
2023-03-23T23:34:58.350363
2021-03-24T10:01:03
2021-03-24T10:01:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
129
cpp
version https://git-lfs.github.com/spec/v1 oid sha256:13a4331b0d7f1a3b95b58c954115b4177377e920976b124f77a945002bb5aa05 size 1775
[ "abelardojarab@gmail.com" ]
abelardojarab@gmail.com
9e8f9449bd1b28c0f598868dc1cadb973933418f
132198d6cd8300a77a6a371e6e6abe0795e7fed0
/airdcpp/Mapper_NATPMP.cpp
a2bd99c31f0a8a27a89be48d0b4db582e6dda781
[]
no_license
peps1/airdcpp-core
f7c2b90caceb872f7f60aea97b7dedb95bea3292
e4af875397f994c71de54adea14aa12d4c803e50
refs/heads/master
2022-12-23T08:31:30.884057
2020-09-27T07:04:12
2020-09-27T07:04:12
298,937,881
0
0
null
2020-09-27T02:34:08
2020-09-27T02:34:07
null
UTF-8
C++
false
false
3,884
cpp
/* * Copyright (C) 2001-2019 Jacek Sieka, arnetheduck on gmail point com * * 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 2 of the License, or * (at your option) any later ...
[ "maksis@adrenaline-network.com" ]
maksis@adrenaline-network.com
9250d2c02d654b4ba63aa6f2b6fbbdfefe2d4a4c
49e19faa999df3abfbfc49e692b9e8cee3208649
/XULWin/src/Menu.cpp
c41db2e3ac1f8094960c51dcc97c943b529b31a4
[]
no_license
StackedCrooked/xulwin
30a29a09636738f4821821e05ee6223d114de76b
1d3c10d0d39b848ff5d121f3dbf21fa489d032a7
refs/heads/master
2021-05-02T05:49:47.691311
2017-08-03T21:24:55
2017-08-03T21:24:55
32,498,027
0
0
null
null
null
null
UTF-8
C++
false
false
10,848
cpp
#include "XULWin/Element.h" #include "XULWin/Defaults.h" #include "XULWin/Decorator.h" #include "XULWin/Decorators.h" #include "XULWin/Menu.h" #include "XULWin/Window.h" namespace XULWin { Component * CreateMenu(XULWin::Component * inParent, const AttributesMapping & inAttr) { return new...
[ "francis.rammeloo@2ec99694-a20f-11de-ba4d-5dbaeb624ccf" ]
francis.rammeloo@2ec99694-a20f-11de-ba4d-5dbaeb624ccf
538df0ac4e6444581e555313201c5fe4794c72a5
ed330d218042b8a4c0803ffc10460d876a140efd
/useMat_Graph.cpp
72886e718f180125a912e0ef5b3a1a46d03cc077
[]
no_license
WIZARD-CXY/p
24bda712bf2d6208ed7b7502e45d74c6d8a589c9
1dc0aa646de1edaa9df2811653acd53830a79da1
refs/heads/master
2016-08-04T03:55:36.543019
2014-11-29T02:24:14
2014-11-29T02:24:14
14,491,684
1
0
null
null
null
null
UTF-8
C++
false
false
413
cpp
#include <iostream> #include "Mat_Graph.h" using namespace std; /* 1 2 1 5 2 6 6 7 6 3 3 7 3 4 7 8 7 4 4 8 */ int main() { Mat_Graph *G = new Mat_Graph(8); int i = 0, a, b; for(i = 1; i <= 10; i++) { cin>>a>>b; G->AddDoubleEdge(a,b); } G->BFS(2); for(i = 1; i <= 8; i++) cout<<G->d[i]<<' '; cout<<endl; in...
[ "achilles@zju.edu.cn" ]
achilles@zju.edu.cn
a9b59ca4af423489889b8593b958286026ab1aeb
83d407fcc56699cd41560c5920619d39df37053c
/src/par_gasresult.h
c1ede04968d9e3f2758c7cccdc0a6c9fb806459f
[]
no_license
GCaptainNemo/Datang-plus
ca0fe8d77ca414c7ff24c2ce48c6edc8de04661f
75f49ef68b9bde39b543fce3bd33672669c4e84d
refs/heads/master
2023-01-20T03:28:06.144640
2020-11-29T01:54:37
2020-11-29T01:54:37
256,822,864
0
0
null
null
null
null
UTF-8
C++
false
false
339
h
#ifndef GASRESULT_PAR_H #define GASRESULT_PAR_H #if _MSC_VER >= 1600 #pragma execution_character_set("utf-8") #endif #include <QWidget> #include <QSqlQuery> #include <QVariant> #include "utils.h" class gasResultPar { public: gasResultPar(QSqlQuery * query); static float Gas[13][8][23] ; }; #endif //...
[ "1136003685@qq.com" ]
1136003685@qq.com
f4ae0f49dc2e96fcd055f826fb82291be38500e4
059b07068c9e7fdb2ad694067167687ab8a01214
/athlets/athlets.cpp
76a31438bab4f8cc27458695e0d7b057b00de686
[]
no_license
PrivalovPetr/Red
562adf3e6703b3a4a779c4c6805ad97134069134
9e5664051b3eb8ad4af5bf706396fa0da71033ce
refs/heads/master
2020-05-16T13:39:39.544451
2019-06-11T20:55:27
2019-06-11T20:55:27
183,080,252
0
0
null
null
null
null
UTF-8
C++
false
false
396
cpp
#include <iostream> #include <list> #include <vector> using namespace std; int main() { int n; cin >> n; list<int> athlets; vector<list<int>::iterator> pointers(100'001, athlets.end()); for (int i = 0; i < n; ++i) { int num; int prev; cin >> num >> prev; auto pos = pointers[prev]; pointers[num] = athle...
[ "petr.privalov@gmail.com" ]
petr.privalov@gmail.com
75fcd33e0ebc8b97ae6045421dca879e91ee95be
71eb0196100d7bece14326afe216999fa2bb25a3
/test/DebugInfo/Inputs/arange-overlap.cc
82e3f120efdaf7122b8a30e41836d2fdaa316cc6
[ "NCSA", "LLVM-exception", "Apache-2.0" ]
permissive
etclabscore/evm_llvm
aae986955cfbea32bc1c01ec382daa7a7d75611f
700d4b7795d76a37110f8acfb6f05ee4894ab651
refs/heads/EVM
2022-03-11T06:21:35.460136
2020-09-02T21:11:20
2020-09-02T21:11:20
170,783,306
88
25
Apache-2.0
2020-07-29T14:07:28
2019-02-15T01:31:15
LLVM
UTF-8
C++
false
false
511
cc
void call(); struct S { static void foo() { call(); call(); } static void bar() { call(); call(); } static void baz() {} }; #ifdef FILE1 # define FUNC_NAME func1 # define FUNC_BODY \ S::foo(); S::bar(); S::baz(); #else # define FUNC_NAME func2 # define FUNC_BODY \ S::bar(); #endif void FUNC_NAME() { ...
[ "vonosmas@gmail.com" ]
vonosmas@gmail.com
05ea58edc077155fd5693b7b085fb9ee6907f0d0
38fdfed715b9f3e7ba168ff1989b9e5b8c9f8aaf
/TowerDefense/Road.cpp
28d4513b91f52bf8ed7cf66ebdcc07f5cf3387e2
[]
no_license
MrGoumX/TowerDefense
06be88db2b6fd16f61137c353644caa383817ce5
61fcc1ccc1946fc9f6878914573d8b42032d0dbc
refs/heads/master
2020-05-02T12:21:14.581905
2019-02-11T08:53:25
2019-02-11T08:53:25
177,956,245
1
0
null
2019-03-27T09:00:32
2019-03-27T09:00:32
null
UTF-8
C++
false
false
1,017
cpp
#include "Road.h" #include <glm/gtc/matrix_transform.inl> #include "OBJLoader.h" GeometricMesh* m_road_mesh; bool Road::InitializeMeshes() { OBJLoader loader; m_road_mesh = loader.load("../assets/Terrain/road.obj"); return true; } Road::Road() { m_road = new GeometryNode(); m_road->Init(m_road_mesh); } Road::~...
[ "spyridon@ender.gr" ]
spyridon@ender.gr
64989cf10b0a418d6623f23df56ef05f5ec2df88
d9221cef36d9870757c483a9325a355d4f34d3e8
/src/ChromaKey/MainWindow.cpp
df2d9e11930d82ec5ff6487c167d8fd7e3ffae77
[]
no_license
diegomazala/alpha-matting
01282c84b5941602c8a0d12955f4e6dc4966f7a4
5df98cbb93d9c9bcaca722b732e6b4a7436bda76
refs/heads/master
2021-01-10T20:22:37.677708
2015-06-15T04:26:12
2015-06-15T04:26:12
37,441,974
4
1
null
null
null
null
UTF-8
C++
false
false
1,495
cpp
#include "MainWindow.h" #include "ui_MainWindow.h" #include "AboutDialog.h" #include <QKeyEvent> #include <QFileDialog> MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow), currentFileName(QString()) { ui->setupUi(this); } MainWindow::~MainWindow() { delete ui; } voi...
[ "diegomazala@gmail.com" ]
diegomazala@gmail.com
c97aa79fe656d61933f0864bdc72a2a9a994626e
1af43c4ba32d78c60f007a4d068136ce575d917f
/system/apps/125_rtc/source/lib/Arduino.cpp
5634f27092c99fc2d4296b460d1f8148bb321e44
[ "MIT" ]
permissive
gabonator/LA104
a4f1cdf2b3e513300d61c50fff091c5717abda9e
27d0eece7302c479da2cf86e881b6a51a535f93d
refs/heads/master
2023-08-31T22:09:36.272616
2023-08-27T20:08:08
2023-08-27T20:08:08
155,659,451
500
69
MIT
2023-08-17T08:44:32
2018-11-01T03:54:21
C
UTF-8
C++
false
false
1,960
cpp
#include "Arduino.h" #include <math.h> #include <library.h> #include "bitbangi2c.h" namespace Arduino { bool transmissionOk = false; bool i2cinit = false; int reading = 0; CWire Wire; void delay(int d) { BIOS::SYS::DelayMs(d); } #ifndef HARDI2C void CWire::begin() { } bool CWire::...
[ "gabriel@valky.eu" ]
gabriel@valky.eu
2a4334589426207d4c31201c2cefd3ac008db9d6
d23227690e847d754b49a1ceccb6f5cbeffb5b15
/wuhan-project/BackerProxy/EnterpriseProxy/MTXXXX.cpp
9325aeba08737e2535641135a20314e9ef83f293
[]
no_license
zhouhuamin/wuhanproject
9404f62592105cb459a71f3889b22726a79fd048
6762d8b923eb737425d67abf0c0a9dba019f6f4b
refs/heads/master
2020-03-20T18:58:51.341599
2018-07-21T13:39:44
2018-07-21T13:39:44
137,614,681
0
0
null
null
null
null
GB18030
C++
false
false
24,973
cpp
#include "StdAfx.h" #include "MTXXXX.h" #include "tinyxml/tinyxml.h" #include "AdoOper/RADatabase.h" #include "msmq/MSMQApiWrapper.h" #include "CxLog.h" #include "MessageType.h" #include "MSMQSender.h" #include <string> #include <vector> #include <boost/shared_array.hpp> using namespace std; CMTXX...
[ "523141399@qq.com" ]
523141399@qq.com
26a476964d949ccba6902a222f9c12868f8eae67
2b6640d30d261ee751093bde2f83c8473af3d5fc
/src/rpcmining.cpp
cc226ad2b492130862be96b583497ca0d898fdf9
[ "MIT" ]
permissive
CryptoWolfX/AnimalsCoin
92fc2e4e915b4a969dd090b433b45c76db77deac
975be625f0326f79318eb6d5b2ab407570df96f0
refs/heads/master
2021-05-10T14:48:52.328267
2018-02-11T14:59:21
2018-02-11T14:59:21
118,532,750
0
1
null
null
null
null
UTF-8
C++
false
false
21,117
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "main.h" #include "db.h" #include "init.h" #include "bitcoinrpc.h" using name...
[ "momocheyenn@gmail.com" ]
momocheyenn@gmail.com
0a604569a819c6edf388b725ea014dfc18c94f28
68ee8caeef3922ecac39447e49c9fa95b6d653ab
/программа1/COMsolution3/COMsolution3/Component/Component.h
378c2893d7c6b3c732f69e4659a9a2daeddb8e41
[]
no_license
cat2011-14/University
852ca976f35308dd63c9dcd3cbd0150beee33871
d78932b60199cfec2edeba8c533200d2cd0dbf52
refs/heads/master
2020-05-01T09:41:45.552813
2019-03-24T11:57:10
2019-03-24T11:57:10
177,405,527
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
2,263
h
#pragma once #include <iostream> #include "../Main/Interface_h.h" #include <List> using namespace std; long g_cComponents = 0; long g_cServerLocks = 0; HMODULE g_hModule; ////////////////////////////////////////////////////////////////////////// // Класс списка class CList : public ICollection, public IEnum...
[ "noreply@github.com" ]
noreply@github.com
c1d0194c8af92c87138c708e2f1b1894da2d3d83
f413dffa135a10806d1efe3782e11287d2bdb619
/cuckoofilter.h
f4142ced85dc9737848a2763df9489309f6bebc0
[]
no_license
liuhycn/cuckoo-filter
28bfef6cb516d5d5f6c22514b2a017ae1423f134
5208435e8513e9ed5830cd5a7583f6477e82b0ec
refs/heads/master
2020-05-27T15:29:26.579739
2019-05-28T14:55:00
2019-05-28T14:55:00
188,681,531
0
0
null
null
null
null
UTF-8
C++
false
false
4,861
h
#include <iostream> #include <string.h> #include <stdio.h> #include "hash.h" using namespace std; typedef unsigned char u_char; struct tagNode { size_t bits_per_tag; u_char* buf; size_t length; tagNode() { bits_per_tag = 0; buf = NULL; length = 0; } void setNode(size_t bits) { size_t temp = (bits + ...
[ "liuhongyancn@icloud.com" ]
liuhongyancn@icloud.com
18d2ef92bf384a2632cd17d3b6420da109ea7f0f
b6dc3d3970022fbfe442c712f0e5f8b1ede55c46
/src/03-time/system/controlDict
d489f39c8e6ee0156cfb627d796ef5ffb59dc2d1
[]
no_license
houkensjtu/OFtankentai
8fd18421c31608f0b39c4e33dcc7ac2f1ecb8199
5c3e6e5a4407fce78c9cbc435752594f51483518
refs/heads/master
2021-05-16T02:15:41.378631
2019-11-29T19:14:50
2019-11-29T19:14:50
12,563,963
3
1
null
null
null
null
UTF-8
C++
false
false
1,219
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 1.6 | ...
[ "houkensjtu@gmail.com" ]
houkensjtu@gmail.com
72c341c4b6362d7544048776ad78d778d37ce31c
bce1954d38a89f5061436165dd4325b51b20f689
/Old sketches/arduino_firestingO2_singlechannel/arduino_firestingO2_singlechannel.ino
24aa291d658b4ebdea02785b2eaecb455683d94c
[ "MIT" ]
permissive
muchaste/ArdOxy
a1805d0f3073094318bf5d3a2124d7545600b31d
d68bd46b322d12656065ddd201c0a8984597ac5a
refs/heads/master
2023-08-13T16:34:13.489297
2023-07-10T19:47:14
2023-07-10T19:47:14
172,199,544
5
1
null
null
null
null
UTF-8
C++
false
false
15,325
ino
//####################################################################################### //### ArdOxy - Arduino based dissolved oxygen control system ### //### This sketch lets you to measure 1 dissolved oxygen and temperature channel via ### //### a FireStingO2 sensor ...
[ "stefan.mucha@hu-berlin.de" ]
stefan.mucha@hu-berlin.de
d150ce3b266862ecc6c48b17b046dae03f99c471
4a3b2947276261ef7c9e6bfd3a13517c8c594aef
/Vorlesung04/streamManipulators.cpp
4c491b1dab28912643748d645db425c21e6ac77a
[]
no_license
armanivers/Programmierkurs-2
7d156a36b4ea20535942f855421208a4acf144ec
9678a60bb4d67d93f288025dd08b2c5a15eb689b
refs/heads/master
2021-08-08T20:57:19.468872
2021-03-16T19:47:03
2021-03-16T19:47:03
246,174,429
0
0
null
null
null
null
UTF-8
C++
false
false
277
cpp
#define NOMINMAX #include <windows.h> #include <iostream> #include <iomanip> // compile with g++ -o stream streamManipulators.cpp // ./stream int main() { std::cout << std::setfill('0') << std::right << std::setw(4) << 12 << std::endl; // Ausgabe: 0012 return 0; }
[ "armanivers@hotmail.com" ]
armanivers@hotmail.com
671f6914b33fb35116e61f0b690d28400beb52b0
f14bf3e3d9e0f53694475a672820aec880efb5c0
/C++.cpp
3421838bba076ec8dc049d77989128424c9ecba5
[]
no_license
jaykafkachen/cs_4080_teampointless
d6ea6eebc69e24da0954d825d4ad1c44cce367e4
732e1d7f4516f05055e8f91bf6667ef5a721047b
refs/heads/master
2021-05-22T21:13:59.018363
2020-05-14T19:53:56
2020-05-14T19:53:56
253,098,842
0
0
null
null
null
null
UTF-8
C++
false
false
4,430
cpp
#include <iostream> #include <vector> #include <map> #include <string> #include <set> using namespace std; class Currency { private: double amount; string currType; Currency(); public: Currency(double amount, string currType); void add(double a); void subtract(double a); string getcur...
[ "noreply@github.com" ]
noreply@github.com
eb88dbed7b5fb05b5a7f66cf9e6ba541cbc21315
c39832b904d2f8fc55d545827ad0e27f052f683e
/agv/include/common/spline.h
1bc488f585a61d14a78b0c8cba5208aed4a1a56f
[]
no_license
Forrest-Z/Micron_AGV
4f9074a62fe92cf0defe59092c56e4a0287a9370
2cd94f60ff6c68f3e2be029773728bfe10f4d295
refs/heads/master
2023-06-01T07:12:04.729293
2021-06-21T09:40:25
2021-06-21T09:40:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,088
h
/** spline.h * * Copyright (C) 2019 SS47816 & Advanced Robotics Center, National University of Singapore & Micron Technology * * Class for constructing and solving 2D Splines */ #ifndef SPLINE_H_ #define SPLINE_H_ #include <vector> #include "Eigen/Dense" #include "frenet.h" #include "math_utils.h" namespace ...
[ "noreply@github.com" ]
noreply@github.com
2e369e6d3c54878d19e84824fb751505d4ec0064
598edeaeb3e42043d8244e0d495c5eb6bd9e149f
/blacktie/core/src/test/cpp/CoreTestSuite.cxx
7e72cfb278173be48f34700245c4f5dbf6739aa5
[]
no_license
cris-b/narayana
21469fa6c2a150a6ed42392d823f251d2441aa54
6e9aa3a2fd2147d0082a022d748c1e8f2b904cbe
refs/heads/master
2021-01-16T20:38:35.298332
2013-09-30T06:39:30
2013-09-30T06:39:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,662
cxx
/* * JBoss, Home of Professional Open Source * Copyright 2008, Red Hat, Inc., and others contributors as indicated * by the @authors tag. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * This copyrighted material is made available to anyone wishin...
[ "tom.jenkinson@redhat.com" ]
tom.jenkinson@redhat.com
caf146e73ad153894f4bfc29661ade53dc6fd3b2
487f88955f150fc034baae5a727994c29636398b
/opensplice/install/HDE/x86_64.linux/include/dcps/C++/isocpp2/org/opensplice/topic/BuiltinTopic.hpp
2bb8b27a7deb4f6461e5aac87681ea78ca9ae385
[ "Apache-2.0" ]
permissive
itfanr/opensplice-cpp-cmake
6ddb8767509904c8b2a3cd3d3fafc3b460202ea0
d9a3eac9d7e91d3a5f114c914a449a9911d1d1ea
refs/heads/master
2020-04-01T22:32:35.124459
2018-10-19T05:34:14
2018-10-19T05:34:14
153,714,000
1
1
null
null
null
null
UTF-8
C++
false
false
1,661
hpp
/* * OpenSplice DDS * * This software and documentation are Copyright 2006 to PrismTech * Limited, its affiliated companies and licensors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with ...
[ "bjq1016@126.com" ]
bjq1016@126.com
1167edd96e2781fa45fc4bf40f44830d49a03e99
b633859c482084b88e177c35c934ffff75bf1725
/Shear_Slip_Perception/external/chai3d-3.0.0/src/world/CMesh.cpp
e3589987c2663efc9939ade2a0ce21ef539e56da
[]
no_license
darrelrdeo/Skin_deformation_perception
2490b1493832cb800e7ebbf78d3859e718045016
6008594c2c9a18c5519b0ffb681a1125fcb1b0e2
refs/heads/master
2021-09-15T10:55:00.089510
2018-05-31T02:17:05
2018-05-31T02:17:05
112,665,191
1
0
null
null
null
null
UTF-8
C++
false
false
44,377
cpp
//============================================================================== /* Software License Agreement (BSD License) Copyright (c) 2003-2014, CHAI3D. (www.chai3d.org) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted pro...
[ "ddeo@stanford.edu" ]
ddeo@stanford.edu
6ffaeb2e9c184b6140bd313a2c2ba18f785ca7de
879f7b9a266aabe8b0ed0c48892d5374ecea120d
/codes/gcov/basic_string.h.gcov
8557f8b20ba932d499bcaaadb2dd0575b1c5d3c2
[ "MIT" ]
permissive
kingslair/WebServer
3bfef5c420b5a4c5c3855cc68bd2c82300a4762d
b72cfdaabc1aaf1d319b7f12f697d224f6fafc69
refs/heads/master
2020-12-03T00:27:30.751312
2018-02-03T13:07:46
2018-02-03T13:07:46
96,032,411
2
1
null
null
null
null
UTF-8
C++
false
false
142,882
gcov
-: 0:Source:/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h -: 0:Programs:14 -: 1:// Components for manipulating sequences of characters -*- C++ -*- -: 2: -: 3:// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,...
[ "noreply@github.com" ]
noreply@github.com
16eda716aeaa51851065fe05181b9a6e1e0dcba5
88c73364efda285c1bfb2aded697d12d9ba74405
/include/etl/avx512_vectorization.hpp
c8154d9ac3a1f88680ffad1607e6b82b50c714ef
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
bssrdf/etl
7269a299dc7dd157ce2c7a09e6229b9b6805aa99
4471a420d9ccaba337717836e078c1827bacdf0b
refs/heads/master
2021-01-20T14:59:35.534680
2017-05-08T20:29:41
2017-05-08T20:29:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
19,218
hpp
//======================================================================= // Copyright (c) 2014-2017 Baptiste Wicht // Distributed under the terms of the MIT License. // (See accompanying file LICENSE or copy at // http://opensource.org/licenses/MIT) //==================================================================...
[ "baptiste.wicht@gmail.com" ]
baptiste.wicht@gmail.com
8ae86c016cfc4a4c7ebca737d6d1519969ed0a79
30c507a74090a6e210c7fc042e464faddfd9dac7
/src/YourMoneroRequests.h
0c6d1f55474c2af170c2ef62ea0ae5af788e1c66
[ "BSD-3-Clause" ]
permissive
woodser/openmonero
34423edc14470687ec73c9ff444bf8cd9f301f57
c43cb923476d391f7a8264fcb9041840c8578178
refs/heads/master
2020-04-02T19:41:22.422334
2018-09-06T04:56:25
2018-09-06T04:56:25
154,742,700
1
0
NOASSERTION
2018-10-25T21:57:06
2018-10-25T21:57:06
null
UTF-8
C++
false
false
4,199
h
// // Created by mwo on 8/12/16. // #ifndef RESTBED_XMR_YOURMONEROREQUESTS_H #define RESTBED_XMR_YOURMONEROREQUESTS_H #include <iostream> #include <functional> #include "version.h" #include "CurrentBlockchainStatus.h" #include "MySqlAccounts.h" #include "../gen/version.h" #include "../ext/restbed/source/restbed" ...
[ "moneroexamples@tuta.io" ]
moneroexamples@tuta.io
72b1dcf87b81dc9fa039c4af32fa909f4f8fde8c
612325535126eaddebc230d8c27af095c8e5cc2f
/src/base/strings/string16.cc
48acbe2b5737bbc7c13abca5112fc65be1d42db6
[ "BSD-3-Clause" ]
permissive
TrellixVulnTeam/proto-quic_1V94
1a3a03ac7a08a494b3d4e9857b24bb8f2c2cd673
feee14d96ee95313f236e0f0e3ff7719246c84f7
refs/heads/master
2023-04-01T14:36:53.888576
2019-10-17T02:23:04
2019-10-17T02:23:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,981
cc
// 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. #include "base/strings/string16.h" #if defined(WCHAR_T_IS_UTF16) && !defined(_AIX) #error This file should not be used on 2-byte wchar_t systems...
[ "2100639007@qq.com" ]
2100639007@qq.com
085817edfe050cc8abcf249f188371da9a055a12
0a1be59f55b359866370c2815671af22bd96ff51
/dependencies/skse64/src/skse64/CommonLibSSE/include/RE/hkbGenerator.h
4c0e7f3dbd2cefb0d6208e8c84767e68f6976b79
[ "MIT", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
joelday/papyrus-debug-server
ba18b18d313a414daefdf0d3472b60a12ca21385
f5c3878cd485ba68aaadf39bb830ca88bf53bfff
refs/heads/master
2023-01-12T14:34:52.919190
2019-12-06T18:41:39
2019-12-06T18:41:39
189,772,905
15
10
MIT
2022-12-27T11:31:04
2019-06-01T20:02:31
C++
UTF-8
C++
false
false
639
h
#pragma once #include "skse64/GameRTTI.h" // RTTI_hkbGenerator #include "RE/hkbNode.h" // hkbNode namespace RE { class hkbGenerator : public hkbNode { public: inline static const void* RTTI = RTTI_hkbGenerator; virtual ~hkbGenerator(); // 00 // override (hkbNode) virtual void Unk_15(void) overrid...
[ "joelday@gmail.com" ]
joelday@gmail.com
0bfea4691b732112ba2b0ce29a77f1055788785f
d403c3e8215a8585eee13c587ab951cf90b7c098
/TouchGFX/generated/texts/include/texts/TextKeysAndLanguages.hpp
22c1658f759e60a3934ef0e8d0a8aa4c4c3c792b
[]
no_license
kasmirov/stm32f746g-disco-stopwatch
bd6d9c6956817e59c4e6d6ddcc1fc1b869e88071
2d9035c96035e6e18cc82958ffd1fee09df9a244
refs/heads/master
2023-04-17T04:11:53.899878
2021-04-30T18:25:52
2021-04-30T18:25:52
363,223,884
1
0
null
null
null
null
UTF-8
C++
false
false
934
hpp
/* DO NOT EDIT THIS FILE */ /* This file is autogenerated by the text-database code generator */ #ifndef TEXTKEYSANDLANGUAGES_HPP #define TEXTKEYSANDLANGUAGES_HPP typedef enum { GB, NUMBER_OF_LANGUAGES } LANGUAGES; typedef enum { T_SINGLEUSEID1, T_SINGLEUSEID2, T_SINGLEUSEID3, T_SINGLEUSEID...
[ "kasmirov@yandex.ru" ]
kasmirov@yandex.ru
86f3be70cd317123e593bc5dccbab8a39d1a5e2a
b7f3edb5b7c62174bed808079c3b21fb9ea51d52
/chrome/browser/ui/webui/management_ui_browsertest.cc
961468b5db8670f09312fb8afd08d2ae47ba6eca
[ "BSD-3-Clause" ]
permissive
otcshare/chromium-src
26a7372773b53b236784c51677c566dc0ad839e4
64bee65c921db7e78e25d08f1e98da2668b57be5
refs/heads/webml
2023-03-21T03:20:15.377034
2020-11-16T01:40:14
2020-11-16T01:40:14
209,262,645
18
21
BSD-3-Clause
2023-03-23T06:20:07
2019-09-18T08:52:07
null
UTF-8
C++
false
false
4,933
cc
// Copyright 2019 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 "base/json/json_reader.h" #include "base/strings/utf_string_conversions.h" #include "chrome/browser/policy/chrome_browser_policy_connector.h" #in...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
1a6be8608f1271fd9fee74deb82c1bc25e192a94
52c2f566dafcb10900db9d46d27fed5854488407
/include/utility/thread_pool.h
cbaf7a2162ca4efde980ac3d19f03c6597330579
[ "MIT" ]
permissive
XinShuoWang/utility
d478f937c12bbbf0817001ac8d24584730c799db
799c42d9dda8ba06499c975fcaa45d510cbf58ba
refs/heads/main
2023-03-24T21:12:15.603111
2021-03-15T05:25:33
2021-03-15T05:25:33
309,296,320
0
0
null
null
null
null
UTF-8
C++
false
false
4,275
h
// // Created by wangxinshuo on 2021/2/26. // #ifndef UTILITY_INCLUDE_UTILITY_THREAD_POOL_H_ #define UTILITY_INCLUDE_UTILITY_THREAD_POOL_H_ #include <vector> #include <queue> #include <condition_variable> #include <mutex> #include <functional> #include <thread> /** * Simple ThreadPool that creates `threadCount` th...
[ "xinshuowang@163.com" ]
xinshuowang@163.com
26220f7de75730908c12f831c215004232779875
9a50df4e0977fd046aa27eeb37c285aa8a5b9882
/Hero.h
887067cdb5c5e5871194cd31b093bba6bbbceaba
[]
no_license
apleschakowa123/Labrab
8dda00b1735567e37ed21e4831b04495dcf1cdf8
f8e72d957d7ba89dc720fc18fc47c99e5a29c123
refs/heads/master
2020-04-07T12:48:49.045694
2018-12-03T16:52:21
2018-12-03T16:52:21
158,382,160
0
0
null
null
null
null
UTF-8
C++
false
false
237
h
#pragma once #include "Heroes.h" class Hero : public Heroes { public: Hero(std::string name = "", std::string gun = "", std::string skills = ""); Hero(const Hero &hero); ~Hero(); void enterHero(); void outHero(); };
[ "noreply@github.com" ]
noreply@github.com
a262be077bcbab96b77899c062cb5f635971de95
1a0ea58d8ae4b03180b75bf4156ab4238d21ae92
/PA2/vendingMachine.h
7de7e759262da35d43a002b6c810cca09ff5ac45
[]
no_license
wesbeard/CSI-240
ffe32b1fc35cef9e7c9310b0e36144fdf8c0191d
5cb96e03f3db2df9ce112543972f928133380ffd
refs/heads/master
2021-02-05T21:57:59.965767
2020-02-28T19:34:11
2020-02-28T19:34:11
243,839,187
0
0
null
null
null
null
UTF-8
C++
false
false
2,336
h
/*Author: Halfred Greenhand Class: CSI240 Advanced Programming Assignment: Programming Assignment 2 Date Assigned: 2/6/2019 Due Date: 2/13/2019 Description: A vending machine program that outputs a menu with a selection of items to buy. Each item has a price and stock which can be changed and updated from a hidde...
[ "noreply@github.com" ]
noreply@github.com
7d8cdc65aa9e2db4be9afa2feefd1dd8deddbd77
901136494c27d559e6d70797cb367e84413e4d40
/10077/10077.cpp
b60daafd5ff8456631bb5481fd807368a9e3eefc
[]
no_license
greati/programming_challenges
dbd619d6d30d9557db05b556bafc5d1c4f352b99
c23eaac0f7574ab00daa4566a0adee9b2d7d0e98
refs/heads/master
2020-05-21T19:10:00.348688
2017-06-19T05:04:41
2017-06-19T05:04:41
61,368,733
1
0
null
null
null
null
UTF-8
C++
false
false
698
cpp
#include <bits/stdc++.h> using namespace std; /* k1/k2: queremos, não muda * m1/m2: raiz atual * n1/n2: gerador esquerdo da raiz atual * p1/p2: gerador direito da raiz atual * */ void search(int k1, int k2, int m1, int m2, int n1, int n2, int p1, int p2){ if (k1 == m1 && k2 == m2) return; double rk = (k1+0.0...
[ "greati@ufrn.edu.br" ]
greati@ufrn.edu.br
dfd3fa50fb6cf65d78ed1a71fa87810899e6bcf7
ec68c973b7cd3821dd70ed6787497a0f808e18e1
/Cpp/SDK/Action_Mod_WildfireShot_parameters.h
f8c5ba7b7255ca3bf9a9670aab8ede1e2f15d489
[]
no_license
Hengle/zRemnant-SDK
05be5801567a8cf67e8b03c50010f590d4e2599d
be2d99fb54f44a09ca52abc5f898e665964a24cb
refs/heads/main
2023-07-16T04:44:43.113226
2021-08-27T14:26:40
2021-08-27T14:26:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,265
h
#pragma once // Name: Remnant, Version: 1.0 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //---------------------------------------------------------...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
1e59a6bab2ca9d73ec2ccfcda66d82a1d0043bff
4757494c19fa3134ce9960cca97d973e0c31d203
/C++/오목+리플레이+이어하기 기능구현/오목+리플+이어하기 4차/Character.h
034953f235d7ccac36567262ed50680651a892a4
[]
no_license
HyeongBinK/C_PlusPlus
1733650f1875b53d1789e4694d5ffff743ab56b4
cfd6a3167ebedcc8e05c7fb7362d371290b2bc62
refs/heads/main
2023-08-14T11:50:25.384588
2021-09-24T07:11:58
2021-09-24T07:11:58
409,859,279
0
0
null
null
null
null
UHC
C++
false
false
2,848
h
#pragma once #include"Mecro.h" #include"MapDraw.h" enum KEY { KEY_LEFT = 'A', KEY_LEFT2 = 'a', KEY_RIGHT = 'D', KEY_RIGHT2 = 'd', KEY_UP= 'W', KEY_UP2 = 'w', KEY_DOWN = 'S', KEY_DOWN2 = 's', KEY_ESC = 27, KEY_ENTER = 13, KEY_N = 78, KEY_SMALL_N = 110, KEY_P = 80, KEY_SMALL_P =112 }; #define MYSTONEFLAG ...
[ "godkim3904@naver.com" ]
godkim3904@naver.com
e08993284c5b8514420306e4768b016c58185a50
06f0b4758414e058ac66b87c959651d3d087aee6
/JuceLibraryCode/modules/juce_core/memory/juce_SharedResourcePointer.h
83580acaaa2e9b88f73f0bbe1b6cb94cd94204fa
[]
no_license
nllve/SimpleScope
404c2a21f342b8282c5a2bf54656fcb6eb8d87fc
4fbb5edc97c6de65c50f0e51cbef29f720c81cf7
refs/heads/master
2021-01-19T20:47:50.044467
2017-04-17T19:06:08
2017-04-17T19:06:08
88,554,327
0
1
null
2017-04-17T21:57:28
2017-04-17T21:57:28
null
UTF-8
C++
false
false
6,404
h
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2016 - ROLI Ltd. Permission is granted to use this software under the terms of the ISC license http://www.isc.org/downloads/software-support-policy/isc-license/ ...
[ "jonathantcrawford@icloud.com" ]
jonathantcrawford@icloud.com
f742fe6bdc99ed63d03d4f5463874b6b7971856d
756f58f3844cbb426bf6f8b5deceeeaa55c2fcb6
/libs/Digimarc/include/DigimarcEmbeddedSystems/Configuration/DetectionShape.h
aa666af12794a59a1818b4eb9f9f37cbe471add9
[]
no_license
JiaquanLi/Algorithm-Server
7e4345f5a7ef7c847bb516b45348a01006c23a25
7b10f19120b72638984b4d30f4650931643340cc
refs/heads/master
2020-03-28T22:31:09.376675
2018-10-16T03:20:21
2018-10-16T03:20:21
149,238,793
2
2
null
2018-10-12T04:18:17
2018-09-18T06:23:37
C++
UTF-8
C++
false
false
8,069
h
#ifndef DMRC_DESSDK_DETECTIONSHAPE_H #define DMRC_DESSDK_DETECTIONSHAPE_H #include "../SDK/ApiDefs.h" #include "DetectionShapeBinaryData.h" #include "PerspectiveParams.h" #include "StatusCode.h" namespace DigimarcEmbeddedSystems { enum DetectionShapeIntensityLevel { MediumIntensity , HighIntensity }; /** A geomet...
[ "119644055@qq.com" ]
119644055@qq.com
b0f33ef838a99883c7c29a2f4ca7796596e49ef5
bb6ebff7a7f6140903d37905c350954ff6599091
/chrome/browser/prefs/tracked/tracked_preference.h
37ce00d479b7d734b521f2fa632113e3f1a73312
[ "BSD-3-Clause" ]
permissive
PDi-Communication-Systems-Inc/lollipop_external_chromium_org
faa6602bd6bfd9b9b6277ce3cd16df0bd26e7f2f
ccadf4e63dd34be157281f53fe213d09a8c66d2c
refs/heads/master
2022-12-23T18:07:04.568931
2016-04-11T16:03:36
2016-04-11T16:03:36
53,677,925
0
1
BSD-3-Clause
2022-12-09T23:46:46
2016-03-11T15:49:07
C++
UTF-8
C++
false
false
1,399
h
// 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. #ifndef CHROME_BROWSER_PREFS_TRACKED_TRACKED_PREFERENCE_H_ #define CHROME_BROWSER_PREFS_TRACKED_TRACKED_PREFERENCE_H_ class PrefHashStoreTransaction; na...
[ "mrobbeloth@pdiarm.com" ]
mrobbeloth@pdiarm.com
621c8eae24448b276ca9e1252fb68e382b376afe
2fd2ff04c91e8132b780bbd866e5d4524a8e66dd
/hlx/BD/axi_ic_axi4lite/ip/axi_ic_axi4lite_axi_bram_ctrl_0_0/sim/axi_ic_axi4lite_axi_bram_ctrl_0_0_sc.cpp
a7348c33cb75bbc1a2d5ebd7565d07032cf33199
[]
no_license
SanjayRai/U200_customThinShell_splitxDMA
401a4d178cabf618c8539e3ad575d16c27a6d086
04fa4e910de83117b5be8584b0732299e9dfad4d
refs/heads/master
2022-12-14T06:57:33.323260
2020-09-21T21:26:46
2020-09-21T21:26:46
297,464,543
2
0
null
null
null
null
UTF-8
C++
false
false
4,103
cpp
// (c) Copyright 1995-2020 Xilinx, Inc. All rights reserved. // // This file contains confidential and proprietary information // of Xilinx, Inc. and is protected under U.S. and // international copyright and other intellectual property // laws. // // DISCLAIMER // This disclaimer is not a license and does not grant ...
[ "sanjay.d.rai@gmail.com" ]
sanjay.d.rai@gmail.com
d087c201d9d6be6a1d16438befec7f2912379a14
a385bbc182ae9d18d1f97401f649a173aedc1ece
/Lab3_question10.cpp
3cc5b29796f06a7c6bbcd5c87a510a33ceef3961
[]
no_license
TanyaPattnaik/Lab_3
9d69da99b389d0e74f52c6b244dca87ba9f2999c
24861bf05aebd377b512f46599d15835af4c8fb8
refs/heads/master
2021-01-21T13:25:11.762994
2017-11-20T01:51:18
2017-11-20T01:51:18
102,117,170
0
0
null
null
null
null
UTF-8
C++
false
false
283
cpp
#include <iostream> using namespace std; int main() { char a; cout <<"Enter a character\n"; cin >>a; if (a>='a'&&a<='z') cout <<a <<" is a lowercase alphabet\n"; else if (a>='A'&&a<='Z') cout <<a <<" is an uppercase alphabet\n"; else cout <<"Invalid entry\n"; return 0; }
[ "noreply@github.com" ]
noreply@github.com
89e61d6ee589b6c731dae3944f45d8051edd59a3
6798252b3e7031aa679a99d85f6981f903391559
/he-transformer-master/src/seal/kernel/max_pool_seal.hpp
5ba7057396f2d7e7ca1544e59594945d82b3b569
[ "Apache-2.0" ]
permissive
zadid56/privacy-preserving-ML-models
c5323ed395cc97f3a8b55d9473a8e08d230d1455
1ed7a5f085deb34ee546621daa87189924021b4b
refs/heads/master
2022-04-05T21:45:14.277762
2020-02-14T05:56:54
2020-02-14T05:56:54
240,152,930
2
0
null
null
null
null
UTF-8
C++
false
false
14,333
hpp
//***************************************************************************** // Copyright 2018-2019 Intel Corporation // // 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://w...
[ "38263936+zadid56@users.noreply.github.com" ]
38263936+zadid56@users.noreply.github.com
c6e9658d4e25a5bbbb08883e3550cddd65d2e30b
28c8ce71b80c195ff30809a68008091b7922e788
/src/qt/openuridialog.cpp
2672dbbf697db7636cbb201719657c70388cefff
[ "MIT" ]
permissive
DecentralShopCoin/DecentralShopCoin-wallet-v1.0-core
f288987297cc2bba92be2bf153ccd0a488487668
3fdfeabceb7d452688cb48e25fc64d9a43ab9b4f
refs/heads/master
2020-04-12T19:53:20.659073
2018-12-29T15:24:02
2018-12-29T15:24:02
162,720,545
0
0
null
null
null
null
UTF-8
C++
false
false
1,426
cpp
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2017 The DecentralShop developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses...
[ "root@localhost" ]
root@localhost
d69709f67e33cd20a2473d1697f89202070a377d
b77349e25b6154dae08820d92ac01601d4e761ee
/Slider/ProgressSlider/ProSlider.h
e148807c7827b38c374a228c4467eab84028698b
[]
no_license
ShiverZm/MFC
e084c3460fe78f820ff1fec46fe1fc575c3e3538
3d05380d2e02b67269d2f0eb136a3ac3de0dbbab
refs/heads/master
2023-02-21T08:57:39.316634
2021-01-26T10:18:38
2021-01-26T10:18:38
332,725,087
0
0
null
2021-01-25T11:35:20
2021-01-25T11:29:59
null
UTF-8
C++
false
false
490
h
// ProSlider.h : main header file for the PROJECT_NAME application // #pragma once #ifndef __AFXWIN_H__ #error include 'stdafx.h' before including this file for PCH #endif #include "resource.h" // main symbols // CProSliderApp: // See ProSlider.cpp for the implementation of this class // class CProSliderApp : p...
[ "w.z.y2006@163.com" ]
w.z.y2006@163.com
01876dbf14b60d23e2c533f18530e4255b331f74
226aa38ee28929a1b7f420e65afc8b57fd642335
/oop/Laboratory7_8/Laboratory7_8/testRepoT.hpp
122a691658b282c3d69624ed21e3cd48847a01cf
[]
no_license
timofteciprian/uni
74cf0392798066798f37f1b206d50737978f2f34
991d51d41d72cd438e687cab6b4ae6eb03e85a39
refs/heads/master
2021-05-25T11:59:01.523090
2020-04-30T16:49:38
2020-04-30T16:49:38
127,344,717
0
0
null
null
null
null
UTF-8
C++
false
false
277
hpp
// // testRepoT.hpp // Laboratory7_8 // // Created by Timofte Ciprian Andrei on 27/04/2018. // Copyright © 2018 Timofte Ciprian Andrei. All rights reserved. // #ifndef testRepoT_hpp #define testRepoT_hpp #include <stdio.h> void testRepoT(); #endif /* testRepoT_hpp */
[ "timofteca@gmail.com" ]
timofteca@gmail.com
a071bfc52c75a19bd6b8ad52f91a7f3f29106a8a
3272e9f4c3d64ae0344dd44c5880e8fca2ae2e69
/libraries/chain/include/sou/chain/protocol_feature_activation.hpp
a2ed0dd63f93568915a4c7390d9555c575ae1045
[ "BSD-3-Clause", "MIT", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
tawtod/ttt
5990584c2e974df318484b4caca94d7e277bfa66
78a536ac9080c39a933a444ccc31ca9c1453eb2f
refs/heads/main
2023-04-28T03:05:05.991141
2021-05-03T19:59:37
2021-05-03T19:59:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,309
hpp
#pragma once #include <sou/chain/types.hpp> namespace sou { namespace chain { struct protocol_feature_activation : fc::reflect_init { static constexpr uint16_t extension_id() { return 0; } static constexpr bool enforce_unique() { return true; } protocol_feature_activation() = default; protocol_feat...
[ "sdhcsdn@gmail.com" ]
sdhcsdn@gmail.com
35ff119d8bb8bff898848ecd92d01cfb76d6756d
0f41c18a334226d893b4858d67547dbc33745e88
/libdariadb/storage/pages/helpers.h
1aef5c36e4ab0b71235e173abfd5eebfdb5d84c8
[ "Apache-2.0" ]
permissive
oliveiradan/dariadb
325d5d1db568ef9c91e8f01261904a17ff913fb1
e9c2e34b0723ea6e040ecdcce3d57153d32b061e
refs/heads/master
2021-09-22T15:29:12.840295
2017-05-12T05:25:57
2017-05-12T05:25:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
862
h
#pragma once #include <libdariadb/storage/chunk.h> #include <libdariadb/storage/pages/index.h> #include <libdariadb/storage/pages/page.h> #include <fstream> #include <map> #include <tuple> #include <vector> #include <boost/shared_array.hpp> namespace dariadb { namespace storage { namespace PageInner { struct HdrAndB...
[ "lysevi@gmail.com" ]
lysevi@gmail.com
f73be470f135b853e90612c4179dc219ccaf6546
ec8c238cec2fe43543aac2ed0b2216d6bca2d74c
/src/contdepth/VisualizeBasis3D.cc
17b2ba129ea22694efac9abb023971feca999b1e
[]
no_license
nbirkbeck/monoflow
f6b07dc9962c18e863294c111ec73ce23da842ec
2d3332c1613f34a6da12819bc0823e19042cb265
refs/heads/main
2023-02-04T15:47:22.010536
2020-12-24T17:36:17
2020-12-24T17:36:17
324,067,694
0
0
null
null
null
null
UTF-8
C++
false
false
7,588
cc
/** Quick visualization to see the basis flow in 3D. Neil Birkbeck, Jan 2011 */ #include "utigl/glwindow.h" #include "utigl/glcommon.h" #include "utigl/ffont.h" #include <nmisc/commandline.h> #include "ik/mesh.h" #include "ik/armature.h" #include "autorecon/recon_globals.h" #include "autorecon/recon_geometry.h"...
[ "neil.birkbeck@gmail.com" ]
neil.birkbeck@gmail.com
01e07649752a099e57962fe3637cef2ce8d09426
67dd5dbcb404d7f753a7638b22e720cebe0a31f0
/Project -2/Problem 1/Warping.cpp
4ed92bd6199a37480e8c288a9bdaca9a10a9080d
[]
no_license
Shaw9575/Image_Processing_EE569
ae2094489f7b4fe7c444f83af3531d32a7c18639
da7e4268314841d20fb324dbe1db5596316173d3
refs/heads/master
2020-03-07T16:28:06.174840
2019-06-24T04:25:05
2019-06-24T04:25:05
127,583,306
0
0
null
null
null
null
UTF-8
C++
false
false
2,502
cpp
//Name: Shuang Yuan //USC ID: 3904204605 //USC e-mail: shuangy@usc.edu //Submission data: 03/01/2018 //How to run? //program_name input_image1.raw output_image.raw [BytesPerPixel = 1] [SizeLength = 256] #include <stdio.h> #include <iostream> #include <stdlib.h> #include <math.h> #include "fileRead.cpp" #in...
[ "noreply@github.com" ]
noreply@github.com
c724b67e8e2f75b219dd5ae453da8e6fb4980cf7
ee22fa7476a52f3fe2f9bc88d6c8f43f614cdba6
/Tyvj/p1718.cpp
55d73d269b8e7a28f314d5e2ac190abd7991e738
[]
no_license
Sillyplus/Solution
704bff07a29709f64e3e1634946618170d426b72
48dcaa075852f8cda1db22ec1733600edea59422
refs/heads/master
2020-12-17T04:53:07.089633
2016-07-02T10:01:28
2016-07-02T10:01:28
21,733,756
0
0
null
null
null
null
UTF-8
C++
false
false
463
cpp
#include <iostream> #include <cmath> using namespace std; long long n, m; int gcd(int a, int b) { return b == 0 ? a : gcd(b, a % b); } int main() { cin >> n >> m; long long x; int ans = 0; if (m % n != 0) { ans = 0; } else { x = m / n; for (int i = 1; i <= sqrt(x); i+...
[ "oi_boy@sina.cn" ]
oi_boy@sina.cn
f85009a0c38244b50e716eb37886240b3d9ee980
372d2c1cac620d2cf335da6cfcab1d6e4d0803b6
/xr_3da/xr_area.cpp
2dfa1f952fba0a6f1d91a78c68dca949918e2c38
[]
no_license
ugozapad/xray_ol
39000950815ef5c56801b0fa8f92d047a6e430da
13536bd1b520d9ec140e4f924216ad07a000b59f
refs/heads/master
2023-03-15T22:46:17.676641
2021-03-08T21:49:30
2021-03-08T21:49:30
340,637,264
1
0
null
null
null
null
UTF-8
C++
false
false
6,738
cpp
#include "stdafx.h" #include "xr_area.h" #include "xr_object.h" #include "xrLevel.h" #include "xr_creator.h" #include "x_ray.h" #include "xr_smallfont.h" using namespace Collide; //---------------------------------------------------------------------- // Class : CObjectSpace // Purpose : stores space slots //-----...
[ "hp1link2@gmail.com" ]
hp1link2@gmail.com
129f18b61f0176966e838e4d72814ec7350214a0
0ae41b99a1f4afc0932cf0d3cfe7b8cf288f57e6
/src/coins.h
d16456f66b824fc307fa2b9167c5023f9878218b
[ "MIT" ]
permissive
Sivonja8/ruxcryptoRXC
bdc6c94349774fd6c24a40eabedfb1646ad28aa2
4921ee3b3b4a8b1d2d71c7bd19f1a9a3635e4075
refs/heads/master
2023-07-05T13:50:33.832602
2021-07-06T15:29:07
2021-07-06T15:29:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,159
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_COINS_H #define BITCOIN_COINS_H #include "compressor.h" #include...
[ "nsmajic@gmail.com" ]
nsmajic@gmail.com
0530684bfd53b501f9eef0bda38edaa185ed7e3a
df4ddadeedc2d6f4f8ff577c6b7adc484e83477d
/Vector/Exam03-/OperatorOver2.cpp
6993f98ed77f81e5eff434f17f3268f565f27ed2
[]
no_license
YeonjaeLee/c
5ad950bd9c8f803c37b80d27953cfa60ebbe6008
7cb32bed987f69cd6cbb94ee9d6639dd92f05247
refs/heads/master
2021-01-23T06:45:34.719825
2017-04-14T04:22:50
2017-04-14T04:22:50
86,396,333
0
0
null
null
null
null
UHC
C++
false
false
751
cpp
// 대입 연산자의 오버로딩 #include <iostream> #include <cstring> using namespace std; class Person { private: char * name; public: Person() { name = NULL; } Person(char * str) { int len = (int)strlen(str); name = new char[len + 1]; strcpy(name, str); } ~Person() { delete[]name; } Person & operator= (const Person...
[ "yeonjae115@gmail.com" ]
yeonjae115@gmail.com
b5561f2ca0aff73a02a5082609845b0b7f1cfcdf
3b6f947d911c1986677d591893d474bec2603830
/1-19-0/10.5.1.cpp
509671ca9656972feee572b236c5ad2a8121ac89
[]
no_license
zwwwwww/ITCE
2b8447fb0e76ca1dc81926774fc777efaf309d69
7977d701fe9f336055594b2cc2cfa5f98f32ca66
refs/heads/master
2022-12-31T06:36:46.719171
2020-10-17T13:37:43
2020-10-17T13:37:43
304,823,663
0
0
null
null
null
null
UTF-8
C++
false
false
441
cpp
/* From:ITC 10 Simple type defects 10.5 string 10.5.1 String literal compared with variable foo */ #include<iostream> #include<string.h> using namespace std; void string_001() { const char* s1 = ""helloworld""; const char* s2 = "...
[ "1256392433@qq.com" ]
1256392433@qq.com
b5753acee491095e7cdd597553ca0739616b2c30
b3bddf04b86e7a73ed6762a963b81d7a4eea5a62
/Algorithm/템플릿/queueTemplate/MyQueue.h
6a24cf5c00dee3f46a2c21ef0adfd488022b1fe0
[]
no_license
leerang92/StudyRepo
c090a03fa0349ef7abe976a244f347f0e3bc6b0d
f232f6f01b287b4d25802f7336c09a2d5073b1d2
refs/heads/master
2016-09-13T01:27:51.428100
2016-05-22T05:26:29
2016-05-22T05:26:29
59,368,234
0
0
null
null
null
null
UTF-8
C++
false
false
389
h
#pragma once template <typename T> class CMyQueue { T *queue; int front, rear; int max, size; public: CMyQueue(int Max = 100) : front(0), rear(0), max(Max), size(0){ queue = new T[Max]; } ~CMyQueue() { if(queue) delete[] queue; } void enQueue(T item); T deQueue(); bool isFull() { return size == max...
[ "asw77id@gmail.com" ]
asw77id@gmail.com
017fc860fd0f919f9b285214470e5f6225787422
da536ce5676304baf5b6d0982e31b0d370900729
/Client/MPointerGC.cpp
2e20f0acffb2874198378bf689956cfd3cc07961
[]
no_license
JoseChV/MPointer
087be31c621dacca5e91c68737363ce6d6041dd3
b00d36b76b40513cb918be3c5bec1ff3ad998e13
refs/heads/master
2020-03-28T09:52:36.622021
2018-10-09T23:41:07
2018-10-09T23:41:07
148,066,113
0
0
null
null
null
null
UTF-8
C++
false
false
117
cpp
// // Created by jose on 17/09/18. // #include "MPointerGC.h" MPointerGC* MPointerGC::instance = nullptr;
[ "noreply@github.com" ]
noreply@github.com
b7325215fd20671fc6779e047423e15802093d1b
2b65240a7731b00480ec71e007e8e0743776affc
/ui_mainwindow.h
a6120c87e6dc745017eef2dc1787ef223008c161
[]
no_license
ray-x/synthesis
6c3ca751b16436b92e938badfdd11c848e9d839e
8821b706bc7850242a6cfba49a1b361651c60126
refs/heads/master
2020-03-16T22:20:25.040970
2018-05-17T11:59:06
2018-05-17T11:59:06
133,035,290
0
0
null
null
null
null
UTF-8
C++
false
false
6,946
h
/******************************************************************************** ** Form generated from reading UI file 'mainwindow.ui' ** ** Created by: Qt User Interface Compiler version 5.4.1 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ****************************************...
[ "rayx.cn@gmail.com" ]
rayx.cn@gmail.com
fa2ffcdbc2a3e033bef7de47c0e41c97f45251bf
747974d83629a8ba28fcb3f4a33a17319002f169
/tensorflow/lite/delegates/gpu/cl/inference_context.cc
ca0c0319f5422c03b4b33d538ac4281d9e480726
[ "Apache-2.0" ]
permissive
ayushmankumar7/tensorflow
72f60290e4187644b4b254d25ec3033c9fda0c55
69a7d3abbbf5be791d1db397fcfea5d8e6efc4b9
refs/heads/master
2022-06-19T01:14:46.563563
2020-10-19T10:13:23
2020-10-19T10:13:23
244,302,166
2
0
Apache-2.0
2022-05-21T12:44:00
2020-03-02T06:58:50
C++
UTF-8
C++
false
false
26,322
cc
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or a...
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
0c231ad65cff17951f6f1c19307536e748290182
6e882a3a0819b6257f602058b3913cf65376668a
/CNK/woowabros/2019/02_main.cpp
5e3288508c7ff160c6fc3cafb76c614289fedb8f
[]
no_license
hyperpace/study_algo_gangnam
79e4ffda3306cdd2d7572bd722a5b5ece5469eb5
34b017bcd68c67fffcae85a14a17baa4f2e4eb74
refs/heads/master
2021-06-12T12:37:31.694167
2021-03-20T09:58:54
2021-03-20T09:58:54
164,384,323
0
5
null
2021-03-20T09:58:54
2019-01-07T05:50:18
Jupyter Notebook
UTF-8
C++
false
false
1,732
cpp
/* #02 lands wells point result [ [10, 0, 30, 5], [0, 30, 20, 50], [30, 30, 40, 40] ] [ [15, 15, 25, 25], [40, 10, 50, 20] ] [10, 10, 30, 30] true [ [0, 0, 20, 10], [10, 20, 20, 40], [30, 0, 50, 20] ] [ [20, 40, 30, 50], [30, 20, 50, 30] ] [20, 30, 30, 40] false */ #include <string> #include <vector> using namespace s...
[ "cnk9109@gmail.com" ]
cnk9109@gmail.com
a1996e242356fccfc01adf79e2d62ef9c1966409
c663eefbb42b166a9929e33dc9e9a8413f3b0c3b
/src/util/StringUtils.hpp
69fd1a8d2dd65dca1a7ca84ca116ef949a838b59
[]
no_license
bitwangdan/mapper
f8c6c8f9584c232d66beff47197ed15d56e52a30
3745cac864d0bea08e251eb40807d908845ba7af
refs/heads/master
2022-09-04T23:20:22.215211
2020-05-23T08:00:04
2020-05-23T08:00:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,078
hpp
// // Created by Jiangsiyong on 5/9/2020. // #ifndef MAPPER_STRINGUTILS_HPP #define MAPPER_STRINGUTILS_HPP #include <string> /** * 字符串工具类 */ class StringUtils { public: /** * 判断是不是大写字符 * @param c * @return */ static bool isUppercaseAlpha(char c) { return (c >= 'A') && (c <= 'Z')...
[ "jiangsiyong@winsing.net" ]
jiangsiyong@winsing.net
ffb3c3ac8aa83b6b3bdc2dd24b048e4cb396a6d8
ac0e343b92342ac2d3ad5c2a921745e42437e5b0
/src/geometry.cpp
574c97143a922ac27114dacacfe408c6dd17aea6
[]
no_license
GeneralLeeInept/roguelike
cb4d9d4c0d8ef23d0e3a047445d94025793f85a0
f1acc6e7d8da4782def856cf15d1120b0010627b
refs/heads/master
2020-06-26T07:19:16.740864
2017-08-05T05:34:52
2017-08-05T05:34:52
97,009,400
0
0
null
null
null
null
UTF-8
C++
false
false
1,829
cpp
#include "geometry.h" #include <algorithm> Point::Point(int x, int y) : x(x) , y(y) { } Point operator+(const Point& a, const Point& b) { return Point(a.x + b.x, a.y + b.y); } Point operator-(const Point& a, const Point& b) { return Point(a.x - b.x, a.y - b.y); } Point operator*(const Point& a, int...
[ "derek@hemicube.com" ]
derek@hemicube.com
1d59b563c1c2c09680de05fa38dce8f881d110a3
41a76318e5b9eef2c69bbf922724f8b191d7d124
/kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutRight_Rank8.cpp
0af369efd446a1f18929e5f91bbf6ccfacc323e9
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
zishengye/compadre
d0ff10deca224284e7e153371a738e053e66012a
75b738a6a613c89e3c3232cbf7b2589a6b28d0a3
refs/heads/master
2021-06-25T06:16:38.327543
2021-04-02T02:08:48
2021-04-02T02:08:48
223,650,267
0
0
NOASSERTION
2019-11-23T20:41:03
2019-11-23T20:41:02
null
UTF-8
C++
false
false
2,630
cpp
//@HEADER // ************************************************************************ // // Kokkos v. 3.0 // Copyright (2020) National Technology & Engineering // Solutions of Sandia, LLC (NTESS). // // Under the terms of Contract DE-NA0003525 with NTESS, // the U.S. Governmen...
[ "pakuber@sandia.gov" ]
pakuber@sandia.gov
12b8f23c093b7f6d500992ab02a216b37f352b3d
9c1fb3c401db1345f91b6cfabe2937e8301da854
/emulator/emulatorbsp/specific/multitouch.cpp
1e8213c3b70b84ed58c234ff12d62fb9f99487cd
[]
no_license
SymbianSource/oss.FCL.sf.os.boardsupport
4df8e5f0f0b7fcc82f5acfd19f5b9ac0cb77bf2e
f56e7abb15ad570df84615851bc1718a5cd750da
refs/heads/master
2021-01-12T10:56:42.172825
2010-10-27T22:07:27
2010-10-27T22:07:27
72,764,766
1
2
null
null
null
null
UTF-8
C++
false
false
12,456
cpp
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). // All rights reserved. // This component and the accompanying materials are made available // under the terms of "Eclipse Public License v1.0" // which accompanies this distribution, and is available // at the URL "http://www.eclipse.org/legal/e...
[ "kirill.dremov@nokia.com" ]
kirill.dremov@nokia.com
344912c4e67ea53aaa170ef9a4dc849f8938c98a
0575e78dd9c2ef72e3f96a7f271db6561d16f5c2
/file_operations.h
cb9c1f68fadecc76ab1f38746730a144fd940049
[]
no_license
user576g/JSON_Editor
6ca75bb5ea4bb5aab84b15e7477618fe75fe29db
f106e253ef523d11750884279b65914ba723eacc
refs/heads/master
2023-01-15T15:15:29.449540
2020-11-22T20:50:09
2020-11-22T20:50:09
310,871,030
0
0
null
null
null
null
UTF-8
C++
false
false
254
h
#ifndef FILE_OPERATIONS_H #define FILE_OPERATIONS_H #include <QMessageBox> namespace file_op { extern bool is_changed; void open(); void new_file(); void save(); QMessageBox::StandardButton close(); }; #endif // FILE_OPERATIONS_H
[ "user_576@ukr.net" ]
user_576@ukr.net
4ef26d169df42015bd614218d7f0d7ede9bb4d6f
0e85fb2a771dafb5f52581de74a203f4c17ddd65
/S03_findRepeatNumberInArray_2.cpp
bf4b101270ab23a70d1a917c59d4ebed8c2b7e16
[]
no_license
ljtg24/Offer68
c0fe1097c8180d8ef284013f84613c341faec4b4
bba5752e124be3c19671a3c94e02c127f525fd4d
refs/heads/master
2020-06-29T00:09:58.906798
2019-09-02T02:19:50
2019-09-02T02:19:50
200,380,645
0
0
null
null
null
null
UTF-8
C++
false
false
4,495
cpp
// 面试题3(二):不修改数组找出重复的数字 // 题目:在一个长度为n+1的数组里的所有数字都在1到n的范围内,所以数组中至 // 少有一个数字是重复的。请找出数组中任意一个重复的数字,但不能修改输入的 // 数组。例如,如果输入长度为8的数组{2, 3, 5, 4, 3, 2, 6, 7},那么对应的 // 输出是重复的数字2或者3。 #include<cstdio> #include<iostream> using namespace std; int findRepeatNumber2(int* arr, int length); int countRange(int* arr, int length, int start...
[ "ljtg24@stu.xjtu.edu.cn" ]
ljtg24@stu.xjtu.edu.cn
bbd4dfee7dee25994c1057f9144a4308824d9024
d69fced8e9e8f0bea1777bb170865729c910008d
/samples/Juliet-1.3/C/testcases/CWE122_Heap_Based_Buffer_Overflow/s09/testcases.h
6464c1d8fc585f92545dd1b5f8f9a0c41bba8510
[]
no_license
maurer/marduk
efe7ba04ecc84263441a2167e4bc8b3d6d4d017a
2c47519a96e331f403fd7a9a058d0b51309a613f
refs/heads/master
2021-06-03T19:59:15.786320
2020-04-21T05:00:03
2020-04-21T05:01:45
110,798,164
3
1
null
null
null
null
UTF-8
C++
false
false
94,222
h
// NOTE - eventually this file will be automatically updated using a Perl script that understand // the naming of test case files, functions, and namespaces. #ifndef _TESTCASES_H #define _TESTCASES_H #ifdef __cplusplus extern "C" { #endif // declare C good and bad functions #ifndef OMITGOOD /* BEGIN-AUT...
[ "matthew.r.maurer@gmail.com" ]
matthew.r.maurer@gmail.com
b1b4c43e31d3ffa197bbfc082508928a14fb05e8
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/third_party/WebKit/Source/core/html/parser/TextResourceDecoder.h
e7d831082de349028c026b5658207cab5be78094
[ "BSD-3-Clause", "Apache-2.0", "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "MIT" ]
permissive
webosce/chromium53
f8e745e91363586aee9620c609aacf15b3261540
9171447efcf0bb393d41d1dc877c7c13c46d8e38
refs/heads/webosce
2020-03-26T23:08:14.416858
2018-08-23T08:35:17
2018-09-20T14:25:18
145,513,343
0
2
Apache-2.0
2019-08-21T22:44:55
2018-08-21T05:52:31
null
UTF-8
C++
false
false
4,854
h
/* Copyright (C) 1999 Lars Knoll (knoll@mpi-hd.mpg.de) Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) Copyright (C) 2006, 2008 Apple Inc. All rights reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License...
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com
8d948998de4fc685f8906b32ccc92eae0e4d6464
b9fe86aade0715e29267dd9ffbce1cf6ca7a27aa
/MovieStore/MovieStore/bintree.cpp
34bf29ce802a25ac1592aef9a6a4768de9c14d8a
[]
no_license
wilsongau/Lab4
9c7801e423f576e888f06f7df1372699beb09f52
978dfd7241939c0fb8c7fa6228d5b6bec5b1a636
refs/heads/master
2021-01-17T14:29:56.860190
2016-03-18T04:49:54
2016-03-18T04:49:54
53,706,621
0
0
null
2016-03-12T01:15:53
2016-03-12T01:15:52
null
UTF-8
C++
false
false
127
cpp
// file bintree.cpp // Member function definitions for class BinTree // Created by Wilson Gautama #include "bintree.h"
[ "ws_gau@yahoo.com" ]
ws_gau@yahoo.com
f7b1c72e45d6471ce4d45717f63194c83cfe3303
fc9f6f3411f5fcc1bc99e52b7a359db1499ba8dc
/Exercicios no FALCON/Desafio 01.cpp
7ec7de479be24f98c4fbc31500e12f544d9a6db4
[]
no_license
felipejrcampos/Projetos-C
a2bfd7fc192a2f40bf8bf2d2014ff3a29f46f1cc
2d93ce6834b250becec34c81456f09a7de0f549a
refs/heads/master
2021-01-17T14:54:09.542546
2016-10-07T20:24:01
2016-10-07T20:24:01
70,279,839
0
0
null
null
null
null
IBM852
C++
false
false
463
cpp
#include <stdio.h> int main() { int N; while(1) { printf("De a colocašao: "); scanf("%d",&N); if(N == 1) printf("Top 1\n"); else if(N >1 && N<=3) printf("Top 3\n"); else if(N >3 && N<=5) printf("Top 5\n"); else if(N >5 && N<=10) printf("Top 10\n"); else if(N >10 && N<=25) printf("Top 25\n"); else ...
[ "felipech25@hotmail.com" ]
felipech25@hotmail.com
5ca563c787aeefca7f2b0863de8531895e637912
6f72b28dd5fc3e5c04417afa888e6ffc70b00333
/shiva/shivalib/src/threadutils/shvsemaphore.cpp
674becc42dc8b58cd325eb69b513140624132a4f
[]
no_license
ElmerFuddDK/libshiva
71ffb760ded57920289fa863bffc1a6aa369a9ba
4d9424945f05a30ef3c3719bafe0bc931803cbf7
refs/heads/master
2021-10-26T20:25:37.787532
2021-10-19T06:08:15
2021-10-19T06:08:15
35,969,748
0
0
null
null
null
null
UTF-8
C++
false
false
4,316
cpp
/* * Copyright (C) 2008 by Lars Eriksen * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version with...
[ "le@ElmerFudd.gazolini.lan" ]
le@ElmerFudd.gazolini.lan
9fca7ca8af05fed4acdeba24a3180078477943e5
8fd570820384cdd97dafe62a138cdbbeb1a5644a
/improve/test.cpp
dc5c182bb4b3e80a02315bb0cc8a0dc162c5e555
[]
no_license
realize-me/lanqiao
433ce5c56be28ef49e890f15a0f7a5c8099b2385
e1bc95e11055a7e50bb95df077ea40f6fb5bec2d
refs/heads/master
2022-12-19T04:19:17.420189
2020-09-22T09:45:54
2020-09-22T09:45:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
88
cpp
#include<iostream> using namespace std; int main (){ cout << "111"; return 0; }
[ "1729498179@qq.com" ]
1729498179@qq.com
7a4268b7e5fce4690c7b1dfe53121eecf8879657
2236e050fb1602638a3680dfc4ad1654d8f631a4
/src/SnakeBody.cpp
fa292e1b6a5bb56012336adb718d0f7c88bf4948
[ "MIT" ]
permissive
DragonSWDev/vkSnake
27adb2b580c37be1347fe7c04c1e74286401a76d
b996b9136ea937fd27deef8654dbbc4bc6c3243d
refs/heads/main
2023-03-14T18:19:59.843745
2021-03-28T23:18:03
2021-03-28T23:18:03
352,456,210
1
0
null
null
null
null
UTF-8
C++
false
false
209
cpp
#include "SnakeBody.hpp" void SnakeBody::setPosition(int x, int y) { positionX = x; positionY = y; } void SnakeBody::setColor(int r, int g, int b) { colorR = r; colorG = g; colorB = b; }
[ "dswdev@outlook.com" ]
dswdev@outlook.com
6099edbf7e84e6b07dafc35e296136a61440ab36
f4fe4d3bb84cf8c6ae4b648120c13cd77c592673
/comp_graf/snakeT2/texture.cpp
10b84b6d61e9b7c7f61311c040dd1f26e38bfe39
[]
no_license
Thor99/OldAndMaybeNewThingz
5ab975574b9a545a1b61de8102d91897c13cbf10
0569eec3c522f3f75cf8fdb305ef91d48f6c65d5
refs/heads/master
2020-04-02T01:38:05.913850
2018-10-20T04:09:59
2018-10-20T04:13:45
153,866,904
1
0
null
null
null
null
UTF-8
C++
false
false
1,727
cpp
#ifdef _WIN32 #include <windows.h> #define _USE_MATH_DEFINES #endif #include "GL/gl.h" #include "GL/glu.h" #include "GL/glut.h" #include "texture.h" #include "Bitmap.h" bool Texture::Load(const char* file) { Bitmap bmp; if(bmp.loadBMP(file)) { glGenTextures(1, &m_texture); // Gera 1 textura vazia ...
[ "thor.garcia@pagar.me" ]
thor.garcia@pagar.me
12a1f8938ac710b9200b2f14f909c530465ef79a
4e84672aa7f672d87667a4c1c279e390239f07f8
/src/curl/Handler.hxx
ea9d4b8ae7a81397839a2b58e731510d2e13cb50
[]
no_license
ExpLife0011/libcommon
78b15d5007c10b2214ab399927b68074dc04d854
5883a98eae94ec710f9c0aea34a597dafc6b2b5c
refs/heads/master
2020-03-25T08:12:26.797494
2018-07-11T14:13:35
2018-07-11T14:13:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,790
hxx
/* * Copyright (C) 2008-2016 Max Kellermann <max@duempel.org> * * 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 conditi...
[ "max.kellermann@gmail.com" ]
max.kellermann@gmail.com
8bd071018dbba8eadaa382eead5531fb92572925
cbd6b46a59217034ba6220c123142d8149857c59
/Project4/VrMath/Parallelepiped.cpp
2170d92aa7a179047d8c676816f8248da8bf6df4
[]
no_license
xih108/Math155B
9740806dc7082262cb3ded20df8a0dc4d62e30f1
787ebabc8511c9127f49dc3e62f41a9f211a53c4
refs/heads/master
2021-07-12T06:32:09.499544
2020-07-23T22:51:41
2020-07-23T22:51:41
181,986,775
0
0
null
null
null
null
UTF-8
C++
false
false
3,092
cpp
/* * * RayTrace Software Package, release 3.0. May 3, 2006 * * Author: Samuel R. Buss * * Software accompanying the book * 3D Computer Graphics: A Mathematical Introduction with OpenGL, * by S. Buss, Cambridge University Press, 2003. * * Software is "as-is" and carries no warranty. It may be used without ...
[ "xih108@UCSD.EDU" ]
xih108@UCSD.EDU
60f4bb978de9518c4235cfd5e5a0d4a5c3baf1bc
5164d3fcb3ecd7d19020b68df3b5964279d9ec04
/src/Game.h
93f0305d119ccd45b90fdeec08fb2591961d9ba6
[ "MIT" ]
permissive
SomeGitName/tanks_game
71c38b084020ebdb5a2aae76d360ac543b0680f7
94611d5dedf8287a24f9cadf9df05d3a568a3209
refs/heads/main
2023-07-13T14:44:39.631245
2021-08-16T14:17:49
2021-08-16T14:17:49
388,824,424
0
0
null
null
null
null
UTF-8
C++
false
false
634
h
#pragma once #include <SDL2/SDL.h> // #include "Scene.h" #include "SceneManager.h" #include <string> class Game { public: Game(int width, int height, std::string title); void mainLoop(); void update(); void render(); void handleInput(); /** * Toggle pause mode * * @note all ...
[ "" ]
5292739d453ccc04f282f865c6c41e0199d47120
2e5f995c56722521fcdfc5bf450b8b08b74c8505
/Client/Desktop/EVSE/servermanager.cpp
b40341795bb8110437747e17aa6a47977738f4f4
[]
no_license
agrippa1994/mobile_evse
0fc360fa138adf55fe126fefd0d338d8e0f93836
8ddedfc1668eea3ddcb328893166d9b8afe6243a
refs/heads/master
2021-01-14T10:23:44.991834
2014-03-06T20:45:59
2014-03-06T20:45:59
24,558,530
0
0
null
null
null
null
UTF-8
C++
false
false
3,228
cpp
#include "servermanager.h" #include "ui_servermanager.h" #include <QHideEvent> #include <QShowEvent> #include <QVariant> #include <QByteArray> #include <QDataStream> #include <QMessageBox> #include <QMenu> #include <QSettings> #include <QPair> #include <QList> ServerManager::ServerManager(QWidget *parent) : QWid...
[ "agrippa1994@icloud.com" ]
agrippa1994@icloud.com