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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fd7d5e4fd1b17e402a2787f8296bfa8e0ded0194 | 2e0a91772d3d1a61a87c24411a7cff42d92a0a1c | /include/Interaction.h | 72c019dd2db63ea4493796ea580033729d90e44a | [] | no_license | lubosz/Collage | 0030e0239ba3a46bb6565a19cca0447e6358f19c | b84db3b19e778db19b9a939badcbca5a65d75e94 | refs/heads/master | 2020-12-24T17:35:22.651576 | 2011-07-13T14:27:31 | 2011-07-13T14:27:31 | 1,031,859 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,424 | h | /*
* Copyright 2010 The Collage Project
*/
#ifndef INTERACTION_H_
#define INTERACTION_H_
template <class T1, class T2>
class AbstractInteraction {
public:
AbstractInteraction() {}
virtual ~AbstractInteraction() {}
T1* first;
T2* second;
void initActors(T1* first, T2* second) {
this->first = first;
... | [
"treevg+github@gmail.com"
] | treevg+github@gmail.com |
516b058f542f91af4e852561e7914c6752da934e | f39523072290de7eb64409b6bfdcf52ecffcf537 | /2156/2156.cpp | f027fe1196e311eef91cf2fa19e51f0b8ab6cf87 | [] | no_license | mataeil/baekjoon | e6c00b16d56b29e8f96862a7fb1ff8c2703f6a77 | e26d9144e2831f20c4d15ace7eae9fc271fbd179 | refs/heads/master | 2021-01-20T20:21:51.839495 | 2016-06-20T14:34:18 | 2016-06-20T14:34:18 | 61,509,436 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 602 | cpp | #include <cstdio>
#include <cstdlib>
int d[10001];
int arr[10001];
int main(){
//freopen("test/9465.txt","r", stdin);
int n;
scanf("%d",&n);
for(int i=1; i<=n; i++){
scanf("%d",&arr[i]);
}
d[1] = arr[1];
d[2] = arr[1] + arr[2];
for(int i=3; i<=n; i+... | [
"taeil.ma0915@gmail.com"
] | taeil.ma0915@gmail.com |
89df6e0e4de6ddf0dd93b0bd667cc20b8bc5ba07 | 675f101437be7828bfc7dc50250c342a122c909a | /src/CyoClip/pch.cpp | f9cdd2d74c21b4e29785fe2a60dc99da7ded5a2e | [
"MIT"
] | permissive | calzakk/CyoClip | 31ff39309b9df345c2c15b6cc9777d5712f12411 | 70e9277add5a0358ed7c5814bc45efdaee6a0eed | refs/heads/master | 2020-04-18T19:15:34.120004 | 2019-02-23T20:34:54 | 2019-02-23T20:34:54 | 167,707,779 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,111 | cpp | /*
[CyoClip] pch.cpp
MIT License
Copyright (c) 2019 Graham Bull
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify,... | [
"kaizohh+github@gmail.com"
] | kaizohh+github@gmail.com |
e699e26ea51e1f7f5d3b34ae931e9ee467dbb6fe | 131620b984b19112be2616fe4e5855164c00c019 | /二叉树1.cpp | 9a80a0dda467cb2a07333759a27d62f019a3ade0 | [] | no_license | lollipopnougat/-C- | 70e966a4af632076667e591b598a187c8794de73 | 99ed0cb4e950e44ee83963dbf7d947b2051399c2 | refs/heads/master | 2021-09-15T14:16:16.585517 | 2018-06-03T15:22:12 | 2018-06-03T15:22:12 | 111,933,053 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,499 | cpp | //coding=UTF-8
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
template <typename T>
struct BiNode
{
T data;
BiNode<T>* lchild,* rchild;
};
template <typename T>
class BiTree
{
public:
BiTree(){root=Creat(root);} //建立新二叉树
~BiTree(){Relase(root);} //析构
void PreOrder(){PreOrder(root);}... | [
"33110314+lollipopnougat@users.noreply.github.com"
] | 33110314+lollipopnougat@users.noreply.github.com |
da9b6d29b294fa64d62de474e82479d7f6b193fb | f478932481fe15ab728db2e6eebaf1206a233ae0 | /HashTables/main.cpp | f0b9696ecb841777b50bf78c6df08c52d4291cac | [] | no_license | CoryBrown-42/HashTables | e0d7523d3af49148121795060b6e09fccd8d0f49 | 3945aed09411eed6352b2cf79681aa83fa1c00d3 | refs/heads/master | 2021-01-02T00:26:01.715517 | 2020-02-10T02:21:59 | 2020-02-10T02:21:59 | 239,410,689 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,195 | cpp | #include <iostream>
#include <vector>
#include <algorithm>//sort, random_shuffle
#include <string>
#include "Timer.h"
#include "DirectAddressTable.h"
#include "HashTable.h"
using namespace std;
class Movie
{
public:
int id;//Key to our Direct Address Table.
string movieData;
string name;
int playCount;
string g... | [
"afo.cory@gmail.com"
] | afo.cory@gmail.com |
a27547011ce786fc8fcff650861b5088930b80fd | 96378b829ce5a1c230aa6a17c434460b50397256 | /ps4/hashutil/hashtable.h | 1b2fad19801927a76efc36004d1aedf9a0a0fb2f | [] | no_license | a-dhagat/Advanced_Engineering_Computation | bdd90cc963b668e6e11a0ea20fc967a0915cf725 | 43b6811e0ea1a2d73593e1d62fde073619504738 | refs/heads/master | 2021-05-21T03:03:36.488870 | 2020-04-02T16:51:48 | 2020-04-02T16:51:48 | 252,513,405 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,264 | h | #ifndef HASHTABLE_IS_INCLUDED
#define HASHTABLE_IS_INCLUDED
/* { */
#include <vector>
#include <stdio.h>
#include "hashbase.h"
template <class KeyType,class ValueType>
class HashTable : public HashBase <KeyType>,public HashCommon
{
private:
class Entry
{
public:
KeyType hashKey;
CodeType hashCode;
ValueType... | [
"adhagat@andrew.cmu.edu"
] | adhagat@andrew.cmu.edu |
ea1123a960867db083fb54923071652567554322 | 869d2b0a1ab0e8f3bd8d4ac2345199aa4aff2842 | /mbn_common/include/mbn_common/MarkerSearcherCoordination.hpp | 015593ededcbf5615f4d9940ad2a279f6106f37c | [] | no_license | Bzhnja/MarkerBasedNavigation | 0df19734c751bffd5bcb84ac4c240b0017f48ed1 | e609a30252f1869131241bca186d6f818e8f96ce | refs/heads/master | 2021-05-26T23:07:42.101598 | 2013-03-07T15:42:22 | 2013-03-07T15:42:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,427 | hpp | /********************************************************************************
*
* MarkerSearcherCoordinationio
*
* Copyright (c) 2012
* All rights reserved.
*
* Davide Brugali, Aldo Biziak, Luca Gherardi, Andrea Luzzana
* University of Bergamo
* Dept. of Information Technology and Mathematics
*
* -------... | [
"lucaghera8@gmail.com"
] | lucaghera8@gmail.com |
aa3918f7bf71f11acb07efa1f67aa32ef81121f1 | fd29422c46d2cdec69ec5c5a960e661ecdcf7692 | /Course Work/CG/rubiksss/RubiksCubeSolution/RubiksCube/Quaternion.h | 48e2cdf412fa845096793073f8a32ba91f5f269f | [] | no_license | codechef34/Software-Engineering | 52a8e994e03036345b713f6ce94347e0cbd00251 | 213401d5382461fa3a85bad727a00f3650e208a8 | refs/heads/master | 2016-09-06T08:13:12.703773 | 2015-11-06T15:50:42 | 2015-11-06T15:50:42 | 42,978,546 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 289 | h | #pragma once
#include "Vector3f.h"
//should probably make it like a Vector4f
class Quaternion
{
public:
Quaternion(float _x, float _y, float _z, float w);
~Quaternion(void);
float X() const;
float Y() const;
float Z() const;
float W() const;
private:
Vector3f xyz;
float w;
};
| [
"jayaachyuth34@gmail.com"
] | jayaachyuth34@gmail.com |
254fe17af51dcc2d51ad008ca17dcdcfc322c4bd | f6bb52a9c8261d1cdc631010f9d1c325a7eed522 | /sketchbook/libraries/Adafruit_Motor_Shield_V2_Library/examples/DCMotorTest/DCMotorTest.ino | 8df7b37535197bcfae1af423628473e794327dd8 | [
"BSD-3-Clause",
"BSD-2-Clause",
"MIT",
"bzip2-1.0.6",
"LicenseRef-scancode-x11-doc",
"BSD-Protection",
"LGPL-3.0-or-later",
"MS-PL",
"blessing",
"BSD-4.3TAHOE",
"IJG",
"Zlib",
"LicenseRef-scancode-ibm-dhcp",
"NCSA",
"LicenseRef-scancode-proprietary-license",
"LicenseRef-scancode-fftpac... | permissive | technoman72/BlocklyArduino_electrified | f83d55c9bcaa0a8ac1d3d93eeceba6830c6ac7c2 | b91c1d37313ba5f5d0065e8cb264e7d7b45eb2e9 | refs/heads/master | 2020-04-28T23:54:41.710317 | 2019-03-08T18:12:38 | 2019-03-08T18:12:38 | 175,167,947 | 0 | 0 | MIT | 2019-03-12T08:34:04 | 2019-03-12T08:33:52 | null | UTF-8 | C++ | false | false | 1,685 | ino | /*
This is a test sketch for the Adafruit assembled Motor Shield for Arduino v2
It won't work with v1.x motor shields! Only for the v2's with built in PWM
control
For use with the Adafruit Motor Shield v2
----> http://www.adafruit.com/products/1438
*/
#include <Wire.h>
#include <Adafruit_MotorShield.h>
// Create t... | [
"scanet@libreduc.cc"
] | scanet@libreduc.cc |
e0b355021f47e40cd0ee492143bdce309390c50c | 0683df0449351618fffb8865f3e77ecdcab1b7cb | /src/scripts/struct_enum.cpp | 2af897b7d9f9c8883d713cf628433dd40ee7b5bb | [] | no_license | mtbthebest/C- | 0e1c6aab5697f8d09165dcb78a58fbea110fd6ea | eb4aa51137c8192fa2257df91e94ad767d5fb232 | refs/heads/master | 2021-05-01T03:54:31.677598 | 2018-08-19T09:56:02 | 2018-08-19T09:56:02 | 121,196,082 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,469 | cpp | //
// Created by mtb on 18/08/13.
//
#include <iostream>
using namespace std;
void structure1(){
struct person{
char name[30];
long int tel_num ;
short int id;
};
struct person p;
p.id = 0;
std::cout <<p.id;
}
void structure2(){
struct{
char name[30];
... | [
"mtbthebest11@gmail.com"
] | mtbthebest11@gmail.com |
c9b018ab489d09a60c9b3a722c68c5796154fa4f | 5ebd5cee801215bc3302fca26dbe534e6992c086 | /blazetest/src/mathtest/tsvecdmatmult/VCaLDb.cpp | ac1c1eb15a7ebaec60365d4d1d4bfc6d10284266 | [
"BSD-3-Clause"
] | permissive | mhochsteger/blaze | c66d8cf179deeab4f5bd692001cc917fe23e1811 | fd397e60717c4870d942055496d5b484beac9f1a | refs/heads/master | 2020-09-17T01:56:48.483627 | 2019-11-20T05:40:29 | 2019-11-20T05:41:35 | 223,951,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,349 | cpp | //=================================================================================================
/*!
// \file src/mathtest/tsvecdmatmult/VCaLDb.cpp
// \brief Source file for the VCaLDb sparse vector/dense matrix multiplication math test
//
// Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved
//
// Th... | [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
6d71e4baf5a481be899d10a0bb60b094a5eeeceb | 677a41245532f3ab53adc699a7314b3b08ba6d88 | /main.cpp | 2a6a17db5fe65fd7b589b81dbcb13c97a5109eb7 | [] | no_license | cqcy321/SfM_VGG_Corridor | 8d1b759fb2bdd6881c16292b2dabacd5b1faeacd | e3b66f08ca5c4738976721e942c895bdb55dfe80 | refs/heads/master | 2021-01-25T08:19:16.742292 | 2017-06-08T13:37:35 | 2017-06-08T13:37:35 | 93,752,048 | 0 | 0 | null | 2017-06-08T13:37:36 | 2017-06-08T13:23:56 | C++ | UTF-8 | C++ | false | false | 3,370 | cpp | //#include <opencv2/sfm.hpp>
//#include <opencv2/core.hpp>
//#include <opencv2/viz.hpp>
//#include"reconstruct.hpp"
////#define CERES_FOUND
//#include <iostream>
//#include <fstream>
//#include <string>
//using namespace std;
//using namespace cv;
//using namespace cv::sfm;
//static void help() {
// cout
// << "\... | [
"cqcy3210@gmail.com"
] | cqcy3210@gmail.com |
93db95eab0a9772de90e5592cabfd834ddc5d4d1 | ad96f75c43216c3b137fe5e9ff370fb139adb77e | /src/blockchain/BlockChain.cpp | 3847d08238312f06d4c1796794cf6f008816f22f | [] | no_license | Realitian/Blockchain | 70e2b237782059b4a5e689325eea3ca39f2ec762 | 1362c65cfa32ae9c83c1cd280b5d6a602e757705 | refs/heads/master | 2020-03-07T08:10:42.379000 | 2016-12-17T14:35:14 | 2016-12-17T14:35:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,345 | cpp | #include "../../include/blockchain/BlockChain.h"
using Cuple = std::tuple<int, string, Block>;
BlockChain::BlockChain() :
blocks([](const Cuple& x, const Cuple& y)
{
if ((std::get<0>(x) > std::get<0>(y)))
return true;
if (std::get<0>(x) == std::get<0>(y))
{
return (std::get<1>(x) > std::get<1>(y));
}
return f... | [
"louis.franc@insa-rouen.fr"
] | louis.franc@insa-rouen.fr |
5d12485301120e24825d30ba1b7ff246ea19d4bc | 051e45f74b0e88c6b3dfa1308695fa71824e85af | /src/displaygreeting.cpp | c313bffc49fdf9187641f924b23ec42b35c6ba26 | [] | no_license | MvGaster/esp-gift | 62acc8ee7c1d56b9fc33562165c6b98fbc5934bf | 8e586aeba97c4a8b56239107b026d54b43462aec | refs/heads/master | 2023-01-31T01:53:09.734114 | 2020-12-15T21:26:22 | 2020-12-15T21:26:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,970 | cpp | #include <Arduino.h>
#define FlashFS LittleFS
#include <SPI.h>
#include <TFT_eSPI.h> // Hardware-specific library
#include "displaygreeting.h"
#include <AnimatedGIF.h>
#include "mc-white.h"
#define DISPLAY_WIDTH 320
#define DISPLAY_HEIGHT 240
#define BUFFER_SIZE 320 // Optimum is >= GIF width or integral division of ... | [
"fenno@dekuiper.com"
] | fenno@dekuiper.com |
1ee91556c50974d44430a0968470a334078d71b9 | 29d542a87293372f43bc05df6f979e54431c0699 | /ABM-Office-System-cpp/MainFrm.cpp | 967f9f86c624072bd9d8e5d732450e62ac021d47 | [] | no_license | abmadmin/ABM-Office-System-Cpp | f2946de5118a7ff13b747aa01a9a27a09636414f | 094b666fc2e106cbf5465dfc60848596490f7056 | refs/heads/master | 2021-01-22T10:17:56.522682 | 2017-11-16T00:11:17 | 2017-11-16T00:11:17 | 26,842,131 | 0 | 0 | null | 2017-11-16T00:11:18 | 2014-11-19T03:12:48 | C++ | UTF-8 | C++ | false | false | 3,925 | cpp |
// MainFrm.cpp : implementation of the CMainFrame class
//
#include "stdafx.h"
#include "ABM-Office-System-cpp.h"
#include "MainFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMainFrame
IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
ON_WM_CREATE()
ON_COMMAND_RANGE... | [
"brisbanemission@outlook.com"
] | brisbanemission@outlook.com |
3d5dbe8b392d630dd60e12ed7f5ef915d553ae42 | d13384eb8025ba0c0830fabec28104813b5a474d | /RayTracer/Point3.h | d38b5a0e79d6a5123a830f6aebc02d649592af2c | [] | no_license | devgoose/RayTracer | f61fcd04f027080ad5cdc17c5705e310ab9aa2e1 | d9b369047aa910057fd5065079aebec0c965cbab | refs/heads/main | 2023-02-14T17:09:10.542168 | 2021-01-17T10:05:25 | 2021-01-17T10:05:25 | 308,991,187 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,278 | h | #pragma once
#include "Vector3.h"
/**
* Holds a point in 3D space.
*/
class Point3
{
private:
float x;
float y;
float z;
public:
/**
* Default constructor sets point at the origin.
*/
Point3() {
x = 0;
y = 0;
z = 0;
}
Point3(float x_, float y_, float z_) {
x = x_;
y = y_;
z ... | [
"walte735@umn.edu"
] | walte735@umn.edu |
bf2a4905cf92e205ef78802faecc07b590251033 | 37867f639363ab2f188028dc158b483b6e6b81f3 | /Src/Logic/Entity/Components/DamageTrap.cpp | e848a3e5f058b2e8e47ba5020aaca7665f4a8b1a | [] | no_license | ailuoxz/BadPrincess-Game | 704143bcafe1205a2ccdd7dbd68ed284c6fa1d76 | 47caae1a03fdfe8058260e44add25fd8e89f99c3 | refs/heads/master | 2021-12-14T15:13:50.974644 | 2017-05-04T16:31:22 | 2017-05-04T16:31:22 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 3,877 | cpp | /**
@file DamageTrap.cpp
Implementation of DamageTrap component
@see Logic::IComponent
@author Rayco Sánchez García
@date February, 2015
*/
#include "DamageTrap.h"
#include "Logic/GraphicsMessages.h"
#include "Logic/CombatMessages.h"
#include "Logic/RangerMessages.h"
#include "Logic/PhysicMessages.h"
#include "Log... | [
"raycosanchezgarcia@gmail.com"
] | raycosanchezgarcia@gmail.com |
c760017a97b26adf2592b0728f0ad941a45e2731 | 80ae6fa40003ac2cfdd1f36a9ec5f7fb2b4b07f5 | /devel/include/grid_map_msgs/ProcessFileRequest.h | 6e9df4de2a73ce2dc50e736504db0b4e7598accc | [] | no_license | Blasterbotica/RobotCode2017 | aa91fb57c46829d486db76e73801b44d980d4525 | 49672b2a6c5c079a8e437a28d053792911e77e51 | refs/heads/master | 2021-01-20T14:18:59.189988 | 2017-02-22T02:19:44 | 2017-02-22T02:19:44 | 82,749,817 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,482 | h | // Generated by gencpp from file grid_map_msgs/ProcessFileRequest.msg
// DO NOT EDIT!
#ifndef GRID_MAP_MSGS_MESSAGE_PROCESSFILEREQUEST_H
#define GRID_MAP_MSGS_MESSAGE_PROCESSFILEREQUEST_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_... | [
"andy.p@comcast.net"
] | andy.p@comcast.net |
73ad81105d2f6368ab989adf20c9018c352bf49f | 454e927a0131d4a94ec60341593c09da204b7024 | /main.cpp | 90a26323e614ffb6a73586b6921d3b641aa95351 | [] | no_license | mysliwy112/Decypher | fdbb8c91b85fd898acb159caa3dc73012325c3d6 | ad722729b594484700e0e2a660218d826364b9d1 | refs/heads/master | 2021-05-10T22:58:16.895733 | 2018-01-20T19:38:40 | 2018-01-20T19:38:40 | 118,271,982 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,283 | cpp | #include <iostream>
#include <conio.h>
#include <fstream>
#include <string>
using namespace std;
int main(int argc, char* argv[])
{
string file;
string dup=".dup";
bool h=0;
int i=0;
int mini=1;
int reset;
char w;
if(argc==2){
ifstream from;
ofstream t... | [
"noreply@github.com"
] | noreply@github.com |
d4ce33d8c80d7095bdd8f3ccdf9f7ad5d497634c | ac302767a37f8b4c621130c63b73467c78f958a7 | /test/sequence_player_test.cpp | 55b0d815300005f1b12e242c431443014bf259eb | [] | no_license | jimm/mrmkcs | b983f37bea0f8f6c8da98605a51a407b1f3b45e1 | 8c9bd5d4f5b943c671379cd329ebe8aed67bf884 | refs/heads/main | 2023-04-14T13:52:05.646896 | 2021-03-13T20:02:29 | 2021-03-13T20:02:29 | 341,645,508 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,913 | cpp | #include "catch.hpp"
#include "test_helper.h"
#include "../src/sequence_player.h"
#define CATCH_CATEGORY "[sequence_player]"
TEST_CASE("one tick sends multiple events", CATCH_CATEGORY) {
MrMKCS *mrm = create_test_data();
Output *out1 = mrm->outputs()[0];
Output *out2 = mrm->outputs()[1];
// sanity checks
R... | [
"jim.menard@warbyparker.com"
] | jim.menard@warbyparker.com |
4f169d7cc2f5c287f55d4708d55dfaf766a204e8 | 7a11814cb2d966035582e0334f184d4786a4f79d | /rocksdb-cloud/include/rocksdb/options.h | c6c71ae63cb7e03e3d45dbb53aa00018b8c799eb | [
"Apache-2.0",
"GPL-2.0-only",
"BSD-3-Clause"
] | permissive | naivewong/YCSB-C | f6e1efadfa69688b1a7311b5ce18fe6b4ca4e9a8 | 9a603e95083950278ed0972e2ee889edf77e4148 | refs/heads/master | 2022-12-16T16:16:00.106547 | 2020-09-13T12:52:50 | 2020-09-13T12:52:50 | 257,572,961 | 0 | 0 | Apache-2.0 | 2020-04-21T11:26:35 | 2020-04-21T11:26:34 | null | UTF-8 | C++ | false | false | 68,591 | h | // Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
// This source code is licensed under both the GPLv2 (found in the
// COPYING file in the root directory) and Apache 2.0 License
// (found in the LICENSE.Apache file in the root directory).
// Copyright (c) 2011 The LevelDB Authors. All rights reser... | [
"867245430@qq.com"
] | 867245430@qq.com |
6d285c7e11bfc190faa74cc109a48d53c3c05219 | 2c565fe86a03b1e971e696a516749196cd3ae39f | /src/libs/dependency_graph/port.h | 70a2403e7657798c7fc0aa5d796c29b311d7320b | [
"MIT"
] | permissive | ziranjuanchow/possumwood | 0e4ecc053ef2db838e7651d4bbdb506d4a949def | 5357f1fea2a2bf2a00dcba60c48d3c8bcfcaa138 | refs/heads/master | 2020-03-15T10:25:39.447999 | 2018-04-07T16:23:23 | 2018-04-07T16:23:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,821 | h | #pragma once
#include <string>
#include <boost/noncopyable.hpp>
#include <boost/signals2.hpp>
#include "attr.h"
namespace dependency_graph {
class NodeBase;
class Port : public boost::noncopyable {
public:
Port(Port&& p);
const std::string& name() const;
const Attr::Category category() const;
const unsi... | [
"martin.prazak@gmail.com"
] | martin.prazak@gmail.com |
c0b49f7a2ada6379b22f1b23fd4e0793e1b29e72 | b1fe3e9df7cb0306fb1e1ffbcaa609a00a28711c | /Week7_5/CMP105App/Companion.cpp | 20481c77fa78725710ce7122e6a8e3d1c1dba6dd | [] | no_license | zara-01/CMP105_W7 | 4a304e0cdd5f0224b5fef0a5eb441da044cce730 | deda2788e4b13df14c528f97be37154ea2ee2cf4 | refs/heads/master | 2021-01-27T09:43:48.466436 | 2020-02-27T11:02:07 | 2020-02-27T11:02:07 | 243,477,284 | 1 | 0 | null | 2020-02-27T09:12:32 | 2020-02-27T09:12:32 | null | UTF-8 | C++ | false | false | 326 | cpp | #include "Companion.h"
Companion::Companion()
{
setPosition(500, 500);
setSize(sf::Vector2f(10, 10));
setFillColor(sf::Color::Blue);
setVelocity(500, 0);
}
Companion::~Companion()
{
}
void Companion::update(float dt)
{
move(velocity*dt);
}
void Companion::moveToPlayer(Player* p)
{
setPosition(p->getPosition(... | [
"p.robertson@abertay.ac.uk"
] | p.robertson@abertay.ac.uk |
3e6d00e2bb42d06e296ea451d1288351c216a7e7 | 889e3b52ee46863ec0fea1173d7860f15206dbf3 | /src/device_util.cpp | 8a99282cc10937a5b41711658b921e62c35d91a9 | [
"MIT"
] | permissive | guacamoleo/HIP | 83dcb08e19775b6d6a3689a2dcdeb4be956af611 | bca828c2ee07f3b34b44ee82c145beb7be9e669b | refs/heads/master | 2021-01-21T08:51:32.126194 | 2016-05-16T15:45:37 | 2016-05-16T15:49:05 | 58,941,734 | 1 | 0 | null | 2016-05-16T15:03:28 | 2016-05-16T15:03:28 | null | UTF-8 | C++ | false | false | 19,292 | cpp | #include"hip_runtime.h"
#include<hc.hpp>
#include<grid_launch.h>
#include <hc_math.hpp>
// TODO: Choose whether default is precise math or fast math based on compilation flag.
#ifdef __HCC_ACCELERATOR__
using namespace hc::precise_math;
#endif
__device__ float acosf(float x)
{
return hc::precise_math::acosf(x);
}... | [
"maneesh.gupta@amd.com"
] | maneesh.gupta@amd.com |
911373501a1da7cb5dec203c9bd9156bf783d9d3 | 58760cff187f760b6b6bf1aceccfa803c0d043a9 | /omnn/math/Variable.cpp | 51d3db77a72eae41df3542aea74eb67c686d78a0 | [
"BSD-3-Clause"
] | permissive | leannejdong/openmind | 0ed236ca688d5e620ffc3207135ba2b1c7676727 | 69af704c420ffa89100ecd3709ad9ff39ee4da05 | refs/heads/master | 2022-09-22T07:18:32.206294 | 2020-05-23T20:56:25 | 2020-05-25T01:24:41 | 272,738,597 | 1 | 0 | BSD-3-Clause | 2020-06-16T15:02:37 | 2020-06-16T15:02:36 | null | UTF-8 | C++ | false | false | 6,685 | cpp | //
// Created by Сергей Кривонос on 25.09.17.
//
#include "Variable.h"
#include "Exponentiation.h"
#include "Integer.h"
#include "Modulo.h"
#include "Product.h"
#include "Sum.h"
#include "VarHost.h"
namespace omnn{
namespace math {
Variable::Variable()
: varSetHost(&VarHost::Global<>(), [](auto){})
, varI... | [
"sergeikrivonos@gmail.com"
] | sergeikrivonos@gmail.com |
6712a7873de56d3bfb5b8f6355987e86e4a71fd8 | 2d89d3b317d11b0dc61ff94e799a0f6a77966317 | /Bacon/Vertex.h | f2fca85471048d5a9cf2cad5431fb4b226444edd | [] | no_license | CramsGames/Bacon | 756e8edb8a31a570e688ab747615dad50c44665d | 668ff5e63911ba87f52d91affee7304bba26adff | refs/heads/master | 2021-07-11T12:07:03.152802 | 2017-10-14T10:29:04 | 2017-10-14T10:29:04 | 106,472,291 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 239 | h | #pragma once
#include <glm\glm.hpp>
struct Vertex {
public:
Vertex (glm::vec3 position = glm::vec3 (), glm::vec2 texcoord = glm::vec2 (), glm::vec3 normal = glm::vec3 ());
glm::vec3 position;
glm::vec2 texcoord;
glm::vec3 normal;
}; | [
"craigc@cramsgames.co.uk"
] | craigc@cramsgames.co.uk |
9d89455863c86d1c3f1dc1daa98170766cab6373 | 0bf4e9718ac2e2845b2227d427862e957701071f | /tc/tco07/SortMaterials.cpp | 2f0b8d39b42e4d5da5434307cab2cc2a30009a3d | [] | no_license | unjambonakap/prog_contest | adfd6552d396f4845132f3ad416f98d8a5c9efb8 | e538cf6a1686539afb1d06181252e9b3376e8023 | refs/heads/master | 2022-10-18T07:33:46.591777 | 2022-09-30T14:44:47 | 2022-09-30T15:00:33 | 145,024,455 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,865 | cpp | // BEGIN CUT HERE
// END CUT HERE
#line 5 "SortMaterials.cpp"
#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <queue>
#include <stack>
#include <algorithm>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <cstdlib>
#include <string>
#inclu... | [
"benoit@uuu.com"
] | benoit@uuu.com |
bdcd25cd399085686666b478683e5493088c7295 | 1c6a7125c8ea024050045fb18a685daadcfbcb0f | /codeforces/random/CF 509 A Maximum in Table.cpp | fed5fa6fb0e5b11f6904022140913db85fc1ec4d | [] | no_license | HurayraIIT/competitive-programming | 0e2f40cf1cae76129eac0cd8402b62165a6c29e4 | 3b9bc3066c70284cddab0f3e39ffc3e9cd59225f | refs/heads/master | 2022-12-10T18:33:10.405727 | 2022-12-06T13:15:15 | 2022-12-06T13:15:15 | 236,779,058 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 600 | cpp | /* Name: Abu Hurayra
Handle: HurayraIIT
Institute: IIT_JU */
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef string S;
typedef double D;
typedef vector<int> vi;
#define pi acos(-1.0)
#define endl '\n'
#define off ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
int va... | [
"noreply@github.com"
] | noreply@github.com |
8116032639f4180fe1acbd8a9c2ebc3687827a46 | 03b5b626962b6c62fc3215154b44bbc663a44cf6 | /src/message/code_message.cpp | 450f3f75a0a70cdd12dc8e20edd57c626c50437d | [] | no_license | haochenprophet/iwant | 8b1f9df8ee428148549253ce1c5d821ece0a4b4c | 1c9bd95280216ee8cd7892a10a7355f03d77d340 | refs/heads/master | 2023-06-09T11:10:27.232304 | 2023-05-31T02:41:18 | 2023-05-31T02:41:18 | 67,756,957 | 17 | 5 | null | 2018-08-11T16:37:37 | 2016-09-09T02:08:46 | C++ | UTF-8 | C++ | false | false | 441 | cpp | #include "code_message.h"
int Ccode_message::my_init(void *p)
{
this->name = "Ccode_message";
this->alias = "code_message";
return 0;
}
Ccode_message::Ccode_message()
{
this->my_init();
}
Ccode_message::~Ccode_message()
{
}
#ifndef CODE_MESSAGE_TEST
#define CODE_MESSAGE_TEST 0//1
#endif
#if CODE_MESSAGE_TEST
#... | [
"hao.chen@prophet.net.cn"
] | hao.chen@prophet.net.cn |
d773d2d24c7bdbe1c6b74552008da761bf3524be | 86fed93848ee8d6cee3f4dc2997865b721f18165 | /Code Design and Data Structures/Assignments/aieBootstrap-master/Binary Tree/BinaryTree.cpp | 42cb5fa0700f822e012da269e9a31b072835eb1b | [
"MIT"
] | permissive | Sorry-Im-Salty/AIE-2019 | c92facc8aff595fc499f1ba460d9e5cbec21b3a1 | 0cf11a754c597d5aa2222df610cf7a9a6dac6bbd | refs/heads/master | 2020-05-07T18:34:49.582673 | 2019-09-10T06:52:57 | 2019-09-10T06:52:57 | 180,077,077 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,779 | cpp | #include "BinaryTree.h"
BinaryTree::BinaryTree() {
m_pRoot = nullptr;
}
BinaryTree::~BinaryTree() {
}
void BinaryTree::draw(aie::Renderer2D* renderer, TreeNode* selected) {
draw(renderer, m_pRoot, 640, 680, 640, selected);
}
void BinaryTree::draw(aie::Renderer2D* renderer, TreeNode* pNode, int x, int... | [
"47731654+Sorry-Im-Salty@users.noreply.github.com"
] | 47731654+Sorry-Im-Salty@users.noreply.github.com |
67a497eac284e1d4da7cf02aea0c06ab1f79353c | d7d73f1fe572fcc9ef3615c35caa94550304ca48 | /RoboCore/00.Curso Arduino para Iniciantes - RoboCore/Exemplo_06_Dimmer/Exemplo_06_Dimmer.ino | 9dfe60bbeceb99a568fb5f97a32f44200ed90ea5 | [] | no_license | Jcfurtado/ArduinoProjects | a2740ea17e27608d4c10d3297e27bccf7d41999a | 0b4fdb1c76604a02279dcc1290627811cb4ef169 | refs/heads/master | 2020-05-18T09:18:02.342189 | 2019-04-30T19:40:00 | 2019-04-30T19:40:00 | 184,321,012 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,146 | ino |
/*************************************************************************
** **
** CURSO ARDUINO PARA INICIANTES - ROBOCORE **
** **
** Exemplo 06: Dim... | [
"cardozofurtado@gmail.com"
] | cardozofurtado@gmail.com |
b4fb7a348eb48272f835fa27dcb21d744ed4746e | bfa0562c391fa4019fcd49f0b0aafb4611b696a9 | /net/TimerQueue.h | 729cff1ca23996569c287630a22786600ccf3c47 | [] | no_license | Th824/MySimpleWebServer | 193ffb56097c0f86f031dfa9cf04d2452b2dd460 | bf6d373a8208db8f88c7cdf73abf11c8857f08ee | refs/heads/master | 2021-04-17T07:18:09.570288 | 2020-05-12T09:41:05 | 2020-05-12T09:41:05 | 249,424,255 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,834 | h | # pragma once
# include <vector>
# include <mutex>
# include <set>
# include <atomic>
# include "base/Timestamp.h"
# include "base/Callback.h"
# include "base/noncopyable.h"
# include "Channel.h"
class EventLoop;
class Timer;
class TimerID;
class TimerQueue : noncopyable {
public:
explicit TimerQueue(EventLoop* loo... | [
"wuzihui64@gmail.com"
] | wuzihui64@gmail.com |
e468968ba4ccf26f240d788eed778d705ac6da30 | 27974ef06083b306028ade82a6c174377ab649fd | /period/freshman/contest/Mission X+2/E.cpp | ccd7c2c70dbb9c3e5836dbca8dc7d480f087d970 | [] | no_license | lightyears1998/a-gzhu-coder | 6ba7fe23f663ee538c162927cfecb57e20bc0dbc | b882a2e8395155db0a57d59e7c5899386c5eb717 | refs/heads/master | 2021-06-05T05:33:14.988053 | 2020-05-23T12:52:57 | 2020-05-23T12:52:57 | 100,114,337 | 14 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,130 | cpp | #include <bits/stdc++.h>
using namespace std;
const char peo[4][4] {".O.", "/|\\", "(.)"};
int h, w;
bool take[150][150];
char pic[150][150];
void dye(int x, int y)
{
for (int i=0; i<3; ++i) {
for (int j=0; j<3; ++j) {
if (peo[i][j] == pic[x+i][y+j]) {
take[x+i][y+j] = true;
}
}
}
}... | [
"lightyears1998@hotmail.com"
] | lightyears1998@hotmail.com |
28c0959ee33fb7a161bdc63e76c15b22faaa6826 | 67ce8ff142f87980dba3e1338dabe11af50c5366 | /opencv/src/opencv/modules/imgproc/src/filter.simd.hpp | 7c257f3c5003d01250723bc0f609b6678d36a13a | [
"Apache-2.0"
] | permissive | checksummaster/depthmovie | 794ff1c5a99715df4ea81abd4198e8e4e68cc484 | b0f1c233afdaeaaa5546e793a3e4d34c4977ca10 | refs/heads/master | 2023-04-19T01:45:06.237313 | 2021-04-30T20:34:16 | 2021-04-30T20:34:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 141,817 | hpp | /*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, i... | [
"alex@shimadzu.ca"
] | alex@shimadzu.ca |
042cafecb59071436227ea89064c7388eb278389 | 5a49b5da44fa9c3a585febcf3d975197d872efc9 | /SGPLibraryCode/modules/sgp_render/font/sgp_FontManager.h | 12e9f1e4d13cbd0aebab80d4343fd4230ceeedb1 | [
"MIT"
] | permissive | phoenixzz/SGPEngine | 1ab3de99fdf6dd791baaf57e029a09e8db3580f7 | 593b4313abdb881d60e82750b36ddda2d7c73c49 | refs/heads/master | 2021-01-24T03:42:44.683083 | 2017-01-24T04:39:43 | 2017-01-24T04:39:43 | 53,315,434 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,155 | h | #ifndef __SGP_FONTMANAGER_HEADER__
#define __SGP_FONTMANAGER_HEADER__
#include <ft2build.h>
#include FT_FREETYPE_H
#include <freetype/ttunpat.h>
#include <freetype/ftoutln.h>
class ISGPFontManager
{
public:
ISGPFontManager(ISGPRenderDevice* pDevice);
~ISGPFontManager();
void Release(void);
bool AddFont( const... | [
"phoenixzz@sina.com"
] | phoenixzz@sina.com |
37532fe06d121e184fd8f5435ce2bccd8802cd79 | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /chrome/browser/android/preferences/prefs_unittest.cc | c59ebc5a046882a5782cc79a2836b1b4f256d577 | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 2,968 | cc | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/android/preferences/prefs.h"
#include "base/stl_util.h"
#include "chrome/browser/android/preferences/pref_service_bridge.h"
#inc... | [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
3f54290bc6ec41756c7f0262cdc7fcd47cf4c801 | 38bd665e7a80f9aa8f3acac7317c7924ed3e745a | /src/server/gui/core/HttpReq.cpp | feaea8a3cb09e04070873aaf045e56b39754ffb7 | [
"BSD-3-Clause"
] | permissive | MayaPosch/NymphCast | 855cb5e05a1b979a600a8b7baf62619f4cc431dd | 7ac8d5a86e1a1b4987092a3398d1fa1987f18eb6 | refs/heads/master | 2023-08-30T06:06:25.443885 | 2023-08-07T17:58:57 | 2023-08-07T17:58:57 | 169,604,606 | 2,405 | 89 | BSD-3-Clause | 2023-04-14T08:54:58 | 2019-02-07T16:38:44 | C++ | UTF-8 | C++ | false | false | 4,568 | cpp | #include "HttpReq.h"
#include "utils/FileSystemUtil.h"
#include "Log.h"
#include <assert.h>
CURLM* HttpReq::s_multi_handle = curl_multi_init();
std::map<CURL*, HttpReq*> HttpReq::s_requests;
std::string HttpReq::urlEncode(const std::string &s)
{
const std::string unreserved = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefgh... | [
"maya@nyanko.ws"
] | maya@nyanko.ws |
3bb13adb5867e4472433ca96a0a492b1bbdd138b | 2de766db3b23b1ae845396fbb30615c01cc1604e | /leetcode/longest-common-prefix.cpp | 4de5e392a06b2c51ccc4a658d26a4f0d2e1e3cec | [] | no_license | delta4d/AlgoSolution | 313c5d0ff72673927ad3862ee7b8fb432943b346 | 5f6f89578d5aa37247a99b2d289d638f76c71281 | refs/heads/master | 2020-04-21T01:28:35.690529 | 2015-01-29T13:38:54 | 2015-01-29T13:38:54 | 8,221,423 | 1 | 0 | null | 2013-04-09T15:10:20 | 2013-02-15T16:09:33 | C++ | UTF-8 | C++ | false | false | 498 | cpp | // 40ms
// simulation
class Solution {
public:
string longestCommonPrefix(vector<string> &strs) {
if (strs.empty()) return "";
int n = (int)strs.size(), len = (int)strs.front().length();
for (int i=0; i<len; ++i) {
for (int j=1; j<n; ++j) {
if ((int)strs[j].length... | [
"delta4d@gmail.com"
] | delta4d@gmail.com |
4bfdcd08ea842498c98529b1bf3815abac3b9d6b | c58154363ce9235d334249bbd3a150b295676b28 | /FileWatcher/FileWatcherAdapter.h | 1ddeb096810e385a714a105b2f16613e2ac265d8 | [
"Unlicense"
] | permissive | ifukazoo/FileWatcher | 16ebedf6cb9e5ce8864ac93dfc9a962dc98168b2 | 3e0f561e30ae9fd54f55debb695af873072b3b0a | refs/heads/master | 2020-04-04T15:49:04.895966 | 2018-11-04T05:45:54 | 2018-11-04T05:45:54 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 944 | h | #pragma once
namespace FileWatcher {
class FileWatcherAdapter
{
public:
FileWatcherAdapter(HWND);
void StartWatching(const std::string&, const std::vector<std::string>&);
void StopWatching();
void OnChanged(System::Object ^, System::IO::FileSystemEventArgs^);
private:
HWND receiver_;
std::vect... | [
"yamanobori_old@yahoo.co.jp"
] | yamanobori_old@yahoo.co.jp |
0747410c8e4a129d1581ca9ae73c2c693d246d37 | b1aa9ad6733efcb53d465809d5109e9174dabf04 | /GameEngineGems3(WithCode)/geg3-chapter4/Include/Libraries/NewtonDynamics/packages/dCustomJoints/CustomInputManager.h | 05ec5c386ed1dfafc7e489ded7dcdf4537e66f9b | [
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | dumpinfo/GameMatrixTest | d21545dbef9ade76fe092343a8362da4c8b142ca | 9e4a73ad17555ddb90020c47e2486698b90e4d0d | refs/heads/master | 2023-02-04T01:52:05.342214 | 2020-12-23T17:22:36 | 2020-12-23T17:22:36 | 323,961,033 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,967 | h | /* Copyright (c) <2003-2011> <Julio Jerez, Newton Game Dynamics>
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any... | [
"twtravel@126.com"
] | twtravel@126.com |
5c5d59f6cf6ab5bf0c2b4354f283c773332deb22 | 88ae8695987ada722184307301e221e1ba3cc2fa | /third_party/blink/renderer/core/svg/svg_fe_offset_element.cc | 32fdbc8ee05c082c6c43e983291cb25dfb77f8d4 | [
"LGPL-2.0-only",
"BSD-2-Clause",
"LGPL-2.1-only",
"BSD-3-Clause",
"Apache-2.0",
"LGPL-2.0-or-later",
"MIT",
"GPL-1.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-2.0-only",
"LicenseRef-scancode-other-copyleft"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 3,172 | cc | /*
* Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
* Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; eit... | [
"jengelh@inai.de"
] | jengelh@inai.de |
0d03ae08fb3564734ac6750c06dc00456d8d40a3 | bc93833a9a2606dd051738dd06d6d17c18cbdcae | /3rdparty/opencv/sources/modules/cudalegacy/include/opencv2/cudalegacy/NCVHaarObjectDetection.hpp | 6b84e8b2553d0d7c0bb9a5916a7fde6604d3e8dc | [
"BSD-3-Clause",
"MIT"
] | permissive | Wizapply/OvrvisionPro | f0552626f22d6fe96824034310a4f08ab874b62e | 41680a1f9cfd617a9d33f1df9d9a91e8ffd4dc4b | refs/heads/master | 2021-11-11T02:37:23.840617 | 2021-05-06T03:00:48 | 2021-05-06T03:00:48 | 43,277,465 | 30 | 32 | NOASSERTION | 2019-12-25T14:07:27 | 2015-09-28T03:17:23 | C | UTF-8 | C++ | false | false | 18,178 | hpp | /*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, instal... | [
"info@wizapply.com"
] | info@wizapply.com |
04d99468fad2479d56f0a4eb212bb3f44104228f | 3e50ba512e0850a2caa564242f71cf586255ca4b | /vstgui/lib/ctooltipsupport.h | 26f0639afb4a72a3167cd310cae712b2564a23b2 | [
"BSD-3-Clause"
] | permissive | steinbergmedia/vstgui | c479d31b299fe69dbf37b51a5cfb645c3de90159 | fb7060cd13215bdc4f441c37a754711c772922fd | refs/heads/develop | 2023-09-03T00:11:43.085495 | 2023-08-16T14:38:51 | 2023-08-16T14:38:51 | 48,168,902 | 804 | 157 | NOASSERTION | 2023-08-16T16:12:53 | 2015-12-17T10:46:38 | C++ | UTF-8 | C++ | false | false | 1,292 | h | // This file is part of VSTGUI. It is subject to the license terms
// in the LICENSE file found in the top-level directory of this
// distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
#pragma once
#include "vstguifwd.h"
#include "cpoint.h"
namespace VSTGUI {
//------------------------------------... | [
"scheffle@users.noreply.github.com"
] | scheffle@users.noreply.github.com |
225f8c7a547941e5a4bc3029ac99f4501be057aa | 64178ab5958c36c4582e69b6689359f169dc6f0d | /vscode/wg/sdk/UP_Sinking_Ripples_BP_Aquarail_C.hpp | e7fe6ffaac78d2bb0c76082c355e4dd36466a9dc | [] | no_license | c-ber/cber | 47bc1362f180c9e8f0638e40bf716d8ec582e074 | 3cb5c85abd8a6be09e0283d136c87761925072de | refs/heads/master | 2023-06-07T20:07:44.813723 | 2023-02-28T07:43:29 | 2023-02-28T07:43:29 | 40,457,301 | 5 | 5 | null | 2023-05-30T19:14:51 | 2015-08-10T01:37:22 | C++ | UTF-8 | C++ | false | false | 965 | hpp | #pragma once
#include "UTslParticle.hpp"
#ifdef _MSC_VER
#pragma pack(push, 1)
#endif
namespace PUBGSDK {
struct alignas(1) UP_Sinking_Ripples_BP_Aquarail_C // Size: 0x470
: public UTslParticle // Size: 0x470
{
private:
typedef UP_Sinking_Ripples_BP_Aquarail_C t_struct;
typedef ExternalPtr<t_stru... | [
"1395329153@qq.com"
] | 1395329153@qq.com |
cbc5996a313cd9bb8ad9215cb99be9de3d375cc6 | 88b2e9f73e1602350d62e8f0bb8ac988ecff2a54 | /Lights-master/lightConsoleMockup/qtrectitem.h | 33a8079567f0416b8aec40dab05b0f4f74326d7f | [] | no_license | haiderpasha09/hyder_pasha- | 194a74d618a11856043c6ea0f172c9d517c100cd | dccb18a46f72c8098619178820f7191de225ea7d | refs/heads/master | 2020-12-22T20:16:04.441196 | 2020-10-16T07:28:05 | 2020-10-16T07:28:05 | 236,920,038 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 797 | h | #ifndef QTRECTITEM_H
#define QTRECTITEM_H
//#pragma GCC diagnostic push
//#pragma GCC diagnostic ignored "-Weffc++"
//#pragma GCC diagnostic ignored "-Wunused-local-typedefs"
//#pragma GCC diagnostic ignored "-Wunused-but-set-parameter"
#include <QGraphicsRectItem>
#include "qdebug.h"
//#pragma GCC diagnostic pop
str... | [
"haiderpasha09@yahoo.com"
] | haiderpasha09@yahoo.com |
271ca8b47c029ca31814277303bf9b67b2291f28 | 8d675d8b658f028400543c18b0243f8dc45c9b03 | /15-3Sum.cpp | 76f69de5419c528e334a0ba7fa29e14a83c0869a | [] | no_license | dc-tw/leetcode | 06b1784ce7111fe43632067750944ce9596df03a | 2556209843dd6d621b8ced305eaf7cf8f39ff294 | refs/heads/master | 2020-05-19T20:23:36.485881 | 2020-02-14T08:02:36 | 2020-02-14T08:02:36 | 185,200,761 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 872 | cpp | class Solution {
public:
vector<vector<int>> threeSum(vector<int>& nums) {
sort(nums.begin(), nums.end());
int i=0, j=0, k=nums.size()-1;
int num1 = 0;
vector<int> t(3);
vector<vector<int> > vt;
for (i=0; i < k-1; )
{
num1 = 0-nums[i];
t[0] = nums[i];
for (j = i+1, k=nums.size()-1; j <... | [
"david112358c@gmail.com"
] | david112358c@gmail.com |
4805b57cf62323eeeb6a364bca201538a3064438 | f6530fa2ae8d3d45b2ecb6d73973d3620dcb4c8b | /WEEK5/San Francisco/main.cpp | b6ce72dd5a7520026666686180406b9ee0ef4236 | [] | no_license | dragoljub-duric/Algorithms-Lab-ETH-Zurich-263-0006-00L- | d698073340f056f18c02675c4a1507c71f0c1bb4 | 26888c963d2ba878bcd3cc914b3cc1f69fb3ff96 | refs/heads/master | 2023-02-24T06:56:13.570566 | 2021-01-27T00:49:00 | 2021-01-27T00:49:00 | 298,054,267 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,271 | cpp | #include<bits/stdc++.h>
using namespace std;
long long dp(vector<vector<long long>>& memo, vector<vector<pair<int, int>>>& adj, int position, int moves){
if(memo[position][moves] != -1) return memo[position][moves];
long long maxi = -1;
if(adj[position].size() == 0) maxi = dp(memo, adj, 0, moves);
for(... | [
"noreply@github.com"
] | noreply@github.com |
cf7096831b875b1426c95905f454bb2625b4ede4 | 46833986169d94e1e5ab2bd3a91c3b05bd50609f | /Práctica 3/freeglut project 3D/freeglut project 3D/Panel.cpp | 68e94a4adf21c8a906a2808346a8b00132755b2d | [] | no_license | AdrianVader/OpenGL-first-practices | d111968a5a904fd4e79ec7709c9f7f29f55138de | 024e07f488ce25d627cbf995c5122f40d8f31867 | refs/heads/master | 2020-12-04T05:37:26.022877 | 2016-08-31T16:51:53 | 2016-08-31T16:51:53 | 67,056,402 | 0 | 0 | null | null | null | null | ISO-8859-2 | C++ | false | false | 4,199 | cpp | /* Authors:
Adrián Rabadán Jurado
and
Teresa Rodríguez Ferreira
*/
#include <iostream>
#include "Panel.h"
Panel::Panel(GLdouble width){
//Inicialización de variables
Panel::_numVert = 32;
Panel::_numNorm = Panel::_numVert;
Panel::_numSid = 22;
Panel::_arrVert = list<PV3D>();
Panel::_arrNorm = list<P... | [
"adri.rabadan@gmail.com"
] | adri.rabadan@gmail.com |
3c3533daa686caa24d656758ba59f36f5a097313 | 2087bc2a508f4b40d302f4456f4751726759ea33 | /Lesson1/Home/Main.cpp | e72eafd49ff5f4887060231ec6c069ba893285cc | [] | no_license | Maciuk85/CppLevelIFundamentalsOfProceduralProgrammingInCpp | 73fe39834ad056a533f65b03809d1c369cb2e602 | bbd59f6fc196dcad34368ab37a0829e69cc7a1b1 | refs/heads/master | 2021-01-22T11:29:59.349471 | 2017-01-12T19:54:57 | 2017-01-12T19:54:57 | 68,733,000 | 0 | 0 | null | 2017-01-12T19:54:58 | 2016-09-20T16:46:52 | C++ | UTF-8 | C++ | false | false | 135 | cpp | #include <iostream>
using namespace std;
int main() {
cout << "Hello World Home Project! :D" << endl;
system("pause");
return 0;
} | [
"Maciek@DESKTOP-B0KQNFC"
] | Maciek@DESKTOP-B0KQNFC |
5b6d65701418979e3427a4517ee1670342263ca3 | 3bb241e281cb35028755111ad41a2276a713898e | /src/governance.h | 84177e273a7317fa6322cbf44579713f06087129 | [
"MIT"
] | permissive | Atlantis-dev/AtlantisCoin | 0201489fe838db4efa3535acd7d85dfb97d9d0f9 | e05b684b35fbc8adcf5f5e827b5b4f96b6716e93 | refs/heads/master | 2021-01-01T18:43:53.300091 | 2017-07-26T12:30:13 | 2017-07-26T12:30:13 | 98,415,350 | 0 | 1 | null | 2017-09-02T21:55:05 | 2017-07-26T11:27:20 | C++ | UTF-8 | C++ | false | false | 11,340 | h | // Copyright (c) 2014-2017 The Atl Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef GOVERNANCE_H
#define GOVERNANCE_H
//#define ENABLE_ATL_DEBUG
#include "bloom.h"
#include "cachemap.h"
#include "cac... | [
"onecoin@sfr.fr"
] | onecoin@sfr.fr |
0c7e7e2845e6cd19e91d59f7e79fdad747e110b3 | c442390d6b800294f1f6c30374e9e139b5eba6c5 | /src/Actions/SetIndexerState.h | 62da6d1884ed11e6423c9d4e322ab6d5c31a9006 | [] | no_license | FRCTeamPhoenix/Phoenix2017 | 61e9ab976d8d9bc7fe3b4ef5f046de6d8d2ce12f | 3282a3c438ada7a96f4b68951fb8173f6d3ab03d | refs/heads/develop | 2021-01-12T02:11:04.240192 | 2017-04-05T11:45:52 | 2017-04-05T11:45:52 | 78,484,243 | 1 | 0 | null | 2017-03-28T23:17:46 | 2017-01-10T01:08:17 | C++ | UTF-8 | C++ | false | false | 857 | h | /*
* SetIndexerState.h
*
* Created on: Mar 6, 2017
* Author: Brin Harper
*/
#ifndef SRC_ACTIONS_SETINDEXERSTATE_H_
#define SRC_ACTIONS_SETINDEXERSTATE_H_
#include "Action.h"
#include "Indexer.h"
#include "dependency.h"
#include <vector>
#include <iostream>
#include "../plog/Log.h"
using namespace std;
cla... | [
"William.Gebhardt@asdnh.org"
] | William.Gebhardt@asdnh.org |
1c5a3ae62c84dd30cf7d69a4d22376c8c99c77ab | 92eead7872140b0ba00e54629ef19d4432f3be4e | /Chapter-12/12.28.cpp | 3aa7dea6ffe7f5fdd6c01837b32f7c6a1833de40 | [] | no_license | shengchiliu/Cpp-Primer-Answer | acd8a3b3f0ce80fd759055d7d79788c2b5456b13 | 9a932c349b5cd272c47a7c793c3cee8c84f9edbc | refs/heads/master | 2023-03-22T10:35:00.824761 | 2019-08-30T04:57:29 | 2019-08-30T04:57:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 840 | cpp | #include<iostream>
#include<string>
#include<fstream>
#include<vector>
#include<set>
#include<map>
#include<sstream>
int main()
{
std::ifstream ifs("1.txt");
std::vector<std::string> lines;
std::map<std::string, std::set<size_t>> dict;
std::string s;
size_t i = 0;
while(std::getline(ifs, s))
{
++i;
lines... | [
"jzplp@qq.com"
] | jzplp@qq.com |
a26458ae3e39e8af67d0dd450d08b79c3e761c20 | 003fb5094021351eb82c49c8eadbb6dd5b139004 | /006_BAEKJOON/02206.cpp | effe7c8180c7983284817b9bfad90d4f8ec4538f | [] | no_license | woongbinni/algorithm | ebdb700195ccc158f7be1ebf7af06e9913d4e8fd | a1d5c0bc8b727d4feea670ea35218e701e0ffdb4 | refs/heads/master | 2022-11-16T23:40:44.628307 | 2022-11-11T15:21:26 | 2022-11-11T15:21:26 | 32,263,313 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,759 | cpp | #include <stdio.h>
#include <iostream>
using namespace std;
#include <queue>
typedef struct _loc {
int y;
int x;
int distance;
int wall_break;
}loc;
int N, M;
char map[1001][1001];
bool visited[2][1001][1001];
int dy[4] = {-1, 0, 1, 0};
int dx[4] = {0, 1, 0, -1};
int bfs() {
loc start;
start.... | [
"woongbinni@gmail.com"
] | woongbinni@gmail.com |
074abe32149db563d6c17d31922e5ad1744d39a0 | 9bba90bad4f312c949c0704a6b3a3d94cdca4671 | /test.code/transfer_file/server_noqueue/socket_buff.cc | 0521a2c3a71c2c876fe6b9bd931522c7895cde9d | [
"Apache-2.0"
] | permissive | P79N6A/workspace | 036072fc3788ec50a95744b512e1566c3b16f082 | 2f1b4977ef51e77fcaf7e3c120714138099ce096 | refs/heads/master | 2020-04-23T10:04:37.302251 | 2019-02-17T06:57:18 | 2019-02-17T06:57:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,980 | cc | #include "socket_buff.h"
#include <malloc.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
const int32_t kSize = 8 * 1024;
const int32_t kFreeSize = 4 * 1024;
const int32_t kMaxSize = 1024 * 1024;
SocketBuff::SocketBuff(int32_t socket)
: socket_(socket){
socket_buff_ = (ch... | [
"lianjiang.yulj@alibaba-inc.com"
] | lianjiang.yulj@alibaba-inc.com |
8642ebfa4ad187c5417621851ecd7b3729de2af8 | 60a15a584b00895e47628c5a485bd1f14cfeebbe | /comps/misc/Blood/ResegmentCells.cpp | 8e8602fec6f2d441d701111108fa0636b9d00bc7 | [] | no_license | fcccode/vt5 | ce4c1d8fe819715f2580586c8113cfedf2ab44ac | c88049949ebb999304f0fc7648f3d03f6501c65b | refs/heads/master | 2020-09-27T22:56:55.348501 | 2019-06-17T20:39:46 | 2019-06-17T20:39:46 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 9,752 | cpp | #include "stdafx.h"
#include "ResegmentCells.h"
#include "misc_utils.h"
#include <math.h>
#include "alloc.h"
#include "nameconsts.h"
#include "clone.h"
#include "clonedata.h"
#include "ImagePane.h"
#include "object5.h"
#include "measure5.h"
#include "bytemorpho.h"
#define MaxColor color(-1)
_ainfo_base::arg ... | [
"videotestc@gmail.com"
] | videotestc@gmail.com |
17502006a6f0b10c33664cafcccddc9d72d0252b | 8184b135c7c9ec39a345dbb3c33bb06093688a5d | /paopao/Ball.cpp | 806ffb845ba2ee95ec12d818360f568b5c120426 | [] | no_license | woshinyc/paopao | 36aa0bd306c18c1f4812facde17e7e89cf66003f | 7791284649a1f24c72288836896ab6f013c43247 | refs/heads/master | 2020-03-26T15:13:36.046885 | 2013-07-15T10:21:47 | 2013-07-15T10:21:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,016 | cpp | //
// Ball.cpp
// paopao
//
// Created by NycMac on 13-7-10.
//
//
#include "Ball.h"
#include "enumWhole.h"
#include "AppDelegate.h"
#include "GameLayer.h"
bool Ball::init()
{
if (!SpriteBase::init()) {
return false;
}
return true;
}
Ball* Ball::getBall()
{
Ball *ball=Ball::create();
... | [
"alvenyuan@limatoMacBook-Pro.local"
] | alvenyuan@limatoMacBook-Pro.local |
4b488afe0d5798e392ad21304350a0a5c3617902 | 9d2e6a246059be7f2a072bdf12525dcf821bc1e9 | /src/OzEngine/src/MeshRend.cpp | a37b1b1e3e0e5526d58aa4014588eee30f33b93b | [] | no_license | OzlFX/Oz_Engine | 196d484512de86970a39b911491bb6a89108a4e7 | dbcb94b5efe22017480f6f576f056767c9f7d335 | refs/heads/master | 2020-08-27T13:44:59.274107 | 2020-01-17T11:04:03 | 2020-01-17T11:04:03 | 217,392,664 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,617 | cpp | #include "OzEngine/src/MeshRend.h"
#include "Components/ComponentIncludes.h"
#include "OzEngine/src/Camera.h"
#include "Light.h"
#include "Mesh.h"
#include "Texture.h"
#include "RenderTexture.h"
#include "Material.h"
#include "RenderSystem/ShaderProgram.h"
namespace Oz
{
void cMeshRenderer::onBegin()
{
if (m_Mater... | [
"39440462+OzlFX@users.noreply.github.com"
] | 39440462+OzlFX@users.noreply.github.com |
6a9e9f1d0ff2e343ccf9ccd5d19dcbbc2fa7507a | aa15c48dc0ad50030d70eb1cce25ad9dfc08640c | /Source/WebKit/GPUProcess/GPUProcess.h | e8887268878fed0d267a054e5c0afca3395877a0 | [] | no_license | Man1029/webkit | c4e986c4f405028ffbe1acef9a92fa62b9cec1a6 | 0020b6fca0bd62a106537a4260e44d80bcc4d066 | refs/heads/master | 2023-05-28T03:05:15.176263 | 2019-12-18T07:00:28 | 2019-12-18T07:00:28 | 228,791,284 | 1 | 0 | null | 2019-12-18T08:16:26 | 2019-12-18T08:16:25 | null | UTF-8 | C++ | false | false | 3,352 | h | /*
* Copyright (C) 2019 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions a... | [
"timothy_horton@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc"
] | timothy_horton@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc |
6c6461b585ddd641bc53373f995077630afc98fe | e824b56ba99e170a0c7d4fba01495cc6298157f4 | /nemeziz_03.ino | 763b709cb425c22dfbd1b435e0160195e3e55968 | [] | no_license | formworx/Nemeziz-Arduino | b56c7d88ff0b80881d935bdd886d181fc553ece2 | 2df9677d1d4b56b8f43a3066948450ada3d515cb | refs/heads/master | 2022-12-11T04:42:48.629430 | 2017-06-03T21:46:40 | 2017-06-03T21:46:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,023 | ino | /*
Inition Nemeziz Boot SensorCode
Uses Adafruit BNO055 9DOF sensor
Board layout:
+----------+
| *| RST PITCH ROLL HEADING
ADR |* *| SCL
INT |* *| SDA ^ /->
PS1 |* *| GND | |
PS0 |* *| 3VO Y Z--> \-X... | [
"noreply@github.com"
] | noreply@github.com |
048ffdc680bcab826e2c4d0e94b3fddc7fd4d778 | b70cfed6b88d69ae2e398762207e60ea5d953f25 | /simon_says/simon_says.ino | 3d8d183d6feda822b2fa9ce9f756622dcb25a140 | [
"MIT"
] | permissive | davidtimmons/simon-says-circuit | f109acba66ffe712de8f1458e5492de1c92ee168 | 522f23a37cbca61e9812eeb6409997365c7df6b8 | refs/heads/master | 2020-04-09T09:28:25.878886 | 2019-10-25T20:08:11 | 2019-10-25T20:08:11 | 22,733,328 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,737 | ino | /**
* An Arduino circuit design and program that simulates the game "Simon Says".
*
* Author: David Timmons ( http://david.timmons.io )
* License: MIT
*/
// Turn debug mode on or off; this toggles serial monitor printing.
const boolean DEBUG = false;
// Define LED pin positions.
const int RED_1 = 13;
const int R... | [
"github@timmons.io"
] | github@timmons.io |
3abb90e802ec477a53e6a79868bef1b2e7a907ef | 278e3b84e4e97524928c5d27099e64fa744d67ff | /GLES3Renderer/GLES3Renderer/GfxUniformCamera.h | eec8e914d5944d37fa9dc1d090471f2b79d00362 | [
"Apache-2.0"
] | permissive | LiangYue1981816/CrossEngine-GLES3Renderer | 8f4d47a8c247c4e78d4d34d9887bcd6bee5f2113 | 8d092307c22164895c4f92395ef291c87f2811e6 | refs/heads/master | 2020-03-18T01:44:22.512483 | 2018-08-02T03:04:08 | 2018-08-02T03:04:08 | 134,157,249 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 918 | h | #pragma once
#include "gles3/gl3.h"
#include "glm/glm.hpp"
class CGfxUniformBuffer;
class CGfxUniformCamera
{
private:
typedef struct Params {
glm::mat4 mtxProjection;
glm::mat4 mtxView;
glm::mat4 mtxViewInverse;
glm::mat4 mtxViewInverseTranspose;
} Params;
public:
CGfxUniformCamera(void);
virtual ~CGfx... | [
"LiangYue1981816@Hotmail.com"
] | LiangYue1981816@Hotmail.com |
f9de0f4c7d6517249fef656cd8c3437e9713216e | 1a4eb1d87a4aa50569eb1ab56260c53d6cbb1424 | /codechef solution/chef and churu.cpp | bd8fae2958f4517f01dd38c10029b2f34e3c3648 | [] | no_license | deepak216/codechef_solutions | 8ba4eacc4cf0188788a0ddba1c5aefb571cf5411 | 3cd951e0a5f0e9b0e6c1769d064c631754150a0f | refs/heads/master | 2016-09-03T06:59:22.928009 | 2014-12-09T02:43:23 | 2014-12-09T02:43:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,586 | cpp | #include <iostream>
#include <cstdio>
#include <algorithm>
#include <math.h>
#define lld long long int
using namespace std;
int arr[1001];
lld tree[3000];
lld f[1001];
lld tree_f[3001];
struct range
{
int l,h;
}R[1001];
void build_tree(int node, int a, int b) {
if(a > b) {return ;}
if(a == b) {
tree... | [
"deepaksingh21mps@gmail.com"
] | deepaksingh21mps@gmail.com |
be8501dbecc8063159be7cebb53769fa68d65ed1 | 5d68d80456e086afd133f2aaa047fcfd08bf44dc | /Laboratory/Lab04.0-TriangleVertexFragmentShaders/src/main.cpp | 4c1acf54f2a565acc81e9609f6feea0a3e642c95 | [] | no_license | hpaucar/computer-graphics-repo | 6a563436576fb51813aee6ec0ca0e22269eacbba | 0a438b88b9af13204781ced17e2f6da70b9bc329 | refs/heads/master | 2021-07-17T09:38:36.176226 | 2021-01-09T02:02:27 | 2021-01-09T02:02:27 | 230,563,579 | 13 | 4 | null | 2020-06-15T03:23:01 | 2019-12-28T05:33:38 | HTML | ISO-8859-1 | C++ | false | false | 7,778 | cpp | //============================================================================
// Name : Dibujo de Triangulo colorido
// Professor : Herminio Paucar
// Version :
// Description : Utilizamos los Vertex y Fragment Shaders
//============================================================================
... | [
"herminiopaucar@gmail.com"
] | herminiopaucar@gmail.com |
9bf2e0980040b5dc8d1f519889e337fe036aaa1e | d1fb9cd6373ab9001ae5ce83cc85727ff7d41305 | /GardenMaintenanceApp/TaskList.cpp | a6066f36b63785a71453209605a56079fecbad9a | [] | no_license | koentie96/GardenMaintenanceApp | 3d731e2afe7f182c00fa45bc0ecaee37947af317 | acf9c29a705f5fa6921534fff94bcbab56a66c5d | refs/heads/master | 2020-07-29T22:28:45.081799 | 2019-09-21T16:41:52 | 2019-09-21T16:41:52 | 209,984,728 | 0 | 0 | null | 2019-09-21T16:41:54 | 2019-09-21T12:52:36 | C++ | UTF-8 | C++ | false | false | 53 | cpp | #include "TaskList.hpp"
//CTaskList::CTaskList() {}
| [
"gort.koen@gmail.com"
] | gort.koen@gmail.com |
dd1ef37c8c534e622b3d54a57d74208f194a4b5b | 3db023edb0af1dcf8a1da83434d219c3a96362ba | /windows_nt_3_5_source_code/NT-782/PRIVATE/UTILS/UHPFS/INC/DIRCACHE.HXX | 9219da1e6a695e0f421eb205759c2be05bb32ee5 | [] | no_license | xiaoqgao/windows_nt_3_5_source_code | de30e9b95856bc09469d4008d76191f94379c884 | d2894c9125ff1c14028435ed1b21164f6b2b871a | refs/heads/master | 2022-12-23T17:58:33.768209 | 2020-09-28T20:20:18 | 2020-09-28T20:20:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,022 | hxx | /*++
Copyright (c) 1990 Microsoft Corporation
Module Name:
dircache.hxx
Abstract:
Definitions for the HPFS DIRBLK cache object
Author:
Bill McJohn (billmc) 16-Jan-1989
Notes:
The DIRBLK cache is used by the Directory Tree object.
--*/
#if ! defined(DIRBLK_CACHE_DEFN)
#define D... | [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
c251d4d3174f55405349bc3330d31230313375f9 | f95975d9454984803586de7f0600f3ecf9918f60 | /lang_service/java/com/intel/daal/algorithms/gbt/regression/prediction/predict_batch.cpp | 8ce8746c24b5c5f1afa28504f4b89e1729db6c9d | [
"Intel",
"Apache-2.0"
] | permissive | jjuribe/daal | f4e05656ca5f01e56debdbd2de51eeb2f506ca3d | 242d358db584dd4c9c65826b345fe63313ff8f2a | refs/heads/master | 2020-09-15T01:33:34.752543 | 2019-11-21T08:27:26 | 2019-11-21T08:27:26 | 223,316,648 | 0 | 0 | Apache-2.0 | 2019-11-22T03:33:41 | 2019-11-22T03:33:39 | null | UTF-8 | C++ | false | false | 2,286 | cpp | /* file: predict_batch.cpp */
/*******************************************************************************
* Copyright 2014-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 Lic... | [
"nikolay.a.petrov@intel.com"
] | nikolay.a.petrov@intel.com |
74cec9d5c303dae777ed04c7e96bb5258ec6da6c | db8be521b8e2eab424f594a50886275d68dd5a1b | /Competitive Programming/codechef/Epiphany 2012/EPI02.cpp | 7f4c35570509e0ea3018fab4864900bd9924f76b | [] | no_license | purnimamehta/Articles-n-Algorithms | 7f2aa8046c8eef0e510689771a493f84707e9297 | aaea50bf1627585b935f8e43465360866b3b4eac | refs/heads/master | 2021-01-11T01:01:53.382696 | 2017-01-15T04:12:44 | 2017-01-15T04:12:44 | 70,463,305 | 10 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 238 | cpp | #include<stdio.h>
int main()
{
int N,n,i;
scanf("%d",&N);
i=1;
n=N;
while(n)
{
n>>=1;
i<<=1;
}
i>>=1;
int ans=((N-i)*2)+1;
printf("%d\n",ans);
return 0;
}
| [
"me@lefeeza.com"
] | me@lefeeza.com |
f1ca62fed563a5bf8c147c0e2c22d736cf6acbf0 | 9fdda17e5e3deb4dfbc31d557439102b15be2e3f | /src/test/rpc_tests.cpp | 31e821fc2c94919d6ab27253dac2ac5fcf3d5923 | [
"MIT"
] | permissive | bitcoinxash-network/bitcoinxash | 009656529e2ba44a876b25d0de944a9c805825ab | ba46c6f0d54f69fff26b826f82430dd6e6d2e91a | refs/heads/master | 2020-07-10T14:41:27.354149 | 2019-08-13T08:46:21 | 2019-08-13T08:46:21 | 204,287,949 | 0 | 0 | MIT | 2019-08-25T11:58:07 | 2019-08-25T11:58:07 | null | UTF-8 | C++ | false | false | 9,528 | cpp | // Copyright (c) 2012-2013 The Bitcoin Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "rpcserver.h"
#include "rpcclient.h"
#include "base58.h"
#include "netbase.h"
#include "test/test_bcx.h"
#inc... | [
"admin@bitcoinxash.com"
] | admin@bitcoinxash.com |
214fccbc301c2c24232540448bf6618fe62b6d07 | ff7352ce3d77498fbc8dbebcb03149ee9753d30d | /yatagarasu/pkg/savepkg/savepkg.cpp | a94346e8b0938534e0d97ae0fda9a50221475412 | [] | no_license | number201724/GalGameTools | c519f76dc6282b94c0f1e18ffc1c6fa6f79972ee | 2619af12c8b391fa7b7d288d76f82deb6f1e8014 | refs/heads/master | 2022-07-07T23:03:17.788827 | 2017-07-04T16:38:13 | 2017-07-04T16:38:13 | 67,941,925 | 38 | 12 | null | null | null | null | GB18030 | C++ | false | false | 5,757 | cpp | // savepkg.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <windows.h>
#include <stdio.h>
extern "C"
{
#include "writestream.h"
};
typedef unsigned int uint;
typedef unsigned char byte;
typedef struct pkg_header_s
{
uint file_size;
uint file_count;
}pkg_header_t;
typede... | [
"number201724@me.com"
] | number201724@me.com |
38ddd0b1fff17eaabe117f2a591e667202135ea3 | 6f2b6e9d77fc4dd5e1dae8ba6e5a66eb7c7ae849 | /sstd_boost/sstd/boost/property_map/parallel/unsafe_serialize.hpp | a3692cdbbf2361da26fca6c074d07bb310ab617b | [
"BSL-1.0"
] | permissive | KqSMea8/sstd_library | 9e4e622e1b01bed5de7322c2682539400d13dd58 | 0fcb815f50d538517e70a788914da7fbbe786ce1 | refs/heads/master | 2020-05-03T21:07:01.650034 | 2019-04-01T00:10:47 | 2019-04-01T00:10:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,705 | hpp | // Copyright (C) 2006 The Trustees of Indiana University.
// 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)
// Authors: Douglas Gregor
// Andrew Lumsdaine
// This file ... | [
"zhaixueqiang@hotmail.com"
] | zhaixueqiang@hotmail.com |
33e2e9863883c995afa827a356b61102e139cf82 | 45645fd8c0836f239e59bb09f2a022a57c031c17 | /GMAT-R2019aBeta1/src/base/spice/SpiceOrbitKernelWriter.cpp | 19f0f4a674e2a5a29de5033c24a210012f0367a4 | [
"Apache-2.0"
] | permissive | daniestevez/gmat-dslwp-source | 03678e983f814ed1dcfb41079813e1da9bad2a6e | 9f02f6f94e2188161b624cd3d818a9b230c65845 | refs/heads/master | 2022-10-07T07:05:03.266744 | 2020-06-06T13:32:41 | 2020-06-06T13:32:41 | 260,881,226 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 30,016 | cpp | //$Id:$
//------------------------------------------------------------------------------
// SpiceOrbitKernelWriter
//------------------------------------------------------------------------------
// GMAT: General Mission Analysis Tool.
//
// Copyright (c) 2002 - 2018 United States Governmen... | [
"daniel@destevez.net"
] | daniel@destevez.net |
857954738377be02b66c860c3cff4cb7e69ff7d6 | 0c7e20a002108d636517b2f0cde6de9019fdf8c4 | /Sources/Elastos/External/conscrypt/inc/org/conscrypt/COpenSSLX509CertificateFactory.h | d627388d91981edea2bce189e71f20fda6ffe0e7 | [
"Apache-2.0"
] | permissive | kernal88/Elastos5 | 022774d8c42aea597e6f8ee14e80e8e31758f950 | 871044110de52fcccfbd6fd0d9c24feefeb6dea0 | refs/heads/master | 2021-01-12T15:23:52.242654 | 2016-10-24T08:20:15 | 2016-10-24T08:20:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 487 | h |
#ifndef __ORG_CONSCRYPT_COPENSSLX509CERTIFICATEFACTORY_H__
#define __ORG_CONSCRYPT_COPENSSLX509CERTIFICATEFACTORY_H__
#include "_Org_Conscrypt_COpenSSLX509CertificateFactory.h"
#include "OpenSSLX509CertificateFactory.h"
namespace Org {
namespace Conscrypt {
CarClass(COpenSSLX509CertificateFactory)
, public Open... | [
"zhang.yu@kortide.com"
] | zhang.yu@kortide.com |
2bfde93b4b0cf728dd1a0ee6c628102f803ef2f1 | 0084c6a9973b2f484c6cbe57d77929bd42a7d2fc | /deprecated/kfsst/kfsst/source/azimuth.cpp | b2e98591e7fc54a47a0b143eddf8350b9b8674e3 | [] | no_license | positioning/kalmanfilter | db680c7e9cfd8c6edcbab6d1f12a44e153a149ff | 501ec9a28ae05802287aadcf8ca2cfb9229137cb | refs/heads/master | 2023-02-10T00:36:28.576957 | 2023-01-29T13:16:15 | 2023-01-29T13:16:15 | 40,897,081 | 12 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 2,099 | cpp | #include <fvar.hpp>
#include <iostream>
#include <cmath>
const double eps = 1e-8; //small number to avoid divide by 0
dvariable azimuth(const dvariable& y, const dvariable& x)
{
//dvariable z = 180.0*atan(y/(x+eps))/M_PI;
//dvariable d = 90.0 - z;
dvariable d = 90.0 - 180.0*atan(y/(x+eps))/M_PI;
... | [
"fishfollower@77a56499-bf6e-355e-e284-15a721bbdb98"
] | fishfollower@77a56499-bf6e-355e-e284-15a721bbdb98 |
b91e2a440d4690a2ce0b39d9a553c96ded1ea999 | 05e79c064879c73b501f51110ee822b694bbe0c7 | /LCA.cpp | e39a60cda32c3b99ca7d6c1ee42cdeb3831fef7e | [] | no_license | AnUnluckyGuy/Code | 5baea1178e222b3f9eba57abb86c2e93eb9c9996 | bc17d692d5e8be827dad972cdf5e8b6d06a4a182 | refs/heads/main | 2023-01-12T08:04:13.276464 | 2020-11-14T14:50:18 | 2020-11-14T14:50:18 | 312,822,850 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,539 | cpp | #include<bits/stdc++.h>
using namespace std;
const int maxn=1e6;
int n,k,u,v,h[maxn]/*do cao*/,T[maxn]/*cha truc tiep*/,p[maxn][20];
vector<int> a[maxn];
void DFS(int u)
{
for(int v:a[u])
{
if(T[v]==-1)
{
T[v]=u;
h[v]=h[u]+1;
DFS(v);
... | [
"noreply@github.com"
] | noreply@github.com |
5bd27cdbf783184c14a2eca2cae6916006a595d5 | 2be8bc6cdf871d97dc4bc356212f6d0c43e0c5c0 | /laba2/Factory.cpp | dcaef1473225fc1aba06aab577ed57154f209c25 | [] | no_license | Cpt0bvious/labs-for-OOP | 7e63dd2d072970ce1aa3b22bdd4a14e47651839e | 126fe91cd730fa7210ad43e0529618ab6e431115 | refs/heads/master | 2020-06-04T19:49:32.609069 | 2019-06-18T18:27:47 | 2019-06-18T18:27:47 | 192,168,265 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,745 | cpp | // Factory.cpp
#include <iostream>
#include "Factory.h"
#include "Menu.h"
#include "SymbString.h"
#include "HexString.h"
#include "OctString.h"
using namespace std;
#define MAX_LEN_STR 100
void Factory:: AddObject() {
int item;
while (true) {
cout << "******************* \n";
cout << "Select ob... | [
"noreply@github.com"
] | noreply@github.com |
7dd3edb2fbba9664e166881f8918e4a87c1b2b6c | 3f6ce862ed6e693f9251d31dfeda6b16006f8a6a | /gba/src-gba/GBAMode3Framebuffer.hpp | ff52d34bc336e5e68d43a89216593f308c2c318e | [] | no_license | Pwootage/softrend | a7f8e9cd17fab65d0f1ab79bbbd630d87d4bd9cd | 46bd33e864fa032ca390d7e491be885725a96afe | refs/heads/master | 2021-06-06T17:38:00.589253 | 2020-05-16T22:49:40 | 2020-05-16T22:49:40 | 121,485,979 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 708 | hpp | #ifndef SOFTREND_GBAMODE5FRAMEBUFFER_HPP
#define SOFTREND_GBAMODE5FRAMEBUFFER_HPP
#include "../src/buffers/Framebuffer.hpp"
class GBAMode3Framebuffer : public softrend::Framebuffer {
public:
GBAMode3Framebuffer();
void putPixel(softrend::fb_pos_t pos, softrend::color_t color, float depth) override;
void clear... | [
"pwootage@gmail.com"
] | pwootage@gmail.com |
92980201bb679a9e515833322b8a36606d741cbc | b39446a01e5270c983614000f36ed7776c37fd5a | /code_snippets/Chapter14/chapter.14.1.2.no-link.cpp | 1465151aac08620cd2d3742c6e465115619e33c3 | [
"MIT"
] | permissive | ltr01/stroustrup-ppp-1 | aa6e063e11b1dccab854602895e85bef876f2ea5 | d9736cc67ef8e2f0483003c8ec35cc0785460cd1 | refs/heads/master | 2023-01-03T09:16:13.399468 | 2020-10-28T10:41:25 | 2020-10-28T10:41:25 | 261,959,252 | 1 | 0 | MIT | 2020-05-07T05:38:23 | 2020-05-07T05:38:22 | null | UTF-8 | C++ | false | false | 1,216 | cpp |
//
// This is example code from Chapter 14.1.2 "Operations" of
// "Programming -- Principles and Practice Using C++" by Bjarne Stroustrup
//
#include "Simple_window.h" // get access to our window library
#include "Graph.h" // get access to our graphics library facilities
//---------------------------------... | [
"bewuethr@users.noreply.github.com"
] | bewuethr@users.noreply.github.com |
b98460637125af8627715c149c7edbb0bd3048da | b1ec5452ac46b20b0adc1117ebafae7ee7dc9782 | /work/advcpp/SmartHome/ServerComponents/ConfigurationHandler.cpp | 3a104957e1c11083fde3dd1b2464dce569393da0 | [] | no_license | MishaLivshitz/experis | bce65d9d7a457fc48492105d51f4a9e51ef3ae88 | 038fe5e5a318ed11c595bce6654ff11ac7fbb355 | refs/heads/master | 2020-07-31T13:33:47.318537 | 2019-09-24T14:13:52 | 2019-09-24T14:13:52 | 210,619,343 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,425 | cpp | #include "ConfigurationHandler.h"
#include <iostream>
#include <string>
#include <sstream>
namespace ServerComponents{
using advcpp::SharedPtr;
using SmartHomeDevice::DeviceConfig;
ConfigurationHandler::ConfigurationHandler(char const* fileName) throw (MyException)
: m_file(fileName)
{
if(!m_file.is_open())
... | [
"michaellivshitz91@gmail.com"
] | michaellivshitz91@gmail.com |
41e46f29396c63a07b63f824714b3321d13bee61 | 996b63336053a9a18c3ca2ba977655015e6789da | /432.cpp | 08d2393adb780d6e01b80fe5526d8a011c720b8e | [] | no_license | birdmanwings/Leetcode400 | d8ce028f1f49e5901e2a8245b0118e440fe65173 | 02b69bb24f9450e27c90d7a2a578e15053e20536 | refs/heads/master | 2021-07-24T05:52:00.888441 | 2020-08-11T08:30:00 | 2020-08-11T08:30:00 | 207,059,723 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,802 | cpp | //
// Created by bdwms on 2020/7/5.
//
#include <string>
#include <unordered_set>
#include <list>
#include <unordered_map>
using namespace std;
class AllOne {
public:
/** Initialize your data structure here. */
AllOne() {
}
/** Inserts a new key <Key> with value 1. Or increments an existing key by 1. */
... | [
"747458025@qq.com"
] | 747458025@qq.com |
15473e990b3c91b3aead4dae362fff103d1e74e6 | 786de89be635eb21295070a6a3452f3a7fe6712c | /psddl_hdf2psana/tags/V00-02-03/src/camera.cpp | 319faf5b8b7b198dc581804e2542088ae63056bb | [] | no_license | connectthefuture/psdmrepo | 85267cfe8d54564f99e17035efe931077c8f7a37 | f32870a987a7493e7bf0f0a5c1712a5a030ef199 | refs/heads/master | 2021-01-13T03:26:35.494026 | 2015-09-03T22:22:11 | 2015-09-03T22:22:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,956 | cpp | //--------------------------------------------------------------------------
// File and Version Information:
// $Id$
//
// Description:
// Hand-written supporting types for DDL-HDF5 mapping.
//
//------------------------------------------------------------------------
//-----------------------
// This Class... | [
"salnikov@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7"
] | salnikov@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7 |
867dbe3eed89073d8fe8a39c97f5b9710c7f924a | 98fd439c67b904af285779a6d704190de7f1b57e | /code_practice/10/1017_class/6_functor7.cpp | 8dedf5aa696f2a1597265240dba7cad6e669b835 | [
"MIT"
] | permissive | armkernel/armkernel.github.io | 2bb042731730eab2cbc7198050c028575732096a | f74b8ddfc8a69dec8b5eeccb4d92c62dcc6c321a | refs/heads/master | 2020-06-30T00:31:29.317666 | 2019-12-17T14:41:37 | 2019-12-17T14:41:37 | 200,667,359 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 778 | cpp | #include <iostream>
#include <algorithm>
#include <functional> // less<>, greater<> 여기에 있다.
using namespace std;
inline bool cmp1(int a, int b) { return a < b; }
inline bool cmp2(int a, int b) { return a > b; }
// 아래 둘은 기계어 코드가 없다. 치환됨
struct less
{
inline bool operator()(int a, b) { return a < b; }
};
struct grea... | [
"sksioi1234@gmail.com"
] | sksioi1234@gmail.com |
dcb9d079d90e3ef5c6c7d3712f41e8403711f302 | f15d6c870d51ffa4a7e6151c42ceb5de0eedf46a | /Vaango/src/CCA/Components/MPM/ConstitutiveModel/PlasticityModels/IsoHardeningFlow.cc | 33bb7ef00250d6d1f5069995ecf9f1f81cfd8915 | [] | no_license | pinebai/ParSim | 1a5ee3687bd1582f31be9dbd88b3914769549095 | f787523ae6c47c87ff1a74e199c7068ca45dc780 | refs/heads/master | 2021-01-24T07:45:12.923015 | 2017-04-22T04:34:44 | 2017-04-22T04:34:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,837 | cc | /*
* The MIT License
*
* Copyright (c) 2013-2014 Callaghan Innovation, New Zealand
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation t... | [
"b.banerjee.nz@gmail.com"
] | b.banerjee.nz@gmail.com |
63a2b7b83c93c1f89fcd4391d9a60d3c478805ae | 24f26275ffcd9324998d7570ea9fda82578eeb9e | /chrome/browser/extensions/api/enterprise_platform_keys/enterprise_platform_keys_api_unittest.cc | 386feaea2a65506c3783e5746bc6c634fb158e65 | [
"BSD-3-Clause"
] | permissive | Vizionnation/chromenohistory | 70a51193c8538d7b995000a1b2a654e70603040f | 146feeb85985a6835f4b8826ad67be9195455402 | refs/heads/master | 2022-12-15T07:02:54.461083 | 2019-10-25T15:07:06 | 2019-10-25T15:07:06 | 217,557,501 | 2 | 1 | BSD-3-Clause | 2022-11-19T06:53:07 | 2019-10-25T14:58:54 | null | UTF-8 | C++ | false | false | 8,864 | cc | // Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/api/enterprise_platform_keys/enterprise_platform_keys_api.h"
#include <utility>
#include "base/values.h"
#includ... | [
"rjkroege@chromium.org"
] | rjkroege@chromium.org |
f6733c14df0164cc92fb982e1764e8b4f5c7a267 | 8e0fbd384623e689a5109fff1efa071e1198b149 | /Subtask2/density.cpp | ad51cbc88fec50dbe659c2772a766981ab28e22a | [] | no_license | Prat1510/Traffic-Density-Estimation | 736902ea357dbe30df4e166d65cdd8ad865cde92 | ecda59fa41ab18717a1c61e8229700eb2b534fe1 | refs/heads/main | 2023-04-21T11:04:01.951159 | 2021-05-16T02:30:39 | 2021-05-16T02:30:39 | 340,706,333 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,626 | cpp | #include "cam.h"
#include <iostream>
#include <sstream>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/videoio.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/video.hpp>
#include <fstream>
using namespace cv;
using namespace std;
int main(int argc, char* argv[])
{
... | [
"gunjan3723@gmail.com"
] | gunjan3723@gmail.com |
b5095aa81a36453bbab5c17a52095812a1dc5ba2 | e4e13bd6b1f6cbd17f73e34509236a4af83e063b | /Source/FBXLoader.cpp | 55517e62df3cd362494d086dee130eaa90464f63 | [] | no_license | on1659/DiretX12 | 5db952b7ba9d6310c5a75686f0288191947d4ae8 | a4a327620be14af847755616e132e22dc9832bb2 | refs/heads/main | 2023-07-14T10:04:05.524906 | 2021-09-04T11:29:29 | 2021-09-04T11:29:29 | 392,380,914 | 1 | 0 | null | null | null | null | UHC | C++ | false | false | 34,571 | cpp | ////////////////////////////////////////////////////////////////////////////////
// Filename: FBXLoader.cpp
////////////////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "FBXLoader.h"
FBXModelLoader::FBXModelLoader(std::string filename, float modelScale, bool isVoxel)
:... | [
"on1659@naver.com"
] | on1659@naver.com |
6a09a591c744bd8673b30931db53e70d3c12cc66 | 7d1f7bbe443df15811dbc523fcd1d4e08e5f5dc6 | /test/client/UdpClient.cpp | 76636a48be0c681c4e7e946e59b72e79d9fd8846 | [
"MIT"
] | permissive | prsood/kuma | 508fc9b15b77de054b3e6d1478eb3d87f6247cf7 | 467a38ef1df376c4f043cc57c190b57a7b1bad3e | refs/heads/master | 2021-01-22T03:49:27.409739 | 2017-05-24T10:18:07 | 2017-05-24T10:18:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,286 | cpp | #include "UdpClient.h"
#if defined(KUMA_OS_WIN)
# include <Ws2tcpip.h>
#else
# include <arpa/inet.h>
#endif
UdpClient::UdpClient(TestLoop* loop, long conn_id)
: loop_(loop)
, udp_(loop->eventLoop())
, conn_id_(conn_id)
, index_(0)
, max_send_count_(200000)
{
}
KMError UdpClient::bind(const cha... | [
"jamol@live.com"
] | jamol@live.com |
d908418926af5809ec1b43f63a364bebb68743a5 | 1b4a242e63b5bb031c98eaa373588600f828eb3e | /Source/SplineDemo4/SplineDemo4.cpp | 54e324f6ee9b73174c935bd153398352cf05162f | [] | no_license | shankarghimire/SplineUsingCPP | 4452012f793201c36c96615a0a9a467b11e350c3 | 3775965332490618b69846864f1456da0ac782df | refs/heads/main | 2023-03-17T22:06:00.573933 | 2021-03-08T13:37:50 | 2021-03-08T13:37:50 | 345,010,086 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 198 | cpp | // Copyright Epic Games, Inc. All Rights Reserved.
#include "SplineDemo4.h"
#include "Modules/ModuleManager.h"
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, SplineDemo4, "SplineDemo4" );
| [
"ssghimire@gmail.com"
] | ssghimire@gmail.com |
fc53a976e99d8fbfb50cef18b69cb62b7129fdad | 128b6ad7c062e7c5025530e6abd5bfe1e679a49c | /src/rpc/names.cpp | dca149e3d656b208c8aacd3eba7f87d624e8776d | [
"MIT"
] | permissive | sbnair/xaya | 16ee6c66d3388e32c8a266755001ee1cbe579856 | f5899f10752e02fae2acfbee2e10d8ef0271922c | refs/heads/master | 2022-06-05T20:18:59.816489 | 2020-04-27T11:24:57 | 2020-04-27T11:24:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,543 | cpp | // Copyright (c) 2014-2020 Daniel Kraft
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <base58.h>
#include <chainparams.h>
#include <core_io.h>
#include <init.h>
#include <key_io.h>
#include <names/common.h>
#inclu... | [
"d@domob.eu"
] | d@domob.eu |
b86ba09a1dfc490efed03ded06b2045bebcfb1e3 | dde00a05cfe6e4704b723862d7249e45cc27d78a | /src/stream/MUL-OMPTarget.cpp | 53d018d6487ceb64661980c8a0b371ec6f8d7afe | [
"BSD-3-Clause"
] | permissive | brandonneth/RAJAPerf | c4a43e2f1690cd2ffeffb79a7e7a1fd249dc59af | f71b30d0dcf0ab86845bbefb492264ebfa15e8ac | refs/heads/develop | 2023-03-03T13:58:02.410360 | 2021-08-20T22:24:51 | 2021-08-20T22:24:51 | 219,371,216 | 0 | 0 | BSD-3-Clause | 2022-01-06T18:48:50 | 2019-11-03T21:59:26 | C++ | UTF-8 | C++ | false | false | 2,273 | cpp | //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
// Copyright (c) 2017-21, Lawrence Livermore National Security, LLC
// and RAJA Performance Suite project contributors.
// See the RAJAPerf/LICENSE file for details.
//
// SPDX-License-Identifier: (BSD-3-Clause)
//~~~~~~~~~~~~~~~~~~~~~~~~~~... | [
"hornung1@llnl.gov"
] | hornung1@llnl.gov |
f13331bc73c98d5fdeba98a18802c7ccb3c7dc8f | 286bbf17db63fe00aa9b2190e905eef7f07d9ef2 | /social-graph-dynamics/Network_Dynamics/SocialNetworkAlgorithm.h | 35ee9c3bec68164ff080a0c527506072611fc6d4 | [] | no_license | muggin/agh-coursework | 7a4766ca7c966c724a540354f31f94c43e2d005b | 7a452d4bf73bbc0daa4404fde64f9dc734899f31 | refs/heads/master | 2021-07-20T19:31:20.340059 | 2017-10-25T21:55:25 | 2017-10-25T21:55:25 | 106,218,163 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,820 | h | //
// SocialNetworkAlgorithm.h
// Social Network
//
// Created by Aleksander Wójcik on 01.12.2014.
// Copyright (c) 2014 Aleksander Wójcik. All rights reserved.
//
#ifndef __Social_Network__SocialNetworkAlgorithm__
#define __Social_Network__SocialNetworkAlgorithm__
#include <iostream>
#include <vector>
#include <... | [
"wkryscinski@gmail.com"
] | wkryscinski@gmail.com |
545c98f1d481f5b85d10bcb854e76de3a4baf78f | 245ef7563b7337408e84ddea7add70b87f96c7c9 | /BlinkTest/BlinkTest.ino | d939e4a76484d09819ad60c7707ea324bffbf89b | [] | no_license | maciek01/arduino | 23424ffb80a71e1aafd6552aa6867aaa4774b767 | c7741103561bfba36e1fc68ee929ae639e062564 | refs/heads/master | 2021-01-12T17:50:29.324603 | 2016-11-12T00:29:46 | 2016-11-12T00:29:46 | 71,647,318 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 903 | ino | /*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
Most Arduinos have an on-board LED you can control. On the Uno and
Leonardo, it is attached to digital pin 13. If you're unsure what
pin the on-board LED is connected to on your Arduino model, check
the documentation at http:/... | [
"maciek@kolesnik.org"
] | maciek@kolesnik.org |
51ddc2e2ceb6c4c2ebe83a016cafeb628236596d | 54b090d85e3a86e144d63fff9f6654773ae7cf7d | /code/find_params.cpp | 19d805e5a6304a5d197b5b3cd3b111fee958807d | [
"MIT"
] | permissive | patrickgtwalker/malaria_in_pregnancy_istp_model_open | 6b2ea7b67c26954108cc9777dfa39ca41cb6882e | b6a7fd6b08cff687b036417d244d15bab1d9a17d | refs/heads/master | 2023-02-23T23:48:54.200583 | 2020-01-03T14:32:30 | 2020-01-03T14:32:30 | 231,604,946 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,727 | cpp | /// FOR IMPORTING PARAMETERS ////
#include <map>
typedef map<string, pair<double, string> > Parameter_map;
Parameter_map parameter_map;
using namespace std;
double from_map(const string &s, const double low=0, const double high=1E20, const double x=-99999){
Parameter_map::const_iterator p=parameter_map.find(s);
... | [
"patrickwalker143@googlemail.com"
] | patrickwalker143@googlemail.com |
48cac130d4aa3eabab59c4b540850679b7936c88 | 002582c0f43596fc8f5f4d07f8117dae2a91e7df | /Reference Code/Reference DRAGON AWAKENS(CODE WITH MP3SHIELD(issues) ,SERVO, SONAR AND LEDCONNECTED TO ARDUINO).ino | 69bcf7759929435bab7300903001cbccf5d133e7 | [] | no_license | DeepKamani/Tech-Studio | aa2f1c7dafdbce41c74f12f8db1bd51f56227b3c | 9c2adb5dd275be04f217e521c0345650b600065a | refs/heads/master | 2020-04-08T23:43:03.737484 | 2018-11-30T15:38:28 | 2018-11-30T15:38:28 | 159,836,988 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,975 | ino | /* //// DRAGON AWAKEN //// */
/* // MAIN COMPONENTS // */
// Lightsaber toy or led set (x1)
// ARDUINO UNO (x1)
// VS1053b MP3 Shield for ARDUINO (x1)
// Micro Servo motor SG90 or compatible with wiring (x1)
// HC - SR04 Ultrasonic Distance Measuring Sensor Module for Arduino (x1)
// SD card (x1)
// externally power... | [
"deep.kamani24@gmail.com"
] | deep.kamani24@gmail.com |
fc391b53aa42d09f420e6fa935ff20db25d89f75 | d932716790743d0e2ae7db7218fa6d24f9bc85dc | /services/preferences/public/cpp/pref_service_factory.cc | 2f1f4316492f6490a861889d2e6703219fca3038 | [
"BSD-3-Clause"
] | permissive | vade/chromium | c43f0c92fdede38e8a9b858abd4fd7c2bb679d9c | 35c8a0b1c1a76210ae000a946a17d8979b7d81eb | refs/heads/Syphon | 2023-02-28T00:10:11.977720 | 2017-05-24T16:38:21 | 2017-05-24T16:38:21 | 80,049,719 | 19 | 3 | null | 2017-05-24T19:05:34 | 2017-01-25T19:31:53 | null | UTF-8 | C++ | false | false | 5,078 | cc | // Copyright 2017 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 "services/preferences/public/cpp/pref_service_factory.h"
#include "base/callback_helpers.h"
#include "components/prefs/persistent_pref_store.h"
... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
645c641bd4b8086ba9483cd63b6d26484118d178 | 062a5099de7ab2fd1b12d6e98bdc446473cea455 | /140724/Game/Graphic/base/texture.cpp | 1cc18c71da58d41aa9816192f44e3d84dd94c82f | [
"MIT"
] | permissive | lthnim371/DirectX3D | 8fbda7a3f9b1cec2fad3c410465b4ab14bd87cf2 | 13848ae691747d5ec1d3b42e55a765cbbdc809c9 | refs/heads/master | 2016-09-05T21:44:02.897351 | 2014-08-22T03:43:30 | 2014-08-22T03:43:30 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,825 | cpp |
#include "stdafx.h"
#include "texture.h"
using namespace graphic;
cTexture::cTexture() :
m_texture(NULL)
{
}
cTexture::~cTexture()
{
Clear();
}
bool cTexture::Create(const string &fileName, bool isSizePow2)//isSizePow2=true
{
if (isSizePow2)
{
if (FAILED(D3DXCreateTextureFromFileA(GetDevice(), fileName.c_... | [
"taehoon0720@naver.com"
] | taehoon0720@naver.com |
d0864433c0d24dd41e77deee767daf4326d1e8ca | 13c3630445d73fb2703e5574b70942742f37fb89 | /Stable/Gunz/ZPlayerListBox.cpp | f2d0159b387e1caa236fe40f729b13f7102faff7 | [] | no_license | NovaDV/Gunz1.5 | 8cb660462c386f4c35d7f5198e614a29d5276547 | 97e7bc51fd082e37f3de0f02c5e2ce6c33530c50 | refs/heads/main | 2023-06-14T15:41:07.759755 | 2021-07-11T18:25:07 | 2021-07-11T18:25:07 | 385,099,338 | 1 | 0 | null | 2021-07-12T02:10:18 | 2021-07-12T02:10:18 | null | UHC | C++ | false | false | 44,290 | cpp | #include "stdafx.h"
#include "zapplication.h"
#include "MMatchObjCache.h"
#include ".\zplayerlistbox.h"
#include "MBitmap.h"
#include "MListBox.h"
#include "zpost.h"
#include "ZCharacterView.h"
#include "ZPlayerMenu.h"
#include "MToolTip.h"
#include "ZButton.h"
#include "ZMyInfo.h"
#define PLAYER_SLOT_GAP 1
#define... | [
"jduncan0392@gmail.com"
] | jduncan0392@gmail.com |
fdcc6409003593cf677e17af993790ea11e79f41 | 65bdd54c9459fb5c2f5a2e8c601888046e663602 | /tower_of_hanoi.cpp | 73fcb3a732f09eb186422b75f3ca9ece4598c8e7 | [] | no_license | Adityasharma15/Agorithms | 67f6478985d572f451a78ea82878d9bf55b9cafe | 5ff6d08c79fccc5f494de67e3ad850f693c8ee80 | refs/heads/master | 2021-07-07T21:55:21.830493 | 2020-11-19T12:55:51 | 2020-11-19T12:55:51 | 212,204,052 | 5 | 2 | null | 2020-10-04T08:23:23 | 2019-10-01T21:36:06 | C++ | UTF-8 | C++ | false | false | 512 | cpp | #include<bits/stdc++.h>
#define ll long long
using namespace std;
void tower_of_hanoi(ll n , ll a,ll c,ll b)
{
if(n==1)
{
cout << "move disk 1 from rod " << a << " to rod " << c << "\n";
return;
}
tower_of_hanoi(n-1, a, b,c);
cout << "move disk " << n << "from rod " << a << " to rod " <<... | [
"aditya.sharma5645@gmail.com"
] | aditya.sharma5645@gmail.com |
8e7c4f0a2fc439b747cc24aece30c0aa4b2a8b17 | c9f6a1d35a6879fb3cd18b57a6b89d2fd5d316d6 | /src/include/type/decimal_type.h | feeaf4fa2eba53e6238145cfb61185c5c57197a0 | [
"MIT"
] | permissive | kevinjzhang/bustub | 1b1c446a40841263d6c93ab0642ae104818f4edd | 4e1ac2fa482054ec4e9d90580067a06df0fada31 | refs/heads/master | 2020-11-24T02:56:11.917553 | 2020-01-31T12:45:07 | 2020-01-31T12:45:07 | 227,935,446 | 0 | 0 | MIT | 2019-12-13T22:56:20 | 2019-12-13T22:56:19 | null | UTF-8 | C++ | false | false | 2,438 | h | //===----------------------------------------------------------------------===//
//
// BusTub
//
// decimal_type.h
//
// Identification: src/include/type/decimal_type.h
//
// Copyright (c) 2015-2019, Carnegie Mellon University Database Group
//
//===------------------------------------... | [
"root@DESKTOP-P2AL5JC.localdomain"
] | root@DESKTOP-P2AL5JC.localdomain |
dd392106151b1d0befd00a4e4d298b5dd51bf38a | ad273708d98b1f73b3855cc4317bca2e56456d15 | /aws-cpp-sdk-synthetics/source/model/DescribeRuntimeVersionsRequest.cpp | 739316d75f9199f40751c994b6f3c5c16f880c9d | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | novaquark/aws-sdk-cpp | b390f2e29f86f629f9efcf41c4990169b91f4f47 | a0969508545bec9ae2864c9e1e2bb9aff109f90c | refs/heads/master | 2022-08-28T18:28:12.742810 | 2020-05-27T15:46:18 | 2020-05-27T15:46:18 | 267,351,721 | 1 | 0 | Apache-2.0 | 2020-05-27T15:08:16 | 2020-05-27T15:08:15 | null | UTF-8 | C++ | false | false | 1,293 | cpp | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... | [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
558ac644e3b70322830ad020c77aec818255be87 | 2ea03c322a0911154683f096ac9598442cdc26a7 | /epuck-simulation/src/sort_loop_function.cpp | 1f8e31e637149fc61ca7e11f9e867a645513565b | [] | no_license | knudsen97/bachelor-thesis | 4fa4a863bcdcbe69b91a552c0c2966e8539d5431 | 94a94e05a57c2984fc66849a9ac0e6fb4b3d3ccc | refs/heads/master | 2023-05-09T21:51:07.178726 | 2021-05-30T10:26:16 | 2021-05-30T10:26:16 | 333,049,308 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,906 | cpp | #include "sort_loop_function.h"
#include <argos3/plugins/simulator/entities/box_entity.h>
#include <argos3/plugins/simulator/entities/cylinder_entity.h>
#include <argos3/plugins/robots/foot-bot/simulator/footbot_entity.h>
#include <sstream>
#include <list>
/****************************************/
/***************... | [
"claus.huynh@yahoo.dk"
] | claus.huynh@yahoo.dk |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.