blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
71a1ec6f8551f48029bc7722dc6bf3d24d363373 | 6a30978126903d6f631c0dbbf0e5bf1e441dbd76 | /MeetingSdkAgent/HostManageCB.cpp | 0e645c0b337509e3558544368406dcbc2d139251 | [] | no_license | wuscier/MeetingSdk2 | 435defa13bd7de39300ecd2cc82844f965efa475 | 32829d74faf9ba0524bd5014f6e21b52ff6101f3 | refs/heads/master | 2021-05-08T22:22:21.551846 | 2018-01-31T10:12:29 | 2018-01-31T10:12:29 | 119,670,304 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,105 | cpp | #include "HostManageCB.h"
#include "MeetingStruct.h"
void HostManageCB::cb(int cmdId, void * pData, int dataLen, Context context)
{
if (m_cb)
{
try {
m_cb(cmdId, pData, dataLen, context);
}
catch (...) {
// logging
}
}
}
HostManageCB::HostManageCB(PFunc_Callback cb)
{
m_cb = cb;
}
HostManageCB::~Ho... | [
"1352288123@qq.com"
] | 1352288123@qq.com |
1a9a8702cff1fe3aea8134b61db6e7ead40f8712 | 3cf9841462cb261a9475ad39da26522024e628ad | /test_scan.cc | a398e895fd8a95eae6f3203e20442acb58fe3da2 | [] | no_license | quang-ha/gui_git | 73a5569f58e3fb7256fb494e4c62f71b7df1372d | 3b81eaeec76e4ad24e51fccfad417dd8ecda3df8 | refs/heads/master | 2021-01-10T04:47:01.346491 | 2015-05-29T23:07:39 | 2015-05-29T23:07:39 | 36,402,292 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,486 | cc | #include "test.h"
using namespace std;
bool test_empty()
{
scanner sc("empty.nya",0,0);
try
{
sc.getcommand();
}
catch (end_of_file_exception e)
{
cout << "Test US1 successful" << endl;
return true;
}
return false;
}
bool test_include()
{
scanner sc("test2.nya",0,0);
if(sc.getcommand() == include && sc.... | [
"qth20@cam.ac.uk"
] | qth20@cam.ac.uk |
6aea31135ec58ea5a4b5bb4d7717f4d8b254b2f1 | 433cf2f7f9471175e24fea5d93bd4ea9c2ccaa59 | /main.cpp | 54d22b84fc33f316079f1fcd0f4824ca228fd369 | [] | no_license | natakhatina/kontraaa | a096c9138c6bcf5652818de4c1678b6ffad47f80 | f185e05b786b6f958f193abae4a4344a3a32231f | refs/heads/master | 2020-12-30T15:53:38.395907 | 2017-05-13T13:14:00 | 2017-05-13T13:14:00 | 91,175,364 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,743 | cpp | #include <iostream>
#include "head1.h"
void massive (int *p,int n);
void printik (element e,int n);
int relationship (element e,int n,int k);
void relation (element v,int k,element e);
void rel (element e,int n);
int main() {
int n = 10;
int *p = (int *) calloc(n, 4);
massive(p, n);
printf("\n");
... | [
"student@dep24"
] | student@dep24 |
3cf082d6ad5d569cf35df44670b7c7ff34d5c14e | 5a0dfe1326bb166d6dfaf72ce0f89ab06e963e2c | /leetcode/lc378.cpp | ddedc00e85c31587f5f3f2d46bdf7a886db95ba5 | [] | no_license | JasonXJ/algorithms | 7bf6a03c3e26f917a9f91c53fc7b2c65669f7692 | 488d93280d45ea686d30b0928e96aa5ed5498e6b | refs/heads/master | 2020-12-25T15:17:44.345596 | 2018-08-18T07:20:27 | 2018-08-18T07:20:27 | 67,798,458 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 846 | cpp | #include <vector>
#include <algorithm>
#include <cassert>
using namespace std;
class Solution {
public:
int kthSmallest(vector<vector<int>>& matrix, int k) {
assert(k >= 0);
const size_t nrows = matrix.size(),
ncols = matrix[0].size();
size_t kk = k;
int low =... | [
"lxj2048@gmail.com"
] | lxj2048@gmail.com |
c0b7fca947c8fc176426c6b5802f3487013a21a5 | b7838d3cdf5c1a5f83eee454a3133ae28fad32cb | /kernel/font.cpp | c3009576a22ff227fee4ae21af12383bd2666032 | [] | no_license | minus3theta/osdev | 70ade14c8a160338b8f44b79e0b2a160845c093a | 1a95cc165fa985e457b16d29e9deb9f0428f8926 | refs/heads/master | 2023-07-01T02:15:21.887706 | 2021-08-04T19:04:01 | 2021-08-04T19:04:01 | 363,905,458 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,050 | cpp | #include <cstdint>
#include <stdint.h>
#include "font.hpp"
#include "graphics.hpp"
extern const uint8_t _binary_hankaku_bin_start;
extern const uint8_t _binary_hankaku_bin_end;
extern const uint8_t _binary_hankaku_bin_size;
const uint8_t *GetFont(char c) {
auto index = 16 * static_cast<unsigned int>(c);
if (inde... | [
"yone_j_synthesis@yahoo.co.jp"
] | yone_j_synthesis@yahoo.co.jp |
3e154ba9c2a9ee936a46f2c889bde5e8bc257b4b | 879681c994f1ca9c8d2c905a4e5064997ad25a27 | /root-2.3.0/run/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/0.92/U.particlesMean | c1c926ff401f91b3cbb38d28c4c0b573b10c44de | [] | no_license | MizuhaWatanabe/OpenFOAM-2.3.0-with-Ubuntu | 3828272d989d45fb020e83f8426b849e75560c62 | daeb870be81275e8a81f5cbac4ca1906a9bc69c0 | refs/heads/master | 2020-05-17T16:36:41.848261 | 2015-04-18T09:29:48 | 2015-04-18T09:29:48 | 34,159,882 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 145,393 | particlesmean | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.3.0 |
... | [
"mizuha.watanabe@gmail.com"
] | mizuha.watanabe@gmail.com |
f89910401cdddad0b97a0170f29fab47de1048e8 | 6180c9e8278145285dbc2bf880a32cb20ca5a5a0 | /scenargie_simulator/2.2/source/simulator/routing/nuOLSRv2/core/ip.h | 75c125b0b46cb8c9b6921d89d0a71176cf001314 | [] | no_license | superzaxi/DCC | 0c529002e9f84a598247203a015f0f4ee0d61c22 | cd3e5755410a1266d705d74c0b037cc1609000cf | refs/heads/main | 2023-07-15T05:15:31.466339 | 2021-08-10T11:23:42 | 2021-08-10T11:23:42 | 384,296,263 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,742 | h | #ifndef NU_CORE_IP_H_
#define NU_CORE_IP_H_
#include "config.h" //ScenSim-Port://
namespace NuOLSRv2Port { //ScenSim-Port://
/************************************************************//**
* @defgroup nu_ip Core :: IP address and originator address
* @{
*/
#define NU_IP4_LEN sizeof(nu_in_addr_t)... | [
"zaki@keio.jp"
] | zaki@keio.jp |
121b2331ae975b0f00e9a69b6b6d8a02d48686ee | 8e3e5c20b4fd1b7732b9de040d3e21f104b33767 | /hw/A3_code/shapes.cpp | bb014582fc396ed33e80de529b150f5f302d020d | [] | no_license | TypeKazt/CS432 | 49fbbc41a1581afa017756ea1105637e6b240ef2 | 20f60ab2a3fb5774f3c3badace050e273b22f5d3 | refs/heads/master | 2021-03-27T10:27:43.840239 | 2017-03-10T03:59:12 | 2017-03-10T03:59:12 | 76,214,658 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,167 | cpp | #include "shapes.h"
#include "Angel.h"
#include <math.h>
#include "vec.h"
vec4 Line::intersection(Line other)
{
const vec4 r = vec4(1, get_slope(), 1);
const vec4 s = vec4(1, other.get_slope(), 1);
const vec4 p = get_points()[0];
const vec4 q = other.get_points()[0];
// vec4 t = cross(q-p, s)/cross(r, s);
return ... | [
"alexander.v.kazantsev@gmail.com"
] | alexander.v.kazantsev@gmail.com |
b4feeb64cdbf746a1b3cec2ccb1ad8372aa5ff3f | 80213c41dc5a1266174d286b255a2976b6109162 | /GpioAvrDriver.cpp | 458d334fee131b004102914a6d7b8fbba0c871b0 | [] | no_license | IntelligentHome/Gpio_driver | e2c43ed08e1018e22bb6c16decc4c710feacf30f | 064ee7369d74068b8293d72bedb42278dd74fd11 | refs/heads/master | 2020-05-29T08:43:00.894281 | 2016-11-19T15:14:18 | 2016-11-19T15:14:18 | 69,798,723 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 506 | cpp |
#include "GpioAvrDriver.h"
namespace gpio_avr_driver {
GpioAvr::GpioAvr(
volatile uint8_t *pddr,
volatile uint8_t *pport,
uint8_t pin)
:
pddr_(pddr),
pport_(pport),
pin_(pin)
{
*pddr_ |= (1 << pin_);
}
void GpioAvr::Set(void) {
*pport_ |= (1... | [
"msikora87@gmail.com"
] | msikora87@gmail.com |
5394be23d9c26523817626c6dfc062cc840705fd | b0b63ae082dc084c5869ab2c6f65a067aa72aff1 | /vImporter/Entity/PhieuNhapKho-odb.hxx | 27f88bcae398a42192734ae02b673bff71cfca9f | [] | no_license | bachns/vImporter | b2e73ab3f1d8eb77dc19bcafb82873c56c4f5475 | 461769c26b744a55b6ea6698154c4491a6b77526 | refs/heads/master | 2023-03-22T11:43:10.087666 | 2021-03-18T06:50:26 | 2021-03-18T06:50:26 | 322,203,478 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,967 | hxx | // This file was generated by ODB, object-relational mapping (ORM)
// compiler for C++.
//
#ifndef PHIEU_NHAP_KHO_ODB_HXX
#define PHIEU_NHAP_KHO_ODB_HXX
// Begin prologue.
//
#include <odb/qt/version.hxx>
#if ODB_QT_VERSION != 2040000 // 2.4.0
# error ODB and C++ compilers see different libodb-qt interface versions
... | [
"bachns.dev@gmail.com"
] | bachns.dev@gmail.com |
585420076a83320472934b0c1e936119dae9c9ec | 184180d341d2928ab7c5a626d94f2a9863726c65 | /issuestests/starvz/inst/testfiles/integrateStepFunc/AFL_integrateStepFunc/integrateStepFunc_DeepState_TestHarness.cpp | 1cb766b1db8cb68f24c22658cb9875de4254a40a | [] | no_license | akhikolla/RcppDeepStateTest | f102ddf03a22b0fc05e02239d53405c8977cbc2b | 97e73fe4f8cb0f8e5415f52a2474c8bc322bbbe5 | refs/heads/master | 2023-03-03T12:19:31.725234 | 2021-02-12T21:50:12 | 2021-02-12T21:50:12 | 254,214,504 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,801 | cpp | // AUTOMATICALLY GENERATED BY RCPPDEEPSTATE PLEASE DO NOT EDIT BY HAND, INSTEAD EDIT
// integrateStepFunc_DeepState_TestHarness_generation.cpp and integrateStepFunc_DeepState_TestHarness_checks.cpp
#include <fstream>
#include <ctime>
#include <RInside.h>
#include <iostream>
#include <RcppDeepState.h>
#include <qs.h>
#... | [
"akhilakollasrinu424jf@gmail.com"
] | akhilakollasrinu424jf@gmail.com |
ee7c8f028918e559db832746d79b3dde795ac9d1 | 151c47aa7c7810634067353d983629abb3d281ab | /Cocos2dRenderer.h | 092f2774e30a6c1f62e45ada7530f63152d745a3 | [] | no_license | eoeuou/wp8-xaml | b64ace455e994b40f96f2f4d7077a13de7fd3a78 | 82f7002b7dc81ec967a1d8181560050cdc139eb9 | refs/heads/master | 2021-01-10T19:30:28.234801 | 2014-05-09T01:28:20 | 2014-05-09T01:28:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,964 | h | /****************************************************************************
Copyright (c) 2013 cocos2d-x.org
Copyright (c) Microsoft Open Technologies, Inc.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the... | [
"wanghua@chukong-inc.com"
] | wanghua@chukong-inc.com |
c86685a55db1543b4d0a4b6216a3aef94d9bba65 | b976c133608c22115497db2c47b7d096ce09304b | /programming/ros_stacks-rosBuild/vrep/vrep_plugin_skeleton/src/vrep_plugin_skeleton.cpp | 18f50acb4e13cc33b3030b777791be8284063b3d | [] | no_license | yoonlab/AnytimeRRBT | 0e1e95caa7cf42284137856fd14744060ce85683 | 4b0b1bb53a436bb96cedde659fd50b652e140ec6 | refs/heads/master | 2021-01-12T03:25:44.511443 | 2017-01-09T15:32:30 | 2017-01-09T15:32:30 | 78,205,746 | 0 | 0 | null | 2017-01-06T12:52:20 | 2017-01-06T12:52:19 | null | UTF-8 | C++ | false | false | 5,016 | cpp | // Copyright 2006-2014 Coppelia Robotics GmbH. All rights reserved.
// marc@coppeliarobotics.com
// www.coppeliarobotics.com
//
// -------------------------------------------------------------------
// THIS FILE IS DISTRIBUTED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
// WARRANTY. THE USER WILL USE IT AT HIS/HER ... | [
"HeechanShin@github.com"
] | HeechanShin@github.com |
26871efc180f125c89b3de9ae3a98e8082b30077 | 5ebd5cee801215bc3302fca26dbe534e6992c086 | /blazetest/src/mathtest/dmatsmatkron/HDaUCa.cpp | 87d1556adb77edf15577b1e86119a12abe6b0502 | [
"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,277 | cpp | //=================================================================================================
/*!
// \file src/mathtest/dmatsmatkron/HDaUCa.cpp
// \brief Source file for the HDaUCa dense matrix/sparse matrix Kronecker product math test
//
// Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved
//
// ... | [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
7eb8d9ad4ea095a11e83da0d15abc36686b5f507 | ebacc5b1b457b08eac119e43c030281c98343aeb | /vstest/C++/09cpp/09cpp/Test.cpp | 366ad62aa95e29fc3785a5218408890cdfa188e4 | [] | no_license | deardeng/learning | e9993eece3ed22891f2e54df7c8cf19bf1ce89f4 | 338d6431cb2d64b25b3d28bbdd3e47984f422ba2 | refs/heads/master | 2020-05-17T13:12:43.808391 | 2016-02-11T16:24:09 | 2016-02-11T16:24:09 | 19,692,141 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 598 | cpp | #include "Test.h"
#include <iostream>
using namespace std;
//inline int Test::Add(int a,int b){
// return a+b;
//}
//void Test::Init(){
// x_ = 0;
// y_ = 0;
// z_ = 0;
//}
//
//void Test::Init(int x){
// x_ = x;
// y_ = 0;
// z_ = 0;
//}
//
//void Test::Init(int x,int y){
// x_ = x;
// y_ = y;
/... | [
"565620795@qq.com"
] | 565620795@qq.com |
03e7678b5a1492d8c9061ba04fd968c5970b41a9 | 1145a4f5335d8cf966f9fa5a93df8fbdd8ff9fe4 | /src/sapling/saplingscriptpubkeyman.h | 6eb69f7a74d8f4f47bed44655670ee96a553e39b | [
"MIT"
] | permissive | RapidsOfficial/Rapids | 40a6a143eef9628c2fbe8c436012a2a0621df093 | cddbdb9514834357dfe49bb037e069f300be144b | refs/heads/4.0 | 2022-12-26T12:15:34.511952 | 2022-12-13T20:16:02 | 2022-12-13T20:16:02 | 180,844,322 | 74 | 29 | MIT | 2022-12-13T20:16:03 | 2019-04-11T17:29:29 | C++ | UTF-8 | C++ | false | false | 3,577 | h | // Copyright (c) 2020 The PIVX Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef PIVX_SAPLINGSCRIPTPUBKEYMAN_H
#define PIVX_SAPLINGSCRIPTPUBKEYMAN_H
#include "wallet/hdchain.h"
#include "wallet/wallet.h"
#... | [
"matiasfurszyfer@protonmail.com"
] | matiasfurszyfer@protonmail.com |
6c5679c149f9d4ed4b7e122a52323c40a82d5a6f | dd1b4089f638d801698e34b830b2767149b665f6 | /VetoSim/Restore/Analysis_Old/Dima_CalibrateCuts.cpp | f5ae37b7209f55cc703f970b1adbbf3540ffbe12 | [] | no_license | ChristiaanAlwin/NeuLAND_Veto | d1c1b41cfb1f4ade2de664188da615b2541d3e7b | ed06682b03b1bd6b2c7ecc2f3be7c62036ef45ee | refs/heads/master | 2021-01-05T19:02:08.598882 | 2020-02-17T13:55:17 | 2020-02-17T13:55:17 | 241,109,623 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,130 | cpp | #include "Dima_DrawStyle.cpp"
Float_t kappa = 0.04;
const Float_t misId[] = {0.4, 0.3, 0.2, 0.025};
// -----------------------------------------------------------------------------
void calibr_2D(Int_t beamE, Int_t Erel, Float_t Kappa) // NOTE: Change by C. A. Douma
{
Int_t d;
if(Erel == 100) {
d... | [
"Christiaan90518@gmail.com"
] | Christiaan90518@gmail.com |
9c5b84714dc3e9d974c799f747a9bae5e21918b8 | 8ae31e5db1f7c25b6ce1c708655ab55c15dde14e | /比赛/学校/2019-9-21邀请赛/source/HB-何睦/xor.cpp | 5dfb76e60e2cc73df8117fec088c45781342c360 | [] | no_license | LeverImmy/Codes | 99786afd826ae786b5024a3a73c8f92af09aae5d | ca28e61f55977e5b45d6731bc993c66e09f716a3 | refs/heads/master | 2020-09-03T13:00:29.025752 | 2019-12-16T12:11:23 | 2019-12-16T12:11:23 | 219,466,644 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,928 | cpp | #pragma GCC optimize(2)
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include <algorithm>
#include <string>
#include <queue>
#include <vector>
#include <map>
#include <deque>
#define INF 0x3f3f3f3f
#define MO 1000005
#define NO 200005
#define eps 1e-9
#define P 998244353l... | [
"506503360@qq.com"
] | 506503360@qq.com |
5aa62b1d8db61c3534ce9ac6b364da8b201589ee | 700dce5b7786d0f3c0d3eee2417794e8d651a345 | /OpenGL/src/VertexArray.cpp | 05a518df775eee3bf82876d3aff9a6a32cafde93 | [] | no_license | jerrysheen/OpenGL | 7cee460e9b26edf58cc0ab393e97c2063c987af9 | 346675cc43769df4a309619922eeb53121d808f7 | refs/heads/main | 2023-06-16T06:05:33.619786 | 2021-07-14T08:26:32 | 2021-07-14T08:26:32 | 384,673,869 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 949 | cpp | #include "VertexArray.h"
#include "Renderer.h"
#include "VertexBufferLayout.h"
VertexArray::VertexArray()
{
glGenVertexArrays(1, &m_RendererID);
glBindVertexArray(m_RendererID);
}
VertexArray::~VertexArray()
{
glDeleteVertexArrays(1, &m_RendererID);
}
void VertexArray::AddBuffer(const VertexBuffer & vb, const... | [
"jerrysheen@gmail.com"
] | jerrysheen@gmail.com |
9633b71625da63be55886bd6e8d2bcab60bd7dc1 | 65766caa381f6197a20a0b7aaf47943c51cf77b2 | /P1 Eficiencia/src/burbuja.cpp | 6216ced6c1782162c111614018fa62cd1023f982 | [] | no_license | fgallegosalido/Algoritmica-DG | e8dc3028fd66eb45b4148741b1ed962c69626f0d | 0755bdd0595a916701353510b899aee15762d863 | refs/heads/master | 2021-01-17T07:02:51.611439 | 2016-12-13T23:36:13 | 2016-12-13T23:36:13 | 53,580,554 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,510 | cpp | /**
@file Ordenaci�n por burbuja
*/
#include <iostream>
using namespace std;
#include <ctime>
#include <cstdlib>
#include <climits>
#include <cassert>
#include <chrono>
/* ************************************************************ */
/* M�todo de ordenaci�n por burbuja */
/**
@brief Ordena un vector ... | [
"ignaciobarloz@correo.ugr.es"
] | ignaciobarloz@correo.ugr.es |
f5d3f4afe69d876b100298accb53d29f6172e8a1 | 8eb94d64b2029639078e1719319625be1a23169b | /src/modules/SX1276.h | e131be745d6c4c1d93246d1d06e1150b628111ba | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Rotron/LoRaLib | ac3a4312793b0210644bfc820fee6b4e05d6d854 | 5ab61ba6019c51980a24fff2df9201c2f0470912 | refs/heads/master | 2020-04-18T07:36:36.207749 | 2019-01-12T07:36:18 | 2019-01-12T07:36:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,551 | h | #ifndef _KITELIB_SX1276_H
#define _KITELIB_SX1276_H
#include "TypeDef.h"
#include "SX1278.h"
/*!
\class SX1276
\brief Derived class for %SX1276 modules. Overrides some methods from SX1278 due to different parameter ranges.
*/
class SX1276: public SX1278 {
public:
// constructor
/*!
\bri... | [
"jgromes@users.noreply.github.com"
] | jgromes@users.noreply.github.com |
bb69ba3ace3fb7ad32b98427f6d7a7a8283ea76b | ede39dd3b4eff4a4b5bad0a70918295170845cbd | /ios/web/public/test/test_web_state.h | 9d31c84cdc97fed6c216d09ad785941fca0183a5 | [
"BSD-3-Clause"
] | permissive | fujunwei/chromium-crosswalk | 9ae06862337e49061d49b932fc049f460463d5c3 | 24a582e5655871d72348c18f77ead355cc32126e | refs/heads/master | 2022-10-18T22:20:24.494151 | 2015-04-02T10:55:14 | 2015-05-22T05:56:53 | 37,062,999 | 1 | 0 | null | 2015-06-08T11:30:41 | 2015-06-08T11:30:41 | null | UTF-8 | C++ | false | false | 2,403 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_WEB_PUBLIC_TEST_TEST_WEB_STATE_H_
#define IOS_WEB_PUBLIC_TEST_TEST_WEB_STATE_H_
#include <string>
#include "ios/web/public/web_state/url_ver... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
55f6025121148dd19fe536dea0da0fda87e80faf | f666f7f25def65d2161494b7c15a389bbea1eb59 | /Screen Capturing SDK/C++ (unmanaged)/Capture Video From Given Region/CaptureFromGivenRegion.cpp | e61c9c6e199ee69a02f5639a78aea07900a97d4a | [
"Apache-2.0"
] | permissive | jboddiford/ByteScout-SDK-SourceCode | e1fbcf269428569ef7ace28cf5b1c8a662203a01 | 6e6ed69b1b337a432b2c194b7748453f36e0bede | refs/heads/master | 2020-05-18T22:59:18.301031 | 2019-04-29T05:46:22 | 2019-04-29T05:46:22 | 184,413,507 | 0 | 0 | Apache-2.0 | 2019-05-01T12:33:35 | 2019-05-01T12:33:34 | null | UTF-8 | C++ | false | false | 3,817 | cpp | //*******************************************************************************************//
// //
// Download Free Evaluation Version From: https://bytescout.com/download/web-installer //
// ... | [
"estarkov@gmail.com"
] | estarkov@gmail.com |
94725960df470326b4a0874c323bb5c295a8b9f1 | 869d952d206647a696772b4e3d40bb973d26224b | /GameClasses/Entities/RisingWater.cpp | 6297f76ffbe6fc4bebd42add1dfa1dd986dce0be | [] | no_license | GlenDC/Lemmings3D | 34bbe904be5e2f96e2e565ab7fb99dcecbce802b | efe0cc2883300f85ff8695ba9bfea5f615b97bce | refs/heads/master | 2021-01-23T17:58:44.832236 | 2013-08-20T23:45:00 | 2013-08-20T23:45:00 | 8,858,484 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 13,056 | cpp | //====================== #INCLUDES ===================================
#include "RisingWater.h"
//--------------------------------------------------------------------
#include "../Materials/InstancedWaterMaterial.h"
#include "../Lib/GlobalParameters.h"
#include "../Managers/Stopwatch.h"
#include "../Lib/LemmingsHelpers... | [
"contact@glendc.com"
] | contact@glendc.com |
b50cb9109044542e3ad5af7f5588e4769ee54b98 | bff2b0fd1aadf8a15d62c0dafbb032e687ca1052 | /3、结构体/结构体.cpp | 1f3bf3b3e001582057419abc60dc49111188dfeb | [] | no_license | beautifulpeer/C | 5db2bfdd01815b3baca6540bbf79af95ece448c3 | 3cea6e390c77bcdd153e9e5784d91e531ab55868 | refs/heads/master | 2022-12-22T23:19:48.113291 | 2020-09-25T02:22:14 | 2020-09-25T02:22:14 | 284,266,091 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 443 | cpp | #include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <time.h>
/* 结构体巩固 */
int main(){
struct one //这个one为结构体标识,没有也行
{
uint8_t x1;
uint16_t x2;
float x3;
}y1;
y1.x1=8;
y1.x2=500;
y1.x3=3.4;
printf("打印结果为:%d\r\n",y1.x1);
printf("打印结果为:%d\... | [
"1183953327@qq.com"
] | 1183953327@qq.com |
52ed8cd7fb4af564a2af7eaec55055dc72d11eed | e0008b888bf4c31d37f259ad13cf238732453541 | /3rd/head-tracker-osc-bridge/JuceLibraryCode/BinaryData.cpp | ad42e47fcf193136329ecac4ef8278a69b73b129 | [] | no_license | even2ll/HdM_Tracker | f1bfb2aa308a6d329b4c0f62a3b9ea7d2a4c04c9 | e0d0ffe09a3dec04c2e0047d1e68333ceb4cc373 | refs/heads/master | 2023-07-03T01:50:35.742769 | 2020-10-21T08:01:38 | 2020-10-21T08:01:38 | 463,182,616 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,679,523 | cpp | /* ==================================== JUCER_BINARY_RESOURCE ====================================
This is an auto-generated file: Any edits you make may be overwritten!
*/
namespace BinaryData
{
//================== axis.png ==================
static const unsigned char temp_binary_data_0[] =
{ 137,80,78,71,13,... | [
"melchior@hdm-stuttgart.de"
] | melchior@hdm-stuttgart.de |
d1b50809b9a209f1666f6e5f0fd04b0b2c4e85cd | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_patch_hunk_3812.cpp | 038814954a3b4f5266e5d1c4d41395cd4e103764 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,255 | cpp | ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO(02231)
"No SSL protocols available [hint: SSLProtocol]");
return ssl_die(s);
}
cp = apr_pstrcat(p,
+#ifndef OPENSSL_NO_SSL3
(protocol & SSL_PROTOCOL_SSLV3 ? "SSLv3, " : ""),
+#endif
... | [
"993273596@qq.com"
] | 993273596@qq.com |
7f210455982da17926063336c97d512a9d8068d5 | d48b00b905ed9fb27949285737601f0b3d04c857 | /2017/08/19/CCPC网络赛/1009.cpp | 10e2f778523947eebca36a0ccba94ff2bad96a7b | [] | no_license | Smlight/Programming-Contest | 1162bbd5476cc687c1afe3d2fd92e4832cf4b979 | ee90ad89804ae10c9cd4b31171adb467f2493b33 | refs/heads/master | 2021-06-01T10:42:08.730261 | 2020-12-09T07:36:35 | 2020-12-09T07:36:35 | 56,766,943 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,553 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long double ld;
const ld IR2=100;
const ld PI=3.141592653589793238462643383279502884197169399375105820974944592307816L;
struct Point {
ld x,y;
Point(ld _x=0,ld _y=0):x(_x),y(_y) {}
Point operator +(const Point &R) {
return Point(R.x+x,R.y+y);
... | [
"imzy140@gmail.com"
] | imzy140@gmail.com |
c31350c92bbf6eb3adfe209018c508cc1a6e3e8c | 994f26eefca269b638c3acd41cbe72ef4971d1f3 | /JEngine/src/Public/Camera/OrthographicCameraController.h | 68073df4d72f011f98a2184f28b276d8d03493cb | [
"Apache-2.0"
] | permissive | PiangGG/JEngine | 9b5ec2f9a50264ea1507ec1b79203f826c382505 | 7295cceae1a5169539e1bf81a1dddd8bf1861694 | refs/heads/master | 2023-01-10T09:47:41.200881 | 2020-11-11T03:24:47 | 2020-11-11T03:24:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 939 | h | #pragma once
#include "../Camera/OrthographicCamera.h"
#include "../Core/Timestep.h"
#include "../Events/ApplicationEvent.h"
#include "../Events/MouseEvent.h"
#include "glm/glm.hpp"
namespace JEngine
{
class OrthographicCameraController {
public:
OrthographicCameraController(float aspectRatio, bool rotation = f... | [
"tianmouz@smu.edu"
] | tianmouz@smu.edu |
0d67e24896ca0bf1548f2d45fd781db1f10245d9 | e018d8a71360d3a05cba3742b0f21ada405de898 | /Client/Packet/RequestServerPlayerManager.h | 1d38f682cc206eb5c355ac94bc8f75ecd9062869 | [] | no_license | opendarkeden/client | 33f2c7e74628a793087a08307e50161ade6f4a51 | 321b680fad81d52baf65ea7eb3beeb91176c15f4 | refs/heads/master | 2022-11-28T08:41:15.782324 | 2022-11-26T13:21:22 | 2022-11-26T13:21:22 | 42,562,963 | 24 | 18 | null | 2022-11-26T13:21:23 | 2015-09-16T03:43:01 | C++ | UHC | C++ | false | false | 3,231 | h | //--------------------------------------------------------------------------------
// RequestServerPlayerManager.h
//--------------------------------------------------------------------------------
//
// Init( port )하면 Request를 받아들일 준비를 하게 된다.
// 내부에서 Thread를 생성해서
// WaitRequest... | [
"tiancaiamao@gmail.com"
] | tiancaiamao@gmail.com |
aeca78bd2b6c373ea1ee29ee0aeae4c16a3d0292 | 670c5ea075f921115dd969262c7ac7becaf42e8e | /VC/Ginkgo SPI/VC_USB_SPI_M95040/USB_SPI_M95040/USB_SPI_M95040/stdafx.cpp | c6ead7a6e0b222ade056c43ef514b262db3cbb17 | [] | no_license | ViewTool2015/Ginkgo | 694b13cbca797571c1d0edfa16032b0738753231 | c88fa60e002cad236de3c86ae0fa8b799eb70655 | refs/heads/master | 2021-01-02T23:13:00.576649 | 2015-04-28T03:49:35 | 2015-04-28T03:49:35 | 34,705,306 | 18 | 9 | null | null | null | null | UTF-8 | C++ | false | false | 293 | cpp | // stdafx.cpp : source file that includes just the standard includes
// USB_SPI_M95040.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"sxj1394@163.com"
] | sxj1394@163.com |
d103b453b749941fe72ac3d7602b17d4053f9c30 | cc0a9745fce81bbe241e62a1963e6ebe2fd8cda3 | /library/vcl/display/drawable/mesh_normal_drawable/mesh_normal_drawable.cpp | 8bc5b75edddacc402e0eb5664d3a27e2791b9f77 | [
"MIT"
] | permissive | drohmer/inf585_vcl | b13478e85ac411d53463bb5b3d84b0571e319356 | 9ecf7ee7ae211b54181329dc0dbf7f2aa6bd0f5b | refs/heads/master | 2021-07-10T04:15:18.777150 | 2021-02-23T11:28:03 | 2021-02-23T11:28:03 | 231,139,747 | 1 | 6 | MIT | 2021-03-07T11:34:57 | 2019-12-31T19:44:52 | C++ | UTF-8 | C++ | false | false | 1,122 | cpp | #include "mesh_normal_drawable.hpp"
namespace vcl
{
GLuint mesh_normal_drawable::default_shader=0;
mesh_normal_drawable::mesh_normal_drawable()
:gpu_elements_id(), number_normals(0), shader(0), transform(), color(vec3{1.0f,0.0f,0.0f})
{}
mesh_normal_drawable::mesh_normal_drawable(mesh const& data, ... | [
"damien.rohmer@gmail.com"
] | damien.rohmer@gmail.com |
58c690f743ff994209c03a58d7cde4ce27000524 | dfadd879ccc98bb99c45651a33c80c18181589d9 | /UnitTests/Intersection/MeshGenerationTests.cpp | 59ddd61d8ea230327784f1b6d97e6af5a6d934ee | [
"MIT"
] | permissive | zeroengineteam/ZeroCore | f690bcea76e1040fe99268bd83a2b76e3e65fb54 | 14dc0df801b4351a2e9dfa3ce2dc27f68f8c3e28 | refs/heads/1.4.2 | 2022-02-26T04:05:51.952560 | 2021-04-09T23:27:57 | 2021-04-09T23:27:57 | 148,349,710 | 54 | 27 | MIT | 2022-02-08T18:28:30 | 2018-09-11T16:51:46 | C++ | UTF-8 | C++ | false | false | 7,929 | cpp | ///////////////////////////////////////////////////////////////////////////////
///
/// \file MeshGenerationTests.cpp
/// Unit tests for the various functions associated with meshes as part of the
/// geometry library.
///
/// Authors: Benjamin Strukus
/// Copyright 2011, DigiPen Institute of Technology
///
/... | [
"arend.danielek@zeroengine.io"
] | arend.danielek@zeroengine.io |
f52144c0d46e68b5de5a8f7a3d5f80615f572836 | e37c143e10c14decfeaec1b8f27e53ecba7da24e | /lib/primesieve/src/app/help.cpp | c046dbf747a1bfd51f308e44c4d859bb0b7548b9 | [
"BSD-2-Clause"
] | permissive | kimwalisch/primesum | d569d743051004d464058cddf315b7b1638068d2 | ac22b966a560a42c1872c02beb8ac4d00d8d88d4 | refs/heads/master | 2022-07-11T04:07:55.525968 | 2022-06-17T19:21:33 | 2022-06-17T19:21:33 | 58,924,917 | 41 | 3 | BSD-2-Clause | 2019-03-10T12:53:19 | 2016-05-16T10:42:50 | C++ | UTF-8 | C++ | false | false | 2,700 | cpp | ///
/// @file help.cpp
/// @brief help() and version() functions of the primesieve
/// console application.
///
/// Copyright (C) 2021 Kim Walisch, <kim.walisch@gmail.com>
///
/// This file is distributed under the BSD License. See the COPYING
/// file in the top level directory.
///
#include <primesieve.hp... | [
"kim.walisch@gmail.com"
] | kim.walisch@gmail.com |
8192313f9dae744dbacde9417cd84ac851345f73 | 5a0e024d419cb772cf6591a42f54929394bc3a0c | /src/utils.cpp | 1d87ce3fef69bc3aa8db5ff7ee19399903d69fe8 | [] | no_license | Larsluph/WWW | 4d0503f0c94f62cf5fdb8558b76e6882294940f6 | ceebd17065b148a9e66ccf43c731c36cd6a44575 | refs/heads/master | 2023-08-16T00:35:44.140596 | 2021-10-22T13:02:07 | 2021-10-22T13:02:07 | 415,402,234 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,418 | cpp | #include "utils.h"
#include <EEPROM.h>
bool isElapsed(unsigned long time, unsigned long cd) {
return (millis() - time > cd);
}
uint8_t getYear() {
return clock.year;
}
uint8_t getMonth() {
return clock.month;
}
uint8_t getDay() {
return clock.dayOfMonth;
}
uint8_t getHours() {
return clock.hour;
}... | [
"remarso59@sfr.fr"
] | remarso59@sfr.fr |
a5f18de3307bf3f59825241b64250f9dae709729 | fe8eda5ef62e7f43eb93bdb1906b4667ac76c3ab | /inazuma/cpp/ABC/Bprob/under_99/038.cpp | 9c209fc81ac0e54e0766a11d3d893b244e2f33a5 | [] | no_license | DeeeU/Everyday-problem-C | 0b1011f2162aa4a3c4488cfeee432968309b2e9c | e7dba35fd7aee3b0e17ae5867576a1a11ae49b2b | refs/heads/master | 2023-03-15T04:37:29.270017 | 2021-03-08T06:19:01 | 2021-03-08T06:19:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 546 | cpp | #include <iostream>
#include <cstdlib>
#include <algorithm>
#include <cmath>
#include <limits>
#include <vector>
#include <string>
#include <set>
typedef long long ll;
using namespace std;
int main()
{
// input & declare
string result = "NO";
std::vector<int> v1(2,0);
std::vector<int> v2(2,0);
cin >> v1[0] >... | [
"c011703534@edu.teu.ac.jp"
] | c011703534@edu.teu.ac.jp |
5920b6b2cf44f0f7d6723dc9389ffd19a4903146 | decf767e0a6580c09d6a26c224ec5be8cf4d3eb2 | /Midterm/main.cpp | 152ea3bb8d35761e01361535ea12c2c6b2cd49da | [] | no_license | daniel-saeedi/AdvancedProgrammingUT | d3dffe108d22e252bf06e292b6aae58d6a29351a | 8c146fe1cd77b7b545659a0ba21a2d7f15e1d4c7 | refs/heads/master | 2023-03-12T02:34:11.129714 | 2021-02-20T21:42:27 | 2021-02-20T21:42:27 | 301,691,001 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 15,652 | cpp | #include <iostream>
#include <string>
#include <sstream>
#include <vector>
#include <algorithm>
#include <exception>
using namespace std;
/* Constants */
#define BOOK_MAX_BORROW_TIME 10;
#define REFERENCE_MAX_BORROW_TIME 5;
#define MAGAZINE_MAX_BORROW_TIME 2
#define STUDENT_MAX__BOOK_BORROW 2
#define PROFESSOR_MAX__BO... | [
"saeedi.danial@gmail.com"
] | saeedi.danial@gmail.com |
fb94063e009ddffd8bd0355c0a745287f9e68d5f | c1ea86f1c551ac343e2d3a1e5d7e96c5d92d1dd5 | /v0.07/IChannelCallBack.h | 784bb452e78001452a00dc82ace37f6390b01391 | [] | no_license | itherunder/tiny-muduo | 93e0f490c8b73d7306fac4037716e3b5f32d0e5f | fd08bfe068c9a5fe612e1009160e61d1ead70453 | refs/heads/main | 2023-07-10T10:29:47.265407 | 2021-08-25T07:18:49 | 2021-08-25T07:18:49 | 395,884,378 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 196 | h | #ifndef _ICHANNEL_CALLBACK_H_
#define _ICHANNEL_CALLBACK_H_
class IChannelCallBack {
public:
virtual void HandleRead() {}
virtual void HandleWrite() {}
};
#endif //_ICHANNEL_CALLBACK_H_
| [
"liaozhou98@qq.com"
] | liaozhou98@qq.com |
c264ba89891ee216c9e1e10bda22ccde634e6865 | 93b611a35328b9204a8edff4675cb11a8c529684 | /Export/macos/obj/include/openfl/ui/Mouse.h | 8e386c9165e199c00cc384092841a3778ee4fd5a | [] | no_license | dmoa/firstHaxeGame | b5db96619cb8dc3d7ce38d6ba4adf29c4b6dca3c | fbed7991277168a57b22d220c5ccc15f01e467a0 | refs/heads/master | 2020-06-29T11:36:20.971915 | 2019-08-04T17:39:57 | 2019-08-04T17:39:57 | 200,523,232 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 2,123 | h | // Generated by Haxe 3.4.4
#ifndef INCLUDED_openfl_ui_Mouse
#define INCLUDED_openfl_ui_Mouse
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_CLASS2(openfl,ui,Mouse)
namespace openfl{
namespace ui{
class HXCPP_CLASS_ATTRIBUTES Mouse_obj : public hx::Object
{
public:
typedef hx::Object super;
typedef Mouse... | [
"44374106+dmoa@users.noreply.github.com"
] | 44374106+dmoa@users.noreply.github.com |
7ec949ec2459fccc7023407cc076442b454d4822 | ff2303ef4f2edaa4d3b1bf5f421f75b2842b11c3 | /Change Filename GUI/Change Filename GUI/stdafx.cpp | e5ec7dd5feff8cd8ffbea753def1137b110d45e0 | [] | no_license | berant89/Projects | 7675fd861c698852626f2bafa8311d8d6394fa74 | d6e74e5cb42c0250a4b9ba261564ec0158352f66 | refs/heads/master | 2021-03-12T21:27:28.011288 | 2014-01-27T04:36:38 | 2014-01-27T04:36:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 298 | cpp | // stdafx.cpp : source file that includes just the standard includes
// Change Filename GUI.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"beneran89@gmail.com"
] | beneran89@gmail.com |
d849278ca84c9e888990bae10d36d6b19901caf0 | 0e38be725ea7c5893e84d7ac4abd9a30b61114bd | /AADSP2_proj_malencic/model1/model1/processing.cpp | f374faaafd743fd29033348b34c9464e6a16eb87 | [] | no_license | NikolaMal/AADSP2Projekat | dffe55b391107b4fc24e843063628550154baa3d | 7a1bcab649742a1621ec840cc4a2732707436fe4 | refs/heads/master | 2021-10-08T00:25:38.883574 | 2018-12-06T11:27:04 | 2018-12-06T11:27:04 | 159,855,316 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,650 | cpp | #include "stdafx.h"
#include "processing.h"
/*
*
* This element can act as a dynamic range expander. A expander changes the
* amplitude of all samples below a specific threshold with a specific ratio
* If soft-knee mode is selected the ratio is applied smoothly.
*
* parameters: ratio [0.0, 8.0)
* threshol... | [
"nmalencic@gmail.com"
] | nmalencic@gmail.com |
da6952e9c471f35b4f2c2676805f65023b7e5d44 | e923caab751c0cd3950195322a8d98ee79497795 | /ScopeAnalysis/main.cpp | 7f6375decc188f93b5f2af65ad68e3d6ab7b8313 | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | wkrzemien/j-pet-framework-examples | 02ac1af4810d19c6d6c8c9159cc429132b876af6 | 131dda41d2e57134d1303cd16827507107992aba | refs/heads/LargeBarrelExtended | 2023-04-07T06:14:17.074129 | 2017-03-18T14:31:17 | 2017-03-18T14:31:17 | 62,518,271 | 0 | 2 | Apache-2.0 | 2021-05-31T11:44:15 | 2016-07-03T22:54:46 | C++ | UTF-8 | C++ | false | false | 2,944 | cpp | /**
* @copyright Copyright 2016 The J-PET Framework Authors. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may find a copy of the License in the LICENCE file.
*
* Unless required by applicable law... | [
"alek.gajos@gmail.com"
] | alek.gajos@gmail.com |
e0d341ad68cf1c5ef511a431898ce410322f1398 | d84967ba1e6adc72e120f84524c51ad57912df5a | /devel/electron9/files/patch-chrome_browser_download_download__shelf__context__menu.cc | 709e0e8d7de1f8408270ca2649bab4969e3a296d | [] | no_license | tagattie/FreeBSD-Electron | f191d03c067d03ad3007e7748de905da06ba67f9 | af26f766e772bb04db5eb95148ee071101301e4e | refs/heads/master | 2023-09-04T10:56:17.446818 | 2023-09-04T09:03:11 | 2023-09-04T09:03:11 | 176,520,396 | 73 | 9 | null | 2023-08-31T03:29:16 | 2019-03-19T13:41:20 | C++ | UTF-8 | C++ | false | false | 546 | cc | --- chrome/browser/download/download_shelf_context_menu.cc.orig 2020-05-26 08:03:18 UTC
+++ chrome/browser/download/download_shelf_context_menu.cc
@@ -147,7 +147,7 @@ base::string16 DownloadShelfContextMenu::GetLabelForCo
: IDS_DOWNLOAD_MENU_PLATFORM_OPEN_ALWAYS;
break;
}
-#elif ... | [
"tagattie@gmail.com"
] | tagattie@gmail.com |
4d2c15b217ec290c6018e5790b58978eb27a940c | 033f210694eeb75714c6f73d8955318890dfd300 | /ESP32/Basics/Fade/Fade.ino | d7e8ef4314bb6acd4160de547194e164cf016958 | [
"MIT"
] | permissive | matthewfcarlson/arduino | 108227b825eae1a71176c57044d831a760abe37c | ea8aa7605022726952c400cc26ab290797e16433 | refs/heads/master | 2022-07-07T06:06:28.900854 | 2020-05-13T19:47:02 | 2020-05-13T19:47:02 | 263,809,023 | 0 | 0 | MIT | 2020-05-14T03:49:57 | 2020-05-14T03:49:57 | null | UTF-8 | C++ | false | false | 3,248 | ino | /**
* This example fades on and off GPIO Pin 21 using the ESP32's PWM functionality
*
* All GPIO pins can be used for PWM on the ESP32. On the Huzzah32, pins 34 (A2), 39 (A3), 36 (A4)
* are not output-capable and should not work by design.
*
* By Jon E. Froehlich
* @jonfroehlich
* http://makeabilitylab.io
*... | [
"jonfroehlich@gmail.com"
] | jonfroehlich@gmail.com |
e8ede1fc32c9c2f3b22c4eedea035a2b29566d8e | 11bb6299e8147234ee2a39e60b203d07ad94c706 | /src/DelayPlusStereo.cpp | 05390505d730fc805423d8a680484153dfcb95bd | [
"BSD-3-Clause",
"CC0-1.0",
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | AScustomWorks/AS | abcb9f7075db51cc0bd99476cb6243d94732be4a | f2fa0649f59dfba484de23f8c80fdd2b7a1e8c3e | refs/heads/master | 2022-09-30T18:58:09.882597 | 2021-11-21T06:35:01 | 2021-11-21T06:35:01 | 115,241,432 | 124 | 23 | NOASSERTION | 2022-09-07T07:10:34 | 2017-12-24T05:10:07 | C++ | UTF-8 | C++ | false | false | 16,372 | cpp | //**************************************************************************************
//Delay Plus module for VCV Rack by Alfredo Santamaria - AS - https://github.com/AScustomWorks/AS
//
//Code taken from the Fundamentals plugins by Andrew Belt http://www.vcvrack.com
//***********************************************... | [
"freddysc@gmail.com"
] | freddysc@gmail.com |
fdc86c41f4c3be4c570d865a32119d06bd841f44 | decf94b8d8d609b225c9de9868854f2997ce1718 | /hls-syn/cnvW1A1-pynqZ1-Z2/sol1/syn/systemc/Matrix_Vector_Activa_9.cpp | 9f472e5f164cd9e3a2312399a2a5d0a94f9e6ed4 | [] | no_license | archana95in/FPGA-Project-BNN | 9dd54e2d0e83547ebcce8e87a303580b9572c578 | a007a0da089d73056cd7469d26fc7d1f7e2b7561 | refs/heads/master | 2022-12-04T07:05:40.827191 | 2020-08-27T01:31:14 | 2020-08-27T01:31:14 | 262,349,976 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 41,893 | cpp | #include "Matrix_Vector_Activa.h"
#include "AESL_pkg.h"
using namespace std;
namespace ap_rtl {
void Matrix_Vector_Activa::thread_zext_ln700_657_fu_31242_p1() {
zext_ln700_657_fu_31242_p1 = esl_zext<3,2>(add_ln700_751_fu_31236_p2.read());
}
void Matrix_Vector_Activa::thread_zext_ln700_658_fu_31252_p1() {
ze... | [
"archana95in@gmail.com"
] | archana95in@gmail.com |
f8f800adda70b716c5f449a76f6c44cdf5425af3 | fa1cb2a31bfe213075886e51ba6e3f66e84fcbc5 | /DataStructures/Testing/RecursionTester.cpp | 0d27326f20f52930537e80311d630b595652842c | [] | no_license | jacobh2299/DataStructures | bc4d7b6ffd40ea73b9809c668dad9b3537d8a71e | 60a4790a5e7a7c6da87ab3aa6f2afed160affe14 | refs/heads/master | 2021-05-05T02:02:33.149195 | 2018-05-03T14:05:09 | 2018-05-03T14:05:09 | 119,707,226 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 841 | cpp | //
// RecursionTester.cpp
// DataStructures
//
// Created by Harris, Jacob on 3/5/18.
// Copyright © 2018 Harris, Jacob. All rights reserved.
//
#include "RecursionTester.hpp"
int RecursionTester:: fib(int n)
{
if( n == 0 || n == 1)
{
cout << "reached a base case" << endl;
return 1;
}
... | [
"31513783+jacobh2299@users.noreply.github.com"
] | 31513783+jacobh2299@users.noreply.github.com |
77dd812e4b0e2da21108539a6235358c5dce429e | b746e4639e27d351cebf4e8b15aa26c3bf7da83b | /Heaps/1.heap.cpp | 9e956b1d0ef64b6a231421a4e722382e9d97724f | [] | no_license | JanviMahajan14/Algorithms | 97a2d40449565ac0f0b91d8e47bfa953d348dfce | cd951af6496066027586a0fcd4a9f48ee028a173 | refs/heads/master | 2023-07-16T19:08:42.917575 | 2021-09-02T07:33:44 | 2021-09-02T07:33:44 | 273,521,356 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,150 | cpp | #include <iostream>
#include <vector>
using namespace std;
class Heap
{
void heapify(int idx)
{
int min_idx = idx;
int left = 2 * idx;
int right = (2 * idx) + 1;
if (left < v.size() && compare(v[left], v[min_idx]))
{
min_idx = left;
}
if (rig... | [
"janvimahajan337@gmail.com"
] | janvimahajan337@gmail.com |
1ea0025ad2d7795dec26da609bcaa867c21861d2 | 73e5c95be84f9046e78a8f1fbfcf9a4b1742e401 | /Student/main.cpp | 746949cc11a6f6ec64cc9eb00e0c4f539e06c554 | [] | no_license | NewProjectOC/C | 8523b95c92c167b3eece7b6189af87c236dfccb7 | f7783f1607630dfe4da062cb411117fb3b336bd0 | refs/heads/master | 2020-03-22T23:24:24.594423 | 2018-07-18T00:24:29 | 2018-07-18T00:24:29 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 382 | cpp | #include"head.h"
using namespace std;
int student::sum=0;
int main()
{
cout<<"15计算机1班 陈嘉豪 1500303111"<<endl;
cout<<endl;
int i;
char j;
cout<<endl;
for(i=0;j!='*';i++)
{
student a;
student i(a);
i.setdate();
i.display();
fdisplay(i);
i.renshu();
cout<<endl;
cout<<"是否继续?(输入*结束,否则继续)"<<endl;
ci... | [
"449084101@qq.com"
] | 449084101@qq.com |
c822e8db09d1fdf08ef3820cdf199723e3b547ec | ad5cb08868572f6e599d2abaf8668ad942b5786d | /src/util.hpp | 8bd87f68b68bee1e51d96c0094fc17d183cb2ec3 | [
"MIT"
] | permissive | viitana/particler | 3c270cfddc1772552b8db277fd91b79438e1569f | bf3e28366497ff62753f46ee38c9a81f667614e9 | refs/heads/master | 2023-01-19T14:34:50.122180 | 2020-12-02T00:22:10 | 2020-12-02T00:22:10 | 317,079,853 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 491 | hpp | #pragma once
namespace util
{
inline int min(int a, int b);
int round_up(const int n, const int multiple);
void init_particles_random(float* positions_x, float* positions_y, float* velocities_x, float* velocities_y, int count, int width, int height);
void init_particles_circle(float* positions_x, fl... | [
"atte.viitanen@aalto.fi"
] | atte.viitanen@aalto.fi |
c435cc8a71f935acecd5641ddd6a94a08e8c9d39 | 9c061bdf588ad8dd2b2a7029f4c3683b95f2ab35 | /ucam_sultan/ucam_sultan.ino | af0a0e1c00812f3249c6723f03908ffde2f2e6f9 | [] | no_license | salamatburj/arduino | 32f954d6868e9d178661941bf89ca403ef6ef35a | faba09613a5dc9c6ec63bb2488147a354ef310cf | refs/heads/master | 2020-07-04T15:21:08.878731 | 2019-08-14T09:52:07 | 2019-08-14T09:52:07 | 202,323,237 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,302 | ino | #include <uCamII.h>
#include <SoftwareSerial.h>
#include <SPI.h>
#include <SdFat.h>
#include <Wire.h>
#include "RTClib.h"
#define BUZZER 5
#define CAM_ON 25
#define chipSelect 53
//SoftwareSerial mySerial(3, 2); // RX, TX (or tx on the end and rx on the end)
UCAMII camera;
SdFat SD1;
RTC_DS13... | [
"35909290+salamatburj@users.noreply.github.com"
] | 35909290+salamatburj@users.noreply.github.com |
744a1280127c86bab773a116f8e9ae10b57d2bef | 44ab57520bb1a9b48045cb1ee9baee8816b44a5b | /Engine/Code/Rendering/LocalEffects/Detail/FontArialW700H16.cpp | ef63d3d98a4765a0b757e57efbaae140eadfc416 | [
"BSD-3-Clause"
] | permissive | WuyangPeng/Engine | d5d81fd4ec18795679ce99552ab9809f3b205409 | 738fde5660449e87ccd4f4878f7bf2a443ae9f1f | refs/heads/master | 2023-08-17T17:01:41.765963 | 2023-08-16T07:27:05 | 2023-08-16T07:27:05 | 246,266,843 | 10 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 320,408 | cpp | /// Copyright (c) 2010-2023
/// Threading Core Render Engine
///
/// 作者:彭武阳,彭晔恩,彭晔泽
/// 联系作者:94458936@qq.com
///
/// 标准:std:c++20
/// 版本:0.9.1.1 (2023/07/13 14:01)
#include "Rendering/RenderingExport.h"
#include "FontArialW700H16.h"
#include "CoreTools/Helper/ClassInvariant/RenderingClassInvariantMacro.h"
Rendering... | [
"94458936@qq.com"
] | 94458936@qq.com |
6785de88156861d5808b07c0caec02aeca228cda | 6f092f9dc3e88a6c2216dd7fd2006d77b641a1c6 | /JAERO/sbs1.cpp | 09a3b5be8a1316e565e0a753bbf4a101a88ef83a | [
"MIT"
] | permissive | Flightradar24/JAERO | 51c35bbe4831092fcbb4af88bdc0f47eaba084b0 | ac704a5ec97ba5c6715ef70144791cb234e68a27 | refs/heads/master | 2021-01-11T18:16:52.731365 | 2016-07-15T23:45:24 | 2016-07-15T23:45:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,111 | cpp | #include "sbs1.h"
#include <QDebug>
SBS1::SBS1(QObject *parent)
: QObject(parent)
{
tcpserver=new Tcpserver(this);
tcpclient=new Tcpclient(this);
lastbehaveasclient=false;
}
void SBS1::starttcpconnection(const QHostAddress &address, quint16 port, bool behaveasclient)
{
if(lastbehaveasclient!=b... | [
"jontio@i4free.co.nz"
] | jontio@i4free.co.nz |
e2bf18bf1b3ed9cd49ca5545109fdf73d04ef8ad | cf9ffba402950eec5df684fe66793b95bbec581e | /inventorypage.h | 4b8da3fdf40560c1a39c1f488e90fa5e3ed181b5 | [] | no_license | DanielBCoffaro/Inventory_Tracking_Project | f1c83118f6fce93fb04a7093c7b22e3276d32801 | 0c037da5f5035b525d95a8911f89808e1faaa0b4 | refs/heads/master | 2021-07-25T13:18:14.865363 | 2017-11-06T13:57:04 | 2017-11-06T13:57:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 307 | h | #ifndef INVENTORYPAGE_H
#define INVENTORYPAGE_H
#include <QWidget>
namespace Ui {
class InventoryPage;
}
class InventoryPage : public QWidget
{
Q_OBJECT
public:
explicit InventoryPage(QWidget *parent = 0);
~InventoryPage();
private:
Ui::InventoryPage *ui;
};
#endif // INVENTORYPAGE_H
| [
"33422680+DanielBCoffaro@users.noreply.github.com"
] | 33422680+DanielBCoffaro@users.noreply.github.com |
c117dd63b46257737c314908c6dc722f432ff3de | 9a9f31265c65bec0060271cd337580e7b4f3a7e9 | /qt1/mainwindow.cpp | 642d649d3611b26790073ac3e0dd25ee3c40a430 | [] | no_license | AnatolyDomrachev/1kurs | efaabde4852172b61d3584237611fe19b9faa462 | 84ed0dceb670ec64c958bf1901636a02baf8f533 | refs/heads/master | 2023-02-19T21:42:53.286190 | 2021-01-19T07:41:15 | 2021-01-19T07:41:15 | 292,637,199 | 0 | 1 | null | 2020-09-16T02:29:14 | 2020-09-03T17:32:29 | Python | UTF-8 | C++ | false | false | 305 | cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_pushButton_clicked()
{
ui->listView->setBaseSize(100,100);
}
| [
"you@example.com"
] | you@example.com |
879e50e36059cb8aea21e67899b26a62cb30f520 | fcf3c983043273c4e57ac33330efaa0a9e5643a2 | /inference-engine/include/builders/ie_power_layer.hpp | 94ef1cc9ffb28b8cd63ffb779048c3081ef54bf8 | [
"Apache-2.0"
] | permissive | p3tromyz0n/dldt | e7ab259848c90fdffd1395eaf5cf53ecd2b1e2f3 | 669bee86e580cbbc8ef40b440ab195ba2cbf5142 | refs/heads/2018 | 2020-05-15T13:03:47.748654 | 2019-03-14T10:13:27 | 2019-03-14T10:13:27 | 158,445,061 | 0 | 1 | Apache-2.0 | 2019-04-19T15:24:15 | 2018-11-20T20:07:50 | C++ | UTF-8 | C++ | false | false | 2,097 | hpp | // Copyright (C) 2018 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#pragma once
#include <builders/ie_layer_fragment.hpp>
#include <ie_inetwork.hpp>
#include <string>
namespace InferenceEngine {
namespace Builder {
/**
* @brief The class represents a builder for Power layer
*/
class INFERENCE_ENGIN... | [
"44090433+openvino-pushbot@users.noreply.github.com"
] | 44090433+openvino-pushbot@users.noreply.github.com |
848fded5d00cfeeb1a9c4022379033698007b98b | 43a2fbc77f5cea2487c05c7679a30e15db9a3a50 | /Cpp/Internal/SDK/BP_Lantern_LargeShip_MapDeck_BowRight_classes.h | 01a8a4b95ed53a9bf3300db10588cad125f24e99 | [] | no_license | zH4x/SoT-Insider-SDK | 57e2e05ede34ca1fd90fc5904cf7a79f0259085c | 6bff738a1b701c34656546e333b7e59c98c63ad7 | refs/heads/main | 2023-06-09T23:10:32.929216 | 2021-07-07T01:34:27 | 2021-07-07T01:34:27 | 383,638,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 855 | h | #pragma once
// Name: SoT-Insider, Version: 1.102.2382.0
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//-----------------------------------------------... | [
"Massimo.linker@gmail.com"
] | Massimo.linker@gmail.com |
43977517c1ee43b66fd58817e5005e8d685a6260 | c122dac9033765238471ba0fc3b38a8f534c4090 | /src/core/Camera.cpp | d8ff953f9aa460724621baddc141763387251b44 | [
"MIT"
] | permissive | pixelsquare/atom-engine | 4874879f9fe2cf7d6848222f54f6013b2606c71a | 763ed2446107f4baccb4a652effdd58303852ae4 | refs/heads/master | 2020-03-17T18:44:48.010503 | 2018-06-25T05:45:50 | 2018-06-25T05:45:50 | 133,831,686 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 937 | cpp | /*
* Copyright (C) 2012 PixelSquareLabs - All Rights Reserved
*
* Created: 06/05/2018
* Author: Anthony Ganzon
* Email: pixelsquarelabs@yahoo.com
* pixelsquarelabs@gmail.com
*/
#include "Camera.h"
ATOM_BEGIN
Window atomWindow;
Camera atomCamera;
CameraEditMode editMode;
void atomCameraP... | [
"anthony_0205@yahoo.com"
] | anthony_0205@yahoo.com |
625f7178765a130af8d9a58b2f689c14d9b2f21e | a6c937b5d18ce2aa8a469610499d57c654f062c7 | /src/version.cpp | 1dc4c7fcb3076a673bdcbf46cfff96441242a325 | [
"MIT"
] | permissive | dev-ily/ILoveYouCoins | db5229ff57719c0b4707aad2007262b7441e7d9e | ec6f78fe4e0ed9ba87f48877ddcd4687c1105360 | refs/heads/master | 2021-01-18T18:16:21.460857 | 2015-03-06T17:02:45 | 2015-03-06T17:02:45 | 31,504,160 | 0 | 2 | null | 2015-03-06T17:02:45 | 2015-03-01T17:31:38 | C++ | UTF-8 | C++ | false | false | 2,641 | cpp | // Copyright (c) 2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <string>
#include "version.h"
// Name of client reported in the 'version' message. Report the same name
// for both bitco... | [
"developer@iloveyoucoins.com"
] | developer@iloveyoucoins.com |
f867b3fb93d1329df6e883940817eaa5e7751159 | 2affbde5cd62f9408560ce798c85a8ac6fcf4e6d | /src/compiler/lib/Target/PTX/PTXSubtarget.cpp | ef4060d6f015b75bec6da0277b45cfa4b61ce465 | [
"BSD-2-Clause",
"NCSA"
] | permissive | anshumang/cp-snucl | 9d550255e5c2f368b6d1e9306c0fe0ed2cfbb2b3 | d46883a873e34ddda06bf2548f9474de68736af6 | refs/heads/master | 2016-09-05T17:16:49.761123 | 2014-04-22T21:57:36 | 2014-04-22T21:57:36 | 16,320,542 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,403 | cpp | //===- PTXSubtarget.cpp - PTX Subtarget Information ---------------*- C++ -*-=//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | [
"agoswami@ifrit.cc.gt.atl.ga.us"
] | agoswami@ifrit.cc.gt.atl.ga.us |
01ac8da23a2a57c4ffd7860f90e9a9da03b240af | b88b8e2f7241bd26939f9d623e2a74e0f9707bc9 | /Game.cpp | b1cd7e6cc49e67db15a5f21193140bf8074cb704 | [] | no_license | tilderain/cave-story-recompilation | 3eae6e4bd57905a6196918f3c57467c0a0bdceee | ba8080ce3f8de69fceb14c72e5be8dd99e1d5f0f | refs/heads/master | 2021-04-12T11:59:04.145338 | 2018-03-27T02:55:46 | 2018-03-27T02:55:46 | 126,643,230 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 14,072 | cpp | //#include "types.h"
#include "stdint.h"
#include "SDL_stdinc.h"
#include "SDL_video.h"
#include "Tags.h"
#include "Escape.h"
#include "KeyControl.h"
#include "Game.h"
int _ModeOpening();
int _ModeTitle();
int _ModeAction();
signed int Game();
_UNKNOWN PutNumber4(long,long,long,bool)::C.0;
int Random(int min, int ma... | [
"tilderain@users.noreply.github.com"
] | tilderain@users.noreply.github.com |
f8c27b1e2d3cd48d8c6a9a2c66363f01f4a0c764 | 2b7571694f1ed94a98f4cc49dee35c377030568f | /src/hw4q3.cpp | 840a7489128130cfd0f0bec93c59a60b2fd72b90 | [] | no_license | zhong-a/CCNY-HW4-PQ | 61dc729226a0de6c1321acc92864a85da7670e40 | c03a7740d7243d840fdc2e5b125e91a51dd0a829 | refs/heads/master | 2020-06-10T01:42:30.510482 | 2019-06-28T14:56:20 | 2019-06-28T14:56:20 | 193,547,846 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,032 | cpp | #ifndef __HW4Q3_CPP__
#define __HW4Q3_CPP__
#include "hw4q3.h"
template <class Item>
PriorityQueue<Item>::PriorityQueue() {
capacity = DEF_CAP;
first = 0;
last = 0;
used = 0;
data = new Item[capacity];
}
template <class Item>
PriorityQueue<Item>::PriorityQueue(const PriorityQueue<Item>& source) {... | [
"alan.zhong.51@gmail.com"
] | alan.zhong.51@gmail.com |
1f9a4526409422423d17aed8ac8987ea828a5030 | a7dc9df7ecc9438c96b7a33038a3c70f0ff5bc86 | /jml/neural/twoway_layer.h | 47858d2e9de0fcc0efa9d2fd730e4b7a6a5fd6c1 | [
"LGPL-2.0-or-later",
"AGPL-3.0-only",
"Apache-2.0"
] | permissive | duyet/BGateRTB | ca19a2f23fad6a5063ec4463a3049984ed09ec67 | ea1782f7cd89a15e64cd87a175816ee68aee8934 | refs/heads/master | 2022-07-24T03:45:05.099793 | 2022-07-17T11:20:43 | 2022-07-17T11:20:43 | 37,047,062 | 0 | 0 | Apache-2.0 | 2022-07-17T11:21:09 | 2015-06-08T05:10:18 | C++ | UTF-8 | C++ | false | false | 12,576 | h | /* twoway_layer.h -*- C++ -*-
Jeremy Barnes, 4 November 2009
Copyright (c) 2009 Jeremy Barnes. All rights reserved.
Two way layer, that can generate its data.
*/
#ifndef __jml__neural__twoway_layer_h__
#define __jml__neural__twoway_layer_h__
#include "dense... | [
"root@ubuntu-virtual-machine.(none)"
] | root@ubuntu-virtual-machine.(none) |
e6495253eff01f8097796b090d52bb15c33d7607 | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/printscan/wia/drivers/camera/fsusd_v2/minidrv/iwiaminidrv.cpp | f1b79a572364f7e7a2d4c55c2bb69b28845cdf07 | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 74,586 | cpp | /*******************************************************************************
*
* (C) COPYRIGHT 2001, MICROSOFT CORP.
*
* TITLE: IWiaMiniDrv.cpp
*
* VERSION: 1.0
*
* DATE: 15 Nov, 2000
*
* DESCRIPTION:
* Implementation of the WIA File System Device driver IWiaMiniDrv methods. This ... | [
"seta7D5@protonmail.com"
] | seta7D5@protonmail.com |
43cfc598a5f57db2e17321a161d401470ceb3351 | ee7eed5507e3e98573fa63724e71d222e3cebdb7 | /libraries/Atm_RPL_workers/Atm_encoder_rpl_4_step/Atm_encoder_rpl_4_r1.cpp | 1561b57ca6bd6357112f11e6055156de3e2e81bf | [] | no_license | radiorpl/Arduino | c594484d6760beda5b95d084962d721bad1d1e5e | b0c1e66f3ba970c86c0c64c2a03a08d42ee45520 | refs/heads/master | 2021-09-01T01:28:02.211119 | 2017-12-24T04:43:30 | 2017-12-24T04:43:30 | 114,441,782 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,805 | cpp | #include "Atm_encoder.hpp"
#include <limits.h>
// Loosely based on https://www.circuitsathome.com/mcu/reading-rotary-encoder-on-arduino (Oleg Mazurov)
const char Atm_encoder::enc_states[16] = {0, (char)-1, 1, 0, 1, 0, 0, (char)-1, (char)-1, 0, 0, 1, 0, 1, (char)-1, 0};
Atm_encoder& Atm_encoder::begin( int pin1, int ... | [
"radiorpl@users.noreply.github.com"
] | radiorpl@users.noreply.github.com |
05d30c1b8dc16cb37bd7525ada57fb9cc9fb9b11 | 51c367a48025822ed7eff0ac56e3de4376199f9d | /Source/ProjectOrion/Door.cpp | 72ed951d13c39a8818d6c97fa779ca27498ff64a | [] | no_license | deldarwand/Project-Orion | 51d119e277d78c5975e5852c2f786b9a93855921 | b80d431a0d36182bb9af0dd4e82fb31459db2d0e | refs/heads/master | 2021-05-01T00:30:09.604317 | 2017-04-30T15:11:30 | 2017-04-30T15:11:30 | 72,226,081 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 619 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "ProjectOrion.h"
#include "Door.h"
// Sets default values
ADoor::ADoor()
{
// Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;... | [
"daniel.eldar@gmail.com"
] | daniel.eldar@gmail.com |
5c918ed74319fd40a00b550fdf27a8d10a5909fc | dae9f5aca9418e4b067a283596df6d92dc00b7db | /src/Editor/ObjectProxies/IObjectProxy.h | 3cf63bd01f7e7e52458ecba39a09772c35916332 | [] | no_license | ifschleife/Shoot | 0c5c52a573b331203647fa1146734dc9e318a287 | b3ffe1c700e58bbee50e4cb4e7d37159d64de538 | refs/heads/master | 2021-05-06T05:10:07.074211 | 2017-12-23T17:38:31 | 2017-12-23T17:38:31 | 115,051,427 | 0 | 0 | null | 2017-12-21T22:09:06 | 2017-12-21T22:09:05 | null | UTF-8 | C++ | false | false | 979 | h |
#pragma once
#include "MonoPtrFwd.h"
#include "Math/MathFwd.h"
#include <vector>
struct ID_Attribute;
namespace editor
{
class IObjectProxy
{
public:
virtual ~IObjectProxy()
{ }
virtual const char* Name() const = 0;
virtual unsigned int Id() const = 0;
virtual m... | [
"niklas.damberg@gmail.com"
] | niklas.damberg@gmail.com |
899a2063f7497dd4ce9dcebd076bb274a896f20c | 1a2190b96ca17719d2b41a5fbcac6043cf9f08e4 | /SPOJ/FLIB.cpp | f55e3b6a4b1a4383f1734820e0c131c6e25e23fc | [] | no_license | eliasm2/problem-solving | 13c1abbf397bb41683fccb3490b0113c36ce9010 | 15becf49315b5defb8c1267e0c43ce1579dcae1a | refs/heads/master | 2020-09-07T07:12:17.112311 | 2018-07-20T17:27:43 | 2018-07-20T17:27:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,530 | cpp | #include <map>
#include <set>
#include <list>
#include <stack>
#include <cmath>
#include <queue>
#include <ctime>
#include <cfloat>
#include <vector>
#include <string>
#include <cstdio>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <cassert>
#include <iomanip>
#include <sstream>
#include <... | [
"paulocezar.ufg@gmail.com"
] | paulocezar.ufg@gmail.com |
08d244ae6c4a90e80d200c7732f291234b0f6e4c | 9ae8579edf450db8d8c5470275f32a468cb3f48d | /fr025remix/ChronoClock.cpp | 56b28ce34c369cc5242d57ebe1996a33fae9cd3a | [
"MIT"
] | permissive | natiiix/demo_fr025remix | 17fd15daf6ae66db35a93919857905c57c5193ac | 1b8ebcd6f5f30a7031e185beaddeacbb555657c4 | refs/heads/master | 2021-01-22T05:43:37.527439 | 2017-02-15T13:51:42 | 2017-02-15T13:51:42 | 81,697,211 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 834 | cpp | #include "ChronoClock.hpp"
double ChronoClock::getDeltaTime(void)
{
double deltaTime = 0;
// Get current time
std::chrono::time_point<std::chrono::steady_clock> nowTime = std::chrono::steady_clock::now();
if (m_prevLoop.time_since_epoch().count() > 0)
{
// Get the time delta since the last iteration
deltaTim... | [
"ivo.meixner@se7en.cz"
] | ivo.meixner@se7en.cz |
1363d35fc788247841604d2903d2a95d3ba62db5 | 7f36637deabdbcda00af7ce5122c806694523dfc | /systemserver/expsys.cpp | c602676b8f7d0092a591c5f1c94c9077dcd3fec1 | [] | no_license | Android-leak/PoCForCVE-2015-1528 | da3e887e8735c26a1d7a48ca7dc436dcfd66556b | 4fb63c413f213e01c04844a551e4141cc38833bb | refs/heads/master | 2020-12-30T18:16:10.788622 | 2015-08-28T01:30:00 | 2015-08-28T01:30:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,951 | cpp | #define private public
#define protected public
#include <binder/Binder.h>
#include <binder/IBinder.h>
#include <binder/IServiceManager.h>
#include <binder/Parcel.h>
#include <binder/ProcessState.h>
#include <binder/TextOutput.h>
#include <binder/IPCThreadState.h>
#include <cutils/ashmem.h>
#include <fcntl.h>
#include ... | [
"my-name@chromium.org"
] | my-name@chromium.org |
4ef2141a3684a1410ec2805855b8861215b77aa2 | b48cc66bf4f5a173338e42ba02245da043e71ce7 | /LuoguCodes/P1120.cpp | bc7b730ab8fb55d423bb3a313c7054623af34c6b | [
"MIT"
] | permissive | Anguei/OI-Codes | 6f79f5c446e87b13c6bffe3cc758c722e8d0d65c | 0ef271e9af0619d4c236e314cd6d8708d356536a | refs/heads/master | 2020-04-22T22:18:14.531234 | 2019-02-14T14:24:36 | 2019-02-14T14:24:36 | 170,703,285 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,582 | cpp | // luogu-judger-enable-o2
// luogu-judger-enable-o2
#include <cmath>
#include <cctype>
#include <cstdio>
#include <cstring>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <string>
#include <vector>
#include <numeric>
#include <iomanip>
#include <iostream>
#include <algorithm>
#include <functio... | [
"Anguei@users.noreply.github.com"
] | Anguei@users.noreply.github.com |
d49e3236016b35b68beaf5589e86af980da622c4 | 9e7340a93ad1234ba3eea64871f46b9cb09682a1 | /task1/SRC/task1.cpp | 0dddd394fdf192d5441c7d36c23af358cdc95d6e | [] | no_license | JohnysVn/NewRepo | aea5a1678f000d17e1a052205daecba220283216 | 23acaf29524a93eb3561852c27b050a05cc5d473 | refs/heads/master | 2023-01-24T01:47:01.878366 | 2023-01-20T19:40:27 | 2023-01-20T19:40:27 | 249,046,981 | 0 | 0 | null | 2023-01-20T20:18:34 | 2020-03-21T19:34:18 | C++ | UTF-8 | C++ | false | false | 1,182 | cpp | #include <iostream>
#include <fstream>
#include <string>
using namespace std;
class File
{
private:
int size = 100;
public:
void Take(string path)
{
int finish = 0;
int prec = 0;
int a = 0;
int result;
int sum = 0;
float max = 0;
int* p_arr = new int [size] {};
ifstream fin;
fin.open(path);
... | [
"teslaseven91@gmail.com"
] | teslaseven91@gmail.com |
073dddf8282c168a00271fa55bb73f7fbf33d0ad | 52507f7928ba44b7266eddf0f1a9bf6fae7322a4 | /SDK/BP_Longsword_AdamantHandle_classes.h | 0682eb621714f3f7c8cb1407af59b9d86598bd02 | [] | no_license | LuaFan2/mordhau-sdk | 7268c9c65745b7af511429cfd3bf16aa109bc20c | ab10ad70bc80512e51a0319c2f9b5effddd47249 | refs/heads/master | 2022-11-30T08:14:30.825803 | 2020-08-13T16:31:27 | 2020-08-13T16:31:27 | 287,329,560 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,082 | h | #pragma once
// Name: Mordhau, Version: 1.0.0
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
// Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass BP_Longsword... | [
"51294434+LuaFan2@users.noreply.github.com"
] | 51294434+LuaFan2@users.noreply.github.com |
10f5b949db899637be1e4abd9d51f68cc129c451 | 63c97099562efeba79a27bc005cef6b3c08fbe96 | /shared/string.h | f183f311cda1cb346bf1c3c7047be6f55b7bdf03 | [] | no_license | CaptainSeagull/Screenshotter---public | e5e8a68919616c9e73d477b2683dd7790957340b | ad16bd1cdb6926572c933c78d5db45100c413b6c | refs/heads/master | 2023-07-17T23:26:44.365967 | 2021-08-28T13:19:14 | 2021-08-28T13:19:14 | 400,792,353 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,263 | h | /* string.h - v0.3 - public domain helper library - no warranty implied; use at your own risk
Utility for working with strings in C++.
Note that this class does NO ALLOCATIONS. It expects calling code to deal with mallocing/freeing of the memory.
Makes sense in my projects... your milage may vary...
... | [
"jonathanglivingstone@gmail.com"
] | jonathanglivingstone@gmail.com |
df6cf665ca7ca727fc4e1da02fb868757dc8d554 | f8a10ae5af93c4bfc78e4d5e1d8446625b927e1e | /src/appleseed/renderer/modeling/environmentedf/gradientenvironmentedf.h | 9c8e0a0805a7eb8b955efaf741fa51a04d279756 | [
"MIT"
] | permissive | dfinner1/appleseed | 3fc92babae335a6976baea931361070a7b724932 | 23463d620e29d97fdbc876e7f110b0704052d890 | refs/heads/master | 2021-01-15T09:41:32.918760 | 2014-11-04T08:11:31 | 2014-11-04T08:19:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,915 | h |
//
// This source file is part of appleseed.
// Visit http://appleseedhq.net/ for additional information and resources.
//
// This software is released under the MIT license.
//
// Copyright (c) 2010-2013 Francois Beaune, Jupiter Jazz Limited
// Copyright (c) 2014 Francois Beaune, The appleseedhq Organization
//
// Pe... | [
"beaune@aist.enst.fr"
] | beaune@aist.enst.fr |
ed9ae7d788ed5e33f021044ccdb3bf19bd100f71 | 9d851f5315bce6e24c8adcf6d2d2b834f288d2b2 | /chipyard/tools/chisel3/test_run_dir/UInt2Bundle/2020030621340713384014981222160668/VUInt2Bundle.cpp | 5418793b858221eb69242f164e88a9d173b5d548 | [
"BSD-3-Clause"
] | permissive | ajis01/systolicMM | b9830b4b00cb7f68d49fb039a5a53c04dcaf3e60 | d444d0b8cae525501911e8d3c8ad76dac7fb445c | refs/heads/master | 2021-08-17T22:54:34.204694 | 2020-03-18T03:31:59 | 2020-03-18T03:31:59 | 247,648,431 | 0 | 1 | null | 2021-03-29T22:26:24 | 2020-03-16T08:27:34 | C++ | UTF-8 | C++ | false | false | 6,059 | cpp | // Verilated -*- C++ -*-
// DESCRIPTION: Verilator output: Design implementation internals
// See VUInt2Bundle.h for the primary calling header
#include "VUInt2Bundle.h" // For This
#include "VUInt2Bundle__Syms.h"
//--------------------
// STATIC VARIABLES
//--------------------
VL_CTOR_IMP(VUInt2Bundle) {
... | [
"ajithkumar.sreekumar94@gmail.com"
] | ajithkumar.sreekumar94@gmail.com |
5f569de7bf52410f9587ca58e282c0501a38df6d | 4afc6182476e8e381ea0913f7b1205edf384a029 | /.build/iOS-Debug/include/app/Fuse.Input.PointerEntered.h | b166cc0b1c52b3b9b5dbfe35b330f967539c9ba1 | [] | no_license | noircynical/soscon_demoproject | 45a4b5594582447001c2895e24cf2e6566095a63 | aab19822fb8bc46715e6b41ac785faf7a128d9e7 | refs/heads/master | 2021-01-10T05:41:33.994651 | 2015-10-28T04:27:43 | 2015-10-28T04:27:43 | 45,085,497 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,152 | h | // This file was generated based on '/usr/local/share/uno/Packages/FuseCore/0.11.3/Input/$.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#ifndef __APP_FUSE_INPUT_POINTER_ENTERED_H__
#define __APP_FUSE_INPUT_POINTER_ENTERED_H__
#include <app/Fuse.NodeEvent__Fuse_Input_PointerEnteredHandler__F... | [
"0101rgb@gmail.com"
] | 0101rgb@gmail.com |
12ac15c7340340aa93a9ddaf8be6d4c138536e88 | d1393e08ff5d50b3cc583509c3b55d74224fd659 | /Chapter-1/Ex_1.13.cpp | 9f0f54a155d230524e1d62193ab1950d5d5a9b11 | [] | no_license | atiwari3bu/CPP-Primer-Ed5-Sols | 937e8488daae0d41d559c67bd568421033c94d9b | 08a7a243b070818b5c65200067cdf83f37431eb1 | refs/heads/master | 2020-03-17T20:07:19.234032 | 2018-09-23T00:32:58 | 2018-09-23T00:32:58 | 133,894,025 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 220 | cpp | #include<iostream>
int main(){
int sum=0;
for(int i=50;i<=100;++i){
sum+=i;
}
std::cout<<"The sum of fifty numbers is "<<sum<<std::endl;
for(int i=10;i>=0;--i)
std::cout<<i<<std::endl;
return 0;
}
| [
"atiwari3@binghamton.edu"
] | atiwari3@binghamton.edu |
06efe8f2794554e3e8c7936d442ec1c13864d5d7 | 7d7efaf156c201ee742b51b0d7b6122abd3236d2 | /math_util.h | f8d5afbb1eff61c75ecc57fafe271672a7aba1d7 | [] | no_license | jrobble/kalman-filter | efbc711e10f70670e6228203c07e6b2153b9ff93 | ef698b665f68af0b73cdb040db3eb5222b8d8b83 | refs/heads/master | 2021-01-19T17:13:31.442565 | 2009-05-14T09:59:08 | 2009-05-14T09:59:08 | 32,262,597 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,431 | h | #ifndef MATH_UTIL_H
#define MATH_UTIL_H
// limits library not fully implemented in Open Watcom, so use Visual C++ 2008 compiler
#include <limits>
#include <iostream>
// Visual C++ 2008 compiler has no pow(int,int) implementation
int pow(int a, int p) {
return (int)(pow((double)a,p));
}
// el... | [
"fejjro@802d17c2-23ed-11de-bf1e-7b5f7763e386"
] | fejjro@802d17c2-23ed-11de-bf1e-7b5f7763e386 |
6dcb2d13c9183f3324d00cee719828601aea1655 | 0aa76b60b43fcef208c372fd72900936b39266ea | /mainwindow.h | eb660bd9be2caebc0b8a538d00dc079974964954 | [] | no_license | jac132/custom-tcp-passthrough | 2351114e1d64e31ea9ffa236cf3020b1af07f576 | 71db08f86b8a7e53782ef397cebb41c7259943f8 | refs/heads/master | 2021-01-10T10:27:04.990783 | 2012-11-05T19:46:56 | 2012-11-05T19:46:56 | 51,627,377 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,285 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QTcpSocket>
#include <QTcpServer>
#include <QUrl>
#include <QDesktopServices>
#include <QProcess>
#include <QFile>
#include <QDate>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
... | [
"asisit@hotmail.com"
] | asisit@hotmail.com |
699cb7e7214ed9478b5cdf9c3fd01ac9bd7ea82d | 9f16e770a378a23c987a2c8466f85d4a5057a2c5 | /flow-code/color_flow.cpp | d733f16a5e701491f5682d09af5ac84e1db0c050 | [] | no_license | fedorenkovv/Hercules | 1dc1985f9e3e12f5e772eacd9973aad1ff5b491b | 8402b2c662f4509db5edeef2626a35f803b05b43 | refs/heads/master | 2021-04-29T21:06:38.615054 | 2018-02-15T09:42:39 | 2018-02-15T09:42:39 | 121,609,625 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,697 | cpp | // color_flow.cpp
// color-code motion field
// normalizes based on specified value, or on maximum motion present otherwise
// DS 2/9/08 fixed bug in MotionToColor concerning reallocation of colim (thanks Yunpeng!)
static const char *usage = "\n usage: %s [-quiet] in.flo out.png [maxmotion]\n";
#include <stdio.h>
... | [
"fedorenko32@mail.ru"
] | fedorenko32@mail.ru |
1cfbb0a11ea47a76572f4616b3906e14466b7b91 | 826e893ba9d21bb280aa9fb21b92bb3c824ebe97 | /source/Class_Log.cpp | bae7a657755355f6ce66cb42d88177661f68236c | [] | no_license | Maherkhadraoui8/Project_Logger_F | e58cb348c065b9cda28f8006bd73799339a52c10 | ad97a813ad625f186e4db268dfa5c1371ea857dd | refs/heads/master | 2021-01-19T07:10:03.897023 | 2017-05-03T10:59:57 | 2017-05-03T10:59:57 | 87,528,218 | 1 | 0 | null | 2017-04-11T08:39:43 | 2017-04-07T09:17:50 | C++ | UTF-8 | C++ | false | false | 487 | cpp |
// Implementation of the Log class's methods
#include <iostream>
#include <string>
#include "../headers/Class_Log.hpp"
using namespace std;
//Implementation of the Error method
void Log::Error() {
cout << "\033[1;31m ERROR \033[0m\n ";
}
//Implementation of the Warning method
void Log::Warning() {
co... | [
"maher.khadraoui.ei@gmail.com"
] | maher.khadraoui.ei@gmail.com |
444faa3bc4bc99634a83cb7cf8d100f7b1e11ebf | cae7764fbdbe55b0779dbc0432767013a613c13a | /450_sheet/c++/set2.cpp | 0043a36c410d9acd42f01eb79a3e7b231312b692 | [] | no_license | pmSaurabhp/My_files | 76d944d3448d6523660eb090b4b6e9cd317b03e9 | 51a7ec94e8bb445be1992b9015d7bfd21c659f6a | refs/heads/master | 2023-06-21T15:35:46.058145 | 2021-07-26T11:34:14 | 2021-07-26T11:34:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,306 | cpp | // set_union & set_intersection
#include <algorithm> // std::set_union , set_intersection , std::sort
#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector<int> first{ 5, 10, 15, 20, 25 };
vector<int> second{ 50, 40, 30, 20, 10 };
// Print first array
cout << "First array contains :... | [
"saurabh.sks.2997@gmail.com"
] | saurabh.sks.2997@gmail.com |
0ae59b4e00f3eba10a1086c1c24edab0aca466a1 | fca68c5fec6df6f999408571315c2b8e7c4b8ce9 | /service/navtrack_home/src/Navigation/Instantiate/T_LatticeHelixFitDRHit.cc | 21fa1c7c7aeaf2fce7fca487c51c02536e8f22e3 | [] | no_license | jpivarski-talks/1999-2006_gradschool-3 | 8b2ea0b6babef104b0281c069994fc9894a05b14 | 57e80d601c0519f9e01a07ecb53d367846e8306e | refs/heads/master | 2022-11-19T12:01:42.959599 | 2020-07-25T01:19:59 | 2020-07-25T01:19:59 | 282,235,559 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,409 | cc | // -*- C++ -*-
//
// Package: Navigation
// Module: T_LatticeHelixFitDRHit
//
// Description: Instantiate Lattice
//
// Implementation:
//
// Author: Michael Marsh
// Created: Tue Dec 15 10:06 EST 1998
//
// $Id: T_LatticeHelixFitDRHit.cc,v 1.2 1999/06/09 19:08:13 marsh Exp $
//
// $Log: T_LatticeHel... | [
"jpivarski@gmail.com"
] | jpivarski@gmail.com |
3864bca5a4cf26725bfac183fa0fbef0045322d0 | b5c617372f9c3de08f2fadc234c9f4955577fd37 | /raspberry/tools/arm-bcm2708/arm-bcm2708-linux-gnueabi/arm-bcm2708-linux-gnueabi/include/c++/4.7.1/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp | 2d09e60ee0ee4d3f3773de33e749fc7608f62911 | [] | no_license | zhouswei/myrep | 43164ae5f480db9d92d0be7d0691eaf0cef2703e | 5394e2162715adf46dcf0e17a177f9ae16f0b17c | refs/heads/master | 2022-12-25T06:56:31.720855 | 2020-05-13T02:54:40 | 2020-05-13T02:54:40 | 34,447,551 | 0 | 0 | null | 2022-12-11T05:46:09 | 2015-04-23T09:42:57 | C | UTF-8 | C++ | false | false | 2,448 | hpp | // -*- C++ -*-
// Copyright (C) 2005, 2006, 2009, 2010 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License as published by the Free Software
// Foundati... | [
"zhou19840902@gmail.com"
] | zhou19840902@gmail.com |
42550613cc1270bba88b4605a2affc086957b875 | f545b849fa162f7e437eb9fd9e3958f6b81d3ddb | /BOJ/q22115.cpp | db6763ea7123fff880d32a3c0f1d88888f7d0d9d | [] | no_license | lkw1120/problem-solving | 216fb135f1b314a10faf5e5c06d1ca03d638e935 | 9887ed81ce0958a9a9b7d80d754d14217e4df25a | refs/heads/master | 2023-08-20T15:32:35.739832 | 2023-08-19T17:04:23 | 2023-08-19T17:04:23 | 172,870,054 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 517 | cpp | #include<bits/stdc++.h>
using namespace std;
int dp[100001] = {0};
int N,K,C,ans;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin>>N>>K;
ans = 0;
if(0 < K) {
while(N--) {
cin>>C;
for(int i=K;i>=0;i--) {
if(dp[i] || i == 0) {... | [
"lkwkang@gmail.com"
] | lkwkang@gmail.com |
be9fb7a8021f126b22f2f5b517baedb598aadc66 | d61d05748a59a1a73bbf3c39dd2c1a52d649d6e3 | /chromium/gpu/command_buffer/client/gles2_interface_stub.h | 589a79cb17a7b46535a02a071744b6f6ce2218a2 | [
"BSD-3-Clause"
] | permissive | Csineneo/Vivaldi | 4eaad20fc0ff306ca60b400cd5fad930a9082087 | d92465f71fb8e4345e27bd889532339204b26f1e | refs/heads/master | 2022-11-23T17:11:50.714160 | 2019-05-25T11:45:11 | 2019-05-25T11:45:11 | 144,489,531 | 5 | 4 | BSD-3-Clause | 2022-11-04T05:55:33 | 2018-08-12T18:04:37 | null | UTF-8 | C++ | false | false | 973 | h | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_H_
#define GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_H_
#include "gpu/command_buffer/clie... | [
"csineneo@gmail.com"
] | csineneo@gmail.com |
3ad1b389de2548bdbb1ff04d5d310af9b4e6d526 | 98410335456794507c518e361c1c52b6a13b0b39 | /sprayMASCOTTELAM2/0.49/O2 | 340836454461310bde952893647fb8ac87ee1acb | [] | no_license | Sebvi26/MASCOTTE | d3d817563f09310dfc8c891d11b351ec761904f3 | 80241928adec6bcaad85dca1f2159f6591483986 | refs/heads/master | 2022-10-21T03:19:24.725958 | 2020-06-14T21:19:38 | 2020-06-14T21:19:38 | 270,176,043 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,393 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 4.0 |
... | [
"sebastianvi26@gmail.com"
] | sebastianvi26@gmail.com | |
bf106449116be2549f2e2da31f5f88fb5ef80110 | 2bf8c2c118b0373e504f751f2e193f706c716997 | /src/alloy/hir/hir_builder.h | 542b1e7aea98a3d12d7cbc9bb0adbf6677227dd4 | [] | no_license | 1nstant/xenia | 1d3dd06016eb7b02db48f8869ab8c5439a08bc34 | e5e490ca9bcd20e7714bfb40e6be8bde80697353 | refs/heads/master | 2021-01-18T11:28:52.746497 | 2014-02-02T19:25:00 | 2014-02-02T19:25:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,214 | h | /**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2013 Ben Vanik. All rights reserved. ... | [
"ben.vanik@gmail.com"
] | ben.vanik@gmail.com |
255f8254fd4441bd9c302b70450e076d7f1c98f5 | 131f8d8dde9c13053b1a790e6b13833eaad2e6f0 | /services/se_standard/src/pkcs15/dir.cpp | d49a85472d7727a95ab15387fad5ec2c0357f0f4 | [
"Apache-2.0"
] | permissive | dawmlight/communication_nfc | 3d9d03ef1111bf7ef1c1f71eb6be57a2dbdb1318 | 84a10d69eb9cb3128e864230c53d5a5e6660dfb9 | refs/heads/master | 2023-08-05T07:03:13.917704 | 2021-09-11T11:39:55 | 2021-09-11T11:39:55 | 406,237,098 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,165 | cpp | /*
* Copyright (C) 2021 Huawei Device Co., Ltd.
* 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 ... | [
"liujiawei11@huawei.com"
] | liujiawei11@huawei.com |
d0ce091389210ce1f03f5fb9e9885037377cb050 | 8069670fdc2b065fb2d34b678e3c18babda04fe5 | /include/InterfaceArrivalEventHandler.h | e7cf6692ef2a3bfae5ee02da6c7ca9719b635964 | [] | no_license | kimberashman/camera-sdk | fcf5106e93b826ca60146519f66892495b3bef7f | ea020d885e149ff291b52de053de6443ffcbc111 | refs/heads/main | 2023-07-22T22:36:01.984052 | 2021-08-27T02:13:02 | 2021-08-27T02:13:02 | 399,512,125 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,415 | h | //=============================================================================
// Copyright (c) 2001-2021 FLIR Systems, Inc. All Rights Reserved.
//
// This software is the confidential and proprietary information of FLIR
// Integrated Imaging Solutions, Inc. ("Confidential Information"). You
// shall not disclose suc... | [
"kashman@tulane.edu"
] | kashman@tulane.edu |
fd6e2d90340d0c36d47c4675b4bbbde32912f351 | c76adc973e5251452e1beb3de7776d0a2b709fce | /submissions/c2.s207.ncu100502001.ProblemB.cpp.0.100502001.cpp | 3ed71da1691964051c410c8420d769a388f1bc44 | [] | no_license | ncuoolab/domjudge | 779a167f695f45a6a33437996ec5ad0f9d01c563 | bda18c69d418c829ff653f9183b3244520139f8a | refs/heads/master | 2020-05-19T08:10:39.974107 | 2015-03-10T19:35:03 | 2015-03-10T19:43:26 | 31,972,137 | 0 | 0 | null | null | null | null | BIG5 | C++ | false | false | 4,184 | cpp | #include<cstdlib>
#include<iostream>
#include<string>
#include<string.h>
using namespace std;
string result="";//output message
string RE_strdcl(char temp){
string msg;
string s_temp(1,temp);//字元轉字串輸出
int num=temp-'a';
if(num==18){//strdcl : s
msg="strdcl "+s_temp+"\n";
}
el... | [
"fntsrlike@gmail.com"
] | fntsrlike@gmail.com |
ee2fe302d7da180f4ab1ad538ed10510960aa539 | 6b3fd21d8ad577c1e50e624c33ef44394da63657 | /src/FaceRecognizer.h | 55404b7ffce4905c7e15768c996affe5efb59262 | [
"MIT"
] | permissive | piglovesyou/node-opencv | c183610118b43e5c9512faa36474af4acdf9076e | 05e42b70aa498cbae94713da1df31084090a2088 | refs/heads/master | 2023-04-06T17:57:48.616962 | 2014-06-30T09:35:50 | 2014-06-30T09:35:50 | 22,140,782 | 0 | 0 | MIT | 2023-04-04T00:28:40 | 2014-07-23T09:51:50 | null | UTF-8 | C++ | false | false | 833 | h | #include "OpenCV.h"
#if CV_MAJOR_VERSION >= 2 && CV_MINOR_VERSION >=4
#include "opencv2/contrib/contrib.hpp"
class FaceRecognizerWrap: public node::ObjectWrap {
public:
cv::Ptr<cv::FaceRecognizer> rec;
int typ;
static Persistent<FunctionTemplate> constructor;
static void Init(Handle<Object> target... | [
"peterbraden@peterbraden.co.uk"
] | peterbraden@peterbraden.co.uk |
4fd0aa38d46bae0e858bd36a27c05d5632717cbe | 14e4dd8fe43934342091bcb807b60925ff7f2765 | /src/controller/GameManager.hpp | 84eb678ed298da7541d0ab0039488dbbd9ee3bef | [] | no_license | michael-pruglo/PongSDL2 | f17cfc72f2bd8f78cc9f8881b4ddfe64922acd6c | 0cee31f18eae734944546320bbb41ec6d98a686c | refs/heads/master | 2022-10-28T05:47:15.142925 | 2020-06-19T08:38:27 | 2020-06-19T08:38:27 | 271,798,941 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 598 | hpp | #ifndef PONG_GAMEMANAGER_HPP
#define PONG_GAMEMANAGER_HPP
#include <memory>
#include "../view/GameWindow.hpp"
#include "IGame.hpp"
class GameManager
{
public:
void run();
private:
void processFrame();
IGame* game;
GameWindow mainWindow;
//class GameManager is a singleton
private:
static st... | [
"michael.pruglo.work@gmail.com"
] | michael.pruglo.work@gmail.com |
7c3234a00df82dfae25a94c8119ba8f045b1b11c | 867ff072cd09004cc4320f498bb0dab931fd250d | /deps/chakrashim/core/lib/wabt/src/interpreter.cc | 29a6ee5353c86a2b3b6aec5294b6f05995daf9d3 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"LicenseRef-scancode-unicode",
"ICU",
"LicenseRef-scancode-openssl",
"NAIST-2003",
"ISC",
"Zlib",
"LicenseRef-scancode-public-domain",
"NTP",
"BSD-2-Clause",
"Artistic-2.0",
"Apache-2.0"
] | permissive | enricogior/nodejs-mobile | 8d281f5f1e4de729d63b75c57e3c53f141e83e89 | 3af940ed9828221faa3fcf3acba8bcece1bed6d2 | refs/heads/mobile-master | 2021-07-07T11:44:33.679838 | 2017-10-02T21:28:48 | 2017-10-02T21:28:48 | 105,641,188 | 0 | 1 | null | 2017-10-03T10:53:23 | 2017-10-03T10:53:23 | null | UTF-8 | C++ | false | false | 76,316 | cc | /*
* Copyright 2016 WebAssembly Community Group participants
*
* 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... | [
"kfarnung@microsoft.com"
] | kfarnung@microsoft.com |
e90d03bc89a55b855138056ab3aeac2f46d9f31c | eca262d076c873069d536011970d5a85d6a59405 | /gui/sample-vpDisplayGTK-2.cpp | 14f45e4247c00c56e0038210d80d1e883d05858b | [] | no_license | lagadic/visp_sample | b2ed331f4a3e97f42e30eaf2677f10d06090f80e | 021d1c2435c38491407b687f35ba3c8858a77019 | refs/heads/master | 2023-07-10T05:17:07.106467 | 2023-07-01T06:31:55 | 2023-07-01T06:31:55 | 238,434,368 | 2 | 2 | null | 2023-07-01T06:45:22 | 2020-02-05T11:28:26 | C++ | UTF-8 | C++ | false | false | 934 | cpp | #include <visp3/io/vpImageIo.h>
#include <visp3/gui/vpDisplayGTK.h>
int main()
{
#ifdef VISP_HAVE_GTK
vpImage<unsigned char> I(240, 320); // Create a black grey level image
vpImage<vpRGBa> Ioverlay;
vpDisplayGTK d;
// Initialize the display with the image I. Display and image are
// now link together.
d.... | [
"Fabien.Spindler@inria.fr"
] | Fabien.Spindler@inria.fr |
7a83060df2f597c7e79514fe372ebec155d4b9e3 | 1adbd2b461e014e49184334e9a7c78d2aeb08641 | /tools/shadowmaker/src/operationarea.cpp | 0f6f3bd73d27e1a62322b7947bb106d330d2b07f | [] | no_license | zhangshunqiu/mir2x | 0aae819750e663376fc7dea2b835cba9af7212bd | 69678adc6482e093ea0c3179d8d3b0f4e98a745f | refs/heads/master | 2021-05-09T22:38:02.398195 | 2017-12-20T23:14:31 | 2017-12-20T23:14:31 | 118,757,690 | 0 | 1 | null | 2018-01-24T11:42:46 | 2018-01-24T11:42:46 | null | UTF-8 | C++ | false | false | 3,365 | cpp | #include "operationarea.hpp"
#include "animationset.hpp"
#include "mainwindow.hpp"
#include <FL/Fl.H>
#include <algorithm>
#include <FL/fl_draw.H>
OperationArea::OperationArea(int x, int y, int w, int h, const char *label)
: Fl_Box(x, y, w, h, label)
{}
OperationArea::OperationArea(int x, int y, int w, int h)
... | [
"anhong@deb8200"
] | anhong@deb8200 |
088b243f40555d0c03937497c06a527a1922caaa | d0b736aa0897610c333a24b4201f298683737b67 | /llvm/lib/Target/MOS/MOS.h | 0cbf86d5ac247367a3a9e2ab27be1f42f7d4f715 | [
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | ncatelli/llvm-mos | 3dadd93cf15327fdd216252c2b34df748abb3343 | 7f7b7befb5a6f358473b6119c6ad99881d85f07b | refs/heads/main | 2023-05-08T12:22:23.845848 | 2021-06-02T23:05:11 | 2021-06-02T23:05:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 970 | h | //===-- MOS.h - Top-level interface for MOS representation ------*- C++ -*-===//
//
// Part of LLVM-MOS, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===-----------------------------------... | [
"mysterymath@gmail.com"
] | mysterymath@gmail.com |
7f9caca0470a4db78df2a4d963b24b5c81d34e2b | 79e987c3099ae422496e6b3a22f6862f90686536 | /core/CScriptEng/doCallContext.cpp | 396e8d2b8bbb2afe80935d7ef7a5656f48681a8b | [] | no_license | hackerlank/CScript | 571d59db5a6e3d968a0dc9634ff51f35485ce1c9 | adac0cf6fa83364b45d64d46d4256c0069f80de0 | refs/heads/master | 2020-06-12T19:08:58.564572 | 2016-10-30T12:17:23 | 2016-10-30T12:17:23 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 14,221 | cpp | #include "stdafx.h"
#include "vm.h"
#include "CScriptEng.h"
#include "arrayType.h"
using namespace runtime;
#define THROW_EXECEPTION(type, expinfo) \
do { throw std::exception(); } while (0)
int runtimeContext::SetParamCount(uint16_t paramCount)
{
mParamCount = paramCount;
return 0;
}
uint32_t runtimeContext::Ge... | [
"mz02005@qq.com"
] | mz02005@qq.com |
d8c8a3a0581d800cc9e24590d4bccc3d29d36dd7 | 5456502f97627278cbd6e16d002d50f1de3da7bb | /remoting/signaling/push_notification_subscriber_unittest.cc | 7f70f8b889d4fb9a17243c2aa6a662ee712d7fe2 | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,171 | cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/signaling/push_notification_subscriber.h"
#include "remoting/signaling/mock_signal_strategy.h"
#include "testing/gmock/include/... | [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.