blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9b4c0274d6a2516abc2d18b9e79aadf84d0d0594 | db3b085d00c89ed16bd9e78e132c4558848e6866 | /659_Split_Array_into_Consecutive_Subsequences.cpp | 99b30ca09ead495f89395e758950eca1e04ddb2d | [] | no_license | zkxshg/Test_of_LeetCode | 23e4bcd814499c26940659614607f0782c764b09 | 8a3c2d43ed0b5815c5fb2d2bb4d59e586aae9dba | refs/heads/master | 2023-08-22T16:08:04.801856 | 2023-08-09T22:43:56 | 2023-08-09T22:43:56 | 230,379,638 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,812 | cpp | // https://leetcode.com/problems/split-array-into-consecutive-subsequences/
// RLE + Heap + DP
class Solution {
public:
bool isPossible(vector<int>& nums) {
int n = nums.size();
// RLE coding
vector<pair<int, int> > RLE; RLE.push_back({nums[0], 1});
for (int i = 1; i < n; i... | [
"zkxshg@126.com"
] | zkxshg@126.com |
54944cb21349501cb6fd10c966902c5a7f615feb | 2593fd19ae08e43c2891774bdf46a2aa28649e05 | /src/gui/f_gui_enums.hpp | 146c35ea011a0d7f6a86174379c0f9d9e39dd6e7 | [
"MIT"
] | permissive | Frozen-Team/3FEngine | 58fbf6a92e741dd24bd23e4128e49a0eb62d0326 | f0b7002a1e5912b8f49377570b226b22eec662cf | refs/heads/master | 2020-12-28T23:46:42.938043 | 2015-11-25T23:02:57 | 2015-11-25T23:02:57 | 43,645,038 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 820 | hpp | #ifndef _3FENGINE_SRC_GUI_F_GUI_ENUMS_HPP_
#define _3FENGINE_SRC_GUI_F_GUI_ENUMS_HPP_
#include <utils/f_flags.hpp>
namespace fengine
{
namespace fgui
{
enum WindowFlag
{
kWindowFullscreen = 0x00000001,
kWindowOpenGl = 0x00000002,
kWindowShown = 0x00000004,
kWindowHidden = 0x00000008,
kWindowBo... | [
"maxymhammer@yandex.ru"
] | maxymhammer@yandex.ru |
1c29ce90dba5abca9fbc48ee9347194733917c67 | 660f25caf939daf0de0cbdb28c40f493b9894c25 | /Coursework option 18 year2term2/Assignment.h | 084c643492dea011faff72b562259e5f42cec4cc | [] | no_license | keptt/Uni | 0bb270632a8dd3e980632397d21b87ce11093fa5 | 20555abb5ccb68160c2ce147978dc297ce3dea97 | refs/heads/master | 2020-04-09T04:41:42.263994 | 2019-06-16T10:43:55 | 2019-06-16T10:43:55 | 160,032,523 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,709 | h | #pragma once
#include <string>
#include <iostream>
enum eStatus : short
{
inprogress = 0, done
};
enum ePriority :short
{
low = 1, medium, high, urgent
};
class Assignment
{
protected:
std::string m_name;
size_t m_id;
eStatus m_status;
std::string m_start_date;
std::string m_deadline;
std::string m_descripti... | [
"blackoutxray@gmail.com"
] | blackoutxray@gmail.com |
1b3a1bc7e3ba1c72aed1764b674fa2ea0d4fae7a | 27a9208e100540c0f019a7b7dc39129796fef651 | /SpaceSim/NodeGraph/GraphNodeDefinition.h | 174a89f7f8dc625620980b367acd0b9ea6078274 | [] | no_license | NightCreature/SpaceSim | 09cd94a5382c92a5cc5385c5e533daa8bbd8b649 | bda51a4454ebb0dbc2f8c9605073f0c3d7f7e2c7 | refs/heads/master | 2023-05-26T07:16:43.045731 | 2022-07-27T03:00:19 | 2022-07-27T03:00:19 | 20,378,638 | 3 | 1 | null | 2022-07-27T03:00:20 | 2014-06-01T14:14:26 | C++ | UTF-8 | C++ | false | false | 580 | h | #pragma once
#include "Core/tinyxml2.h"
#include "GraphNodePin.h"
#include <vector>
namespace NodeGraph
{
class NodeDefinition
{
public:
NodeDefinition() = default;
~NodeDefinition() = default;
void Deserialise(const tinyxml2::XMLElement& nodeDefinition);
HASH_ELEMENT_DEFINITION(NodeDefinition)
priva... | [
"paulkruitz@gmail.com"
] | paulkruitz@gmail.com |
0081213e568db2df2fe0f4b94b8d6169b3883580 | 5042d0ed03720d4308e8c8fad1ebfc59a28fecca | /ctvshowwidget.cpp | d08451ee8b83f424176fd6e40c24f00707e546c1 | [] | no_license | birkeh/qtKodiAdmin | 66995625752bc79f588ce6d7c3495a02472bae84 | e50bdbd7089ab0c844324d480ca661c30fcd8f2b | refs/heads/master | 2023-04-07T11:52:23.118613 | 2023-03-28T08:17:35 | 2023-03-28T08:17:35 | 71,261,863 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,980 | cpp | #include "ctvshowwidget.h"
#include "ui_ctvshowwidget.h"
#include "cimage.h"
#include "cvideoviewitemdelegate.h"
#include "ccheckboxitemdelegate.h"
#include "common.h"
cTVShowWidget::cTVShowWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::cTVShowWidget),
m_lpTVShowModel(0),
m_lpImageList(0)
{
initUI();
}
... | [
"Herwig.Birke@windesign.at"
] | Herwig.Birke@windesign.at |
1e3e0048195b0fb94c72293fe456484d23af0ebc | 929ecaa278928c053faf9097c6a2d1ff41b5128b | /Box2D/Dynamics/Joints/b2MouseJoint.h | 4266b3f3cf5b975a142663ee47ab5342cadee98a | [] | no_license | Patchnote-v2/Baker-Street-Heroes | fb178ed14d895436f4855323a173b7137bd37dc2 | ebdd68c7864379bf69e07cf8b9afaacbaf8b7b4e | refs/heads/master | 2021-11-24T12:32:26.136781 | 2017-11-04T03:29:04 | 2017-11-04T03:29:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,902 | h | /*
* Copyright (c) 2006-2007 Erin Catto http://www.box2d.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
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpos... | [
"horizonistic@gmail.com"
] | horizonistic@gmail.com |
d294f08fcd1e858197b7e927bda6fb66848b68a6 | 90c260851952b7638e569a43ccd81d29a49dcad9 | /logic_program/main.cpp | 8681c4c02c3b8ee9c2a726bfdac8581a7c818947 | [] | no_license | andreyf/cpp_tutorials | 70def7304f0eb72423f00dcef5a8fe4d206b0818 | 654107eb38178877a25e3ae81c5ac169f56d52e2 | refs/heads/master | 2021-01-18T06:01:05.425561 | 2018-01-15T05:40:41 | 2018-01-15T05:40:41 | 68,437,967 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 510 | cpp | #include <iostream>
using namespace std;
int main() {
bool pravda = true, lozh = false;
if(pravda && lozh) cout << "Правда && ложь" << endl;// строка не выводится
if(pravda || lozh) cout << "Правда || ложь" << endl;
if(!pravda) cout << "Отрицание (Правда)" << endl; // эта строка также не появится ..... | [
"andreyfomin82@gmail.com"
] | andreyfomin82@gmail.com |
ac5b28e06dbb69c92e8bbb9450954ee36756f366 | 0fffb5e463c1dea1b10f81bab28e0de8d1d9fde9 | /Navier-Stokes_Solver_on_GPU/main.cpp | f7be3b00b9308e166e56fc760ef26aef0ecf3de5 | [] | no_license | wojciechpawlak/Navier-Stokes_Solver_on_GPU | 51ba36b0446495cd296d7a54e42dd0864cad078b | 05325550e2d3967f4240b77c6215372b6d60d310 | refs/heads/master | 2020-06-04T23:38:27.700772 | 2012-12-08T22:56:42 | 2012-12-08T22:56:42 | 4,445,159 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 70,616 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <math.h>
#include <CL/cl.h>
#include "alloc.h"
#include "utils.h"
#include "utils_opencl.h"
#include "datadef.h"
#include "init.h"
#include "boundary.h"
#include "uvp.h"
#include "visual.h"
#include "surface.h"
//
#define OPENCL_DE... | [
"wojciechpawlak@gmail.com"
] | wojciechpawlak@gmail.com |
fd5ec5dc31fd873928bb499c7ef58b84aa9b5305 | 3c84dfff979b964d20819131e0b4a72dbb794f3d | /uni/honours/plabx/include/api/UiInputHandler.h | 1ac54bb20369e08fc6844b88c9bcddbeefdf6892 | [] | no_license | pserwylo/archived | 47fed785c9353c57c7932d1d6b4d3687af701d3c | 55f65374fd8005dae54dddd5049d344bea00aead | refs/heads/master | 2023-06-22T08:32:52.037257 | 2023-06-08T06:24:00 | 2023-06-08T06:24:00 | 9,230,462 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 867 | h | /*
* UiInputHandler.h
*
* Created on: 11/05/2009
* Author: pete
*/
#ifndef UIINPUTHANDLER_H_
#define UIINPUTHANDLER_H_
#include <osg/Vec3>
#include <osg/Array>
#include <sigc++/sigc++.h>
class UiApplication;
class UiOutput;
class UiInputHandler
{
public:
UiInputHandler();
virtual ~UiInputHandler();
/... | [
"peter@ivt.com.au"
] | peter@ivt.com.au |
9ecf71be94ef22cf809145de9580290636bf3034 | 35b16f16d0e8f9ae9e51798159cfd5aa1d33d54a | /include/ft/base/market_data.h | cbf63a690710e6850a3dfa298001eb2f760e1cea | [
"MIT"
] | permissive | QuanterStudio/ft | 050a7e02aa4477f4bc125147cf370d2118f1e19b | 14aaafe26eb9752c8dc83ef8c9daf50b13ed9617 | refs/heads/master | 2023-04-23T18:36:32.092729 | 2021-05-12T12:35:50 | 2021-05-12T12:35:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,322 | h | // Copyright [2020-2021] <Copyright Kevin, kevin.lau.gd@gmail.com>
#ifndef FT_INCLUDE_FT_BASE_MARKET_DATA_H_
#define FT_INCLUDE_FT_BASE_MARKET_DATA_H_
#include <cstdint>
#include "ft/component/pubsub/serializable.h"
#include "ft/utils/datetime.h"
namespace ft {
constexpr int kMaxMarketLevel = 10;
enum class Marke... | [
"kevin.lau.gd@gmail.com"
] | kevin.lau.gd@gmail.com |
969db73d4c4c7e8c3951463e73d9041a043abd0a | 3790aefc92f31c1abbe5594d4ea020e15cb12aae | /tizen-sdk/platforms/tizen2.1/rootstraps/tizen-emulator-2.1.native/usr/include/osp/FWebJsonJsonString.h | 7c9bf2ab29123f6626f8e09dc94cfaac066fbe78 | [] | no_license | abhijitrd/CppSharpTizen | e9871793c27acbb8ae0f599f2013ea56c7b2fca4 | 92e42a36cc3c5f2b1636061e82025feec4edda0d | refs/heads/master | 2021-01-16T22:04:57.789905 | 2014-07-05T11:39:32 | 2014-07-05T11:39:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,132 | h | //
// Open Service Platform
// Copyright (c) 2012 Samsung Electronics 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
//
// Un... | [
"brighttwinsoftware@gmail.com"
] | brighttwinsoftware@gmail.com |
fe89977d1c5cc5dcdb8eb45687dddc6d9aa0ae66 | aa979a30ce6d384989d6d40ce4a2ba2536b41a3f | /csl100/2013CS50302_assign4/q1_num.cpp | 5f00647c90016af325be243b10e573f4761b8641 | [
"Apache-2.0"
] | permissive | y-gupta/learn-with-me | 0ed99df8e122a6f01608083266bb63fa314bd12f | 2be141b118256750cbbb974099da6b423ff4ca8a | refs/heads/master | 2021-05-28T13:49:55.603693 | 2014-11-17T19:07:16 | 2014-11-17T19:07:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 561 | cpp | /*
* @author Yash Gupta (cs5130302)
* @desc lab4-Q2 determining type of number
*/
#include <iostream>
using namespace std;
int isprime(long n){//checks if a number is prime
if(n==1)
return 0;
for(int i=2;i<=n/2;i++)
{
if(n%i==0)
return 0;
}
return 1;
}
int main()
{
long n;
cout<<"Enter the number:";
... | [
"yashg2@gmail.com"
] | yashg2@gmail.com |
8a12cb600ace338324c28775ea9479c41b6e6b2c | 53f3f38eac3ed44f23f8f58d34aa8bd89555eaef | /src/msvc/include/AutoGemmKernelSources/zgemm_Col_NT_B1_ML048_NX048_KX01_src.cpp | 4fa92f33550de4f105f61b17a0b7177e53aea569 | [
"Apache-2.0"
] | permissive | gajgeospatial/clBLAS-1.10 | 16039ddfad67b6c26a00767f33911e7c6fe374dc | 2f5f1347e814e23b93262cd6fa92ec1d228963ac | refs/heads/master | 2022-06-27T09:08:34.399452 | 2020-05-12T16:50:46 | 2020-05-12T16:50:46 | 263,172,549 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,524 | cpp | /*******************************************************************************
* This file was auto-generated using the AutoGemm.py python script.
* DO NOT modify this file! Instead, make changes to scripts in
* clBLAS/src/library/blas/AutoGemm/ then re-generate files
* (otherwise local changes will be lost a... | [
"glen.johnson@gaj-geospatial.com"
] | glen.johnson@gaj-geospatial.com |
0f6af89bf5495101006d2fce158a094dccf6224b | e1d6417b995823e507a1e53ff81504e4bc795c8f | /gbk/client/Client/Game/Network/PacketHandler/GCExchangeSynchConfirmIIHandler.cpp | 6550d9b623a8ef9deae7b74c21461b101049b426 | [] | no_license | cjmxp/pap_full | f05d9e3f9390c2820a1e51d9ad4b38fe044e05a6 | 1963a8a7bda5156a772ccb3c3e35219a644a1566 | refs/heads/master | 2020-12-02T22:50:41.786682 | 2013-11-15T08:02:30 | 2013-11-15T08:02:30 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 801 | cpp | /*
接到服务器通知,显示确定按钮
*/
#include "stdafx.h"
#include "GCExchangeSynchConfirmII.h"
#include "..\..\Procedure\GameProcedure.h"
#include "..\..\DataPool\GMDataPool.h"
#include "..\..\Event\GMEventSystem.h"
#include "GIException.h"
uint GCExchangeSynchConfirmIIHandler::Execute( GCExchangeSynchConfirmII* pPacket, Player* pPla... | [
"viticm@126.com"
] | viticm@126.com |
c03962b88113b57780ea277b517199346ab1064f | 2bc835b044f306fca1affd1c61b8650b06751756 | /setup/ieak5/brandll/rsop.h | a508e0e6c66514431e910d98195a71adadce8725 | [] | 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 | 6,610 | h | // Interface for RSoPUpdate class
#ifndef __IEAK_BRANDING_RSOP_H__
#define __IEAK_BRANDING_RSOP_H__
#include <userenv.h>
#include <setupapi.h>
#include "wbemcli.h"
#include <ras.h>
#include "reghash.h"
#include "SComPtr.h"
// defines
#define MAX_GUID_LENGTH 40
typedef struct _ADMFILEINFO {
WCHAR * ... | [
"polarisdp@gmail.com"
] | polarisdp@gmail.com |
410ea5edc91ac40297dbd779f50f78af9d81b51e | a0be71e84272af17e3f9c71b182f782c35a56974 | /Fem/Gui/TaskFemConstraintFixed.cpp | ab6b65324a8e2b0b04d7c7fb0663c3363f04af6c | [] | no_license | PrLayton/SeriousFractal | 52e545de2879f7260778bb41ac49266b34cec4b2 | ce3b4e98d0c38fecf44d6e0715ce2dae582c94b2 | refs/heads/master | 2021-01-17T19:26:33.265924 | 2016-07-22T14:13:23 | 2016-07-22T14:13:23 | 60,533,401 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,480 | cpp | /***************************************************************************
* Copyright (c) 2013 Jan Rheinländer <jrheinlaender@users.sourceforge.net> *
* *
* This file is part of the FreeCAD CAx development system. *
*... | [
"gogokoko3@hotmail.fr"
] | gogokoko3@hotmail.fr |
cf5382c4fce2065f5416f4f6f1626a35daab9d07 | 9f03c9326aa725f49ed8583fae7be175699450d7 | /ConsoleApplication9/square.h | 51b7310c873ac3a1cac32747ed5d44c3a43361ec | [] | no_license | krishanj20/OOP-Chess | b80a6a9a817838f6404b0c076c2f935f1ee16ddc | a608c9a9cce14c0287b7373403db263a904a930a | refs/heads/master | 2020-06-01T22:10:38.364260 | 2019-06-10T16:16:09 | 2019-06-10T16:16:09 | 190,945,206 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 600 | h | #pragma once
#include "piece.h"
//This class is for each square of the board.
//It contains a pointer to the piece on the quare, and is a nullptr if there is no piece.
class square {
private:
piece * pieceOnSquare; //pointer to piece on the square. void if no piece is present.
public:
//Default constructor
square... | [
"krishanjethwa@msn.com"
] | krishanjethwa@msn.com |
5cf17e3eeb111185a926a9339452a6033524d9ab | 3299c43394dae4558d9468a26efa3fdba0bd0709 | /Algoritmo_de_ordenacao_shell_sort/Algoritmo_de_ordenacao_shell_sort/stdafx.cpp | f060e96d3232e3616d760125913225f4ca6f2ec9 | [] | no_license | GuibsonKrause/Algoritmo_de_ordenacao_shell_sort | bd58ed2acea13a4a4221ddc5d71fcf4f39c260e4 | 6f3ac33847a4bc0695bc1c88e077e2be29b80d1f | refs/heads/master | 2021-07-17T17:17:15.247326 | 2017-10-24T16:09:33 | 2017-10-24T16:09:33 | 108,151,774 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 320 | cpp | // stdafx.cpp : source file that includes just the standard includes
// Algoritmo_de_ordenacao_shell_sort.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
| [
"oliveira.guibson@hotmail.com"
] | oliveira.guibson@hotmail.com |
1e2ae969c4b4d078822166a550e5b7e334462d7f | a411a55762de11dc2c9d913ff33d2f1477ac02cf | /lte/gateway/c/core/oai/tasks/nas5g/src/M5GPDUSessionReleaseReject.cpp | 81c0fecd0b1eb615db4165b6feafef2d2b46acfc | [
"BSD-3-Clause"
] | permissive | magma/magma | 0dc48c1513d9968bd05fb7589f302c192b7c0f94 | 0e1d895dfe625681229e181fbc2dbad83e13c5cb | refs/heads/master | 2023-09-04T09:31:56.140395 | 2023-08-29T13:54:49 | 2023-08-29T13:54:49 | 170,803,235 | 1,219 | 525 | NOASSERTION | 2023-09-07T17:45:42 | 2019-02-15T04:46:24 | C++ | UTF-8 | C++ | false | false | 3,123 | cpp | /*
Copyright 2020 The Magma Authors.
This source code is licensed under the BSD-style license found in the
LICENSE file in the root directory of this source tree.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHO... | [
"noreply@github.com"
] | noreply@github.com |
dbea1bd605c94ace5a33d37dc4bb065affee0699 | bdc0812f014da529e1ec554bf97515011c917a25 | /lab00/Insertion-Sort.cpp | ae704319f7135f78bdd406c943077f9473298e7d | [] | no_license | acreyes311/CSE100 | 0670bd15dafcbd89fbbc937108864c184eb3fd27 | 9968b079999222b7c429ae78ad702b19558f3e97 | refs/heads/master | 2020-04-17T16:01:09.269830 | 2019-01-21T00:31:08 | 2019-01-21T00:31:08 | 166,723,086 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 537 | cpp | #include <iostream>
using namespace std;
void insertionSort(int* arr,int n){
int key;
int i;
for (int j = 1; j < n; j++){
key = arr[j];
i = j - 1;
while((i >=0) && (arr[i] < key)){
arr[i+1] = arr[i];
i = i-1;
arr[i+1] = key;
}
}
}
int main(){
int size;
//get size of array
cin >> size;
//create array
int... | [
"noreply@github.com"
] | noreply@github.com |
6cb41f1cdc3ecc71c2fb2ddf8e25b392b61345e2 | 9db9905b751e0b9f8acf731167d9a13a86716595 | /basic_algorithm/memory/memory.cpp | 35ac2c21f710a4fb9a0eb97286c06c355a649668 | [] | no_license | jelllove/leetcode | 7071c66e98fb31d746c653d1d03bb175fbdc362f | c8a21b7df6a694c958111a62980038266fd7e5e3 | refs/heads/main | 2023-08-28T10:17:38.544149 | 2021-10-20T15:07:21 | 2021-10-20T15:07:21 | 349,485,638 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 205 | cpp | #include <iostream>
int main(int argc, char *argv[])
{
//这样的定义会导致栈溢出的,因为不同的OS给不同的APP定义的STACK的大小是固定的
long m[8111110] = {0};
}
| [
"jelllove@126.com"
] | jelllove@126.com |
b30bd51fa685adc834910b47606776f4d6c1acea | 6ff225ced3f8ea771a0db118933907da4445690e | /logdevice/server/RebuildingCoordinator.cpp | 34636c370c4eb96a5575f5147f75b7987b0515aa | [
"BSD-3-Clause"
] | permissive | mickvav/LogDevice | c5680d76b5ebf8f96de0eca0ba5e52357408997a | 24a8b6abe4576418eceb72974083aa22d7844705 | refs/heads/master | 2020-04-03T22:33:29.633769 | 2018-11-07T12:17:25 | 2018-11-07T12:17:25 | 155,606,676 | 0 | 0 | NOASSERTION | 2018-10-31T18:39:23 | 2018-10-31T18:39:23 | null | UTF-8 | C++ | false | false | 57,254 | cpp | /**
* Copyright (c) 2017-present, Facebook, Inc. and its affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "logdevice/server/RebuildingCoordinator.h"
#include <folly/hash/Hash.h>
#inc... | [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
284b177c88c405eb1a60f667dee94a2ef9c839d5 | ed999b931c8a8ebfffa6b727b4e8e0d6051af748 | /include/Action.h | b7b4a6b3b9c7dbeaeac15b413de3a1271c571c8d | [
"MIT"
] | permissive | V4570/scheduler | 483aa952088aca8e32194e5783e9f581985d6b81 | 80f3a90b508561b6c3e860b43624d8a9a3b6a450 | refs/heads/master | 2023-07-18T19:46:14.388089 | 2021-09-18T15:43:58 | 2021-09-18T15:43:58 | 367,954,322 | 0 | 0 | null | 2021-09-18T15:43:04 | 2021-05-16T18:14:01 | C++ | UTF-8 | C++ | false | false | 1,348 | h | #ifndef ACTION_H
#define ACTION_H
#include <string>
#include <vector>
#include "Parameter.h"
#include "Precondition.h"
#include "Effect.h"
#include "Fact.h"
using namespace std;
class Action
{
public:
Action();
Action (string);
Parameter *getParameter (string);
int getParameterPo... | [
"vasilis.tos@gmail.com"
] | vasilis.tos@gmail.com |
cbff1c1984a9d588bbcf792f0e2923b25958dc37 | 03cde7fe6f0e29cc8da8ff5d77054ba6cf21203d | /objet3d/Facet.cpp | 850638ff33ae46c93e838a8d19a134a18274a900 | [] | no_license | vidma/snowman-game-3d | a0263295014819868bbb76fadaa6d63ccd19c1ae | 53803943fd53818667aee9b70773db2a7255207f | refs/heads/master | 2021-01-22T02:40:52.493421 | 2010-04-02T12:11:50 | 2010-04-02T12:11:50 | 541,793 | 1 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 7,282 | cpp | #include "Facet.h"
#include "Error.h"
#include <GL/gl.h>
#include <iostream>
#include "Soup.h"
#include "UtilGL.h"
#include <math.h>
using namespace std;
using namespace prog3d;
/** Tableau de facettes */
void VFacet::draw() {
ItVFacet itf;
if (drawMode & DRAW_GRID) {
glEnable(GL_POLYGON_OFFSET_FILL);
g... | [
"vidmantas.zemleris@gmail.com"
] | vidmantas.zemleris@gmail.com |
c5cfd70b17d606c488a9471a2e18042b93d6e588 | 445149290202ae1d383f8686cf80f142d6202ff8 | /include/hermes/VM/Runtime.h | 21339e4f8e8ae7da9815f4ba4bd8432f52f24f04 | [
"MIT"
] | permissive | Jorgezz/hermes | 7bacfdd96666549a5dbd634a1cc73fb32cb83164 | cf9aab23399bdf6b3958653823d90f7d5b367c86 | refs/heads/master | 2023-02-07T05:42:31.966303 | 2020-12-19T02:14:35 | 2020-12-19T02:15:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 67,050 | h | /*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#ifndef HERMES_VM_RUNTIME_H
#define HERMES_VM_RUNTIME_H
#include "hermes/Public/DebuggerTypes.h"
#include "hermes/Public/RuntimeCo... | [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
0c6c9045113a546b559697b9fc9f68f5ae10d467 | 76aab74b58991e2cf8076d6b4ed6f4deba1c57bd | /codevs/1380.cpp | 833ef4af7a7e730c0fc32e43ddd5f5f68d74c60c | [] | no_license | StudyingFather/my-code | 9c109660c16b18f9974d37a2a1d809db4d6ce50a | 8d02be445ac7affad58c2d71f3ef602f3d2801f6 | refs/heads/master | 2023-08-16T23:17:10.817659 | 2023-08-04T11:31:40 | 2023-08-04T11:31:40 | 149,898,152 | 6 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 707 | cpp | #include <cstdio>
#include <algorithm>
using namespace std;
struct edge
{
int v,next;
}e[6005];
int head[6005],n,cnt,f[6005][2],ans,is_h[6005],vis[6005];
void addedge(int u,int v)
{
e[++cnt].v=v;
e[cnt].next=head[u];
head[u]=cnt;
}
void calc(int k)
{
vis[k]=1;
for(int i=head[k];i;i=e[i].next)
{
if(vis[e[i].v])... | [
"594422141@qq.com"
] | 594422141@qq.com |
60b6ddd6e47ca1b5f6b9216e9071712854d1cf18 | 2239bfc546e44e29e55d4d0f258f1f78edb424b0 | /MT/Led3TestDlg.h | 01cfe0cd0c5a00bfc9f0b4535b97f7560816fb7b | [] | no_license | BhBjGit/MJFY | a13b0f156bf7ac6081998c8638ca51b76760e7ae | c43e62c1e795c844774feb91fdfd3509cfa0ac14 | refs/heads/master | 2021-01-11T22:46:18.805456 | 2017-01-15T13:34:02 | 2017-01-15T13:34:02 | 79,032,017 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,709 | h | #pragma once
#include "MT3Dlg.h"
#include "ProtocolHelper.h"
using std::wstring;
// CLedTestDlg 对话框
enum RESULTSTATUE
{
MJ_NORMAL=1,
MJ_SUCCESS,
MJ_FAILED
};
//PSN在主板量产版固件中的偏移地址
#define MB_PSNOFFSETADDR (0x00011800)
//JFlash超时时间
#define MB_JFLASHTIMEOUTV (1000*30)
class CLed3TestDlg : public CDialogEx
{
D... | [
"fsc@sina.com"
] | fsc@sina.com |
95d979c3efcc12bb37cab6c44d4c400757bc1ac0 | 5990f2851d3124da5e32763a82b5c1e00c992c10 | /main.cpp | cdf2a45ea18f854d693b1c5b13c03da81a5368c4 | [] | no_license | RSDT/jhsolver2 | 0fea579d59814eb138c8ce60b3350d86cc4aca66 | 2a4ae3651fe6e907f2025110df9d01cd41c5584c | refs/heads/master | 2021-01-17T17:56:29.823305 | 2016-10-12T16:09:34 | 2016-10-12T16:09:34 | 70,715,760 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,885 | cpp | #include <iostream>
#include "datastructures.h"
#include <vector>
#include <fstream>
#include "kml_handling.h"
int main()
{
std::string hqfilename = "homebases.jh";
std::string kmlfilename = "jotihunt2014.kml";
kml_h::create_homebase_file( hqfilename, kmlfilename);
std::string s;
std::ifstream... | [
"git@mattijnkreuzen.nl"
] | git@mattijnkreuzen.nl |
c9e86a8d8bfa9e4ecfb90c068c22ca0079502f1f | 18d84805f138d390736104351fe2141332f9a092 | /ESP32_cam.ino | 8d821e65e52a5a3b6898509cbd0558fd05bdbbb5 | [
"Apache-2.0"
] | permissive | hydrawei/TSENG-PET-BOX | 40680e5a2e8f6b01dd9a7cfdbe78d612bb9ccfb5 | aee49a13be6d8ed3ac3c5c36ec12902776f844e5 | refs/heads/main | 2023-07-13T09:30:04.603639 | 2021-08-22T06:45:50 | 2021-08-22T06:45:50 | 398,732,402 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,214 | ino | #include <WiFi.h>
#include <WebServer.h>
#include <WiFiClient.h>
#include "OV2640.h"
#include "SimStreamer.h"
#include "OV2640Streamer.h"
#include "CRtspSession.h"
char *ssid = "SSID"; // Put your SSID here
char *password = "PASSWORD"; // Put your PASSWORD here
WebServer server(80)... | [
"noreply@github.com"
] | noreply@github.com |
4c05119825fd1586e38e5058e25c5fa979002326 | 7f60be0889a94ba41fc4c4ddb886d90335f76649 | /editStrings.cpp | ef46eb8b3904aa17611be0b8b906f3a429e63595 | [] | no_license | JuliusBoateng/data_structs_and_algs | f657fe3d675b019c2d69c565b4dcab27183ca6f7 | 12005b90809de07aa24b9201160c1bc4e54359ae | refs/heads/master | 2023-05-07T15:37:31.359050 | 2021-05-28T18:52:32 | 2021-05-28T18:52:32 | 277,998,646 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,789 | cpp | #include <iostream>
#include <string>
#include <unordered_map>
void editStringChecker(std::string str1, std::string str2){
std::unordered_map<char, int> counter = {};
for (int i = 0; i < str1.length(); i++){
if (counter.find(str1[i]) == counter.end() ) {
counter[str1[i]] = 1;
}
... | [
"juliusopokuboateng@gmail.com"
] | juliusopokuboateng@gmail.com |
b58746b39e621fc37ff8ced38f679b16a3984501 | 91ba0c0c42b3fcdbc2a7778e4a4684ab1942714b | /Cpp/SDK/BP_ShipCustomizationChestInteraction_functions.cpp | e41cf28eff4469886eab94431cc546089ded28c0 | [] | no_license | zH4x/SoT-SDK-2.1.1 | 0f8c1ec3ad8821de82df3f75a0356642b581b8c6 | 35144dfc629aeddf96c1741e9e27e5113a2b1bb3 | refs/heads/main | 2023-05-12T09:03:32.050860 | 2021-06-05T01:54:15 | 2021-06-05T01:54:15 | 373,997,263 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 974 | cpp | // Name: SoT, Version: 2.1.1
#include "../pch.h"
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Functions
//------------------------------------------------------... | [
"Massimo.linker@gmail.com"
] | Massimo.linker@gmail.com |
fc959d31372bef776209e1b79da532a16252db17 | 084a264ee1c2f1d36db03988970cdedc1846799a | /modules/audio_coding/audio_network_adaptor/bitrate_controller_unittest.cc | b6060a99e64152d36441393dbfbbbcae317cda39 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-google-patent-license-webm",
"LicenseRef-scancode-google-patent-license-webrtc",
"GPL-1.0-or-later",
"LicenseRef-scancode-takuya-ooura",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown",
"MS-LPL",... | permissive | nareix/webrtc | 199410db65e18c1b277d50484673b9ffab54b124 | 123749a69270b2c0bf232887c3cf1cf6d03d016a | refs/heads/main | 2023-04-20T09:39:56.531907 | 2023-03-10T11:01:52 | 2023-03-10T11:01:52 | 214,553,776 | 0 | 1 | MIT | 2019-10-12T01:08:20 | 2019-10-12T01:08:19 | null | UTF-8 | C++ | false | false | 12,126 | cc | /*
* Copyright (c) 2016 The WebRTC 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 in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contribut... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
8e47fd9399b19835f0cb700f6bb8577a020371da | 1761b6c0cba549d76fcf11695a97ac58c655e53f | /profitAndLoss/Portfolio.cpp | 162bf91979ea4290c62ecb3e548c141a61be18b7 | [] | no_license | muleta33/Projet_PEPS | 74be83f4caae6517de254325972903b0db57819a | cb6605bcc4158c6fd48e2c66069f6f3c79c2b0de | refs/heads/master | 2021-01-10T06:47:40.318899 | 2016-03-31T18:41:09 | 2016-03-31T18:41:09 | 47,509,276 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 971 | cpp | #include "Portfolio.hpp"
void Portfolio::initialisation(double optionPrice, const PnlVect *deltas, const PnlVect *prices)
{
if (deltas_->size != deltas->size)
pnl_vect_resize(deltas_, deltas->size);
pnl_vect_clone(deltas_, deltas);
risk_free_investment_ = optionPrice - pnl_vect_scalar_prod(deltas, prices);
}
vo... | [
"antoine.mulet@ensimag.grenoble-inp.fr"
] | antoine.mulet@ensimag.grenoble-inp.fr |
3508f205489c796958363805f0817f479459e8a1 | f1fbb63275ff66a97c8e654cabe0301851e9c317 | /VS_CPp/MFC/Anketa/Anketa/Anketa.h | 11fd5eadb1c603847b997c824a0b5fcc01e02731 | [] | no_license | AAMORENKO/EXAMPLS_CPP_JAVA | c0eeb489ef1cb10d14cbb8de565e18f6044d0f61 | 2a732c503be8ac569505f942328524b86d43791e | refs/heads/master | 2021-10-28T22:13:44.605096 | 2021-10-14T09:42:07 | 2021-10-14T09:42:07 | 163,251,015 | 9 | 9 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 596 | h |
// Anketa.h : главный файл заголовка для приложения PROJECT_NAME
//
#pragma once
#ifndef __AFXWIN_H__
#error "включить stdafx.h до включения этого файла в PCH"
#endif
#include "resource.h" // основные символы
// CAnketaApp:
// О реализации данного класса см. Anketa.cpp
//
class CAnketaApp : public CWinApp
{
pu... | [
"wzooks@gmail.com"
] | wzooks@gmail.com |
aac6b7a2ac95f123a880da7a20b91ffa509b2683 | 1286c5b3d37b0785e99073c8234b44df47561f5a | /2019/0602_AGC034/B.cpp | e31f82de8fa28880ad1d08190c4b7e169476bf3d | [
"MIT"
] | permissive | kazunetakahashi/atcoder | 930cb5a0f4378914cc643de2f0596a5de7e4a417 | 16ce65829ccc180260b19316e276c2fcf6606c53 | refs/heads/master | 2022-02-15T19:12:10.224368 | 2022-01-29T06:38:42 | 2022-01-29T06:38:42 | 26,685,318 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,348 | cpp | #define DEBUG 1
/**
* File : B.cpp
* Author : Kazune Takahashi
* Created : 2019-6-2 21:27:51
* Powered by Visual Studio Code
*/
#include <iostream>
#include <iomanip>
#include <algorithm>
#include <vector>
#include <string>
#include <complex>
#include <tuple>
#include <queue>
#include <stack>
#include <map>
... | [
"kazunetakahashi@gmail.com"
] | kazunetakahashi@gmail.com |
44f7e1d678e7ee67c33a261b2bd75591a770d046 | 5b6e9f56c71e9706ca83c7327c332cfa93104485 | /samples/opengles_20/shadow_map/MDRRenderable.h | 27341dcdee3bf2ac7e889a8b695592ea3710b73c | [] | no_license | Taogal/mali_examples | bfe918d025bb63adfb74945b55a753f251f1ebca | a03ef597258ee306a9e177309e04aaaa605a8fa6 | refs/heads/master | 2020-03-19T02:42:54.949885 | 2018-03-06T20:24:44 | 2018-03-06T20:24:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,268 | h | /*
* This proprietary software may be used only as
* authorised by a licensing agreement from ARM Limited
* (C) COPYRIGHT 2013 ARM Limited
* ALL RIGHTS RESERVED
* The entire notice above must be reproduced on all authorised
* copies and copies may only be made to the extent permitted
* by a licensing agreement f... | [
"newyoko@163.com"
] | newyoko@163.com |
9d58ca0c9dfd35174f7ac63748e26b0e875637c2 | d4fa4acf7e9de1da42f3d2be21b476d2ff92c104 | /QTEditor/Classes/Utils/MySqlLiteManager.cpp | 994f053c38e70dc11e1d17e3d6d4ae9afb574d34 | [] | no_license | lswzzz/QTEditor | 0263a1731e68136b392f37f7c2b2a2ecdc7fc71c | 7dbdfd6c3b24ecf37d73f39e1c03d34b12c2b853 | refs/heads/master | 2020-03-03T23:10:07.265359 | 2016-05-04T07:18:19 | 2016-05-04T07:18:19 | 46,868,574 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,027 | cpp | #include "MySqlLiteManager.h"
#include "qdir.h"
#include "qfile.h"
#include "Global.h"
#include "FontChina.h"
MySqlLiteManager* MySqlLiteManager::instance = nullptr;
QString MySqlLiteManager::dbname = "db";
QSqlDatabase MySqlLiteManager::db;
MySqlLiteManager::MySqlLiteManager()
{
}
MySqlLiteManager::~MySqlLiteMana... | [
"793620896@qq.com"
] | 793620896@qq.com |
263d507c9b839c210a453dc2fb1571724dd0cb26 | bd8fb057d74637d375cad5547fcaf4365204bfd3 | /mbed.h | 4849af633ee61e4c268539e4a5cfebe569bc5d8e | [] | no_license | trnila/apps-pwm-simulator | 6c48b8c76b7e1f76a838e4191e3a82d1276b40fa | 128159abc52b68a684c5a6d242522b7bdae04500 | refs/heads/master | 2021-01-13T22:03:30.721951 | 2020-02-25T20:51:44 | 2020-02-25T20:51:44 | 242,508,654 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,806 | h | #include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <stdint.h>
#include <thread>
#include <mutex>
#include <chrono>
#include <condition_variable>
typedef enum {
PTC0,
PTC1,
PTC2,
PTC3,
PTC4,
PTC5,
PTC7,
PTC8,
PinLast,
} PinName;
namespace sim {
using namespace std::chrono_literals;
... | [
"daniel.trnka@gmail.com"
] | daniel.trnka@gmail.com |
b8a9599a722630d24a0699eb474f3d801a275bcb | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_repos_function_2259_httpd-2.0.58.cpp | 42f0f94951f7238eaccbf39e769d95e454fb3967 | [] | 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,152 | cpp | static void wakeup_listener(void)
{
apr_status_t rv;
listener_may_exit = 1;
if (!idle_worker_stack) {
return;
}
if ((rv = apr_thread_mutex_lock(idle_worker_stack->mutex)) != APR_SUCCESS) {
return;
}
if ((rv = apr_thread_cond_signal(idle_worker_stack->cond)) !=
APR_SU... | [
"993273596@qq.com"
] | 993273596@qq.com |
99c8e2c2960b0c10fa866e5ae9ac17a14578f976 | a8804f93227e46fd41ac9c6c4ba7e91ee5bf6a93 | /cchef/aug14/ac/mou2h/tst.cpp | 1508e3fb02ef0d998f4209224167708b8a8974d5 | [] | no_license | caioaao/cp-solutions | 9a2b3552a09fbc22ee8c3494d54ca1e7de7269a9 | 8a2941a394cf09913f9cae85ae7aedfafe76a43e | refs/heads/master | 2021-01-17T10:22:27.607305 | 2020-07-04T15:37:01 | 2020-07-04T15:37:01 | 35,003,033 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 627 | cpp | #include <bits/stdc++.h>
using namespace std;
set<vector<int> > poss;
vector<int> vals;
int main(){
int n;
cin >> n;
int last, x;
cin >> last;
for(int i = 1; i < n; i++){
cin >> x;
vals.push_back(x-last);
last = x;
}
int ant;
for(int bm = 1; bm < (1<<vals.size()); bm++){
vector<int> s;
... | [
"caioaao@gmail.com"
] | caioaao@gmail.com |
0d31467836de4a078807d061b79561898855fad6 | 7c710df7e6287eb4585670ff3243903e8db3521a | /More Team References/testMCL team reference/acm biblio/number_theory/primitive_root.cpp | 611a19723fc05081981db126f0b4016a4cad14b3 | [] | no_license | e1Ru1o/UH-Top-reference | e71eeb6cc1bde9890513a8e2c6a6bb4856ee93aa | 5ea4e1bfc6400ab4bec48eb193781ff13666c8d4 | refs/heads/master | 2023-06-04T02:52:15.826936 | 2021-06-21T21:35:22 | 2021-06-21T21:35:22 | 378,982,744 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 974 | cpp | /*
Find a primitive root of m
Note: Only 2, 4, p^n, 2p^n have primitive roots
Tested: http://codeforces.com/contest/488/problem/E
*/
ll primitive_root(ll m)
{
if (m == 1)
return 0;
if (m == 2)
return 1;
if (m == 4)
return 3;
auto pr = primes(0, sqrt(m) + 1); // fix upper bound
ll t = m;
... | [
"riglesiasvera@gmail.com"
] | riglesiasvera@gmail.com |
751216ff63f6e53ede6d65ee584a8f5fe0eb8c2e | 091afb7001e86146209397ea362da70ffd63a916 | /inst/include/nt2/core/include/functions/scalar/unique.hpp | d027787f1e01489da9be336089f98dbaefda331d | [] | no_license | RcppCore/RcppNT2 | f156b58c08863243f259d1e609c9a7a8cf669990 | cd7e548daa2d679b6ccebe19744b9a36f1e9139c | refs/heads/master | 2021-01-10T16:15:16.861239 | 2016-02-02T22:18:25 | 2016-02-02T22:18:25 | 50,460,545 | 15 | 1 | null | 2019-11-15T22:08:50 | 2016-01-26T21:29:34 | C++ | UTF-8 | C++ | false | false | 222 | hpp | #ifndef NT2_CORE_INCLUDE_FUNCTIONS_SCALAR_UNIQUE_HPP_INCLUDED
#define NT2_CORE_INCLUDE_FUNCTIONS_SCALAR_UNIQUE_HPP_INCLUDED
#include <nt2/core/functions/unique.hpp>
#include <nt2/core/functions/scalar/unique.hpp>
#endif
| [
"kevinushey@gmail.com"
] | kevinushey@gmail.com |
dd84765c3a7635671191fc9f5956f349fad1ef3b | 5ccdec8e96384389197d9f842ce7d9a93479b84c | /src/Model.h | a44ac64bdf0b6fddda623ad36c651c15c50363f4 | [
"MIT"
] | permissive | bananu7/MiniCraft | 521a107ca3421c3aa77ac86071eda896559886b9 | 3acfc0120ad7d49ed038106f27da3a3a6cc2d92f | refs/heads/master | 2021-01-17T04:46:05.996109 | 2016-07-22T08:15:14 | 2016-07-22T08:15:14 | 8,126,518 | 6 | 0 | null | 2013-07-18T13:01:53 | 2013-02-10T18:58:04 | C++ | UTF-8 | C++ | false | false | 5,058 | h | #pragma once
#include <assimp/cimport.h>
#include <assimp/scene.h>
#include <assimp/postprocess.h>
#include <glm/glm.hpp>
#include "VertexBuffer.h"
#include "VertexAttributeArray.h"
#include "Shader.h"
#include <string>
#include <vector>
#include <memory>
class Model {
std::unique_ptr<const aiScene, decltype(&a... | [
"bananu7@o2.pl"
] | bananu7@o2.pl |
29aee8164fca8c06776e076abc19995ec04db34e | b8abaaf2f7a1f94efe3bbc0d14ca49228471b43f | /MomokoMain/include/Window.h | ce7258ee4b5865f7cd1b68cfdc4e09f7214e44d3 | [] | no_license | julsam/Momoko-Engine | e8cf8a2ad4de6b3925c8c85dc66272e7602e7e73 | 7503a2a81d53bf569eb760c890158d4f38d9baf9 | refs/heads/master | 2021-01-22T12:08:41.642354 | 2011-04-12T11:12:21 | 2011-04-12T11:12:21 | 1,494,202 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 701 | h | #ifndef _WINDOW_H
#define _WINDOW_H
#include <iostream>
#include <string>
#include "SDL.h"
#include <GL/gl.h>
#include "Vector2.h"
class Window
{
public:
Window(std::string _caption, int _w, int _h, bool _fullscreen);
~Window();
bool init();
static bool reshape(const int _w, const int _h);
static... | [
"bender@bender-labs.org"
] | bender@bender-labs.org |
d9d3b7bd84c50fd98144cd7aa3fcd61755a8132c | 0fc0a829054117da442f42d0c12cefcb03da6f62 | /f4mp_server/main.cpp | d237e61f7ad5ddaf123397beb11f24fb1772a929 | [] | no_license | SilentModders/F4MP | e439e08fab20caad24602a2c47e5f06df7f1dc61 | d8e9dbb60a2656227c657f3becd6eede924c1e9e | refs/heads/master | 2022-08-23T07:34:14.917487 | 2020-05-23T17:13:51 | 2020-05-23T17:13:51 | 273,619,118 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 571 | cpp | #define LIBRG_IMPLEMENTATION
//#define LIBRG_DISABLE_FEATURE_ENTITY_VISIBILITY
#include "Server.h"
#include <iostream>
#include <fstream>
f4mp::Server* f4mp::Server::instance = nullptr;
int main()
{
const std::string configFilePath = "server_config.txt";
std::string address;
std::ifstream config(configFilePath)... | [
"rhrh1363@gmail.com"
] | rhrh1363@gmail.com |
3e8aed9d89c1cc7927df9bc1aeb3434ba81fe9bf | 8dff49c4dc92983cbd0934725f97224fd9754d1d | /CPE/299.cpp | e1925ee3c87181049adff4f5a4cead6a8bb2844c | [] | no_license | cherry900606/OJ_Solutions | 1c7360ca35252aec459ef01d8e6a485778d32653 | b70f8baed30f446421fd39f311f1d5071a441734 | refs/heads/main | 2023-05-14T13:38:44.475393 | 2021-06-19T07:29:35 | 2021-06-19T07:29:35 | 378,026,385 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 554 | cpp | #include <iostream>
using namespace std;
int main()
{
int n;
cin>>n;
while(n--)
{
int l,train[51],times=0;
cin>>l;
for(int i=0;i<l;i++)
cin>>train[i];
for(int i=0;i<l;i++)
{
for(int j=i;j<l;j++)
{
if(train[i]>tr... | [
"cherry900606@gmail.com"
] | cherry900606@gmail.com |
4f8b3819584f6ac9d430816539c7a113411b07c9 | 0edbcda83b7a9542f15f706573a8e21da51f6020 | /private/inet/urlmon/search/protbase.hxx | af956a2f3f6b2efa4b165cf3b535cb9bf47e70ef | [] | no_license | yair-k/Win2000SRC | fe9f6f62e60e9bece135af15359bb80d3b65dc6a | fd809a81098565b33f52d0f65925159de8f4c337 | refs/heads/main | 2023-04-12T08:28:31.485426 | 2021-05-08T22:47:00 | 2021-05-08T22:47:00 | 365,623,923 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 3,902 | hxx | //+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1995.
//
// File: protbase.hxx
//
// Contents:
//
// Classes:
//
// Functions:
//
// History: 11-07-1996 JohannP (Johann Posch) Created
//
//---------... | [
"ykorokhov@pace.ca"
] | ykorokhov@pace.ca |
539a1b64bca43c3d319c43b0f8c430b096aa4d56 | 09a43ac5b76aaebd2319c0b880e3078c8ea48e7e | /PROJEKT/classes/objects/Dirt.h | 86a394f0c7c3454f0791eb407a6d08e385a2ecad | [
"Apache-2.0"
] | permissive | Darono87/boulderDash | 89ea600a3dce4fbbf50e9addc2e8f7bd7fc8dcd8 | 31dd9235e0cffc34e2aa797c3eff193a6de60bcb | refs/heads/master | 2020-12-22T01:06:30.607855 | 2020-01-28T00:18:30 | 2020-01-28T00:18:30 | 236,624,918 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 891 | h |
#ifndef DIRTH
#define DIRTH
#include "Eventaware.h"
using namespace std;
class Dirt : public EventAwareSprite{
TextureManager& innerTexture;
public:
Dirt(int x, int y, Board* root) : EventAwareSprite(x,y,root), innerTexture(TextureManager::getTextureDirt()){
setTexture(innerTexture);
... | [
"darono87@gmail.com"
] | darono87@gmail.com |
e9911ff9a2d44ce3c9c664868badc50f149d4da2 | 13c0eb1f39135849c6c5fd32b0edfdea55980f5e | /pLib/Containers/pMap.h | e18a5abed843c5aa2af5f9db00fb3df6c0a018d2 | [
"Unlicense"
] | permissive | bendapootie/pLib | 5027bfa3ae492573f6cc2ae04ea08f95bef42ca6 | fc11f3e9006421590c398ad7a492447a011adeae | refs/heads/master | 2023-03-14T03:28:49.825619 | 2021-02-26T15:37:35 | 2021-02-26T15:37:35 | 270,486,236 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,382 | h | #pragma once
#include "pLib.h"
// TODO: Remove all STL includes
#include <map>
template <class KeyType, class ValueType>
class pMap
{
public:
// Returns the number of entries in the map
int Count() const { return (int)m_map.size(); }
// Returns 'true' if the list has no entries (ie. Count == 0)
bool IsEmpty() co... | [
"petejunk@bluesmith.com"
] | petejunk@bluesmith.com |
477c9c8f9b358788ea53a1540331d90b548438da | 28d10fd75717247883fc580b5347762e30294d4e | /sw/dragon_leds.cpp | 99db2f92a5eda44c076b700929b8a58aa1c2e07b | [] | no_license | acornacorn/dragon2014 | 55fb9e353ed40b38ad9d5953bbfca3b389b1c3d9 | 31a725719eb187a42227260cd5ce1acde8fbb71d | refs/heads/master | 2020-05-07T10:17:06.460902 | 2014-11-01T20:40:13 | 2014-11-01T20:40:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,291 | cpp | #include <dragon_leds.h>
#include <dragon_pins.h>
#include <dragon.h>
#include <ac_printf.h>
#include <ac_led_rgb.h>
#include <ac_counter.h>
#include <Arduino.h>
static const bool DEBUG_LEDS = false;
AcLedRgb g_eyes;
static AcCounter g_led_tst_cnt;
void dragonLedInit()
{
g_eyes.init(dpin_eye_red, dpin_eye_green, ... | [
"acorn@mad.scientist.com"
] | acorn@mad.scientist.com |
e7543078b84b9aa24bd867ea7df9bb18dbf3d8b7 | b2f9110eb40e8efc9c96769de6b128fda32e5e4c | /weak_ptr.cpp | d83268022e8da0bbfb372797971bb78c83d03e21 | [] | no_license | sittu071/cpp | 032d54384517f1aa0962ceec76e1b4f72f63062e | 2078f38a10173b58c58f987017b9141c7a65f284 | refs/heads/master | 2023-07-19T20:04:37.287503 | 2023-07-18T03:23:22 | 2023-07-18T03:23:22 | 226,220,639 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 434 | cpp | #include <iostream>
#include <memory>
using namespace std;
class B;
class A
{
public:
shared_ptr<B> bSharedPtr;
~A(){}
};
class B
{
public:
weak_ptr<A> aWeakPtr;
~B(){}
};
int main()
{
shared_ptr<A> aPtr = make_shared<A>();
shared_ptr<B> bPtr = make_shared<B>();
aPtr->bSh... | [
"noreply@github.com"
] | noreply@github.com |
fb064cca54d299d449642dcc662f43247b40c697 | fda4f7b9bd0a0a834911de3e57820acb165f5e5e | /src/GameOverState.cpp | 1cf01cc3a8d7500eb6b065de48bf024ad3476452 | [] | no_license | keshav2010/SDLtest | 89c69bb9683f7bf5a1d3df04990d67426713e3b2 | 2da02ec7b99ddb47c1452c264578273f60b07dbd | refs/heads/master | 2021-08-30T05:28:59.289859 | 2017-12-03T10:57:30 | 2017-12-03T10:57:30 | 103,767,125 | 0 | 0 | null | 2017-09-26T21:24:30 | 2017-09-16T16:33:39 | C++ | UTF-8 | C++ | false | false | 1,939 | cpp | #include "GameOverState.h"
#include "MenuButton.h"
#include "AnimatedGraphic.h"
#include "LoaderParams.h"
using namespace std;
const string GameOverState::s_gameOverID = "GAMEOVER";
string GameOverState::getStateID() const
{
return s_gameOverID;
}
void GameOverState::s_gameOverToMain()
{
TheGame::Instance()->ge... | [
"sharmakeshav15157@gmail.com"
] | sharmakeshav15157@gmail.com |
88cf1ebfc6982f5c821fd8f36f9fff538091bdcf | 1f0a59409972f72a2a766e2c33927f5aaf6646a6 | /ex1/Person.cpp | 161dab2224ee7beb9a05cbc32e8b3d1008e3de89 | [] | no_license | BorisKolev/Cpp-Assignment | e671a15b5a246a29261bdea8483402188fd8b39e | 8d4f3a4eaba6f59f5509777bc496110d28165463 | refs/heads/master | 2020-12-19T05:32:01.389863 | 2020-01-22T17:59:51 | 2020-01-22T17:59:51 | 235,620,819 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 202 | cpp | #include "Person.h"
Person::Person(const string &name)
{ this->name = name;
}
string Person::getName() const
{ return name;
}
void Person::changeName(const string &newName)
{ name = newName;
}
| [
"bk18145@essex.ac.uk"
] | bk18145@essex.ac.uk |
8be7a074c7c802f5aaf179fa43a807ada3f2631e | 987425005f1abd95a749394716559375818a695a | /各种OJ/LeftistTree.cpp | 91862bb32caa211b926794cc096cac11b9d29119 | [] | no_license | duny31030/My_road_of_ACM | b01db0334f33ce7f26a9fe83bd9e0646bba49a28 | 2de8c8f2d402dfc36f635174104a4923e03030b3 | refs/heads/master | 2020-03-10T04:32:24.505006 | 2019-01-03T07:31:27 | 2019-01-03T07:31:27 | 129,194,697 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,152 | cpp | /*
* =========================================================================
*
* Filename: LeftistTree.cpp
*
* Link:
*
* Version: 1.0
* Created: 2018/10/29 11时09分00秒
* Revision: none
* Compiler: g++
*
* Author: 杜宁元 (https://duny31030.top/), duny310... | [
"duny31030@126.com"
] | duny31030@126.com |
2789e8c1b80dd61433aa44fafecd7dfa64d18e97 | e2aaf43eb816138675e05b8e39142a1984bc0b6f | /src/surface.h | 50eee53f8dd8ca2b0721e3767c918c84c77988aa | [] | no_license | BlockCat/mov_practice_1 | a99893f0d92a4b5ca8a95f8e172cf3ea3a43f1e7 | 81c67d6dfbd9583537587ab41749ba10d66958c1 | refs/heads/master | 2020-03-28T10:56:58.133514 | 2018-09-12T05:44:59 | 2018-09-12T05:44:59 | 148,162,480 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,493 | h | // Template, major revision 6, update for INFOMOV
// IGAD/NHTV/UU - Jacco Bikker - 2006-2016
#pragma once
#include "template.h"
namespace Tmpl8 {
#define REDMASK (0xff0000)
#define GREENMASK (0x00ff00)
#define BLUEMASK (0x0000ff)
typedef unsigned int Pixel; // unsigned int is assumed to be 32-bit, which seems a sa... | [
"zinoonomiwo@gmail.com"
] | zinoonomiwo@gmail.com |
df1bc76e69302e6609c3793a8edd664d6bc04c38 | 2c3d596da726a64759c6c27d131c87c33a4e0bf4 | /Src/VC/bcgcbpro/BCGPRibbonFloaty.cpp | 1928ae6027f91d1ae21b7c5fc3810b39690f29d0 | [
"MIT"
] | permissive | iclosure/smartsoft | 8edd8e5471d0e51b81fc1f6c09239cd8722000c0 | 62eaed49efd8306642b928ef4f2d96e36aca6527 | refs/heads/master | 2021-09-03T01:11:29.778290 | 2018-01-04T12:09:25 | 2018-01-04T12:09:25 | 116,255,998 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,972 | cpp | //*******************************************************************************
// COPYRIGHT NOTES
// ---------------
// This is a part of BCGControlBar Library Professional Edition
// Copyright (C) 1998-2012 BCGSoft Ltd.
// All rights reserved.
//
// This source code can be used, distributed or modified
// only unde... | [
"iclosure@163.com"
] | iclosure@163.com |
96048f8f9887e202e44ddd97427a9a43e0301132 | 930a2c0078e8c68f96c10370224d8057161cd647 | /Jinaria/three problem per day/2020.1/2020.1.24/1328.cpp | 5e82f566de39d257b52082b27b58204485a4a9c1 | [] | no_license | JaechanAn/algorithm-study | bbc45f638bca00230a455e8fb5ef468b568ccce2 | 01b74f662cc4210f4c646f6a303cb3b8ba26ed99 | refs/heads/master | 2022-07-07T06:42:45.095078 | 2020-05-13T07:07:13 | 2020-05-13T07:07:13 | 175,931,313 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 514 | cpp | #include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
#define M 1000000007
long long d[101][101][101];
int main() {
int N, L, R;
scanf("%d %d %d", &N, &L, &R);
d[1][1][1] = 1;
for (int i = 2; i <= N; ++i) {
for (int l = 1; l <= L; ++l) {
for (i... | [
"wlstmdrl0925@gmail.com"
] | wlstmdrl0925@gmail.com |
bf8c353dc0a42086ff9c38cc23ec6fb99da7e9ae | fa13f57accece2474d91bf52d2d3ed435af7be0e | /installing-shibboleth3.re | cdc83726c196229dc609ea6341cfb5996577ed7e | [
"CC-BY-4.0"
] | permissive | dmiyakawa/TechBookFest2016-SAML-Book | 8288649aaa043512f37bad4aa6fa9797af951eab | 3d46216d359994511caf531bf64c09b578a900e7 | refs/heads/master | 2021-01-18T13:18:52.411419 | 2016-08-01T03:24:01 | 2016-08-01T03:24:01 | 59,977,069 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 420 | re | = Shibboleth IdP v3.2.1 をインストールする
もうこれで人生10度目……とは言いませんがShibboleth IdP v3.2.1 をインストールします。
ちなみに「学認技術ガイド」はShibboelth IdP界では常にヲチしておく価値があると思います。
ここでは説明について手を抜いて「学人技術ガイドのここをどうぞ」なんて書いたりします。
| [
"dmiyakawa@mokha.co.jp"
] | dmiyakawa@mokha.co.jp |
3db7216032732478730d243dd38badfcae6a63de | e41f078dd0291b11cad935989b0b6f4ebcf0561b | /Common01/Source/CommonPCH.cpp | e846088416c493945e3ad4ac89b3e93fbdee6808 | [
"Unlicense"
] | permissive | DavidCoenFish/game02 | 27eba00e188b1d5e5a80553fbea5434b0f24e8a9 | 3011cf2fe069b579759aa95333cb406a8ff52d53 | refs/heads/main | 2023-08-23T07:55:39.745268 | 2021-11-02T06:35:41 | 2021-11-02T06:35:41 | 340,514,855 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 109 | cpp | //
// pch.cpp
// Include the standard header and generate the precompiled header.
//
#include "CommonPCH.h"
| [
"fish_dsc@yahoo.co.uk"
] | fish_dsc@yahoo.co.uk |
7fde04ce74105c352cd1ff485e9a2fe464f5f8b5 | eb2db55316acdb3a1cd3a501859ededd66d51c9d | /src/AkaoScanner.cpp | d2c8fb5f57ea41e3e53790a73e1514d59fdfee39 | [] | no_license | soneek/vgmtrans | a7dd5f6c793cc23615585bc688747d3cd2cc4469 | 2eb83288e4386d24c51de8c8c43b42b6ac03400a | refs/heads/master | 2020-12-25T22:28:38.282193 | 2013-08-23T14:30:04 | 2013-08-23T14:30:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,543 | cpp | #include "stdafx.h"
#include "AkaoScanner.h"
#include "AkaoSeq.h"
#include "AkaoInstr.h"
AkaoScanner::AkaoScanner(void)
{
}
AkaoScanner::~AkaoScanner(void)
{
}
void AkaoScanner::Scan(RawFile* file, void* info)
{
UINT nFileLength = file->size();
for (UINT i=0; i+0x60<nFileLength; i++)
{
if (file->GetWordBE(i) !=... | [
"loveemu@gmail.com"
] | loveemu@gmail.com |
8cf21746c22abeb19e65a8802bb659746f47cbd4 | 344db7c30f7bf34d8ae20d5ed040280a8c038f9c | /PAT_Code-master/A1097.cpp | 0199f594c793d7ef5116dce2253d97b92860cc79 | [] | no_license | CoderDXQ/Brush-Algorithm-problem | 75d5a700eae5df8be600fea3a5427c94a9f941b9 | 78cf6a79c7c0fe1a9fc659101ba5ba9196912df5 | refs/heads/master | 2023-06-19T14:20:01.117764 | 2021-07-18T04:59:19 | 2021-07-18T04:59:19 | 253,854,814 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,140 | cpp | #include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn = 100005;
const int TABLE = 1000010;
struct Node { // 定义静态链表(第一步)
int address, data, next;
int order; // 结点在链表上的序号,无效结点记为2*maxn
}node[maxn];
bool isExist[TABLE] = {false}; // 绝对值是否已经出现
bool cmp(Node a, Node b)... | [
"794055465@qq.com"
] | 794055465@qq.com |
06102ca5956c4fcaa58bd2afe6cc2b6b55508e9a | f4b88c1d810114149bb3479bdd460d6c5207b6a8 | /src/xml/XmlNode.cpp | 41bbed4d95f97a2b389ee27d4cb3c667d2a94b3e | [
"Apache-2.0"
] | permissive | crupest/cru | f0523639f791074cb272835d6a3b367846c2a3a7 | 6b14866d4cb0e496d28142f3f42e5f2624d6dc77 | refs/heads/main | 2023-07-09T23:56:34.977412 | 2022-09-06T07:24:04 | 2022-09-06T07:24:04 | 147,010,144 | 3 | 0 | Apache-2.0 | 2022-10-27T12:44:40 | 2018-09-01T15:28:58 | C++ | UTF-8 | C++ | false | false | 1,761 | cpp | #include "cru/xml/XmlNode.h"
#include <algorithm>
namespace cru::xml {
XmlElementNode* XmlNode::AsElement() {
return static_cast<XmlElementNode*>(this);
}
XmlTextNode* XmlNode::AsText() { return static_cast<XmlTextNode*>(this); }
XmlCommentNode* XmlNode::AsComment() {
return static_cast<XmlCommentNode*>(this);
... | [
"crupest@outlook.com"
] | crupest@outlook.com |
d61b4a91b4e5947e9a5ea92beeb7c0e17ce8b13a | 89f3e3fc1d814a51dfc3baa981a0303aed972009 | /EnjoyEngine/EnjoyEngine/ECSComponent.cpp | 7db7ad6eb414f19584d81c121c8d2b517b31b3b8 | [
"MIT"
] | permissive | Jar0T/EnjoyEngine_dll | 6e4acaf03c3f5a754a4e5f9cd87635f9bae02f45 | 41e242a35e886a103e44f82d65586f19e0f4f81e | refs/heads/develop | 2022-12-22T03:58:03.245105 | 2020-09-29T14:06:10 | 2020-09-29T14:06:10 | 256,040,800 | 1 | 0 | MIT | 2020-09-29T14:06:11 | 2020-04-15T21:28:18 | C++ | UTF-8 | C++ | false | false | 1,190 | cpp | #include "pch.h"
#include "ECSComponent.hpp"
namespace EE {
std::vector<std::tuple< ECSComponentCreateFunction, ECSComponentFreeFunction, size_t>>* BaseECSComponent::componentTypes = 0;
std::uint32_t BaseECSComponent::registerComponentType(ECSComponentCreateFunction createfn, ECSComponentFreeFunction freefn, size_... | [
"jarotumula4@gmail.com"
] | jarotumula4@gmail.com |
615d80c05d4ab41b904a21bfcebbd052a7c2316b | 091afb7001e86146209397ea362da70ffd63a916 | /inst/include/nt2/polynomials/include/functions/simd/hermite.hpp | af5c5ad52244481daaa5d9aa4b82d6a3e6354ec5 | [] | no_license | RcppCore/RcppNT2 | f156b58c08863243f259d1e609c9a7a8cf669990 | cd7e548daa2d679b6ccebe19744b9a36f1e9139c | refs/heads/master | 2021-01-10T16:15:16.861239 | 2016-02-02T22:18:25 | 2016-02-02T22:18:25 | 50,460,545 | 15 | 1 | null | 2019-11-15T22:08:50 | 2016-01-26T21:29:34 | C++ | UTF-8 | C++ | false | false | 311 | hpp | #ifndef NT2_POLYNOMIALS_INCLUDE_FUNCTIONS_SIMD_HERMITE_HPP_INCLUDED
#define NT2_POLYNOMIALS_INCLUDE_FUNCTIONS_SIMD_HERMITE_HPP_INCLUDED
#include <nt2/polynomials/functions/hermite.hpp>
#include <nt2/polynomials/functions/scalar/hermite.hpp>
#include <nt2/polynomials/functions/simd/common/hermite.hpp>
#endif
| [
"kevinushey@gmail.com"
] | kevinushey@gmail.com |
566b6dd0ccc56f995b6e32d969d87d735b9f25ad | 3a9958147415bb7355fc4e43c9e16e7b95db8b76 | /src/tecgraf/cd/src/gdiplus/cdwinp.cpp | 7bfee728b1e5c143e6175fce66edab1e973a7b61 | [
"MIT"
] | permissive | sanikoyes/lua-tools | 4bd8d4ce1b77e3c811616894cd86cb17bcf32a8c | 513b3bbc316d8a35896528253415bbe189ede665 | refs/heads/master | 2021-01-21T05:02:52.642050 | 2016-05-30T10:24:38 | 2016-05-30T10:24:38 | 37,987,656 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 86,352 | cpp | /** \file
* \brief Windows GDI+ Base Driver
*
* See Copyright Notice in cd.h
*/
#include "cdwinp.h"
#include "cdgdiplus.h"
#include "wd.h"
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
static void cdstipple(cdCtxCanvas* ctxcanvas, int w, int h, const unsigned char *index);
// For debuging, NOT exporte... | [
"sanikoyes@163.com"
] | sanikoyes@163.com |
cea1b5755295983d0170618c60a830fb47b6c586 | 7a610bf0f786f25b35cf70e9f08ebfc8a95ce5c8 | /FPSim2/src/include/utils.hpp | 3c54330d974830841153d04ee844163a1a64d6a9 | [
"MIT"
] | permissive | chembl/FPSim2 | 6aad8a1113ab8e721c35ef9cb74b26048a4da42e | 814bbb5c3c609ecc8bb624b625a694c1d0723963 | refs/heads/master | 2023-07-23T21:07:39.914384 | 2023-06-26T21:56:35 | 2023-07-18T20:17:46 | 154,705,090 | 82 | 16 | MIT | 2023-07-18T20:17:48 | 2018-10-25T16:41:26 | Python | UTF-8 | C++ | false | false | 775 | hpp | #pragma once
#include <pybind11/numpy.h>
#include <pybind11/pybind11.h>
#include "result.hpp"
namespace py = pybind11;
namespace utils {
uint64_t PyPopcount(const py::array_t<uint64_t> py_query);
py::list BitStrToIntList(const std::string &bit_string);
bool cmp(const Result &l, const Result &r);
... | [
"noreply@github.com"
] | noreply@github.com |
4e54f06692a8419749ade8a0ed8d6731f38b7b5e | dcdeb3d7233612c19db10eb24916d2fd2db45213 | /src/Game.cc | ad5eb88ae45b61f0d35e957478c8682d512a0dad | [] | no_license | lordvlads77/sfml_Examen_Eva | f8826e18c46f73f19489adf41618605ed8b140de | 249ed0d2907f8fdf0b015470b166a3958c093146 | refs/heads/master | 2023-08-15T07:41:07.301842 | 2021-09-15T15:54:11 | 2021-09-15T15:54:11 | 405,277,799 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,263 | cc | #include "Game.hh"
#include "Constants.hh"
#include "Rectangle.hh"
Rectangle* rectangle{new Rectangle(20, 20, 415, 75, sf::Color(0, 6, 18))};
Rectangle* rectangle1{new Rectangle(20, 20, 415, 95, sf::Color(0, 6, 18))};
Rectangle* rectangle2{new Rectangle(20, 20, 415, 115, sf::Color(0, 6, 18))};
Rectangle* rectangle3{ne... | [
"81182279+lordvlads77@users.noreply.github.com"
] | 81182279+lordvlads77@users.noreply.github.com |
f0eb3b0a068a5eeab00454a282d6c0d01b83c3e4 | 9cd376a388eb6a812a8c86340256d92149fc72eb | /ABI/third_party/android-emugl/host/libs/Translator/EGL/EglDisplay.cpp | abd29f712ac153ae6a601d2ee6f4b2dc01b14c14 | [] | no_license | frankKiwi/aid | f290372b031d797cad32264a55110096a777aaf5 | 0207d6101b349cb338e982b4b22ed25dae27dda1 | refs/heads/master | 2023-08-04T12:40:35.996158 | 2021-09-17T06:24:04 | 2021-09-17T06:24:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,658 | cpp | /*
* Copyright (C) 2011 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 by applicable law or... | [
"voquanghoa@gmail.com"
] | voquanghoa@gmail.com |
4927ea532a8e29d0f318cbee8e5097c1d94f7fcb | 751251a0dbb68dc3e8e117c1d4d128cc5ac6d2e9 | /HPC_HW1/hw1/HPC_hw1.cpp | d9f02beb5b9431f6394c62deb440014c59361e95 | [] | no_license | 23sanj/High-Performance-Computing-Assignments | de1db1da6adb7fbbcd66207c2c244e9b40cea76d | 16f87e400191fc18c0be4f34067f1eabaf2d2697 | refs/heads/master | 2020-05-22T10:29:51.935801 | 2017-03-12T01:34:26 | 2017-03-12T01:34:26 | 84,691,509 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 744 | cpp | %..................HPC ASSIGNMENT-1, PROBLEM 1......................%
// dgemm0
#include <iostream>
using namespace std
{
/* data */
};
void MatrixMul(int n)
{
// generate random matrices
int A[3][2] = {{1, 4}, {2, 5}, {3, 6}};
int B[2][3] = {{7, 8, 9}, {10, 11, 12}};
int C[3][3] = {{0, 0, 0... | [
"ssand024@codenames.cs.ucr.edu"
] | ssand024@codenames.cs.ucr.edu |
49c140f65d05a6e4e764cfda4fdf6366bb344bdd | 8e317fcdd3e39ba3702bfca8938592bfb39c3a5b | /SingleCharacterSeparater.cpp | d9397abc481734b2ccdf5227b178c1d4a668f5ae | [] | no_license | PolarLion/CPP-TextClassifer | 9223abbad4cd49b2aa2f257902a6f247b7de2cc8 | d82a8f2eeaa0512f7f52f1b82b26d2f0fbf565e5 | refs/heads/master | 2020-12-02T16:35:05.363646 | 2015-02-04T08:07:58 | 2015-02-04T08:07:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,652 | cpp | #include "SingleCharacterSeparater.h"
#include <iomanip>
#include <iostream>
#include <stdlib.h>
#include <string.h>
using std::vector;
using std::string;
using std::cout;
using std::endl;
using namespace codingtype;
const char SPACE = 32;
SingleCharacterSeparater::SingleCharacterSeparater()
: buffer(nu... | [
"545135082@qq.com"
] | 545135082@qq.com |
36df590ec1fd9f89fb3ca71c4bf41227d9a4501c | b28305dab0be0e03765c62b97bcd7f49a4f8073d | /services/service_manager/sandbox/switches.h | a1615980a0af83d969d357c6e16af54401ac523c | [
"BSD-3-Clause"
] | permissive | svarvel/browser-android-tabs | 9e5e27e0a6e302a12fe784ca06123e5ce090ced5 | bd198b4c7a1aca2f3e91f33005d881f42a8d0c3f | refs/heads/base-72.0.3626.105 | 2020-04-24T12:16:31.442851 | 2019-08-02T19:15:36 | 2019-08-02T19:15:36 | 171,950,555 | 1 | 2 | NOASSERTION | 2019-08-02T19:15:37 | 2019-02-21T21:47:44 | null | UTF-8 | C++ | false | false | 3,773 | h | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SERVICES_SERVICE_MANAGER_SANDBOX_SWITCHES_H_
#define SERVICES_SERVICE_MANAGER_SANDBOX_SWITCHES_H_
#include "build/build_config.h"
#include "servi... | [
"artem@brave.com"
] | artem@brave.com |
75b81eaedcdf17e535e34e24ea6b07d2ca61771c | 87c8e87ca0064bb2dbe2f0da461d6cdaafe58dc2 | /COM classes/ShapeEditor.h | b9de7422b52c25d8d907b6bfebdba0e52dde7ed7 | [] | no_license | jamil-g/MapWInGIS5.2.4 | 5392551ef92ca3dbc4ccd37241caf74e8e2b5ac3 | 3b3b10dba0e1c78af8df398544505a48472ed416 | refs/heads/main | 2023-07-29T02:46:01.453327 | 2021-09-03T22:58:03 | 2021-09-03T22:58:03 | 369,660,295 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,119 | h | // ShapeEditor.h : Declaration of the CShapeEditor
#pragma once
#include "EditorBase.h"
#if defined(_WIN32_WCE) && !defined(_CE_DCOM) && !defined(_CE_ALLOW_SINGLE_THREADED_OBJECTS_IN_MTA)
#error "Single-threaded COM objects are not properly supported on Windows CE platform, such as the Windows Mobile platforms that do... | [
"jamil.garzuzi@gmail.com"
] | jamil.garzuzi@gmail.com |
6a145e540fbd374b419e3ad2d59a24770a995059 | 20df56bfcab462811b4900abf8500123753ed6b6 | /jsoncpp/src/lib_json/json_value.cpp | d07b7ffdc2ad68bcfd63b200c3dae6b7d0ba0382 | [
"BSD-3-Clause"
] | permissive | skonst/tSIP | b477ffe3ea45d53a6bba296fcb03d69b0586d0d6 | 242295ccc24b2a1f8ce3c2fe3afaa60c425096b2 | refs/heads/master | 2022-07-21T15:10:46.044594 | 2020-05-12T22:13:17 | 2020-05-12T22:13:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 40,248 | cpp | #ifdef __BORLANDC__
# pragma hdrstop
#endif
#include <iostream>
#include <json/value.h>
#include <json/writer.h>
#include <utility>
#include <stdexcept>
#include <cstring>
#include <cassert>
#include <mem.h>
#ifdef JSON_USE_CPPTL
# include <cpptl/conststring.h>
#endif
#include <cstddef> // size_t
#ifndef JSON_USE... | [
"tomasz.o.ostrowski@gmail.com"
] | tomasz.o.ostrowski@gmail.com |
bf1d59bc7118a359f97a1a874dd56c9bc1f1fa38 | a1e3bb549b958818becf3408de436b7967cc15c4 | /part2/server.cpp | be676930c01c2d79f75c03cbe211a9ba558aeff5 | [] | no_license | SailakshmiPisupati/os_berkeleys | 14e43e18401a5f7f946429e24b3a7004b69fc407 | 85a1ca1ee3b15b8082bcd4612a26cb6ed255bfa9 | refs/heads/master | 2021-07-11T13:42:28.345763 | 2021-06-07T19:05:05 | 2021-06-07T19:05:05 | 88,349,744 | 1 | 0 | null | 2021-06-07T19:05:06 | 2017-04-15T13:48:46 | C++ | UTF-8 | C++ | false | false | 3,599 | cpp | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <pthread.h>
#include <stdbool.h>
void create_server(short server_port);
void *sendmessages(void *socket_desc);
void *receivemessages(void *socket_desc);
void create_sender... | [
"pika1@umbc.edu"
] | pika1@umbc.edu |
66dd7a45d01c4735fc6378e64749ceaaa8f273c9 | 66e586a13848fb140984102d7513406af73e8bcb | /FileUtil.h | 717a2b481041fe37e9086c8d59854429d4e37945 | [] | no_license | ajunlonglive/chat-2 | 6d11611b436896b7b21dc337c7dd0ee8ae3316aa | 6fa606ecfd9c8effc95b1127c31ed8ed55794200 | refs/heads/master | 2023-03-15T11:43:07.915467 | 2016-09-05T07:01:28 | 2016-09-05T07:01:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,919 | h | // Copyright 2010, Shuo Chen. All rights reserved.
// http://code.google.com/p/muduo/
//
// Use of this source code is governed by a BSD-style license
// that can be found in the License file.
// Author: Shuo Chen (chenshuo at chenshuo dot com)
//
// This is a public header file, it must only include public header fi... | [
"615810790@qq.com"
] | 615810790@qq.com |
b0b18fc5dc241cc2ce4df6afe7b5e64d23d0e62b | 0adb6fe81350f912d04895977018ba1bd30109fd | /ex1.cpp | 50d6f9552559bdbe23342c037249818688578278 | [] | no_license | shoedog/Game-of-Life | b608bea9bd55c291819f7d011abb7243cc224561 | 50adc49bff6b7c92bb43589fb9559a7c84fe62c2 | refs/heads/master | 2021-01-10T03:17:10.650969 | 2015-12-22T09:10:17 | 2015-12-22T09:10:17 | 48,421,887 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,810 | cpp | /******************************************************************************
** Program Filename: Ex1.cpp
** Author: Wesley Jinks
** Date: 1/11/2015
** Description: The main file to implement a Game of Life. Has a menu with options
to input a cell/cells, view world, insert a glider, insert a glider gun,
... | [
"jinksw@flip2.engr.oregonstate.edu"
] | jinksw@flip2.engr.oregonstate.edu |
5a8d38c7f71f54d2f4f2817f50df4657befffd23 | e8081684aa867947f91b8592900329bcd66e8540 | /src/psc_harris_xz.cxx | 8117dfb29d84a59d36f406bf4341c4c8aa27fcb2 | [] | no_license | QJohn2017/psc | 9ec3363d4400f911c838093917275be6177df758 | ffbcc3be154337780a15b343fecb9d48c389ac6d | refs/heads/master | 2023-03-02T05:21:35.787589 | 2020-10-04T23:48:37 | 2020-10-04T23:48:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27,559 | cxx |
#define VPIC 1
#include <psc.hxx>
#include <setup_fields.hxx>
#include <setup_particles.hxx>
#include "../libpsc/vpic/fields_item_vpic.hxx"
#include "../libpsc/vpic/setup_fields_vpic.hxx"
#include "OutputFieldsDefault.h"
#include "psc_config.hxx"
#include "rngpool_iface.h"
extern Grid* vgrid; // FIXME
static RngP... | [
"kai.germaschewski@unh.edu"
] | kai.germaschewski@unh.edu |
1a41a7e5bccb12700b6cdf4f4b3cb4203ed96a51 | f67bec1896bd19dd602b76fec785c9af4defd1a8 | /modules/xnet/src/xnetcache.cpp | bf85a9b21f19dc3ae34381ac2ba95c00e408182b | [] | no_license | dharc/Cadence-Embedded | 2dab66bcc499f46f1ee990c40906790204df9450 | bd9df11edc114ba00386b439791eb9f9a549aec2 | refs/heads/master | 2016-09-06T04:35:49.923343 | 2013-04-22T11:22:39 | 2013-04-22T11:22:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,377 | cpp | #include "xnetcache.h"
#include "xnetconnection.h"
#include "xnetprotocol.h"
using namespace cadence;
using namespace cadence::core;
XNetCache::XNetCache(XNetConnection *conn)
: Handler(OID::local()+OID(0,0,16,0), OID::local()+OID(0,0,17,0xFFFFFFF)) {
for (int i=0; i<CACHE_SIZE; i++)
m_cache[i] = 0;
m_conn = c... | [
"nwpope@gmail.com"
] | nwpope@gmail.com |
7a9db9b67386ead3d9a58db808fd96f387be167f | 31b351b6e5cf30d62e20f573c9cfb067f015ba95 | /c++/classes/operator_overloading.cpp | f8694c1672ba2acafd91f713306747ecacaf0c76 | [] | no_license | SebastianMocny/Gnosis | 69c2013fd9891cfd8027393b940d17286cacc4ed | 791d26859da4911f5cc0f03a6f83ba9b57007beb | refs/heads/master | 2020-12-24T17:27:15.932560 | 2018-11-27T01:46:37 | 2018-11-27T01:46:37 | 13,897,781 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 679 | cpp | /*
*
* This is my template for document boilerplate.
* Last update to this template is: November 12, 2018
*
* TODO: Add licensing info. For example, Apache 2.0
*
*
* Author: Sebastian Mocny
* Date of file creation: Some time before November 12, 2018
*/
#include <iostream>
class Foo {
private:
int val;
... | [
"biggi3lue@gmail.com"
] | biggi3lue@gmail.com |
d00ffe0f17c8f8f76f43b6f3e73d957b6aaaa0da | 880712af57cd0217561a4288e38f4ccfdd376abf | /hlib/src/hoserversocket.cpp | 7389ba7161e48e9c532c41ed405e89def0142b3a | [] | no_license | honzour/hlib | 9ccdfda1221e9fd6d58a183d74e21c2bafb96b15 | 7f250dbd44ee8ba8bcfb33b6a10f33225d846007 | refs/heads/master | 2021-01-01T16:55:11.134043 | 2014-05-26T06:22:46 | 2014-05-26T06:22:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,091 | cpp | #include "hoserversocket.h"
#include "holog.h"
#if hplatform==XW
#include <unistd.h>
#include <fcntl.h>
#elif hplatform==MW
#include <windows.h>
#endif
HoServerSocket::HoServerSocket(int port, int maxConnection) {
this->port = port;
this->maxConnection = maxConnection;
connected = false;
}
bool HoServerSo... | [
"jnem6403@seznam.cz"
] | jnem6403@seznam.cz |
a4055c5cd43b09da2da0c8697892f02ac6ebfadc | dceff34eaceed8f7a52ea908958645104167e3e1 | /src/backup-redundant-features/combined-extern/model/ModelParams.h | 04628c0469d3035c4ce507507ecf86f678f0510f | [] | no_license | zhangmeishan/NNRelationExtraction | a100acc0f6c9d5fd0db7686249b647a21ae908b2 | 8efd8173b2503bc75274b2238b2392476a86a8e9 | refs/heads/master | 2021-01-11T19:48:25.552293 | 2017-07-30T13:23:56 | 2017-07-30T13:23:56 | 79,401,948 | 14 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,891 | h | #ifndef SRC_ModelParams_H_
#define SRC_ModelParams_H_
#include "HyperParams.h"
// Each model consists of two parts, building neural graph and defining output losses.
class ModelParams {
public:
//neural parameters
Alphabet embeded_chars; // chars
LookupTable char_table; // should be initialized outside... | [
"mason.zms@gmail.com"
] | mason.zms@gmail.com |
ef2a9051bd47e936f96184754b5bfaf01ba1e273 | 7881ead3610b10517dbfdd2878af73cb8852a940 | /心率模块读取端/src/ads1292r/ads1292r.cpp | f2798bb9a8be8966c5502d43a52c3ef84bee3461 | [
"MIT"
] | permissive | amedues/2020_TI_competion_question_A | b49ed4a97e7bc0acb0f9da887a47b6dbc86654ec | 7f421ebcd034b5aecf387188ff065d782bef3a7f | refs/heads/main | 2023-01-06T17:21:32.818118 | 2020-11-11T09:23:11 | 2020-11-11T09:23:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,595 | cpp | //////////////////////////////////////////////////////////////////////////////////////////
//
// Arduino Library for ADS1292R Shield/Breakout
//
// Copyright (c) 2017 ProtoCentral
//
// This software is licensed under the MIT License(http://opensource.org/licenses/MIT).
//
// THE SOFTWARE IS PROVIDED "AS... | [
"1020401660@qq.com"
] | 1020401660@qq.com |
0916765d28c689450ab1e5ac356db0ae2afbd633 | 4f8f7b4e2b4819392adb8357047fb49f5c1e2af4 | /BattleTank/Source/BattleTank/Public/Tank.h | 13d6c2b3e204fc3e3ea915ff5da9bb6547859adb | [] | no_license | Puppetz17/04_BattleTank | b48c8715b7b6a2cf164b6de8f2c2222df4c6266e | 569a4054093b37b8d0af7e4aa97be5e747c6c026 | refs/heads/master | 2021-07-13T05:28:22.909287 | 2017-10-13T22:23:30 | 2017-10-13T22:23:30 | 105,777,466 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 925 | h | // Copyright me
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Pawn.h"
#include "Tank.generated.h"
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FTankEvent);
UCLASS()
class BATTLETANK_API ATank : public APawn
{
GENERATED_BODY()
public:
// Called by the engine when actor damage is dealt
virtual float TakeDam... | [
"hadar.itzhaik@gmail.com"
] | hadar.itzhaik@gmail.com |
cf4d91aeeddb08ce178273e3d51f32e8a64da4d7 | 85ea04aceca198cad335672e5eb3009298899cbf | /Algorithms/Greedy/N meetings in one room.cpp | 1f703d406b0fda8d8690eb00461f7e0f57a5dcdd | [] | no_license | sahilalam/CodingPracticeCpp | b0eb877a11fa7b1a79ad9bb73cd8f8de75427afb | 285e83203e434f9779c8c3f77c3ba2a8676a0170 | refs/heads/master | 2023-03-02T01:10:01.727552 | 2021-02-02T19:03:01 | 2021-02-02T19:03:01 | 298,071,610 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,296 | cpp | void merge(int *start,int *end,int s1,int e1,int s2,int e2)
{
int* tmp=new int[e2-s1+1];
int* tmp2=new int[e2-s1+1];
int k=0;
while(s1<=e1 && s2<=e2)
{
if(end[s1]<end[s2])
{
tmp[k]=end[s1];
tmp2[k]=start[s1];
s1++;
k++;
}
... | [
"alamsahil939@gmail.com"
] | alamsahil939@gmail.com |
b3f8b70f95ae5c4c282c98a74d251abab9dc8fcd | 6fd67c8a4b4e5de2eec30af3ed679fbdaee90a99 | /Diploma/Diploma/SelectMouse.cpp | 1ffd922099dcb8e8ed01b83a5051ad59187fd36e | [] | no_license | Aeshylus/Test | 6912ef08828094a2840d87b61fc48c63630442e3 | d4ae1ff98b84cb67650ff6681dc6145fc7e8afb9 | refs/heads/master | 2021-01-25T05:35:40.187114 | 2014-01-29T18:12:37 | 2014-01-29T18:12:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,184 | cpp | #include "stdafx.h"
#include "SelectMouse.h"
#include "Camera.h"
#include "CDiploma3DView.h"
#include "IMouseMovementLogic.h"
#include "MiceMovementLogicFactory.h"
namespace
{
bool _IsWndValid(CWnd* ip_wnd)
{
return nullptr != dynamic_cast<CDiploma3DView*>(ip_wnd);
}
}
/////////////////////////////... | [
"nosatskyy.slava@gmail.com"
] | nosatskyy.slava@gmail.com |
d76a7244a4eb7cfa0601387729ff74b857c85e3f | 49268fd1857d86f2af7b8aba559b833da465c5ca | /MPMissions/DayZ_Epoch_11.Chernarus/build_recipe_dialog.hpp | 993d8f30b6401e673e02a4d83f1fc2e1c1b9aab0 | [] | no_license | Razorsoft/0.6 | f6e0d5172e04b24d2395ceadf90bdd19894e2916 | 1ce65b5c280db252421debc56205ca27fb7f2807 | refs/heads/master | 2021-01-10T21:30:54.782388 | 2013-11-25T22:22:55 | 2013-11-25T22:22:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,525 | hpp | class Build_Recipe_Dialog{
idd = -1;
onLoad="uiNamespace setVariable ['Build_Recipe_Dialog', _this select 0]";
movingenable = true;
onUnLoad="uiNamespace setVariable ['Build_Recipe_Dialog', nil]";
class Controls{
class DialogBox: BOX{
idc = -1;
text = "";
x = 0.211851 * safezoneW + safezoneX;... | [
"evaneo01@hotmail.com"
] | evaneo01@hotmail.com |
98af169b429c431226e712d64ce35b5aced33542 | d353838a4547c9e8d3d678350d9888e52417d65d | /tesseract_4.1.1/src/ccutil/tessdatamanager.h | 3f6da32c9c0546d9dcfce8178cd6d19d3803e3c9 | [
"MIT"
] | permissive | yym439/Tesseract-OCR_for_Windows | d74198d08436abe0121d8c952c096e441f65d9e6 | c4a2b24b26f8f5c686311359f1096db7151da06b | refs/heads/master | 2022-11-07T09:33:23.633294 | 2020-06-30T08:44:29 | 2020-06-30T08:44:29 | 268,446,368 | 1 | 0 | MIT | 2020-06-01T06:48:53 | 2020-06-01T06:48:53 | null | UTF-8 | C++ | false | false | 9,957 | h | ///////////////////////////////////////////////////////////////////////
// File: tessdatamanager.h
// Description: Functions to handle loading/combining tesseract data files.
// Author: Daria Antonova
//
// (C) Copyright 2009, Google Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
//... | [
"438603353@qq.com"
] | 438603353@qq.com |
2fb0edc6850d7228fb44e7c38e3a871964725e0b | 299f8ec0ee8b647be3a60aa6998595fd0306fa65 | /WasabiEngine/WasabiEngine/GraphicEngine/GUI/CEGUIMouseButtonInjectorHandler.cpp | 30216a3bf627a6b057c4f3034d7246c6c052fd6a | [] | no_license | wasabi-labs/wasabi-engine | c210b206aa11a763c5d6fefbbc9331626148939d | 6ea7bbe680086852f2d901e42a568ae0adc28693 | refs/heads/master | 2016-09-05T12:13:27.175503 | 2015-06-29T20:37:44 | 2015-06-29T20:37:44 | 38,264,663 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,647 | cpp | /*
* File: CEGUIMouseButtonInjectorHandler.cpp
* Author: Fran_2
*
* Created on 24 de abril de 2011, 16:58
*/
#include "CEGUIMouseButtonInjectorHandler.h"
using namespace WasabiEngine;
void CEGUIMouseButtonInjectorHandler::handle(const Event* event) {
if (getButtonState(event) == MOUSE_BUTTON_DOWN) {
... | [
"gotusso@gmail.com"
] | gotusso@gmail.com |
f9645dcb7a8784f2604c058db2e007b534df9bf5 | aa1bf1cb584de17ba919b8d547eeb06b953978e3 | /src/rtc_rtp_receive_imp.cc | f6ce1514de57deebfb91d17267fba585fb89c816 | [
"MIT"
] | permissive | wskfjtheqian/libwebrtc | c80844f278be72fa1cd62b81ed454c1f94a77512 | 57aafdc64cd8da06621aaabf4973bd56df712794 | refs/heads/master | 2023-06-17T10:03:00.727463 | 2021-07-05T02:11:34 | 2021-07-05T02:11:34 | 373,116,763 | 1 | 0 | MIT | 2021-07-05T01:48:41 | 2021-06-02T09:53:35 | C++ | UTF-8 | C++ | false | false | 3,211 | cc | #include "rtc_rtp_receive_imp.h"
#include "base/refcountedobject.h"
#include "rtc_audio_track_impl.h"
#include "rtc_dtls_transport_impl.h"
#include "rtc_media_stream_impl.h"
#include "rtc_rtp_parameters_impl.h"
#include "rtc_video_track_impl.h"
namespace libwebrtc {
RTCRtpReceiverImpl::RTCRtpReceiverImpl(
... | [
"wskfjtheqian@163.com"
] | wskfjtheqian@163.com |
3f8b965ef8d377fd7bfd74ddb9c61d814c96b8f2 | 8b5819e69f264ee3d14a4e1c6aebfd338baee237 | /app/src/main/cpp/native-lib.cpp | 3a5c8a87bfb3c4cd1a7047328e5723719eb7ce3a | [
"Apache-2.0"
] | permissive | loy2000/Jiagu | 06b9db3960e80935e9f8b020dea4c78f3f1d674e | 2def77d970ebbaf23a9916f6f78311f7a05922e5 | refs/heads/main | 2023-09-05T07:24:53.821737 | 2021-11-19T06:13:31 | 2021-11-19T06:13:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 263 | cpp | #include <jni.h>
#include <string>
extern "C" JNIEXPORT jstring JNICALL
Java_com_frezrik_jiagu_MainActivity_stringFromJNI(
JNIEnv* env,
jobject /* this */) {
std::string hello = "Hello from C++";
return env->NewStringUTF(hello.c_str());
} | [
"zhouming@paxsz.com"
] | zhouming@paxsz.com |
0395cf3bd469d98011b37c7f1545ff9a78644bc9 | 77170cbcd2c87952763f770d50abd2d8b671f9d2 | /aws-cpp-sdk-ec2/source/model/CreateVolumePermissionModifications.cpp | e65672647adf1c9137c09651d1510b6b2ca6085f | [
"JSON",
"MIT",
"Apache-2.0"
] | permissive | bittorrent/aws-sdk-cpp | 795f1cdffb92f6fccb4396d8f885f7bf99829ce7 | 3f84fee22a0f4d5926aadf8d3303ea15a76421fd | refs/heads/master | 2020-12-03T00:41:12.194688 | 2016-03-04T01:41:51 | 2016-03-04T01:41:51 | 53,150,048 | 1 | 1 | null | 2016-03-04T16:43:12 | 2016-03-04T16:43:12 | null | UTF-8 | C++ | false | false | 3,412 | cpp | /*
* Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file... | [
"henso@amazon.com"
] | henso@amazon.com |
a4be4c5e86005f394249ec8d012984eab5f9dc00 | 36c84b0e38534f768d119cebfd744ed44b04192f | /Tetris/ScreenDef.h | 985c5bbfef1058459556d3919a3ec0e37a3f9df6 | [] | no_license | grygorek/TetrisInMemory | ed849d4ea0af590ba893db766b6f0f99cf7b34f4 | c219fbff389db1afea37eae795be4e6d4e4061a9 | refs/heads/master | 2020-09-09T20:36:26.517615 | 2019-11-13T22:33:21 | 2019-11-13T22:33:21 | 221,561,857 | 2 | 0 | null | 2019-11-13T22:33:22 | 2019-11-13T22:15:16 | null | UTF-8 | C++ | false | false | 1,943 | h | /// @file
///
/// @author: Piotr Grygorczuk grygorek@gmail.com
///
/// @copyright Copyright 2019 Piotr Grygorczuk
/// All rights reserved.
///
/// Redistribution and use in source and binary forms, with or without
/// modification, are permitted provided that the following conditions are met:
///
/// o Redistributions ... | [
"grygorek@gmail.com"
] | grygorek@gmail.com |
65368944eace3b3caad5b819cd00196c0454c12a | e0aeb029f72bf1f14780aa5d57458da6fca95016 | /PDFs/JohnsonSUPdf.hh | de36fe26592e46160b0f20d07c6db06d44ffe4d1 | [] | no_license | AdrianoDee/MyGooFit | ac19ec6352c07fd6d276e425059a133609ffedbe | 4a5ab51ef34e728935e5d607da5d22ec961da1e3 | refs/heads/master | 2021-01-17T01:54:25.248996 | 2017-05-05T17:01:56 | 2017-05-05T17:01:56 | 52,297,083 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 370 | hh | #ifndef JOHNSONSU_PDF_HH
#define JOHNSONSU_PDF_HH
#include "GooPdf.hh"
class JohnsonSUPdf : public GooPdf {
public:
JohnsonSUPdf (std::string n, Variable* _x, Variable* m, Variable* s, Variable* g, Variable* d);
__host__ fptype integrate (fptype lo, fptype hi) const;
__host__ virtual bool hasAnalyticIntegral... | [
"adriano.diflorio@ba.infn.it"
] | adriano.diflorio@ba.infn.it |
3a34dd5697b3590d209e6fd642d55e015854f4f9 | 1bf8b46afad5402fe6fa74293b464e1ca5ee5fd7 | /SDK/BPF_Experience_parameters.h | e02c9d7616d18a344e23c09c883838f82aff77de | [] | no_license | LemonHaze420/ShenmueIIISDK | a4857eebefc7e66dba9f667efa43301c5efcdb62 | 47a433b5e94f171bbf5256e3ff4471dcec2c7d7e | refs/heads/master | 2021-06-30T17:33:06.034662 | 2021-01-19T20:33:33 | 2021-01-19T20:33:33 | 214,824,713 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,382 | h | #pragma once
#include "../SDK.h"
// Name: Shenmue3SDK, Version: 1.4.1
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
// Parameters
//---------------------------------------------------------------------------
// Function... | [
"35783139+LemonHaze420@users.noreply.github.com"
] | 35783139+LemonHaze420@users.noreply.github.com |
0c1c267f1b870c8877da73a53a4c06cec92b5431 | 15f92601d47d390ac454a717074d9661dae6a3ac | /src/zaf/control/layout/anchor_layouter.cpp | 0cc9bed344bf4a33a22c3f4da76b371ec5091277 | [
"MIT"
] | permissive | Zplutor/zaf | 14ddf27bfb61a43fe9cfb5a38b519b25964ce1d7 | 312278af4f2f9cc99748ee8cc357532caafe62a0 | refs/heads/master | 2023-08-05T11:15:30.437396 | 2023-08-02T16:32:42 | 2023-08-02T16:32:42 | 45,374,274 | 15 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 2,949 | cpp | #include <zaf/control/layout/anchor_layouter.h>
#include <zaf/control/control.h>
#include <zaf/creation.h>
namespace zaf {
namespace {
void LayoutChild(
const Rect& current_rect,
const Rect& previous_rect,
Control& child
) {
auto change_single_dimension_with_anchor = [](
bool has_front_anchor... | [
"zplutor@qq.com"
] | zplutor@qq.com |
e7dbeabab1680520593115bd6ecc2141844f66c1 | f4db3fa275cf032eaa0c1db657c23a36d7e62577 | /engine/src/TextureChangeEvent.cpp | 395cdf88a2ff414d06974af41bcc8f83b6bd8bca | [
"MIT"
] | permissive | skryabiin/core | 0e5f7af0c08ebd0118466b5b21023914820eb442 | 13bcdd0c9f3ebcc4954b9ee05ea95db0f77e16f7 | refs/heads/master | 2016-09-05T14:46:03.261125 | 2016-03-02T16:01:56 | 2016-03-02T16:01:56 | 34,462,571 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 605 | cpp | #include "TextureChangeEvent.hpp"
#include "Console.hpp"
#include "EventProcessor.hpp"
namespace core {
TextureChangeEvent::TextureChangeEvent() {
lua_reg("entityId", &entity);
lua_reg("textureName", &textureName);
lua_reg("sourceTextureRect", &sourceTextureRect);
lua_reg("facetId", &facetId);
}
std::st... | [
"jlynem@gmail.com"
] | jlynem@gmail.com |
88d0eaf7580482a98f0f7e4f6c6aa48912e6de06 | 3e5a1b0b6fbede2fbbe495635d86ec3370a2054f | /example/01_basic/main.cpp | 214420335d08aae7d6ba6b73d8a53756ea0da0a2 | [
"Apache-2.0"
] | permissive | TNCT-Mechatech/SerialBridgeMbed | 354364e33be3e6fa167c51f8cb31ee86fc6ccda2 | 6c34823b26eccb3b2ec659820df9ae229cb6c5c6 | refs/heads/main | 2023-03-29T22:59:26.152141 | 2021-04-07T08:13:12 | 2021-04-07T08:13:12 | 338,263,212 | 0 | 0 | Apache-2.0 | 2021-04-07T08:13:12 | 2021-02-12T08:37:00 | C++ | UTF-8 | C++ | false | false | 157 | cpp | #include "mbed.h"
#include "SerialBridge.h"
BufferSerial _serial(USBTX, USBRX,9600,1000);
SerialBridge dev(&_serial);
int main(){
return 0;
} | [
"silverbro007@icloud.com"
] | silverbro007@icloud.com |
d855991a69896977f8ba46c584331638b9ff6d2b | bbac388eb6b53daec63190e2f271a18fe9bfb163 | /abc017/D.cpp | c014ac0d6abca01c74e88927ba6efac147744ae5 | [] | no_license | tatsumack/atcoder | 8d94cf29160b6553b0c089cb795c54efd3fb0f7b | fbe1e1eab80c4c0680ec046acdc6214426b19650 | refs/heads/master | 2023-06-17T23:09:54.056132 | 2021-07-04T13:03:59 | 2021-07-04T13:03:59 | 124,963,709 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,539 | cpp | #include <algorithm>
#include <bitset>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <set>
#include <sstream>
#include <s... | [
"tatsu.mack@gmail.com"
] | tatsu.mack@gmail.com |
3a7cd853ac876b4e8292ed94a587ea079f0ea5dc | 4cf3985b76da8af9b43d96cec1bb72258a6434d4 | /LODConvert/FALCLIB/INCLUDE/MsgInc/LandingMessage.h | f009c3a019f7362a688a35d3dfaac181e14f8f12 | [] | no_license | d16/freefalcon-contrib | 6d235885c1629739d2bc47006c4ec0d1838fa63c | 9995379bd5ed734acfccd30918117c3b3765e5ca | refs/heads/master | 2020-12-24T17:45:02.978021 | 2013-01-17T18:41:28 | 2013-01-17T18:41:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,530 | h | /*
* Machine Generated include file for message "Landing Message".
* NOTE: This file is read only. DO NOT ATTEMPT TO MODIFY IT BY HAND.
* Generated on 01-April-1997 at 18:57:03
* Generated from file EVENTS.XLS by Kevin Klemmick
*/
#ifndef _LANDINGMESSAGE_H
#define _LANDINGMESSAGE_H
/*
* Required Include Files
... | [
"pmvstrm@yahoo.de"
] | pmvstrm@yahoo.de |
98cb46dd684951751d437e9732143752d2f5c21c | f290b09be681c454b4e0f2714f6dbe75caab1fa3 | /src/Quantize.cpp | 8e3189ca909e1e8317db3f86b565eff3718a6084 | [] | no_license | ayu1992/Photoshop | bbd81de80f2c52fa6c7fef8019cd7c26d1dafd2f | bd97f08d8ddedd4459c1afe8dd98a6b1ddb912bd | refs/heads/master | 2020-06-02T18:39:43.203391 | 2015-04-05T22:47:41 | 2015-04-05T22:47:41 | 33,431,249 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 626 | cpp | #include "Quantize.h"
#include "PixelBuffer.h"
#include "ColorData.h"
#include <iostream>
#include <cmath>
using std::cout;
using std::endl;
Quantize::Quantize(int size){};
Quantize::~Quantize(){};
void Quantize::applyQuantize(PixelBuffer * canvas, int bins){
float values = 1.0 / (bins-1);
for(int x = 0; x < canv... | [
"tisisfrustrating@gmail.com"
] | tisisfrustrating@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.