blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2ee228ad592e3d64f3eaed1ef48444b3ecff36f8 | 1f2490f35c67976e27fd409c1a15356580c4d846 | /Lab2/SiraliDosya.h | 6a5b5aa9285abbc2bb56008e9018283a6a09fa2f | [] | no_license | serdarmutluu/Course-Work-File-Structures | b783a12c2f8fc43a8c486d3de3641a37fe633b72 | 28466cc99e89c75ed8d1a0e104ec4741984ee9ce | refs/heads/master | 2022-11-25T08:50:23.664903 | 2020-07-21T05:48:38 | 2020-07-21T05:48:38 | 281,305,429 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,501 | h | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: SiraliDosya.h
* Author: serdarm99
*
* Created on 21 Mart 2020 Cumartesi, 14:39
*/
#ifndef SIRALIDOSYA_H
#define SI... | [
"noreply@github.com"
] | serdarmutluu.noreply@github.com |
d0cebcd18f3adedf128c6e3ece11454e9c898036 | 1e2de2812842ffdcbff9c5091e08d090b72e0973 | /Development/Editor/Core/ydbase/base/warcraft3/jass/nf_register.cpp | 9e7c21144a46324d694cae25fbcef120e931ee77 | [
"Apache-2.0"
] | permissive | shawwwn/YDWE | 2cd64f215368a50271e817c755dae99e154d74da | b83ffe041d9623409d9ffd951988e2b482d9cfc3 | refs/heads/master | 2020-05-29T11:37:16.480432 | 2014-06-26T07:34:32 | 2014-06-26T07:34:32 | 16,688,734 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,077 | cpp | #include <base/warcraft3/jass/nf_register.h>
#include <base/hook/iat.h>
#include <base/util/do_once.h>
#include <base/warcraft3/version.h>
#include <base/warcraft3/war3_searcher.h>
#include <base/hook/fp_call.h>
namespace base { namespace warcraft3 { namespace jass { namespace nf_register {
util::signal<void, uintpt... | [
"actboy168@gmail.com"
] | actboy168@gmail.com |
f6ad6613263d131c13b5334ffe671dda6a56d350 | f3f7cf4a65cc3c9354ad04d86b14e853d34f7c08 | /Module_07/ex00/main.cpp | 0fb831d5de093912d11ba4ca0676172023f2f512 | [] | no_license | hamanmax/Piscine_CPP | 4aadce72e3feee00e4ca274dd68a876da785f36d | 18d62d0f2a4ec4023b2f167d4e63504b90253259 | refs/heads/master | 2023-04-07T02:17:12.599736 | 2021-04-19T09:18:36 | 2021-04-19T09:18:36 | 348,053,922 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 719 | cpp | #include <iostream>
#include "whatever.hpp"
int main( void ) {
int a = 2,b = 3;
std::cout << "a = " << a << ", b = " << b << std::endl;
std::cout << "min( a, b ) = " << ::min( a, b ) << std::endl;
std::cout << "max( a, b ) = " << ::max( a, b ) << std::endl;
std::string c = "chaine1";
std::string d = "chaine2";
::swap(... | [
"hamanmax@gmail.com"
] | hamanmax@gmail.com |
23fff603a699fa0509a3e4e1e6665896a636f26b | 0783a2cce7ec4cd57a13643505ff42bd790348a0 | /Listing 2.1.h | 7dbdb8638f06972e956ee16d5f0a4132129ec7d7 | [] | no_license | Ichihoshisuz/C-Concurrency-in-Action---Listing | 9dec09364b33ef0cf9cb798a06b321b6c61b195b | 73b1d428c804bc6c7a70aa9d3ea0902c220c8d97 | refs/heads/main | 2023-04-19T10:46:15.329959 | 2021-05-08T02:17:54 | 2021-05-08T02:17:54 | 360,388,151 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 472 | h | #pragma once
#include <thread>
class func
{
public:
func(int& i) :N(i) {}
void operator()();
void do_something(int& i) { ++i; };
private:
int& N;
};
// 不应该这么写。会出现 dangling reference ,即可能会重复访问已经销毁的变量。
void func::operator()()
{
for (unsigned j = 0; j < 100000000; ++j)
{
do_something(N);
}
}
void oops()
{
in... | [
"81299558+Ichihoshisuz@users.noreply.github.com"
] | 81299558+Ichihoshisuz@users.noreply.github.com |
27b56ba8e6f11aac23f2320443793cc31a03953f | 45364deefe009a0df9e745a4dd4b680dcedea42b | /SDK/FSD_STE_StickyFlame_DamageBonus_parameters.hpp | 47d9ad0fef272e1be379af895b3de7e346dcc821 | [] | no_license | RussellJerome/DeepRockGalacticSDK | 5ae9b59c7324f2a97035f28545f92773526ed99e | f13d9d8879a645c3de89ad7dc6756f4a7a94607e | refs/heads/master | 2022-11-26T17:55:08.185666 | 2020-07-26T21:39:30 | 2020-07-26T21:39:30 | 277,796,048 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 375 | hpp | #pragma once
// DeepRockGalactic SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "FSD_STE_StickyFlame_DamageBonus_classes.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Parameters
//-------------------------------------------------------------------... | [
"darkmanvoo@gmail.com"
] | darkmanvoo@gmail.com |
e10d0e97a4a214b0fe9d8d89b429bc494e08545d | b60514dc246386144edb585eb7d9c0c92bd548de | /Maths for Games/Week 1/Matrix Transformation Demo/Transformation Matrix Demo/Transformation_Matrix_DemoApp.cpp | b362df9017217d4ddb5b04ee1cb3f5edcd61d663 | [
"MIT"
] | permissive | sammydeedge/AIE2018 | 9addce918bf010ae840cdf294ba4077ae5bdeff7 | b23ce54e4572df3c00ad8517498cd11c47a41df2 | refs/heads/master | 2020-03-31T19:41:40.338376 | 2018-10-22T23:17:39 | 2018-10-22T23:17:39 | 141,961,746 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,594 | cpp | #include "Transformation_Matrix_DemoApp.h"
#include "Texture.h"
#include "Font.h"
#include "Input.h"
#include "Sprite.h"
Transformation_Matrix_DemoApp::Transformation_Matrix_DemoApp() {
}
Transformation_Matrix_DemoApp::~Transformation_Matrix_DemoApp() {
}
bool Transformation_Matrix_DemoApp::startup() {
m_2dRend... | [
"sammydeedge@hotmail.com"
] | sammydeedge@hotmail.com |
89233abff337cf6fa48a35dfc181435445f74923 | 935927010571e2f820e70cead9a1fd471d88ea16 | /Practice CP ITB/Practice10/B - Xenia and Bit Operator.cpp | 2c090a68d06b43dd263e23a023a5026955b32f2a | [] | no_license | muhammadhasan01/cp | ebb0869b94c2a2ab9487861bd15a8e62083193ef | 3b0152b9621c81190dd1a96dde0eb80bff284268 | refs/heads/master | 2023-05-30T07:18:02.094877 | 2023-05-21T22:03:57 | 2023-05-21T22:03:57 | 196,739,005 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,289 | cpp | #include<bits/stdc++.h>
using namespace std;
struct st{
long long v; int h;
};
int n,m,k;
vector<st> tree;
void build(){
for(int i=k-1; i > 0; i--){
//cout << i << "\n";
if(tree[2*i].h & 1){
tree[i].v = tree[2*i].v|tree[2*i+1].v;
tree[i].h = tree[2*i].h+1;
... | [
"39514247+muhammadhasan01@users.noreply.github.com"
] | 39514247+muhammadhasan01@users.noreply.github.com |
92106689bb805a434d46ab106ec7596eda2445d1 | a3a614b13d1361b655c40e38ae266d71c4ec7b74 | /src/RANSAC.cpp | ed657aa8ce4b68bdc977a1b287fe50cadd0db98e | [] | no_license | limitimil/CVHW_ImageStiting | c00ffe636cdd361152aff0983a039c04040d9dfd | 43694d26d2ec9ca248ce9dfe0f7ec01aa8bad946 | refs/heads/master | 2021-01-09T20:14:06.081231 | 2016-07-12T14:56:35 | 2016-07-12T14:56:35 | 63,166,966 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,364 | cpp | #include <cmath>
#include <cstdlib>
#include <limits>
#include <cassert>
#include <opencv2/imgproc.hpp>
#include "RANSAC.h"
#include "../DevTool/combination.h"
#include "../DevTool/utilCV.h"
#include "warp.h"
#include "scoreBoard.h"
using namespace cv;
using namespace std;
RANSAC::RANSAC() {}
RANSAC::RANSAC(vector<KeyP... | [
"zlsh10340@gmail.com"
] | zlsh10340@gmail.com |
28f1d2f1a2d102b07cdb4386cbb6de84abfa469a | 63a8dc27f2f742d2c82b94ebaea8173df3a47462 | /Algorithms/Implementation/FindDigits.cpp | bf7084d264505430b2aff464b7e29e77c85b83e6 | [] | no_license | CristianD1/Hacker-Rank-Code | 014f86676b76209a984f2e284e2c315118cae3c4 | f95da82e97d5dffc3e26a244d79e70054fca4729 | refs/heads/master | 2021-01-18T23:20:33.176107 | 2016-06-09T12:34:04 | 2016-06-09T12:34:04 | 50,144,866 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 423 | cpp | #include <iostream>
int findDivisors(int in){
int tempIn = in;
int resCount = 0;
while(tempIn > 0){
int digit = tempIn % 10;
tempIn = tempIn / 10;
if(digit != 0 && in % digit == 0){
resCount ++;
}
}
return resCount;
}
int main(){
int t;
std::cin >> t;
for(int i = 0; i < t; i++){
int in;
std... | [
"cristian.david909@gmail.com"
] | cristian.david909@gmail.com |
084563631b42ed0cfdcf510807ac03cef80a79de | bcf7410e9dd665c8243f927c31c291a6dcf4a98b | /src/textures.hh | 3136161bea6eab214371f6fd17e2697d807d669f | [] | no_license | bhamrick/zzz | d234f6d9852015d2eda19591745bed2c026ed067 | 63e563062b3e370ce093d30982ab1a286ba55adf | refs/heads/master | 2016-09-05T23:21:43.374395 | 2011-04-02T06:18:15 | 2011-04-02T06:18:15 | 1,307,319 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 147 | hh | #ifndef TEXTURES_H
#define TEXTURES_H
void init_textures();
void use_player_texture();
void use_background_texture();
void end_texture();
#endif
| [
"brian.c.hamrick@gmail.com"
] | brian.c.hamrick@gmail.com |
37556deb027ab9269f36fc965aea36ffa2f74e59 | 3f38a77e31becc7afb482e57bc115f2860976b7c | /solution/3003.cpp | 8e0f782829bb3e2cf617ced9eb36775cba502bf3 | [] | no_license | gnujoow/acmicpc | 06f2c7b1381d8f5b2af8f39bd92b5baf100f6007 | 8f5f082e03bc432a2b9956a82eeabd2974234b43 | refs/heads/master | 2020-04-15T15:01:50.222670 | 2017-06-14T08:50:51 | 2017-06-14T08:50:51 | 54,367,287 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 176 | cpp | #include <cstdio>
const int chess[6] ={1,1,2,2,2,8};
int main(){
int temp;
for(int i = 0 ; i < 6 ; i++){
scanf("%d",&temp);
printf("%d ",chess[i]-temp);
}
return 0;
} | [
"gnujoow.kim@gmail.com"
] | gnujoow.kim@gmail.com |
bebc4a2ad78e1f2180afbefb056d80f533d310ec | b4f09794c97136834aaef49bcdfa789f13bc9949 | /src/llmq/quorums_dkgsessionmgr.cpp | 2077d3ce9064dc1dfac04dfe77788b5f36e25110 | [
"MIT"
] | permissive | bee-group/beenode | c878ca0be7669fc405f00abb277c9ee26477cfc8 | d27c39471bd960779f1b5dd09ad07295fe29d3e6 | refs/heads/master | 2023-07-07T05:28:26.736520 | 2023-07-04T16:48:45 | 2023-07-04T16:48:45 | 180,884,728 | 8 | 11 | MIT | 2020-04-07T07:09:03 | 2019-04-11T22:03:08 | C++ | UTF-8 | C++ | false | false | 9,368 | cpp | // Copyright (c) 2018-2019 The Beenode Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "quorums_dkgsessionmgr.h"
#include "quorums_blockprocessor.h"
#include "quorums_debug.h"
#include "quorums_init.... | [
"you@example.com"
] | you@example.com |
ac820055f5e4930bbee3ebf27b09aeb95e3c236a | 160581b145f691b23c723f417c550619b416beca | /sfml/include/SFML/Window/Mouse.hpp | 5daa466623542860e466f2a0e8b9bf9fbad6db5e | [] | no_license | AntonGlomadov/LiDAR_main | df2fd6fa0cff4f1e2871a7e08ba75eddb3523200 | 879d244f84680c9ceba89cd5ba071e1ff7ded482 | refs/heads/master | 2021-01-16T09:18:38.222799 | 2020-02-15T21:15:23 | 2020-02-15T21:15:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,617 | hpp | ////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
// Copyright (C) 2007-2018 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages a... | [
"maxxtereshko@gmail.com"
] | maxxtereshko@gmail.com |
6ef2f72cf00f369cc3eaa21c1bbfe2db9f1fb4ee | 7353b0ef98502e77295480525fd040e0216d087a | /snippets/0x07/sol_deerwoods.cpp | f44eb75ee43f0e102d39be2e42418fff4af21462 | [] | no_license | pblan/fha-cpp | df5428dc68f6ba009dea8a0a738dfec356c4a4d9 | 5008f54133cf4913f0ca558a3817b01b10d04494 | refs/heads/master | 2023-08-10T16:21:30.697211 | 2021-09-28T15:04:53 | 2021-09-28T15:04:53 | 302,557,502 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,931 | cpp | // author: a.voss@fh-aachen.de
#include <iostream>
using std::cout;
using std::endl;
using std::ostream;
template <typename T>
class nullable {
public:
typedef T value_type;
private:
value_type m_value;
bool m_isNull;
public:
nullable() : m_isNull(true) {}
nullable(const nullable& n... | [
"patrick.blaneck@rwth-aachen.de"
] | patrick.blaneck@rwth-aachen.de |
e3b1d9e53a277165194a662fb696488975bdd845 | c8e6f194669663e0e2748dbc56a7172b9ea008f7 | /.localhistory/GUI/1472038091$MainForm.h | ffe679abbda968c4564a473a9033100eebf770e4 | [] | no_license | itreppert/GUI | 1922e781d804d17cb8008197fdbfa11576077618 | 9ca4ea0531eb45a4462a4d8278aec67f8c2705ef | refs/heads/master | 2020-04-17T20:29:10.965471 | 2016-09-06T13:18:01 | 2016-09-06T13:18:01 | 67,501,677 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 107,384 | h | #pragma once
#include "Test.h"
#include "TeilenDurch0Exception.h"
#include "BlinkinButton.h"
#include "DrawingPanel.h"
#include "RegexTextBox.h"
namespace GUI
{
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;... | [
"Alfa-Dozent@SB-U03-001"
] | Alfa-Dozent@SB-U03-001 |
a33ec34f6af6b6cbbb64ff24bb9df3a9fad4a1ee | 60db84d8cb6a58bdb3fb8df8db954d9d66024137 | /android-cpp-sdk/platforms/android-4/android/widget/CursorAdapter.hpp | ec4974648113f4833f71700254a31f0c4b406568 | [
"BSL-1.0"
] | permissive | tpurtell/android-cpp-sdk | ba853335b3a5bd7e2b5c56dcb5a5be848da6550c | 8313bb88332c5476645d5850fe5fdee8998c2415 | refs/heads/master | 2021-01-10T20:46:37.322718 | 2012-07-17T22:06:16 | 2012-07-17T22:06:16 | 37,555,992 | 5 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 15,748 | hpp | /*================================================================================
code generated by: java2cpp
author: Zoran Angelov, mailto://baldzar@gmail.com
class: android.widget.CursorAdapter
================================================================================*/
#ifndef J2CPP_INCLUDE_IMP... | [
"baldzar@gmail.com"
] | baldzar@gmail.com |
e891b3fb55a2ac1dda44e1cfc50405c7c50b9061 | b22588340d7925b614a735bbbde1b351ad657ffc | /athena/Control/AthenaMonitoring/AthenaMonitoring/DQEventFlagFilterTool.h | e412a729a9a730d332041a96816ce017a0dbc844 | [] | no_license | rushioda/PIXELVALID_athena | 90befe12042c1249cbb3655dde1428bb9b9a42ce | 22df23187ef85e9c3120122c8375ea0e7d8ea440 | refs/heads/master | 2020-12-14T22:01:15.365949 | 2020-01-19T03:59:35 | 2020-01-19T03:59:35 | 234,836,993 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 908 | h | /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef DQEVENTFLAGFILTERTOOL_H
#define DQEVENTFLAGFILTERTOOL_H
#include "AthenaMonitoring/IDQFilterTool.h"
#include "AthenaBaseComps/AthAlgTool.h"
#include "GaudiKernel/StatusCode.h"
#include "GaudiKernel/ToolHandle.h"
// This filter to... | [
"rushioda@lxplus754.cern.ch"
] | rushioda@lxplus754.cern.ch |
e73f92fadfd061cbeb83abc655aa8c4335c3a655 | fd57ede0ba18642a730cc862c9e9059ec463320b | /native/libs/gui/tests/FillBuffer.cpp | 7642d03eaaed18fb873202cd2977b2b07fce6451 | [
"LicenseRef-scancode-unicode",
"Apache-2.0"
] | permissive | kailaisi/android-29-framwork | a0c706fc104d62ea5951ca113f868021c6029cd2 | b7090eebdd77595e43b61294725b41310496ff04 | refs/heads/master | 2023-04-27T14:18:52.579620 | 2021-03-08T13:05:27 | 2021-03-08T13:05:27 | 254,380,637 | 1 | 1 | null | 2023-04-15T12:22:31 | 2020-04-09T13:35:49 | C++ | UTF-8 | C++ | false | false | 4,251 | cpp | /*
* Copyright 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required b... | [
"541018378@qq.com"
] | 541018378@qq.com |
4f7362bb0161bf7624ce919523ccdb50f33707dc | 97c3a0cdc0894e08d2afebbd1a6e86e3233312d2 | /data/cws/src/hitwall/src/simwallsensor.cpp | 2c93ca4a007de3161d2c33fb4e3a92498b40677c | [
"MIT",
"BSD-2-Clause"
] | permissive | elbaum/phys | 139c17d9e4a5ed257657be9e5a3b4c580c460448 | 6ac580323493a5c6bb6846d039ae51e9ed1ec8b6 | refs/heads/master | 2020-03-21T13:25:09.513340 | 2018-06-24T21:05:43 | 2018-06-24T21:05:43 | 138,604,505 | 0 | 0 | MIT | 2018-06-25T14:15:26 | 2018-06-25T14:15:26 | null | UTF-8 | C++ | false | false | 4,740 | cpp | #include <iostream>
#include "ros/ros.h"
#include "gazebo_msgs/ModelState.h"
#include "gazebo_msgs/GetModelState.h"
#include "gazebo_msgs/SpawnModel.h"
#include "nav_msgs/Odometry.h"
#include "std_msgs/Empty.h"
#include "geometry_msgs/Twist.h"
#include "tf/tf.h"
#include "tf/transform_broadcaster.h"
#include <tinyxml.h... | [
"jpwco@bitbucket.org"
] | jpwco@bitbucket.org |
2e9cc3076709646209c2d2b9af6683e25d6c2a84 | 4213fd574b08a9bc4c02de4fc5fddec53e99994a | /wecon_wtest/common/PERMZ.INC | 79a54192d2ad2dc162d1a283c5d9d8a4e50f4242 | [] | no_license | OPM/opm-tests | a5a76fa747b7076c65cb05b8a7536939344aaf9f | c92774e32de36d5a2309f1fdd8d9251ebe53fc6e | refs/heads/master | 2023-08-28T01:06:21.274269 | 2023-08-23T21:03:02 | 2023-08-23T21:03:02 | 121,263,124 | 21 | 70 | null | 2023-09-14T08:39:55 | 2018-02-12T15:22:07 | ECL | UTF-8 | C++ | false | false | 61,581 | inc | -- This reservoir simulation deck is made available under the Open Database
-- License: http://opendatacommons.org/licenses/odbl/1.0/. Any rights in
-- individual contents of the database are licensed under the Database Contents
-- License: http://opendatacommons.org/licenses/dbcl/1.0/
-- Copyright (C) 2015 SINTEF ICT... | [
"tor.harald.sandve@iris.no"
] | tor.harald.sandve@iris.no |
d374213e0a4b6b019a55c737e743286157090f12 | 3f7028cc89a79582266a19acbde0d6b066a568de | /tools/testdata/check_format/counter_from_string.cc | 07c1cdad54ef18bd22f3adffd1eaf879316368d9 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | envoyproxy/envoy | 882d3c7f316bf755889fb628bee514bb2f6f66f0 | 72f129d273fa32f49581db3abbaf4b62e3e3703c | refs/heads/main | 2023-08-31T09:20:01.278000 | 2023-08-31T08:58:36 | 2023-08-31T08:58:36 | 65,214,191 | 21,404 | 4,756 | Apache-2.0 | 2023-09-14T21:56:37 | 2016-08-08T15:07:24 | C++ | UTF-8 | C++ | false | false | 112 | cc | namespace Envoy {
void init(Stats::Scope& scope) {
scope.counterFromString("hello");
}
} // namespace Envoy
| [
"noreply@github.com"
] | envoyproxy.noreply@github.com |
c282e3138d41f3c8d8e0ca3f03d54bc7225d3546 | 68f4dcbed619df4c336dcc315a0ff793fee1dde4 | /ece250.h | 74b142de29a67ff0ca5a4fcd3c6ed13de99d60d5 | [] | no_license | EIivaras/ECE250Project4 | 2b3a762006e38e6dbe1b631faaca1f3f0422aea4 | 36250e0fc618494b32248d20a2336d48fd9fa2be | refs/heads/master | 2021-01-25T10:39:04.516364 | 2018-03-07T21:07:09 | 2018-03-07T21:07:09 | 123,366,520 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,368 | h | #ifndef ECE250
#define ECE250
#include <cstdlib>
#include <iostream>
/* #include <sstream> */
#include <iomanip>
#include <string>
#include <cstring>
#include <cmath>
#include <ctime>
#include "Exception.h"
/****************************************************************************
* *******************************... | [
"zach00182@gmail.com"
] | zach00182@gmail.com |
ce8c68130b903e15c4efe59fd9b2ad68c418a60e | 4bfef1b16438fcb5e59366e0ae37bf8be0cfeb3d | /CFA/5OSTAPANDGRASS.cpp | 56698e361f96557494128a1cd175660f24ac8cba | [] | no_license | RSHBSXN/CP | dec5df0b31d9dfff12d061711675c341c8df6398 | c00b6fd9ac1694fea144a5d507bd576f42ccfb91 | refs/heads/master | 2022-01-10T22:51:24.988519 | 2019-06-03T16:53:24 | 2019-06-03T16:53:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,049 | cpp | /*
Author: Rishabh Saxena
All the best!!
*/
#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define XLL __int128
#define pii pair<int,int>
#define pll pair<LL,LL>
#define vi vector<int>
#define MATRIX vector<vector<int>>
#define MATRIXB vector<vector<bool>>
#define MATRIXC vector<vector<char>... | [
"noreply@github.com"
] | RSHBSXN.noreply@github.com |
ba43ba666a7389b8eb4e4c77aa86dbafa6213743 | ae1c2f2e5a25a267580989b573694fe0431d7be9 | /Instructors Stuff/QtExamples/5/mainwindow.cpp | 09cd0cf897e91e8dff82a7dfdc7f12347c72516f | [] | no_license | roburrq/Homework3 | b31c42fcd5fbd539726514afc2566ab7dc880c96 | f1486676f0499d3ec4b0286d1e1aa69ff34faee2 | refs/heads/master | 2022-11-14T04:34:36.040437 | 2020-07-05T15:14:36 | 2020-07-05T15:14:36 | 277,326,118 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,521 | cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
connect(ui->m_exitButton, &QPushButton::clicked, this, &MainWindow::exit, Qt::DirectConnection);
connect(ui->m_startButton, &QPush... | [
"noreply@github.com"
] | roburrq.noreply@github.com |
4b038bd64ee2385d643acdd474fe1ee04fd239a4 | 8c121b5c3dc564eb75f7cb8a1e881941d9792db9 | /old_contest/at_coder_abc183_C.cpp | 35fcb76c92e0c0091f435712b860af0148caaee1 | [] | no_license | kayaru28/programming_contest | 2f967a4479f5a1f2c30310c00c143e711445b12d | 40bb79adce823c19bbd988f77b515052c710ea42 | refs/heads/master | 2022-12-13T18:32:37.818967 | 2022-11-26T16:36:20 | 2022-11-26T16:36:20 | 147,929,424 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,899 | cpp | #include <iostream>
#include <stdio.h>
#include <algorithm>
#include <map>
#include <math.h>
using namespace std;
#include <vector>
#define rep(i,n) for (ll i = 0; i < (n) ; i++)
#define INF 1e9
#define llINF 1e18
#define base10_4 10000 //1e4
#define base10_5 100000 //1e5
#define base10_6 1000000 //1e6
#... | [
"istorytale090415@gmail.com"
] | istorytale090415@gmail.com |
ade35185dd9486e415707b14b75418ca75cccf16 | c3ea40ffec96954b955c5b1d67a05c991fbcf461 | /Server.cpp | f7b3eeb37f9b7f7a57696283797f165ad2ed4f4b | [] | no_license | msb217/File-Server | 32c8a97a8aff7b56a4271a97a6d8eadcb142f198 | a7df3500e62dbae6cdb2b8aea2afbc64ee8cd44b | refs/heads/master | 2021-08-28T17:23:14.639750 | 2017-12-12T22:50:14 | 2017-12-12T22:50:14 | 112,871,127 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,982 | cpp | #include <arpa/inet.h>
#include <errno.h>
#include <fcntl.h>
#include <netdb.h>
#include <netinet/in.h>
#include <openssl/md5.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#... | [
"msb217@lehigh.edu"
] | msb217@lehigh.edu |
230cc165fc85c9cfb1e046dd1eed3fdeae77043d | c9ea4b7d00be3092b91bf157026117bf2c7a77d7 | /字符串初步/P2375.cpp | 9dce4cf7050d04ce8b96936b18c5f40078497e02 | [] | no_license | Jerry-Terrasse/Programming | dc39db2259c028d45c58304e8f29b2116eef4bfd | a59a23259d34a14e38a7d4c8c4d6c2b87a91574c | refs/heads/master | 2020-04-12T08:31:48.429416 | 2019-04-20T00:32:55 | 2019-04-20T00:32:55 | 162,387,499 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 745 | cpp | #include<iostream>
#include "memory.h"
#include<cstring>
#define MAXL 1000010
#define p 1000000007
#define ll long long
using namespace std;
ll nx[MAXL],num[MAXL],n=0,ans=1,len=0;
char s[MAXL]="";
int main()
{
ll i=0,j=0,k=0;
ios::sync_with_stdio(0);
for(cin>>n;n--;)
{
memset(nx,0,sizeof(nx));... | [
"3305049949@qq.com"
] | 3305049949@qq.com |
047b8a9ee7d624eeb8f7372214cf935ee0b092ab | a27d9bc41f5eb391a24043b60926695e01e7ff4a | /Biggest_and_smallest_in_array_with_function.cpp | 7adc05afb703a78130bf32522109410f4294bf29 | [] | no_license | Yildirim-Habr/Cpp-code | 467d051a302432a4f25afe3aa1555d76850fad14 | 56ee19d7b18a4f1dbb6f2b5705e97485e9ba5e6e | refs/heads/master | 2021-01-02T09:18:40.293467 | 2017-11-18T09:50:51 | 2017-11-18T09:50:51 | 99,190,404 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 683 | cpp | #include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <iomanip>
#include <string>
#include <vector>
#include <ctype.h>
#include <algorithm>
using namespace std;
void getValue(){
int i, num;
float val, z, maxv, minv;
cout << "How many value ? ";
cin >> num;
float ar... | [
"noreply@github.com"
] | Yildirim-Habr.noreply@github.com |
387d5f1b889644702f26e2d4af4c22dbfd6e7677 | 989c31de263a91d93f39b6bfc050259367ee0fbb | /psol/include/net/instaweb/rewriter/public/test_rewrite_driver_factory.h | 5a2a41d5dcbdf3db0dbf82ae6ed1422a73fce3fa | [
"Apache-2.0"
] | permissive | vinothwindows47/ngx_pagespeed | a00f97935721847bdec7278bac37151a98dff70e | 85a36b8133a1dc8fbb24afecacfb0a2c05616605 | refs/heads/master | 2021-01-24T00:08:44.684277 | 2013-04-26T21:39:24 | 2013-04-26T21:39:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,146 | h | /*
* Copyright 2011 Google Inc.
*
* 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 agreed to... | [
"jefftk@google.com"
] | jefftk@google.com |
633e758697d97417f1f104bb547e9e638d9c31f7 | a4161b9eb3de347b3b79cbcff7c146637001b13f | /sframe/conf/TableReader.h | 0f1e27865ef0867af972a0c95e26507c0753a22b | [] | no_license | hackerlank/sframe | 86fb94d2b7424e97cc6354d1332939af53daac49 | 315c604a1cc0efd0751239be5b042aeea46a547b | refs/heads/master | 2021-01-12T06:28:22.180760 | 2016-11-22T19:18:51 | 2016-11-22T19:18:51 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 4,657 | h |
#ifndef SFRAME_TABLE_READER_H
#define SFRAME_TABLE_READER_H
#include <assert.h>
#include <string>
#include <vector>
#include <list>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <memory>
#include "Table.h"
#include "ConfigStringParser.h"
#include "ConfigLoader.h"
#include "C... | [
"353153763@qq.com"
] | 353153763@qq.com |
b17aa2ca47c8b22ee2a57f3ad1021321fbe8124b | a84edc307452519e101093c96861fe269b965be0 | /src/net.cpp | b28627dd1a2c3bce9eb2bc1c33505f17fe663b6b | [
"MIT"
] | permissive | zebbra2014/rublebit | d339ae3063b6b1b19c49da4eccfe946657a10406 | 39bb89fa7186a4782ae1d1856d17067f243c8f89 | refs/heads/master | 2021-01-17T17:20:30.606553 | 2015-11-12T08:12:55 | 2015-11-12T08:12:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 56,728 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The RubleBit developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "db.h"
#include "net.h"
#include "init.h"
#include "addrman.h"
#include ... | [
"root@poolcoin.pw"
] | root@poolcoin.pw |
f51be28603380741684e7a811ef8af073f4fcf7f | bed24ed6bd341da7818d7cfc988564a37bb9382d | /Synthetic/src/Synthetic/Events/LayerStack.h | 361911ab8b17813d9908e7c3b37e4b35744e5eb0 | [
"Apache-2.0"
] | permissive | qlurkin/synthetic | 6865aa3eaf9e29e5f0f531695af3cc362d0133d7 | 9bd50dc0048746304c611634bf16d9de27466f4b | refs/heads/master | 2023-01-03T22:01:55.388407 | 2020-10-20T11:43:27 | 2020-10-20T11:43:27 | 270,856,062 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 698 | h | #pragma once
#include "Synthetic/core.h"
#include "Layer.h"
namespace syn {
class LayerStack {
public:
LayerStack();
~LayerStack();
void pushLayer(Layer* layer);
void pushOverlay(Layer* overlay);
void popLayer(Layer* layer);
void popOverlay(Layer* overlay);
template<class T>
bool dispatc... | [
"qlurkin@gmail.com"
] | qlurkin@gmail.com |
a20c73321da73cc8d1d807984afea82cdb9c3f6c | 8e0da1edac91c82e9a0a6cd1d229ff41d0d7042a | /Math/Src/Vector2.cpp | 090cf9b8ebea2b8549285803e326d8c1c7fe37cf | [] | no_license | MaxFanning/CCGE | 813d4917cf417019fecd343411f913e2702b7172 | 810245edbf67301b3fd24365d98704cc23d17208 | refs/heads/master | 2021-04-27T21:04:01.601866 | 2018-02-21T20:32:55 | 2018-02-21T20:32:55 | 122,390,274 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 664 | cpp | #include "Precompiled.h"
#include "Vector2.h"
namespace CCGE {
namespace CMath {
Vector2 Vector2::XAxis()
{
return { 1.0f, 0.0f };
}
Vector2 Vector2::YAxis()
{
return { 0.0f, 1.0f };
}
Vector2 Vector2::Zero()
{
return { 0.0f, 0.0f };
}
Vector2 Vector2::One()
{
return { 0.0f, 0.0f };
}
Vector2 Vector2::operato... | [
"31266092+MaxFanning@users.noreply.github.com"
] | 31266092+MaxFanning@users.noreply.github.com |
7a68f40cbc26633c210e288cf1d9171ae61404f8 | 97aab27d4410969e589ae408b2724d0faa5039e2 | /SDK/EXES/INSTALL VISUAL 6 SDK/INPUT/6.0_980820/MSDN/VCPP/SMPL/MSDN98/98VSa/1036/SAMPLES/VC98/sdk/com/inole2/chap16/beeper6/beeper.h | d603171dc77226f3437041aeea1ec1fed8e7e611 | [] | no_license | FutureWang123/dreamcast-docs | 82e4226cb1915f8772418373d5cb517713f858e2 | 58027aeb669a80aa783a6d2cdcd2d161fd50d359 | refs/heads/master | 2021-10-26T00:04:25.414629 | 2018-08-10T21:20:37 | 2018-08-10T21:20:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,868 | h | /*
* BEEPER.H
* Beeper Object #6 with Property Pages Chapter 16
*
* Classes that implement the Beeper object for supporting
* property pages.
*
* Copyright (c)1993-1995 Microsoft Corporation, All Right Reserved
*
* Kraig Brockschmidt, Microsoft
* Internet : kraigb@microsoft.com
* Compuserve: >INTERNET:kra... | [
"david.koch@9online.fr"
] | david.koch@9online.fr |
d7e3239207cfd7933ff10600cc731127da4a334c | 4e16586c4d70ad578899cf205dcb188383a751cb | /example/23.usb_device/USB_msd_sd/1.usb_msd_sd.cpp | 4a92f18a4f7ff53c6686b40c9fa14348350e009a | [] | no_license | bladrome/eBox_on_MQTT | 5ecb20a84f74267467ae09e74acac98a0d20d3c5 | b0e3129411cffdbe4b3b153ec6de795cc493887e | refs/heads/master | 2023-08-16T19:42:29.679799 | 2023-08-12T14:06:17 | 2023-08-12T14:06:17 | 87,694,771 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 897 | cpp | #include "ebox.h"
#include "usb_msd_sd.h"
/*
* Disk initilization
*/
int USBMSD_SD::disk_initialize() {
int ret;
ret = SD::init();
mass_memory_size = SD::get_capacity();
_status = 0;
return ret;
}
int USBMSD_SD::disk_write(const uint8_t* data, uint64_t block, uint8_t count) {
if(count == 1... | [
"blackwhitedoggie@163.com"
] | blackwhitedoggie@163.com |
3c13945ef55796f5876a8a6b60bd522c8c825b2d | 0f4012d03230b59125ac3c618f9b5e5e61d4cc7d | /Cocos2d-x/svnserve/Encrypt.h | f2e7160c48a590e2830a16d390d00decd0a5ade5 | [] | no_license | daxingyou/SixCocos2d-xVC2012 | 80d0a8701dda25d8d97ad88b762aadd7e014c6ee | 536e5c44b08c965744cd12103d3fabd403051f19 | refs/heads/master | 2022-04-27T06:41:50.396490 | 2020-05-01T02:57:20 | 2020-05-01T02:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,829 | h | #ifndef ENCRYPT_HEAD_FILE
#define ENCRYPT_HEAD_FILE
//数组维数
#define CountArray(Array) (sizeof(Array)/sizeof(Array[0]))
//////////////////////////////////////////////////////////////////////////
//网狐32位MD5加密和20位异或加密解密
//MD5 加密类
class CMD5Encrypt
{
//函数定义
private:
//构造函数
CMD5Encrypt() {}
//功能函数
public:
//生成密文
sta... | [
"hanxiaohua85@163.com"
] | hanxiaohua85@163.com |
a8fad6cec7f505db1cfacda8fada7c82787a21ab | 5178ebecc4458b360b7593e31353ab18e519953e | /include/npstat/nm/UniformAxis.hh | e63211fe5ae9c2b7ad83c6dc40ae24462675ad89 | [] | no_license | KanZhang23/Tmass | 9ee2baff245a1842e3ceaaa04eb8f5fb923faea9 | 6cf430a7a8e717874298d99977cb50c8943bb1b9 | refs/heads/master | 2022-01-10T10:51:49.627777 | 2019-06-12T14:53:17 | 2019-06-12T14:53:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,462 | hh | #ifndef NPSTAT_UNIFORMAXIS_HH_
#define NPSTAT_UNIFORMAXIS_HH_
/*!
// \file UniformAxis.hh
//
// \brief Uniformly spaced coordinate sets for use in constructing
// rectangular grids
//
// Author: I. Volobouev
//
// June 2012
*/
#include <vector>
#include <utility>
#include <string>
#include <iostream>
#include... | [
"kanzhang@fcdflnxgpvm01.fnal.gov"
] | kanzhang@fcdflnxgpvm01.fnal.gov |
a11506e53e436e56dee387d3e6b1a34a388d4e83 | 7d91170c0c6b7abb0784a8521755aefee650f7e3 | /HiUqoEL6NvhS2Js3/GRWOAr35s4aMD9fE.cpp | ee66ac6a58972fa4e81489435dd9adeed8a480bb | [] | no_license | urlib/usi35g | e577ca090fc4a60b68662d251370a7cd7cc2afe3 | 46562fa29da32e4b75d8f8fd88496e95a3937099 | refs/heads/master | 2021-04-08T04:02:59.860711 | 2020-04-15T04:22:45 | 2020-04-15T04:22:45 | 248,737,049 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 42,238 | cpp | 蹈𣤥北𞡑𢟳𩥭텴𢶴𤸌𗮾𡧴汃㻅𥆂𫒶橥𤎑ﹿဏ⮶惵᷀𪨷𥖧䇅𠯔🧨𛂆𦥾囆𔒍𪶝𬈸𮝧𡒘𖮍𧈆롞𡕊𧷇垶铀𨎵⺫暬𗎦𐔻ឃ𭉇𦛹휟ᔼ𭾍ⲿ𬅏𘓵𩐷蠬𗱬辶഼姴驖𝓠뗵𫒈𓇟𪶦𑆵𧶨𗈀𦭦ᶺ벣汋𝐫𗖛铭釡𮡛𧶖𤖏ﲖ𠻸𤺫≉🕈𫈦ٍ𪕖康䎌𨉂Ї𤠵𣕪隯𑴕𮟭𠒖㈝𤖣鍢𧒏ც𫸧ᔎ㻠ꨰ𦈴𑋌𨐏ﲐ𭫅븵껧𡞽𝡒酸𪻕𢡢뒟從𤖞㉮𬙯▧䬅𣠀𮈳Օ𓎈₥龔⅓𗓟鲇ᑡ𪶜𬗹䀦堥𠏣𐌳𢽞𦪠횹뛩𨔯𮨚仍𩥱𣫻𩹗𮡴𩚄𭶴𤚄𥋍钉𥾺𪄧桡ᴼ瘒𦝸𠍄🆕뀙𑵀𖹁䀝𡡤ﬦ靀䘋𡡥𪗝𪳴𭺐⼑펇𩈽𧙰Ò𩸦𛃃𘘁慃춗𘥯𝜴𩘟ᒍ𥹪𒓣𞠇𓋿ꆡ舸𬓜�... | [
"45290401+vmlankub@users.noreply.github.com"
] | 45290401+vmlankub@users.noreply.github.com |
be6b93eb898ea5b5c820ed8f45f191bc57b10022 | 781964e465e1d49b3cd44eb69a333474916d159b | /gr/gr1/utl/shader_param_data.cpp | 0efc0909e0a60ef378b0ea889276b8347921f5d7 | [] | no_license | aaalexandrov/Alex | 3742d25c6d30c80c7929631b394e1387028edc01 | 7c7aed6cb3e5897fe91cf324c79425042ba3488a | refs/heads/master | 2023-08-19T10:58:54.633930 | 2023-08-16T23:27:10 | 2023-08-16T23:27:10 | 3,391,809 | 2 | 0 | null | 2022-12-01T21:42:36 | 2012-02-08T21:55:15 | C++ | UTF-8 | C++ | false | false | 72 | cpp | #include "shader_param_data.h"
NAMESPACE_BEGIN(gr1)
NAMESPACE_END(gr1) | [
"greyalex2003@yahoo.com"
] | greyalex2003@yahoo.com |
8ecc8602a07457f89e198e59286c5e14ad62e4d5 | 0dca3325c194509a48d0c4056909175d6c29f7bc | /sas/include/alibabacloud/sas/model/DescribeDingTalkResult.h | e913dbe4002c7852464de98a3cf85ba68d5ba7e5 | [
"Apache-2.0"
] | permissive | dingshiyu/aliyun-openapi-cpp-sdk | 3eebd9149c2e6a2b835aba9d746ef9e6bef9ad62 | 4edd799a79f9b94330d5705bb0789105b6d0bb44 | refs/heads/master | 2023-07-31T10:11:20.446221 | 2021-09-26T10:08:42 | 2021-09-26T10:08:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,861 | h | /*
* Copyright 2009-2017 Alibaba Cloud 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... | [
"13862149+AxiosCros@users.noreply.github.com"
] | 13862149+AxiosCros@users.noreply.github.com |
822848d09f226ca8d0ac440383491eba5bd97111 | dd3d11771fd5affedf06f9fcf174bc83a3f2b139 | /BotCore/DofusProtocol/QuestListMessage.cpp | 7476077e60a0198df201cd141beeae56c7279a22 | [] | no_license | Arkwell9112/arkwBot | d3f77ad3874e831594bd5712705983618e94f258 | 859f78dd5c777077b3005870800cb62eec1a9587 | refs/heads/master | 2023-03-17T12:45:07.560436 | 2021-03-16T11:22:35 | 2021-03-16T11:22:35 | 338,042,990 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,254 | cpp | #include "../ProtocolTypeManager.h"
#include "QuestListMessage.h"
void QuestListMessage::deserialize(ICustomDataInput &input) {
this->deserializeAs_QuestListMessage(input);
}
void QuestListMessage::deserializeAs_QuestListMessage(ICustomDataInput &input) {
unsigned int _val1 = 0;
unsigned int _val2 = 0;
... | [
"arkwell9112@nowhere.com"
] | arkwell9112@nowhere.com |
12de0f42c0146fa9acf4ef6fb1f2e4aac7680c81 | 5e6910a3e9a20b15717a88fd38d200d962faedb6 | /Codeforces/Contests/CF1285/d.cpp | 7814a8e693cf071b8528239e1e586adc4580ce9f | [] | no_license | khaledsliti/CompetitiveProgramming | f1ae55556d744784365bcedf7a9aaef7024c5e75 | 635ef40fb76db5337d62dc140f38105595ccd714 | refs/heads/master | 2023-08-29T15:12:04.935894 | 2023-08-15T13:27:12 | 2023-08-15T13:27:12 | 171,742,989 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,111 | cpp | #include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define sz(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end()
#define endl '\n'
const int N = 2e5 + 5;
struct node{
int ch[2];
node(){
ch[0] = ch[1] = -1;
}
};
int n;
vector<node> tr;
int dp[N * 32];
void inser... | [
"khaled.sliti@supcom.tn"
] | khaled.sliti@supcom.tn |
05b91f9856143a356bf6924fa524c6a7614af4af | 97eb17ce805e762982c1b09647ea3f251fa0ea0b | /HoeGame/include/hoe_app.h | 5c051fbc366a76f3e936d05652c1926dc0a72c65 | [] | no_license | HeimdallTeam/Hoe3D | 8ca6d434b298773abc3d8c324822df3b97f5d19a | 62c6547ee5751ca6da31fa5379c6a0b78bafe5bd | refs/heads/master | 2021-01-15T14:24:35.777027 | 2014-10-03T23:11:14 | 2014-10-03T23:11:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,688 | h |
/**
@file hoe_app.h
@date Oct 2004
@version $Revision: 1.11 $
@brief Hlavní aplikace
*/
#ifndef _HOE_GAME_APP_H_
#define _HOE_GAME_APP_H_
#include "hoe_vars.h"
#include "hoe_console.h"
#include "hoe_engine.h"
#include "hoe_fs.h"
#ifdef _WIN32
#include "hoe_win32.h"
#endif
... | [
"gejza@gejza.net"
] | gejza@gejza.net |
cd7c9318415e081cd68d029a080a859be4347bd0 | 7b7c1d9dbb9d2da7be522ea3b858066d7c527845 | /Codeforces/1327B - Princesses and Princes.cpp | fa50c33e895b52f0f68568260b8cb9b512d80bfb | [] | no_license | cyyself/OILife | 97893cf7e1d3de61517b0ddd5e6a064700886667 | 9190e45c6a660bf2e1db6d08d84ddf26eccd85dc | refs/heads/master | 2021-06-03T10:02:33.627522 | 2021-04-17T09:27:49 | 2021-04-17T09:27:49 | 101,148,852 | 12 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 656 | cpp | #include <bits/stdc++.h>
using namespace std;
const int maxn = 1e5+5;
bool visl[maxn],visr[maxn];
int main() {
int T;
scanf("%d",&T);
while (T --) {
int n;
scanf("%d",&n);
for (int i=1;i<=n;i++) {
visl[i] = visr[i] = false;
}
int mt = 0;
for (int i=1;i<=n;i++) {
int k;
scanf("%d",&k);
for (in... | [
"noreply@github.com"
] | cyyself.noreply@github.com |
01205228e12cdc665985113bb57dab01ee348030 | 9f520bcbde8a70e14d5870fd9a88c0989a8fcd61 | /pitzDaily/176/phi | f7d3b01c614bafc64b902c1ce2ba547edeb0e870 | [] | no_license | asAmrita/adjoinShapOptimization | 6d47c89fb14d090941da706bd7c39004f515cfea | 079cbec87529be37f81cca3ea8b28c50b9ceb8c5 | refs/heads/master | 2020-08-06T21:32:45.429939 | 2019-10-06T09:58:20 | 2019-10-06T09:58:20 | 213,144,901 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 233,339 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
... | [
"as998@snu.edu.in"
] | as998@snu.edu.in | |
fe5757ef59bf7cae57c3c606cef52ae317188873 | 77ee25aae73961b5abdb9d742dd29459b8816d41 | /cpp/platform/impl/windows/generated/winrt/impl/Windows.Services.Maps.LocalSearch.1.h | 31d3b739ae5a888cc6c353164430e08554402fc2 | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0"
] | permissive | ciaraspissed/nearby-connections | eabaff88177289d3b15274fc4ed2e745fe022802 | 233c5f533771c4004bac87a49cbc9f0137d80bfb | refs/heads/master | 2023-08-12T14:43:09.092255 | 2021-09-16T20:18:26 | 2021-09-16T20:19:03 | 407,859,947 | 2 | 0 | Apache-2.0 | 2021-09-18T12:54:05 | 2021-09-18T12:54:04 | null | UTF-8 | C++ | false | false | 3,533 | h | // WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.210825.3
#pragma once
#ifndef WINRT_Windows_Services_Maps_LocalSearch_1_H
#define WINRT_Windows_Services_Maps_LocalSearch_1_H
#include "winrt/impl/Windows.Services.Maps.LocalSearch.0.h"
WINRT_EXPORT namespace winrt::Windows::Services::Maps::Lo... | [
"copybara-worker@google.com"
] | copybara-worker@google.com |
1ed74ed9b743050afa0124f8723d968e6ba0dfd3 | e02d07d4cdece38745d708ca9125d9a5315e8339 | /deps/node-6.10.2/deps/v8/src/heap/heap.h | 2d2029912cd7170171316cef99c6bab82b628069 | [
"BSD-3-Clause",
"bzip2-1.0.6",
"ICU",
"LicenseRef-scancode-unicode",
"NAIST-2003",
"MIT",
"ISC",
"LicenseRef-scancode-public-domain",
"NTP",
"Artistic-2.0",
"BSD-2-Clause",
"Zlib",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-openssl"
] | permissive | wirelab/LiquidCore | b54d4d5239a24ea9228a21e63f16e6399d5caa15 | 4952250f433fd8dc1ad2bf290928197e094de8ed | refs/heads/master | 2021-01-02T08:17:48.282136 | 2017-08-03T11:34:46 | 2017-08-03T11:34:46 | 98,988,527 | 1 | 0 | null | 2017-08-01T10:16:56 | 2017-08-01T10:16:56 | null | UTF-8 | C++ | false | false | 104,068 | h | // Copyright 2012 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_HEAP_HEAP_H_
#define V8_HEAP_HEAP_H_
#include <cmath>
#include <map>
// Clients of this interface shouldn't depend on lots of heap internal... | [
"eric@flicket.tv"
] | eric@flicket.tv |
c15f7010501b1f50e86524aeaf358227595aea5e | 9bc6851e5cdf94882894a80640b08a1f1797aaff | /GXEngine/gx_particle.cpp | b290f05a69c8a0fd574e330f1fe2ef16621de1dd | [] | no_license | nwilsontech/gamesdk | 750762690041dfb7b0f8cd8134c8294cc3acfce0 | 8bbfaa702215caa8e4acd1b5cef24b9808ccd559 | refs/heads/master | 2021-05-30T03:01:51.604757 | 2015-12-24T02:03:20 | 2015-12-24T02:03:20 | 47,028,533 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,203 | cpp | #include "gx_particle.h"
#include <GL/gl.h>
#include <GL/glu.h>
GXParticle::GXParticle(int ID){
id = ID;
totalLife = 1.0f;
life = 1.0f;
alpha = 1.0f;
size = 1.0f;
bounciness = 0.9f;
active = true;
lasttime = -1;
angle = 0.0f;
}
void GXParticle::Update(long time)
{
if (!active)
... | [
"nathaniel.wilson6@mycampus.apus.edu"
] | nathaniel.wilson6@mycampus.apus.edu |
f079f96ec5928710a524830e59b01faa111d872c | 5fa2292edcec6856b8cf6aa0374bf30d430d69af | /CPP_Exit_protoA/Source/CPP_Exit/Public/Arrow.h | 34d24dcbe31100c0f3a39c8c39d1b63a5d23aabc | [] | no_license | WhieJaeKim/EXIT_Project | cff6be3c900a19d5d58ce1383c868bc70cd9d007 | 9a5e9504bab1d1a882c321b5521a275784f83f72 | refs/heads/main | 2023-06-03T19:32:17.686849 | 2021-06-30T05:08:44 | 2021-06-30T05:08:44 | 380,975,277 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 776 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "Arrow.generated.h"
UCLASS()
class CPP_EXIT_API AArrow : public AActor
{
GENERATED_BODY()
public:
UPROPERTY(VisibleAnywhere, Category = "Component")
class... | [
"kwjlove1989@gmail.com"
] | kwjlove1989@gmail.com |
8e535157f9641fe7b33811100e21d54e6e80c6e7 | 00c00fd58b398b46cbf4ff46c1def997e8f63188 | /Candybowl_Server_MDNS/Candybowl_Server_MDNS.ino | 5c13c2062ea6610f090f084e238ff3a64382aa34 | [
"MIT"
] | permissive | tdicola/wifi_candybowl_monitor | 88185af50d6ebd35b01940676f9953b88d5b63bc | a6df6756f5267471eb3130164d3602ac4e7ba2ce | refs/heads/master | 2021-01-01T05:40:49.354115 | 2013-10-28T20:26:38 | 2013-10-28T20:26:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,329 | ino | /***************************************************
WiFi Candy Bowl Monitor With Multicast DNS Support
Monitor the status of your Halloween candy bowl remotely
with the CC3000 and an Arduino. This sketch uses and IR
sensor and LED to detect if a candy bowl is full or empty,
and exposes that sensor stat... | [
"tony@tonydicola.com"
] | tony@tonydicola.com |
198c3848208dea91116276fce2450e4cc6a0c8f6 | 01eb13ca8b6e93591359d25243fb7939c8077d4c | /PVStreamer/common/ConfigManager.cpp | 84c2445ff2022c9fab7b59792f44dd299dc1b6c6 | [
"BSD-3-Clause"
] | permissive | ADARA-Neutrons/adara | a961ea16a1ec17fda5bd31eb50c2a9b850c0f97c | 634a30e8238e247f2312e547e787da3012e20d06 | refs/heads/master | 2023-03-03T13:38:24.265049 | 2023-02-28T22:04:48 | 2023-02-28T22:04:48 | 19,054,234 | 2 | 3 | BSD-3-Clause | 2023-02-28T22:04:49 | 2014-04-23T02:31:49 | C++ | UTF-8 | C++ | false | false | 29,927 | cpp | #include <set>
#include <boost/lexical_cast.hpp>
#include "ConfigManager.h"
#include "StreamService.h"
#include "ADARA.h" // Needed for PV status bits
#include <syslog.h>
#include <unistd.h>
using namespace std;
namespace PVS {
//=============================================================================
//===== ... | [
"kohlja@ornl.gov"
] | kohlja@ornl.gov |
3f8d3ae2e0a0c15e4afd7c8ec43dd739bc011ceb | 6fe2b5b4c38d41cea343a6586b17192f20bb688e | /main.cpp | 649432e8d4abe72c407c83aff0433ee728dbdd06 | [] | no_license | knewyousir/avlTree | a6da0742a973c1899ebaea9a432b1227fad2ddc9 | 17081c5cf5c2c3bf9d0641a0c624bfe2c2c4513b | refs/heads/master | 2020-04-07T18:08:21.359192 | 2018-11-21T19:49:22 | 2018-11-21T19:49:22 | 158,598,560 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,994 | cpp | #include<iostream>
using std::cin;
using std::cout;
using std::endl;
template<class T>
class RBT;
template<class T>
class RBTNode{
T data;
RBTNode<T>* parent, *left, *right;
bool isRed;
public:
friend class RBT<T>;
RBTNode(const T& newData = T(), RBTNode<T>* newParent = nullptr,
RBTNode<T>* newLeft = nullptr,... | [
"noreply@github.com"
] | knewyousir.noreply@github.com |
8a61b19e3c646bd168efc4f481581d5c4f53e372 | 2a227eef64b4914c7aefddc4ca89791839406164 | /tutorials/tutorial7/include/tutorial7/dispatch/DispatchMessage.h | 82d8624ce88c61a6ff9f68a04908c877d3c40d0f | [] | no_license | Vkd4U2NtVkZOVg/cc_tutorial | a305295d2f27c1f4bd5fe9ab56cf55e4f4efdc3f | 82ae9a68e2cb2ecfcd09c1fdf71183519f9fc414 | refs/heads/master | 2022-11-30T18:25:42.470611 | 2020-07-23T23:04:27 | 2020-07-23T23:04:27 | 286,372,368 | 1 | 0 | null | 2020-08-10T04:06:11 | 2020-08-10T04:06:10 | null | UTF-8 | C++ | false | false | 8,197 | h | // Generated by commsdsl2comms v3.4.3
/// @file
/// @brief Contains dispatch to handling function(s) for all input messages.
#pragma once
#include <type_traits>
#include "tutorial7/MsgId.h"
#include "tutorial7/input/AllMessages.h"
namespace tutorial7
{
namespace dispatch
{
/// @brief Dispatch message object to it... | [
"arobenko@gmail.com"
] | arobenko@gmail.com |
21375b33c6f5a2063af761dd579e674331c3bf18 | d8b8699647476b0cde924dbcf830b3b95a410268 | /src/MayaBridge/SkeletonDriver/NuiMayaGestureData.h | 0d58bc8dc0b9708538225d8123b7700f95b57875 | [
"MIT"
] | permissive | hustztz/NatureUserInterfaceStudio | 1e55364ba2fec78c558ed9e752d7c6ff5ea1efa7 | 3cdac6b6ee850c5c8470fa5f1554c7447be0d8af | refs/heads/master | 2020-04-02T12:52:04.789022 | 2017-06-09T11:16:52 | 2017-06-09T11:16:52 | 61,989,309 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,001 | h | #pragma once
#include "Shape/NuiGestureResult.h"
#include <maya/MPxData.h>
#include <maya/MTypeId.h>
#include <maya/MString.h>
class NuiMayaGestureData : public MPxData
{
public:
//////////////////////////////////////////////////////////////////
//
// Overrides from MPxData
//
/////////////////... | [
"ztz_mai@163.com"
] | ztz_mai@163.com |
990f4e9cea13296b1c249c49ec6ee899dbccba5e | 0379dd91363f38d8637ff242c1ce5d3595c9b549 | /windows_10_shared_source_kit/windows_10_shared_source_kit/unknown_version/Source/Tests/Graphics/Graphics/DirectX/Common/WGFTestFramework/DXGITest/DXGITest.h | 1c7f3c1de7bcf03b33c8d0f30c948340d9047987 | [] | no_license | zhanglGitHub/windows_10_shared_source_kit | 14f25e6fff898733892d0b5cc23b2b88b04458d9 | 6784379b0023185027894efe6b97afee24ca77e0 | refs/heads/master | 2023-03-21T05:04:08.653859 | 2020-09-28T16:44:54 | 2020-09-28T16:44:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,377 | h | //////////////////////////////////////////////////////////////////////
// File: DXGITest.h
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Purpose:
// Implementation of a DXGI test base class.
//
// History:
// 11 Sep 2007 SEdmison Created.
///////////////////////////////////////////... | [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
f7f46ed466dbf3180707788ce4cc004491ac38a0 | a488f0a755b178aae91f12f5cfbd62e3c9613380 | /Hazel/src/Hazel/Events/KeyEvent.h | c121e5abdecf68ed30749c814f31e7ff5665ec53 | [] | no_license | duonggiang152/stupidtriangle-Game | e091d3cb9f55412b65528e1715f3a7011ce62ca5 | ac2990a062c6875b842b93c61da8637178b6b2fb | refs/heads/master | 2023-01-31T03:32:33.628018 | 2020-12-14T04:32:36 | 2020-12-14T04:32:36 | 318,722,024 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,385 | h | #pragma once
#include "Hazel/Events/Event.h"
namespace Hazel {
class HAZEL_API KeyEvent : public Event
{
public:
inline int GetKeyCode() const { return m_KeyCode; }
EVENT_CLASS_CATEGORY(EventCategoryKeyboard | EventCategoryInput)
protected:
KeyEvent(int keycode)
: m_KeyCode(keycode) {}
int m_KeyCod... | [
"62105435+duonggiang152@users.noreply.github.com"
] | 62105435+duonggiang152@users.noreply.github.com |
a728ff7462544b9cd9a137d8fc04e600093a00a9 | a27d7a4e14048467aa678489b21ef262de45446e | /main.cpp | d1da454930bd06b5d7154b393546dad29bf6905e | [] | no_license | VeskeR/cpp-lab-3 | b86be5f4c73e739c2e8c4d6b1fe95657c9550bc6 | d1a7b808ce066a5a24139f9b90c89b35b75e68f9 | refs/heads/master | 2016-08-12T10:24:25.969016 | 2016-03-22T21:53:22 | 2016-03-22T21:53:22 | 54,505,854 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 216 | cpp | #include "mainwindow.h"
#include <QApplication>
#include <QtGui>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MainWindow w;
w.resize(400, 400);
w.show();
return app.exec();
}
| [
"andrii.bulat@gmail.com"
] | andrii.bulat@gmail.com |
a3916b9ff1345ce8b7a79b265ec888e238b7b41d | b45b27637c8e28e82e95111d3dbf455aa772d7b3 | /bin/Reapr_1.0.18/third_party/pezmaster31-bamtools-7f8b301/src/api/BamReader.h | fb9064d9994d08a4c2afe177b2ca205c1841da4c | [
"MIT",
"LicenseRef-scancode-public-domain",
"GPL-3.0-only"
] | permissive | Fu-Yilei/VALET | caa5e1cad5188cbb94418ad843ea32791e50974b | 8741d984056d499af2fd3585467067d1729c73c4 | refs/heads/master | 2020-08-09T12:17:34.989915 | 2019-10-10T05:10:12 | 2019-10-10T05:10:12 | 214,085,217 | 1 | 0 | MIT | 2019-10-10T04:18:34 | 2019-10-10T04:18:34 | null | UTF-8 | C++ | false | false | 4,146 | h | // ***************************************************************************
// BamReader.h (c) 2009 Derek Barnett, Michael Str�mberg
// Marth Lab, Department of Biology, Boston College
// ---------------------------------------------------------------------------
// Last modified: 10 October 2011 (DB)
// ------... | [
"yf20@gho.cs.rice.edu"
] | yf20@gho.cs.rice.edu |
f644ebbee3bd476341cd04f9784e1e423c3e6f81 | 0229b42656751ca134dd2c3e948f9ab9e4b9ddf5 | /AttackBullet.cpp | a02b23d3c0a6e997714e1c98cd693d37ba9d3821 | [] | no_license | ikageso1/ActionGameWithBox2d | a9980db918ef89f6d74cd7fcb27369eacf13beb9 | 1f1704c610a6a79ee51a5d46adee5db6441036b7 | refs/heads/master | 2021-01-17T17:54:13.669405 | 2016-07-02T17:10:40 | 2016-07-02T17:10:40 | 62,461,128 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 228 | cpp | #include "AttackBullet.h"
AttackBullet::AttackBullet(Character* character,Field* field) :CharacterController(character,field)
{
}
void AttackBullet::Think(){
character_->DoAttack();
}
AttackBullet::~AttackBullet(void)
{
}
| [
"1210370051g@kindai.ac.jp"
] | 1210370051g@kindai.ac.jp |
fa2630ef3ec3f6256024aa3484771de19acb39ec | f8975076e4394c7657fa8c602c2cd938b6191c48 | /Dependency/FbxSDk/include/fbxsdk/scene/fbxobjectscontainer.h | f806ad9d612ee9c278a6fec22f2f72ef4011fc87 | [] | no_license | miztook/wowmodelexplorer | baa87ee965c64ea53272b1cf8bd0c0ca966a76a4 | 78b5ea79668a551dd70cd0699b8393de4472ec5f | refs/heads/master | 2021-07-08T23:10:58.887309 | 2020-07-19T04:27:50 | 2020-07-19T04:27:50 | 145,582,892 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,171 | h | /****************************************************************************************
Copyright (C) 2014 Autodesk, Inc.
All rights reserved.
Use of this software is subject to the terms of the Autodesk license agreement
provided at the time of installation or download, or which otherwise accom... | [
"miztook@2a05eb2e-4a50-4195-aba3-4d59626bef6c"
] | miztook@2a05eb2e-4a50-4195-aba3-4d59626bef6c |
e4388447cfdfbdf2ce63fcde277a8ae2c18018b9 | 466aa6962977a3e353b2ef6d8babd8249b870ef5 | /BusySchedule.cpp | 96ca31b34fa32ec3ed56334ab1fcddec272750cb | [] | no_license | damosman/Kattis-Problems | 348b852651ff82f044416183b8a9a672a3252aa7 | 11be82d80d97ac496a66e31f12fddfed8933e9a1 | refs/heads/master | 2022-12-31T08:00:01.191031 | 2020-10-17T08:50:53 | 2020-10-17T08:50:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,587 | cpp | #include <iostream>
#include <string>
#include <regex>
#include <vector>
void PrintHours(std::vector<int> hours, std::string period);
bool CustomSort(int i, int j);
int main()
{
std::regex expression("^([0-9]{1,2})(?:\:)([0-9]{2}) ([a-z\.]+)");
std::string line;
std::smatch match;
int n;
std::vector<int> times... | [
"georgekam96@gmail.com"
] | georgekam96@gmail.com |
0a58764d0ab61461a9f0fab6060f74c9f2ae3843 | c2bccd75822d0f9b01b32c41f5258ac48eced940 | /code/userprog/coremap.cc | f35ff2714ba512350310b616cfad5fab4918c6b7 | [] | no_license | nicodelpiano/NachOS | a2e86c43dbba81ab81231275407340cf96779482 | 3e9f1cbfb792943ca0fdf49caadb484f7410fed5 | refs/heads/master | 2020-05-30T14:29:35.027986 | 2014-02-23T03:02:31 | 2014-02-23T03:02:31 | 17,100,400 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,436 | cc | #include "coremap.h"
/*
Preferimos iniciar la estructura del coremap asi:
Si no tiene un addrspace asignado, es NULL, y en caso de no tener
asignada una memoria virtual, es -1.
*/
CoreMap::CoreMap(int nfpages){
counter = 0;
npages = nfpages;
bitmap = new BitMap(nfpages);
coremap = new fpage_info[nfpages];
for(... | [
"ndel314@gmail.com"
] | ndel314@gmail.com |
838e0a05e51c80d0d8b8cae3ad89b591e5775d26 | 3c27e8402755038a757d54d812983e0ee407e319 | /_build/debug/moc_bullet.cpp | b0588434ff2a00a20980c2aa0a5c1c45eda99985 | [] | no_license | SvyatKuznetsov/KursWorkShooter | a38142a4de89da837cc608d2676d25da97686250 | 8c32a6b7ee47ad2a1bc7a0cafb560162d0c6cf86 | refs/heads/main | 2023-03-15T11:02:30.292095 | 2021-03-05T14:30:21 | 2021-03-05T14:30:21 | 344,836,090 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,401 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'bullet.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.12.6)
**
** WARNING! All changes made in this file will be lost!
*************************************************************... | [
"55543452+SvyatKuznetsov@users.noreply.github.com"
] | 55543452+SvyatKuznetsov@users.noreply.github.com |
8338809cf8441cbfbb4f070b106d5d33513e526a | cb7535e92e574980ecea0c980a1a5e98612ad67e | /nnet/main.cpp | cdec610ec34c381e00cbb4ba1cff4dedf8e9e976 | [] | no_license | mxw/cs181 | 559d7f47444b7beb25d5e4e3932ab20fe46ad664 | 0ec48b54591d8e124eeaf0c443a6e586d9c73b16 | refs/heads/master | 2020-12-30T10:37:15.365828 | 2013-05-06T02:01:41 | 2013-05-06T02:01:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,999 | cpp | /**
* main.cpp
*/
#include <cstdio>
#include <cstdlib>
#include <fstream>
#include <iostream>
#include <sstream>
#include <unistd.h>
#include "neural_network.h"
#include "image.h"
#include "util.h"
using namespace std;
#define USAGE "Usage: ./main -e EPOCHS -r RATE -l LAYERS [-h HIDDENS]\n"
#define IMGSIZE 36
#d... | [
"mxawng@gmail.com"
] | mxawng@gmail.com |
42f9dcdd907067ce1049a3f7a4c01494c1ce4379 | 66b3ef6a474b25487b52c28d6ab777c4bff82431 | /old/v2/src/sim/units/Milliseconds.cpp | 98ea1dd440001319a344b0863c76c52cbf5aeebb | [
"MIT"
] | permissive | mackorone/mms | 63127b1aa27658e4d6ee88d3aefc9969b11497de | 9ec759a32b4ff882f71ad4315cf9abbc575b30a1 | refs/heads/main | 2023-07-20T06:10:47.377682 | 2023-07-17T01:08:53 | 2023-07-17T01:29:31 | 14,811,400 | 281 | 73 | MIT | 2023-07-08T09:59:59 | 2013-11-29T22:36:30 | C++ | UTF-8 | C++ | false | false | 476 | cpp | #include "Milliseconds.h"
namespace sim {
Milliseconds::Milliseconds(double milliseconds) {
static const double secondsPerMillisecond = 1.0 / 1000.0;
m_seconds = secondsPerMillisecond * milliseconds;
}
Milliseconds::Milliseconds(const Duration& duration) {
m_seconds = duration.getSeconds();
}
Millisecon... | [
"mackorone@gmail.com"
] | mackorone@gmail.com |
596ba599a4a8945ac80a21fd7795116da928e323 | 5b2d81c7e73b0e71be2fd5f52e4398a992c6f6d4 | /include/node.hpp | e1d1684dd112fdf55ee6a38d037ac612bb42066a | [] | no_license | long64/AS-BFS | fbc2df15b13b2c17edc8ba972c60bb6c68052ba9 | 130639985d05a49d52f2ec1a28dd4acbd053a740 | refs/heads/master | 2020-12-28T09:35:53.120678 | 2020-02-04T18:16:36 | 2020-02-04T18:16:36 | 238,270,722 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 583 | hpp | #pragma once
#include <vector>
class Node
{
private:
int m_asn;
std::vector<int> m_parent;
std::vector<int> m_child;
int m_depth;
int m_stage;
int m_searched;
int m_flag;
public:
Node(const int asn = 0);
int GetAsn();
std::vector<int> GetParent();
void AddParent(const int asn);
std::vector<in... | [
"aki@aki.local"
] | aki@aki.local |
7ee7076cf745bee8443ce8d2ab44613df66758cd | 59daee962170b43cb88a84babb83acc6fb382a8f | /FMEGraphics/inc/ICamera.h | 922a7f3f5487faf707e91aff3b9f3954456ee3a4 | [
"MIT"
] | permissive | mohit3112/FullMetalEngine | da36ba209b62a93a9ee7fc69b086e68304ffc89b | 26fbdd14332f9ab158180efea176e7aaa47f570c | refs/heads/master | 2021-09-22T09:35:47.884072 | 2018-09-07T11:18:27 | 2018-09-07T11:18:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 630 | h | #ifndef ICAMERA_H_
#define ICAMERA_H_
#include <glm/glm.hpp>
namespace FME
{
namespace Graphics
{
/** \class ICamera
* \brief general interface for a camera, including the must-have's for rendering
*/
class ICamera
{
public:
virtual ~ICamera() {};
void SetProjectionMat... | [
"nickyfullmetal@gmail.com"
] | nickyfullmetal@gmail.com |
f1bbfc134d5e8c515476ec3e9a4b62be851b4a2f | 24f26275ffcd9324998d7570ea9fda82578eeb9e | /chrome/browser/ui/webui/chromeos/login/l10n_util.cc | 7392dc3d99c0ca497a9a2c2c1e86dcf9313fb6cd | [
"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 | 24,006 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/webui/chromeos/login/l10n_util.h"
#include <stddef.h>
#include <iterator>
#include <map>
#include <memory>
#include <set>
#i... | [
"rjkroege@chromium.org"
] | rjkroege@chromium.org |
386bd914f68fb2f9014479317f208b86b0927000 | 00da929f354d5a9f547d0374b206108d1ea8a8f6 | /jni/jni_common/rgb2yuv.h | ac0ea7680fb9a3ad6dc66ef43b993c8a4efb7944 | [
"MIT"
] | permissive | LightSun/dlib-face-recognition-android | fe7fd32116f59960b0384db1c2c5fdfb4e71367f | 738eb5345b90b57cbca5e15f8dcac0cea896c3ab | refs/heads/master | 2020-03-28T20:30:06.030200 | 2018-09-18T12:42:54 | 2018-09-18T12:42:54 | 149,076,552 | 0 | 0 | MIT | 2018-09-17T06:05:46 | 2018-09-17T06:05:46 | null | UTF-8 | C++ | false | false | 585 | h | /*
* rgb2yuv.h using google-style
*
* Created on: May 24, 2016
* Author: Tzutalin
*
* Copyright (c) 2016 Tzutalin. All rights reserved.
*/
#pragma once
#include <jni_common/types.h>
namespace jnicommon {
#ifdef __cplusplus
extern "C" {
#endif
void ConvertARGB8888ToYUV420SP(const uint32* const input, ui... | [
"gauravguptakgn@gmail.com"
] | gauravguptakgn@gmail.com |
4e0f315bcc3bf9bd5065a49e67acbd6fbb6eff61 | 4bf2523f9a57ef0728630d05ce2d38b05686547d | /Compo/Dev_Ex/ExpressQuantumGrid 6/Packages/dclcxGridC14.cpp | 46b7c347f606ff2b9ef59e685e25200692e3ae38 | [] | no_license | zeroptr/ceda_tic | 980bee99b829f99575586b5110985ba90f8f56aa | 72586d6a10a5426a889d45ad37479c1bf6f3fb49 | refs/heads/main | 2023-03-17T16:36:58.586885 | 2021-03-07T20:30:34 | 2021-03-07T20:30:34 | 345,381,196 | 0 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,000 | cpp | //---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("dclcxGridC14.res");
USEPACKAGE("vcl.bpi");
USEPACKAGE("rtl.bpi");
USEPACKAGE("dxCoreC14.bpi");
USEPACKAGE("designide.bpi");
USEPACKAGE("vcldb.bpi");
USEPACKAGE("dbrtl.bpi");
USEPACKAGE("cxDataC14.bpi"... | [
"53816327+zeroptr@users.noreply.github.com"
] | 53816327+zeroptr@users.noreply.github.com |
8bcb64859568111100ee50da23af0d79f2df1fa7 | 74b3058ff7aead32d7691d3fda836acae9cddc95 | /algorithm/0540/res.cpp | f3da935862d015d6d2869f268b42044a2321e453 | [] | no_license | onehumanbeing/leetcode | 647f6d09a4b6c8075e2e254de2e99a5664864bba | 7fc0a7a87b082d5e8c63a35ee5f282b2d3f43bcb | refs/heads/master | 2020-03-22T10:03:04.967533 | 2018-09-09T09:01:53 | 2018-09-09T09:01:53 | 139,877,549 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 263 | cpp | #include <iostream>
#include <vector>
using namespace std;
//您的方案应该在 O(log n)时间复杂度和 O(1)空间复杂度中运行。
class Solution {
public:
int singleNonDuplicate(vector<int>& nums) {
}
};
int main(){
return 0;
} | [
"henryhenryhenry111@126.com"
] | henryhenryhenry111@126.com |
f214adae736cc4cc9ec7586666c37623e8af8f87 | 1e600374bdcf8ddbd632695aa424e03a88471460 | /Xilinx_HLS_Lab_Materials/hls/completed/improve_area/dct_prj/solution6/syn/systemc/dct_Loop_Row_DCT_Loop_proc_dct_coeff_table_2.h | cd75506304538c4483b784df4b927f12ceb5bb14 | [] | no_license | chongxi/vivado_hls_training | 960595275bfe1b530baeb5859958c32ef0415d05 | bc9a9958fcf39b2af026c2531249726fe71f7e93 | refs/heads/master | 2020-09-09T18:00:14.064048 | 2016-09-07T20:31:52 | 2016-09-07T20:31:52 | 67,640,668 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,610 | h | // ==============================================================
// File generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC
// Version: 2016.1
// Copyright (C) 1986-2016 Xilinx, Inc. All Rights Reserved.
//
// ==============================================================
#ifndef __dct... | [
"chongxi.lai@me.com"
] | chongxi.lai@me.com |
172639890d094e4b493db4a883aa42406fbb7c56 | b174c3f08406d45631b90878000042428f693069 | /src/VeloPacketsReader.cpp | 06f70187918980f8d65a93ce767ae14f9b06a89a | [
"MIT"
] | permissive | Tenant/pointcloud_converter | 1e4d0e828448edfba89909d52af73020b53963ae | b5bc8de273158ec03c6b20699145c36399864a0c | refs/heads/master | 2022-12-26T04:05:53.797872 | 2020-09-30T09:36:09 | 2020-09-30T09:36:09 | 299,519,171 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 998 | cpp | //
// Created by akira on 18-7-22.
//
#include "../include/VeloPacketsReader.h"
VeloPacketsReader::VeloPacketsReader() {
}
bool VeloPacketsReader::open(std::string packetfile) {
ofile.open(packetfile);
this->packetdata = new unsigned char[PACKETSIZE];
return ofile.fail();
}
void VeloPacketsReader::rele... | [
"gaoshuqi@pku.edu.cn"
] | gaoshuqi@pku.edu.cn |
7c361806d7519fdbe453c860ccfd2ac01cf8567a | 14ab5fdf93666403e2a6f54211618aabd4785f3b | /Arbol.h | 772b228c0b6850be96e860d02ce519e2ed736c30 | [] | no_license | carlosverduzco/8_Puzzle_Busqueda_En_Profundidad | cc7567c2db0f2ddba28866f100565151d8933563 | dd4a91bf0d1bd20ae63bf935d613f10b4d267deb | refs/heads/master | 2023-08-23T19:49:20.467780 | 2021-10-11T04:58:48 | 2021-10-11T04:58:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,179 | h | //
// Created by Dorian on 21/09/2021.
//
#ifndef BUSQUEDAENPROFUNDIDAD_8_PUZZLE_ARBOL_H
#define BUSQUEDAENPROFUNDIDAD_8_PUZZLE_ARBOL_H
#include "string"
#include "vector"
#include <iostream>
using namespace std;
class Nodo {
private:
Nodo* padre = nullptr;
Nodo* hermano = nullptr;
Nodo* primerHijo = nu... | [
"carloseverduzco@hotmail.com"
] | carloseverduzco@hotmail.com |
b54776139ad93ee67c5367d082192ae23b706990 | a8ae52d335a392ca10fc7e4e562139a7b6e942ee | /src/server/collision/Maps/TileAssembler.h | fb3b234aae49f26d694f8f86e609e52b96bce6ee | [] | no_license | bromacia/ProjectAxium | 54f3c622b17039c94b02914f22a1762cd635b327 | e815318616a57a343f9883340af7b8cb93007682 | refs/heads/master | 2021-04-27T11:03:48.445914 | 2017-09-09T18:16:53 | 2017-09-09T18:16:53 | 122,552,525 | 1 | 0 | null | 2018-02-23T00:29:29 | 2018-02-23T00:29:28 | null | UTF-8 | C++ | false | false | 2,895 | h | #ifndef _TILEASSEMBLER_H_
#define _TILEASSEMBLER_H_
#include <G3D/Vector3.h>
#include <G3D/Matrix3.h>
#include <map>
#include <set>
#include "ModelInstance.h"
#include "WorldModel.h"
namespace VMAP
{
/**
This Class is used to convert raw vector data into balanced BSP-Trees.
To start the conversion call c... | [
"saeshyls@gmail.com"
] | saeshyls@gmail.com |
8190565c00af8884b8bc0d5472443de99eab59e7 | ecaab460af763306936529b981db0a996f1c865c | /include/utils/Drawings.h | e902b23831e436b388c5c7a7b04853ef84599be8 | [] | no_license | comkieffer/teleop-vision | 95673f10a711305470542b2741cdb6c7ec2b1cc3 | 95f7d7272e659fb27256584a8bb2726bfe5cf7e6 | refs/heads/master | 2021-01-19T02:28:26.790374 | 2017-04-03T23:19:26 | 2017-04-03T23:19:26 | 87,282,061 | 0 | 0 | null | 2017-04-05T07:52:44 | 2017-04-05T07:52:44 | null | UTF-8 | C++ | false | false | 3,287 | h | //
// Created by charm on 3/19/17.
//
#ifndef TELEOP_VISION_DRAWINGS_H
#define TELEOP_VISION_DRAWINGS_H
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/imgproc.hpp>
#include <kdl/frames.hpp>
struct CameraIntrinsics {
cv::Mat camMatrix;
cv::Mat distCoeffs;
};
... | [
"nima.en@gmail.com"
] | nima.en@gmail.com |
d488f0df0f1e15fe9d557cf573a3a80b687f430a | b97c1b35c0e6350c49bac6b3b489652584977d01 | /src/MissSbm.cpp | f9a1eae508f0fb95ed5fee5cef531fdd82c7db21 | [] | no_license | minghao2016/greed | 42f8e104381744ce719b2cb614652608182419f9 | 0cc68aac7fed229db1d8e4dbdeb0b16e0b466e2c | refs/heads/master | 2023-04-20T07:28:53.538857 | 2021-05-11T10:22:58 | 2021-05-11T10:22:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,385 | cpp | // [[Rcpp::depends(RcppArmadillo)]]
#include "gicl_tools.h"
#include "MergeMat.h"
#include "IclModel.h"
#include "MissSbm.h"
using namespace Rcpp;
MissSbm::MissSbm(arma::sp_mat& xp,arma::sp_mat& xpobs,S4 modeli,arma::vec& clt,bool verb){
model = modeli;
alpha = model.slot("alpha");
a0 = model.slot("a0");
b0 ... | [
"etienne.come@gmail.com"
] | etienne.come@gmail.com |
17d67086e159ef0bf5b14516b32cbf2765cb67b7 | ab29d62c80b07af118b50c80d879595c3748a844 | /sipsl-code/src/SUDP.cpp | e996e2e77e8e73e87b163987993c9b8a6ebf5385 | [] | no_license | guincisa/SIPSL | 932217d176ebcc0f047666c855b6188c8577e03f | a9c0cc91cf2bb886cc5cbbd2f059be6a12b21ae4 | refs/heads/master | 2021-01-19T21:39:13.565489 | 2017-05-16T14:24:50 | 2017-05-16T14:24:50 | 88,679,621 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,748 | cpp | //**********************************************************************************
//**********************************************************************************
//**********************************************************************************
// SIPCSL Sip Core And Service Layer
// Copyright (C) 2011 Gu... | [
"guic@8d13bd44-46d8-4671-819c-ea08f47c0839"
] | guic@8d13bd44-46d8-4671-819c-ea08f47c0839 |
38794200e1104faec9f2e7769fa39a05f2a2dd60 | 55d0224c99ce313246c6d7aada74458923d57822 | /test/set/make.cpp | 325695ddacc478864f0ecbc88f856cd064d2e255 | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | boostorg/hana | 94535aadaa43cb88f09dde9172a578b2b049dc95 | d3634a3e9ce49a2207bd7870407c05e74ce29ef5 | refs/heads/master | 2023-08-24T11:47:37.357757 | 2023-03-17T14:00:22 | 2023-03-17T14:00:22 | 19,887,998 | 1,480 | 245 | BSL-1.0 | 2023-08-08T05:39:22 | 2014-05-17T14:06:06 | C++ | UTF-8 | C++ | false | false | 961 | cpp | // Copyright Louis Dionne 2013-2022
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
#include <boost/hana/assert.hpp>
#include <boost/hana/equal.hpp>
#include <boost/hana/set.hpp>
#include <laws/base.hpp>
namespace hana = b... | [
"ldionne.2@gmail.com"
] | ldionne.2@gmail.com |
425910765437854edbb5e6d406c2ed7f8642b505 | 60bfd14fe506b4e0e3472f996eddfe158418d751 | /shell/platform/windows/flutter_windows_view.h | 259d4cc2b896fe916b453053b8dea6116d759b5f | [
"BSD-3-Clause"
] | permissive | chinmaygarde/flutter_engine | 440e73918e9b74e23862eb20e497236b51a0b6f3 | 28a195ed2e1390ed6c89005371c79b309983cf71 | refs/heads/main | 2023-08-03T12:40:35.376829 | 2023-04-04T20:27:53 | 2023-04-04T20:27:53 | 39,225,162 | 3 | 3 | BSD-3-Clause | 2023-02-27T08:09:11 | 2015-07-16T23:24:34 | C++ | UTF-8 | C++ | false | false | 14,047 | h | // Copyright 2013 The Flutter 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 FLUTTER_SHELL_PLATFORM_WINDOWS_FLUTTER_WINDOWS_VIEW_H_
#define FLUTTER_SHELL_PLATFORM_WINDOWS_FLUTTER_WINDOWS_VIEW_H_
#include <memory>
#include <... | [
"noreply@github.com"
] | chinmaygarde.noreply@github.com |
1e80312592b1555e2abea784723cc7ef8e2eaafe | 2bc835b044f306fca1affd1c61b8650b06751756 | /winhttp/v5.1/inc/proxreg.h | 77b361183537151a61fa3d0310ceec065698c4bf | [] | no_license | KernelPanic-OpenSource/Win2K3_NT_inetcore | bbb2354d95a51a75ce2dfd67b18cfb6b21c94939 | 75f614d008bfce1ea71e4a727205f46b0de8e1c3 | refs/heads/master | 2023-04-04T02:55:25.139618 | 2021-04-14T05:25:01 | 2021-04-14T05:25:01 | 357,780,123 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,767 | h | #include <inetreg.h>
#define BLOB_BUFF_GRANULARITY 1024
class CRegBlob
{
private:
HKEY _hkey;
BOOL _fWrite;
BOOL _fCommit;
DWORD _dwOffset;
DWORD _dwBufferLimit;
BYTE * _pBuffer;
LPCSTR _pszValue;
public:
CRegBlob(BOOL fWrite);
... | [
"polarisdp@gmail.com"
] | polarisdp@gmail.com |
715ba4ab89a2c60c6aa50b2b3cd0d875245256da | 4a3134ced92b1e6f6440ac67b69449302bf32f5c | /DSA/sortingAlgorithms/selectionSort/selectionSort.cpp | 397bda1aa724bec68648f51945633014fab31260 | [] | no_license | Arihant416/Dsa-cp | 4454f2d1f6b16e94d33bd1d8760fe0ac27354715 | cdfea5ccb8040fc22588a7a7e22616f1d1d411f6 | refs/heads/master | 2023-03-23T16:23:33.692728 | 2021-03-07T05:52:49 | 2021-03-07T05:52:49 | 326,686,346 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,282 | cpp | /*
Author : Arihant Jain
github:https://github.com/Arihant416
linkedin : https://www.linkedin.com/in/arihant416
*/
#include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define ull unsigned ll
#define PB push_back
#define MP make_pair
#define flash ios_base::sync_with_stdio(false), cin.tie(nullptr), co... | [
"arihantjain416@gmail.com"
] | arihantjain416@gmail.com |
dff272d63ad0d7be71abf32dd79210101c09b6a0 | 80816eb7fd304d652eab656d004a59246eda260d | /cpp-holy/forWhileEx.h | 0b51e470cb24381ee6d445a113c9db61456b5a2d | [] | no_license | holy1017-cpp/cpp-holy | b264ac39787ed0759a84030607f4bcb031670197 | 223a69b5c52b8d1b7a3def04d677eda872587848 | refs/heads/master | 2022-12-10T16:34:06.161294 | 2020-09-19T08:30:55 | 2020-09-19T08:30:55 | 290,492,713 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 254 | h | #pragma once
#ifndef forWhile_H
#define forWhile_H
#include <iostream>
using namespace std;
namespace forWhile {
void testFor();
void testForRang();
void testForRang2();
void testWhile();
void testTrim();
char* trim(char* szSource);
}
#endif | [
"holy1017@naver.com"
] | holy1017@naver.com |
20981aa539a54e3a501abd302d08033af8866740 | 2e48a571d4b0f1a127d3cb2ed8c67ddac4a01c86 | /model/lora-sink-application.h | 936a524cfd481c30c23918732cfcacce45f11997 | [] | no_license | ConstantJoe/ku-leuven-lorawan-with-energy-model | 53bc7b8ee8f667e570444c0f040c43086ee8d326 | 9fbf4856230b460c0bd6be5de919f62a16b7260c | refs/heads/master | 2020-03-28T15:57:48.639058 | 2018-09-13T14:04:29 | 2018-09-13T14:04:29 | 148,643,859 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,749 | h | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2018 KU Leuven
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distrib... | [
"brecht.reynders@esat.kuleuven.be"
] | brecht.reynders@esat.kuleuven.be |
6ba4128df1788698e80eab60cf45d3d10663cd75 | eda1764f63ceba09f5bf90e5e4db7087f6d99cdb | /DlmsReader.h | 78ab3081ba2b03265e36f9601dc5d89d27f99e8a | [] | no_license | charuga/HANToMQTT | 8a027250199c2453818264112a995d7fb4b97926 | 7ba81efe25e39622b6c582fb5bc63fec9e211ce0 | refs/heads/master | 2020-05-04T13:01:39.059835 | 2019-04-01T21:06:49 | 2019-04-01T21:06:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,296 | h | #ifndef _DLMSREADER_h
#define _DLMSREADER_h
#include "Crc16.h"
#if defined(ARDUINO) && ARDUINO >= 100
#include "arduino.h"
#else
#include "WProgram.h"
#endif
typedef void(*LOG_FN)(const char *fmt, ...);
#define DLMS_READER_BUFFER_SIZE 512
#define DLMS_READER_MAX_ADDRESS_SIZE 5
enum HDLCState { kHDLCState_Waiti... | [
"aleksander@toppe.no"
] | aleksander@toppe.no |
bba3ba1b51d37630347d95f2a939f1810241961f | 98db230948b3a2f10724b72529ba1475c3d40459 | /src/Config.cpp | b1e9e899a2cf0c10fe48a92d984cb72e70929768 | [] | no_license | tyl12/ipc | 158507bd90e6446b9d74d52b0255a56c9ba0d154 | 7f64e003cd7c1be11bbd1f4eaa4e3703f6ead5d8 | refs/heads/master | 2021-09-07T16:35:19.114314 | 2018-02-26T03:56:44 | 2018-02-26T03:56:44 | 114,473,086 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,144 | cpp |
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#include <iostream>
#include "GetStream.h"
#include "public.h"
#include "ConfigParams.h"
#include "Alarm.h"
#include "CapPicture.h"
#include "playback.h"
#include "Voice.h"
#include "tool.h"
#include "Config.h"
using namespace std;
/** @fn void CALLBACK E... | [
"ylteng@outlook.com"
] | ylteng@outlook.com |
a10f164261ccaf8271c098e8fd04215cfecfac1c | 8bff531fe2f9efb5ffb5da95ae3df0406b51e5b3 | /graf1111111.cpp | 9544d336aa1c406df092dfea12c01387ad9cbbe9 | [] | no_license | Irina121-star/- | e3ec0ecfa9c5c7bbe5d9966b770840e63de37bff | e67c18e1dbb4ada43a0e5b669b4bd7114a852cad | refs/heads/master | 2021-01-31T14:30:43.275714 | 2020-03-01T13:05:37 | 2020-03-01T13:05:37 | 243,516,690 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 606 | cpp | #include "TXLib.h"
void DrawGraphic (double (*func) (double x), COLORREF color);
double Sqr (double x);
int main ()
{
txCreateWindow (800, 600);
DrawGraphic(&Sqr, TX_LIGHTRED);
DrawGraphic(&sin, TX_LIGHTGREEN);
}
void DrawGraphic (double (*func) (double x), COLORREF color)
... | [
"noreply@github.com"
] | Irina121-star.noreply@github.com |
44fc70f682e8e20542fd77f5211b5efdde5cb206 | a965ffd57bb0514349ef952ab950965a1cd81c95 | /src/DEKF.cpp | 902ebd319cc7be91958654cbf4d9d665d1091465 | [] | no_license | svilsen/BatteryPrognostics | 0c2b8e652405defb12f85683f9ce62120a75ddb2 | b08b20f4b8e7e17027d05e9a96742375bd334317 | refs/heads/master | 2021-11-09T20:46:32.370307 | 2018-10-08T07:42:30 | 2018-10-08T07:42:30 | 145,852,428 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,007 | cpp | #include <RcppArmadillo.h>
#include <boost/random/variate_generator.hpp>
#include <boost/generator_iterator.hpp>
#include <boost/random/mersenne_twister.hpp>
#include <boost/random/uniform_01.hpp>
template <typename T> int sgn(T val)
{
return(T(0) < val) - (val < T(0));
}
class DEKFModel {
private:
... | [
"svilsen@math.aau.dk"
] | svilsen@math.aau.dk |
6af7a9c8b2146aa69d32a6fd3f53c12ac64c23a5 | fd2109e771386dc8d291a0f162dd788070b19fbd | /hardware/firmware/lib/ip/altera/hps/altera_hps/hwlib/include/soc_a10/socal/alt_usb.h | 794f7a87670963c718dc37b96687acc24f65f657 | [] | no_license | lcfyi/quarantine-monitor | bb9cc4cc2e6f28fc7348bd41ac52b9dec281a1c9 | 3579bd7095b6cf123767cc187ebad87f8a02f352 | refs/heads/master | 2023-04-08T08:02:07.407664 | 2021-04-15T06:59:50 | 2021-04-15T06:59:50 | 337,192,645 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,708,998 | h | /***********************************************************************************
* *
* Copyright 2013-2015 Altera Corporation. All Rights Reserved. *
* ... | [
"leslie.cheng5@gmail.com"
] | leslie.cheng5@gmail.com |
f98d4370aeb9bed2b930cf4aa2180b1c888327bd | dcc66b4fa7cc1f6e3ce92bca934da24fc43edb98 | /sholland_oilDeposits.cpp | 60354b015ac211ca43b02e27896d5f7cd08c08aa | [] | no_license | spholland/UVa | 37dc8057b704786e3d0542a4f3fd99c2619fae30 | 728ecfd3ff6bbfa312ebd214980fb17b987c0e9c | refs/heads/master | 2020-04-05T23:41:03.230089 | 2015-05-02T06:22:10 | 2015-05-02T06:22:10 | 34,937,869 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,176 | cpp | // Steven Holland
//UVa #572 Oil Deposits
// To solve this problem I used a resursive flood-fill algorithm.
#include <iostream>
#include <fstream>
#include <algorithm>
#include <list>
using namespace std;
char graph[105][105];
list <int> location;
void floodFill() {
int column = location.front();
location.pop_... | [
"sholland@linfield.edu"
] | sholland@linfield.edu |
b7b9656f0650d723e550ac5dd47915906be91c32 | fcdcac090c1f92526b484da3df47eb1e8e249bbc | /include/pangolin/handler.h | 6f71b9077a0338b9b70cb45bbc7ae7c035274f36 | [
"MIT"
] | permissive | faradazerage/Pangolin | 1165e3f839ad28cae69f39bed85b15d55b8ac78d | 840aca4b1689441d9b61525b50e41277cd792757 | refs/heads/master | 2021-01-17T21:37:46.161533 | 2013-08-09T20:37:16 | 2013-08-09T20:37:16 | 9,749,828 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,755 | h | /* This file is part of the Pangolin Project.
* http://github.com/stevenlovegrove/Pangolin
*
* Copyright (c) 2013 Steven Lovegrove
*
* 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 wit... | [
"stevenlovegrove@gmail.com"
] | stevenlovegrove@gmail.com |
5fa4fe7567a9df2f7122b19567e15373917b5ee2 | cbb0bd995f5ecb64f93a30d5f1dcd106e3241214 | /Processor/OfflineMachine.hpp | e18c47b5f103834bda9cbb6506d545b5c334a8bd | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | data61/MP-SPDZ | 324010a4caaa403f64d769a276d58931e0ed274e | 5c26feece05e13387fc9bd2ef3f09b2735d6ea4b | refs/heads/master | 2023-08-10T01:25:33.653174 | 2023-08-09T02:13:34 | 2023-08-09T02:13:34 | 152,511,277 | 724 | 277 | NOASSERTION | 2023-07-21T04:43:18 | 2018-10-11T01:16:16 | C++ | UTF-8 | C++ | false | false | 5,925 | hpp | /*
* DishonestMajorityOfflineMachine.hpp
*
*/
#ifndef PROCESSOR_OFFLINEMACHINE_HPP_
#define PROCESSOR_OFFLINEMACHINE_HPP_
#include "OfflineMachine.h"
#include "Protocols/mac_key.hpp"
#include "Tools/Buffer.h"
template<class W>
template<class V>
OfflineMachine<W>::OfflineMachine(int argc, const char** argv,
... | [
"mks.keller@gmail.com"
] | mks.keller@gmail.com |
b18a1bc49ef57e09174973b7757f1cbde4632f4b | 5e1afd243b9972138591b43149dc9dbb3a017879 | /Content/C++/math/NewtonRootFinding.h | b53f1df30439c86e55c88791c407f7f2fe8123d0 | [] | no_license | pidddgy/Resources | 47bfd6fe019a3c59ac8468bb04c114b4e4679e07 | 624b2fcde28abe035cf7b54087c839bdabc623f8 | refs/heads/master | 2022-12-28T15:31:41.243316 | 2020-09-30T05:38:07 | 2020-09-30T05:38:07 | 300,311,262 | 0 | 0 | null | 2020-10-01T14:35:43 | 2020-10-01T14:35:42 | null | UTF-8 | C++ | false | false | 388 | h | #pragma once
#include <bits/stdc++.h>
using namespace std;
// Find the root of a function using Newton's Method, given an initial guess x0
// Time Complexity: iters * cost to compute f(x)
template <class T, class F> T newton(T x0, F f, F df, int iters) {
T cur = x0, next = x0;
for (int it = 0; it < iters; it++... | [
"wesley.a.leung@gmail.com"
] | wesley.a.leung@gmail.com |
974e09696d49aa1c1e53648e4c87b28473e78c09 | c7b984a6ae69a7fb06401561ce8f1bee0e7d5dea | /basetest/testuv/src/plugin.cpp | 4a9292074ee16ae175d1902012b33bc1bb69c68f | [
"MIT"
] | permissive | yaoyansi/mymagicbox | 1efa5b616c0d5c8344b97acc0b84394ca7348c88 | 1e4cb0d44273a06807a49938702b4f00d271c2a9 | refs/heads/master | 2021-01-01T19:34:27.730487 | 2014-12-03T13:54:28 | 2014-12-03T13:54:28 | 22,371,287 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,025 | cpp | #include <maya/MFnPlugin.h>
#include <maya/MStatus.h>
#include "testuvCmd.h"
#include "peltOverlapCmd.h"
// These methods load and unload the plugin, registerNode registers the
// new node type with maya
//
MStatus initializePlugin( MObject obj )
{
printf("\nplugin %s is loaded -----------------------\n", TestUVC... | [
"yaoyansi@aliyun.com"
] | yaoyansi@aliyun.com |
c147d6976329a33427b1254cb0e532d85ba6cbea | 0456635b3ea96105c8f6bc0635829dce4ab0b3fd | /Locking_Branching_Operator/brop/solution1/syn/systemc/sha256_transform_1.cpp | b2cb6388618dc8ea0e812afd5a73ee79555b214f | [] | no_license | ambuj2911/Impact_of_RTL_Locking | 3fe3d5d88b194970b0e763d75d00fe17e1187251 | cf4d13ce3ee3498f23accb9360f73464b1a6e036 | refs/heads/master | 2023-04-07T08:16:08.263848 | 2021-04-11T16:56:08 | 2021-04-11T16:56:08 | 356,877,699 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 380,116 | cpp | #include "sha256_transform.h"
#include "AESL_pkg.h"
using namespace std;
namespace ap_rtl {
const sc_logic sha256_transform::ap_const_logic_1 = sc_dt::Log_1;
const sc_logic sha256_transform::ap_const_logic_0 = sc_dt::Log_0;
const sc_lv<8> sha256_transform::ap_ST_fsm_pp0_stage0 = "1";
const sc_lv<8> sha256_transform:... | [
"guhey.ambuj@gmail.com"
] | guhey.ambuj@gmail.com |
2289d8992b846c156434a77b53e4849abb92af64 | 9280fea108f5b3912629de7851f6bbbde561c9a4 | /src/drivers/xsens_driver/src/xsens_gps_translator.cpp | 5baa2edc9ec209b3a059862457894fb9131ce8da | [
"MIT",
"Apache-2.0"
] | permissive | bytetok/vde | 93071992618b7c539cd618eaae24d65f1099295b | ff8950abbb72366ed3072de790c405de8875ecc3 | refs/heads/main | 2023-08-23T15:08:14.644017 | 2021-10-09T03:59:09 | 2021-10-09T03:59:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,074 | cpp | // Copyright 2018 the Autoware Foundation
//
// 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... | [
"Will.Heitman@utdallas.edu"
] | Will.Heitman@utdallas.edu |
f3d611724a224fd4e2d0285d99a34f9f6705e15a | 6f3ededa42c35f313a7d34c591d732b2602a9a5e | /ouzel/core/ios/EngineIOS.hpp | 272262692ed618ccb9512a4e357814807883b5c0 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | WooZoo86/ouzel | ebd0f2a13aa76e447c80ed03eda797bf6e625e83 | 7c950c4dc7c73d5f2e8ccce69fee9c876b9ac5ba | refs/heads/master | 2021-05-14T07:41:52.977341 | 2017-12-23T04:05:48 | 2017-12-23T04:05:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 738 | hpp | // Copyright (C) 2017 Elviss Strazdins
// This file is part of the Ouzel engine.
#pragma once
#include <dispatch/dispatch.h>
#include "core/Engine.hpp"
namespace ouzel
{
class EngineIOS: public Engine
{
public:
EngineIOS(int aArgc, char* aArgv[]);
virtual int run() override;
vir... | [
"elviss@elviss.lv"
] | elviss@elviss.lv |
c71224b1013f73606b45c1ab533e818abe9c1fab | 6fabf246882ce46d715c75589e6f8ea3d37fb2a6 | /BruinNav/MyMap.h | aabd106e2cf6e608abb8ad044446b813998928d6 | [] | no_license | biankaursul/projects | dee7f41037777ebcd6063f583be539022b63b540 | 6ee008c94060c13e2ee7c9ab9cbf81bbf5bf8aa8 | refs/heads/master | 2020-04-09T03:18:47.992359 | 2018-12-01T20:41:32 | 2018-12-01T20:41:32 | 159,977,528 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,846 | h | // MyMap.h
// Skeleton for the MyMap class template. You must implement the first six
// member functions.
#include <unistd.h>
#include <iostream>
using namespace std;
template<typename KeyType, typename ValueType>
class MyMap
{
public:
MyMap()
{
m_root = NULL;
m_size = 0;
}
~MyMap()
{... | [
"37175449+biankaursul@users.noreply.github.com"
] | 37175449+biankaursul@users.noreply.github.com |
f15dbaf7d541881cf148b18bf124d8d5f855d0f2 | 48fc028918006422bffac99107af6dd30cc3716e | /src/test/bswap_tests.cpp | 60d890c03b40f987282c6e1cc761ce5a5742ad32 | [
"MIT"
] | permissive | kawriscoin/Kawris | 160c3a8c597fb85a2c092f334c6635b2f37d9b33 | 404ee3940039719cfa4c87f6ebca6641c08685c9 | refs/heads/main | 2023-08-06T15:14:36.477769 | 2021-10-09T13:16:25 | 2021-10-09T13:16:25 | 366,500,796 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 735 | cpp | // Copyright (c) 2016 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "compat/byteswap.h"
#include "test/test_kawris.h"
#include <boost/test/unit_test.hpp>
BOOST_FIXTURE_TEST_SUITE(bswap_te... | [
"81927663+kawriscoin@users.noreply.github.com"
] | 81927663+kawriscoin@users.noreply.github.com |
072a4fb0b12f6e603de1401bacc2d3eac6c464f3 | 7058dc235f1e2f686e1183e8b81ea7c3587447ed | /dnhobf.cc | aae2896117c212f57a6887276f3eb74e4114476b | [] | no_license | Sparen/DanmakufuObfuscator | 4878eb36a69060600d26f08e180b6e602e8ba07a | 5b0e92345158ad3829593b51ecb881f292f41a98 | refs/heads/master | 2021-01-23T22:05:41.400633 | 2017-02-05T21:31:40 | 2017-02-05T21:31:40 | 37,858,967 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,886 | cc | #include <iostream>
#include <vector>
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include "dnhobf_fxn.h"
using std::string;
using std::cout;
using std::cin;
using std::endl;
using std::vector;
int main(int argc, char** argv){
cout << endl << "DANMAKUFU OBFUSCATOR BY SPAREN" << endl;
cout << "~~~This... | [
"andrewsuicune@gmail.com"
] | andrewsuicune@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.