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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
70b8e1af609ff72e540b0dbf468b827cf080c572 | 1cae29bb481e2aaa10d501567c892182155b0a8b | /include/DesignPattern/Creational/Singleton/Singleton.h | b122f4f3a281ad2ca32e7fbf3fdbc749a62f6bb0 | [] | no_license | cart0909/DesignPattern | 8c23d6df3b2acf4e6f3bbbf1728e32f8b81a4de3 | b4cbbc818600d9425628e741c160b67dc3f63387 | refs/heads/main | 2023-07-15T02:18:21.394710 | 2021-08-30T15:59:40 | 2021-08-30T15:59:40 | 398,841,307 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 258 | h | #pragma once
#include <memory>
namespace dp
{
namespace Singleton
{
class Singleton
{
public:
static Singleton* instance();
int mySetting = 0;
protected:
Singleton() = default;
private:
static std::unique_ptr<Singleton> _instance;
};
}
} | [
"yirenliu0909@gmail.com"
] | yirenliu0909@gmail.com |
61106a623c3c1ab9d271cfae3d196fc5ff6516b0 | facebbd162d81c1cf32e84107b4c366713d2ddb1 | /insert-sort.cpp | 39d25ad7cffa1bf09ceaa5fa3729c894b36b28ad | [] | no_license | keyboard3/algorithm | efb001ec4d61e484352f10291fcf3c3b4ea32859 | f0e62e4452ebd7e82bfff7e7d8a90692aa120b1f | refs/heads/main | 2023-07-19T06:38:48.507102 | 2021-09-25T23:00:58 | 2021-09-25T23:00:58 | 374,332,977 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 747 | cpp | #include "iostream"
using namespace std;
/**
* 将无序区域第一个逐个比较插入到前面有序区域的适合位置
* 不断缩小遍历的无序数组,直到至空集
**/
void sort(int *array, int len, bool asc)
{
for (int i = 1; i < len; i++)
for (int j = i; j > 0; j--)
{
if (array[j - 1] > array[j] && asc)
swap(array[j - 1], array[j]);
... | [
"keyboard3@icloud.com"
] | keyboard3@icloud.com |
6572c67945a5e5c61a99bc7c86ee95816fbc5fa9 | 4a252bb4287fb800a40b08fa37bac1765ac5eefe | /DXUT/Core/DXUT.h | 59cae5f3462542e47b91feab6adab516dd1b07c1 | [] | no_license | taehwan642/DirectX9-Game-Engine | 56e9a95e3080768fa41c7d61547fd4ec0e65b0e1 | 9d740edb59ae3d7ec4ebf165195ad3539c4c3e89 | refs/heads/master | 2022-06-16T05:52:24.351452 | 2020-05-07T08:19:25 | 2020-05-07T08:19:25 | 215,502,736 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,982 | h | //--------------------------------------------------------------------------------------
// File: DXUT.h
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//--------------------------------------------------------------------------------------
#pragma once
#ifndef DXUT_H
#define DXUT_H
#ifndef UNICODE
#e... | [
"taehwan642@naver.com"
] | taehwan642@naver.com |
4b568268f308b0d1c271bc1b240cc5df28e798f3 | 5e4e2ae5c863dee1003c064ef70d74c9165fc65e | /bits/bit-swapping.cpp | a1af6e6ca312bb98a15790ea6da265e4cea1b37a | [] | no_license | rootid/fft | 3ec6f0e6ae1be96d531119b2571610646a7256e9 | af187df0eafee37f69d6be95dc22685a96b96742 | refs/heads/master | 2020-12-14T09:24:18.915482 | 2019-07-25T23:52:21 | 2019-07-25T23:52:21 | 46,454,112 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 757 | cpp | #include<bits/stdc++.h>
using namespace std;
#define INT_SZ sizeof(int)*8
int swapBits(int n) {
int zeroOnes=0,oneZeroes=0;
for(int i=0;i<INT_SZ;i+=2) {
zeroOnes=(zeroOnes<<2)|1; //generating the 32bit 010101... no. -> 0xAAAAAAAA
oneZeroes=(oneZeroes<<2)|2; //generating the 32bit 1010... | [
"vsinhsawant@gmail.com"
] | vsinhsawant@gmail.com |
a419a254f820dfa7963e3217db96d9394b6257c6 | 948f4e13af6b3014582909cc6d762606f2a43365 | /testcases/juliet_test_suite/testcases/CWE122_Heap_Based_Buffer_Overflow/s10/CWE122_Heap_Based_Buffer_Overflow__c_src_char_cat_72b.cpp | 5ac873091a10443784e401d86f28d01dcc84004b | [] | no_license | junxzm1990/ASAN-- | 0056a341b8537142e10373c8417f27d7825ad89b | ca96e46422407a55bed4aa551a6ad28ec1eeef4e | refs/heads/master | 2022-08-02T15:38:56.286555 | 2022-06-16T22:19:54 | 2022-06-16T22:19:54 | 408,238,453 | 74 | 13 | null | 2022-06-16T22:19:55 | 2021-09-19T21:14:59 | null | UTF-8 | C++ | false | false | 1,560 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE122_Heap_Based_Buffer_Overflow__c_src_char_cat_72b.cpp
Label Definition File: CWE122_Heap_Based_Buffer_Overflow__c_src.label.xml
Template File: sources-sink-72b.tmpl.cpp
*/
/*
* @description
* CWE: 122 Heap Based Buffer Overflow
* BadSource: Initialize data a... | [
"yzhang0701@gmail.com"
] | yzhang0701@gmail.com |
1ad5c68ff00dc0fb82b7dbc6fe9c859c6ee861fb | b9f92f49089d5dd53e79acad61c103687f50d27c | /new.cpp | b191546fd18992627e2deb79cae2d2c072cf72a0 | [] | no_license | Sabbir1234/Problem-Solving | 54c5cd58c809e724b695843a918bf02ac2d5fff9 | a1cdcb640500ae6926cafbfb082f2ed1190b1fa4 | refs/heads/master | 2022-11-22T02:27:24.464805 | 2020-07-27T14:07:57 | 2020-07-27T14:07:57 | 282,916,027 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 675 | cpp | // CPP program to illustrate using
// std :: upper_bound with vectors
#include <bits/stdc++.h>
// Driver code
int main()
{
std::vector<int> v{ 10, 20, 30, 40, 50 };
// Print vector
std::cout << "Vector contains :";
for (int i = 0; i < v.size(); i++)
std::cout << " " << v[i];
std::cout << "\n";
std::vector<in... | [
"sabbirhimu31@gmail.com"
] | sabbirhimu31@gmail.com |
9e4e92edaed1a7d6f10cb8415418a72689d12d7d | e014e0675c50a68b65db61ea258459e1b852b3b3 | /aula2.cpp | 4348f3502cff32c095d30d404d0fc7c7cb43c1d9 | [] | no_license | victor-mesmo/PooAulas | 15ae6eeec1e249029de6dc55bd709bb06ca0639a | 46e40979f07ac0c13664fc5b1d828e836dd4a377 | refs/heads/master | 2021-01-01T05:23:20.150705 | 2016-05-26T00:02:21 | 2016-05-26T00:02:21 | 59,145,691 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 666 | cpp |
#include <iostream>
#include <string>
using namespace std;
int main()
{
string jog1, jog2;
int vida1 = 20, vida2 = 20;
cout << "Digite o nome do jogador 1:" << endl;
cin >> jog1;
cout << "Digite o nome do jogador 2:" << endl;
cin >> jog2;
cout << " o o" << endl;
cout << ".T./ \\.T." << endl;
... | [
"rodrigues.victor@academico.ifrn.edu.br"
] | rodrigues.victor@academico.ifrn.edu.br |
0d578083a543b0845060ff0f7c5e13463450041d | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /chrome/browser/chromeos/policy/display_rotation_default_handler_browsertest.cc | 142b3b6e83dcc4c1cad240c36b99ea1914ef7a41 | [
"BSD-3-Clause"
] | permissive | ECS-251-W2020/chromium | 79caebf50443f297557d9510620bf8d44a68399a | ac814e85cb870a6b569e184c7a60a70ff3cb19f9 | refs/heads/master | 2022-08-19T17:42:46.887573 | 2020-03-18T06:08:44 | 2020-03-18T06:08:44 | 248,141,336 | 7 | 8 | BSD-3-Clause | 2022-07-06T20:32:48 | 2020-03-18T04:52:18 | null | UTF-8 | C++ | false | false | 14,780 | 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 "chrome/browser/chromeos/policy/display_rotation_default_handler.h"
#include <memory>
#include "ash/display/display_configuration_controller.h"... | [
"pcding@ucdavis.edu"
] | pcding@ucdavis.edu |
b7788483814623fa6fcca3d851be2f57021b63d0 | 927f8ed962de21c20d4baae963ed8ec5fd31632a | /src/sparse/ordering/GeometricReorderingMPI.cpp | cca76526be91b092b699563946b90b6cef7c6dfc | [
"BSD-3-Clause-LBNL"
] | permissive | simonxuluo/STRUMPACK | b0ccc8d18fab8dbd9895fa908c4f79a6d1572486 | b6f381d6e0d1bc3a1941b52cbcc73e024a7e1662 | refs/heads/master | 2023-01-21T13:25:22.805696 | 2020-12-04T00:23:02 | 2020-12-04T00:23:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,763 | cpp | /*
* STRUMPACK -- STRUctured Matrices PACKage, Copyright (c) 2014, The
* Regents of the University of California, through Lawrence Berkeley
* National Laboratory (subject to receipt of any required approvals
* from the U.S. Dept. of Energy). All rights reserved.
*
* If you have questions about your rights to use... | [
"pghysels@lbl.gov"
] | pghysels@lbl.gov |
b4e439868a67ce6292eb8c167ea0246952a5eff0 | 8f595788268636144880086077acf441a3bc25b4 | /solutions/707.design-linked-list.cpp | ebeaa95ec1c8b986f9095c1b38599e832d804e3f | [] | no_license | Keigo-Iwakuma/LeetcodeSubmissions | 1f7456cef8138726ab79ef232e561bd7a60fbc5c | 8180f0f38e7b4083fbc4bf12fe08e3636f352bf5 | refs/heads/main | 2023-05-12T02:18:11.321168 | 2021-06-01T14:57:20 | 2021-06-01T14:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,706 | cpp | /*
* @lc app=leetcode id=707 lang=cpp
*
* [707] Design Linked List
*/
// @lc code=start
class MyLinkedList {
private:
// Struct that is a linked list
struct TreeNode {
int val;
TreeNode* next;
TreeNode(int value)
: val(value)
, next(NULL) {
}
};
... | [
"sym90chn@gmail.com"
] | sym90chn@gmail.com |
6be0e797b401e4ab4343cd278514009cbc18854d | cf532a407e6ba5454060b2cb069f6612c58d6dc0 | /TwoPassAssembler/src/main.cpp | b58cbd965eec09fea3082b3a5b516d46213e1a77 | [] | no_license | jovan-djukic/SystemicSoftwareAssemblerAndLinker | cde48b519f5638b1aefd466d1b54d61054a7a880 | 7a4ec591813a4c5f08ffce131eff1077ee3eeff9 | refs/heads/master | 2021-09-02T02:03:43.531650 | 2017-12-29T17:09:30 | 2017-12-29T17:09:30 | 115,740,106 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 400 | cpp | #include "Assembler.h"
#include <string>
#include <iostream>
int main(int argc, const char **argv) {
int retValue = 0;
if (argc != 3) {
std::cout << "Wrong number of parameters" << std::endl;
retValue = 1;
}
else {
std::string input = std::string(argv[1]);
std::string output = std::string(argv[... | [
"djukicjovan56@gmail.com"
] | djukicjovan56@gmail.com |
635b27924712534b587d958edc6f65de08147389 | 245132e6f263334312b633dc239710b24e0a7aae | /ptlsim/cache/NVMainMemory.h | 8b94cbf9ba675b6e41c1606eab0ddc757a9d3b4b | [] | no_license | xiaoyuanW/hybrid-main-memory | 82daf5f7a24155e3b7bbc70999203f74fcf39c87 | 9ab911cc8d56e55398e746a4c8c060c9e8b10165 | refs/heads/master | 2021-01-10T01:19:30.210631 | 2016-01-05T02:51:33 | 2016-01-05T02:51:33 | 48,995,590 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,845 | h | #ifndef _NVMAIN_MEMORY_H_
#define _NVMAIN_MEMORY_H_
#ifdef NVMAIN
#include <iostream>
#include <fstream>
#include <controller.h>
#include <memoryHierarchy.h>
#include <interconnect.h>
#include <memoryRequest.h>
#include <memoryStats.h>
#include <superstl.h>
#include <statelist.h>
#include <memoryController.h>
//nvmain ... | [
"wxycs1003@gmail.com"
] | wxycs1003@gmail.com |
599fc1722f63fa78d53ad6b1a8e5cf630b12da5b | 01a8d4f2dd5de176287699b5e659b646011427a2 | /FELICITY/Demo/Local_FE_Matrix/MatAssem_Local_FE_Matrix_CodeGen_triangle/FE_Matrices/Block_Assemble_Stiff_Matrix_Data_Type.cc | 3604e83b1e9fa59bcae8bb8cbe7bc8a34b5935c1 | [
"BSD-3-Clause",
"MIT"
] | permissive | brianchowlab/BcLOV4-FEM | 2bd2286011f5d09d01a9973c59023031612b63b2 | 27432974422d42b4fe3c8cc79bcdd5cb14a800a7 | refs/heads/main | 2023-04-16T08:27:57.927561 | 2022-05-27T15:26:46 | 2022-05-27T15:26:46 | 318,320,689 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,029 | cc | /*
============================================================================================
This file contains an implementation of a derived C++ Class from the abstract base class
in 'Block_Global_FE_Matrix.cc'.
NOTE: portions of this code are automatically generated!
Copyright (c) 06-14-2016, Shawn... | [
"ikuznet1@users.noreply.github.com"
] | ikuznet1@users.noreply.github.com |
8c78cac6abdda03c6601cbb6a3886f2b1202fac2 | b8194fee4ddf498b2c1bd302ec4ba9466746250d | /build/Android/Debug/app/src/main/include/Uno.Net.Http.HttpDefa-b19f5e55.h | 249636f5d0c9e8a68636d1558bb1288ff980c6dd | [] | no_license | color0e/Fabric_Fuse_Project | e49e7371c9579d80c9ec96c1f2d3a90de7b52149 | 9b20a0347e5249315cf7af587e04234ec611c6be | refs/heads/master | 2020-03-30T16:49:34.363764 | 2018-10-03T16:26:28 | 2018-10-03T16:26:28 | 151,428,896 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,032 | h | // This file was generated based on '../../AppData/Local/Fusetools/Packages/Uno.Net.Http/1.9.0/HttpDefaultDispatcher.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Object.h>
#include <Uno.Threading.IDispatcher.h>
namespace g{namespace Uno{namespace Net{namespace Http... | [
"limjangsoon@naver.com"
] | limjangsoon@naver.com |
b2e70152997ba28e38eec832216aeb8c75cdaf6a | 45c9fa1d4db371183fe63508b2adfea9c292ccac | /components/safe_browsing/base_blocking_page.cc | b1b57c6b9e590c7db8bbf9f5640b2a0ee1c42fbd | [
"BSD-3-Clause"
] | permissive | nullartist/chromium | b36d2935ca69939d0a3d8afbbfbaee6511311836 | 67d258895c5a8e60401595935894f16ec3186f55 | refs/heads/master | 2023-02-04T16:27:50.904546 | 2017-05-24T19:05:33 | 2017-05-24T19:05:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,762 | cc | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/safe_browsing/base_blocking_page.h"
#include "base/bind.h"
#include "base/lazy_instance.h"
#include "base/memory/ptr_util.h"
#includ... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
2bf3c2d8f5945ee3b2fd41d974956d7deb145d3a | 70450f0c551adf47b450468e424f4f90bebfb58d | /dataio/private/test/physics.cxx | dab3a4aca720fdf52d39c580239765e8bb2cabea | [
"MIT"
] | permissive | hschwane/offline_production | ebd878c5ac45221b0631a78d9e996dea3909bacb | e14a6493782f613b8bbe64217559765d5213dc1e | refs/heads/master | 2023-03-23T11:22:43.118222 | 2021-03-16T13:11:22 | 2021-03-16T13:11:22 | 280,381,714 | 0 | 0 | MIT | 2020-07-17T09:20:29 | 2020-07-17T09:20:29 | null | UTF-8 | C++ | false | false | 2,068 | cxx | /**
copyright (C) 2004
the icecube collaboration
$Id: physics.cxx 169215 2017-05-11 17:43:14Z olivas $
@version $Revision: 169215 $
@date $Date: 2017-05-11 11:43:14 -0600 (Thu, 11 May 2017) $
*/
#include <I3Test.h>
#include <fstream>
#include <icetray/serialization.h>
#include <icetray/I3Logging.h>
... | [
"aolivas@umd.edu"
] | aolivas@umd.edu |
6b65f28f12ee8916467971ff1761a9789ed5fccb | 6b738bd0081ad09b12965ea77be58253e783b442 | /hilti/ctor.cc | f2c96a97bf773f1b04e855ca74d79bbb32496274 | [
"BSD-2-Clause"
] | permissive | FrozenCaribou/hilti | 1f9b4d94aea500dfa50b3f54a9a079cf9e067506 | 10d3653b13268d7c2d1a19e0f675f43c9598a7b5 | refs/heads/master | 2021-01-18T02:59:12.841005 | 2016-05-31T14:02:15 | 2016-05-31T14:02:15 | 40,124,420 | 1 | 0 | null | 2015-08-03T12:49:21 | 2015-08-03T12:49:20 | null | UTF-8 | C++ | false | false | 4,644 | cc |
#include "id.h"
#include "ctor.h"
#include "hilti-intern.h"
#include "expression.h"
using namespace hilti;
std::list<shared_ptr<hilti::Expression>> Ctor::flatten()
{
return {};
}
shared_ptr<Type> ctor::Bytes::type() const
{
auto b = shared_ptr<type::Bytes>(new type::Bytes(location()));
return shared_ptr... | [
"robin@icir.org"
] | robin@icir.org |
c2c2000c2369837f8233a8d7f4e422fea22bc4e5 | 7a5d97bb9179511310447a126df89042b9b52981 | /Server/Source/Main.cpp | 47619703a6520bec0e6e9d58481380579cbeed3c | [] | no_license | wzAdmin/buddyLocate | cf4af4663120bd164802156b28b8492cc6da3841 | 327f86ac4944bb02c9a3171ad24c9445a3a664e1 | refs/heads/master | 2016-09-05T09:46:19.620127 | 2013-05-11T15:45:06 | 2013-05-11T15:45:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,225 | cpp | #include "DB/LoginDB.h"
#include "Net/LoginService.h"
#include "Net/MainServer.h"
#include "Action.h"
#include "Net/Action/ACGetBuddy.h"
#include "Net/Action/LoginMain.h"
#include "Net/Action/ACUploadGps.h"
#include "Net/Action/ACUploadContacts.h"
#include <stdio.h>
int main()
{
Net::LoginService::Instance().Start(Ne... | [
"wudecs2007@126.com"
] | wudecs2007@126.com |
b1b9e3071058d65d3b0aa2d0a54ddde59d9063ad | 9f0b8024b60f607d61dd700546500ec0fbb024f8 | /CameraCalibration2/GLWidget3D.cpp | 9c71ab5f593ee0f4423f41442c6a372216bb4b89 | [] | no_license | gnishida/CameraCalibration2 | cdccd270841557aa750bcf547700e642c34d9a31 | 40a9021344741fc128f581d51d71000803f0aa09 | refs/heads/master | 2020-05-18T12:13:42.037322 | 2015-02-17T20:48:14 | 2015-02-17T20:48:14 | 30,497,126 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,192 | cpp | #include <iostream>
#include <fstream>
#include "GLWidget3D.h"
#include "MainWindow.h"
#include <GL/GLU.h>
#include "Reconstruction.h"
#include <opencv2/nonfree/features2d.hpp>
#define SQR(x) ((x) * (x))
using namespace cv;
GLWidget3D::GLWidget3D(MainWindow* mainWin) {
this->mainWin = mainWin;
// set up the came... | [
"gnishida@purdue.edu"
] | gnishida@purdue.edu |
ef3bb22df7608ed48bd7868ca32e2ffd3fbe023e | 515e447345616288a1e108bdab75fbba3f272c1a | /src/ofxBitmapString.h | 5c1a124cc49297fc9f3401ca3951ff1e8e46bf73 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | alptugan/ofxAppUtils | 937c2b97b17c38a86b2b03a3e26a172ccdc10463 | 82d0f4ca2c8705b75c1b97f2716113a23a9733b5 | refs/heads/master | 2021-05-20T03:12:11.415864 | 2018-07-24T10:38:36 | 2018-07-24T10:38:36 | 252,161,447 | 1 | 0 | NOASSERTION | 2020-04-01T11:56:40 | 2020-04-01T11:56:39 | null | UTF-8 | C++ | false | false | 1,978 | h | /*
* Copyright (c) 2011-2012 Dan Wilcox <danomatika@gmail.com>
*
* BSD Simplified License.
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution.
*
* See https://github.com/danomatika/ofxAppUtils for documentation
*
*/
#pragma... | [
"danomatika@gmail.com"
] | danomatika@gmail.com |
03f3cf7b8a65f615837ca873a971a96493eff311 | 043c9dbc5ee884c3c2bffb9006b768a9e76392be | /include/inom/detail/repr_for.hpp | 3636c57e772654ebea0b7fa5da65aa3943b286a3 | [] | no_license | shoooe/Inom | 57e371ec7b36a3de0a9a82a01d8ab1cd24d97a29 | 5e64d69920524aa146500bfda5d138e25c58cbc0 | refs/heads/master | 2021-05-28T17:58:45.524980 | 2015-04-23T14:34:25 | 2015-04-23T14:34:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 778 | hpp | #pragma once
#include <cstdint>
#include <type_traits>
namespace inom {
namespace detail {
// type to infer the correct integer width
// based on the size of the integer
template<std::intmax_t N, typename _ = void>
struct repr_for {
using type = std::uint8_t;
};
template<std::intmax_t N>
struct repr_for<
N,... | [
"notjefff@gmail.com"
] | notjefff@gmail.com |
7d9aeeb53d91588ae067997cf7e1395403bb33de | 45dd56794fb683b1ed99e477a5e385b5a91228f9 | /src/mask.cpp | 8363a1f455ec437ba1a68b38a45318f00ee36cf7 | [
"Unlicense"
] | permissive | derkreature/img2sky | 925c68e4bb820d1d1c757dffa62506bafea5d99f | affd6d8a237f92a777aafc60cada1eae62a3b608 | refs/heads/master | 2020-04-05T18:28:38.867207 | 2015-05-28T10:07:19 | 2015-05-28T10:07:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,019 | cpp | #include <math.h>
#include <stdlib.h>
#include <iostream>
#include "Geom.h"
#include "Mask.h"
realMask *readMask(std::istream& in)
{
char magicP, magicNum;
int width, height, maxval;
in >> magicP >> magicNum;
in >> width >> height >> maxval;
if( magicP != 'P' )
{
std::cerr << "readMask: T... | [
"rlyeh.nospam@gmail.com"
] | rlyeh.nospam@gmail.com |
629b6f9dd8e413bab15e6cee4f58758f52741180 | c917f30ea34399b56b8ab01d3a8f6162b674fc71 | /AutoPlan/ChildFrm.cpp | a9fe12e5513fd245c3dac8d96e07a43aa87050f7 | [] | no_license | gursuasik/AutoPlan | 0a0061a6ed0b325cb20e8b6212a919099f6d99d2 | 282a0e39de953fb1a87b7fc761ef62867ebd4940 | refs/heads/master | 2021-06-12T01:42:28.076125 | 2016-12-02T06:47:31 | 2016-12-02T06:47:31 | 15,011,873 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,273 | cpp | // ChildFrm.cpp : implementation of the CChildFrame class
//
#include "stdafx.h"
#include "CAPT.h"
#include "MainFrm.h"
#include "ChildFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
... | [
"gursuasik@gmail.com"
] | gursuasik@gmail.com |
a5af1a3b3d635b31a6f60cd6ae512ee2d6d7c567 | 9a0b7426f669f33d654c2b6dcde4f6436e5bc0f4 | /algorithmic_problems/circular_buffer.cpp | 615b0a1453d507106af8cf13c1095329beb9ae36 | [] | no_license | vgupta-mickey/projects_for_review | 345ce99878cefd310ec283af087d8e0604fd41b8 | 61038043b8f8520122dc02d82cf62a2ff7b87b70 | refs/heads/master | 2020-03-19T08:25:20.396457 | 2018-11-02T14:11:14 | 2018-11-02T14:11:14 | 136,202,913 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,046 | cpp | #include <iostream>
#include <mutex>
#include <assert.h>
using namespace std;
class circular_buffer
{
private:
int head;
int tail;
int *data;
int capacity;
int totElements;
mutex read_write_lock;
public:
circular_buffer(int _capacity):
capacity(_capacity+1),
head(0),
tail(0),
totElements(0... | [
"vinod.gupta@verizon.com"
] | vinod.gupta@verizon.com |
c9f34f3171de67f93a52e9d36555591e4163e772 | b4baf833a57e28e86641804ce6a816ca5ce504d7 | /Day4/tasks/catkin_ws/devel/include/pkg/servs.h | 0e62ea84293833b6f3753b0b4e73003b80e46acd | [] | no_license | FatemaHassan/AUCRobotics | 651e943aa484e68f8d478ab981d42abd9357bfc7 | b3dbf623a2d6268fcf8fa2cb669a556f346fa57c | refs/heads/master | 2022-12-11T18:59:27.827481 | 2020-08-29T00:18:47 | 2020-08-29T00:18:47 | 287,020,413 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,259 | h | // Generated by gencpp from file pkg/servs.msg
// DO NOT EDIT!
#ifndef PKG_MESSAGE_SERVS_H
#define PKG_MESSAGE_SERVS_H
#include <ros/service_traits.h>
#include <pkg/servsRequest.h>
#include <pkg/servsResponse.h>
namespace pkg
{
struct servs
{
typedef servsRequest Request;
typedef servsResponse Response;
Reques... | [
"fhaman2010@gmail.com"
] | fhaman2010@gmail.com |
8c7364ce8801ac031631ceafd40aadd626b48bce | cf8ddfc720bf6451c4ef4fa01684327431db1919 | /SDK/ARKSurvivalEvolved_DmgType_Melee_Dino_Herbivore_Medium_MineStone_NoBerries_classes.hpp | 23c32777ea85e3c2c5f190554bb6f327f99bff5a | [
"MIT"
] | permissive | git-Charlie/ARK-SDK | 75337684b11e7b9f668da1f15e8054052a3b600f | c38ca9925309516b2093ad8c3a70ed9489e1d573 | refs/heads/master | 2023-06-20T06:30:33.550123 | 2021-07-11T13:41:45 | 2021-07-11T13:41:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 965 | hpp | #pragma once
// ARKSurvivalEvolved (329.9) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_DmgType_Melee_Dino_Herbivore_Medium_MineStone_NoBerries_structs.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Classes
//-----------------... | [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
3be4ee247516a9c6226f01f5688c5bdc86e27b11 | 4573e9e864746724016d3157123fefdaad27c73b | /Sorting Elements of an Array by Frequency gfg.cpp | 40027aac602b66e0566c37161a7bcbe140e22932 | [] | no_license | sanchitgoel10/365_of_code | 0389a28d88e947d3a1230016ab74b36319b71f27 | 8e57bb5274c30a7d11359a6e4f9d358524894fbc | refs/heads/master | 2021-01-04T22:24:54.870820 | 2020-10-02T13:36:21 | 2020-10-02T13:36:21 | 240,783,118 | 5 | 2 | null | 2020-07-03T16:24:44 | 2020-02-15T20:26:26 | C++ | UTF-8 | C++ | false | false | 1,215 | cpp | #include <bits/stdc++.h>
using namespace std;
#define FastRead ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define int long long int
#define pb push_back
#define mp make_pair
#define pii pair<int,int>
#define mii map<int,int>
#define vec vector<int>
#define mod 1000000007
#define inf 1e18
#define ff first
#defi... | [
"sanchitgoel537@gmail.com"
] | sanchitgoel537@gmail.com |
f054be7a66c3c65aadd885d1b3f3d551a05f18f8 | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/ThirdParty/llvm/3.6.2/include/llvm/Support/CodeGen.h | 243f2dd7498c3b55662b7fcf27a9b3e761d41841 | [
"MIT",
"LicenseRef-scancode-proprietary-license",
"NCSA"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 2,495 | h | //===-- llvm/Support/CodeGen.h - CodeGen Concepts ---------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
7450ca43af4f988820e3bf756a2103723166d0df | 7e6ec7aa30a113650f66e8f945d0b6a2ded825d5 | /XLOOPS-GiNaC_TransformTest/my_fns.cpp | bff6c63b93748728be08610728257e67161a7681 | [] | no_license | quanpla/xloops-ginac | d1db82c0de54a8894deecc99de936488248049d0 | b8d2487ed07da49aa7b7b9e5a054040209734f34 | refs/heads/master | 2020-05-18T03:52:57.026251 | 2009-09-13T14:38:44 | 2009-09-13T14:38:44 | 32,206,011 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,052 | cpp | /*******************************************************************************
**
** xloop-ginacs Project
** 1Loop4Pt implementation
**
**
** HCMUNS,
** June 2008
**
**
** Author(s): Son, D. H. (sondo01@gmail.com)
** Khiem, Phan (phanhongkhiem@gmail.com)
** Quan, Phan (anhquan.phanle@gmail.com)
**************... | [
"anhquan.phanle@d83109c4-a28d-11dd-9dc9-65bc890fb60a"
] | anhquan.phanle@d83109c4-a28d-11dd-9dc9-65bc890fb60a |
eb5320c993af383f45dcd3976cf26dad12677d52 | d569770ef802e1840319750faa5d1bb3caf6921b | /vector_exam.cpp | be8c8fef2eb3642aa6e903126d0068aecc3da3c2 | [] | no_license | shlee85/examples_c_plus | 0869fd92550360d162199f941338198307b59ead | d5ee3bd2d66aceedca3d31061030b81d335f8bd6 | refs/heads/master | 2023-02-05T23:03:25.927195 | 2020-12-24T06:02:37 | 2020-12-24T06:02:37 | 316,404,729 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 588 | cpp | #include <iostream>
#include <vector>
#define V1 0
#define V2 1
using namespace std;
int main(int argc, char* argv[])
{
vector<int> vec;
vec.push_back(10);
vec.push_back(20);
vec.push_back(392);
vec.push_back(30);
vec.push_back(40);
vec.pop_back();
#if V1
for (int i=0; i < vec.size(); i++)
cout << "vec[" ... | [
"never4000@naver.com"
] | never4000@naver.com |
e43a5daf8948588ebd6541a083670540ef448717 | 803439a2c1a07cc058fcd814631de11ad24ab016 | /examples/mnist/test.cpp | f1bb9c26aae776725464de370aefb6b712cea89b | [] | no_license | fenglupeter/naive_cnn | f684259f5373db1ff74d1f3abb0a1ca31a8288e0 | e2581b75df4d864f1ee6819cbd0cae88c3f188ae | refs/heads/master | 2020-04-07T16:10:55.699990 | 2018-11-23T12:11:35 | 2018-11-23T12:11:35 | 158,518,670 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,194 | cpp | /*
Copyright (c) 2013, Taiga Nomi
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditi... | [
"fenglupeter@didiglobal.com"
] | fenglupeter@didiglobal.com |
5363e74dc46acedeb6a71f31c9c66979651ec061 | bad9540214867925ca99fcfe51a8b7bfae17f2c1 | /test/SceneTitle.cpp | 347233b84a78638865f2ea959241ba1b19026310 | [] | no_license | 8bit-TD/DxLib_Action | 522d448e7477c261beb0a9007ad3e9f649a87b2c | 6b8ff835b4fa9a4f0f8a8330d00f66747ccece0c | refs/heads/master | 2020-03-26T15:43:38.276321 | 2018-08-17T02:25:12 | 2018-08-17T02:25:12 | 145,060,991 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 812 | cpp | #include "SceneTitle.h"
#include "pch.h"
SceneTitle::SceneTitle(SceneChanger* changer) : SceneBase(changer) {
}
//初期化
void SceneTitle::Initialize(){
}
//更新
void SceneTitle::Update(){
if (key[KEY_INPUT_G] == 1) {
mSceneChanger->ChangeScene(eScene_Game);//シーンを設定画面に変更
}
if (key[KEY_INPUT_C] == 1) {
mS... | [
"8bittd@gmail.com"
] | 8bittd@gmail.com |
54d63732ff81d644dd70e2bcb4d4fb1581301483 | 5bd642bd2996d5eb128ef8e0bb33b4f81c3ef3a9 | /TP_EndlessRunner/Source/TP_EndlessRunner/TP_EndlessRunnerPlayerController.h | 159f1410deb56e8a5587b5e721d8fea7a400e374 | [
"MIT"
] | permissive | cheburashkalev/ue4-endless-runner | c0505ca4a6786e6369b5c46afbd20d8113e4eca8 | fbb625ba5f4a088766c81a24960844d41b363008 | refs/heads/main | 2023-01-31T17:26:10.749470 | 2020-12-14T16:38:52 | 2020-12-14T16:38:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 652 | h | // Copyright Likotech Software. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/PlayerController.h"
#include "TP_EndlessRunnerPlayerController.generated.h"
UCLASS(minimalapi)
class ATP_EndlessRunnerPlayerController : public APlayerController
{
GENERATED_BODY()
publi... | [
"lionelpinkhard@me.com"
] | lionelpinkhard@me.com |
4fc45d6ea596a04388438ddbc1051e2174cad916 | a2afbecaa7796b3a274462181fa759b7c77ccd99 | /StudentClassroom/main.cpp | 492b3c1e3596a54f546e5852912503f0e00aa36f | [] | no_license | lormenvv/cpp-practice | 88ba511321da12c8ba685cf93277ed4bfc2b5417 | 8ce42723ed648bff64ed2a7df0190d6f5a01bd01 | refs/heads/master | 2023-05-12T09:39:15.247482 | 2021-06-04T03:19:12 | 2021-06-04T03:19:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 946 | cpp | /* Student Grade Book Application – Keep track of students (with a student class that has their name, average, and scores)
in a class and their grades. Assign their scores on tests and assignments to the students and figure out their average
and grade for the class. For added complexity put the students on a bell cur... | [
"david.london7825@gmail.com"
] | david.london7825@gmail.com |
785d73a75543543f4d19b1fdfc4df043c14c0204 | b88eeed20d442c3e164c727a97db7bdf1935b70f | /contrib/brl/bbas/bil/bil_raw_image_istream.cxx | cff8c6f8dbde9f90d77bbd5f0e686b8588581b09 | [] | no_license | huanghailiang/vxl-1.17.0 | be3b4909ef31efc2aa0eb4ee884e5190704ca060 | c3076ac1013f10a532fe6d6b3c5f5b78eb26466e | refs/heads/master | 2021-07-23T04:05:36.954717 | 2017-11-01T07:23:22 | 2017-11-01T07:23:22 | 109,099,265 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,830 | cxx | // This is brl/bbas/bil/bil_raw_image_istream.cxx
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma implementation
#endif
//:
// \file
// \author Andrew Miller
// \date 19 Dec 2011
//
//-----------------------------------------------------------------------------
#include "bil_raw_image_istream.h"
#include <vcl_algorithm.h>... | [
"huanghailiang711@163.com"
] | huanghailiang711@163.com |
94427eb189e4e978b0c0a81a0bc39c9b98aeae54 | a95526f66bf6854af0acff4c177a5f28793af803 | /CCC/CCC01S3.cpp | 4caac5f1231f2c555d6d286b34e5f0f91d3133aa | [] | no_license | TheOneKevin/cs-solutions | 617a015106e468f2abb3b71f92effabbe120015e | 4696deb7f43d80e49b4651d1407b4c44b30f1152 | refs/heads/master | 2022-03-10T07:09:09.572330 | 2019-10-12T03:45:01 | 2019-10-12T03:45:01 | 214,571,960 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,227 | cpp | #include <bits/stdc++.h>
using namespace std;
#define INF 0x3F3F3F3F
#define LSB(n) ((n) & -(n))
#define pow2(n) (1 << (n))
#define mid(n, m) (((m)+(n))/2)
#define _log2(n) sizeof(int) * 8 - __builtin_clz(n) - 1
#define sl(x) (2*(x))
#define sr(x) (sl(x)+1)
typedef pair<int, int> ip;
// CCC '01 S3 - Strateg... | [
"kevindai02@outlook.com"
] | kevindai02@outlook.com |
06fd31973d55f534de2f8070ec79e1380f4f5f34 | 3a42bab0688ea0a61cc8aa87b5c97143035dc269 | /SnakeFML/Grass.cpp | 01f7821e55c9d4aec910bb2fa0d27f299d27e004 | [] | no_license | JonnyPtn/SnakeFML | 71a5c3dadce710f35a8f294dcc455ca1127552c2 | 7bbd16169e0f46a357276a6973e253933b1f2b0d | refs/heads/master | 2021-01-18T22:33:25.255820 | 2017-11-22T01:38:39 | 2017-11-22T01:38:39 | 50,194,946 | 6 | 12 | null | null | null | null | UTF-8 | C++ | false | false | 735 | cpp | //
// Grass.cpp
// SnakeFML
//
// Created by Jonny Paton on 21/11/2017.
//
#include "Grass.hpp"
#include <SFML/Graphics.hpp>
#include <xyginext/ecs/Scene.hpp>
#include <xyginext/ecs/components/Camera.hpp>
GrassRenderer::GrassRenderer(xy::MessageBus& mb) :
xy::System(mb,typeid(this))
{
requireComponent<Grass>()... | [
"jonathan.r.paton@googlemail.com"
] | jonathan.r.paton@googlemail.com |
15885ee96ec994a8f6d616fd1fa555af90bb9a2d | fa54334dec48dc37168a830c9b1826b18bb9c523 | /TP4-E20/Medecin.cpp | 9f76718406c8e2648e383af723394f74a5968e75 | [] | no_license | bgsub/tps_summer | a1940b9807cbcc32600ae962be785aba079b6cd0 | 5ebd1ffa184dad36d67e975d7d7537981f167d78 | refs/heads/master | 2022-11-21T04:15:47.792881 | 2020-07-08T07:45:36 | 2020-07-08T07:45:36 | 263,376,952 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,281 | cpp | //! Class Medecin
//! \authors Ahmed Hammami & Youssef Ben Taleb
//! \date 05 juin 2020
#include <iostream>
#include "Medecin.h"
#include "typesafe_enum.h"
constexpr int PATIENT_INEXSISTANT = -1;
//! Constructeur par paramètre de la classe Medecin
//! \param nom Le nom du medecin
//! \param numeroLicen... | [
"bryanngatshou@gmail.com"
] | bryanngatshou@gmail.com |
0cdee967871fb4d01a2ff222c551563fbce996e6 | 600df3590cce1fe49b9a96e9ca5b5242884a2a70 | /third_party/WebKit/Source/core/workers/WorkletScriptLoader.cpp | f20af726f37f38277d8f2054ecc24624a016213e | [
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"MIT",
"Apache-2.0",
"BSD-3-Clause"
] | permissive | metux/chromium-suckless | efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a | 72a05af97787001756bae2511b7985e61498c965 | refs/heads/orig | 2022-12-04T23:53:58.681218 | 2017-04-30T10:59:06 | 2017-04-30T23:35:58 | 89,884,931 | 5 | 3 | BSD-3-Clause | 2022-11-23T20:52:53 | 2017-05-01T00:09:08 | null | UTF-8 | C++ | false | false | 1,188 | cpp | // Copyright 2016 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 "core/workers/WorkletScriptLoader.h"
#include "core/dom/DOMException.h"
#include "core/dom/ExceptionCode.h"
#include "core/workers/Worklet.h"
n... | [
"enrico.weigelt@gr13.net"
] | enrico.weigelt@gr13.net |
83085e23ea0b13f8b35621bf6a682124c3c50b15 | 84a0885f7b8111db18881f639fac9fa6406a3827 | /BIY/glTexture.cpp | be5fe7a9556d3e6c490b6d8546bbf701e91aabbf | [] | no_license | yomari-code-camp-2k19/BIY | f2e6dde36c65403436eaf72b036876946f4c8226 | 6a7499028d451d88edcfb5e8420351959f6afb8d | refs/heads/master | 2020-04-21T11:39:19.081220 | 2019-02-08T02:26:32 | 2019-02-08T02:26:32 | 169,533,473 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,085 | cpp | #include <iostream>
#include "glTexture.h"
#include "glad/glDebug.h"
Texture2D::Texture2D()
: Width(0), Height(0), Internal_Format(GL_RGB), Image_Format(GL_RGB), Wrap_S(GL_REPEAT), Wrap_T(GL_REPEAT), Filter_Min(GL_LINEAR), Filter_Max(GL_LINEAR)
{
a3GL(glGenTextures(1, &this->ID));
}
void Texture2D::Generate(GLuint... | [
"zeroa5620@gmail.com"
] | zeroa5620@gmail.com |
f5ffad5157cd404295560f48ce13646104b3ac08 | 560090526e32e009e2e9331e8a2b4f1e7861a5e8 | /Compiled/blaze-3.2/blazetest/src/mathtest/lowermatrix/SparseTest2.cpp | d46c83e5337c55ed4088dd9d9509fe8859d8375e | [
"BSD-3-Clause"
] | permissive | jcd1994/MatlabTools | 9a4c1f8190b5ceda102201799cc6c483c0a7b6f7 | 2cc7eac920b8c066338b1a0ac495f0dbdb4c75c1 | refs/heads/master | 2021-01-18T03:05:19.351404 | 2018-02-14T02:17:07 | 2018-02-14T02:17:07 | 84,264,330 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 259,618 | cpp | //=================================================================================================
/*!
// \file src/mathtest/lowermatrix/SparseTest2.cpp
// \brief Source file for the LowerMatrix sparse test (part 2)
//
// Copyright (C) 2012-2017 Klaus Iglberger - All Rights Reserved
//
// This file is part of the ... | [
"jonathan.doucette@alumni.ubc.ca"
] | jonathan.doucette@alumni.ubc.ca |
594677847292abd5de571fffbf4695e6d660372e | 50e0fab30599322daf6831cb18d9b60066976ba7 | /src/Helper/DisplayInfos.hpp | f61a1abd7ec60d367a703b7226ba29521a107c3a | [] | no_license | blockspacer/Tangram2 | 300e5115d52cfe1add537ec9a8df13cf96fa1d96 | caf72bbff712020f39d6e07c3fc3f566b3fa99e7 | refs/heads/master | 2021-04-23T21:01:00.579671 | 2020-03-20T14:34:28 | 2020-03-20T14:34:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 878 | hpp | #pragma once
#include <glm/glm.hpp>
#include <SDL2/SDL_scancode.h>
struct SDL_Window;
class DisplayInfos {
public:
static void Initialize();
static void RefreshSize(SDL_Window* window);
static inline int Width() { return m_windowWidth; }
static inline int Height() { return m_windowHeight; }
stat... | [
"jules.fouchy@ntymail.com"
] | jules.fouchy@ntymail.com |
46e9ff64e012062293d6fa8807ce9d108224d333 | 8b4aca4180d5cf53f54c3c9bf39802902351cd34 | /moderate/pointInCircle/pointInCircle.cpp | 0967528c13a3a3535580f8450d0dd6313717efc4 | [] | no_license | p-lots/codeeval | 31d3b38560ea513a872b83f5eb702dda0a3346aa | aea06e6fd955920c9ba019599035796bda5a0ca6 | refs/heads/master | 2020-05-21T14:40:04.395429 | 2019-05-11T05:04:12 | 2019-05-11T05:04:12 | 186,086,439 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,494 | cpp | #include <iostream>
#include <fstream>
#include <string>
#include <cmath>
using namespace std;
double distanceBetween(double, double, double, double);
void parseLine(string, double&, double&, double&, double&, double&);
int main(int argc, char *argv[])
{
ifstream file(argv[1]);
string line;
while (... | [
"paul.calotta@gmail.com"
] | paul.calotta@gmail.com |
24c46e0995feaf23507e35de75d746edc9f77789 | bc01d89e3b77b9b60afd6f5f8fcad5675b813f8e | /multimediacommscontroller/mmccjitterbuffer/inc/mccjitterbufferobserver.h | a25463de24472cc7125c2d5411dcc4d9461b8347 | [] | no_license | SymbianSource/oss.FCL.sf.mw.ipappsrv | fce862742655303fcfa05b9e77788734aa66724e | 65c20a5a6e85f048aa40eb91066941f2f508a4d2 | refs/heads/master | 2021-01-12T15:40:59.380107 | 2010-09-17T05:32:38 | 2010-09-17T05:32:38 | 71,849,396 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,216 | h | /*
* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.h... | [
"kirill.dremov@nokia.com"
] | kirill.dremov@nokia.com |
22e0ade7373d3d8da671868dbdfd7033033b74bf | 78b28019e10962bb62a09fa1305264bbc9a113e3 | /common/numeric/long/signed_io.h | 5a7d52df468eaedc0a1b20239ae061598a75174b | [
"MIT"
] | permissive | Loks-/competitions | 49d253c398bc926bfecc78f7d468410702f984a0 | 26a1b15f30bb664a308edc4868dfd315eeca0e0b | refs/heads/master | 2023-06-08T06:26:36.756563 | 2023-05-31T03:16:41 | 2023-05-31T03:16:41 | 135,969,969 | 5 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,186 | h | #pragma once
#include "common/numeric/long/signed.h"
#include "common/numeric/long/unsigned_io.h"
#include <iostream>
#include <istream>
#include <ostream>
#include <string>
namespace numeric {
namespace nlong {
inline Signed SignedParse(const std::string& s, unsigned base = 10) {
return s.empty()
? Si... | [
"alexeypoyarkov@gmail.com"
] | alexeypoyarkov@gmail.com |
d6b6951fb23341fd4c3d1c6bb779dc92c673176f | a3e31982e737cd008d7cdd47258a01b56f254dba | /Assignments/Assignment _3/Gaddis_8thEd_Chap4_Prob4_MagicRectangle/main.cpp | 6340c58752439ed5f352316034cfa029709d01a9 | [] | no_license | Xyrilbc25/CelestinoXyril_CSC5_Spring2017 | 5c6f249df95f2b61d07346506ab82940924c36b2 | 4bd6f526f2ecc177a61fc83d130b51ed01065653 | refs/heads/master | 2021-05-20T17:35:48.928894 | 2017-05-25T19:36:57 | 2017-05-25T19:36:57 | 84,239,342 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,515 | cpp | /*
* File: Gaddis_8thEd_chap4_Prob4_AreaRectangle
* Author: Xyril Celestino
* Created on March 21, 2017, 11:25 AM
* Purpose: Program that calculates the areas of two rectangles
* and decides which rectangle has the greater area.
*/
//System Libraries
#include <iostream> //Input - Output Library
u... | [
"xyrilbc@yahoo.com"
] | xyrilbc@yahoo.com |
2838b0de9bf9d15277e7248e04131a4bf98f5761 | 6e4ea13153dc71a947839de871bdd3fda80aa8b1 | /Graph.h | c7ed7530be45e6f120012cf045a5fa6722e271a4 | [] | no_license | katrinadelorenzo/Graph-Building | c08101f29b3afabb2e979be844ce06d1f9b80f9d | 6fdabe8c831187632d399de61b50325557bc9578 | refs/heads/main | 2023-03-25T07:04:51.619196 | 2021-03-23T16:37:46 | 2021-03-23T16:37:46 | 350,784,458 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,132 | h | #include <iostream>
#include <vector>
#include <list>
#include <unordered_map>
#include <string>
#include <assert.h>
using namespace std;
typedef string NodeType;
//A graph where each node is a string
class Graph{
public:
Graph(){
directed=true;
}
//Create a graph object with the given nodes
//and ... | [
"katrinadelorenzo1@gmail.com"
] | katrinadelorenzo1@gmail.com |
15ab037343293b7ab5b00b5835e51db8763ed643 | 09a4962b93c196f2f8a70c2384757142793612fd | /Dripdoctors/build/Android/Preview/Dripdoctors/app/src/main/include/Fuse.Scripting.V8.Handle.h | f7f4804d82e61b52578d64daa214147c1693a446 | [] | no_license | JimmyRodriguez/apps-fuse | 169779ff2827a6e35be91d9ff17e0c444ba7f8cd | 14114328c3cea08c1fd766bf085bbf5a67f698ae | refs/heads/master | 2020-12-03T09:25:26.566750 | 2016-09-24T14:24:49 | 2016-09-24T14:24:49 | 65,154,944 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 750 | h | // This file was generated based on C:\ProgramData\Uno\Packages\Fuse.Scripting.V8\0.32.14\$.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.h>
namespace g{namespace Fuse{namespace Scripting{namespace V8{struct Handle;}}}}
namespace g{
namespace Fuse{
namespace Scripti... | [
"jimmy_sidney@hotmail.es"
] | jimmy_sidney@hotmail.es |
481d93197ad3ce305675b4e08a71f713d9da5a48 | 81fd927b6d0a61ce445f1f9c4393da764d34c0fa | /1303/DR/5/src/smart_bot.cpp | 812faf0d86ae4a6e6b10d4e5f4acdb95484af623 | [] | no_license | elefus/ROS-course | 4711e69e11bf86e712216da421672c07c2ba5400 | 0893850882f084d359b8f18fd199d3dcdff0b2d2 | refs/heads/master | 2021-01-20T12:31:01.745188 | 2017-02-21T09:47:06 | 2017-02-21T09:47:06 | 82,660,544 | 0 | 0 | null | 2017-02-21T09:23:14 | 2017-02-21T09:23:13 | null | UTF-8 | C++ | false | false | 1,411 | cpp | #include "smart_bot.h"
SmartBot::SmartBot(NodeHandle & nodeHandler, float x, float y, int id, int friendId)
: Bot(nodeHandler, id, x, y)
{
this->friendId = friendId;
startPoint.x = x;
startPoint.y = y;
ostringstream sout;
sout << "/bot" << friendId << "/pose";
friendTopicName = sout.str();
sout.str("... | [
"Roman.eltech@gmail.com"
] | Roman.eltech@gmail.com |
3c9b875886c92f8af2ad88d3c5f0f0b83102f817 | 3b9b4049a8e7d38b49e07bb752780b2f1d792851 | /src/chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer_win.cc | c978f3146ee972bb9c3e64912d9d19a225395b26 | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | webosce/chromium53 | f8e745e91363586aee9620c609aacf15b3261540 | 9171447efcf0bb393d41d1dc877c7c13c46d8e38 | refs/heads/webosce | 2020-03-26T23:08:14.416858 | 2018-08-23T08:35:17 | 2018-09-20T14:25:18 | 145,513,343 | 0 | 2 | Apache-2.0 | 2019-08-21T22:44:55 | 2018-08-21T05:52:31 | null | UTF-8 | C++ | false | false | 4,417 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.h"
#include <utility>
#include "base/file_version_info.h"
#include "ba... | [
"changhyeok.bae@lge.com"
] | changhyeok.bae@lge.com |
869bde9dbcc05c0c5a4f14c514aef25bd37dbf62 | 9b4f6fa69ec833198d5e27bef0453ffce21da316 | /09-04_pq/test_greater.cpp | 2929d84b5bd65f74a0b313b34044ec44d488213e | [] | no_license | nattee/data2019 | cec667fc90d35689815557a9f4c546fa11f35a63 | 3f9373bf6fbaac4ec83bd4e7beba160e5f63eb42 | refs/heads/master | 2020-07-04T15:37:10.427297 | 2019-10-16T04:04:14 | 2019-10-16T04:04:14 | 202,326,521 | 2 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 198 | cpp | #include <iostream>
#include <vector>
using namespace std;
int main() {
std::greater<int> comp;
if (comp(1,3)) {
cout << "YES " << endl;
} else {
cout << "NOT YES " << endl;
}
}
| [
"nattee@gmail.com"
] | nattee@gmail.com |
c2f876ac62c88ce8920c42a3029f12291a3781ee | eaf5c173ec669b26c95f7babad40306f2c7ea459 | /abc032/abc032_a.cpp | 14ac8c7a1fccfb5aad6f91e85745f7faa2af347d | [] | no_license | rikuTanide/atcoder_endeavor | 657cc3ba7fbf361355376a014e3e49317fe96def | 6b5dc43474d5183d8eecb8cb13bf45087c7ed195 | refs/heads/master | 2023-02-02T11:49:06.679743 | 2020-12-21T04:51:10 | 2020-12-21T04:51:10 | 318,676,396 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,191 | cpp | #include <bits/stdc++.h>
#include <cmath>
using namespace std;
typedef long long ll;
//typedef unsigned long long ll;
#define rep(i, n) for (ll i = 0; i < (n); ++i)
//#define rep(i, n) for (int i = 0; i < (n); ++i)
#define sz(x) ll(x.size())
//typedef pair<int, int> P;
typedef pair<ll, ll> P;
//const double INF = 1e1... | [
"riku@tanide.net"
] | riku@tanide.net |
50e4f87a4e4c0a6ffbaacffda5d04acdc2896296 | 102eae403665433dc48f48196a7e9210ca344678 | /MultiThreads/Generated Files/winrt/impl/Windows.UI.Xaml.Automation.Peers.0.h | d64aadc91601611d7ac00cca14e811bc5d8d0aaf | [] | no_license | AIchemists/multiThreads | 5fd583c46314296cc745d3afa23dbe1994dff9f6 | df57a18dff84cd51eda31184a9ba1c811d30e2c0 | refs/heads/master | 2022-12-18T16:09:57.390044 | 2020-09-22T01:57:58 | 2020-09-22T01:57:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 334,265 | h | // WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.200917.4
#ifndef WINRT_Windows_UI_Xaml_Automation_Peers_0_H
#define WINRT_Windows_UI_Xaml_Automation_Peers_0_H
WINRT_EXPORT namespace winrt::Windows::Foundation
{
struct Point;
struct Rect;
}
WINRT_EXPORT namespace winrt::Windows::Foun... | [
"jicheng@yahoo.com"
] | jicheng@yahoo.com |
d4680df0d2ca5937fa1e4c3bcf88cbb7065984e4 | eee754c98de0227c9de19c4aa16e76e3f3779620 | /src/sudoku_solver.cpp | f4da9358e8771b958bd51153da63cc7fc55085e1 | [] | no_license | pokedigi596/sudoku_SFLA | e3610abbc20861e3168c83a95e3425047dae94b9 | 513284dd6871b956367606accdd0368bc38f3720 | refs/heads/main | 2023-06-03T04:26:12.688230 | 2021-06-20T14:35:56 | 2021-06-20T14:35:56 | 378,665,000 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,547 | cpp | #include "../inc/sudoku_solver.h"
int run = 0;
void debug(string puzzle)
{
int size = sqrt(puzzle.length());
int order = sqrt(size);
for (int i = 0; i < 3 * (size + order) + 1; i++) cout << '=';
cout << endl;
for (int i = 0; i < size; i++)
{
printf("%c", '|');
for (int j = 0; j < size; j++)
{
if (puzzl... | [
"pokedigi596@gmail.com"
] | pokedigi596@gmail.com |
8aaa7c784a725a5bc5a1d4706e5bcbe45b2a6e14 | d6258ae3c0fd9f36efdd859a2c93ab489da2aa9b | /fulldocset/add/codesnippet/CPP/m-system.io.directoryinf_4_1.cpp | fc5734fdb7c95fd6e65962beb19e359eb74a55a1 | [
"CC-BY-4.0",
"MIT"
] | permissive | OpenLocalizationTestOrg/ECMA2YamlTestRepo2 | ca4d3821767bba558336b2ef2d2a40aa100d67f6 | 9a577bbd8ead778fd4723fbdbce691e69b3b14d4 | refs/heads/master | 2020-05-26T22:12:47.034527 | 2017-03-07T07:07:15 | 2017-03-07T07:07:15 | 82,508,764 | 1 | 0 | null | 2017-02-28T02:14:26 | 2017-02-20T02:36:59 | Visual Basic | UTF-8 | C++ | false | false | 685 | cpp | using namespace System;
using namespace System::IO;
int main()
{
// Specify the directories you want to manipulate.
DirectoryInfo^ di1 = gcnew DirectoryInfo( "c:\\MyDir" );
try
{
// Create the directories.
di1->Create();
di1->CreateSubdirectory( "temp" );
//This ope... | [
"tianzh@microsoft.com"
] | tianzh@microsoft.com |
5a92b5126e6558a2545b3c80056158432b47d470 | 1dff02275f30fe1b0c5b4f15ddd8954cae917c1b | /ugene/src/corelibs/U2Core/src/datatype/U2Attribute.h | f99bbd807a3122ae5eb4f24c9766c308eddf299b | [
"MIT"
] | permissive | iganna/lspec | eaba0a5de9cf467370934c6235314bb2165a0cdb | c75cba3e4fa9a46abeecbf31b5d467827cf4fec0 | refs/heads/master | 2021-05-05T09:03:18.420097 | 2018-06-13T22:59:08 | 2018-06-13T22:59:08 | 118,641,727 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,833 | h | /**
* UGENE - Integrated Bioinformatics Tools.
* Copyright (C) 2008-2012 UniPro <ugene@unipro.ru>
* http://ugene.unipro.ru
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version... | [
"igolkinaanna11@gmail.com"
] | igolkinaanna11@gmail.com |
a93a32bd3dcf1b686436713a6f46d17093c707dd | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir29315/dir29712/dir30926/dir30964/file30994.cpp | 1fbc212554976264572a3af4ad3fdbf1ae7c9dbf | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #ifndef file30994
#error "macro file30994 must be defined"
#endif
static const char* file30994String = "file30994"; | [
"tgeng@google.com"
] | tgeng@google.com |
64d7cb15801eec1659658fcbf074c639ece65d0e | 24f26275ffcd9324998d7570ea9fda82578eeb9e | /cc/layers/texture_layer_impl.cc | 20f21f7ab0d43e2964d6be57758f0a017d8b9833 | [
"BSD-3-Clause"
] | permissive | Vizionnation/chromenohistory | 70a51193c8538d7b995000a1b2a654e70603040f | 146feeb85985a6835f4b8826ad67be9195455402 | refs/heads/master | 2022-12-15T07:02:54.461083 | 2019-10-25T15:07:06 | 2019-10-25T15:07:06 | 217,557,501 | 2 | 1 | BSD-3-Clause | 2022-11-19T06:53:07 | 2019-10-25T14:58:54 | null | UTF-8 | C++ | false | false | 11,271 | cc | // Copyright 2011 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 "cc/layers/texture_layer_impl.h"
#include <stddef.h>
#include <stdint.h>
#include <vector>
#include "base/strings/stringprintf.h"
#include "cc... | [
"rjkroege@chromium.org"
] | rjkroege@chromium.org |
998e2c0b38c0030b5927d1d75bd411ae46e6effc | 8b71e5bf7385f545ef5b2542d98655e5bfacb41c | /examples/CouplingLBNS/src/examples/iqn/tarch/plotter/griddata/regular/CartesianGridArrayWriter.cpp | d3f371acd0550a66ba2d90366dae48204c2be8fc | [] | no_license | ascodt-users/ascodt-nightly | 1494f695ffb6ef22c81a36c379beb9ec8837325f | 35d8222c9ea39ece35987c97946fd9fd0f7e794a | refs/heads/master | 2020-05-31T08:45:35.308852 | 2014-09-22T03:43:39 | 2014-09-22T03:43:39 | 10,525,634 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,324 | cpp | #ifndef PRECICE_NO_MPI
#include "mpi.h"
#endif
#include "tarch/plotter/griddata/regular/CartesianGridArrayWriter.h"
tarch::logging::Log tarch::plotter::griddata::regular::CartesianGridArrayWriter::_log( "tarch::plotter::griddata::regular::CartesianGridArrayWriter" );
tarch::plotter::griddata::regular::Cartesi... | [
"atanasoa@in.tum.de"
] | atanasoa@in.tum.de |
af40e8fa6bc21886b35922842258a86c6166b44d | 1d87fc85ca52643a39a9a38f52a2d4fa93752cb4 | /2-intel tbb/src/main.cpp | 291b33c6e97a40b28c0d0d61e57d6b25b24a66dc | [] | no_license | sandylewat/hpc-things | 88c56b309e8e799e0a749893cfa3cdf2dcb29b26 | a1121a4fa2e5f48582f32cec9679114989bbe2d9 | refs/heads/master | 2020-12-24T12:40:29.025148 | 2016-11-14T04:57:48 | 2016-11-14T04:57:48 | 72,964,671 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,918 | cpp | #include <iostream>
#include "tbb/tbb.h"
#include <iomanip>
#include <time.h>
#include <math.h>
using std::setw;
using namespace tbb;
using namespace std;
int get_nth_prime_serial(int n);
int nth_prime_upper(int n);
int get_nth_prime_parallel(int n, int threads_size);
int main(int argc, const char * argv[]) {
tbb... | [
"sandy@xtremax.com"
] | sandy@xtremax.com |
6e40b9b19e4a79d60e6b6b8157110316f7594e8e | d9dd9374c9828ee894fbe55dc0424eb4bac045b7 | /lframework/resource/load_mesh.h | 4e28337564fa665cfdf95ca54d5232b0ed2ceac4 | [] | no_license | taqu/lime | 60cd884e8ce4ce44d00bfa2c31dfdff52357c355 | af4ca1aa9f6e28fb9547088cca5b9e3fced49ed7 | refs/heads/master | 2020-12-24T14:10:26.711762 | 2018-10-07T23:10:36 | 2018-10-07T23:10:36 | 34,679,770 | 1 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 566 | h | #ifndef INC_LFRAMEWORK_LOADMESH_H_
#define INC_LFRAMEWORK_LOADMESH_H_
/**
@file load_mesh.h
@author t-sakai
@date 2016/11/23 create
*/
#include "load.h"
#include <lmath/geometry/Sphere.h>
namespace lfw
{
class LoadMesh
{
public:
//Char name_[MaxNameSize];
s16 geometry_; /// ジオメトリインデックス
... | [
"taqu2920.dev@gmail.com"
] | taqu2920.dev@gmail.com |
f7107ae308365301de8c9c4999655043c511922c | 22eec4e5979b3e14e4817f62cc9c7309247ef900 | /codechef/OCT20B/Chef_and_Easy_Queries.cpp | 190dae366c1c992ac51c125c8e8cc64ce3ebf2a9 | [] | no_license | siddhantkhandelwal/competitiveprog-submissions | 0cbf6d9e811c0c51a9770813ddde240012b0c596 | 4b9e5c86afc74219baaea3ede87e74a37866c143 | refs/heads/master | 2021-08-19T05:16:31.715397 | 2021-06-22T11:42:37 | 2021-06-22T11:42:37 | 130,892,918 | 0 | 0 | null | 2020-10-01T08:01:18 | 2018-04-24T17:49:08 | C++ | UTF-8 | C++ | false | false | 791 | cpp | #include <bits/stdc++.h>
#define ll long long int
using namespace std;
int main()
{
ll t;
cin >> t;
while (t--)
{
ll n, k;
cin >> n >> k;
ll carry = 0;
ll i = 0;
bool flag = false;
while (i < n)
{
i++;
ll temp = 0;
... | [
"siddhantrkhandelwal@gmail.com"
] | siddhantrkhandelwal@gmail.com |
036d63a3a32e0706f8b323ff3083b85213807545 | 90dfdaceeb0ec389a702d43403dbe2f6257bda07 | /BookManager/AddDialog.cpp | c94653147e81c79e26459b13fcc34986d0aa8248 | [
"MIT"
] | permissive | GCY/NTCU-CSIE-Project | a4ec15e2e0abc2be8037f9a4826af4e7e28c65d9 | 25ce4c4586c7a68fc3935295635063e07c8d4e42 | refs/heads/master | 2020-12-30T09:58:27.536908 | 2020-06-29T03:49:33 | 2020-06-29T03:49:33 | 30,516,643 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,453 | cpp | #include "AddDialog.h"
IMPLEMENT_CLASS(AddDialog,wxDialog)
BEGIN_EVENT_TABLE(AddDialog,wxDialog)
EVT_BUTTON(ID_ADD_RESET,AddDialog::OnReset)
END_EVENT_TABLE()
AddDialog::AddDialog()
{
Init();
}
AddDialog::AddDialog(wxWindow *parent,wxWindowID id,const wxString &caption,const wxPoint &pos,const wxSize &size,lo... | [
"gcy626@gmail.com"
] | gcy626@gmail.com |
2cdb3b9af81714844a90c306aa9b189a1e1e9826 | e92e011e43f6e2eaa1e14c1ddeed4a2dd5351245 | /tools/cmake-3.20.3/Source/cmGlobalXCodeGenerator.cxx | d6cc423bfac913325810ea8648defb236955039a | [
"BSD-3-Clause"
] | permissive | wangnan2021/tool-function | 9214f7fa71ab682204a227da08c3db1ac68de4ca | a1a33f93f0286cbe3d5c3bea826592e93d9b9dbb | refs/heads/master | 2023-08-29T01:28:17.442683 | 2021-10-09T02:09:06 | 2021-10-09T02:09:06 | 415,178,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 177,043 | cxx | /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmGlobalXCodeGenerator.h"
#include <algorithm>
#include <cassert>
#include <cstdio>
#include <cstring>
#include <iomanip>
#include <sstream>
#include <unordered_... | [
"wangnan411570@gmail.com"
] | wangnan411570@gmail.com |
727da3b9e9252cae1ac5a079bb4f742c089379b6 | fe4d62022c94aa318d759af8a0f365f111ca18bf | /src/ConEmuDW/ConEmuDw.cpp | 1b12b1317924ff608862ba91e0ebbc714ae094cd | [
"BSD-3-Clause"
] | permissive | FrankHB/ConEmu | 01d05a8ed92cbc7ed4c8a5df462df7f60a7d6a1a | 167a114ffa52ac6c0d8821d72bd42297bb02771a | refs/heads/master | 2023-05-14T12:41:36.359379 | 2020-11-25T00:36:33 | 2020-11-25T00:36:33 | 242,414,130 | 0 | 0 | BSD-3-Clause | 2020-02-22T21:27:57 | 2020-02-22T21:27:56 | null | UTF-8 | C++ | false | false | 63,238 | cpp |
/*
Copyright (c) 2009-present Maximus5
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the follo... | [
"ConEmu.Maximus5@gmail.com"
] | ConEmu.Maximus5@gmail.com |
fcf36eab5ac75df7919a91a15fad1da8b51c8bea | 251413d8c6c34086debc828e5a56088c0f3cf4cf | /GgafDx/src/jp/ggaf/dx/manager/EffectConnection.cpp | 2c3b14fce5801e16c20f5ca06cc96f07026856ea | [] | no_license | gecchi/MyMain01 | a7311a3e4659a140dd1127b2ea592e7f1ed1a22b | 31ada3d4a434bea4dcd42fc867a52378493b0853 | refs/heads/master | 2023-09-01T14:30:06.410655 | 2023-08-30T14:39:38 | 2023-08-30T14:39:38 | 13,404,587 | 19 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 424 | cpp | #include "jp/ggaf/dx/manager/EffectConnection.h"
using namespace GgafDx;
EffectConnection::EffectConnection(const char* prm_idstr, Effect* prm_pEffect)
:GgafCore::ResourceConnection<Effect>(prm_idstr, prm_pEffect) {
}
void EffectConnection::processReleaseResource(Effect* prm_pResource) {
_TRACE_... | [
"gecchi@bochibochi.ddo.jp"
] | gecchi@bochibochi.ddo.jp |
e20da51acd0756ec627310e9327ab5a9c945a448 | 124ad2f68877062f05fb91c37712c0334c0086f7 | /microWii/EEPROM.cpp | 12b2c34ba0f666b01d2347c3b4d22f8dabdb0277 | [] | no_license | NVSL/Quadcopter-Class-Lab-06 | eaa4e6d4c808edbbc2101b382d990262e1832beb | 50139bab9363932b7f39c1ad3b80f4c236ce38a0 | refs/heads/master | 2021-06-23T12:09:17.814366 | 2017-03-20T03:01:50 | 2017-03-20T03:01:50 | 56,563,195 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,138 | cpp | #include <avr/eeprom.h>
#include "Arduino.h"
#include "config.h"
#include "def.h"
#include "types.h"
#include "EEPROM.h"
#include "MultiWii.h"
#include "Alarms.h"
#include "Serial.h"
void LoadDefaults(void);
uint8_t calculate_sum(uint8_t *cb , uint8_t siz) {
uint8_t sum=0x55; // checksum init
while(--siz) sum +=... | [
"jgarzagu@ucsd.esu"
] | jgarzagu@ucsd.esu |
05f06d2fac07f6a19c25397fe6fbd4e004ee4ea8 | ed5669151a0ebe6bcc8c4b08fc6cde6481803d15 | /test/magma-1.7.0_timing/src/ssygvdx_2stage.cpp | cfb125d8bcc49cae6f4c68fa091707ec296e8095 | [] | no_license | JieyangChen7/DVFS-MAGMA | 1c36344bff29eeb0ce32736cadc921ff030225d4 | e7b83fe3a51ddf2cad0bed1d88a63f683b006f54 | refs/heads/master | 2021-09-26T09:11:28.772048 | 2018-05-27T01:45:43 | 2018-05-27T01:45:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,642 | cpp | /*
-- MAGMA (version 1.7.0) --
Univ. of Tennessee, Knoxville
Univ. of California, Berkeley
Univ. of Colorado, Denver
@date September 2015
@author Raffaele Solca
@author Azzam Haidar
@generated from dsygvdx_2stage.cpp normal d -> s, Fri Sep 11 18:29:31 2015
*/
#inc... | [
"cjy7117@gmail.com"
] | cjy7117@gmail.com |
68142aee494528e883a15b4f7dd9708af6a0e28f | a5c572b13be02f3b41eb4102eefd30e473c90e9b | /testClientServer/client03.cpp | 6179aaafd0c10d2216487512ea95affa620202bf | [] | no_license | dawoniu1991/cppstudyOnLinux | 626b6b5cafaf4b4e9cc7323cc2bb8e9ec21f88f1 | 58b2f9f597d60c85d3af652d34649e8d87a80ec9 | refs/heads/main | 2023-07-18T07:08:34.322609 | 2021-08-17T09:25:18 | 2021-08-17T09:25:18 | 361,681,700 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 954 | cpp | // client.cpp
#include "zmq.h"
#include <iostream>
#include <string.h>
using namespace std;
#pragma comment(lib, "libzmq.lib")
void my_free (void *data, void *hint)
{
free(data);
cout<<"free======"<<endl;
// cout<<"hint======"<<*hint<<endl;
}
int main(int argc, char *argv[])
{
printf("... | [
"1278943797@qq.com"
] | 1278943797@qq.com |
3ca3dc26eb59ff846640f9968fc381bd5419875a | 1ed0348f81bfb1f872bdd02d642e78a002dbdafb | /KeyLogger/main.cpp | 096e2c5801789f5e1786574ce1590b94b8259fb4 | [] | no_license | ZeroCoolX/KeyLogger | 2045cd3aaeea1aad6e60e56edd09d6c80a0a0a00 | c9106cbf29933d2c9f5c6bc809dbd9578c7f5da6 | refs/heads/master | 2020-06-04T12:12:26.290105 | 2019-08-20T20:51:36 | 2019-08-20T20:51:36 | 192,015,848 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 416 | cpp | #include <iostream>
#include <windows.h>
#include "Helper.h"
#include "KeyConstants.h"
#include "Base64.h"
#include "IO.h"
#include "Timer.h"
#include "SendMail.h"
#include "KeyHook.h"
int main(){
MSG Msg;
IO::MkDir(IO::GetPath(true));
InstallHook();
while(GetMessage(&Msg, NULL, 0, 0)){
Tran... | [
"botanicality@gmail.com"
] | botanicality@gmail.com |
1b8105624d98e3f78f56160ec0f7c66e1bd5af44 | 18f2582b01b461135bbc2a5251cf5a04c008053a | /MyLinker/Classes/GameMapLayer.h | 3758289e7d03a0b4ff6367a151c6fcf7e20c4f24 | [] | no_license | SelAD/cocos2dx-games | 14c99354808a589507749a0546ea03d80a091107 | 286582ebffc5cf52c47bda9890b61b3376d196ea | refs/heads/master | 2020-07-19T17:26:54.782681 | 2015-10-24T12:07:57 | 2015-10-24T12:07:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,017 | h | //
// GameMapLayer.h
// MyLinker
//
// Created by zhouf369 on 14-8-15.
//
//
#ifndef __MyLinker__GameMapLayer__
#define __MyLinker__GameMapLayer__
#include "cocos2d.h"
class Icon;
class GameMapLayer : public cocos2d::CCLayer
{
public:
GameMapLayer();
~GameMapLayer();
virtual bool init();
... | [
"zf@zhouftekiMacBook-Pro.local"
] | zf@zhouftekiMacBook-Pro.local |
7a3f982c4573d24f3a6411af6bf752a6250b6182 | 48f11b8a9a1dd4b795441681ef943c7e90d0fe43 | /MidiSwitchFirmware/generated/images/src/__designer/dark_icons_inbox_48.cpp | 882180d224f32ef2f28fc7c5efeb83a3f63124a5 | [] | no_license | Stickerl/MidiSwitchGfx | 9e45c9931525bcf85af60a8bb5d4d39c06135a5b | f60f511747b53bc8508f019a43143f7d64c648c5 | refs/heads/master | 2020-03-26T12:02:45.686425 | 2020-01-12T17:08:37 | 2020-01-12T17:08:37 | 144,872,672 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 39,950 | cpp | // -alpha_dither yes -dither 2 -non_opaque_image_format ARGB8888 -opaque_image_format RGB565 0x5a17fa03
// Generated by imageconverter. Please, do not edit!
#include <touchgfx/hal/Config.hpp>
LOCATION_EXTFLASH_PRAGMA
KEEP extern const unsigned char _dark_icons_inbox_48[] LOCATION_EXTFLASH_ATTRIBUTE = { // 48x41... | [
"steiner_erwin@freenet.de"
] | steiner_erwin@freenet.de |
248d143073bc1672c81daeb6f8b6c2bd3855a64f | 6f5ac010902f4443b5128140c75b94516e6c8f04 | /Mini/Logic/Rendering/Terrain.cpp | fd9b43927dc8e61ecc488d8a7feca6505ac1fc3f | [] | no_license | JeppeNielsen/MiniEngine | 9092857eb76c6903af257367588fff04017e7604 | d20f5e7fe5d56e9eefc72004825b6c48d6f49863 | refs/heads/master | 2020-04-14T18:25:51.954513 | 2020-02-16T22:00:24 | 2020-02-16T22:00:24 | 164,018,699 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,399 | cpp | //
// Terrain.cpp
// PocketEngine
//
// Created by Jeppe Nielsen on 9/22/13.
// Copyright (c) 2013 Jeppe Nielsen. All rights reserved.
//
#include "Terrain.hpp"
#include <cmath>
#include "MathHelper.hpp"
#include "Ray.hpp"
using namespace Mini;
void Terrain::Reset() {
size = Vector2(128,128);
lod = 30.0f... | [
"nielsen_jeppe@hotmail.com"
] | nielsen_jeppe@hotmail.com |
15f0f4ec19d495f90a2c856d6ef27dcac07f9dad | 6784af4571bdd17351869173eb0830941bdbd125 | /AppFrame/AppUtils.cpp | 4856fbabef1ac6779ddb8e842991d483e29ea576 | [] | no_license | helloppt211/MicrographyQRCodes | ffcbaa649eecdeec42df179c418a27cccceadf73 | 5ca574426f99363de2d0d01b0f8a4e3b50b4f547 | refs/heads/master | 2022-12-10T12:49:27.522745 | 2019-04-02T19:04:31 | 2019-04-02T19:04:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,229 | cpp | /**
* @file AppUtils.cpp
*
* Implementation of the application utility functions
*
* @author James Hung-Kuo Chu
*/
#include "stdafx.h"
#include "AppProperty.h"
#include "AppParameter.h"
#include "AppData.h"
#include "AppItem.h"
#include "AppUtils.h"
using namespace AppFrame;
using namespace HKUtils;
using namespace c... | [
"hungsh@oregonstate.edu"
] | hungsh@oregonstate.edu |
1ea5a41fff4d69a28e1b0889190f0c93591190e0 | 54234fe3120c556a08ffd2f81d841d0c5d91b04a | /WY_PROJ_DIRECTX_12_WIN32/MyModelMtl.h | 88b290943cdc958da2efc5df73b4d69a3c90fdb2 | [] | no_license | jwyjwy1104/WY_PROJ_DIRECTX_12_WIN32 | 6ea5b1ece227c33ef6f58f08f2bee3b8ebdb9cae | 6a55aab11e60487fe5d6ecebc2e2f5ab35f181fe | refs/heads/master | 2020-04-15T00:54:46.999434 | 2019-01-05T23:11:30 | 2019-01-05T23:11:30 | 164,256,451 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,009 | h | #pragma once
// Class description:
// This class represents a custom exported WYM file exported through the
// Blender Python script called blenderExporter.blend, which holds all the
// information as a material object but instead in my OWN format.
// (Not like standard MTL).
// I wanted my own format was be... | [
"46407809+jwyjwy1104@users.noreply.github.com"
] | 46407809+jwyjwy1104@users.noreply.github.com |
ae8f3f78bf8a3d425fb9ab6710500f3d38e87fcb | 67b8ae040c557c94780f3e6c10ca888cd37ebc4d | /GameEngine/Entity/IEntityNeutral.h | a26ef6e91628d7b0c7c5cad6ef4d5a4e559bbd8a | [] | no_license | qjroundy/GameEngine | 8a7f64a9a4b5a83243d24e2c63c2f50c2394f228 | 906513d057540db049f519033c94e2b2da880311 | refs/heads/master | 2023-04-07T05:15:40.148824 | 2018-12-28T03:15:27 | 2018-12-28T03:15:27 | 105,471,130 | 0 | 1 | null | 2023-03-20T14:01:43 | 2017-10-01T20:13:17 | C++ | UTF-8 | C++ | false | false | 236 | h | #pragma once
class IEntityNeutral
{
private:
bool _agro;
protected:
void setAgro(bool newVal) { _agro = newVal; }
public:
void makeAgro() { _agro = true; }
bool isAgro() { return _agro; }
IEntityNeutral();
~IEntityNeutral();
};
| [
"qjroundy@gmail.com"
] | qjroundy@gmail.com |
6817464367279e5e4e35ca42b33544273fde8ec0 | 2de8f5ba729a846f8ad5630272dd5b1f3b7b6e44 | /src/Core/Gpackets/GCBloodBibleList.h | 0baefcc2b993d957066a048570bc2de9845f5cad | [] | no_license | najosky/darkeden-v2-serverfiles | dc0f90381404953e3716bf71320a619eb10c3825 | 6e0015f5b8b658697228128543ea145a1fc4c559 | refs/heads/master | 2021-10-09T13:01:42.843224 | 2018-12-24T15:01:52 | 2018-12-24T15:01:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,245 | h | //////////////////////////////////////////////////////////////////////////////
// Filename : GCBloodBibleList.h
// Written By : excel96
// Description :
//////////////////////////////////////////////////////////////////////////////
#ifndef __GC_BLOOD_BIBLE_LIST_H__
#define __GC_BLOOD_BIBLE_LIST_H__
#include <ve... | [
"paulomatew@gmail.com"
] | paulomatew@gmail.com |
f4c7daf8f72293aeeb68733e64f991258055a233 | e9c985e737da0f4c4eed530958142e53ed064705 | /third_party/cloud_seed/AudioLib/ValueTables.cpp | 9ef4207996011fd517d047cf2d4f0ac63ed4b97c | [
"Apache-2.0"
] | permissive | cnheider/tiny-differentiable-simulator | 29c097d6257d1340f8b350378cffb32bfa980ce3 | 3a10b34678ade3ae305e63967048ec2869428adf | refs/heads/master | 2022-12-31T16:06:22.734617 | 2020-10-31T15:38:22 | 2020-10-31T15:38:22 | 308,916,940 | 0 | 0 | Apache-2.0 | 2020-10-31T15:52:52 | 2020-10-31T15:52:14 | null | UTF-8 | C++ | false | false | 2,980 | cpp |
#include <cmath>
#include "ValueTables.h"
#include <assert.h>
namespace AudioLib
{
float DSY_SDRAM_BSS ValueTables::Sqrt[TableSize];
float DSY_SDRAM_BSS ValueTables::Sqrt3[TableSize];
float DSY_SDRAM_BSS ValueTables::Pow1_5[TableSize];
float DSY_SDRAM_BSS ValueTables::Pow2[TableSize];
float DSY_SDRAM_BSS ValueTa... | [
"erwin.coumans@gmail.com"
] | erwin.coumans@gmail.com |
7f8f2402db02971557f4f19ceb6cfcfc042431cc | 05210b0a8ed4948559a38df60d5e233644e5ec7a | /src/PlaybackTimeoutHandler.hpp | 9133c0802a00d239a35fadb59b536952eb77dc66 | [] | no_license | AlexeyGurevsky/SleepNoise | de0a32e05d144950893858d12f34741d38a5e16d | 967f8542748d0284b8177da769d7dec75b0d0877 | refs/heads/master | 2023-04-17T10:12:04.726110 | 2021-05-03T19:25:05 | 2021-05-03T19:25:05 | 364,037,033 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,566 | hpp | #ifndef PLAYBACKTIMEOUTHANDLER_HPP_
#define PLAYBACKTIMEOUTHANDLER_HPP_
#include "src/WavPlayer.hpp"
#include <bb/cascades/Application>
using namespace bb::cascades;
class PlaybackTimeoutHandler: public QObject
{
Q_OBJECT
public:
PlaybackTimeoutHandler(WavPlayer *player, QObject *parent) :
player(pla... | [
"alexey.gurevskiy@outlook.com"
] | alexey.gurevskiy@outlook.com |
60a24b0e36eba941493133b4809a6693eb10c4e5 | 4cbd85de1b149a0bb35a90e09160bbcbc935b042 | /NOI/sols/D/DRP/kub.cpp | 8812896d8d4bbce3986c6fc1db346db3a45563ba | [] | no_license | Alex-Tsvetanov/Testing-Scripts | cacaaea1642b18f6ea261faa0e19d0cc26a5b6d2 | c201f3bf02662a8fb3e862211cbf6f74725dfac3 | refs/heads/master | 2021-05-13T23:46:17.206320 | 2018-01-07T00:18:13 | 2018-01-07T00:18:13 | 116,525,044 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,030 | cpp | /** Author's note:
1. Includes a lot of Ctrl+C > Ctrl+V
2. Variables:
P[x] = amount of 1x1x1 cm. cubes painted on [x] ([0] - [6]) sides
A = length (in cm)
B = width (in cm)
C = height (in cm)
3. Limits:
0 < A, B, C <= 1000;
4. Just because you don't get t... | [
"you@example.com"
] | you@example.com |
f756958559558620f7ee39e4e5830705a8ed06c0 | 78918391a7809832dc486f68b90455c72e95cdda | /boost_lib/boost/python/bases.hpp | 95110cb07f2c527a8cb371ca6520b3006f2f6875 | [
"MIT"
] | permissive | kyx0r/FA_Patcher | 50681e3e8bb04745bba44a71b5fd04e1004c3845 | 3f539686955249004b4483001a9e49e63c4856ff | refs/heads/master | 2022-03-28T10:03:28.419352 | 2020-01-02T09:16:30 | 2020-01-02T09:16:30 | 141,066,396 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,348 | hpp | // Copyright David Abrahams 2002.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef BASES_DWA2002321_HPP
# define BASES_DWA2002321_HPP
# include <boost/python/detail/prefix.hpp>
# include <boost/python/det... | [
"k.melekhin@gmail.com"
] | k.melekhin@gmail.com |
aa9755b594bc5f4b1cec5118b7188eddd95e11de | 39572443a9915fd6ba75671cf524f9b184a4a708 | /mtf/src/player_page.h | 802945e244bae33cb474b286cfda4f48c2e863ea | [] | no_license | sanami/qt-music-player | 514dd9653be7762634b5d1887c04143836b1cbf6 | dfab887d638e5f61cd2a885d20e614ef8c9cbc2f | refs/heads/master | 2021-01-22T14:39:08.985078 | 2011-05-22T21:30:58 | 2011-05-22T21:30:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 597 | h | #pragma once
#include "data.h"
class Media;
//! Страница плеера
class PlayerPage : public MApplicationPage
{
Q_OBJECT
public:
PlayerPage(Media *media);
~PlayerPage();
void showStationInfo(Station station);
signals:
void sig_showStationPage(Station station);
private slots:
void on_station_clicked();
void on... | [
"sanami77@gmail.com"
] | sanami77@gmail.com |
b8513ccd035bf12241ec9e9b894f85d39fc063cb | 4b0f60954555b03e8e1911c8c3137f4365f092a7 | /src/crypter.cpp | 8038c6f4e8b93a71bca80e8e1308e8ab37f9f6b1 | [
"MIT"
] | permissive | shillingcoins/source | 432d76388831273356fac095a6a641d891905a50 | 157dd9bcc1b677ccfcf0a56de568862f7a0b415d | refs/heads/master | 2020-05-29T20:30:32.106582 | 2014-03-23T22:41:13 | 2014-03-23T22:41:13 | 18,044,375 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,911 | cpp | // Copyright (c) 2009-2012 The Shilling Developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <openssl/aes.h>
#include <openssl/evp.h>
#include <vector>
#include <string>
#ifdef WIN32
#include <windows.h>
#endi... | [
"mail@golbs.com"
] | mail@golbs.com |
41b2a20e4986b4caaf3e0f9b4365efb88f936149 | 2e8e733584c070b246550c7817cd04f9505fdfe5 | /Code/GameSDK/GameDll/PlayerStateFly.cpp | 962378e0ce74ca5c09bb48720668666870074877 | [] | no_license | blockspacer/Infected | 5dd1ea143cb55be57684f22deebad93f3d44b93c | 6f64151eb9c5b8b285f522826d10bfe23a315d20 | refs/heads/master | 2021-05-27T09:54:36.729273 | 2015-01-25T01:27:45 | 2015-01-25T01:27:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,883 | cpp | /*************************************************************************
Crytek Source File.
Copyright (C), Crytek Studios, 2001-2010.
-------------------------------------------------------------------------
$Id$
$DateTime$
Description: Implements the Player fly state
---------------------------------------... | [
"jasonh78@gmail.com"
] | jasonh78@gmail.com |
8f3692bee1b522cf6a5f12126eefcb6959b5b23e | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_1482494_1/C++/MilesEdgeworth/main.cpp | d5dd59e0573ad0fce08a74ddf5b95de5f4e4d2d0 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,692 | cpp | #include <cstdio>
#include <algorithm>
#include <utility>
#include <vector>
const int MAX_N = 1005;
int T, N;
struct Level {
Level(int _a = -1, int _b = -1, int _i = -1) : a(_a), b(_b), i(_i) {}
int a, b, i;
bool operator<(const Level& l) const {
if (a == l.a && b == l.b) return i < l.a;
if (a == l.a) return b... | [
"eewestman@gmail.com"
] | eewestman@gmail.com |
b373df29fdb9ef73143994036c163982bde041cf | 47bc40e7545352d96a503528c6c68fb169c2b474 | /xfstk-sources/plugins/downloader/merrifield/xfstkdldrpluginmerrifield.h | 866938f6eb31f1f8a4cdad3ca1c1f2bc26f056f7 | [] | no_license | AurelienBallier/xfstk | 23a83d1cf2141d0faab763f32ef57ba9af6693d9 | acb464c352160d0367c72783f29c91df1303bbe2 | refs/heads/master | 2020-05-25T12:37:58.105333 | 2019-05-22T09:26:31 | 2019-05-22T09:26:31 | 187,802,083 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,847 | h | /*
Copyright (C) 2015 Intel Corporation
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This... | [
"aurelien.ballier@teosit.com"
] | aurelien.ballier@teosit.com |
7f3abc412f8df90fb379c1475e200493252c26e7 | e490666b1b777ec7759b21d6ee357fe97bc5acb0 | /libcds/src/static_permutation/static_permutation_builder.h | 2a860ada6263aa412cdaea51b6cbd0711588c4dd | [] | no_license | fclaude/xtrie | 971a0ee8af236320609b2c20a2c653f0b674e9f1 | bed2413192b9e22b445f78eb5a2aea47b124e953 | refs/heads/master | 2022-07-04T02:22:47.843428 | 2011-05-17T03:23:31 | 2011-05-17T03:23:31 | 1,758,933 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,342 | h | /* static_permutation_builder.h
* Copyright (C) 2008, Francisco Claude, all rights reserved.
*
* Permutation builder
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* ver... | [
"fclaude@cs.uwaterloo.ca"
] | fclaude@cs.uwaterloo.ca |
bb67f5c2d30e17c80c186d60aaa14db36357aca5 | 59c94d223c8e1eb1720d608b9fc040af22f09e3a | /zircon/kernel/include/kernel/wait_queue_internal.h | 987788d44703398737de1986c511b3fe22adc53b | [
"BSD-3-Clause",
"MIT"
] | permissive | bootingman/fuchsia2 | 67f527712e505c4dca000a9d54d3be1a4def3afa | 04012f0aa1edd1d4108a2ac647a65e59730fc4c2 | refs/heads/master | 2022-12-25T20:28:37.134803 | 2019-05-14T08:26:08 | 2019-05-14T08:26:08 | 186,606,695 | 1 | 1 | BSD-3-Clause | 2022-12-16T21:17:16 | 2019-05-14T11:17:16 | C++ | UTF-8 | C++ | false | false | 5,303 | h | // Copyright 2019 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#pragma once
#include <kernel/sched.h>
#include <kernel/thread.h>
#include <kernel/wait.h>
#include <lib/ktrace.h>
#include <plat... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
a13e595af038cd45ecf63e3bdcff182b0a658f12 | 1b3a5c8f7042fae1dd3ebaa72ea57c94b28d63b5 | /Source/FrameIT/Scroll/Scroll.cpp | 09b30fecbc3596b16aceca8825f08829a924eba5 | [] | no_license | UFrameIT/old-FrameIT-unreal | 4067eff58294c36c2e36485d20284b1e49b8495e | 670d2584598c7dfd19f63f2ced23a515b18b89be | refs/heads/master | 2021-06-16T01:52:11.522173 | 2017-05-08T20:07:26 | 2017-05-08T20:11:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 523 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "FrameIT.h"
#include "Scroll.h"
#include "Fact/Fact.h"
#include "Fact/PointFact.h"
#include "Fact/AngleFact.h"
#include "Fact/LineSegmentFact.h"
void UScroll::Initialize(FText ScrollText, TArray<UFact*> RequiredFacts)
{
this->Scr... | [
"rochau.de@gmail.com"
] | rochau.de@gmail.com |
f0f2e643be7289b78bc693549563bdfde98b8d9f | 675651bf2130699987bae8b648fcb42f76682723 | /src/SGEventManager/SGWorkerThread.cpp | 86446592b8a7955e46fa69ac87b21ce9bcc323f1 | [] | no_license | rocketman123456/SGProject | a328ad583d285a5d96dccb51f7b70905c8877d7d | f20731451c1cf42e7d59fb0f027afc63b4bc218a | refs/heads/master | 2022-07-16T17:29:19.372507 | 2020-04-29T15:52:29 | 2020-04-29T15:52:29 | 257,016,447 | 0 | 1 | null | 2020-04-21T12:35:23 | 2020-04-19T14:11:56 | C++ | UTF-8 | C++ | false | false | 4,999 | cpp | #include "SGWorkerThread.h"
#include "SGLog.h"
#include "AssertFault.h"
#include <iostream>
using namespace SG;
using namespace std;
#define MSG_EXIT_THREAD 1
#define MSG_POST_USER_DATA 2
#define MSG_TIMER 3
namespace SG {
struct ThreadMsg
{
ThreadMsg(int i, const void* m) { id = i; msg = m; }
int id;
... | [
"759094438@qq.com"
] | 759094438@qq.com |
095fbdbc132f475cf25316bbf610fb09af3cd77f | 394bba9acf898a1d2c4d3042a1b43ccb1e56b5fb | /Project/prants/Library/Il2cppBuildCache/Windows/x64/il2cppOutput/Generics32.cpp | 6c473c2155cce90b572bd2bf1c80109efca4256a | [] | no_license | JoaoRabello/prants-repository | e539e3222eb8f06651f9d8bee9b5ec25b5fedfed | d6b4d02d8f97482b5ae70b728257af56bf5b6385 | refs/heads/main | 2023-02-16T15:37:09.011687 | 2021-01-15T04:30:41 | 2021-01-15T04:30:41 | 329,158,930 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,260,540 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const Virt... | [
"rabellois@hotmail.com"
] | rabellois@hotmail.com |
7f84835fb51d14fb155e82133baf1741efc4a1fc | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/ThirdParty/CEF3/cef_source/libcef/renderer/webkit_glue.h | 45f5752489932e62f38a14320017c9ee436cebdb | [
"MIT",
"LicenseRef-scancode-proprietary-license",
"BSD-3-Clause"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 2,387 | h | // Copyright (c) 2012 The Chromium Embedded Framework Authors.
// Portions copyright (c) 2011 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 CEF_LIBCEF_RENDERER_WEBKIT_GLUE_H_
#define CEF_LIBCEF_RENDERER_WEBKIT_... | [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
6ffa2d006d699b0bbfdd2e2b0954a3aabfceb1f7 | 6a53936b15d03cc5d21421bde207712c6aa70a12 | /random_generators/tests/synch_rad45.cpp | a97c38a24c8403056c1da7e7ce64f4c938254511 | [] | no_license | kiliakis/cpp-benchmark | 1348f2fc4d0439acd4d3c76bcf02d1d3923ee35d | fbcfb34b1b40cf3fd0b0a168255371ec0d0daa3a | refs/heads/master | 2021-01-20T17:06:40.111333 | 2020-12-03T09:31:00 | 2020-12-03T09:31:00 | 60,213,953 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,613 | cpp |
#include <iostream>
#include <blond/vector_math.h>
#include <blond/utilities.h>
#include <blond/math_functions.h>
#include <blond/optionparser.h>
#include <random>
#include <chrono>
#include <math.h>
#include <stdlib.h>
#include <thread>
// #include <boost/random.hpp>
// #include <boost/random/normal_distribution.hpp>... | [
"konstantinos.iliakis@cern.ch"
] | konstantinos.iliakis@cern.ch |
3df03535966bc760990790fe0a3be73cd026a185 | c320be085f5c2eba8325587b2ffbdeee54c968e3 | /app-Demo-Qt/include/qtGLWidget.h | f3137283089a4a409ad63ae5ba62ee4dab067dcb | [] | no_license | PhilippJueni/SLProject | b8be0c3c36dc1c59ccff85712718f60623f487db | ff49994464cbb49e3f010a8cba1756652628deef | refs/heads/master | 2020-12-24T12:06:32.616535 | 2015-06-11T20:04:59 | 2015-06-11T20:04:59 | 30,965,332 | 0 | 0 | null | 2015-02-18T12:50:01 | 2015-02-18T12:50:00 | null | UTF-8 | C++ | false | false | 3,174 | h | //#############################################################################
// File: qtGLWidget.h
// Purpose: Declaration of the QGLWidget derive window class.
// In general all the event hadlers will foreward the events to the
// appropriate event handlers of the SLSceneView class... | [
"wacki@users.noreply.github.com"
] | wacki@users.noreply.github.com |
ccba41e79860432fe4463901535e0eef20fa42dd | 7ec50a56e195babaaf99bd9349ba1921355673b1 | /observer.cpp | ad393e691ef4e1a574c9d2e26066f283ad6d39f8 | [] | no_license | kajakIYD/Pottery-Factory | 58cd41e45d57986a9abccb2b07ddd9726212b9f5 | c0349c0991781dca772ea88cfa3ff6e0081d8d69 | refs/heads/master | 2021-04-09T10:43:17.953349 | 2018-08-20T06:44:04 | 2018-08-20T06:44:04 | 125,408,753 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 51 | cpp | #include "observer.h"
observer::observer()
{
}
| [
"maciej.kusnierz@apagroup.pl"
] | maciej.kusnierz@apagroup.pl |
25d4e66e8eb4c313b4ed1b5ea66a6975574d9a6f | c1face3ba812c8e006b5ac2dbc4f88d309bddb56 | /src/Detector/ElSe/blob_gen.h | 8bf3d48748610fb490e0f38b075a063766e46ccd | [
"MIT"
] | permissive | relikd/eyeFocus | 509c846f9d83625c19e30f7b7495248c730cfbf4 | 83d5f2d00ada5fc233f415d59f34ecd18e9bee57 | refs/heads/master | 2022-05-05T02:37:18.230946 | 2018-06-06T15:43:21 | 2019-08-06T13:01:34 | 77,156,714 | 1 | 0 | null | null | null | null | ISO-8859-3 | C++ | false | false | 7,149 | h | #include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/core/core.hpp>
/*
Version 1.0, 17.12.2015, Copyright University of Tübingen.
The Code is created based on the method from the paper:
"ElSe: Ellipse Selection for Robust Pupil Detection in Real-World Envir... | [
"info@relikd.de"
] | info@relikd.de |
6450b6377683fbea2e3e1e0e5ba828b44041d511 | 3802934b14ec8bbc0e62cd37f25fcc337d37d426 | /Learn Topic/Graph Algorithm/Lightoj-1012 - Guilty Prince.cpp | d3a3b043d19732f0988168e93cf568c223274567 | [] | no_license | Mdananda/Competitive-Programming | b8f21c177bc71d55e086689f3782be2bb4caae2d | a59f605f2d2bc7f693001831c1aeb1182581e3da | refs/heads/master | 2023-04-27T14:14:48.799117 | 2021-05-02T15:26:56 | 2021-05-02T15:26:56 | 363,454,275 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,978 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define sc scanf
#define pf printf
#define pb push_back
int main()
{
int ts;
cin>>ts;
for(int k = 1; k <= ts; ++k)
{
int nm, nk, ix, jx, ans = 0;
sc("%d%d", &nk, &nm);
string ss[30];
int visit[30][30... | [
"ananda_0121@yahoo.com"
] | ananda_0121@yahoo.com |
1283e85feb2c310d08ba12343d8edada909d7339 | e41c5bba70d489304cc1bc5fa144c1e427955356 | /Programming Fundamentals/Q42.CPP | 4464b2a012c09635b72c3093ebb11354fa0716db | [] | no_license | DEEZZU/College-Backup | 65ece21001f6978d4c40784bb348a47cdb16d5ed | b7f1525d929e5a342d001abfe107a7d965c90662 | refs/heads/master | 2021-04-29T00:40:48.280889 | 2019-01-17T18:11:13 | 2019-01-17T18:11:13 | 121,835,608 | 0 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 283 | cpp | // QUESTION 42 PG 293
#include<iostream>
using namespace std;
void main()
{
int i,j,r,c;
cout<<"\n Enter no of rows=";
cin>>r;
cout<<"\n Enter no of col=";
cin>>c;
for(i=0;i<r;i++)
{
for(j=0;j<(c-2*i);j++)
cout<<"*";
cout<<endl;
}
}
| [
"deepti.mcs17.du@gmail.com"
] | deepti.mcs17.du@gmail.com |
ed8cd2b251f4102ade3272d05961ff9626bbbaca | 956c53514c54dd1963cc9e64ea92fbf7a3464c27 | /Codeforces Solutions/cf758_A.cpp | 49262fd3151039dee6060aacc46b605adf8ff694 | [] | no_license | dreamvrutik/Codeforces-Solutions | a821125f8d637ddc1b979f0967a5530d2fb40616 | 5606ef8ff314a919cb5fe9d7b0fdbe0e91d838c6 | refs/heads/master | 2020-06-17T02:07:53.009832 | 2019-07-08T08:00:13 | 2019-07-08T08:00:13 | 195,764,251 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,393 | cpp | #include<bits/stdc++.h>
#define IOS ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define max(a,b) (a>b?a:b)
#define min(a,b) (a<b?a:b)
#define int long long
#define endl "\n"
#define double long double
#define mod 1000000007
using namespace std;
int po[101],s[101];
void pairsort(int a[],... | [
"vrutikhalani6@gmail.com"
] | vrutikhalani6@gmail.com |
81cced16b22a701826506065cb52e37abcbc0029 | 533d5e1a40def1e1118895f6ba2b4d503c918d1a | /tools/BORLANDC/CRTL/IOSTREAM/OSTFLUSH.CPP | 378276fb097f6daee16ecd132305e8a1ded97311 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gandrewstone/GameMaker | 415cccdf0f9ecf5f339b7551469f07d53e43a6fd | 1fe0070a9f8412b5b53923aae7e64769722685a3 | refs/heads/master | 2020-06-12T19:30:07.252432 | 2014-07-14T14:38:55 | 2014-07-14T14:38:55 | 21,754,773 | 103 | 23 | null | null | null | null | UTF-8 | C++ | false | false | 883 | cpp | /*[]------------------------------------------------------------[]*/
/*| |*/
/*| ostflush.cpp |*/
/*| |*/
/*| Class ostream ... | [
"g.andrew.stone@gmail.com"
] | g.andrew.stone@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.