blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
95b160a1787a18e39d1d578e9c0bd394659ff259 | f4421731583c2c78966669236de06e77750cf2e6 | /RRAMMemoryController/Testbench/includes/TestCommon.h | 8ad0905f745fcaa9aae29f0fbf1f09237141dd71 | [] | no_license | prag79/Memory_Performance | e27ab0b74b0854a25d957a84cd5aad24140567aa | 29431ac3d39a5b7ad8bf807ccd33792ba900961b | refs/heads/master | 2020-06-15T02:34:56.233859 | 2016-12-22T10:16:29 | 2016-12-22T10:16:29 | 75,337,077 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,942 | h | //Common
#ifndef __TEST_COMMON_H__
#define __TEST_COMMON_H__
#include <cstdint>
#define DDR_BUS_WIDTH 64
#define DDR_XFER_RATE 1600
#define COMMAND_PAYLOAD_SIZE 8
#define COMMAND_BL 4
#define MAX_VALID_COMPLETION_ENTRIES 31
#define MAX_COMPLETION_BYTES_READ 64
#define MAX_BLOCK_SIZE 8192
#define MAX_SLOT 256
#defin... | [
"pragnajit.d@hcl.com"
] | pragnajit.d@hcl.com |
fcc79b6904429583be2ef36c0059783a2f9349cf | 8d675d8b658f028400543c18b0243f8dc45c9b03 | /213-House Robber II.cpp | d3ec056d13973e624ca312696d38b861d045c00f | [] | no_license | dc-tw/leetcode | 06b1784ce7111fe43632067750944ce9596df03a | 2556209843dd6d621b8ced305eaf7cf8f39ff294 | refs/heads/master | 2020-05-19T20:23:36.485881 | 2020-02-14T08:02:36 | 2020-02-14T08:02:36 | 185,200,761 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 701 | cpp | class Solution {
public:
int rob(vector<int>& nums) {
if(nums.empty()) return 0;
if(nums.size()==1) return nums[0];
int n=nums.size();
vector<int> info(n,0);
for(int i=0;i<n-1;++i)
{
if(i==0) info[i]=nums[i];
else if(i==1) info[i]=max(info[i-1]... | [
"david112358c@gmail.com"
] | david112358c@gmail.com |
546ac5ebcf9761b1aff0fa43d44565d8d8907aa9 | 5a358636837d1db66c8ba4ff7d369454b30b8734 | /MissingNumber.cpp | 641350e5e52bf1cdc94152ae6c83695412e91252 | [] | no_license | sohampod/100daysofcpp | 95660f779b392500ea3c48ae03c5d9594a348eec | 05c6dd9204132a872c93a25a88cddf1a55497338 | refs/heads/main | 2023-03-27T11:08:07.969013 | 2021-03-27T19:58:11 | 2021-03-27T19:58:11 | 326,193,887 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 556 | cpp | #include <bits/stdc++.h>
using namespace std;
// Function to get the missing number
int getMissingNo(int a[], int n)
{
// For xor of all the elements in array
int x1 = a[0];
// For xor of all the elements from 1 to n+1
int x2 = 1;
for (int i = 1; i < n; i++)
x1 = x1 ^ a[i];
for (int i = 2; i <= n + 1; i++)
... | [
"soham.poddar23@gmail.com"
] | soham.poddar23@gmail.com |
c03428756b3e52f1111d598fc277457853c76b5d | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/20/51906a90e30839/main.cpp | 0f9ab75db8d9847e09b955307a3716dfaf248d68 | [] | no_license | WhiZTiM/coliru | 3a6c4c0bdac566d1aa1c21818118ba70479b0f40 | 2c72c048846c082f943e6c7f9fa8d94aee76979f | refs/heads/master | 2021-01-01T05:10:33.812560 | 2015-08-24T19:09:22 | 2015-08-24T19:09:22 | 56,789,706 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 791 | cpp | #include <iostream>
#include <vector>
void advance( std::vector<size_t>& indexes, std::vector<size_t> const& counts, size_t amt=1 ) {
if (indexes.size() != counts.size())
indexes.resize(counts.size());
for (size_t i = 0; i < counts.size(); ++i ) {
indexes[i]+=amt;
if (indexes[i]... | [
"francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df"
] | francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df |
547f551cbe7fe105746182ef24f4cd53bc8f0b35 | 63870bc730619af63e1ce13d0887cdb392533779 | /DataStructure/A1123.cpp | 00c201cd54c265f3ed6e1e69bd3ad374c28525c2 | [] | no_license | Vancasola/DataStructure | d3e31cf6d77c98d77970ebe7f004370ddd33eaf7 | fc493259566e7a9eb96c0fcbb6e617f7f12b17d4 | refs/heads/master | 2021-07-10T11:32:56.966456 | 2020-09-05T09:48:51 | 2020-09-05T09:48:51 | 189,852,670 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,298 | cpp | //
// A1123.cpp
// DataStructure
//
// Created by vancasola on 2020/2/9.
// Copyright © 2020 none. All rights reserved.
// 5:49 6:16 6:20
/*
#include <stdio.h>
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
struct node{
int x;
node* lc,*rc;
int h;
node(int d){
x... | [
"616923882@qq.com"
] | 616923882@qq.com |
b8b9fe21458423778fbd7973bf65e7db92d197d9 | 688d5a8227bfd8e7e503a06b256d83f707cdb162 | /pet/pet/PetfinishNesting.hh | 084dfca9fafd6472b1a6d6e4a350d22f74616f44 | [] | no_license | pavel1murat/murat | ea65ee1baf5b3335d080585b04e18d0304963097 | d76111a73a18c150e6b5218fc411a2fd05e91e10 | refs/heads/main | 2023-06-11T07:22:18.986114 | 2023-05-24T16:35:22 | 2023-05-24T16:35:22 | 118,154,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,132 | hh | #ifndef Mu2eG4_finishNesting_hh
#define Mu2eG4_finishNesting_hh
//
// Free function to be used by the nest... functions
//
// $Id: PetfinishNesting.hh,v 1.1 2013/06/04 19:20:18 murat Exp $
// $Author: murat $
// $Date: 2013/06/04 19:20:18 $
//
// Original author KLG
//
//class G4RotationMatrix;
//class G4ThreeVector;... | [
"murat@fnal.gov"
] | murat@fnal.gov |
5a1340cea032412105121d32737b937cfec6de17 | 2212e07b37c0a0045bb808ca1bd612b5d2079065 | /header/battle/LightAttackStrategy.h | 63283f37daeeec440f8885324adb308d1b096605 | [] | no_license | danzmoses/cs100-project | 4d641b6a1b99369f0e5d61dca7c8063e111ecdf9 | ae1c0698cd5bb2139239c1152b64d34a993f2c88 | refs/heads/master | 2023-02-03T18:28:11.996762 | 2020-12-24T04:36:01 | 2020-12-24T04:36:01 | 324,067,151 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 588 | h | #ifndef LIGHT_ATTACK_STRATEGY_H
#define LIGHT_ATTACK_STRATEGY_H
#include "AttackStrategy.h"
class LightAttackStrategy : public AttackStrategy
{
private:
public:
LightAttackStrategy() {}
int attack(Entity* attacker, Entity* defender)
{
// light attack: player ATK multiplier ... | [
"danzmoses@gmail.com"
] | danzmoses@gmail.com |
4a7d8a92fe90299933e8d37d1aaef79ebbaa167c | 725e0762e67e767c51cd5b336a69ca0b7b8ed183 | /Thrust/Engine/Rect.h | 22d94e17953752572ddb6010e9c26c1316f78d0d | [] | no_license | TonyMalz/CPP | 5b09284f08a65cc87b5ffa1090564d183da86a7a | 89cd416ed098fddece9bca9bb887b8a5c98ba684 | refs/heads/master | 2016-08-05T07:08:07.162185 | 2014-10-19T18:36:30 | 2014-10-19T18:36:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,294 | h | /******************************************************************************************
* Chili DirectX Framework Version 14.03.22 *
* Rect.h *
* Copyright 2014 PlanetChili.net <http://www.planetchili.net> *
* *
* This file is part of The Chili DirectX... | [
"arsch@boozr.de"
] | arsch@boozr.de |
ff7ade9dd4dd76377318069c5bdaae6ab64f414e | 04b4518caa7b0a088e7e8aeb3f1df9bcdd9f6d4a | /gamemodes/modules/player/auth/account.inc | 67688c122c94092a0a0f6667a2cfe2df3ad72fe5 | [] | no_license | troke12/basic-gamememode | 70b73e5be337c5ad6480b24fd7ce5b635fee6865 | a0ea1d4b73fa59e083dd36efa38505116f983578 | refs/heads/master | 2023-03-08T18:04:53.318417 | 2021-02-23T04:35:08 | 2021-02-23T04:35:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 149 | inc | #include "modules\player\auth\account_main.pwn"
#include "modules\player\auth\account_data.pwn"
//#include "modules\player\auth\account_textdraw.pwn" | [
"fairuzzafdhal@gmail.com"
] | fairuzzafdhal@gmail.com |
c60de1c98465a0c7740d050d8e102e2c1c40ce1e | 5ca2e41a032c92ecf840592ad82815b894bbb2ed | /Ex3:Hough变换/3-2/Hough.cpp | 680e3c0419668ba532b33e26badccf1297906cda | [] | no_license | Xungerrrr/SYSU-CV | e5ac5f396a0d9fd975decc50280703ba0c4b195b | a883ab65b09a72e2ad30a305ade3b7021c275c8e | refs/heads/master | 2020-04-29T15:41:48.296220 | 2019-03-18T08:39:21 | 2019-03-18T08:39:21 | 176,236,876 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,617 | cpp | #include <iostream>
#include "Hough.h"
using namespace std;
/* The constructor. */
Hough::Hough(char *in, CImg<unsigned char> edge_image, int threshold, float f, int minR, int maxR) {
if(VERBOSE) cout << "Reading the image " << in << "." << endl;
infilename = in;
src.load(infilename);
edge = edge_image;... | [
"hellolixy@icloud.com"
] | hellolixy@icloud.com |
3562fd9ff76e46cd50b7a3414fcecf3e49174565 | a7234ba88c4781db36ba8275a6c0205a66a80db7 | /Petri/Food.h | 26d8e6c182c139cadce7aff28dcd6e97d7b6d1d0 | [] | no_license | jchildren/petri | 20eb8b647aa06cffa5018408970df5e62d179d76 | 202cdfa6a47f092c3cc5dc0fa1d921fd8830ef94 | refs/heads/master | 2016-09-06T03:59:41.165583 | 2015-12-02T19:33:39 | 2015-12-02T19:33:39 | 39,708,458 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 299 | h | #pragma once
#include "Molecule.h"
class Food :
public Molecule
{
public:
Food();
Food(int grid_size, int energy);
virtual ~Food();
// Accessor function for energy_
int energy() const { return energy_; }
// Accesor function for location_
position location() const { return location_; }
};
| [
"john.a.children@gmail.com"
] | john.a.children@gmail.com |
0b10b2e7db83c071cf86c6bff112bf027b50b891 | 47f20d51c775d3bf656a726e491242accb979125 | /daily_coding2.cpp | da3889d95e42e2d75c7e5f1eaffbff9510307fdf | [] | no_license | smitz94/Daily_Coding_Problem | 73664888653c8578add0873203b4a7cc29936038 | 95a91791d71b06217bf1d34291c63e89da856fa6 | refs/heads/master | 2020-07-02T22:10:20.481099 | 2019-08-21T17:52:12 | 2019-08-21T17:52:12 | 201,683,194 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 716 | cpp | #include <bits/stdc++.h>
using namespace std;
vector<int> product_Except_Self(vector<int> &arr)
{
int L[arr.size()];
int R[arr.size()];
vector<int> answer;
L[0]=1;
R[arr.size()-1]=1;
for(int i=1;i<arr.size();i++)
{
L[i]=arr[i-1]*L[i-1];
}
for(int i=arr.size()-2;i>=0;i--)
{
R[i]=R[i+1]*arr[i+1];
... | [
"smitzaveri12@gmail.com"
] | smitzaveri12@gmail.com |
6d5cc806641e752b9e84355428d867e122645fae | 8ea21114ef89cbb1aaa4d99383ddfda6b26451c9 | /dependencies/include/asio/detail/buffer_resize_guard.hpp | aa5b0ce65e21389744c69ceb067c36e3b83301fd | [
"MIT"
] | permissive | qchateau/rpclib | 482f6ef09b9b371fcde9555510d128b3c1b00f84 | b179d97d1660d2c06b04e8fe77423d33bf5b54f3 | refs/heads/master | 2021-06-08T20:14:15.612435 | 2021-04-26T20:59:26 | 2021-04-26T20:59:26 | 161,306,878 | 21 | 6 | NOASSERTION | 2021-04-26T21:04:23 | 2018-12-11T09:07:09 | C++ | UTF-8 | C++ | false | false | 1,526 | hpp | //
// detail/buffer_resize_guard.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// 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... | [
"szelei.t@gmail.com"
] | szelei.t@gmail.com |
446d89dd850fbe14dda08e599ed18e6dcfd9e863 | 6dbe7cf71adf5e6f78ebe25018573727862ff9aa | /StayState.h | 8a5c971af93e4a1df310fe212a81a05f0a05d1fb | [] | no_license | BagInCode/ECO-game | cb6c95af68f05bad47fed85063c23458720aad04 | 8b6cdd6d01d7977865eb628bb0ef99120f810cd5 | refs/heads/master | 2020-07-07T09:58:28.242507 | 2020-04-16T17:13:34 | 2020-04-16T17:13:34 | 203,319,520 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 264 | h | #pragma once
#include "State.h"
class StayState :
public State
{
public:
StayState();
~StayState();
void doAction(double _timer, Enemy& enemy, Player& player);
int goNext(Enemy& enemy, Player& player);
void randomizeState(mt19937* rnd);
};
| [
"noreply@github.com"
] | BagInCode.noreply@github.com |
0b4a83765f4f19959b7bdac94dab66ca6ca8c80c | 4254fd739d70c90ebb5f60d826e0d497fcd99208 | /enclave_source/028_stealthdb/src/include/tools/sync_utils.hpp | b6bdf81dbcede24fd376483cfd112350634e1cc8 | [] | no_license | OSUSecLab/SGXRacer | 6210d86fa50d3f19f0fcda07d87e4f4738da2c30 | 61784f220b94a621255ed16434d3c45351cbb981 | refs/heads/main | 2023-08-04T11:23:13.135279 | 2023-03-08T07:15:38 | 2023-03-08T07:15:38 | 606,945,589 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 170 | hpp | #pragma once
void spin_lock(int volatile* p);
void spin_unlock(int volatile* p);
void spin_lock(unsigned char volatile* p);
void spin_unlock(unsigned char volatile* p);
| [
"chenschuan@gmail.com"
] | chenschuan@gmail.com |
b5deb0885a04393aa8eb633953603d52796a797b | 0fa60c0f52a8552957024fe5db9782150b8f6e21 | /Classes/FightScene.cpp | be93c73c9868d5cf3d33e38e97ab7c0cf7daaaf1 | [] | no_license | jj918160/team | 9ff2e02e5d93b91f28110e74bff89b45b82c3259 | 4a8c280ba387d8c84d6153569130bca30cf0dd03 | refs/heads/master | 2021-01-10T09:51:53.850338 | 2015-09-24T06:30:21 | 2015-09-24T06:30:21 | 43,049,245 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,235 | cpp | //
// FightScene.cpp
// 1507demo
//
// Created by mac on 15-7-29.
//
//
#include "FightScene.h"
#include "Base_Build.h"
#include "Base_Soilder.h"
#include "Manager_Player_Cache.h"
using namespace cocos2d;
Scene* FightScene::createScene()
{
// 'scene' is an autorelease object
auto scene = Scene::create();
... | [
"446413497@qq.com"
] | 446413497@qq.com |
12795e1ce7d10438f790118d7bd7d796d27f7cbc | 1a9652da55e21fd177f20f165b456c8297ee4738 | /C++Save/Tmp/ProjectA/Core/Common/Singleton.h | b86cfa72785338bc9d3c338be6ea391834439564 | [] | no_license | jingsia/three1 | c65e7a65f1e3b34ffd0b3922b2043c097acddf06 | 9d568722f90e37ca92a4c7561fe808da58ec1c1c | refs/heads/master | 2020-07-23T04:32:46.423865 | 2016-12-22T16:10:15 | 2016-12-22T16:10:15 | 73,817,286 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 670 | h | #ifndef SINGLETON_INC
#define SINGLETON_INC
#include <stdlib.h>
// Singleton object MUST BE initialized manually.
template <typename Type>
class Singleton
{
public:
static Type& Instance() // Unique point of access
{
if (s_Instance == 0)
{
s_Instance = new(Type)();
atexit(Destroy);
}
return *s_Instan... | [
"839172105@qq.com"
] | 839172105@qq.com |
1af8ef97e6331cfbc76f0c0f9a9036f1aceaa94f | 901c98bb6d28b857262340168e9f23b8179df6a1 | /OpenGLConsole/include/lights/LightManager.h | 3ca6798c8d61ef02d15b1f8fa3a276da8cb0bc4b | [] | no_license | ni-sirius/CoreOne | 4ae3fa2dd9f8a2b397ab0ebcb9d453082811de3f | 39dbec32d7e4db7e10edc37e1c1e3ef41108bd76 | refs/heads/master | 2021-06-11T20:01:50.305317 | 2021-04-10T12:47:59 | 2021-04-10T12:52:53 | 174,483,641 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 438 | h | #pragma once
#include "lights/Lights.h"
namespace coreone::graphics
{
class Shader;
}
class LightManager
{
public:
LightManager();
~LightManager();
void RegisterLight(std::shared_ptr<light::LightContainer> light);
void LoadLightsToShader(std::shared_ptr<coreone::graphics::Shader> shader) c... | [
"ni-sirius@ya.ru"
] | ni-sirius@ya.ru |
9904b13ee406a2e15282fd06aa09f7edf4746c5f | 9dc9ad709b3772d5b49adb1fc424caecde07988a | /dinput8/src/CPedHack.cpp | 879e899469da4cb71ff5b15c675d612110bc9a48 | [] | no_license | ModelingMan/gtalc-dinput8 | b31deb699a9b3ac7d985639a062602727001dd8e | 76f574d50c364af3241b2214863d69a0af215733 | refs/heads/master | 2021-01-19T01:48:23.794965 | 2019-08-19T19:09:23 | 2019-08-19T19:09:23 | 29,551,092 | 8 | 7 | null | 2019-06-17T21:30:48 | 2015-01-20T20:43:42 | C++ | UTF-8 | C++ | false | false | 1,314 | cpp | #include "CPedHack.h"
#include "Globals.h"
#include "SilentCall.h"
#include "WeaponTypes.h"
#include "vcversion.h"
// ServiceTalkingHackProxy
static unsigned long serviceTalkingEndJump = vcversion::AdjustOffset(0x00522890);
// InflictDamageHack
static unsigned long inflictDamageHackMatch = vcversion::AdjustOffset(0x0... | [
"spaceeinstein@yahoo.com"
] | spaceeinstein@yahoo.com |
aa0153db1d1f996e3e71955116f682be29b03afa | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14695/function14695_schedule_28/function14695_schedule_28_wrapper.cpp | beaa96bb60600e259f973ce60889b9a6157ab21c | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 860 | cpp | #include "Halide.h"
#include "function14695_schedule_28_wrapper.h"
#include "tiramisu/utils.h"
#include <cstdlib>
#include <iostream>
#include <time.h>
#include <fstream>
#include <chrono>
#define MAX_RAND 200
int main(int, char **){Halide::Buffer<int32_t> buf0(128, 64, 128, 64);
init_buffer(buf0, (int32_t)0);
... | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
43ddd216f9665fbb77e3f5cdfdfc5db54ea5ab78 | 6fc8de9661242a5c88c773a2521856309cf6a881 | /MatlabPlot/src/main.cpp | ca0de3c48a2024648f942c3f4509df38723eb245 | [] | no_license | akumrao/MP3Codec | 3fb8cf32b0c00db3a80b3a777200385ae5a5d642 | 369bcd18a91cc63d9a4fb29ffc4dbb83307c1b3c | refs/heads/master | 2020-03-15T06:13:31.643948 | 2018-06-06T16:28:47 | 2018-06-06T16:28:47 | 132,002,704 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,944 | cpp | #include "MatLabPlot.h"
#include "common.h"
using namespace std;
using namespace graph;
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
double normal_pdf(double x, double mean, double sigma);
int main() {
vector<double> x{1, 2, 3, 4, 5};
vector<double> y {25, 15, 5, -5, -15};
ve... | [
"akumrao@yahoo.com"
] | akumrao@yahoo.com |
38e58c8ecacd0e663835792b503ee7dd110d29aa | 8889c4dd54494a7d6ee63b69922331154ffd6ba4 | /app/kubeDimension/include/boost/boost/utility/explicit_operator_bool.hpp | 55a6d7eefc62e6bc86bd649fd29108f9a0ca9040 | [
"BSL-1.0"
] | permissive | hello-web/kubeDimension | 27d5e95f7b2d5c5b3743a0a53c6ac2b55c7bc509 | a52277e0622676ff65e9d210386aac018e3b43fa | refs/heads/master | 2021-05-30T02:19:22.596418 | 2015-11-30T02:46:21 | 2015-11-30T02:46:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 64 | hpp | ../../libs/core/include/boost/utility/explicit_operator_bool.hpp | [
"luc@blippar.com"
] | luc@blippar.com |
60af93015b9c54c68e82ba2d439ed1b6fe0ce2e9 | 2faab3545b7fd9c35913ffdd3ce1eb22e982a2b2 | /files/gl.cpp | 6d8c2f7d31ccc53c3991fd825f82d758190c66a0 | [] | no_license | yerson001/MyNeovimWSL | cf3e9eca5572d1e04d09d4bda457b92d6db62f49 | 751960a7af4d94e7f8d883542f483a112182bcee | refs/heads/main | 2023-04-08T05:04:53.116306 | 2021-04-17T05:35:24 | 2021-04-17T05:35:24 | 311,779,820 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,302 | cpp | #include <glad/glad.h>
#include <glfw/glfw3.h>
#include <iostream>
void framebuffer_size_callback(GLFWwindow* window, int width,int height);
void key_callback(GLFWwindow* window,int key,int scancode,int action,int mods);
void processInput(GLFWwindow* window);
const unsigned int SCR_WIDTH = 800;
const unsigned int SCR... | [
"noreply@github.com"
] | yerson001.noreply@github.com |
9746a6b9d73b04141b75132acf9dc95700632e6f | be341666d67bb0caae65a4f17a983d62f5e77f8f | /PA9_Darrah_Dalton/stackA.h | 9064507c0370833bc2869f96bf5644942b0ed7e6 | [] | no_license | ddarrah17/CS202 | 2a27f6f51e0e0d4218b1d5486f38f4b16ff84d82 | b232cb7e4054919733d4ce381f0ee74dab888220 | refs/heads/master | 2020-12-09T12:54:01.486194 | 2020-01-11T23:05:27 | 2020-01-11T23:05:27 | 233,309,451 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 621 | h | #include <iostream>
using namespace std;
class stackA{
public:
stackA(int = 10);
stackA(const stackA&);
~stackA();
stackA& operator=(const stackA&);
bool push(int);
bool pop();
int getTop();
... | [
"ddarrah@nevada.unr.edu"
] | ddarrah@nevada.unr.edu |
11ea87f3ec90ae2ca5876a319a8cddfe84b00509 | 8590b7928fdcff351a6e347c4b04a085f29b7895 | /CS_suite/CropSyst/rotation_editor/V4/form_rotation_editor.h | 8086a3b0df060ec9d1a6f4fc2c5bb9acb0ec4a95 | [] | no_license | liao007/VIC-CropSyst-Package | 07fd0f29634cf28b96a299dc07156e4f98a63878 | 63a626250ccbf9020717b7e69b6c70e40a264bc2 | refs/heads/master | 2023-05-23T07:15:29.023973 | 2021-05-29T02:17:32 | 2021-05-29T02:17:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,581 | h | //---------------------------------------------------------------------------
#ifndef form_rotation_editorH
#define form_rotation_editorH
//______________________________________________________________________________
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
... | [
"mingliang.liu@wsu.edu"
] | mingliang.liu@wsu.edu |
e78e56f497dc5b523a04de8898a3354747f5a0d7 | 2fc1b90f7d6c2af22035523c02788bf55a90182e | /C/Programming- Principles and Practice Using C/Exercises/Chapter 4/7.cpp | 42677b8eec15013f5f7779ff8ed58e5e61730833 | [] | no_license | Daniel-Saprykin/Programming | 4549251eed8586db0a8024c3b4317e43181391ba | a54fcc9df5c8a3cab2fcd9ce6bee0b84ec7da2d7 | refs/heads/master | 2020-03-23T02:01:32.043556 | 2018-09-16T10:53:44 | 2018-09-16T10:53:44 | 140,952,010 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,838 | cpp | // Модифицируйте мини-калькулятор, описанный в упр. 5, так. чтобы он принимал на вход цифры.
// записанные как в числовом, так и в строковом формате.
#include <iostream>
#include <cmath>
#include <vector>
#include <string>
using namespace std;
int main()
{
setlocale(LC_ALL, "Russian");
vector<string> vecstr{ "ze... | [
"noreply@github.com"
] | Daniel-Saprykin.noreply@github.com |
6a583a6645c4c9f80d456515d1775a5cb255da22 | bd525e45d16ee67b19ab83811c08930f12086b6c | /ITP/Cpp/11A.cpp | 06eb26d45c55d9e998408f8f25b1e36af1b7d016 | [] | no_license | face4/AOJ | fb86b3d9a05c2ea1da4819c0d253c48ca06efa56 | e869a5ab38a8ce4ecd7344fc24246da07e0a7b6e | refs/heads/master | 2021-06-10T11:56:27.591053 | 2020-11-26T12:01:35 | 2020-11-26T12:01:35 | 128,877,332 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 105 | cpp | #include <iostream>
using namespace std;
int main(){
cout << "Hello World" << endl;
return 0;
} | [
"s1611361@u.tsukuba.ac.jp"
] | s1611361@u.tsukuba.ac.jp |
f6fcd56e099f843eb66620a94c07c57f007ee83b | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/run-scripts/tmp_5/Z6.3+poreleaseonce+pooncerelease+poacquireonce.c.cbmc.cpp | b192f58db4a52e273908b5af3102ae6855967c64 | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C++ | false | false | 39,728 | cpp | // Global variabls:
// 4:atom_2_X2_0:1
// 0:vars:3
// 3:atom_2_X0_1:1
// Local global variabls:
// 0:thr0:1
// 1:thr1:1
// 2:thr2:1
#define ADDRSIZE 5
#define LOCALADDRSIZE 3
#define NTHREAD 4
#define NCONTEXT 5
#define ASSUME(stmt) __CPROVER_assume(stmt)
#define ASSERT(stmt) __CPROVER_assert(stmt, "error")
#define m... | [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
06013a82a0667f79472ac00fdf31baa1331375b6 | 766996d84cc71493deaf100f2493ee42ed0d4243 | /src/ifc/ifc4/IfcSystem.h | 2b968db97f8262043c78f79f86374428a7c10a77 | [] | no_license | andreasniggl/ifclite | 6040cd72460d401a364c4c7554f2fe3f44ee6df8 | aacc8a9f0add7036c4c04eeaed7938e731726ead | refs/heads/master | 2020-03-09T05:13:57.641923 | 2018-08-06T21:42:27 | 2018-08-06T21:42:27 | 128,607,886 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 893 | h | // Automatically generated by ifclite express parser from ifc4 express file - do not modify
#pragma once
#include "IfcTypeDefinitions.h"
#include "IfcGroup.h"
namespace ifc4
{
class IfcSystem : public IfcGroup
{
public:
virtual ~IfcSystem(){}
explicit IfcSystem() = default;
... | [
"33835650+andreasniggl@users.noreply.github.com"
] | 33835650+andreasniggl@users.noreply.github.com |
1c104140e7532961ebedcc1c288434d6515d8600 | 2f5c4bdc5e63b0d104bf1baa2ff3ce0a9a49b2be | /IoTtweet_test/IoTtweet_test.ino | 0efd79ca52a0ce1b2d825a2231f8e999183e9440 | [] | no_license | keptsecret/Air-Quality-Sensor-Scripts | fed1fb38e2725eda890c55114a93bf917ac93440 | d432b8e320f6995081ad7f9848f23da45cc72b59 | refs/heads/master | 2020-08-10T00:51:19.987381 | 2019-10-10T15:36:49 | 2019-10-10T15:36:49 | 214,214,510 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,804 | ino | /*
* This example demonstrate how to write data from your "Internet of Things" to IoTtweet dashboard
* coding from IoTtweet.com
* Created : 2016.Sep.25
* By Isaranu Janthong
* IoTtweet Founder.
* Visit us at : www.iottweet.com
*/
#include <ESP8266WiFi.h>
#include <IoTtweet.h>
const char *userid = "000498"; ... | [
"sorchon@gmail.com"
] | sorchon@gmail.com |
e447b78aa5d421412fe8b28f755cb6e949c817cc | e7016662374f79a07a5d0e049dad09a5a8d89cfc | /src/brpc/details/usercode_backup_pool.cpp | 1c25569e2a48989d60f24d6bb2fe079f4963d6d9 | [
"Apache-2.0"
] | permissive | bigo-sg/brpc | 9f631254c01f02fb6efcbf188be7e560805e945e | 9bd94d02decf04ed84775245a91ab09d290d6493 | refs/heads/master | 2021-07-19T02:35:24.012146 | 2021-07-14T04:38:10 | 2021-07-14T04:38:10 | 103,951,104 | 7 | 11 | Apache-2.0 | 2019-12-16T11:58:28 | 2017-09-18T14:40:17 | C++ | UTF-8 | C++ | false | false | 6,475 | cpp | // Copyright (c) 2016 Baidu, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed... | [
"gejun@baidu.com"
] | gejun@baidu.com |
1374007fa0953b57abbd97813eb1452b16454cd1 | 409ce560793c070ef4211b99c5a4a5316a258c4f | /unittests/libtests/faults/data/CohesiveKinSrcsDataTet4.hh | bbf27c655dd402299612cf021f25c7bcb1b8e1b1 | [
"MIT"
] | permissive | calum-chamberlain/pylith | bb718bfb4305f03b45d42348e5d4fa5ed5f4a918 | 8712c39ade53c1cc5ac0e671e4296cee278c1dcf | refs/heads/master | 2020-12-06T17:15:08.638337 | 2016-05-15T20:30:28 | 2016-05-15T20:30:28 | 46,401,744 | 0 | 0 | null | 2016-05-15T20:30:29 | 2015-11-18T07:09:12 | C++ | UTF-8 | C++ | false | false | 3,518 | hh | // -*- C++ -*-
//
// ======================================================================
//
// Brad T. Aagaard, U.S. Geological Survey
// Charles A. Williams, GNS Science
// Matthew G. Knepley, University of Chicago
//
// This code was developed as part of the Computational Infrastructure
// for Geodynamics (http://... | [
"baagaard@usgs.gov"
] | baagaard@usgs.gov |
8d1e7e1f6163e68521c82e33378e117ff21d7878 | 23954f95e2b22f588a4f432e46c134891d8a078f | /HMM/build/classes/hmm/viterbi-pr.cpp | dd3092127e0b11825eaebf8d26d209b9ab12c19a | [] | no_license | siddug/POS-tagger | 4c78b236d0092429aad3de966f69eb96f072f001 | a2a44c2a67818763773d9ca607272668d2dba1fe | refs/heads/master | 2016-09-06T03:15:17.021621 | 2013-10-25T11:52:35 | 2013-10-25T11:52:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,508 | cpp | #include <iostream>
#include <vector>
#include <map>
#include <string>
#include <string.h>
using namespace std;
typedef struct Node Node;
typedef Node* NodePtr;
struct Node{
int state;
NodePtr prev_node;
float prob;
Node(int s,NodePtr prev, float p):state(s),prev_node(prev),prob(p){}
};
char* speech;
vector<char... | [
"siddhartha.gunti191@gmail.com"
] | siddhartha.gunti191@gmail.com |
ad1e53933612738a1035b4925677b6ab4636dba0 | 5ff80a43bc2037b1e8d1656490d6302fdf61a1ab | /stackassignment/ev.cpp | 4fa4bb755f76c126972cdcccfd5c318fcf72d0b2 | [] | no_license | samikshasadana/data_structures | a22544e761494c90621bbda318995a0e79df177e | af19220a48d5f0855175dbc4743de0646a0a2302 | refs/heads/master | 2020-04-20T20:49:41.488322 | 2019-02-04T14:23:38 | 2019-02-04T14:23:38 | 169,089,201 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 569 | cpp | #include<iostream>
using namespace std;
int top=-1;
int a[100];
void push(int x){
a[++top]=x;
}
int pop(){
int c=a[top];
top--;
return c;
}
void eval(char exp[]){
char *e;
int a,b,c;
e=exp;
while(*e!='\0'){
if(*e=='+'){
a=pop();
b=pop();
c=a+b;
//cout<<c;
// cout<<c<<" "<<a<<" "<<b<<endl;
push(c... | [
"sadanasamiksha@gmail.com"
] | sadanasamiksha@gmail.com |
3c14bf8f9ee60c7c993db2ade39cec4abda59101 | c5d59f8c30540d30a1c0930e8c60a8dac8a22889 | /tests/brace-list.cc | 8378ac616eff77676bcaf97a534a97e8f9aae517 | [] | no_license | arai-a/spider-monkey-c-style | 524dec2dfc8a99802fefddc9df191783b4730966 | d29e7794e702f463aba20a993e04134a14d2725e | refs/heads/master | 2021-01-10T01:01:54.383993 | 2014-04-03T19:16:58 | 2014-04-04T11:34:41 | 18,411,979 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 278 | cc | int
match()
{
// foobar baz[] =
// {
// 0,
// 1,
// 2,
// {
// 1
// }
// };
foobar baz[] =
{
0,
1,
2,
{
1
}
};
}
| [
"arai_a@mac.com"
] | arai_a@mac.com |
86f599f3d93fa3eb62e184e47dd5210e54bdd582 | d55aff0b77f6b9338397892217afa50bac3c5daf | /include/math/algorithms.h | 2311fdf404d4c46d36990db7cbc14fd167acb3f2 | [
"Apache-2.0"
] | permissive | NiklasDallmann/ToyPT | 592d6a0cefe7a5d907359b86bc153cdf58199dba | 1cb66982a48c2e0c77dededd12278eec272e0fd1 | refs/heads/master | 2020-05-26T16:56:54.679431 | 2019-11-19T10:12:46 | 2019-11-19T10:12:46 | 188,308,993 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,803 | h | #ifndef ALGORITHMS_H
#define ALGORITHMS_H
#ifdef __AVX__
#include <immintrin.h>
#endif
#include <cxxutility/definitions.h>
#include "vector4.h"
namespace ToyPT
{
namespace Math
{
constexpr float epsilon = 1e-6f;
template <typename T>
HOST_DEVICE inline bool fuzzyCompareEqual(const T left, const T right);
templat... | [
"git@niklas-dallmann.de"
] | git@niklas-dallmann.de |
a000503279a6e05bd4e00c0970974202eb353809 | 216f5252a8df73f8547d6a6c831409c916bae3e5 | /windows_embedded_compact_2013_2015M09/WINCE800/private/test/Multimedia/DirectX/dshow/dshow_glitchfree/scanner.cpp | 93311fec7432bdafb953444e588cb717111291bb | [] | no_license | fanzcsoft/windows_embedded_compact_2013_2015M09 | 845fe834d84d3f0021047bc73d6cf9a75fabb74d | d04b71c517428ed2c73e94caf21a1582b34b18e3 | refs/heads/master | 2022-12-19T02:52:16.222712 | 2020-09-28T20:13:09 | 2020-09-28T20:13:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,933 | cpp | //
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreement under which you licensed
// this source code. If you did not accept the terms of the license agreement,
// you are... | [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
eabfd47f2e29daf1af80b09b97c0b625e286800f | 955e78f80868f96490e1fa99aae4520203c3b3f1 | /HomingMissile/Classes/Native/Il2CppGenericMethodPointerTable.cpp | fff3211228c38f8e2b13b51f19e553020064c5c5 | [] | no_license | DimaNakhratiants/HomingMissile | 3ab894f57fb84b9181acaef0a431fe5168dd7f4f | 8b3b75fae11fa15c6899827a2fcfa863c37592b0 | refs/heads/master | 2021-05-06T12:31:48.113029 | 2017-12-06T13:22:36 | 2017-12-06T13:22:36 | 113,148,041 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 710,954 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include "class-internals.h"
#include "codegen/il2cpp-codegen.h"
extern "C" void Array_InternalArr... | [
"dirmidante@gmail.com"
] | dirmidante@gmail.com |
d94c8dff10ffd22180348a315891a5f065076941 | 2d43e1f524cef29254db386f6483e93b46ac2434 | /tests/flash_mock.cpp | 80bea0e8b7f877882614d488991e934e779ec179 | [
"MIT"
] | permissive | cvra/parameter_flash_storage | 4736465477bf3de518f0f296b87b644f485a6282 | c52353044ff2e142b13921af764eb63017fe2ae8 | refs/heads/master | 2021-10-07T07:41:53.157809 | 2018-12-03T20:26:47 | 2018-12-03T20:26:47 | 109,841,335 | 2 | 0 | MIT | 2018-12-03T13:59:18 | 2017-11-07T13:47:24 | C | UTF-8 | C++ | false | false | 1,430 | cpp | #include <CppUTest/TestHarness.h>
#include <CppUTestExt/MockSupport.h>
#include "../flash.h"
#include <cstring>
extern "C" {
void flash_lock(void)
{
mock("flash").actualCall("lock");
}
void flash_unlock(void)
{
mock("flash").actualCall("unlock");
}
void flash_sector_erase(void *p)
{
mock("flash").actual... | [
"antoine@antoinealb.net"
] | antoine@antoinealb.net |
f1d2908fc0855a47692d913266145e33896e23c7 | 200b310a18514177117cda1d1faed81dbfaa3a3e | /devel/.private/bwi_perception/include/bwi_perception/GetPCDResponse.h | c5df41bddf0600860696b3d076a694804fbd2e33 | [] | no_license | YoheiHayamizu/rl_ws | c63aedd2dc539bd56398dd19eafe9932bc598040 | 7fdde2f72a3b9cbef585e218d568e8c44c2e374e | refs/heads/main | 2023-08-16T09:29:33.289334 | 2021-10-23T20:59:08 | 2021-10-23T20:59:08 | 420,521,618 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,294 | h | // Generated by gencpp from file bwi_perception/GetPCDResponse.msg
// DO NOT EDIT!
#ifndef BWI_PERCEPTION_MESSAGE_GETPCDRESPONSE_H
#define BWI_PERCEPTION_MESSAGE_GETPCDRESPONSE_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_t... | [
"hayamizu0111@gmail.com"
] | hayamizu0111@gmail.com |
fc3cc9da66b4691777681b289f633954ab127271 | 238e46a903cf7fac4f83fa8681094bf3c417d22d | /OCC/opencascade-7.2.0/x64/debug/inc/MeshVS_SymmetricPairHasher.hxx | e3abfbcc28c12eb61f6650ba2ed0b96dc5b8b374 | [
"BSD-3-Clause"
] | permissive | baojunli/FastCAE | da1277f90e584084d461590a3699b941d8c4030b | a3f99f6402da564df87fcef30674ce5f44379962 | refs/heads/master | 2023-02-25T20:25:31.815729 | 2021-02-01T03:17:33 | 2021-02-01T03:17:33 | 268,390,180 | 1 | 0 | BSD-3-Clause | 2020-06-01T00:39:31 | 2020-06-01T00:39:31 | null | UTF-8 | C++ | false | false | 1,448 | hxx | // Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with spe... | [
"l”ibaojunqd@foxmail.com“"
] | l”ibaojunqd@foxmail.com“ |
2d6ebccdb177cd1bf2ecd73b645a48b1ada82cff | 3b3c47803b31d814e500caa8896427afc8c8c25b | /funciones.h | 956c345e40124e424136ccada4eb3672c70099b7 | [] | no_license | vitorohe/tarea2PAI | 7359e09fe667faad3ca61f3a1f33e0dc352e297b | 532d1b9f92e440ef2eb0cd053362108cbb441f12 | refs/heads/master | 2021-01-20T23:27:13.091671 | 2013-05-23T17:45:11 | 2013-05-23T17:45:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 328 | h | //funciones.h
#ifndef FUNCIONES_H
#define FUNCIONES_H
#include <opencv2/core/core.hpp>
using namespace cv;
class Funciones
{
public:
Funciones();
static int umbralOtsu(Mat input);
static Mat histograma(Mat input);
static vector<vector<Point> > get_contours(Mat input, vector<Vec4i>& hierarchy);
};
#endif // FUNC... | [
"vitorohe@gmail.com"
] | vitorohe@gmail.com |
07aeea8f3f6f4a00d70a1a8256e455679f23e970 | 89d3a934c9ad223941342b652c90911bc37a5aa9 | /trie.cpp | ef49476f2ac1084b3f8dd526e11f64e8b0e7faae | [] | no_license | shivam197/Cpp-Algorithms | 05cf89d12748369d3c5a06e62b84288c5f384a2a | c6b0a5f299925e04f8e66490db3ceb35980b38d4 | refs/heads/master | 2021-02-04T00:10:30.047612 | 2020-03-26T23:39:06 | 2020-03-26T23:39:06 | 243,583,118 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,226 | cpp | #include<bits/stdc++.h>
#define ll long long int
#define ull unsigned long long int
#define ld long double
#define mod 1000000007
#define FT() int t; scanf("%d",&t); while(t--)
#define pb push_back
#define nl printf("\n")
#define fi(i,start,end) for(int i=start; i < end ; ++i)
#define fd(i,end,start) for(int i=end-1;i>... | [
"shivamsehgal1980@gmail.com"
] | shivamsehgal1980@gmail.com |
3c14a84ecdf34479b1a1f1ae93c6354cc302c074 | 254bf7d275384ed462a49b81e4930e9bd5ab29d7 | /P1/Prac1/exercici3/Circle.cpp | bafea28e01f26bb2b74275491753df5845a93701 | [
"WTFPL"
] | permissive | leRoderic/ED2018 | 74dfc20183c17ef152df12f770eb9976a78a8c3a | a1663fc7b1ce8ae29ba5d9c004a0ddcf32d6c2aa | refs/heads/master | 2021-06-02T09:07:30.053040 | 2019-11-07T18:06:20 | 2019-11-07T18:06:20 | 123,178,244 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 481 | cpp | /*
* File: Circle.cpp
* Author: Sergio Barril Pizarro i Rodrigo Cabezas Quirós
*
* Created on 20 / de febrer / 2018, 10:06
*/
#include "Circle.h"
Circle::Circle() {
radi = 0;
}
Circle::Circle(float r) {
if(r > 0)
radi = r;
else{
cout << "Atencio, aquest valor no es acceptat" <... | [
"noreply@github.com"
] | leRoderic.noreply@github.com |
c8b92cfb40278a02ae8656f0760a92ffd5787e99 | f52bf7316736f9fb00cff50528e951e0df89fe64 | /Platform/vendor/samsung/common/packages/apps/SBrowser/src/content/browser/renderer_host/render_widget_host_view_guest.cc | 6f023671116cfd53afb0a6d9b0b512ec2f358126 | [
"BSD-3-Clause"
] | permissive | git2u/sm-t530_KK_Opensource | bcc789ea3c855e3c1e7471fc99a11fd460b9d311 | 925e57f1f612b31ea34c70f87bc523e7a7d53c05 | refs/heads/master | 2021-01-19T21:32:06.678681 | 2014-11-21T23:09:45 | 2014-11-21T23:09:45 | 48,746,810 | 0 | 1 | null | 2015-12-29T12:35:13 | 2015-12-29T12:35:13 | null | UTF-8 | C++ | false | false | 14,876 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/bind_helpers.h"
#include "base/command_line.h"
#include "base/logging.h"
#include "base/message_loop.h"
#include "content/browser/brows... | [
"digixp2006@gmail.com"
] | digixp2006@gmail.com |
85e4ed7fe1f5edceb4743cdf9a0cddacc460b19b | 59bd9f538a2deb427d95ccc6701fa89ad3bcccc3 | /newfile.cpp | b6c25ecebeb6812c2497fa0430b7bbebe5443083 | [] | no_license | avDec25/codes | 841478189bebbbb64a2f0fa30b4629f6da649188 | 9c59468ae7e52ef6fe8cf646712b67723217e783 | refs/heads/master | 2016-09-06T16:47:19.070367 | 2015-02-27T22:20:38 | 2015-02-27T22:20:38 | 29,458,332 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 579 | cpp | /*
* =====================================================================================
*
* Filename: newfile.cpp
*
* Description:
*
* Version: 1.0
* Created: Friday 27 February 2015 04:37:18 IST
* Revision: none
* Compiler: gcc
*
* Author: Amar Vashish... | [
"vashishth.amar@gmail.com"
] | vashishth.amar@gmail.com |
c3746893ca86c1b93abf95a01097cae735f12284 | d08d5bf8fd21587763a94dea1ac775ec0388eb70 | /core/render_system/Updater.hpp | df745eae5e4ec233f8c066e99f6734a8e694cc35 | [
"MIT"
] | permissive | ibequa/flexo | c1fa7a7fd28b46659702380c86bf8f16f2f1014a | 93b9b1287f33bd3420e33bf4a7bc5961d680b5e1 | refs/heads/master | 2021-01-09T20:39:47.863350 | 2016-07-13T13:53:17 | 2016-07-13T13:53:17 | 63,248,577 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 478 | hpp | //
// Updater.hpp
// Flexo
//
// Created by Ilya on 27/03/16.
// Copyright © 2016 Ilya. All rights reserved.
//
#ifndef Updater_hpp
#define Updater_hpp
#define updater Updater::instance()
class Component;
class Updater final {
private:
Updater() {}
public:
void update();
void awake();
... | [
"ibequa@gmail.com"
] | ibequa@gmail.com |
59ae14c29523013d59f19750ea4095028fed56e3 | 6e1d46473b0d98f59a87ee52d4012ba8bc15fc22 | /T4C Server/WDAWorlds.h | fff84b3f64aa94d2e1b429ffe2542d630692ea80 | [] | no_license | BlackFury/Server-1 | 3ad544831a294225c9ca7a475a2347a4c6808372 | ea0a8b57737f3fcc6406a0fd58fd79a644019d32 | refs/heads/master | 2022-03-15T21:51:08.729897 | 2017-05-19T17:43:47 | 2017-05-19T17:43:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,342 | h | #ifndef AFX_WDAWORLDS_H__0F034DCF_D33D_11D2_84AD_00E02922FA40__INCLUDED_
#define AFX_WDAWORLDS_H__0F034DCF_D33D_11D2_84AD_00E02922FA40__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif
#include "WDATable.h"
#include <vector>
#include <string>
class WDAWorlds : public WDATable
{
public:
// Construction
WDAWo... | [
"melodiass@com-db.fr"
] | melodiass@com-db.fr |
f279ba83c6cfc3d5f67c3c29b8b433b6d70dac23 | e641bd95bff4a447e25235c265a58df8e7e57c84 | /chrome/browser/media/kaleidoscope/kaleidoscope_tab_helper.cc | 414e4e2aaf51d9ea5aa825c89dbc03abda2875ae | [
"BSD-3-Clause"
] | permissive | zaourzag/chromium | e50cb6553b4f30e42f452e666885d511f53604da | 2370de33e232b282bd45faa084e5a8660cb396ed | refs/heads/master | 2023-01-02T08:48:14.707555 | 2020-11-13T13:47:30 | 2020-11-13T13:47:30 | 312,600,463 | 0 | 0 | BSD-3-Clause | 2022-12-23T17:01:30 | 2020-11-13T14:39:10 | null | UTF-8 | C++ | false | false | 3,367 | cc | // Copyright 2020 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/media/kaleidoscope/kaleidoscope_tab_helper.h"
#include "base/metrics/histogram_functions.h"
#include "chrome/browser/media/kalei... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
c7a824a410597daee542f5ac00ef389f385c0ad2 | e6ed9f0975d29dd857790e54b8ce9b8829c55cb4 | /HT_make_ntuples/linkdefs.h | 9f98a7aa3d8eed0628bd3d2721c4337875ccaf7f | [] | no_license | htrauger/JetTrackCorrelations | 80b0830ee74966ea91b60cb0e36eb84f5eadedaa | a8ea94b879f1b0d641a01baccec50001e0005504 | refs/heads/master | 2021-01-18T23:26:19.279318 | 2016-07-18T13:00:22 | 2016-07-18T13:00:22 | 30,802,706 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,094 | h | /********************************************************************
* linkdefs.h
* CAUTION: DON'T CHANGE THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED
* FROM HEADER FILES LISTED IN G__setup_cpp_environmentXXX().
* CHANGE THOSE HEADER FILES AND REGENERATE THIS FILE.
********************************... | [
"hallie.causey.trauger@cern.ch"
] | hallie.causey.trauger@cern.ch |
74e3fa539c0fcc1a533d0104e7b1dc9db31f5077 | 1cf49e005bec00ffba3a966365ebf77658ac3215 | /Medium/11.Funciones/97.04.Parte_fraccionaria.cpp | de53a8aa6176e04af8467bdb3d9fb6d07310cf45 | [] | no_license | raulgoce/porfolio | 394e4fd5d9971d6b1c6b41b85d77eb4887fc6274 | 905cc2079bf45d12105dc49adf22f9a8b33c62ab | refs/heads/master | 2020-06-11T11:06:47.532241 | 2019-06-26T17:02:16 | 2019-06-26T17:02:16 | 193,939,600 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 541 | cpp | /* 3.Escribe un programa que devuelva la parte fraccionaria de un numero
introducido por el user.*/
#include <iostream>
#include <conio.h>
using namespace std;
//Prototipo de la funcion
void askData();
float cutNumber(float x);
float number;
int main(){
askData();
cout<<"La parte fraccionaria del numero es: ... | [
"your@email.com"
] | your@email.com |
3c1eadfb8879861d6c212a8f191f3ffa062d9adb | 127b4bb0893d5ca8fb066e9e2d770538240432ea | /yellowfellow-ac/SPOJ/GREED/16603011_AC_1630ms_17408kB.cpp | d0a2b7ef34b7e3c60a954b5c9b2511d83d5ed333 | [] | no_license | kuningfellow/Kuburan-CP | 5481f3f7fce9471acd108dc601adc183c9105672 | 2dc8bbc8c18a8746d32a4a20910b717c066d0d41 | refs/heads/master | 2020-04-24T15:13:40.853652 | 2019-12-24T07:21:38 | 2019-12-24T07:21:38 | 172,057,574 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,332 | cpp | //SPOJ GREED Greedy Island
//tag: Minimum Cost Flow Problem
//solution: SAP (Shortest Augmenting Path) using Bellman Ford
#include<bits/stdc++.h>
using namespace std;
const int N = 502;
const int MAX = (1 << 30);
struct edge {
int v, b, f, c;
};
vector<edge> lis[N];
pair<int,int> bac[N];
int vis[N];
int cnt[N];
voi... | [
"williamgunawaneka@gmail.com"
] | williamgunawaneka@gmail.com |
981d7914705e092dce2d5e2ef4c5535e18bc885a | 49a488dfd01e842da42c964aecc41cbb166a802c | /PierdeMemoria/jugador.cpp | 0a1fc6cdba136808b4ba248ae4e2a386462103ca | [] | no_license | EddyVegaGarcia/TP2-QWERTY | 35b385e8c2a5a46ec6b97b5f22d872eb144a94df | a40767c807fe7a239b04a37f23d9b8125686c97e | refs/heads/master | 2021-08-28T15:30:01.912049 | 2017-12-12T16:16:52 | 2017-12-12T16:16:52 | 111,703,500 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,763 | cpp | # include "jugador.h"
Jugador::Jugador(char letra, Mapa* punteroAMapa){
asignarAlias(letra);
asignarPuntaje(0);
asignarEstado(SIGUE_JUGANDO);
inicializarPunteroAJugada(punteroAMapa);
this->mapa = punteroAMapa;
}
// métodos púbicos
void Jugador::modificarPuntaje(int puntos){
this->puntaje+=puntos;
}
char Jugado... | [
"noreply@github.com"
] | EddyVegaGarcia.noreply@github.com |
b3a6b08cb4e4a6c80e8d5192da5150b9d0a30ca7 | 59ad83925bd1ffb3f3b6248ddf317921ed2bb24b | /ATATool/PropertyPageMATV.cpp | d0610827ad10ea03814b1b1d79b0ac7b61fe6964 | [] | no_license | momoomom/ATA | f5cb01615b2b662d54ec834c95d7d5921ab96c7c | 92489654d21c61b8a5cc6f62b790ddfa6448e704 | refs/heads/master | 2021-12-11T13:20:11.810785 | 2016-11-15T07:02:26 | 2016-11-15T07:02:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,401 | cpp | // PropertyPageMATV.cpp : implementation file
//
#include "stdafx.h"
#include "ATATool.h"
#include "PropertyPageMATV.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPrope... | [
"jian.song@wheatek.com"
] | jian.song@wheatek.com |
40cf3fe024d996445dfee442c910c313fad4cdf0 | b8499de1a793500b47f36e85828f997e3954e570 | /v2_3/build/Android/Debug/app/src/main/include/Fuse.Navigation.Route-8eb7c589.h | 298ecee61a2561a13c2fc76a8bee10d51b39e80c | [] | no_license | shrivaibhav/boysinbits | 37ccb707340a14f31bd57ea92b7b7ddc4859e989 | 04bb707691587b253abaac064317715adb9a9fe5 | refs/heads/master | 2020-03-24T05:22:21.998732 | 2018-07-26T20:06:00 | 2018-07-26T20:06:00 | 142,485,250 | 0 | 0 | null | 2018-07-26T20:03:22 | 2018-07-26T19:30:12 | C++ | UTF-8 | C++ | false | false | 391 | h | // This file was generated based on C:/Users/Vaibhav/AppData/Local/Fusetools/Packages/Fuse.Navigation/1.9.0/RouterModify.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Int.h>
namespace g{
namespace Fuse{
namespace Navigation{
// internal enum RouterModify.Flags :98
... | [
"shubhamanandoist@gmail.com"
] | shubhamanandoist@gmail.com |
ec414790ea5872f0c3ffe74f750ee410a4af4c4b | 31ac07ecd9225639bee0d08d00f037bd511e9552 | /externals/OCCTLib/inc/Handle_XmlMXCAFDoc_MaterialDriver.hxx | d0aa4880bf0445d8b1d5469ee47aedadf77419da | [] | no_license | litao1009/SimpleRoom | 4520e0034e4f90b81b922657b27f201842e68e8e | 287de738c10b86ff8f61b15e3b8afdfedbcb2211 | refs/heads/master | 2021-01-20T19:56:39.507899 | 2016-07-29T08:01:57 | 2016-07-29T08:01:57 | 64,462,604 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 806 | hxx | // This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _Handle_XmlMXCAFDoc_MaterialDriver_HeaderFi... | [
"litao1009@gmail.com"
] | litao1009@gmail.com |
c7fb8c2d97edf3f634c9f610e270cecc5f89b0ba | f7df85243fdfc3ac8e73cc9427d256c0e6e90766 | /editortab.cpp | 833c44b6bb441bdaa8394759d8b7e0185bf388c5 | [] | no_license | sashka3076/PlistEDPlus | 55e1006edb7467c40d1a217ea1717dfb0d37ab24 | 71c64b17c095c21b0eda50f3187e4ba0d3033672 | refs/heads/main | 2023-01-30T22:30:00.817300 | 2020-12-17T11:47:48 | 2020-12-17T11:47:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,504 | cpp | #include "editortab.h"
#include "ui_editortab.h"
#include "mainwindow.h"
#include "ui_mainwindow.h"
extern QStatusBar* myStatusBar;
extern QToolBar* myToolBar;
extern ItemState* copy_state;
extern EditorTabsWidget* tabWidget;
extern DomItem* copy_item;
extern QAction* copyAction;
extern QAction* cutActi... | [
"noreply@github.com"
] | sashka3076.noreply@github.com |
cc156e3fcb54a4d3e6aad6ec3d81ec42cbb4e8c3 | a7c8fef892ae6a0976b61773291cc21e9461342d | /RT/Bmpfile.cpp | 7d1173f56d1170c2c2cc692197bf9398c38ce350 | [] | no_license | AntoineCollot/SyntheseImage | 8e1fa14fc29fbf529b927f2bba4fe488c576d53c | 898710c1a91a51e59814d9d6f0477e273c957495 | refs/heads/master | 2021-01-19T09:24:29.718201 | 2017-02-15T20:55:39 | 2017-02-15T20:55:39 | 82,105,725 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,296 | cpp | #ifdef _WIN32
#define _CRT_SECURE_NO_DEPRECATE
#endif
#include "BMPFILE.h"
void BMPFile::SaveBmp(std::string fileName,unsigned char *img,unsigned int w,unsigned int h)
{
int filesize = 54 + 3*w*h; //w is your image width, h is image height, both int
unsigned char bmpfileheader[14] = {'B','M', 0,0,0,0, 0,0, 0,0, 5... | [
"iyorshi@gmail.com"
] | iyorshi@gmail.com |
b212f623a2d935cfdf27b87b853660898472a2ec | 2d42a50f7f3b4a864ee19a42ea88a79be4320069 | /source/game/forms/characterwindow.cpp | f11c9bee7a59027d617a00f1e828431b20da51cb | [] | no_license | Mikalai/punk_project_a | 8a4f55e49e2ad478fdeefa68293012af4b64f5d4 | 8829eb077f84d4fd7b476fd951c93377a3073e48 | refs/heads/master | 2016-09-06T05:58:53.039941 | 2015-01-24T11:56:49 | 2015-01-24T11:56:49 | 14,536,431 | 1 | 0 | null | 2014-06-26T06:40:50 | 2013-11-19T20:03:46 | C | UTF-8 | C++ | false | false | 250 | cpp | #include "characterwindow.h"
#include "ui_characterwindow.h"
CharacterWindow::CharacterWindow(QWidget *parent) :
QWidget(parent),
ui(new Ui::CharacterWindow)
{
ui->setupUi(this);
}
CharacterWindow::~CharacterWindow()
{
delete ui;
}
| [
"nickolaib2004@gmail.com"
] | nickolaib2004@gmail.com |
b742f64a44cb1274b42a06f972a8c5154c2be7cc | 9b527d9e39ff2b33e2e86af842031bf27d4bebe4 | /C/chash/asgn2/cd.cpp | 444a8edd2b413a8096b6d9b8a6d64c9516ffca99 | [] | no_license | Brinews/jacky | c50cdc5471ef7a764c2a27313ebf848e41c4aee0 | e3f0f4bdf4253448f22306b353cb45560e882587 | refs/heads/master | 2021-01-17T08:32:11.034322 | 2017-12-03T08:28:17 | 2017-12-03T08:28:17 | 14,444,828 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 958 | cpp | #include "cd.h"
#include <stdlib.h>
Cd::Cd()
{
memset(performers, 0, sizeof(performers));
memset(label, 0, sizeof(label));
selections = 0;
playtime = 0.0;
}
Cd::Cd(char *s1, char *s2, int n, double x)
{
int i = 0;
memset(performers, 0, sizeof(performers));
while (s1 != NULL && *s1 != '\0')
performers[i++]... | [
"brinewsor@gmail.com"
] | brinewsor@gmail.com |
f1e10bc9e6b306f8112d2e7a26eae117e38be82e | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/run-scripts/tmp_1/S+dmb.sylp+po.c.cbmc.cpp | 21d345bd6c4bf2289e5ba827209fda658c285924 | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C++ | false | false | 25,416 | cpp | // 0:vars:2
// 2:atom_1_X0_1:1
// 3:thr0:1
// 4:thr1:1
#define ADDRSIZE 5
#define NPROC 3
#define NCONTEXT 1
#define ASSUME(stmt) __CPROVER_assume(stmt)
#define ASSERT(stmt) __CPROVER_assert(stmt, "error")
#define max(a,b) (a>b?a:b)
char __get_rng();
char get_rng( char from, char to ) {
char ret = __get_rng();
... | [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
8e53671954d7abfb0c6189bc2804379428641136 | 867cbc899c85011bf678177b2a279b887747e180 | /include/cgl/base/fixedpoint.h | ccf45df087abc29b7b4e481fab8bba01f06b18a7 | [
"MIT"
] | permissive | sdragonx/cgl | d9354fafd4ac18aeb06100e259102f4d873d3a1c | d8d45d3a3930bc8f3d0851371760742fda4733b8 | refs/heads/master | 2021-01-17T18:25:46.248270 | 2021-01-01T02:06:14 | 2021-01-01T02:06:14 | 64,765,330 | 1 | 0 | null | 2018-11-24T20:04:10 | 2016-08-02T14:46:19 | C++ | GB18030 | C++ | false | false | 1,722 | h | /*
Copyright (c) 2005-2020 sdragonx (mail:sdragonx@foxmail.com)
fixedpoint.h
2020-03-26 11:13:58
*/
#ifndef FIXEDPOINT_H_20200326111358
#define FIXEDPOINT_H_20200326111358
#include <cgl/public.h>
namespace cgl{
const int FP_SHIFT = 16;
const int FP_HALF_SHIFT = FP_SHIFT / 2;
const int FP_... | [
"noreply@github.com"
] | sdragonx.noreply@github.com |
130144c22bf8f5b575c8ce287994521261791f9d | 21e43827c3d40191621bec988a00d367d2762881 | /solved/obtain 2 zeros.cpp | 0513643931a0b2e40c139f38b63475fec5f2fac7 | [] | no_license | manavroX/codeforces-problem-solutions | 297d9e3c18ea336e74d422ef8f50ae4c1260bab7 | 7dda7bc7b76a9b162a98bb07e15e5dbe44bd994c | refs/heads/main | 2023-04-24T03:22:27.138747 | 2021-05-13T14:02:59 | 2021-05-13T14:02:59 | 367,061,791 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 498 | cpp | #include <iostream>
using namespace std;
int main()
{
int t;
cin >> t;
bool ans[t];
for(int i=0;i<t;i++)
{
int a,b;
cin >> a >> b;
if(((2*a)-b)%3==0&&((2*b)-a)%3==0&&((2*a)-b)>=0&&((2*b)-a)>=0)
{
ans[i]=true;
}
else
{
an... | [
"38128162+manavroX@users.noreply.github.com"
] | 38128162+manavroX@users.noreply.github.com |
4176012e57f5d2f48e42ab29ecb8e75940b597df | f2c8fe4dd7996137abe52bd60b875fd22564f739 | /tower.cpp | 44c61c2ce37da32f47160a06fe3be1cdab2a7262 | [] | no_license | mobilerobotp4/DataStructure | 8d670af80b04cee0433b293e3566b9f68caf5876 | 718626925c15c7eae1f9189ae8d977a409e5d909 | refs/heads/master | 2023-01-21T04:34:53.852406 | 2020-11-24T15:03:08 | 2020-11-24T15:03:08 | 296,801,322 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 668 | cpp | /* Tower of Hanoi */
#include<stdio.h>
int move(int,int,int,int);
int main()
{
int n;
printf("Enter the number of disks at initial state:");
scanf("%d",&n);
move(n,1,3,2);
return 0;
}
int move(int count,int start, int stop,int temp)
{
if(count>0)
{
move(count-1,start,temp,stop);
printf("Move ... | [
"noreply@github.com"
] | mobilerobotp4.noreply@github.com |
74ce0dcdb25c3e7304fc61cf9c6150df49ca3dfe | 3c6faf45fa2a2c1daa7b3a56c507bcc0273b3463 | /Source/BattleOfShips/ShipComponentBase.cpp | c98ea69e500f8f0c290c93093c0847975ed9ccd6 | [] | no_license | wangyars/BattleOfShips | fd396d10b19b2afce4f65a6b9943cc659f0f8749 | 278e0e4c72a4cb27da07803f0ab4a80ab55d4e09 | refs/heads/master | 2020-06-14T19:32:04.270182 | 2016-12-02T02:41:36 | 2016-12-02T02:41:36 | 75,353,698 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 875 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "BattleOfShips.h"
#include "ShipComponentBase.h"
// Sets default values for this component's properties
UShipComponentBase::UShipComponentBase()
{
// Set this component to be initialized when the game starts, and to be ticked ev... | [
"wangyars@hotmail.com"
] | wangyars@hotmail.com |
65726ae8c7dc19c4decb46c29d4928dc5f89b104 | 5ebd5cee801215bc3302fca26dbe534e6992c086 | /blazetest/src/mathtest/smatsmatmult/HCbDCa.cpp | dc46e95a69ce17215bf386dcdb39056f1b79424b | [
"BSD-3-Clause"
] | permissive | mhochsteger/blaze | c66d8cf179deeab4f5bd692001cc917fe23e1811 | fd397e60717c4870d942055496d5b484beac9f1a | refs/heads/master | 2020-09-17T01:56:48.483627 | 2019-11-20T05:40:29 | 2019-11-20T05:41:35 | 223,951,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,160 | cpp | //=================================================================================================
/*!
// \file src/mathtest/smatsmatmult/HCbDCa.cpp
// \brief Source file for the HCbDCa sparse matrix/sparse matrix multiplication math test
//
// Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved
//
// Th... | [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
ae79a73ac8ef1c5dc3d7186911dcf830ae45482f | 4c72d41e27022b9ecd7b373f3ea8e9ba1c9a30e0 | /src/moc/moc_mgmodelviewerwidget.cpp | 595a443e2a770519909a680b8770506f8beff5a8 | [] | no_license | jon1scr/MGF-Explorer | 25d657310cc83a12d2b623d7220a1f9fe1d9b397 | 6d773991188d0ed189c421905e6fca3a18ec1e95 | refs/heads/master | 2023-01-13T12:32:55.549226 | 2020-11-15T23:00:53 | 2020-11-15T23:00:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,964 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'mgmodelviewerwidget.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.14.2)
**
** WARNING! All changes made in this file will be lost!
************************************************... | [
"tomjw@protonmail.ch"
] | tomjw@protonmail.ch |
8b1628ca51ed077d5bfd91e0b5f13f682ed88233 | 5e502618dfdfa9e104aaf2ba8d6757737e5123d8 | /Assignment3/PhysicsProject/MainApp.h | 22e49c7ad35a389143165e6d0e731424401dd3aa | [] | no_license | ccmccooey/Game_Physics | 96d96f390222261f6155e851009ec88ea7e2efa3 | 8b0ae74b95c3973aa62e3182a7cc3df84e7383d2 | refs/heads/master | 2021-01-25T05:28:02.878845 | 2015-05-01T22:05:13 | 2015-05-01T22:05:13 | 29,218,246 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,132 | h | #ifndef _MAIN_APP_H
#define _MAIN_APP_H
class Camera;
class GuiSystem;
class GraphicsSystem;
class PhysicsSystem;
class Game;
class CameraContainer;
class Skybox;
class MainApp
{
private:
static MainApp* msApplication;
private:
GraphicsSystem* mGraphicsSystem;
PhysicsSystem* mPhysicsSystem;
Game* mGame;
Camera*... | [
"ccmccooey@gmail.com"
] | ccmccooey@gmail.com |
e37d87978448d52de4aea85844c897068c74a0f3 | aefac844373fe8e8faab9724e46653ca459e9ddf | /virtchem/src/third-party/headers/thrust/perf_test/cuda_timer.h | 461fd7e1f4ea80d56ffd3c55c2b38e867f140779 | [
"BSL-1.0",
"Apache-2.0",
"MIT"
] | permissive | mmetcalf14/QITE | 26b4d64742b27d65aa6309923a4b9ccc488f2d64 | 1bc9793691343807dbff6bfbfc5cbc9a1addaaf7 | refs/heads/master | 2021-01-09T03:16:06.712941 | 2020-06-03T18:08:47 | 2020-06-03T18:08:47 | 242,218,664 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,219 | h | #include <thrust/version.h>
// do not attempt to compile this code, which relies on
// CUDART, without system support
#if THRUST_DEVICE_COMPILER == THRUST_DEVICE_COMPILER_NVCC
#include <cuda_runtime_api.h>
#if THRUST_VERSION < 100600
#include <thrust/system/cuda_error.h>
#else
#include <thrust/system/cuda/error.h>
#... | [
"mmetcalf@cs-it-8026359.local"
] | mmetcalf@cs-it-8026359.local |
ddc3e797bacc4bfc42f906a3d154002d8a8af91b | 178fd37e3a401066f684e6134b2bff5514d9a6b4 | /CultyGame/Source/CultyGame/Spell_System.h | 663f18515ebd3911d8dd728fac7d51465c5f5c6e | [] | no_license | beimy/DementiaGame | fbd88357500beecb11467eaef550a9b1f0ef4bfe | 58d585604f73d1a522f0f78c287f0523e86e3149 | refs/heads/master | 2022-11-13T02:49:07.503101 | 2020-04-22T10:55:29 | 2020-04-22T10:55:29 | 227,208,089 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,021 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "Spell_System.generated.h"
UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) )
class CULTYGAME_API USpell_System : public UActorComponent... | [
"arbm159357@gmail.com"
] | arbm159357@gmail.com |
544c1ae8eb3b6f6594ea578c1d8696b62a3d10e4 | c9cf0586ace11aa32fa67606d237a130a06364ee | /circular-cylinder-3-1/10/phi | 6a0d01efbc9595f5e335bc3cdbdfcf413067599e | [] | no_license | jezvonek/CFD-Final-Project | c74cfa21f22545c27d97d85cf30eb6dc8c824dc1 | 7c9a7fb032d74f20888effa0a0b75b212bf899f4 | refs/heads/master | 2022-07-05T14:43:52.967657 | 2020-05-14T03:40:56 | 2020-05-14T03:40:56 | 262,370,756 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 413,340 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
... | [
"jezvonek@gmail.com"
] | jezvonek@gmail.com | |
a5ace7bc0d5b615bdabd9eca911bda053fa7cc46 | c4befd186f8efed065f03f188b38a48528ce9704 | /hipify-clang/src/HipifyAction.h | af75f93063ffdb9971bd2ea5ab1ff771700aaef2 | [
"MIT"
] | permissive | rahulmula/Gladiator_Hip | 579d676d6096feacca507e24b51821ec07f3da62 | fcede25343a79f5005f5a4d88a8c0e41205dc08f | refs/heads/master | 2020-03-19T09:16:48.044867 | 2018-06-07T09:33:43 | 2018-06-07T09:33:43 | 136,274,246 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,751 | h | #pragma once
#include "clang/Lex/PPCallbacks.h"
#include "clang/Tooling/Tooling.h"
#include "clang/Frontend/FrontendAction.h"
#include "clang/Tooling/Core/Replacement.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "ReplacementsFrontendActionFactory.h"
#include "Statistics.h"
namespace ct = clang::tooling;
... | [
"rmula@amd.com"
] | rmula@amd.com |
c65a813e183b27f05fad0212e5905a4902befd10 | b7bb18f565ebe6057f19020b2a886effb7f5e24f | /src/core/interaction.h | 6df301d405312b33b3c28d49682cb3c277176534 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | JAGJ10/pbrt-v3 | f746ceaa54aaf9f51648ad4dff9449e4c3f437ff | 757de9ce9f07ac142a685c126b0836dd6854ad81 | refs/heads/master | 2021-01-15T08:26:51.395020 | 2016-08-17T14:46:24 | 2016-08-17T14:49:07 | 65,962,730 | 1 | 0 | null | 2016-08-18T03:38:27 | 2016-08-18T03:38:27 | null | UTF-8 | C++ | false | false | 5,736 | h |
/*
pbrt source code is Copyright(c) 1998-2016
Matt Pharr, Greg Humphreys, and Wenzel Jakob.
This file is part of pbrt.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
- Redi... | [
"matt@pharr.org"
] | matt@pharr.org |
ab9159c751dd58f810b3884659bacc531e9e0f91 | 387549ab27d89668e656771a19c09637612d57ed | /DRGLib UE project/Source/FSD/Private/RandLinePoint.cpp | d94d8e0c5e15bf8e0bd31759a257310f9845e6a6 | [
"MIT"
] | permissive | SamsDRGMods/DRGLib | 3b7285488ef98b7b22ab4e00fec64a4c3fb6a30a | 76f17bc76dd376f0d0aa09400ac8cb4daad34ade | refs/heads/main | 2023-07-03T10:37:47.196444 | 2023-04-07T23:18:54 | 2023-04-07T23:18:54 | 383,509,787 | 16 | 5 | MIT | 2023-04-07T23:18:55 | 2021-07-06T15:08:14 | C++ | UTF-8 | C++ | false | false | 66 | cpp | #include "RandLinePoint.h"
FRandLinePoint::FRandLinePoint() {
}
| [
"samamstar@gmail.com"
] | samamstar@gmail.com |
be7fdb7f76dd48eccd25e7471a0e8700330308b7 | 312ac2db68db9bae2ea5db87ca05329a77564216 | /1101/C [Division and Union].cpp | fd10c4e2e19f2809795c96e3a1d93c5f280644a9 | [] | no_license | Nikhil-Medam/Codeforces-Solutions | 3107023a4bbfc6bcf82ab05ed840a6d621567876 | 71f6304d7b9d87aac05f5b5c27a9f277ffdad4cd | refs/heads/master | 2020-06-17T07:30:24.618634 | 2019-07-08T16:13:35 | 2019-07-08T16:13:35 | 195,846,206 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,133 | cpp | #include<bits/stdc++.h>
using namespace std;
#define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define endl "\n"
#define ll long long
#define int long long
#define pb push_back
const int N=1e5+5;
int max(int a,int b)
{
if(a>=b)
return a;
else
return b;
}
int min(int a,int b)
{
if(a<=b)
return a;
... | [
"medam.nikhil@gmail.com"
] | medam.nikhil@gmail.com |
1991b28b3909cd4c27e6b8eaa438546ea2abcd14 | 641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2 | /third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp | 147887d18781bbbc8e3b4f22b6b06883dfbc0b18 | [
"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 | massnetwork/mass-browser | 7de0dfc541cbac00ffa7308541394bac1e945b76 | 67526da9358734698c067b7775be491423884339 | refs/heads/master | 2022-12-07T09:01:31.027715 | 2017-01-19T14:29:18 | 2017-01-19T14:29:18 | 73,799,690 | 4 | 4 | BSD-3-Clause | 2022-11-26T11:53:23 | 2016-11-15T09:49:29 | null | UTF-8 | C++ | false | false | 10,264 | cpp | // 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 "modules/fetch/DataConsumerHandleTestUtil.h"
#include "bindings/core/v8/DOMWrapperWorld.h"
#include "wtf/PtrUtil.h"
#include <memory>
namespace... | [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
cd2ba9c13e82a294277e551d7f29354116682396 | 34a7861e9b18a88cf97207d9e44f0e16fc624388 | /Source/TypingFreakConsole/TouchTyping.cpp | c799e197d82e47fab781658d6f31ac5a557bf16c | [
"MIT"
] | permissive | vexe/typing-freak-console | 81451e655a2552ca03d3170d56768dc64aa8cd5d | aaae9e2c699ddc6baffb241bb3f8ede72c8f0d6c | refs/heads/master | 2021-01-10T02:00:24.137151 | 2015-10-19T00:58:36 | 2015-10-19T00:58:36 | 44,502,865 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,503 | cpp | #include "TouchTyping.h"
//-------------------------------------------------------------------
void TouchTyping::knowTheNumberOfCharacters()
{
fin.seekg(0 , ios::end); // seeking the file pointer to the end of the file.
numberOfCharacters = (int)fin.tellg();
}
//--------------------------------------------------... | [
"xarxoohx@gmail.com"
] | xarxoohx@gmail.com |
b2bb4443b0bcd4447be98df7f03e97e5895b1015 | 509e33ff07eeb3d4d538ec6237e47324b2ad9084 | /TxtAdv/LuaGameState.cpp | 42bb6793e1b62aafcc87e1a2a0b6861d9003b7f7 | [
"MIT"
] | permissive | doc97/TxtAdv | a81a025005b6ca109bb5b4e960dadf15cae2aa06 | c74163548f5c68202a06d0ad320fbd5b687d6f1a | refs/heads/master | 2021-06-09T10:30:54.539125 | 2021-05-06T20:36:07 | 2021-05-06T20:36:07 | 161,996,345 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,170 | cpp | /**********************************************************
* License: The MIT License
* https://www.github.com/doc97/TxtAdv/blob/master/LICENSE
**********************************************************/
#include "LuaGameState.h"
#include "LuaUtils.h"
namespace txt
{
const char* LuaGameState::className = "LuaGameSt... | [
"daniel.riissanen@gmail.com"
] | daniel.riissanen@gmail.com |
bed41508c5c10140efedf86ac935220ef48ac053 | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/multimedia/dshow/filters/encdec/drmtest/drmlitetest.cpp | ce7a92614eea6f72b5f9f8bfe9cdcaa4720a737d | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 3,688 | cpp | //-----------------------------------------------------------------------------
//
// File: drmlitetest.cpp
//
// Microsoft Digital Rights Management
// Copyright (C) Microsoft Corporation, 1998 - 1999, All Rights Reserved
//
// Description:
//
// original link lib was: .\lib,.\checked
// changed to : ... | [
"seta7D5@protonmail.com"
] | seta7D5@protonmail.com |
efd67081cf190c50f518c335fd059d2e1e9007cc | 58aab600d26a36e0ef26b6e758785f5828342078 | /QYFC/QYHeapBuffer.h | f0d1bcfc4f6e54e85cc78a08c2b72cfc3bcb0322 | [] | no_license | tmgycjl/qyfc | b1660d48a3f9a574ac3209ca7600e2a3fb14cc20 | 004dad9576ed836dd9df777d7bd5414a640a7146 | refs/heads/main | 2023-04-23T02:34:49.693418 | 2021-04-30T09:58:48 | 2021-04-30T09:58:48 | 325,444,409 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 240 | h | #pragma once
#include <string>
#include "qydefine.h"
class QYUI_EXPORT_CLASS QYHeapBuffer
{
public:
QYHeapBuffer();
QYHeapBuffer(unsigned int newSize);
~QYHeapBuffer();
char* operator & ();
int Length();
private:
char *m_pBuffer;
}; | [
"jlchen@grandstream.cn"
] | jlchen@grandstream.cn |
ea3b4e6e720e5b2eafe909578e5f7148714cffcb | d0e1263b0e76b0a8e0219c1202296bd372c3eabc | /MediaPortal-1-master/DirectShowFilters/MPAudioRenderer/source/SampleCopier.cpp | f519928f96d36a8ffff4571821d55135df8851a7 | [] | no_license | juancollsoler/ex.tv.player.app.v2 | d431427e44eb731b7d958624885236bd90b0643f | b9db15ed171b5df03843e8d884f159c4e264c226 | refs/heads/master | 2020-05-19T03:10:21.872002 | 2019-05-03T17:15:15 | 2019-05-03T17:15:15 | 184,790,805 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,165 | cpp | // Copyright (C) 2005-2012 Team MediaPortal
// http://www.team-mediaportal.com
//
// MediaPortal 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 2 of the License, or
// (at your option) any l... | [
"juan.coll@nexcode.io"
] | juan.coll@nexcode.io |
aa89a6925b74710ed1230eaab2cb4711a00bb462 | a59afd60007d7de188f24f16e55b750ee4f200ac | /C++/OOP-SeminarHW4-task2/SeminarHW4-zadacha2/SeminarHW4-zadacha2.cpp | e033d46bf6b0bbb3d7676a95697425301567ac5e | [] | no_license | emakkaa/firstSteps | f32c3a09a50c3d94588dba3540e3cca00dd63d20 | 0e37fa66caf8893161f4f7621f1230113ceada60 | refs/heads/master | 2020-05-21T12:24:20.268072 | 2017-02-23T12:33:53 | 2017-02-23T12:33:53 | 53,432,686 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,743 | cpp | // SeminarHW4-zadacha2.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <cstring>
using namespace std;
class DoubleVect {
protected:
double* vector;
int size;
int lower;
int upper;
public:
DoubleVect(int s = 1) {
lower = 0;
upper = s - 1;
size ... | [
"emo960427@gmail.com"
] | emo960427@gmail.com |
852c3155b2d96825f3ee6a57c4680e2202635040 | 7d886deca26b119da215cb098881f105b7fd53e2 | /VTS3/SendCreateObject.cpp | 73d13c414df66bca880293456c815f81dfebbc9a | [] | no_license | larrycook99/vts | 2e3d9a4f377199b89302f129d229eb443b920ea2 | eb75f416c3a7d082004703fbf69da3ba04dd6ece | refs/heads/master | 2023-01-12T00:19:02.536960 | 2020-11-22T03:43:50 | 2020-11-22T03:43:50 | 314,956,244 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,918 | cpp | // SendCreateObject.cpp : implementation file
//
#include "stdafx.h"
#include "VTS.h"
#include "propid.h"
#include "Send.h"
#include "SendCreateObject.h"
#include "VTSObjectIdentifierDialog.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
BACnetAPDUEncoder CSendCre... | [
"larrycook99@gmail.com"
] | larrycook99@gmail.com |
8ea78908f8f55f1ca50213b29a9db08e51e4d26f | 85c91b680d74357b379204ecf7643ae1423f8d1e | /branches/ras_openpmf/CompilationChain/CCMGenerator_CSDBackEnd_compo/CCMGenerator_CSDBackEnd_compo.cpp | d2fb992574a51c0d4a2b7dd9afd5a2b065028e41 | [] | no_license | BackupTheBerlios/qedo-svn | 6fdec4ca613d24b99a20b138fb1488f1ae9a80a2 | 3679ffe8ac7c781483b012dbef70176e28fea174 | refs/heads/master | 2020-11-26T09:42:37.603285 | 2010-07-02T10:00:26 | 2010-07-02T10:00:26 | 40,806,890 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,916 | cpp | //
// generated by Qedo
//
#include "CCMGenerator_CSDBackEnd_compo.h"
// BEGIN USER INSERT SECTION file
#include <iostream>
#include "Exceptions.h"
#include "HelpFunctions.h"
// END USER INSERT SECTION file
namespace CCMGenerator {
// BEGIN USER INSERT SECTION CSDBackendSessionImpl
void CSDBackendSessionImpl::co... | [
"kgardas@798282e8-cfd4-0310-a90d-ae7fb11434eb"
] | kgardas@798282e8-cfd4-0310-a90d-ae7fb11434eb |
5919bfdd64b9c903ecc9f5f4d096e3807a2141f9 | 6bf7c1d8a514f73b8203043206048603fa177902 | /src/base/core/memory/memheapalloc.cpp | 227b0589cd0d338d7f40579516cbb4a483a91977 | [
"LicenseRef-scancode-unknown-license-reference",
"Zlib",
"BSD-2-Clause",
"BSD-3-Clause",
"MIT"
] | permissive | panyihua/behaviac | fbe39a1fdb0bd762cece0710c9adb279e1a32836 | a0a1b12d2da43911c4e3c41105d38929162d396e | refs/heads/master | 2020-02-26T13:48:47.109138 | 2015-11-12T06:09:00 | 2015-11-12T06:09:00 | 45,733,207 | 1 | 0 | null | 2015-11-07T11:12:03 | 2015-11-07T11:12:03 | null | UTF-8 | C++ | false | false | 1,008 | cpp | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Tencent is pleased to support the open source community by making behaviac available.
//
// Copyright (C) 2015 THL A29 Limited, a Tencent company. All rights reserved.
//
// Licensed under the BSD 3-Clau... | [
"cainhuang@tencent.com"
] | cainhuang@tencent.com |
cdddb31e7c97a142155c74e415dab5b5ad5c50d7 | 5f2f0a83e99b941f509fc762ecdc94d785729e87 | /client_box/communication/communication/old/main.cpp | d39f0822b899ea997d293a3a39d34d3fd6ae2d0d | [] | no_license | TheCBear/AUHack19_Darth | b161128004062df82efa6551af7e421d49513469 | 939c12dcf5c5ede4096e100c3d664b88769f1a65 | refs/heads/master | 2020-05-05T05:23:12.395475 | 2019-04-07T10:00:02 | 2019-04-07T10:00:02 | 179,749,319 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,891 | cpp | #include <iostream>
#include <fstream>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <unistd.h>
#include <pthread.h>
#include <mutex>
#include <deque>
#include <boost/bind.hpp>
#include <boost/asio.hpp>
#include <boost/thread.hpp>
#ifdef POSIX
#include <termios.h>
#endif
#include "protocol.h"
... | [
"au570003@uni.au.dk"
] | au570003@uni.au.dk |
abb10bf46a7592800b531bd1d78b17c78aebee65 | 240ef2e7b2b345b756a8d0dcac16573d0df7319e | /cc/paint/paint_image.h | d12ff5b9d93c0ddbb0c069893c8c02aaf2ba2955 | [
"BSD-3-Clause"
] | permissive | ifquant/chromium | 73b72c049279cce9481372a2eda5b29133a96b3e | 7ba58abc11b141bafe03e017c5e027b889782223 | refs/heads/master | 2023-01-02T21:55:26.572498 | 2018-12-07T15:28:56 | 2018-12-07T15:28:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,558 | 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 CC_PAINT_PAINT_IMAGE_H_
#define CC_PAINT_PAINT_IMAGE_H_
#include <vector>
#include "base/gtest_prod_util.h"
#include "base/logging.h"
#include "... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
2701cb715a8c059cb43f28c04a4449d51411f67b | ac13959437a22b0dd7a0e808e44e12971ff6f79f | /CodeC2/thiquynh_Bai6_C2.cpp | a44a9f0436262654e40c01b573c474129a98c265 | [] | no_license | hieu-ln/IT81-09 | a6a8845ed1565ce11a1a1ba98f3f7a9a554dcba0 | f84c8322926a05fe6b2ae5832cfb4a1ba073e0f8 | refs/heads/master | 2020-06-11T06:42:04.968585 | 2019-08-17T17:04:54 | 2019-08-17T17:04:54 | 193,879,288 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,582 | cpp | //#include<iostream>
//using namespace std;
//#define MAX 100
//
//int a[MAX];
//int sp;
//
////6.1
//void init(int a[], int& sp)
//{
// sp = -1;
//}
//
////6.2
//int isEmpty(int a[], int sp)
//{
// if (sp == -1)
// return 1;
// return 0;
//}
//
////6.3
//int isFull(int a[], int sp)
//{
// if (sp == MAX - 1)
// retur... | [
"1851050123quynh@ou.edu.vn"
] | 1851050123quynh@ou.edu.vn |
4ca52fd72ae17eae0cdc26a807c8e52b9cd55c71 | 3270597ce4b7a3dcbe0df4b1aff9e253a4a6a8bb | /Project Οντοκεντρικός Προγραμματισμός/C++ Project/Visual Studio Hotel Project/ConsoleApplication1/Booking.h | c41ac3487bcac9368448b8de2bb3d43124b2471e | [
"MIT"
] | permissive | DimitrisKostorrizos/UndergraduateCeidProjects | e39e443d75cde68ab77d1d1ce7110ff782e1b0be | 8e55971f5a2c3b867b9f17a8d68c39b9898458dd | refs/heads/master | 2022-12-07T14:19:25.086282 | 2022-11-25T20:44:15 | 2022-11-25T20:44:15 | 242,327,023 | 9 | 7 | MIT | 2020-09-30T19:16:38 | 2020-02-22T11:07:30 | HTML | UTF-8 | C++ | false | false | 1,155 | h | #ifndef BOOKING_H
#define BOOKING_H
#include<iostream>
#include<string>
using namespace std;
class Room;//Forward Declaration.
class Booking
{
public:
Booking(string name, int _arrivalDay, int _accomodationDays, int _peopleNum);
virtual ~Booking();
string getClientName() { return clientName; }
void setClientN... | [
"57042407+DimitrisKostorrizos@users.noreply.github.com"
] | 57042407+DimitrisKostorrizos@users.noreply.github.com |
5b64b7a6e912edbf0d5b5604efe3473f524da320 | 1b5156451391000e12fb3013ccc6eb99b6566b98 | /lua_message_field.cpp | b917147a6b40d68625738002e09fbf65a89cbb84 | [] | no_license | amyvmiwei/lua-protocol-buffer | 47b9a5530f379c9295bbd17b25892af3d3a73ed2 | 123c5b9eb73b8e68d0257280e644be967b9cd580 | refs/heads/master | 2021-01-25T07:28:04.499656 | 2014-03-21T07:36:59 | 2014-03-21T07:36:59 | 15,598,996 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,785 | cpp | #include "lua_message_field.h"
#include "lua_helpers.h"
#include <google/protobuf/io/printer.h>
#include <google/protobuf/stubs/strutil.h>
namespace google {
namespace protobuf {
namespace compiler {
namespace mwpb_lua {
namespace {
void SetMessageVariables(const FieldDescriptor* descriptor,
map<string, string>* ... | [
"amyvmiwei@gmail.com"
] | amyvmiwei@gmail.com |
ab07dee3b71c820e064cfffb3d395ef12bd9b7d5 | 420f1a298ad4c94e44e7ff60fe309d79b080723a | /org.alljoyn.ControlPanel.AirPurifier/AirPurifierServiceEventArgs.h | 46bb3eb2f9fb0f49f2f89fa848b3be402a3f4e48 | [
"MIT"
] | permissive | jpoon/HeavenFresh-AllJoyn-Example | fe5820915b2e715fd6cd725babfdb16fa297dec8 | 10ed91014f072031eb13df613cc1165e19fd7726 | refs/heads/master | 2021-01-17T12:19:24.140864 | 2016-07-20T06:41:19 | 2016-07-20T06:41:19 | 42,607,513 | 0 | 1 | null | 2015-09-17T17:22:58 | 2015-09-16T19:04:13 | C++ | UTF-8 | C++ | false | false | 24,613 | h | //-----------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
// Tool: AllJoynCodeGenerator.exe
//
// This tool is located... | [
"git@jasonpoon.ca"
] | git@jasonpoon.ca |
37f7a1659ee1c7fdffed4ae5c9b4b3422390cfc7 | 91549d2b19466e9c394acdeb8dfbca48901520eb | /whilepractice2.cpp | cac099092360b82164c3bd1196df9d2220716a18 | [] | no_license | aaqib-yfz/1st-Semester | b3331719f501cf5e8db7653a4f9324b9d7755cef | 349b4df3a59110d36ef1c39d5f4cd536a7feedbf | refs/heads/master | 2023-07-13T22:03:12.997786 | 2021-08-24T15:30:32 | 2021-08-24T15:30:32 | 349,517,521 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 260 | cpp | #include <iostream>
using namespace std;
int main()
/*
{
int n,i;
cout<<"ENTER ANY NUMBER = ";
cin>>n;
cout<<" THE TABLE OF "<<n<<endl;
for ( i=1; i<=10; i++)
{
/* code */
cout<< n<<" * "<<i<<" = "<<n*i<<endl;
}
return 0;
}
| [
"aaqibshaheer2001@gmail.com"
] | aaqibshaheer2001@gmail.com |
9c96a688491afe3b5d5888918867b5eff8bc8b86 | f8e5926a313ce6e607b29d75c9a4577ab172856f | /operationBancaire.cpp | be75af3b94b4c939ac916df6b1ffdb38efc83828 | [] | no_license | anoera/CPPprojet2B12018GestionComptes | 74981cf0e3daddb1cd72fbf9ed4a1b19c27f070a | e928944f41f72844a2a740abfe18a9642c787818 | refs/heads/master | 2021-09-12T13:26:02.463237 | 2018-04-17T08:37:37 | 2018-04-17T08:37:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 802 | cpp | //
// Created by arnau on 06/04/2018.
//
#include "operationBancaire.h"
#include "compte.h"
#include <iostream>
using namespace std;
operationBancaire::operationBancaire(){
_montant = 0;
_Type = Mouvement::CREDIT;
};
operationBancaire::operationBancaire(double montant, Mouvement Type) {
_montant = monta... | [
"arnaud.gonin@live.fr"
] | arnaud.gonin@live.fr |
e19f79e6a873f8993c5f7c127ec010ab301711b5 | e217eaf05d0dab8dd339032b6c58636841aa8815 | /src/OpenInfraPlatform/UserInterface/ColorPicker/colorpickerwidget.h | ebdb2605c5b9cf129a48e98e5ca5fe3722fb2d65 | [] | no_license | bigdoods/OpenInfraPlatform | f7785ebe4cb46e24d7f636e1b4110679d78a4303 | 0266e86a9f25f2ea9ec837d8d340d31a58a83c8e | refs/heads/master | 2021-01-21T03:41:20.124443 | 2016-01-26T23:20:21 | 2016-01-26T23:20:21 | 57,377,206 | 0 | 1 | null | 2016-04-29T10:38:19 | 2016-04-29T10:38:19 | null | UTF-8 | C++ | false | false | 1,533 | h | /*
Copyright (C) 2009, Etienne Moutot <e.moutot@gmail.com>
This file is part of colorPickerWidget.
colorPickerWidget 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 3 of the License, ... | [
"planung.cms.bv@tum.de"
] | planung.cms.bv@tum.de |
142c36823621a0d0ecb9c782e4651bbc5ae0c330 | f3154cf02005b6d365841d06c8655604ee207524 | /srcs/modules/JsonParser/Module.cpp | 88f7f58aaa53b1584ab7e407dff7fab2d2c35f30 | [
"Beerware"
] | permissive | ViguierB/zia | de057aca6488e8dfb3065db6e3846d91ca8662e8 | cb3e3a967ac4129cc4aa80fc1ca3401a17666852 | refs/heads/master | 2020-04-28T06:24:58.729237 | 2019-04-26T11:44:35 | 2019-04-26T11:44:35 | 175,057,133 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 845 | cpp | /*
** EPITECH PROJECT, 2018
** zia
** File description:
** Module.cpp
*/
#include <fstream>
#include "Zany/Loader.hpp"
#include "./Parser.hpp"
namespace zia {
class JsonParserModule : public zany::Loader::AbstractModule {
public:
virtual auto name() const -> const std::string&
{ static const std::string name("Jso... | [
"benjamin.viguier@epitech.eu"
] | benjamin.viguier@epitech.eu |
72eb0f7faa1c8612645491f32c28405889595d8d | 0ae41b99a1f4afc0932cf0d3cfe7b8cf288f57e6 | /src/masternode-meta.cpp | a1990fede4d90dadf4c8b17281c749178f85c938 | [
"MIT"
] | permissive | Sivonja8/ruxcryptoRXC | bdc6c94349774fd6c24a40eabedfb1646ad28aa2 | 4921ee3b3b4a8b1d2d71c7bd19f1a9a3635e4075 | refs/heads/master | 2023-07-05T13:50:33.832602 | 2021-07-06T15:29:07 | 2021-07-06T15:29:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,467 | cpp | // Copyright (c) 2014-2019 The Dash Core developers
// Copyright (c) 2020 The RuxCrypto Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "masternode-meta.h"
CMasternodeMetaMan mmetaman;
const std::s... | [
"nsmajic@gmail.com"
] | nsmajic@gmail.com |
688c0ac2f2dcc1ef3b494f2d14d9a4d28171a2fc | c32ee8ade268240a8064e9b8efdbebfbaa46ddfa | /Libraries/m2sdk/mafia/gui/hud/C_HudWidgetStack.h | 7598252fe52ea3620893db6e3d047f5dc08a2c40 | [] | no_license | hopk1nz/maf2mp | 6f65bd4f8114fdeb42f9407a4d158ad97f8d1789 | 814cab57dc713d9ff791dfb2a2abeb6af0e2f5a8 | refs/heads/master | 2021-03-12T23:56:24.336057 | 2015-08-22T13:53:10 | 2015-08-22T13:53:10 | 41,209,355 | 19 | 21 | null | 2015-08-31T05:28:13 | 2015-08-22T13:56:04 | C++ | UTF-8 | C++ | false | false | 654 | h | // auto-generated file (rttidump-exporter by h0pk1nz)
#pragma once
#include <mafia/gui/hud/C_HudWidget.h>
namespace mafia
{
namespace gui
{
namespace hud
{
/** mafia::gui::hud::C_HudWidgetStack (VTable=0x01E6F200) */
class C_HudWidgetStack : public C_HudWidget
{
public:
virtual void vfn_0001_A3E29AA5() = 0;
vir... | [
"hopk1nz@gmail.com"
] | hopk1nz@gmail.com |
b600debf2ba82ad2a63c7380e93ab2bd749550fd | 1f4033e4172a7bc29608eb4070eca7a8bdf530f1 | /warped/simulationmodels/raid/factory/src/RAIDForkStub.cpp | b395d5ecb114a447129422ca6f63d96fb65e0db4 | [
"Latex2e"
] | permissive | joerocklin/pdes | 4dd84b5ce4b354d35ffb21a2b254b94db25cb1f2 | b5d7596b0a0ff903a41cf1d2b932cf8b0afbacb3 | refs/heads/master | 2022-08-30T18:42:19.605727 | 2013-04-30T01:49:21 | 2013-04-30T01:49:21 | 4,184,954 | 0 | 0 | null | 2022-08-15T11:41:03 | 2012-04-30T17:11:49 | C++ | UTF-8 | C++ | false | false | 2,564 | cpp | // Copyright (c) The University of Cincinnati.
// All rights reserved.
// UC MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
// THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
// TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
// PARTICULAR PURPOSE, OR NON-INFRINGEMENT... | [
"xinyu@ubuntu.(none)"
] | xinyu@ubuntu.(none) |
ac5894c644b8a5b73aaae253354d9fc7efb93586 | 18a9f1630fc3a1c91df48b9b83fe1f834ea00818 | /project3/readMatrix.cpp | 1e9361eb2aa486727aa82add8dd9e216f9fef3d7 | [] | no_license | pedestrianpaul/personal_projects | 326e986c5a19130edce5b0336bd1f047f838e4ea | 8b2b7bb2d2c256047416a4a1a341f9626ac3cb38 | refs/heads/master | 2020-03-24T21:34:15.428219 | 2018-07-31T17:53:11 | 2018-07-31T17:53:11 | 143,039,396 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,367 | cpp | /**********************************************************************************************
** Author: Paul Min
** Date: 06/25/18
** Description: The function prompts the user for all the numbers within the matrix, that means
for 2x2 matrix, it should ask the user for 4 numbers, and 9 numbers for a 3x3 matrix.... | [
"noreply@github.com"
] | pedestrianpaul.noreply@github.com |
2488c4e9315b6fe6fa587bfa4d2c6ee50ddcfcd0 | a05f3e3bcc9f1161f5890f98eaf1a4a7129846ce | /LeagueMode/Library/Parse.hpp | a08e71c1ded1d7a49ac5ca56f32ff8f8452e57ae | [] | no_license | sosflyyi/laboratory | 17d3d0e13a62674c244a3bcd7bdca8803fe89f32 | 9a3f47c99279e328d2719d21dfd13cd212fab5b6 | refs/heads/master | 2023-04-09T23:20:02.592346 | 2016-05-09T13:27:16 | 2016-05-09T13:27:16 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,610 | hpp | /**
* @file
* @brief
*
* @author Takuya Shishido
* @date 2010.04.13 16:00:17
*
* @version 0.01, Shishido Takuya, 2010.04.13 16:00:17
* (c) 2010 Konami Digital Entertainment Co., Ltd. All Rights Reserved.
*/
#ifndef PARSE_H_INCLUDED
#define PARSE_H_INCLUDED
//-------------------------------------------... | [
"kaguya@Kaguya-no-MacBook-Air.local"
] | kaguya@Kaguya-no-MacBook-Air.local |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.